]> git.saurik.com Git - bison.git/blob - ChangeLog
Remove unused variable.
[bison.git] / ChangeLog
1 2008-11-09 Di-an Jan <dianj@freeshell.org>
2
3 Remove unused variable.
4 * src/output.c (type_names_output): Remove unused variable sep.
5
6 2008-11-09 Paolo Bonzini <bonzini@gnu.org>
7
8 Change tests/output.at quoting.
9 * tests/output.at (AT_CHECK_OUTPUT): Use conventional m4 quoting when
10 expanding arguments.
11
12 2008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
13
14 Don't add a semicolon to actions for %skeleton or %language.
15 It breaks Java test cases as reported by Akim Demaille.
16 * src/scan-code.l: Implement.
17
18 2008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
19
20 Clean up %skeleton and %language priority implementation.
21 * src/getargs.c (skeleton_prio): Use default_prio rather than 2, and
22 remove static qualifier because others will soon need to see it.
23 (language_prio): Likewise.
24 (getargs): Use command_line_prio rather than 0.
25 * src/getargs.h (command_line_prio, grammar_prio, default_prio): New
26 enum fields.
27 (skeleton_prio): Extern it.
28 (language_prio): Extern it.
29 * src/parse-gram.y: Use grammar_prio rather than 1.
30
31 2008-11-07 Akim Demaille <demaille@gostai.com>
32
33 Moving push traces into yypush_.
34 * data/lalr1.cc (yypush_): Now takes a optional trace message.
35 Adjust all uses.
36
37 2008-11-07 Akim Demaille <demaille@gostai.com>
38
39 The single-stack C++ parser is now the standard one.
40 * data/lalr1.cc: Rename as...
41 * data/lalr1-split.cc: this.
42 * data/lalr1-fusion.cc: Rename as...
43 * data/lalr1.cc: this.
44 * etc/bench.pl.in: Adjust.
45
46 2008-11-07 Akim Demaille <demaille@gostai.com>
47
48 Avoid empty-if warnings.
49 Reported by Quentin Hocquet.
50
51 * data/lalr1-fusion.cc (YY_SYMBOL_PRINT, YY_REDUCE_PRINT)
52 (YY_STACK_PRINT): Provide some contents even when !YYDEBUG.
53
54 2008-11-07 Akim Demaille <demaille@gostai.com>
55
56 Pass command line location to skeleton_arg and language_argmatch.
57 * src/getargs.h, src/getargs.c (skeleton_arg, language_argmatch):
58 The location argument is now mandatory.
59 Adjust all dependencies.
60 (getargs): Use command_line_location.
61
62 2008-11-07 Akim Demaille <demaille@gostai.com>
63
64 -D, --define.
65 * src/getargs.c (usage): Document -D.
66 Fix help string for --locations.
67 (command_line_location): New.
68 (short_options, long_options, getargs): Support -D, --define.
69 (getargs): Move -d support at the right place.
70 * doc/bison.texinfo (Bison Options): Update.
71 * tests/input.at (%define, --define): New.
72
73 2008-11-07 Akim Demaille <demaille@gostai.com>
74
75 Initialize the muscle table before parsing the command line.
76 * src/getargs.c (quotearg.h, muscle_tab.h): Include.
77 (getargs): Define file_name.
78 * src/main.c (main): Initialize muscle_tab before calling
79 getargs.
80 * src/muscle_tab.c (muscle_init): No longer define file_name, as
81 its value is not available yet.
82
83 2008-11-07 Akim Demaille <demaille@gostai.com>
84
85 Locations without columns for command line arguments.
86 * src/location.c (location_print): Don't display negative columns.
87 * src/location.h: Document this.
88
89 2008-11-07 Akim Demaille <demaille@gostai.com>
90
91 Fix --help.
92 * src/getargs.c (usage): Fix help string for -W.
93
94 2008-11-07 Akim Demaille <demaille@gostai.com>
95
96 Handle more general types of option arguments.
97 * build-aux/cross-options.pl: The argument ends at the first
98 space, not the first non-symbol character.
99 Use @var for each word appearing the argument description.
100
101 2008-11-07 Akim Demaille <demaille@gostai.com>
102
103 Destroy the variants that remain on the stack in case of error.
104 * data/lalr1-fusion.cc (yydestruct_): Invoke the variant's
105 destructor.
106 Display the value only if yymsg is nonnull.
107 (yyreduce): Invoke yydestruct_ when popping lhs symbols.
108
109 2008-11-07 Akim Demaille <demaille@gostai.com>
110
111 Add "%define assert" to variants.
112 This is used to help the user catch cases where some value gets
113 ovewritten by a new one. This should not happen, as this will
114 probably leak.
115
116 Unfortunately this uncovered a bug in the C++ parser itself: the
117 lookahead value was not destroyed between two calls to yylex. For
118 instance if the previous lookahead was a std::string, and then an int,
119 then the value of the std::string was correctly taken (i.e., the
120 lookahead was now an empty string), but std::string structure itself
121 was not reclaimed.
122
123 This is now done in variant::build(other&) (which is used to take the
124 value of the lookahead): other is not only stolen from its value, it
125 is also destroyed. This incurs a new performance penalty of a few
126 percent, and union becomes faster again.
127
128 * data/lalr1-fusion.cc (variant::build(other&)): Destroy other.
129 (b4_variant_if): New.
130 (variant::built): New.
131 Use it whereever the status of the variant changes.
132 * etc/bench.pl.in: Check the penalty of %define assert.
133
134 2008-11-07 Akim Demaille <demaille@gostai.com>
135
136 Use "%define variant" in bench.pl.
137 * etc/bench.pl.in: No longer use the pseudo directive %variants,
138 just use %define variants.
139
140 2008-11-07 Akim Demaille <demaille@gostai.com>
141
142 Regen.
143 * src/parse-gram.h, src/parse-gram.c: Regen.
144
145 2008-11-04 Joel E. Denny <jdenny@ces.clemson.edu>
146
147 Fix user actions without a trailing semicolon.
148 Reported by Sergei Steshenko at
149 <http://lists.gnu.org/archive/html/bug-bison/2008-11/msg00001.html>.
150 * THANKS (Sergei Steshenko): Add.
151 * src/scan-code.l (SC_RULE_ACTION): Fix it.
152 * tests/regression.at (Fix user actions without a trailing semicolon):
153 New test case.
154
155 2008-11-04 Akim Demaille <demaille@gostai.com>
156
157 Use b4_copyright_years.
158 * data/yacc.c (b4_copyright_years): New.
159 Fix its value according to the comments in the file.
160 Use it and undefine it.
161
162 2008-11-04 Akim Demaille <demaille@gostai.com>
163
164 Formatting changes.
165 * data/lalr1-fusion.cc, src/parse-gram.y: here.
166
167 2008-11-04 Akim Demaille <demaille@gostai.com>
168
169 Formatting changes.
170 * data/lalr1-fusion.cc: here.
171
172 2008-11-04 Akim Demaille <demaille@gostai.com>
173
174 Use strict on bench.pl.
175 * etc/bench.pl.in (&run, &generate_grammar): New.
176 Rename the grammar generating functions for consistency.
177 Change the interface so that the list of benches to run is passed
178 as (optionless) arguments.
179 (&compile): Use &run.
180
181 2008-11-04 Akim Demaille <demaille@gostai.com>
182
183 Remove spurious initial empty lines.
184 * data/glr.c, data/glr.cc, data/lalr1.cc, data/lalr1.java,
185 * data/yacc.c: End the @output lines with an @.
186
187 2008-11-04 Akim Demaille <demaille@gostai.com>
188
189 Improve the display of sizes.
190 * etc/bench.p.in: Higher precision.
191 Sort by decreasing size.
192
193 2008-11-04 Akim Demaille <demaille@gostai.com>
194
195 Don't memcpy C++ structures.
196 * data/lalr1-fusion.cc (b4_symbol_variant): Adjust additional
197 arguments.
198 (variant::build): New overload for
199 copy-construction-that-destroys.
200 (variant::swap): New.
201 (parser::yypush_): Use it in variant mode.
202
203 2008-11-04 Akim Demaille <demaille@gostai.com>
204
205 Better defaults for bench.pl.
206 * etc/bench.pl.in ($verbose, $cflags, $iterations): Change the
207 default values.
208 Adjust &verbose uses.
209 (-q, --quiet): New.
210
211 2008-11-04 Akim Demaille <demaille@gostai.com>
212
213 Make variant.yy more complex.
214 std::list cannot be copied via memcpy, they are more demanding than
215 std::string. Use one std::list to strengthen the test.
216
217 * examples/variant.yy: Use lalr1-fusion.cc, not lalr1.cc.
218 Adjust.
219 Create a list of strings, instead of a single large string.
220
221 2008-11-04 Akim Demaille <demaille@gostai.com>
222
223 bench.pl --bench.
224 * etc/bench.pl.in (--bench, $bench): New.
225
226 2008-11-04 Akim Demaille <demaille@gostai.com>
227
228 Sort methods.
229 * data/lalr1-fusion.cc (destroy): Use as() in its definition.
230 Define it after as().
231
232 2008-11-04 Akim Demaille <demaille@gostai.com>
233
234 Useless parens.
235 * data/lalr1-fusion.cc (b4_rhs_location): Remove useless parens.
236
237 2008-11-04 Akim Demaille <demaille@gostai.com>
238
239 Issue missing synclines after user actions.
240 * data/c.m4 (b4_case): Issue synclines on the output file.
241
242 2008-11-04 Akim Demaille <demaille@gostai.com>
243
244 Remove trailing empty line.
245 * data/lalr1-fusion.cc: Don't add an empty line after the user's
246 epilogue.
247
248 2008-11-04 Akim Demaille <demaille@gostai.com>
249
250 Fix output of copyright years.
251 * data/bison.m4 (b4_copyright): Fix the indentation of the
252 copyright year paragraph.
253 Use b4_copyright_years when no years are given.
254 * data/lalr1.cc, data/lalr1-fusion.cc, data/location.cc
255 (b4_copyright_years): New.
256 Use it.
257
258 2008-11-04 Akim Demaille <demaille@gostai.com>
259
260 Avoid the spurious initial empty line.
261 * data/lalr1-fusion.cc, data/location.cc: Put a trailing "@" at
262 the end of @output request to suppress the empty line that
263 results.
264
265 2008-11-04 Akim Demaille <demaille@gostai.com>
266
267 Remove parser::rhs_number_type.
268 * data/lalr1-fusion.cc (rhs_number_type): No longer define it.
269 (yyrhs_): Use b4_table_define.
270
271 2008-11-04 Akim Demaille <demaille@gostai.com>
272
273 Fix iteration type.
274 * data/lalr1-fusion.cc: Use an int to iterate up to an int.
275
276 2008-11-04 Akim Demaille <demaille@gostai.com>
277
278 Factor the declaration of the integer tables.
279 * data/lalr1-fusion.cc (b4_table_define): New.
280 Use it.
281
282 2008-11-03 Akim Demaille <demaille@gostai.com>
283
284 Fix indentation of tables in lalr1.cc
285 * data/lalr1-fusion.cc: Fix the indentation.
286
287 2008-11-03 Akim Demaille <demaille@gostai.com>
288
289 Destroy the lhs symbols after reduction.
290 * data/lalr1-fusion.cc (parse): After the user action, when in
291 variant mode, destroy the lhs symbols.
292
293 2008-11-03 Akim Demaille <demaille@gostai.com>
294
295 Simplify yysyntax_error_ use.
296 * data/lalr1-fusion.cc (yysyntax_error_): Always pass it the token
297 type, but make it unnamed in the declaration when it is not used.
298
299 2008-11-03 Akim Demaille <demaille@gostai.com>
300
301 Let yy::variant::build return an lvalue.
302 * data/lalr1-fusion.cc (variant::build): Return a reference to the
303 object.
304
305 2008-11-03 Akim Demaille <demaille@gostai.com>
306
307 Define yy::variant only when needed.
308 * data/lalr1-fusion.cc (yy::variant): Define only if variants are
309 used.
310
311 2008-11-03 Akim Demaille <demaille@gostai.com>
312
313 Bench the three-stack lalr1.cc.
314 * etc/bench.pl.in: Bench the three-stack lalr1.cc vs. the
315 one-stack one.
316
317 2008-11-03 Akim Demaille <demaille@gostai.com>
318
319 Fail on parse error in calc++.
320 * doc/bison.texinfo (calc++.cc): Propagate failures to the exit
321 status.
322 * examples/calc++/test ($me, $number, $exit, run): New.
323 Use them to propagate errors to the exit status.
324
325 2008-11-03 Akim Demaille <demaille@gostai.com>
326
327 Don't specify the skeleton twice in the example.
328 * examples/calc++/Makefile.am: Don't pass -S to Bison, the grammar
329 file does what is needed.
330
331 2008-11-03 Akim Demaille <demaille@gostai.com>
332
333 bench: Improve output.
334 * etc/bench.pl.in (bench_grammar): Tune the printf format.
335
336 2008-11-03 Akim Demaille <demaille@gostai.com>
337
338 bench: check impact of %debug on variants.
339 * etc/bench.pl.in (variant_grammar): Fix the computation of
340 $variant.
341 Generate a grammar file that can work with or without %debug.
342 Do use the @directive.
343 (bench_variant_parser): Check impact of %debug.
344 (@directives): Rename all the occurrences to...
345 (@directive): this, for consistency.
346
347 2008-11-03 Akim Demaille <demaille@gostai.com>
348
349 bench: report the size too.
350 * etc/bench.pl.in ($iterations): Defaults to -3.
351 (&bench_grammar): Require hireswallclock.
352 Compute and display the size of the result.
353 More comments.
354
355 2008-11-03 Akim Demaille <demaille@gostai.com>
356
357 bench: More use of the verbosity level.
358 * etc/bench.pl.in ($verbose, &verbose): New.
359 Use them.
360 More POD documentation.
361
362 2008-11-03 Akim Demaille <demaille@gostai.com>
363
364 bench.pl: a command line interface
365 * etc/bench.pl.in: More doc.
366 Some fixes in the documentation.
367 ($cflags, $iterations, &help, &getopt): New.
368 Use them.
369 (&variant_grammar): Let the number of stages be 10 times what is
370 specified.
371
372 2008-11-03 Akim Demaille <demaille@gostai.com>
373
374 Bench the use of Boost.Variants.
375 * etc/bench.pl.in ($cxx, &variant_grammar, &bench_variant_parser):
376 New.
377 (&compile): Be ready to compile C++ parsers.
378 (&bench_push_parser): Move debug information to the outermost
379 level.
380 * THANKS: Add Michiel De Wilde.
381
382 2008-11-03 Akim Demaille <demaille@gostai.com>
383
384 bench.pl: Pass directives as a list instead of as a string.
385 * etc/bench.pl.in (&directives): New.
386 (&triangular_grammar, &calc_grammar): Use it to format the Bison
387 directives.
388 (&triangular_grammar): Do use the directives (were ignored).
389 (&bench_grammar, &bench_push_parser): Adjust to pass lists of
390 directives.
391
392 2008-11-03 Akim Demaille <demaille@gostai.com>
393
394 Improve genericity of bench.pl.
395 * etc/bench.pl.in (&bench_grammar): Take the set of benches as
396 argument.
397 (&bench_push_parser): New.
398 Call it.
399
400 2008-11-03 Akim Demaille <demaille@gostai.com>
401
402 Add documentation to bench.pl.
403 * etc/bench.pl.in: Comment changes.
404
405 2008-11-03 Akim Demaille <demaille@gostai.com>
406
407 Fuse the three stacks into a single one.
408 In order to make it easy to perform benchmarks to ensure that there are no
409 performance loss, lalr1.cc is forked into lalr1-fusion.cc. Eventually,
410 lalr1-fusion.cc will replace lalr1.cc.
411
412 Meanwhile, to make sure that lalr1-fusion.cc is correctly exercized by the
413 test suite, the user must install a symbolic link from lalr1.cc to it.
414
415 Instead of having three stacks (state, value, location), use a stack
416 of triples. This considerably simplifies the code (and it will be
417 easier not to require locations as currently does the C++ parser),
418 and also gives a 10% speedup according to etc/bench (probably mainly since
419 memory allocation is done once instead of three times).
420
421 Another motivation is to make it easier to destruct properly
422 semantic values: now that they are bound to their state (hence
423 symbol type) it will be easier to call the appropriate destructor.
424
425 These changes should probably benefit the C parser too.
426
427 * data/lalr1.cc: Copy as... * data/lalr1-fusion.cc: this new
428 file.
429 (b4_rhs_value, b4_rhs_location): New definitions overriding those
430 from c++.m4.
431 (state_stack_type, semantic_stack_type, location_stack_type)
432 (yystate_stack_, yysemantic_stack_, yylocation_stack_): Remove.
433 (data_type, stack_type, yystack_): New.
434 (YYLLOC_DEFAULT, yypush_): Adjust.
435 (yyerror_range): Now based on data_type, not location_type.
436
437 2008-11-03 Akim Demaille <demaille@gostai.com>
438
439 Push the state, value, and location at the same time.
440 This is needed to prepare a forthcoming patch that fuses the three
441 stacks into one.
442
443 * data/lalr1.cc (parser::yypush_): New.
444 (parser::yynewstate): Change the semantics: instead of arriving to
445 this label when value and location have been pushed, but yystate
446 is to be pushed on the state stack, now the three of them must
447 have been pushed before. yystate still must be the new state.
448 This allows to use yypush_ everywhere instead of individual
449 handling of the stacks.
450
451 2008-11-03 Akim Demaille <demaille@gostai.com>
452
453 Prefer references to pointers.
454 * data/lalr1.cc (b4_symbol_actions): New, overrides the default C
455 definition to use references instead of pointers.
456 (yy_symbol_value_print_, yy_symbol_print_, yydestruct_):
457 Take the value and location as references.
458 Adjust callers.
459
460 2008-11-03 Akim Demaille <demaille@gostai.com>
461
462 stack::size instead of stack::height.
463 * data/lalr1.cc (stack::height): Rename as...
464 (stack::size): this.
465 Fix the output type.
466 Comment changes.
467
468 2008-11-03 Akim Demaille <demaille@gostai.com>
469
470 Use variants to support objects as semantic values.
471 This patch was inspired by work by Michiel De Wilde. But he used Boost
472 variants which (i) requires Boost on the user side, (ii) is slow, and
473 (iii) has useless overhead (the parser knows the type of the semantic value
474 there is no reason to duplicate this information as Boost.Variants do).
475
476 This implementation reserves a buffer large enough to store the largest
477 objects. yy::variant implements this buffer. It was implemented with
478 Quentin Hocquet.
479
480 * src/output.c (type_names_output): New.
481 (output_skeleton): Invoke it.
482 * data/c++.m4 (b4_variant_if): New.
483 (b4_symbol_value): If needed, provide a definition for variants.
484 * data/lalr1.cc (b4_symbol_value, b4_symbol_action_)
485 (b4_symbol_variant, _b4_char_sizeof_counter, _b4_char_sizeof_dummy)
486 (b4_char_sizeof, yy::variant): New.
487 (parser::parse): If variants are requested, define
488 parser::union_type, parser::variant, change the definition of
489 semantic_type, construct $$ before running the user action instead
490 of performing a default $$ = $1.
491 * examples/variant.yy: New.
492 Based on an example by Michiel De Wilde.
493
494 2008-11-03 Akim Demaille <demaille@gostai.com>
495
496 Parameterize the extraction of semantic values.
497 To make future changes easier, no longer rely on ".TYPE" being the
498 way to get a semantic value.
499
500 * data/c.m4 (b4_symbol_value): New.
501 Use it.
502 * data/c++.m4, data/yacc.c: Use it.
503 * data/glr.c: Use b4_symbol_value.
504 (b4_rhs_data): New.
505 Use it.
506
507 2008-11-03 Akim Demaille <demaille@gostai.com>
508
509 Prepare easier M4 changes.
510 * data/lalr1.cc: Use escaped [] instead of literals to prepare
511 future changes.
512
513 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
514
515 Initiate further development.
516 * NEWS: Create an empty section for new entries.
517 * gnulib: Update submodule to HEAD.
518
519 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
520
521 * NEWS: Version 2.4.
522
523 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
524
525 Prepare for next release.
526 * NEWS: Briefly mention changes since 2.3b.
527 * README: Say GNU m4 1.4.6, which we've been requiring in release
528 announcements already, not 1.4.3, which breaks the build.
529
530 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
531
532 Say %language is experimental.
533 We're thinking of extending it's effect on output file naming. See the
534 thread at
535 <http://lists.gnu.org/archive/html/bison-patches/2008-10/msg00003.html>.
536 * NEWS: Say it's experimental.
537 * doc/bison.texinfo (Decl Summary): Say it's experimental, and so don't
538 recommend it over %skeleton for now.
539 (Bison Options): Likewise.
540 (C++ Bison Interface): Use %skeleton not %language.
541 (Calc++ Parser): Use %skeleton not %language.
542 * src/getargs.c (usage): Say it's experimental.
543
544 2008-11-01 Di-an Jan <dianj@freeshell.org>
545 Paolo Bonzini <bonzini@gnu.org>
546
547 Support all Java parser class modifiers.
548 * data/java.m4 (b4_percent_define_get3): New.
549 (b4_final_if, b4_strictfp_if): New.
550 * data/lalr1.java (final, strictfp, extends, implements): Support.
551 * doc/bison.texinfo (final, strictfp, extends, implements): Add
552 documentation.
553 * tests/java.at (AT_CHECK_JAVA_MINIMAL): New.
554 (AT_CHECK_JAVA_MINIMAL_W_LEXER): New.
555 (AT_CHECK_JAVA_GREP): New.
556 (Java parser class modifiers): New test.
557 (Java parser class extends and implements): New test.
558
559 Model exception propagation better with throws and lex_throws.
560 * data/java.m4 (b4_list2): New.
561 (throws): Change default.
562 * data/lalr1.java (yyaction): Add throws.
563 (parse): Add lex_throws in addition to throws.
564 * doc/bison.texinfo (throws, lex_throws): Add documentation.
565 * tests/java.at (Java throws specifications): New test.
566
567 Improve documentation for Java parsers.
568 * doc/bison.texinfo (Java Parsers): Add subsections.
569 Don't quote first argument of %define.
570 (Java Bison Interface): Document output files. Move documentation
571 of parser class and merge into Java Parser Interface. Document
572 features that error out. Document directives with no effect.
573 Move note about Javadoc higher.
574 (Java Semantic Values): Explicitly mention stype.
575 Document that generic types cannot be used.
576 (Java Location Values): Use @deftypeivar. Document constructors.
577 Correct return value for toString.
578 (Java Parser Interface): List undocumented constants/fields.
579 Move documentation of fields added by %parse-param closer to list
580 of members. Document that token names are added as fields.
581 Document constructors accurately. Remove error method.
582 (Java Scanner Interface): Move note on %pure-parser to Java Bison
583 Interface. Describe %code lexer and yylex accutately.
584 Remove documentation that does not match the code.
585 (Java Action Features): New.
586 (Java Differences): Add reference. Add item on semantic values.
587 Add note about @{ ... @}. Clarify %% epilogue placement.
588 (Java Declarations Summary): New.
589
590 Fix Java skeleton.
591 * data/java.m4 (b4_prefix): Correct quoting for m4_define_default.
592 (b4_remove_comma): Quote test argument.
593 (b4_identification): Remove "bison" field.
594 * tests/java.at (Java parser class and package names): New test.
595 (Java %parse-param and %lex-param): New test.
596 (Java stype, position_class and location_class): New test.
597
598 2008-10-31 Di-an Jan <dianj@freeshell.org>
599
600 * data/lalr1.jave: Update copyright years.
601 (YYParser): Correct name of "generated from" file in Javadoc:
602 use b4_file_name instead of @ofile@.
603 (Location constructor): Correct Javadoc parameter name.
604 (yylloc): Add missing opening m4 quote after b4_location_if.
605 This removes a stray [ in the Javadoc of Lexer.getStartPos.
606 (Lexer.yyerror): Fix incorrect m4 and Javadoc.
607 (YYParser constructor): Correct Javadoc parameter name.
608
609 2008-10-30 Joel E. Denny <jdenny@ces.clemson.edu>
610
611 Always put auxiliary code files in the same dir as other output files.
612 * src/files.c (compute_file_name_parts): When the user specifies
613 --output but not --file-prefix, extract the directory prefix from the
614 file prefix not from the grammar file name. This affects the location
615 of files like location.hh generated by the C++ skeleton. The includes
616 in the other output files require this fix.
617 * tests/output.at (AT_CHECK_OUTPUT): Automatically create directories
618 for expected output files.
619 (Output files): Add a test for the above.
620
621 2008-10-29 Joel E. Denny <jdenny@ces.clemson.edu>
622
623 * gnulib: Update submodule to HEAD.
624
625 2008-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
626
627 Update copyright year.
628 * src/files.c: Here.
629
630 2008-10-28 Di-an Jan <dianj@freeshell.org> (tiny change)
631
632 Don't overwrite the input file.
633 * src/files.c (output_file_name_check): Fatal error if using input file
634 for output.
635 * tests/output.at: (AT_CHECK_CONFLICTING_OUTPUT): Add return status
636 argument.
637 (Conflicting output files): Add test.
638
639 2008-10-28 Akim Demaille <demaille@gostai.com>
640
641 Space changes.
642 * data/lalr1.cc: Formatting changes.
643
644 2008-10-28 Akim Demaille <demaille@gostai.com>
645
646 Don't define debugging functions when !YYDEBUG.
647 * data/lalr1.cc (debug_stream, set_debug_stream)
648 (debug_level_type, debug_level, set_debug_level): Don't
649 declare them when YYDEBUG is not defined.
650 The implementation are already YYDEBUG-aware.
651
652 2008-10-28 Akim Demaille <demaille@gostai.com>
653
654 Prefer "continue" for empty loop bodies.
655 * etc/bench.pl.in: Use "continue" instead of {}.
656
657 2008-10-28 Akim Demaille <demaille@gostai.com>
658
659 Space and comments changes.
660 * data/c++.m4, data/glr.c, data/lalr1.cc: Copyright year changes.
661 * data/c.m4, data/lalr1.cc: Space changes.
662
663 2008-10-28 Akim Demaille <demaille@gostai.com>
664
665 Make gnulib a submodule.
666 * gnulib: New.
667 * .gitmodules (gnulib): New.
668
669 2008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
670
671 Fix yyerror_range for user-defined location type in C++. Reported by
672 Georg Sauthoff at
673 <http://lists.gnu.org/archive/html/bug-bison/2008-08/msg00008.html>.
674 * data/lalr1.cc (parse): Change type of yyerror_range to location_type.
675 * THANKS (Georg Sauthoff): Add.
676
677 2008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
678
679 Update several administrative files mainly to facilitate releasing.
680 * HACKING (Administrivia): Make the git-merge-changelog notes more
681 helpful.
682 (Test suite): Don't say lalr1.cc is not exercised in the test suite.
683 (Release Procedure): Update for git and add numerous details that were
684 previously missing.
685 * Makefile.am (EXTRA_DIST): Remove Makefile.cfg and Makefile.maint.
686 * maint.mk (announcement): Don't list bison as a bootstrap tool so
687 that announcements don't claim we bootstrapped with whatever bison
688 happened to be in PATH. Add flex as a bootstrap tool.
689 * Makefile.maint: Remove, previously replaced by maint.mk.
690 * Makefile.cfg: Remove, and migrate settings to...
691 * cfg.mk: ... here for the sake of `make announcement'.
692 * bootstrap.conf (gnulib_modules): Add announce-gen.
693 * README: Say GNU Bison instead of just Bison. Suggested by Karl
694 Berry.
695
696 2008-10-08 Di-an Jan <dianj@freeshell.org> (tiny change)
697
698 Small but important bugfixes for the Java skeleton.
699 * data/lalr1.java (yyerror): Change Location to b4_location_type.
700 (yy_symbol_print): Call toString on yyvaluep.
701
702 2008-08-29 Akim Demaille <demaille@gostai.com>
703
704 Clarify UPDATED use.
705 * doc/bison.texinfo: It refers to the last edition of this file,
706 not to the release date of Bison.
707 Reported by Joel E. Denny.
708
709 2008-08-29 Akim Demaille <demaille@gostai.com>
710
711 * README: Update FAQ pointer.
712 Reported by Joel E. Denny.
713
714 2008-08-27 Eric Blake <ebb9@byu.net>
715
716 Resync m4sugar from autoconf.
717 * data/m4sugar/m4sugar.m4 (m4_defn, m4_popdef, m4_undefine)
718 (m4_init): Adjust to latest m4.git changes.
719 (m4_mapall_sep, _m4_list_cmp, m4_version_compare): Reduce side
720 effects.
721 * data/m4sugar/foreach.m4 (_m4_shiftn): Fix off-by-one bug.
722 (_m4_list_cmp): Reduce side effects.
723
724 2008-08-27 Akim Demaille <demaille@gostai.com>
725
726 Check yyerrok in calc.at.
727 * tests/calc.at (calc.y): Use yyerrok on "( error )".
728 (AT_CHECK_CALC): Add a check that ensures that yyerrok works as
729 expected.
730
731 2008-08-27 Akim Demaille <demaille@gostai.com>
732
733 Support yyerrok in lalr1.cc.
734 YYBACKUP is still to import back into lalr1.cc.
735 * data/lalr1.cc (yyerrork, yyclearin, YYRECOVERING): Define.
736
737 2008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
738
739 For maintainer-check*, don't recompile for a $(VERSION) update.
740 * cfg.mk: New file.
741 (_is-dist-target): Override the one in GNUmakefile.
742 * Makefile.am (EXTRA_DIST): Add cfg.mk.
743
744 2008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
745
746 Update for recent change to gnulib.
747 * src/parse-gram.y: Don't include strverscmp.h. It comes from
748 string.h now.
749
750 2008-08-15 Eric Blake <ebb9@byu.net>
751
752 Remaining m4sugar merge from autoconf.
753 * data/m4sugar/m4sugar.m4: Copy entire file from autoconf.
754 * data/m4sugar/foreach.m4: New file, copied from autoconf.
755 * data/Makefile.am (dist_m4sugar_DATA): Distribute it.
756 * src/output.c (output_skeleton): Tell m4 how to find it.
757
758 Partial m4sugar merge from autoconf: m4_map.
759 * data/m4sugar/m4sugar.m4 (m4_fst): Delete.
760 (m4_map, m4_map_sep, _m4_map): Rewrite more efficiently.
761 (m4_apply, _m4_apply, m4_mapall, m4_mapall_sep): New macros.
762 * data/java.m4 (b4_token_enums): Use more efficient short-circuit
763 for empty list.
764 * data/c.m4 (b4_token_defines, b4_token_enums, b4_c_ansi_formals):
765 Likewise.
766 (b4_parse_param_for): Avoid m4_fst, now that autoconf no longer
767 declares it.
768
769 2008-08-07 Joel E. Denny <jdenny@ces.clemson.edu>
770
771 Keep .version and PACKAGE_VERSION in sync.
772 * Makefile.am ($(top_srcdir)/.version): Declare configure as a
773 dependency, and add comments justifying this in more detail. Discussed
774 starting at
775 <http://lists.gnu.org/archive/html/bison-patches/2008-07/msg00022.html>.
776
777 2008-08-06 Eric Blake <ebb9@byu.net>
778
779 Partial m4sugar merge from autoconf: m4_shiftn.
780 * data/m4sugar/m4sugar.m4 (m4_shiftn): Faster implementation.
781 (m4_shift2, m4_shift3): New macros.
782 (m4_case, m4_bmatch, m4_bpatsubsts, m4_join): Adjust clients.
783 * data/c.m4 (b4_c_function_def, b4_c_ansi_function_def)
784 (b4_c_ansi_function_decl, b4_c_function_call): Likewise.
785 * data/java.m4 (b4_remove_comma): Likewise.
786
787 Partial m4sugar merge from autoconf: m4_wrap vs. m4 1.6.
788 * data/m4sugar/m4sugar.m4 (m4_unquote, m4_wrap_lifo): New macros.
789 (m4_wrap): Guarantee FIFO order, in spite of m4 1.6.
790 (m4_init): Consolidate wrapped text into single m4_wrap.
791 * data/bison.m4 (b4_check_user_names_wrap): Stick with LIFO order
792 in wrapped text.
793
794 2008-08-05 Eric Blake <ebb9@byu.net>
795
796 Partial m4sugar merge from autoconf: builtins, version.m4.
797 * data/m4sugar/m4sugar.m4 (changeword): Nuke.
798 (m4_prepend): Remove, as it is unused and inherently quadratic,
799 whereas m4_append is linear in newer m4.
800 (m4_mkstemp): New builtin.
801 (m4_symbols): Make rename conditional.
802 (m4_version_prereq): Ensure fatal error if used in bison, which
803 intentionally lacks version.m4.
804
805 Fix comments in m4sugar.
806 * data/m4sugar/m4sugar.m4: Comment changes, borrowed from autoconf.
807
808 2008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
809
810 Update for recent .gitignore fix in Gnulib.
811 * bootstrap: Back out 2008-07-18 hack now that gnulib-tool creates
812 anchored .gitignore entries.
813
814 2008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
815
816 Set gnu or gnits strictness.
817 * configure.ac (AM_INIT_AUTOMAKE): Set gnu strictness during
818 development and gnits strictness for releases. Based on Eric Blake's
819 suggestion at
820 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00019.html>.
821
822 2008-07-31 Paolo Bonzini <bonzini@gnu.org>
823
824 * NEWS: Clarify documentation of %language.
825
826 2008-07-31 Paolo Bonzini <bonzini@gnu.org>
827
828 Support usage of git-merge-changelog.
829 * .gitattributes: New.
830 * HACKING: Document usage of git-merge-changelog.
831 * bootstrap: Install git-merge-changelog entries in .git/config
832 if appropriate.
833
834 2008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
835
836 Remove remaining dependence on CVS Id keyword.
837 * ChangeLog: For the sake of people still using CVS, don't use dollars
838 when mentioning Id.
839 * data/xslt/bison.xsl: Remove Id from header comments, where it was
840 unusual anyway.
841 * data/xslt/xml2dot.xsl: Likewise.
842 * data/xslt/xml2text.xsl: Likewise.
843 * data/xslt/xml2xhtml.xsl: Likewise.
844 * doc/Doxyfile.in (PROJECT_NUMBER): Don't use ID.
845 * doc/Makefile.am (neutralize): Remove, no longer needed.
846 (.x.1): Don't use neutralize.
847 (edit): Don't substitute for ID.
848 (Doxyfile): Don't define Id, and thus don't depend on ChangeLog.
849
850 2008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
851
852 Fix dependence on computed configure variables.
853 * doc/Makefile.am (common_dep): Depend on $(top_srcdir)/configure not
854 $(top_srcdir)/configure.ac so that changes to computed variables, such
855 as PACKAGE_VERSION, are seen.
856 * tests/Makefile.am ($(srcdir)/package.m4): Likewise.
857
858 2008-07-20 Joel E. Denny <jdenny@ces.clemson.edu>
859
860 Update copyright dates for recent changes.
861 * Makefile.am: Here.
862 * src/Makefile.am: Here.
863 * src/reduce.c: Here.
864 * tests/reduce.at: Here.
865
866 2008-07-18 Joel E. Denny <jdenny@ces.clemson.edu>
867
868 Use git-version-gen for version names between releases.
869 * .cvsignore (.tarball-version, GNUmakefile, *~): Add.
870 * .gitignore (/.tarball-version, /GNUmakefile, /*~): Add.
871 * .prev-version: New.
872 * .version.in: Remove.
873 * ChangeLog: Remove the Id previously used for capturing the CVS
874 revision.
875 * GNUmakefile: Remove, now copied from Gnulib.
876 * Makefile.am: Add code suggested by comments in
877 build-aux/git-version-gen.
878 (EXTRA_DIST): Remove GNUmakefile, handled by Gnulib. Add maint.mk,
879 .prev-version, and .version.
880 * NEWS (2.3b+): Rename to...
881 (?.?): ... this because we're dropping the "+" version naming scheme,
882 but, in general, we still can't be sure of our next release name.
883 * bootstrap: Add a quick hack to remove from .gitignore the
884 GNUmakefile entry that gnulib adds. We already have a /GNUmakefile
885 entry. This should really be fixed in gnulib instead.
886 * bootstrap.conf (gnulib_modules): Add gnumakefile.
887 * configure.ac (AC_INIT): Set version name by invoking
888 build-aux/git-version-gen.
889 (AC_CONFIG_FILES): Remove .version, now generated by
890 build-aux/git-version-gen.
891 * maint.mk: New, copied from coreutils.
892 * doc/.cvsignore (bison.1): Add.
893 * doc/.gitignore (/bison.1): Add.
894 * doc/bison.1: Remove, generated.
895 * src/.cvsignore (revision.c): Remove.
896 * src/.gitignore (/revision.c): Remove.
897 * src/Makefile.am (bison_SOURCES): Remove revision.c and revision.h.
898 (BUILT_SOURCES): Remove revision.c.
899 (revision.c): Remove.
900 * src/getargs.c (version): Don't print revision after the VERSION.
901 * src/revision.h: Remove.
902
903 2008-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
904
905 Fix untranslatable composition of sentences. Reported by Goran
906 Uddeborg at
907 <http://lists.gnu.org/archive/html/bug-bison/2008-06/msg00000.html>.
908 * THANKS (Goran Uddeborg): Add.
909 * src/reduce.c (reduce_print): Report the number of nonterminals and
910 rules useless in the grammar in separate sentences.
911 * tests/reduce.at (Useless Rules): Update output.
912 (Reduced Automaton): Likewise.
913 (Underivable Rules): Likewise.
914 (Empty Language): Likewise.
915
916 2008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
917
918 Fix some .gitignore and .cvsignore problems.
919 * bootstrap (insert_sorted_if_absent): Replace all uses with...
920 (insert_vc_ignore): ... this new function, which prepends `/' to all
921 .gitignore entries before passing them to insert_sorted_if_absent.
922 * bootstrap.conf (vc_ignore): Set to '.cvsignore .gitignore' so that
923 .cvsignore files are maintained even though Bison developers run
924 bootstrap while using Git.
925 * .cvsignore (*.patch *.log log patches applied): Remove, apparently
926 unneeded by Bison.
927 (gnulib): Add.
928 * .gitignore (/*.patch *.log log patches applied): Remove, broken and
929 unneeded. Reported by Eric Blake.
930 * lib/.gitignore (/*~): Add.
931 * po/.cvsignore, runtime-po/.cvsignore: Sync with .gitignore.
932 * examples/calc++/.gitignore (/calc++.exe): Add. Reported by Eric
933 Blake.
934 * src/.gitignore (/bison.exe): Add. Reported by Eric Blake.
935
936 2008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
937
938 Improve forward-compatibility with GNU M4. Reported by Eric Blake at
939 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00000.html>.
940 * bootstrap.conf (gnulib_modules): Add unsetenv.
941 * lib/.gitignore, lib/.cvsignore (/unsetenv.c): Add.
942 * m4/.gitignore, m4/.cvsignore (/environ.m4): Add.
943 (/setenv.m4): Add.
944 * src/output.c (output_skeleton): For the m4 invocation, pass -dV as
945 the first argument because it may become position-dependent, and unset
946 POSIXLY_CORRECT so Bison's skeletons have access to GNU M4 extensions.
947 Add comments explaining these issues in more detail.
948
949 2008-07-14 Joel E. Denny <jdenny@ces.clemson.edu>
950
951 Add .gitignore everywhere based on .cvsignore.
952 * .gitignore: New.
953 * build-aux/.gitignore: New.
954 * data/.gitignore: New.
955 * doc/.gitignore: New.
956 * etc/.gitignore: New.
957 * examples/.gitignore: New.
958 * examples/calc++/.gitignore: New.
959 * lib/.gitignore: New.
960 * m4/.gitignore: New.
961 * po/.gitignore: New.
962 * runtime-po/.gitignore: New.
963 * src/.gitignore: New.
964 * tests/.gitignore: New.
965
966 2008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
967
968 * NEWS (2.3b+): New section, empty for now.
969 * configure.ac (AC_INIT): 2.3b -> 2.3b+.
970
971 2008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
972
973 * NEWS (2.3b): Update release date since there has been a delay in
974 getting the announcements and tarballs out.
975
976 2008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
977
978 * NEWS: Version 2.3b.
979 * configure.ac (AC_INIT): Likewise.
980 (PACKAGE_COPYRIGHT_YEAR): Update to 2008.
981
982 2008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
983
984 * HACKING: Don't say don't mention HACKING in the ChangeLog. We've
985 been doing it for years.
986 (Test suite): Mention maintainer-push-check and maintainer-xml-check.
987 (Release Procedure): Add FIXME about make alpha being unmaintained.
988
989 2008-05-13 Joel E. Denny <jdenny@ces.clemson.edu>
990
991 * data/yacc.c: Reformat m4 a little for readability.
992 * src/lalr.c (build_relations): Correct comment.
993
994 2008-05-12 Juan Manuel Guerrero <juan.guerrero@gmx.de>
995
996 DJGPP specific issue.
997 * djgpp/config.sed: Fixes required to run configure scripts generated
998 by autoconf 2.62.
999
1000 2008-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
1001
1002 * HACKING (Release Procedure): translation@iro.umontreal.ca is now
1003 coordinator@translationproject.org.
1004
1005 2008-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
1006
1007 * THANKS: Add Eric Blake.
1008
1009 2008-04-23 Eric Blake <ebb9@byu.net>
1010
1011 Revert prior patch, by working around autoconf regression.
1012 * tests/output.at (m4_expand): Add workaround for autoconf 2.62.
1013 ("Output file name: ("): Uncomment test.
1014 ("Output file name: )"): Likewise.
1015 Based on an idea from Noah Misch.
1016
1017 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
1018
1019 Work-around an Autoconf 2.62 AT_SETUP bug that was not present in
1020 2.61. Reported by Juan Manuel Guerrero at
1021 <http://lists.gnu.org/archive/html/bug-bison/2008-04/msg00011.html>.
1022 * tests/output.at ("Output file name: ("): Comment out test case for
1023 now.
1024 ("Output file name: )"): Likewise.
1025
1026 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
1027
1028 * GNUmakefile: Update git-version-gen invocation so make dist
1029 succeeds.
1030
1031 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
1032
1033 Update to the current gnulib CVS repository, and fix trigraph handling
1034 in Bison.
1035 * bootstrap: Update gnulib CVS repository URL.
1036 (symlink_to_dir): Encapsulate the code that guarantees the destination
1037 directory exists into...
1038 (check_dst_dir): ... this new function, and...
1039 (cp_mark_as_generated): ... reuse it here so that bootstrap doesn't
1040 fail when copying files into lib/uniwidth/.
1041 * src/output.c (prepare_symbols): When writing yytname muscles, where
1042 symbol names will be encoded in C-string literals, tell quotearg to
1043 escape trigraphs. This used to be the default in gnulib.
1044 * tests/regression.at (Token definitions): Because of the change in
1045 gnulib's quotearg behavior, string_as_id in parse-gram.y no longer
1046 escapes trigraphs in symbol names. Thus, yytname no longer has
1047 trigraphs unnecessarily doubly escaped. Update test case output.
1048 Extend test case to be sure Bison's own error messages will no longer
1049 have trigraphs in symbol names unnecessarily escaped once.
1050
1051 2008-04-20 Joel E. Denny <jdenny@ces.clemson.edu>
1052
1053 Fix make dist infinite loop reported by Juan Manuel Guerrero at
1054 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00009.html>.
1055 * .cvsignore: Add .version.
1056 * .version.in: New.
1057 * bootstrap.conf (gnulib_modules): Add git-version-gen.
1058 * configure.ac (AC_CONFIG_FILES): Add .version.
1059 * build-aux/.cvsignore: Add git-version-gen.
1060
1061 2008-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
1062
1063 * NEWS (2.3a+): Mention that -g now takes an argument.
1064 * doc/bison.texinfo (Bison Options): Reword -W entry a little for
1065 consistency. Update the -g and -x entries now that they take
1066 arguments. Use brackets to indicate optional arguments.
1067 * src/getargs.c (usage): Explain the relationship between arguments of
1068 long and short options more completely. Document --defines and -d
1069 separately since the former takes an argument but, for POSIX Yacc, the
1070 latter does not.
1071 (short_options): Let -W take an optional argument like --warnings.
1072 (getargs): Sort cases.
1073
1074 2008-02-28 Akim Demaille <demaille@gostai.com>
1075
1076 * doc/bison.texinfo: Fix a few typos.
1077
1078 2008-02-28 Akim Demaille <akim@epita.fr>
1079
1080 * doc/bison.texinfo (Bison Options): Document -W.
1081 Based on Joel E. Denny's NEWS entry, and Automake's documentation.
1082
1083 2008-02-28 Akim Demaille <akim@epita.fr>
1084
1085 * src/getargs.c (short_options): Split and sort for readability.
1086 -g and -x take optional arguments, just like their long options.
1087 * build-aux/cross-options.pl: Use /x to make the regexp easier to
1088 understand.
1089 Fix the handling of $opt which resulted in all the argument to be
1090 considered as optional.
1091
1092 2008-02-22 Joel E. Denny <jdenny@ces.clemson.edu>
1093
1094 * NEWS (2.3a+): Don't say %language is experimental. Mention Java and
1095 say its interface is experimental.
1096 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
1097 Java.
1098 (Bison Options): In the -L and --language entry, mention Java.
1099 (Java Bison Interface): Say the interface is experimental.
1100 * src/getargs.c (usage): Mention -L and --language.
1101
1102 * NEWS (2.3a+): Say the push parsing interface is experimental.
1103 * doc/bison.texinfo (Push Decl): Likewise.
1104 (Decl Summary): Likewise in the "%define api.push_pull" entry.
1105 (Push Parser Function): Likewise.
1106 (Pull Parser Function): Likewise.
1107 (Parser Create Function): Likewise.
1108 (Parser Delete Function): Likewise.
1109 (Table of Symbols): Likewise in the yypstate_delete, yypstate_new,
1110 yypull_parse, and yypush_parse entries.
1111
1112 * NEWS (2.3a+): Mention XML support, and say the schema is
1113 experimental.
1114 * doc/bison.texinfo (Bison Options): Mention -x and --xml.
1115 * src/getargs.c (usage): Say the XML schema is experimental.
1116
1117 * NEWS (2.3a+): Say option instead of flag.
1118
1119 2008-02-21 Wojciech Polak <polak@gnu.org>
1120
1121 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Change footer
1122 text.
1123
1124 2008-02-20 Joel E. Denny <jdenny@ces.clemson.edu>
1125
1126 Fix impure push parser compile error reported by Bob Rossi at
1127 <http://lists.gnu.org/archive/html/help-bison/2008-02/msg00023.html>.
1128 * data/yacc.c: Clean up whitespace in the output a little.
1129 (yypstate_allocated): Define for impure push parsers regardless of
1130 whether the pull interface is also requested.
1131 * tests/push.at (Push Parsing: Multiple impure instances): Extend to
1132 check impure push parsers without the pull interface.
1133
1134 * data/yacc.c (yypstate_new): Don't try to invoke yyerror since
1135 yyerror takes arguments specified by %parse-param while yypstate_new
1136 does not.
1137 * doc/bison.texinfo (Parser Create Function): Document that
1138 yypstate_new returns 0 for multiple impure parser instances.
1139 * tests/push.at (Push Parsing: Multiple impure instances): Update
1140 expected stderr output.
1141
1142 2008-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
1143
1144 * runtime-po/POTFILES.in (push.c): Remove.
1145
1146 2008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
1147
1148 * data/Makefile.am (dist_pkgdata_DATA): Remove push.c.
1149 * data/push.c: Rename to...
1150 * data/yacc.c: ... this, overwriting it.
1151 * etc/bench.pl.in (bench_grammar): `%pure-parser'-> `%define api.pure'.
1152 `%push-pull-parser' -> `%define api.push_pull "both"'.
1153 Remove old yacc.c tests, and update push.c tests to yacc.c.
1154
1155 2008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
1156
1157 * data/bison.m4 (b4_percent_code_get): Output %code block comments like
1158 `"%code top" blocks' instead of `%code "top" blocks'.
1159 * data/push.c: Import yacc.c changes from 2008-01-09 and 2007-08-03.
1160 Clean up whitespace in the output a little.
1161
1162 2008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
1163
1164 Fix documentation problems reported by Tim Josling at
1165 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00013.html>.
1166 * NEWS (2.3a+): Mention removal of --no-parser, -n, and %no-parser.
1167 * doc/bison.texinfo (Token Decl): Token numbers are *nonnegative*
1168 integers. Explain the effect of literal string aliases on error
1169 messages. Copy token 0 documentation from the C++ skeleton
1170 documentation.
1171
1172 2008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
1173
1174 Accept a token number in a %left, %right, or %nonassoc for POSIX
1175 conformance. Reported by Tim Josling at
1176 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00010.html>.
1177 * NEWS (2.3a+): Mention.
1178 * doc/bison.texinfo (Precedence Decl): Describe how literal strings
1179 and code numbers are treated by precedence declarations.
1180 * src/parse-gram.y (precedence_declaration): Use symbols.prec instead
1181 of symbols.1.
1182 (symbols.prec): New, just like symbols.1 but uses symbol.prec instead
1183 of symbol.
1184 (symbol.prec): New, just like symbol but allows INT.
1185 * src/symtab.c (symbol_user_token_number_set): Remove an aver that no
1186 longer holds.
1187 * tests/regression.at (Token number in precedence declaration): New
1188 test case.
1189
1190 2008-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
1191
1192 DJGPP specific issues.
1193 * djgpp/config.bat: Add filenames that are not 8.3 clean and that must
1194 be changed. Copyright timestamp adjusted.
1195 * djgpp/config.sed: Add filenames that are not 8.3 clean and that must
1196 be changed. Copyright timestamp adjusted.
1197 * djgpp/config.site: Copyright timestamp adjusted.
1198 * djgpp/config_h.sed: Copyright timestamp adjusted.
1199 * djgpp/djunpack.bat: Copyright timestamp adjusted.
1200 * djgpp/fnchnage.lst: Add filenames that are not 8.3 clean to the
1201 filename translation list.
1202 * djgpp/subpipe.c (init_subpipe): Check the environment variables
1203 TMPDIR, TMP and TEMP, in that order, to determinate where the temp
1204 files shall be created. Before trying to use the temp dir where the
1205 environment variable points to check that the dir really exists. If
1206 not default to the cwd as temp dir. Copyright timestamp adjusted.
1207 * djgpp/subpipe.h: Copyright timestamp adjusted.
1208 * djgpp/testsuite.sed: Copyright timestamp adjusted.
1209
1210 2008-01-30 Paul Eggert <eggert@cs.ucla.edu>
1211
1212 * doc/bison.texinfo: Update Back-Cover text to reflect new GNU wording.
1213
1214 2008-01-09 Paul Eggert <eggert@cs.ucla.edu>
1215
1216 * data/yacc.c (yyparse): Correct the comment when locations aren't used.
1217 Problem reported by Claudio Saavedra in
1218 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00003.html>.
1219
1220 2008-01-05 Wojciech Polak <polak@gnu.org>
1221
1222 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Precede an XHTML
1223 document's title with the input grammar file name.
1224
1225 2007-12-22 Joel E. Denny <jdenny@ces.clemson.edu>
1226
1227 Automate regression testing of the XML/XSLT implementation. Discussed
1228 starting at
1229 <http://lists.gnu.org/archive/html/bison-patches/2007-11/msg00021.html>.
1230 * configure.ac (XSLTPROC): New substitution.
1231 * Makefile.am (maintainer-xml-check): New phony target invoking...
1232 * tests/Makefile.am (maintainer-xml-check): ... this new phony target
1233 invoking make maintainer-check with BISON_TEST_XML=1.
1234 * tests/atlocal.in (XSLTPROC): New.
1235 * tests/local.at (AT_BISON_CHECK): New macro to (1) instruct Valgrind
1236 not to report reachable memory when Bison is expected to have a
1237 non-zero exit status and (2) to compare XML/XSLT output with --graph
1238 and --report=all output for every working grammar when
1239 BISON_TEST_XML=1.
1240 (AT_BISON_CHECK_NO_XML): Likewise, but skip XML checks.
1241 (AT_BISON_CHECK_XML): New.
1242 (AT_QUELL_VALGRIND): New.
1243 * tests/testsuite.at (ORIGINAL_AT_CHECK): Remove this and...
1244 (AT_CHECK): ... don't redefine this since this was the old way to
1245 quell Valgrind.
1246 * tests/actions.at: Rewrite all AT_CHECK invocations for bison as
1247 AT_BISON_CHECK invocations.
1248 * tests/c++.at: Likewise.
1249 * tests/calc.at: Likewise.
1250 * tests/conflicts.at: Likewise.
1251 * tests/cxx-type.at: Likewise.
1252 * tests/existing.at: Likewise.
1253 * tests/glr-regression.at: Likewise.
1254 * tests/headers.at: Likewise.
1255 * tests/input.at: Likewise.
1256 * tests/java.at: Likewise.
1257 * tests/output.at: Likewise.
1258 * tests/push.at: Likewise.
1259 * tests/reduce.at: Likewise.
1260 * tests/regression.at: Likewise.
1261 * tests/sets.at: Likewise.
1262 * tests/skeletons.at: Likewise.
1263 * tests/synclines.at: Likewise.
1264 * tests/torture.at: Likewise.
1265 (Big triangle): Use AT_BISON_CHECK_NO_XML instead since this grammar
1266 tends to hang xsltproc.
1267 (Big horizontal): Likewise.
1268
1269 2007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
1270
1271 In XML output, remove redundant class attribute on symbol element.
1272 * data/xslt/bison.xsl (xsl:key name="bison:symbolByName"): New.
1273 * data/xslt/xml2xhtml.xsl (xsl:template match="symbol"): Use it to
1274 look up a symbol to determine whether it's a nonterminal or terminal.
1275 * src/gram.c (rule_rhs_print_xml): Remove class attribute.
1276 * src/state.c (state_rule_lookahead_tokens_print_xml): Likewise.
1277
1278 Add prec/assoc information to XML output.
1279 * src/gram.c (grammar_rules_print_xml): For each rule that has a
1280 %prec, add a percent_prec attribute.
1281 * src/print-xml.c (print_grammar): For each terminal that has a
1282 precedence or associativity, add a prec or assoc attribute.
1283 (xml_indent): New.
1284 (xml_puts): Use xml_indent.
1285 (xml_printf): Use xml_indent.
1286 * src/print-xml.h (xml_indent): Prototype.
1287
1288 * tests/existing.at (GNU pic Grammar): Fix a rule miscopied from
1289 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
1290
1291 2007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
1292
1293 * data/xslt/bison.xsl (bison:ruleNumber): Rename to...
1294 (bison:ruleByNumber): ... this for clarity.
1295 * data/xslt/xml2dot.xsl (xsl:template match="item"): Update.
1296 * data/xslt/xml2text.xsl (xsl:template match="item"): Update.
1297 (xsl:template match="reduction"): Update.
1298 (xsl:template match="item"): Update.
1299 (xsl:template match="reduction"): Update.
1300
1301 In the XML output, don't print the list of rules where symbols appear.
1302 Compute it in XSLT instead. Discussed at
1303 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00024.html>.
1304 * data/xslt/bison.xsl (bison:ruleByLhs): New.
1305 (bison:ruleByRhs): New.
1306 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Use
1307 bison:ruleByRhs.
1308 (xsl:template match="terminal/rule"): Remove.
1309 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
1310 bison:ruleByRhs.
1311 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
1312 Remove.
1313 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Use
1314 bison:ruleByRhs and mode="number-link" for rule template.
1315 (xsl:template match="terminal/rule"): Remove.
1316 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
1317 bison:ruleByRhs and mode="number-link" for rule template.
1318 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
1319 Rewrite as...
1320 (xsl:template match="rule" mode="number-link"): ... this.
1321 * src/print-xml.c (print_grammar): Don't print the list of rules.
1322
1323 2007-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
1324
1325 Don't let --report affect XML output; always print all information.
1326 Discussed at
1327 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00020.html>.
1328 * src/conflicts.c (log_resolution): Implement.
1329 * src/print-xml.c (print_core): Implement.
1330 (print_state): Implement.
1331 (print_xml): Implement.
1332
1333 * NEWS (2.3a+): Fix quotes.
1334 * src/parse-gram.y (prologue_declaration): For consistency with -v,
1335 don't let %verbose clear the list specified by --report.
1336
1337 2007-11-26 Akim Demaille <akim@epita.fr>
1338
1339 * data/Makefile.am (dist_pkgdata_DATA): Ship and install bison.xsl.
1340
1341 2007-11-24 Joel E. Denny <jdenny@ces.clemson.edu>
1342
1343 In the XML output, list useless and unused symbols and rules with the
1344 useful ones and add a "usefulness" attribute. Discussed starting at
1345 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00017.html>.
1346 * src/gram.c (grammar_rules_partial_print_xml): Remove.
1347 (grammar_rules_print_xml): Print all rules instead of just those
1348 useful in the grammar, and add a "usefulness" attribute.
1349 * src/gram.h (grammar_rules_partial_print_xml): Remove prototype.
1350 * src/print-xml.c (print_rules_useless_in_parser): Remove.
1351 (print_grammar): Print all nonterminals instead of just useful ones,
1352 and add a "usefulness" attribute to nonterminals and terminals.
1353 (print_xml): Don't print a separate "reductions" or
1354 "rules-useless-in-parser" element.
1355 * src/reduce.c (reduce_output): Use reduce_token_unused_in_grammar.
1356 (reduce_xml): Remove.
1357 (reduce_token_unused_in_grammar): New.
1358 (reduce_nonterminal_useless_in_grammar): New.
1359 * src/reduce.h (reduce_xml): Remove prototype.
1360 (reduce_token_unused_in_grammar): Add prototype.
1361 (reduce_nonterminal_useless_in_grammar): Add prototype.
1362 * data/xslt/xml2text.xsl: Update for XML changes.
1363 * data/xslt/xml2xhtml.xsl: Update for XML changes.
1364 * tests/reduce.at (Useless Terminals): Update output.
1365 (Useless Rules): Update output.
1366 (Reduced Automaton): Update output.
1367
1368 Say "Terminals unused in grammar" instead of "Unused terminals".
1369 * NEWS (2.3a+): Update.
1370 * doc/bison.texinfo (Understanding): Update example output.
1371 * src/reduce.c (reduce_output): Implement.
1372 * data/xslt/xml2text.xsl: Implement.
1373 * data/xslt/xml2xhtml.xsl: Implement.
1374
1375 2007-11-18 Joel E. Denny <jdenny@ces.clemson.edu>
1376
1377 Accept --report-file=FILE to override the default `.output' filename.
1378 * NEWS (2.3a+): Mention.
1379 * doc/bison.texinfo (Bison Options): Add an entry.
1380 * src/files.c (compute_output_file_names): Don't override
1381 spec_verbose_file if already set.
1382 * src/getargs.c (usage): Document --report-file.
1383 (REPORT_FILE_OPTION): New anonymous enum member.
1384 (long_options): Add entry for it.
1385 (getargs): Add case for it setting spec_verbose_file.
1386
1387 * build-aux/cross-options.pl: Don't record a short option just because
1388 there's an arg.
1389 * doc/.cvsignore: Add yacc.1.
1390
1391 2007-11-14 Akim Demaille <akim@epita.fr>
1392
1393 * doc/yacc.1.in: New.
1394 * configure.ac, doc/Makefile.am: Adjust.
1395 * configure.ac (PACKAGE_COPYRIGHT_YEAR): New substitution, and new
1396 config.h symbol.
1397 Use AC_SUBST for assignments too.
1398 * src/getargs.c (version): Use PACKAGE_COPYRIGHT_YEAR.
1399
1400 2007-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
1401
1402 * src/gram.c: Remove comments that duplicate comments in gram.h.
1403
1404 When reporting useless rules and nonterminals, say "useless in grammar"
1405 instead of "useless", and say "useless in parser" instead of "never
1406 reduced". Discussed starting at
1407 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00033.html>.
1408 * NEWS (2.3a+): Mention this change.
1409 * data/xslt/xml2text.xsl: Update output text and expected input XML
1410 element names to match changes below.
1411 * data/xslt/xml2xhtml.xsl: Likewise.
1412 (xsl:template match="bison-xml-report"): Add missing entry in Table of
1413 Contents: "Rules useless in parser due to conflicts".
1414 * doc/bison.texinfo (Decl Summary): Reword a little.
1415 (Understanding): Update example output for changes below.
1416 * src/gram.c: (rule_useful_p): Rename to...
1417 (rule_useful_in_grammar_p): ... this.
1418 (rule_useless_p): Rename to...
1419 (rule_useless_in_grammar_p): ... this.
1420 (rule_never_reduced_p): Rename to...
1421 (rule_useless_in_parser_p): ... this.
1422 (grammar_rules_print): Update for renames.
1423 (grammar_rules_print_xml): Update for renames.
1424 (grammar_rules_never_reduced_report): Rename to...
1425 (grammar_rules_useless_report): ... this since it is used for either
1426 kind of useless rule.
1427 * src/gram.h: Reword comments and update function names in prototypes.
1428 * src/main.c (main): Say "rule useless in parser due to conflicts".
1429 * src/print-xml.c (print_rules_never_reduced): Rename to...
1430 (print_rules_useless_in_parser): ... this, and rename output XML
1431 element "rules-never-reduced" to "rules-useless-in-parser".
1432 (print_xml): Update for rename.
1433 * src/print.c (print_results): Say "Rules useless in parser due to
1434 conflicts".
1435 * src/reduce.c (reduce_grammar_tables): Say "rule useless in grammar".
1436 (nonterminals_reduce): Say "nonterminal useless in grammar".
1437 (reduce_output): Say "Nonterminals useless in grammar".
1438 Say "Rules useless in grammar".
1439 (reduce_xml): Rename output XML element "useless" to
1440 "useless-in-grammar".
1441 (reduce_print): Don't report the count of grammatically useless rules
1442 as "rules never reduced" just because %yacc is specified.
1443 In the correct report of this count, say nonterminal(s) and rule(s)
1444 "useless in grammar".
1445 * tests/conflicts.at (S/R in initial): Update expected output.
1446 (Defaulted Conflicted Reduction): Likewise.
1447 (Unreachable States After Conflict Resolution): Likewise.
1448 * tests/existing.at (GNU pic Grammar): Likewise.
1449 * tests/reduce.at (Useless Nonterminals): Likewise.
1450 (Useless Rules): Likewise.
1451 (Reduced Automaton): Likewise.
1452 (Underivable Rules): Likewise.
1453 (Empty Language): Likewise.
1454
1455 2007-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
1456
1457 * data/bison.m4 (b4_cat): Put a newline after the end delimiter of the
1458 here document and before the EOF so that BSD's implementation of Bourne
1459 shell doesn't parse the delimiter as part of the here document.
1460 * doc/.cvsignore: Add cross-options.texi.
1461 * src/getargs.c (usage): Add a blank line after the warning categories.
1462
1463 2007-11-08 Paolo Bonzini <bonzini@gnu.org>
1464
1465 * data/lalr1.java (Lexer): Remove usage of b4_pure_if.
1466
1467 2007-11-05 Akim Demaille <akim@epita.fr>
1468
1469 Remove Id: from bison.1.
1470 * doc/Makefile.am (remove_time_stamp): Include the sed invocation.
1471 (perl -0777 -pi -e 's/\.PP\nId): New.
1472 (.x.1): Use it to ignore the version control revision.
1473
1474 2007-11-05 Akim Demaille <demaille@gostai.com>
1475
1476 * build-aux/Makefile.am: Ship cross-options.pl.
1477 * doc/Makefile.am: Always refer to cross-options.texi with
1478 $(srcdir).
1479 (MAINTAINERCLEANFILES): Add it.
1480
1481 2007-11-04 Akim Demaille <demaille@gostai.com>
1482
1483 Generate the long/short option cross-table.
1484 * build-aux/cross-options.pl: New.
1485 * doc/Makefile.am (cross-options.texi): New.
1486 * doc/bison.texinfo: Use it.
1487
1488 2007-11-04 Akim Demaille <demaille@gostai.com>
1489
1490 Generate bison.1 using help2man.
1491 * doc/common.x, doc/bison.x: New.
1492 * doc/Makefile.am (bison.1, .x.1): New.
1493 The code is taken from autoconf-2.61/man/Makefile.am.
1494 * configure.ac: Look for help2man.
1495
1496 2007-11-04 Akim Demaille <demaille@gostai.com>
1497
1498 Complete --help.
1499 * src/getargs.c (usage): Document -W, make it clear that -d,
1500 -g and -x have optional arguments.
1501
1502 2007-11-04 Akim Demaille <demaille@gostai.com>
1503
1504 Find sha1sum when named gsha1sum.
1505 * bootstrap (find_tool): New.
1506 ($SHA1SUM): New.
1507
1508 2007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
1509
1510 Deprecate %pure-parser and add `%define api.pure'. Discussed starting
1511 at
1512 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00006.html>.
1513 * NEWS (2.3a+): Mention.
1514 * data/bison.m4 (b4_pure_if): Don't define it here.
1515 * data/c.m4 (b4_identification): Depend on individual skeletons to
1516 define b4_pure_flag, b4_push_flag, or b4_pull_flag if they use the
1517 values of the %define variables api.pure or api.push_pull. Define
1518 YYPURE, YYPUSH, and YYPULL accordingly.
1519 * data/glr.c: Define b4_pure_if based on `%define api.pure' unless
1520 glr.cc has already defined b4_pure_flag.
1521 * data/push.c: Define b4_pure_if based on `%define api.pure'.
1522 Remove YYPUSH and YYPULL since they're back in b4_identification again.
1523 * data/yacc.c: Define b4_pure_if based on `%define api.pure'.
1524 * doc/bison.texinfo (Pure Decl): Update.
1525 (Push Decl): Update.
1526 (Decl Summary): Add api.pure to %define entry.
1527 In %pure-parser entry, say it's deprecated and reference %define.
1528 (Pure Calling): Update.
1529 (Error Reporting): Update.
1530 (C++ Scanner Interface): Update.
1531 (How Can I Reset the Parser): Update.
1532 (Table of Symbols): In %pure-parser entry, say it's deprecated and
1533 reference %define.
1534 * src/getargs.c (pure_parser): Remove global variable.
1535 * src/getargs.h (pure_parser): Remove extern.
1536 * src/output.c (prepare): Don't define pure_flag muscle.
1537 * src/parse-gram.y (prologue_declaration): Implement %pure-parser as a
1538 wrapper around `%define api.pure'.
1539 * tests/calc.at (Simple LALR Calculator): Update.
1540 (Simple GLR Calculator): Update.
1541 * tests/cxx-type.at (GLR: Resolve ambiguity, pure, no locations):
1542 Update.
1543 (GLR: Resolve ambiguity, pure, locations): Update.
1544 (GLR: Merge conflicting parses, pure, no locations): Update.
1545 (GLR: Merge conflicting parses, pure, locations): Update.
1546 * tests/glr-regression.at (Uninitialized location when reporting
1547 ambiguity): Update
1548 * tests/input.at (Unused %define api.pure): New test case.
1549 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Update definition for
1550 AT_PURE_IF and AT_PURE_AND_LOC_IF.
1551 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
1552
1553 2007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
1554
1555 %define push_pull -> %define api.push_pull. Discussed starting at
1556 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00005.html>.
1557 * data/push.c: Expect the new name.
1558 * data/yacc.c: Likewise.
1559 * doc/bison.texinfo (Push Decl): Update.
1560 (Decl Summary): Update %define entry.
1561 (Push Parser Function): Update.
1562 (Pull Parser Function): Update.
1563 (Parser Create Function): Update.
1564 (Parser Delete Function): Update.
1565 * tests/calc.at (Simple LALR Calculator): Update.
1566 * tests/input.at (%define enum variables): Update.
1567 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
1568 (Push Parsing: Multiple impure instances): Update.
1569 (Push Parsing: Unsupported Skeletons): Update.
1570 * tests/torture.at (Exploding the Stack Size with Alloca): Update.
1571 (Exploding the Stack Size with Malloc): Update.
1572
1573 * NEWS (2.3a+): Add an entry for the push parser, and clean up the
1574 other entries some.
1575
1576 2007-10-27 Joel E. Denny <jdenny@ces.clemson.edu>
1577
1578 For the XML output's terminal element, rename @number to @token-number,
1579 and add @symbol-number. In the nonterminal element, rename @number to
1580 @symbol-number. Discussed starting at
1581 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00040.html>.
1582 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Update for
1583 renames.
1584 (xsl:template match="nonterminal"): Likewise.
1585 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Likewise.
1586 (xsl:template match="nonterminal"): Likewise.
1587 * src/print-xml.c (print_grammar): Implement.
1588
1589 2007-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
1590
1591 * data/xslt/xml2dot.xsl (xsl:template match="automaton/state"): After
1592 2007-10-11 change, the child elements here are items not rules.
1593 (xsl:template match="item"): New.
1594 (xsl:template match="rule"): Update for new reduced itemset.
1595 (xsl:template match="point"): Remove.
1596 (xsl:template match="empty"): For consistency with --graph, don't
1597 output "/* empty */".
1598 * data/xslt/xml2text.xsl (xsl:template match="terminal"): When invoking
1599 line-wrap, don't pass a negative value as first-line-length since this
1600 won't work with the following changes.
1601 (xsl:template name="line-wrap"): Simplify slightly.
1602 (xsl:template name="ws-search"): Eliminate recursion.
1603 * src/print_graph.c (print_core): Don't print a reduction's lookahead
1604 set next to an item whose dot is not at the end of the RHS even if it
1605 happens to be associated with the same rule.
1606
1607 2007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
1608
1609 Add %define lr.keep_unreachable_states.
1610 * NEWS (2.3a+): Mention it in the entry for unreachable state removal.
1611 * doc/bison.texinfo (Decl Summary): Mention it in the %define entry.
1612 * src/main.c (main): Implement it.
1613 * tests/conflicts.at (Unreachable States After Conflict Resolution):
1614 Extend to test it, and fix a typo.
1615
1616 2007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
1617
1618 * NEWS (2.3a+): Add entry for recent .output file lookahead set fix.
1619 * doc/bison.texinfo (Understanding): Remove a bogus lookahead set in
1620 the example .output text.
1621 * tests/regression.at (Extra lookahead sets in report): Improve wording
1622 of comments.
1623
1624 2007-10-17 Wojciech Polak <polak@gnu.org>
1625
1626 * src/print-xml.c (print_grammar): Renamed
1627 <terminal> and <nonterminal> attributes:
1628 "type" to "number" and "symbol" to "name".
1629 * data/xslt/xml2text.xsl (xsl:template match="terminal"):
1630 Use new attribute names.
1631 (xsl:template match="nonterminal"): Likewise.
1632 * data/xslt/xml2xhtml.xsl: Likewise.
1633
1634 2007-10-17 Joel E. Denny <jdenny@ces.clemson.edu>
1635
1636 * doc/bison.texinfo (Bison Options): Add entry for --print-datadir.
1637 (Option Cross Key): Likewise.
1638
1639 * src/print-xml.c (print_core): Don't print a reduction's lookahead set
1640 next to an item whose dot is not at the end of the RHS even if it
1641 happens to be associated with the same rule.
1642 * src/print.c (print_core): Likewise.
1643 * tests/conflicts.at (Unresolved SR Conflicts): Update output.
1644 (Resolved SR Conflicts): Update output.
1645 * tests/regression.at (Extra lookahead sets in report): New test case.
1646
1647 2007-10-11 Wojciech Polak <polak@gnu.org>
1648
1649 * src/print-xml.c (print_core): Remove item set
1650 redundancy.
1651 * data/xslt/bison.xsl (bison:ruleNumber): New key.
1652 Improve processing time. Suggested by Joel E. Denny.
1653 * data/xslt/xml2dot.xsl (xsl:template name="escape"):
1654 Write xsl:param "required" attribute as comment.
1655 * data/xslt/xml2text.xsl (xsl:template match="item"): New.
1656 (xsl:template match="rule"): Support new reduced itemset.
1657 (xsl:template match="point"): Remove.
1658 * data/xslt/xml2xhtml.xsl: Likewise.
1659
1660 2007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
1661
1662 * src/getargs.c (version): Update copyright year.
1663
1664 2007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
1665
1666 Make xml2dot.xsl and --graph produce the same output.
1667 * data/xslt/xml2dot.xsl (xsl:template match="rule"): Use a `&#10;'
1668 instead of a `\n'. That is, don't add escapes yet or they'll be doubly
1669 escaped later.
1670 (xsl:template name="output-node"): Use the new escape template instead
1671 of the string-replace template directly.
1672 (xsl:template name="output-edge"): Likewise.
1673 (xsl:template name="escape"): New, escapes backslashes and newlines in
1674 addition to quotation marks.
1675 * src/graphviz.c (start_graph, output_node, output_edge): Add
1676 whitespace to output for legibility.
1677
1678 Make xml2text.xsl and --report produce the same output, and remove the
1679 XML "conflicts" element since a conflict summary is easily extracted
1680 from the automaton.
1681 * data/xslt/bison.xsl: New.
1682 (xsl:template match="state" mode="bison:count-conflicts): New.
1683 * data/xslt/xml2text.xsl: Import bison.xsl.
1684 (xsl:template match="bison-xml-report"): Instead of styling the
1685 "conflicts" element, style the "automaton" element with mode
1686 "conflicts". Unlike the former, the latter lists S/R and R/R
1687 conflicts for a state on the same line.
1688 (xsl:template match="conflicts"): Remove.
1689 (xsl:template match="conflict"): Remove.
1690 (xsl:template match="terminal"): Line-wrap the list of rules in which
1691 the terminal is used.
1692 (xsl:template match="nonterminal"): Likewise for nonterminals.
1693 (xsl:template match="automaton" mode="conflicts"): New.
1694 (xsl:template match="state" mode="conflicts"): New.
1695 (xsl:template name="line-wrap"): New.
1696 (xsl:template name="ws-search"): New.
1697 * data/xslt/xml2xhtml.xsl: Import bison.xsl.
1698 (xsl:template match="bison-xml-report"): Instead of styling the
1699 "conflicts" element, style the "automaton" element with mode
1700 "conflicts."
1701 (xsl:template match="conflicts"): Remove.
1702 (xsl:template match="conflict"): Remove.
1703 (xsl:template match="automaton" mode="conflicts"): New.
1704 (xsl:template match="state" mode="conflicts): New.
1705 * src/conflicts.c (conflicts_output_xml): Remove.
1706 * src/conflicts.h (conflicts_output_xml): Remove prototype.
1707 * src/print-xml.c (print_xml): Don't invoke conflicts_output_xml.
1708 * src/print.c (print_grammar): Consistently wrap at the 66th column so
1709 the corresponding XSLT is easier. Also, never wrap between a word and
1710 the comma that follows it.
1711
1712 2007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
1713
1714 Improve C++ namespace support. Discussed starting at
1715 <http://lists.gnu.org/archive/html/help-bison/2007-09/msg00016.html>.
1716 * data/c++.m4: (b4_namespace_ref, b4_namespace_open,
1717 b4_namespace_close): New macros that interpret the %define variable
1718 "namespace" so its value can contain "::" to indicate nested
1719 namespaces.
1720 * data/glr.cc (b4_namespace): Don't define, and replace all uses with
1721 the above macros.
1722 * data/lalr1.cc (b4_namespace): Likewise.
1723 * data/location.cc (b4_namespace): Likewise.
1724 * doc/bison.texinfo (Decl Summary): Move `%define push_pull' entry
1725 inside a new table in the general %define entry. Document `%define
1726 namespace' there as well. Point the %name-prefix entry to it since it
1727 explains it more completely in the case of C++.
1728 (C++ Bison Interface): Mention `%define namespace' instead of
1729 %name-prefix.
1730 (Table of Symbols): Remove the `%define push_pull' entry. The %define
1731 entry suffices.
1732 * tests/c++.at (Relative namespace references): New test case.
1733 (Absolute namespace references): New test case.
1734 (Syntactically invalid namespace references): New test case.
1735 * tests/input.at (C++ namespace reference errors): New test case.
1736
1737 2007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
1738
1739 Add syncline support and location accessor to internal %define
1740 interfaces.
1741 * data/bison.m4 (b4_percent_define_get_loc): New.
1742 (b4_percent_define_get_syncline): New.
1743 (b4_percent_define_flag_if): Use b4_percent_define_get_loc.
1744 (b4_percent_define_default): Record defining location as line 1 rather
1745 than 0 for the sake of synchronizing #line's, and define
1746 b4_percent_define_syncline(VARIABLE).
1747 (b4_percent_define_check_values): Use b4_percent_define_get_loc.
1748 * src/muscle_tab.c (muscle_syncline_grow): New.
1749 (muscle_code_grow): Use muscle_syncline_grow.
1750 (muscle_percent_define_insert): Use muscle_percent_define_get_loc, and
1751 define b4_percent_define_syncline(VARIABLE).
1752 (muscle_percent_define_get_loc): New.
1753 (muscle_percent_define_get_syncline): New.
1754 (muscle_percent_define_flag_if): Use muscle_percent_define_get_loc, and
1755 remove some unused variables.
1756 (muscle_percent_define_default): Record defining location as line 1
1757 rather than 0 for the sake of synchronizing #line's, and define
1758 b4_percent_define_syncline(VARIABLE).
1759 (muscle_percent_define_check_values): Use
1760 muscle_percent_define_get_loc.
1761 * src/muscle_tab.h (muscle_percent_define_get_loc): Prototype.
1762 (muscle_percent_define_get_syncline): Prototype.
1763 * tests/skeletons.at (%define Boolean variables: invalid skeleton
1764 defaults): Update output for location change.
1765 (Complaining during macro argument expansion): Extend to test
1766 b4_percent_define_get_loc and b4_percent_define_get_syncline errors.
1767
1768 2007-10-07 Joel E. Denny <jdenny@ces.clemson.edu>
1769
1770 Fix some error-reporting macro bugs.
1771 * data/bison.m4 (b4_cat): New.
1772 (b4_error, b4_error_at): Use b4_cat to send error directives directly
1773 to stdout so they don't become arguments to other macros. Update
1774 comments and add examples.
1775 (b4_warn, b4_warn_at, b4_complain, b4_complain_at): Update comments and
1776 add examples.
1777 (b4_fatal, b4_fatal_at): Likewise, and invoke m4_exit(1) immediately
1778 after printing the error directive so that M4 doesn't report subsequent
1779 problems that are induced by this problem.
1780 * src/scan-skel.l: Recognize @` digraph outside of directive arguments
1781 instead of just in them. Recognize @\n in both places. Both expand to
1782 the empty string. Needed by b4_cat.
1783 * tests/skeletons.at (Complaining during macro argument expansion):
1784 New test case.
1785 (Fatal errors make M4 exit immediately): New test case.
1786
1787 2007-10-04 Joel E. Denny <jdenny@ces.clemson.edu>
1788
1789 Implement --print-datadir.
1790 * src/getargs.c (usage): Mention.
1791 (PRINT_DATADIR_OPTION): New anonymous enum member.
1792 (long_options): Add entry for it.
1793 (getargs): Add case for it calling compute_pkgdatadir.
1794 * src/output.c (output_skeleton): Encapsulate data directory
1795 computation from here...
1796 (prepare): ... and from here...
1797 (compute_pkgdatadir): ... into this new function.
1798 * src/output.h (compute_pkgdatadir): Prototype.
1799
1800 2007-09-29 Joel E. Denny <jdenny@ces.clemson.edu>
1801
1802 * src/print-xml.c (escape_bufs): New static global variable
1803 replacing...
1804 (xml_escape_n): ... the static local variable buf here.
1805 (print_xml): Free memory for escape_bufs.
1806 * src/reduce.c (reduce_xml): XML-escape terminal symbol tags.
1807
1808 2007-09-25 Joel E. Denny <jdenny@ces.clemson.edu>
1809
1810 Replace `%push-parser' and `%push-pull-parser' with
1811 `%define push_pull "push"' and `%define push_pull "both"'.
1812 `%define push_pull "pull"' is the default.
1813 * doc/bison.texinfo (Push Decl, Push Parser Function,
1814 Pull Parser Function, Parser Create Function, Parser Delete Function):
1815 Update declarations.
1816 (Decl Summary, Table of Symbols): Replace %push-parser and
1817 %push-pull-parser entries with a %define push_pull entry.
1818 * data/bison.m4 (b4_percent_define_check_values): New macro.
1819 (b4_pull_if, b4_push_if, b4_use_push_for_pull_if): Move these
1820 definitions...
1821 * data/c.m4 (b4_identification): ... and the YYPUSH and YYPULL cpp
1822 definitions...
1823 * data/push.c: ... to here and compute them from the value of the
1824 %define variable push_pull.
1825 * data/c-skel.m4: Instead of choosing the push.c skeleton for push
1826 parsing requests here...
1827 * data/yacc.c: ... hack this to switch to push.c any time
1828 b4_use_push_pull_flag or the %define variable push_pull is set. This
1829 will go away when we mv push.c yacc.c.
1830 * data/c++-skel.m4, data/glr.c, data/java-skel.m4: Don't report that
1831 push parsing is not supported since unused %define variables are
1832 reported anyway.
1833 * src/getargs.c, src/getargs.h (pull_parser, push_parser): Remove.
1834 * src/muscle_tab.h (muscle_percent_define_check_values): Update
1835 comments for consistency with b4_percent_define_check_values.
1836 * src/output.c (prepare): Don't insert b4_pull_flag and b4_push_flag
1837 muscles.
1838 * src/parse-gram.y (PERCENT_PUSH_PARSER, PERCENT_PUSH_PULL_PARSER):
1839 Remove.
1840 (prologue_declaration): Remove %push-parser and %push-pull-parser
1841 rules.
1842 * src/scan-gram.l (%push-parser, %push-pull-parser): Remove rules.
1843 * tests/calc.at: Update declarations.
1844 * tests/input.at (%define enum variables): New test case.
1845 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update
1846 declaration.
1847 (Push Parsing: Multiple impure instances): Update declaration.
1848 (Push Parsing: Unsupported Skeletons): New test case.
1849 * tests/torture.at (Exploding the Stack Size with Alloca): Update
1850 declaration.
1851 (Exploding the Stack Size with Malloc): Update declaration.
1852
1853 2007-09-24 Wojciech Polak <polak@gnu.org>
1854
1855 Add XSLT transformations.
1856
1857 * data/xslt/xml2dot.xsl: Transform XML into DOT.
1858 * data/xslt/xml2text.xsl: Transform XML into plain text.
1859 * data/xslt/xml2xhtml.xsl: Transform XML into XHTML.
1860 * data/Makefile.am (xsltdir): New variable.
1861 (dist_xslt_DATA): Add xslt/*.xsl files.
1862
1863 2007-09-23 Paul Eggert <eggert@cs.ucla.edu>
1864
1865 * src/conflicts.c (log_resolution): Fix indenting bugs I introduced.
1866 Problem reported by Wojciech Polak.
1867 * src/print-xml.c (xml_puts): Work even if LEVEL exceeds INT_MAX/2.
1868 (xml_printf): Undo change I made on 21 September; that is,
1869 indent 2 spaces, not 1.
1870
1871 2007-09-23 Joel E. Denny <jdenny@ces.clemson.edu>
1872
1873 Pacify ./configure --enable-gcc-warnings.
1874 * src/print-xml.c, src/print-xml.h (xml_puts): Make third argument
1875 `char const *' instead of `char *'.
1876 * src/state.c (state_rule_lookahead_tokens_print_xml): Remove unused
1877 local variable `sep'.
1878
1879 2007-09-21 Paul Eggert <eggert@cs.ucla.edu>
1880
1881 * src/gram.c (rule_rhs_print_xml): Now static, since it isn't used
1882 elsewhere.
1883 * src/print-xml.c: Prefer "const" after types; that's more consistent.
1884 (xml_printf): Indent just 1 space for level.
1885 (e_char, xlate_char): Remove.
1886 (xml_escape_string): Rewrite to avoid undefined behavior (used
1887 storage that was freed from the stack).
1888 (xml_escape_n): Don't bother checking for subscript error.
1889
1890 2007-09-21 Wojciech Polak <polak@gnu.org>
1891
1892 Add Bison XML Automaton Report.
1893
1894 Add support for an -x option to generate an XML report.
1895 It is not documented yet.
1896 * src/print-xml.c: New file.
1897 * src/print-xml.h: Likewise.
1898 * lib/timevar.def (TV_XML): New var.
1899 * src/Makefile.am (bison_SOURCES): Add print-xml.c, print-xml.h.
1900 * src/conflicts.c: Include print-xml.h.
1901 (solved_conflicts_xml_obstack): New var.
1902 (log_resolution, conflicts_solve, conflicts_free):
1903 Add support for XML report.
1904 (conflicts_output_val): New function.
1905 * src/conflicts.h (conflicts_output_val): New decl.
1906 * src/files.c (spec_xml_file): New var.
1907 (compute_output_file_names, output_file_names_free): Add XML support.
1908 * src/files.h (spec_xml_file): New decl.
1909 * src/getargs.c (xml_flag): New var.
1910 (usage, short_options, long_options, getargs): Add XML support.
1911 * src/getargs.h (xml_flag): New decl.
1912 * src/gram.c: Include print-xml.h.
1913 (rule_lhs_print_xml, rule_rhs_print_xml):
1914 (grammar_rules_partial_print_xml, grammar_rules_print_xml):
1915 New functions.
1916 * src/gram.h: Declare external ones.
1917 * src/main.c: Include print-xml.h.
1918 (main): Add XML support.
1919 * src/reduce.c: Include print-xml.h.
1920 (reduce_xml): New function.
1921 * src/reduce.h: Declare it.
1922 * src/state.c: Include print-xml.h.
1923 (state_new): Add XML support.
1924 (state_rule_lookahead_tokens_print_xml): New function.
1925 * src/state.h: Declare it.
1926 (struct state): New member solved_conflicts_xml.
1927 * src/symtab.c (symbol_class_get_string): New function.
1928 * src/symtab.h: Declare it.
1929
1930 2007-09-21 Paul Eggert <eggert@cs.ucla.edu>
1931
1932 * GNUmakefile: Switch to coreutils's version.
1933 * bootstrap: Likewise.
1934 * Makefile.cfg: Adjust to new GNUmakefile.
1935 * README-hacking: Likewise.
1936
1937 Import from gnulib:
1938
1939 2006-08-18 Paul Eggert <eggert@cs.ucla.edu>
1940 Bruno Haible <bruno@clisp.org>
1941
1942 * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
1943 and is a script that invokes bison. Tighten the code. Add comments.
1944
1945 2007-08-28 Joel E. Denny <jdenny@ces.clemson.edu>
1946
1947 Spell "boolean" as "Boolean". Reported by Akim Demaille.
1948 * data/bison.m4 (b4_percent_define_flag_if): Fix complaint.
1949 * doc/bison.texinfo (Decl Summary): Fix.
1950 * src/muscle_tab.c (muscle_percent_define_flag_if): Fix complaint.
1951 * tests/input.at (Boolean %define variables): Update output.
1952 * tests/skeletons.at (%define boolean variables: invalid skeleton
1953 defaults): Rename to...
1954 (%define Boolean variables: invalid skeleton defaults): ... this and
1955 update output.
1956
1957 2007-08-17 Joel E. Denny <jdenny@ces.clemson.edu>
1958
1959 In impure push mode, don't allow more than one yypstate to be allocated
1960 since multiple impure parsers would corrupt yynerrs.
1961 * data/push.c (yypstate_allocated): New static global variable
1962 initialized to 0.
1963 (yypull_parse): If yypstate_new returns 0, don't report it as memory
1964 exhaustion if yypstate_allocated is 1, but still return 2.
1965 (yypstate_new): Invoke yyerror and return 0 if yypstate_allocated is
1966 already 1. Otherwise, set it to 1.
1967 (yypstate_delete): Set it to 0.
1968 * tests/push.at (Push Parsing: Multiple impure instances): New test
1969 case.
1970
1971 2007-08-17 Bob Rossi <bob@brasko.net>
1972
1973 * doc/bison.texinfo (Push Decl): Document the push parser.
1974 (Table of Symbols): Ditto.
1975 (Pure Decl): Ditto.
1976 (Decl Summary): Ditto.
1977 (Multiple Parsers, Push Parser Function, Pull Parser Function,
1978 Parser Create Function, Parser Delete Function):
1979 Add new push parser symbols.
1980 (Table of Symbols): Document push-parser, push-pull-parser,
1981 yypush_parse, yypull_parse, yypstate_new and yypstate_delete.
1982
1983 2007-08-15 Paul Eggert <eggert@cs.ucla.edu>
1984
1985 Update to GPLv3.
1986 * doc/gpl-3.0.texi: New file.
1987 * doc/gpl.texi: Remove.
1988 * COPYING, GNUmakefile, HACKING, Makefile.am, Makefile.cfg:
1989 * Makefile.maint, NEWS, PACKAGING, README, README-alpha:
1990 * README-hacking, TODO, bootstrap, bootstrap.conf:
1991 * configure.ac, data/Makefile.am, data/README, data/bison.m4:
1992 * data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4:
1993 * data/glr.c, data/glr.cc, data/java-skel.m4, data/java.m4:
1994 * data/lalr1.cc, data/lalr1.java, data/location.cc:
1995 * data/push.c, data/yacc.c, data/m4sugar/m4sugar.m4:
1996 * djgpp/Makefile.maint, djgpp/README.in, djgpp/config.bat:
1997 * djgpp/config.sed, djgpp/config.site, djgpp/config_h.sed:
1998 * djgpp/djunpack.bat, djgpp/subpipe.c, djgpp/subpipe.h:
1999 * djgpp/testsuite.sed, doc/Makefile.am, doc/bison.texinfo:
2000 * doc/fdl.texi, doc/refcard.tex, etc/Makefile.am, etc/README:
2001 * etc/bench.pl.in, examples/Makefile.am, examples/extexi:
2002 * examples/calc++/Makefile.am, lib/Makefile.am, lib/abitset.c:
2003 * lib/abitset.h, lib/bbitset.h, lib/bitset.c, lib/bitset.h:
2004 * lib/bitset_stats.c, lib/bitset_stats.h, lib/bitsetv-print.c:
2005 * lib/bitsetv-print.h, lib/bitsetv.c, lib/bitsetv.h:
2006 * lib/ebitset.c, lib/ebitset.h, lib/get-errno.c:
2007 * lib/get-errno.h, lib/lbitset.c, lib/lbitset.h:
2008 * lib/libiberty.h, lib/main.c, lib/subpipe.c, lib/subpipe.h:
2009 * lib/timevar.c, lib/timevar.def, lib/timevar.h:
2010 * lib/vbitset.c, lib/vbitset.h, lib/yyerror.c:
2011 * m4/c-working.m4, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4:
2012 * m4/timevar.m4, src/LR0.c, src/LR0.h, src/Makefile.am:
2013 * src/assoc.c, src/assoc.h, src/closure.c, src/closure.h:
2014 * src/complain.c, src/complain.h, src/conflicts.c:
2015 * src/conflicts.h, src/derives.c, src/derives.h, src/files.c:
2016 * src/files.h, src/flex-scanner.h, src/getargs.c:
2017 * src/getargs.h, src/gram.c, src/gram.h, src/graphviz.c:
2018 * src/lalr.c, src/lalr.h, src/location.c, src/location.h:
2019 * src/main.c, src/muscle_tab.c, src/muscle_tab.h:
2020 * src/nullable.c, src/nullable.h, src/output.c, src/output.h:
2021 * src/parse-gram.c, src/parse-gram.h, src/parse-gram.y:
2022 * src/print.c, src/print.h, src/print_graph.c:
2023 * src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c:
2024 * src/reduce.h, src/relation.c, src/relation.h:
2025 * src/revision.h, src/scan-code.h, src/scan-code.l:
2026 * src/scan-gram.h, src/scan-gram.l, src/scan-skel.h:
2027 * src/scan-skel.l, src/state.c, src/state.h, src/symlist.c:
2028 * src/symlist.h, src/symtab.c, src/symtab.h, src/system.h:
2029 * src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h:
2030 * tests/Makefile.am, tests/actions.at, tests/c++.at:
2031 * tests/calc.at, tests/conflicts.at, tests/cxx-type.at:
2032 * tests/existing.at, tests/glr-regression.at:
2033 * tests/headers.at, tests/input.at, tests/java.at:
2034 * tests/local.at, tests/output.at, tests/push.at:
2035 * tests/reduce.at, tests/regression.at, tests/sets.at:
2036 * tests/skeletons.at, tests/synclines.at, tests/testsuite.at:
2037 * tests/torture.at:
2038 Update to GPLv3.
2039
2040 2007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
2041
2042 Get rid of broken %no-parser, -n, and --no-parser implementation and
2043 documentation.
2044 * TODO: Don't mention them.
2045 * doc/bison.1: Likewise.
2046 * doc/bison.texinfo (Decl Summary): Likewise.
2047 (Bison Options): Likewise.
2048 (Option Cross Key): Likewise.
2049 * src/getargs.c (no_parser_flag): Remove global variable.
2050 (usage): Don't print description of -n and --no-parser.
2051 (long_options): Remove --no-parser entry here.
2052 (getargs): Remove -n case in the switch here.
2053 * src/getargs.h (no_parser_flag): Remove extern.
2054 * tests/regression.at (Web2c Actions): Remove comment that mentions
2055 --no-parser.
2056
2057 2007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
2058
2059 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Do not
2060 name user variables starting with `yy'. Just pass NULL instead of a
2061 dummy local &yylval to yypush_parse.
2062 * tests/torture.at (AT_DATA_STACK_TORTURE): Do not name user variables
2063 starting with `yy'.
2064
2065 2007-08-03 Joel E. Denny <jdenny@ces.clemson.edu>
2066
2067 * data/yacc.c (yyexhaustedlab): Define it when YYERROR_VERBOSE is
2068 true since it's then always used regardless of whether yyoverflow is
2069 defined. Reported by Christian Burger at
2070 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00031.html>.
2071 * THANKS: Add Christian Burger.
2072
2073 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
2074 node names: say "Decl Summary" not "Bison Declaration Summary".
2075
2076 2007-07-28 Joel E. Denny <jdenny@ces.clemson.edu>
2077
2078 * src/muscle_tab.c (muscle_percent_define_flag_if): In order to
2079 determine whether this function has already complained about an invalid
2080 value for a %define boolean variable, don't check whether Bison has
2081 ever examined the value. As written, the check was a tautology.
2082 Instead, record and check for this complaint using a separate muscle.
2083
2084 2007-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
2085
2086 Fix push parsing memory leak reported by Brandon Lucia at
2087 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00032.html>.
2088 * THANKS: Add Brandon Lucia.
2089 * data/push.c (yypstate_delete): Free the stack if it was reallocated
2090 but the parse never completed and thus freed it.
2091 * tests/Makefile.am (TESTSUITE_AT): Add push.at.
2092 * tests/testsuite.at: Include push.at.
2093 * test/push.at: New.
2094 (Push Parsing: Memory Leak for Early Deletion): New test case.
2095
2096 2007-07-17 Joel E. Denny <jdenny@ces.clemson.edu>
2097
2098 Improve handling of multiple S/R conflicts in the same state and of S/R
2099 conflicts involving multiple reductions.
2100 * src/conflicts.c (resolve_sr_conflict): Don't assign the error action
2101 set for a state here or Bison will abort if it is reassigned on a
2102 later conflicted reduction in the same state.
2103 Similarly, don't finalize and assign the solved conflicts report here
2104 or it will be lost if it is reassigned on a later conflicted reduction
2105 in the same state.
2106 (set_conflicts): Instead, assign them both here after all S/R conflicts
2107 in the state have been fully examined.
2108 * src/print.c (shift_set): Rename to...
2109 (no_reduce_set): ... this.
2110 (print_reductions): Update for rename, and add %nonassoc error action
2111 tokens to no_reduce_set so that, when printing the first remaining
2112 reduction on an error action token, the reduction is enclosed in
2113 brackets.
2114 (print_results): Update for rename.
2115 * tests/conflicts.at (Solved conflicts report for multiple reductions
2116 in a state): New test case.
2117 (%nonassoc error actions for multiple reductions in a state): New test
2118 case.
2119
2120 * src/main.c (main): Don't depend on C99 features.
2121
2122 2007-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
2123
2124 * build-aux/.cvsignore: Add compile.
2125 * lib/.cvsignore: Add charset.alias, ref-add.sed, ref-del.sed, and
2126 uniwidth.
2127
2128 2007-07-10 Joel E. Denny <jdenny@ces.clemson.edu>
2129
2130 * bootstrap (slurp): Create target directories that don't exist.
2131 Specifically, we need lib/uniwidth/ because of recent Gnulib changes.
2132
2133 2007-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
2134
2135 * LR0.c (new_itemsets): Fix wording in comments: say item index rather
2136 than item number.
2137 * closure.c (closure): Likewise.
2138 * state.h (reductions): Comment sorting of rules.
2139 (state): Comment sorting of items.
2140
2141 2007-07-02 Joel E. Denny <jdenny@ces.clemson.edu>
2142
2143 Fix C++ test cases after recent Gnulib changes. Discussed starting at
2144 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00000.html>.
2145 * examples/calc++/Makefile.am (DEFAULT_INCLUDES): Override Automake's
2146 definition in order to avoid Gnulib headers since we don't use config.h
2147 here.
2148 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Use AT_DATA_GRAMMAR
2149 rather than AT_DATA so that config.h is included.
2150
2151 2007-07-01 Joel E. Denny <jdenny@ces.clemson.edu>
2152
2153 * data/glr.c (yy_yypstack, yypstates, yypdumpstack): Use YYFPRINTF
2154 instead of fprintf. Guard these functions with #if YYDEBUG instead of
2155 #ifdef YYDEBUG for consistency with all other uses of YYDEBUG in Bison
2156 and so that YYFPRINTF is guaranteed to be defined here.
2157
2158 2007-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
2159
2160 * src/muscle_tab.c (muscle_percent_define_invalid_value): Replace
2161 with...
2162 (muscle_percent_define_check_values): ... this more helpful function.
2163 Again, it's not used yet, but it will be.
2164 * src/muscle_tab.h: Likewise.
2165
2166 Improve some comments in parser table construction.
2167 * src/LR0.c (new_itemsets): Explain sorting of itemset and kernel_base.
2168 (generate_states): Don't mention ruleset, which is internal to closure.
2169 * src/closure.c (closure): Explain sorting of core and itemset, which
2170 is required for this function to behave correctly.
2171 * src/closure.h (closure): Mention sorting.
2172
2173 2007-05-28 Joel E. Denny <jdenny@ces.clemson.edu>
2174
2175 * src/lalr.c (state_lookahead_tokens_count): For code readability,
2176 move the check for disabled transitions to an aver since conflict
2177 resolution hasn't happened yet.
2178
2179 * src/lalr.c (state_lookahead_tokens_count): Remove the check that
2180 labels a state as inconsistent just because it has error transitions.
2181 The original form of this check appeared in revision 1.1 of lalr.c,
2182 which was committed on 1991-12-21. Now (at least), changing the
2183 consistency label on such a state appears to have no useful effect in
2184 any of the places it is examined, which I enumerate below. The key
2185 point to understanding each item in this enumeration is that a state
2186 with an error transition is labelled consistent in the first place only
2187 if it has no rules, so the check cannot matter for states that have
2188 rules. (1) Labelling a state as inconsistent will cause set_conflicts
2189 to try to identify its conflicts, and a state must have *rules* to have
2190 conflicts. (2) Labelling a state as inconsistent will affect how
2191 action_row sets the default *rule* for the state. (3) Labelling a
2192 state as inconsistent will cause build_relations to add lookback edges
2193 to *rules* in that state.
2194 * src/state.h (struct state): Word the comment for member consistent
2195 more carefully.
2196
2197 2007-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
2198
2199 Don't depend on C99 features.
2200 * src/conflicts.c (conflicts_update_state_numbers): Fix for-loop.
2201 * src/lalr.c (lalr_update_state_numbers): Fix for-loop.
2202 * src/reader.c (check_and_convert_grammar): Fix for-loop.
2203 * src/state.c (state_mark_reachable_states): Fix for-loop.
2204 (state_remove_unreachable_states): Fix for-loop.
2205
2206 Don't widen struct state with member reachable just to temporarily
2207 record reachability. Instead, use a local bitset.
2208 * src/state.h (struct state): Remove member.
2209 * src/state.c (state_new): Don't initialize it.
2210 (state_mark_reachable_states): Rename to...
2211 (state_record_reachable_states): ... this, and use bitset.
2212 (state_remove_unreachable_states): Use bitset.
2213
2214 2007-05-26 Joel E. Denny <jdenny@ces.clemson.edu>
2215
2216 * src/Makefile.am (yacc): Quote target action commands properly so
2217 that the yacc script isn't corrupt. Reported by Hans Aberg at
2218 <http://lists.gnu.org/archive/html/bug-bison/2007-05/msg00003.html>.
2219
2220 * data/glr.c (yylval): As in yacc.c, don't extern in the header for
2221 the case of pure parsers. Reported by Frans Englich at
2222 <http://lists.gnu.org/archive/html/help-bison/2007-05/msg00018.html>.
2223 * THANKS: Add Frans Englich.
2224
2225 * NEWS (2.3a+): In the %code entry, reference section `Bison
2226 Declaration Summary' from the manual now since the %code summary has
2227 moved there.
2228 * doc/bison.texinfo (Prologue Alternatives): Mention that directives
2229 in the rules section must be terminated by semicolons.
2230
2231 2007-05-20 Joel E. Denny <jdenny@ces.clemson.edu>
2232
2233 Extend the front-end API for %define variables to more completely
2234 mirror the back-end. This will be useful in the future.
2235 * data/bison.m4 (b4_percent_define_get, b4_percent_define_ifdef):
2236 Update comments to mention the new front-end counterparts of these
2237 macros.
2238 * src/muscle_tab.c (MUSCLE_COMMON_DECODE): New macro with common code
2239 for muscle_string_decode and muscle_location_decode.
2240 (muscle_string_decode): New static function.
2241 (muscle_location_decode): Use MUSCLE_COMMON_DECODE.
2242 (muscle_percent_define_get, muscle_percent_define_ifdef): New
2243 functions.
2244 (muscle_percent_define_flag_if): Use muscle_percent_define_ifdef and
2245 muscle_percent_define_get to mimic the b4_percent_define_flag_if
2246 implementation more closely.
2247 (muscle_percent_define_invalid_value): New function.
2248 * src/muscle_tab.h (muscle_percent_define_get,
2249 muscle_percent_define_ifdef, muscle_percent_define_invalid_value):
2250 Prototype.
2251
2252 2007-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
2253
2254 * NEWS (2.3a+): Mention yesterday's state-removal change.
2255 (2.3a): Remove the %language entry, which was added after 2.3a.
2256 * src/LR0.c, src/closure.c, src/closure.h, src/conflicts.c,
2257 src/conflicts.h, src/lalr.c, src/lalr.h, src/print.c,
2258 src/print_graph.c, src/state.c, src/state.h, tests/conflicts.at,
2259 tests/existing.at: Update copyright date.
2260
2261 2007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
2262
2263 If conflict resolution makes states unreachable, remove those states,
2264 report rules that are then unused, and don't report conflicts in those
2265 states.
2266 * src/conflicts.c, src/conflicts.h (conflicts_update_state_numbers):
2267 New global function.
2268 * src/lalr.c, src/lalr.h (lalr_update_state_numbers): New global
2269 function.
2270 * src/main.c (main): After conflict resolution, remove the unreachable
2271 states and update all data structures that reference states by number.
2272 * src/state.c (state_new): Initialize each state's reachable member to
2273 false.
2274 (state_mark_reachable_states): New static function.
2275 (state_remove_unreachable_states): New global function.
2276 * src/state.h (struct state): Add member bool reachable.
2277 (state_remove_unreachable_states): Prototype.
2278 * tests/conflicts.at (Unreachable States After Conflict Resolution):
2279 New test case.
2280 * tests/existing.at (GNU pic Grammar): Update test case output now that
2281 an unused rule is discovered.
2282
2283 2007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
2284
2285 Minor code cleanup in parser table construction.
2286 * src/LR0.c (new_itemsets): Use item_number_is_symbol_number.
2287 (new_itemsets, save_reductions): Update for rename to nitemset.
2288 * src/closure.c (nritemset): Rename to...
2289 (nitemset): ... this since the "r" appears to meaningless and isn't
2290 used in the comments.
2291 (closure): Update for rename.
2292 * src/closure.h (nritemset): Update extern to...
2293 (nitemset): ... this.
2294 * src/lalr.c (LA): Fix a typo in comments.
2295 * src/print.c (print_core): Update for rename to nitemset.
2296 * src/print_graph.c (print_graph): Likewise.
2297 * src/state.h: Fix some typos in header comments.
2298
2299 2007-04-04 Paul Eggert <eggert@cs.ucla.edu>
2300
2301 * THANKS: Use ASCII for Sebastien Fricker's name. Bison source
2302 still sticks to ASCII. Sorry!
2303
2304 * README-hacking: New file, taken mostly from coreutils, with changes
2305 for Bison. Contains much of the contents of:
2306 * README-cvs: Remove.
2307 * bootstrap: Sync from gnulib.
2308 * build-aux/.cvsignore: Remove *.t, mkinstalldirs.
2309 * lib/.cvsignore: Add wchar.h, wctype.h. Remove exit.h.
2310
2311 2007-03-10 Joel E. Denny <jdenny@ces.clemson.edu>
2312
2313 * doc/bison.texinfo (Destructor Decl): Fix typo reported by Sebastian
2314 Setzer.
2315 (Java Differences): Fix some typos.
2316 * THANKS: Add Sebastian Setzer.
2317
2318 2007-03-07 Paolo Bonzini <bonzini@gnu.org>
2319
2320 * data/java.m4 (b4_single_class_if): Remove.
2321 (b4_abstract_if): Look at "%define abstract".
2322 (b4_lexer_if): New.
2323 (b4_union_name): Rename...
2324 (b4_yystype): ... to this. Map to "%define stype".
2325 (b4_rhs_value, b4_parse_param_decl, b4_lex_param_decl,
2326 b4_maybe_throws): Fix quoting.
2327 (b4_lex_param_call): Move below to keep b4_*_param_decl close.
2328 * data/lalr1.java (Lexer interface): Always define.
2329 (Lexer interface within parser class): Remove.
2330 (YYLexer class): New, used when "%code lexer" is present.
2331 (constructor): When "%code lexer" is used, pass %lex-param
2332 to the lexer constructor.
2333 (yylex, yyparse): Remove %lex-param from method invocations
2334 (YYStack, yyaction, yyparse): Rename b4_union_name to b4_yystype.
2335
2336 * doc/bison.texinfo (Java Bison Interface): Mention "%define
2337 abstract". Rename "%define union_name" to "%define stype".
2338 Rename method names according to previous patch.
2339 (Java Scanner Interface): Describe "%code lexer" instead of
2340 "%pure-parser" and "%define single_class".
2341 (Java Differences): Mention "%code lexer".
2342
2343 * tests/java.at (_AT_DATA_JAVA_CALC_Y): Remove final argument.
2344 Include scanner here, using macros from tests/local.at.
2345 (AT_DATA_CALC_Y): Remove final argument.
2346 (_AT_CHECK_JAVA_CALC): Likewise.
2347 (AT_CHECK_JAVA_CALC): Likewise. Test all four combinations
2348 of %locations and %error-verbose.
2349 (main): Test with and without %lex-param.
2350 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_LEXPARAM_IF.
2351 (AT_BISON_OPTION_POPDEFS): Pop it.
2352
2353 2007-03-07 Juan Manuel Guerrero <juan.guerrero@gmx.de>
2354
2355 DJGPP spefic issue. Inhibit the use of disallowed characters for
2356 file name genertion on Win98, WinXP, etc. These are |<>":?*\
2357 and concern testsuite case 46.
2358 * Makefile.am: djgpp/testsuite.sed added to EXTRA_DIST
2359 * djgpp/testsuite.sed: Inhibit the use of disallowed characters.
2360 * djgpp/config.bat: Inhibit the use of disallowed characters.
2361
2362 2007-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
2363
2364 Miscellaneous %define and %code cleanup.
2365 * data/bison.m4 (b4_percent_define_flag_if): Correct comments on how
2366 values are interpreted.
2367 * doc/bison.texinfo (Decl Summary): Clean up and extend %define
2368 documentation a little more.
2369 * src/muscle_tab.c (MUSCLE_USER_NAME_CONVERT,
2370 muscle_percent_define_insert, muscle_percent_code_grow): New
2371 functions/macros.
2372 * src/muscle_tab.h (muscle_percent_define_insert,
2373 muscle_percent_code_grow): Prototype.
2374 * src/parse-gram.y (prologue_declaration): Use
2375 muscle_percent_define_insert and muscle_percent_code_grow when parsing
2376 %define and %code directives.
2377
2378 Make it easy to share %define boolean variables between the front-end
2379 and back-end. Though not used yet, this will be useful in the future.
2380 * data/bison.m4 (b4_check_user_names): Rewrite comments to talk about
2381 Bison uses of names rather than just skeleton uses of names.
2382 (b4_percent_define_get, b4_percent_define_ifdef): Rename
2383 b4_percent_define_skeleton_variables(VARIABLE) to
2384 b4_percent_define_bison_variables(VARIABLE).
2385 (b4_percent_code_get, b4_percent_code_ifdef): Rename
2386 b4_percent_code_skeleton_qualifiers(QUALIFIER) to
2387 b4_percent_code_bison_qualifiers(QUALIFIER).
2388 (b4_check_user_names_wrap): Update for renames.
2389 * src/muscle_tab.c, src/muscle_tab.h (muscle_percent_define_flag_if,
2390 muscle_percent_define_default): New functions mimicking
2391 b4_percent_define_flag_if and b4_percent_define_default.
2392
2393 For %define variables, report locations for invalid values and
2394 redefinitions.
2395 * data/bison.m4 (b4_percent_define_flag_if): Read
2396 b4_percent_define_loc(VARIABLE) to report the location of an invalid
2397 value for VARIABLE.
2398 (b4_percent_define_default): Save a special location in
2399 b4_percent_define_loc(VARIABLE) in case the default value for VARIABLE
2400 must later be reported as invalid.
2401 * src/muscle_tab.c (muscle_location_grow, muscle_location_decode): New
2402 functions.
2403 (muscle_percent_define_insert): Record the location of VARIABLE in
2404 muscle percent_define_loc(VARIABLE), and use it to report the previous
2405 location for a redefinition.
2406 (muscle_percent_define_flag_if): Update like b4_percent_define_flag_if.
2407 (muscle_percent_define_default): Update like b4_percent_define_default.
2408 (muscle_grow_user_name_list): Rename to...
2409 (muscle_user_name_list_grow): ... this for consistency and use
2410 muscle_location_grow.
2411 * src/muscle_tab.h (muscle_location_grow): Prototype.
2412 * tests/input.at (%define errors): Update expected output.
2413 * tests/skeletons.at (%define boolean variables: invalid skeleton
2414 defaults): New test case.
2415
2416 2007-02-28 Joel E. Denny <jdenny@ces.clemson.edu>
2417
2418 * src/print.c (lookahead_set, state_default_rule): Remove.
2419 (print_reductions): Replace state_default_rule invocation with
2420 equivalent use of yydefact, which was computed in token_actions in
2421 tables.c.
2422 (print_results): Don't allocate lookahead_set.
2423
2424 2007-02-27 Paolo Bonzini <bonzini@gnu.org>
2425
2426 * data/lalr1.java: Prefix all private members with yy.
2427
2428 2007-02-24 Joel E. Denny <jdenny@ces.clemson.edu>
2429
2430 Use YYFPRINTF instead of fprintf where appropriate. Reported by
2431 Sebastien Fricker at
2432 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00035.html>.
2433 * THANKS: Add Sebastien Fricker.
2434 * data/glr.c, data/push.c, data/yacc.c (yy_reduce_print): Implement.
2435 * doc/bison.texinfo (Tracing): Make it clearer that YYFPRINTF must
2436 accept a variable number of arguments.
2437
2438 2007-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
2439
2440 * bootstrap: Remove occurrences of .#bootmp from lib/Makefile.
2441
2442 2007-02-13 Juan Manuel Guerrero <juan.guerrero@gmx.de>
2443
2444 * djgpp/config.bat: Adjustments concerning the use of autoconf 2.61.
2445 * djgpp/config.sed: Adjustments concerning the use of autoconf 2.61.
2446 * djgpp/config.site: Adjustments concerning the use of autoconf 2.61.
2447
2448 2007-02-11 Paul Eggert <eggert@cs.ucla.edu>
2449
2450 Undo my 2007-02-07 change, switching back to the c-strcase module
2451 introduced in the 2007-02-03 change. Bruno Haible reported that
2452 the 2007-02-07 change would be dangerous in Turkish if we add a
2453 language whose name contains "i", since "i" is not lowercase "I"
2454 in Turkish.
2455 * bootstrap.conf (gnulib_modules): Add c-strcase. Remove strcase.
2456 * lib/.cvsignore: Add c-ctype.c, c-ctype.h, c-strcase.h,
2457 c-strcasecomp.c, c-strncasecmp.c. Remove strcasecmp.c, strncasecmp.c.
2458 * m4/.cvsignore: Remove strcase.m4.
2459 * src/getargs.c: Revert 2007-02-07 change, as follows.
2460 Include c-strcase.h.
2461 (language_argmatch): Use c_strcasecmp rather than strcasecmp.
2462
2463 2007-02-11 Bruno Haible <bruno@clisp.org>
2464
2465 Enable the Java related testsuite tests when the only Java compiler
2466 found is a gcj < 4.3. Discussed at
2467 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00016.html>.
2468 * configure.ac (gt_JAVACOMP): Don't specify a target_version.
2469
2470 2007-02-11 Joel E. Denny <jdenny@ces.clemson.edu>
2471
2472 * data/Makefile.am: Update copyright date.
2473 * data/push.c (yypull_parse): Report memory exhaustion and return 2 if
2474 yypstate_new returns NULL.
2475 (yypstate_new): Return NULL if malloc does.
2476 * src/reader.c (packgram): Move translation of rule actions from the
2477 beginning of packgram to...
2478 (check_and_convert_grammar): ... here right before packgram is invoked
2479 so it's easier to write more complete comments, and remove redundant
2480 code.
2481
2482 2007-02-10 Joel E. Denny <jdenny@ces.clemson.edu>
2483
2484 As in semantic actions, make @$ in %initial-action, %destructor, and
2485 %printer imply %locations.
2486 * src/scan-code.l (SC_SYMBOL_ACTION): Set locations_flag = true when
2487 scanning @$.
2488 * tests/actions.at (AT_CHECK_ACTION_LOCATIONS): New macro supporting...
2489 (@$ in %initial-action implies %locations,
2490 @$ in %destructor implies %locations,
2491 @$ in %printer implies %locations): ... these new test cases.
2492
2493 2007-02-07 Paul Eggert <eggert@cs.ucla.edu>
2494
2495 Undo most of the 2007-02-03 change, switching to the strcase module
2496 now that gnulib strcase has been fixed.
2497 * bootstrap.conf (gnulib_modules): Remove c-strcase. Add strcase.
2498 * lib/.cvsignore: Remove c-ctype.c, c-ctype.h, c-strcase.h,
2499 c-strcasecomp.c, c-strncasecmp.c. Add strcasecmp.c, strncasecmp.c
2500 * m4/.cvsignore: Add strcase.m4.
2501 * src/getargs.c: Revert 2007-02-03 change, as follows.
2502 Don't include c-strcase.h.
2503 (language_argmatch): Use strcasecmp rather than c_strcasecmp.
2504 strcasecmp has "unspecified behavior" outside the POSIX locale,
2505 but it works fine in practice if at least one argument is ASCII,
2506 as is the case in Bison.
2507
2508 2007-02-07 Paolo Bonzini <bonzini@gnu.org>
2509
2510 * tests/java.at: Skip tests if only one of javac/java is present.
2511 Reported by Joel E. Denny.
2512 * tests/atlocal.in: Adjust copyright years.
2513
2514 2007-02-05 Paolo Bonzini <bonzini@gnu.org>
2515
2516 * data/lalr1.java (Stack): Work around old verifiers that disallow
2517 access to the private fields of an inner class, from the outer class.
2518 We can make Stack's fields public because user code doesn't have access
2519 to the instance of Stack used by parse(). Reported by Paul Eggert.
2520
2521 2007-02-03 Paul Eggert <eggert@cs.ucla.edu>
2522
2523 * .cvsignore: Add javacomp.sh, javaexec.sh. Is this really
2524 the right spot for these files?
2525 * bootstrap.conf (gnulib_modules): Add c-strcase.
2526 * lib/.cvsignore: Add c-ctype.c c-ctype.h, c-strcasecomp.c,
2527 c-strncasecmp.c.
2528 * src/getargs.c: Include c-strcase.h.
2529 (language_argmatch): Use c_strcasecmp rather than strcasecmp,
2530 to avoid unspecified behavior.
2531
2532 2007-02-01 Joel E. Denny <jdenny@ces.clemson.edu>
2533
2534 * doc/bison.texinfo (Decl Summary): Correct typo.
2535
2536 2007-01-30 Paolo Bonzini <bonzini@gnu.org>
2537
2538 * data/bison.m4 (b4_percent_define_flag_if): Don't treat 0 as false.
2539 Complain if the value does not match empty, "true" or "false".
2540 * data/c++.m4: Adjust default definitions of %define variables.
2541 * data/java.m4: Adjust default definitions of %define variables.
2542 * doc/bison.texinfo (Decl Summary): Adjust the %define entry according
2543 to above behavior.
2544 * tests/input.at (Boolean %define variables): Test new behavior.
2545
2546 2007-01-29 Paolo Bonzini <bonzini@gnu.org>
2547
2548 * NEWS: Mention java.
2549 * TODO: Remove things that are done.
2550 * bootstrap.conf: Add javacomp-script and javaexec-script.
2551 * configure.ac: Invoke gt_JAVACOMP and gt_JAVAEXEC.
2552
2553 * data/Makefile.am: Add new files.
2554 * data/java-skel.m4: New.
2555 * data/java.m4: New.
2556 * data/lalr1.java: New.
2557
2558 * doc/bison.texinfo: Put "A Complete C++ Example" under
2559 C++ Parsers. Add Java Parsers. Put C++ Parsers and Java Parsers
2560 under Other Languages.
2561
2562 * src/getargs.c (valid_languages): Add Java.
2563 * src/getargs.h (struct bison_language): Update size of string fields.
2564
2565 * tests/Makefile.am: Add java.at.
2566 * tests/atlocal.in: Add CONF_JAVA and CONF_JAVAC.
2567 * tests/java.at: New.
2568 * tests/testsuite.at: Include it.
2569
2570 2007-01-28 Joel E. Denny <jdenny@ces.clemson.edu>
2571
2572 Clean up.
2573 * src/scan-skel.l (at_directive_perform): Add at_directive_argc and
2574 at_directive_argv arguments so these no longer have to be global
2575 variables. Also, update the implementation for the following changes.
2576 (fail_for_at_directive_too_many_args,
2577 fail_for_at_directive_too_few_args): Add at_directive_name argument.
2578 (at_directive_name): Remove as at_directive_argv[0] will be used for
2579 this now.
2580 (AT_DIRECTIVE_ARGC_MAX): Increment to make space in at_directive_argv
2581 for the directive name.
2582 (at_directive_argc, at_directive_argv): Make these local within
2583 skel_lex instead of global.
2584 (INITIAL): Update directive start action for above changes.
2585 (SC_AT_DIRECTIVE_ARG): Rename to...
2586 (SC_AT_DIRECTIVE_ARGS): ... this, and update for above changes.
2587 (SC_AT_DIRECTIVE_SKIP_WS): Update.
2588 (scan_skel): Move yylex_destroy to...
2589 (skel_scanner_free): ... here.
2590 * tests/skeletons.at (installed skeleton file name): Rename to...
2591 (installed skeleton file names): ... this.
2592
2593 2007-01-27 Joel E. Denny <jdenny@ces.clemson.edu>
2594
2595 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
2596 node names: say "Table of Symbols" not "Bison Symbols", and say "Decl
2597 Summary" not "Directives".
2598 * doc/bison.texinfo (Decl Summary, Calc++ Parser): Cross-reference the
2599 %code entry in "Decl Summary" rather than the one in "Table of Symbols"
2600 since the former is now the more complete one.
2601 (Prologue Alternatives): Likewise and do the same for %defines.
2602 (Table of Symbols): Add summary of %code, add summary of %define, and
2603 move full %code documentation to...
2604 (Decl Summary): ... here for consistency with other entries in these
2605 sections.
2606 Move %define entry in order to keep this list alphabetized.
2607 Reword %define entry a little to put less emphasis on the skeleton
2608 concept, which most users shouldn't have to think about.
2609
2610 2007-01-26 Paul Eggert <eggert@cs.ucla.edu>
2611
2612 Adjust to recent gnulib changes.
2613 * lib/.cvsignore: Remove stpcpy.h, strndup.h, strnlen.h.
2614 Add string.h, string_.h, unistd_.h, wchar_.h.
2615 * m4/.cvsignore: Add gnulib-common.m4, string_h.m4, wchar.m4.
2616 * src/system.h: Don't include <stpcpy.h>; this is now done by
2617 <string.h>.
2618
2619 2007-01-23 Paolo Bonzini <bonzini@gnu.org>
2620
2621 Simplify implementation of unqualified %code, implement macros for
2622 uniform treatment of boolean %define flags. Document %define.
2623 * data/bison.m4 (b4_percent_define_ifdef, b4_percent_define_flag_if,
2624 b4_percent_code_ifdef): New.
2625 (b4_percent_code_get): Map unqualified %code to b4_percent_code().
2626 * data/c++.m4: Define default value for global_tokens_and_yystype.
2627 * data/glr.cc: Likewise.
2628 * data/location.cc: Use b4_percent_define_flag_if.
2629
2630 * doc/bison.texinfo (Decl Summary): Document %define.
2631
2632 * src/parse-gram.y (Unqualified %code): Change muscle name to
2633 b4_percent_code().
2634 (content.opt): Default to empty.
2635
2636 2007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
2637
2638 Implement support for relative and absolute skeleton file names.
2639 Discussed starting at
2640 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00071.html>.
2641 * doc/bison.texinfo (Decl Summary): Document in %skeleton entry.
2642 (Bison Options): Document in --skeleton entry.
2643 * src/output.c (output_skeleton): Use strncpy rather than strcpy since
2644 full_skeleton can't necessarily hold all of pkgdatadir.
2645 If the specified skeleton file name contains a `/', don't prepend
2646 pkgdatadir.
2647 * src/parse-gram.y (prologue_declaration): If the specified skeleton
2648 file name contains a `/', prepend the grammar file directory.
2649 * tests/Makefile.am (TESTSUITE_AT): Add skeletons.at.
2650 * skeletons.at: New file.
2651 (relative skeleton file names): New test case.
2652 (installed skeleton file names): New test case.
2653 * tests/testsuite.at: Include skeletons.at.
2654
2655 * bootstrap: Update copyright to 2007.
2656
2657 2007-01-17 Paolo Bonzini <bonzini@gnu.org>
2658
2659 * bootstrap: Remove occurrences of .#bootmp from the files.
2660
2661 2007-01-17 Akim Demaille <akim@epita.fr>
2662
2663 * doc/bison.texinfo (Calc++ Parser): Don't try to alias
2664 nonterminals.
2665 Use per-type %printer.
2666
2667 2007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
2668
2669 * NEWS, data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4,
2670 data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
2671 djgpp/config.site, src/files.c, src/files.h, src/main.c,
2672 src/muscle_tab.c, src/muscle_tab.h, src/parse-gram.y, src/reader.h,
2673 src/scan-skel.h, src/scan-skel.l, tests/actions.at, tests/calc.at,
2674 tests/glr-regression.at, tests/input.at, tests/local.at,
2675 tests/output.at, tests/torture.at: Update copyright to 2007.
2676
2677 2007-01-16 Akim Demaille <akim@epita.fr>
2678
2679 * doc/bison.texinfo (Calc++ Parsing Driver): Let "parse" return an
2680 error code.
2681 (Calc++ Scanner): Exit with failure if we can't open the input
2682 file.
2683 Accept "-" standing for stdin.
2684 (Calc++ Top Level): Print the result only if the parsing was
2685 successful.
2686
2687 2007-01-16 Akim Demaille <akim@epita.fr>
2688
2689 * data/lalr1.cc (yy_reduce_print_): Add a missing end-of-line.
2690
2691 2007-01-15 Paolo Bonzini <bonzini@gnu.org>
2692 and Joel E. Denny <jdenny@ces.clemson.edu>
2693
2694 Clean up %define and %code implementation in M4 some. Most
2695 importantly, rename all related macros to be in the b4_percent_define
2696 and b4_percent_code namespaces. Also, complete support for `.' in
2697 %define variable names and %code qualifiers.
2698 * data/bison.m4 (b4_check_user_names): Check for special
2699 "SKELETON-NAMESPACE(name)" macros instead of using two nested
2700 m4_foreach loops.
2701 (b4_get_percent_define, b4_get_percent_code): Rename to...
2702 (b4_percent_define_get, b4_percent_code_get): ... these.
2703 Extend documentation with examples.
2704 For SKELETON-NAMESPACE (as documented for b4_check_user_names), use
2705 b4_percent_define_skeleton_variables and
2706 b4_percent_code_skeleton_qualifiers.
2707 Expect any value for the %define variable `foo' to be stored in the
2708 macro named `b4_percent_define(foo)'; expect any %code blocks for the
2709 qualifier `foo' to be stored in a macro named `b4_percent_code(foo)';
2710 expect any unqualified %code blocks to be stored in a macro named
2711 `b4_percent_code_unqualified'.
2712 Use m4_indir so that %define variable names and %code qualifiers can
2713 contain `.', which is allowed by the grammar parser.
2714 (b4_percent_define_default): New macro to set a default value for a
2715 %define variable.
2716 (m4_wrap): Update wrapped code, and fix some underquoting.
2717 (b4_check_user_names_wrap): Update and define outside the m4_wrap.
2718 Expect grammar uses of %define variables and %code qualifiers to be
2719 defined in b4_percent_define_user_variables and
2720 b4_percent_code_user_qualifiers.
2721 * data/c++.m4: Use b4_percent_define_default rather than
2722 m4_define_default. Fix some underquoting. Skeleton usage of %define
2723 variable define_location_comparison now implies skeleton usage of
2724 %define variable filename_type.
2725 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
2726 data/push.c, data/yacc.c: Update macro names.
2727 * src/parse-gram.y (prologue_declaration, grammar_declaration): Update
2728 muscle names.
2729
2730 2007-01-14 Juan Manuel Guerrero <juan.guerrero@gmx.de>
2731
2732 DJGPP specific issues.
2733
2734 * djgpp/config.site: Set ac_cv_path_mkdir to a sane DJGPP specific
2735 default. Set gl_cv_absolute_wctype_h to a sane DJGPP specific default.
2736
2737 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
2738
2739 * tests/glr-regression.at: Use AT_PARSER_CHECK rather than AT_CHECK to
2740 run parsers in all tests so that Valgrind is invoked during
2741 maintainer-check-valgrind.
2742 (Duplicate representation of merged trees): Free all semantic values.
2743 (Duplicated user destructor for lookahead): Likewise.
2744
2745 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
2746
2747 * tests/local.at (AT_PARSER_CHECK): Add a PRE argument to specify a
2748 command-line prefix.
2749 * tests/torture.at (Exploding the Stack Size with Alloca): Stderr is
2750 ignored, so use that PRE to set --log-fd=1 in VALGRIND_OPTS so we don't
2751 miss Valgrind messages.
2752 (Exploding the Stack Size with Malloc): Likewise.
2753
2754 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
2755
2756 Ignore YYSTACK_USE_ALLOCA for push parsers since the stacks can't be
2757 locals. Reported by Juan Manuel Guerrero at
2758 <http://lists.gnu.org/archive/html/bug-bison/2007-01/msg00000.html>.
2759 * data/push.c: Enclose the #ifdef YYSTACK_USE_ALLOCA in b4_push_if.
2760 Fix some indentation also.
2761 * tests/torture.at (Exploding the Stack Size with Alloca): Add comment
2762 explaining this issue.
2763
2764 2007-01-09 Paolo Bonzini <bonzini@gnu.org>
2765 and Joel E. Denny <jdenny@ces.clemson.edu>
2766
2767 Simplify union and prologue handling, and escape union and lex/parse
2768 params with digraphs.
2769 * data/bison.m4 (b4_pre_prologue, b4_post_prologue): Set their default
2770 values to the empty string since these are no longer guaranteed
2771 initialized by the front-end.
2772 * data/glr.c, data/glr.cc, data/lalr1.cc, data/push.c, data/yacc.c: Add
2773 braces around b4_user_stype since this is no longer done by the
2774 front-end.
2775 * src/files.c, src/files.h (pre_prologue_obstack,
2776 post_prologue_obstack): Remove.
2777 * src/muscle_tab.c (muscle_pair_list_grow): Don't duplicate header
2778 comments here. Use MUSCLE_OBSTACK_SGROW so that values are escaped
2779 with digraphs. This fixes lex params and parse params.
2780 * src/muscle_tab.h (muscle_pair_list_grow): Update comments.
2781 * src/output.c (prepare): Remove muscle insertion of the prologues.
2782 (output): Remove freeing of pre_prologue_obstack and
2783 post_prologue_obstack.
2784 * src/parse-gram.y (prologue_declaration): Use muscle_code_grow rather
2785 than prologue_augment for prologue parsing so you don't need prologue
2786 obstacks.
2787 (grammar_declaration): For %union RHS, use `braceless' instead of
2788 "{...}" so that braces are already stripped and code is escaped with
2789 digraphs.
2790 * src/reader.c (prologue_augment): Remove.
2791 (reader): Remove initialization of pre_prologue_obstack and
2792 post_prologue_obstack.
2793 * src/reader.h (prologue_augment): Remove.
2794
2795 * data/c.m4: Remove stray parenthesis.
2796
2797 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
2798
2799 Remove quotes from variables names in %define directives and from
2800 qualifiers in %code directives, and restrict the characters that are
2801 allowed in them to M4-friendly ones. For %define, continue to support
2802 the quoted form as a deprecated feature. Discussed starting at
2803 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00023.html>.
2804 * NEWS (2.3a+): Add entry for the change to %define. Update entry for
2805 %code.
2806 * doc/bison.texinfo (Prologue Alternatives): Update.
2807 (Decl Summary): In %defines entry, update mention of `%code requires'
2808 and `%code provides'.
2809 (C++ Location Values): Update %define uses.
2810 (Calc++ Parser Interface): Likewise.
2811 (Calc++ Parser): Likewise, and update `%code requires' uses.
2812 (Table of Symbols): Update %code documentation.
2813 * src/parse-gram.y (prologue_declaration): For %define variables, use
2814 `variable' instead of `STRING'.
2815 (grammar_declaration): For %code qualifiers, use `ID' instead of
2816 `STRING'.
2817 (variable): New nonterminal that takes an `ID' or a `STRING'.
2818 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update %code
2819 and %define uses.
2820 * tests/calc.at (_AT_DATA_CALC_Y): Update %define use.
2821 * tests/input.at (Reject unused %code qualifiers): Update %code uses.
2822 (%define errors): Update %define uses.
2823
2824 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
2825
2826 * src/parse-gram.y (prologue_declaration): Use MUSCLE_INSERT_STRING
2827 instead of muscle_insert for %define values so that M4-special
2828 characters are replaced with digraphs.
2829 * tests/input.at (%define errors): Extend to check weird values.
2830
2831 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
2832
2833 Instead of having skeletons declare all valid %define variables and
2834 %code qualifiers, provide macros that retrieve the associated values
2835 and build these lists automatically. Thus Bison will now warn when a
2836 variable or qualifier is not used by the skeleton in the current
2837 invocation regardless of whether it might sometimes be used by that
2838 skeleton in other invocations. Also, move all %define value macros to
2839 the b4_percent_define_ namespace, and remove the %define "NAME" {CODE}
2840 form, which is replaced by %code.
2841 * data/bison.m4 (b4_check_for_unrecognized_names): Rename to...
2842 (b4_check_user_names): ... this, and change the series of valid name
2843 arguments to a single list argument for names used in the skeleton
2844 similar to the existing list argument for names used in the grammar.
2845 Warn instead of complaining.
2846 (b4_get_percent_define, b4_get_percent_code): New to retrieve %define
2847 values and %code code, to format %code code properly, and to build
2848 lists of all %define variables and %code qualifiers used in the
2849 skeleton: b4_skeleton_percent_define_variables and
2850 b4_skeleton_percent_code_qualifiers.
2851 (b4_check_percent_define_variables, b4_check_percent_code_qualifiers):
2852 Remove, and...
2853 (m4_wrap): ... m4_wrap b4_check_user_names invocations instead so that
2854 the skeleton names lists can finish building first. In place of
2855 b4_used_percent_define_variables and b4_used_percent_code_qualifiers,
2856 expect the lists b4_user_percent_define_variables and
2857 b4_user_percent_code_qualifiers.
2858 * data/c++.m4: Where setting default values for b4_parser_class_name,
2859 b4_location_type, b4_filename_type, b4_namespace, and
2860 b4_define_location_comparison, update their names to the
2861 b4_percent_define_ namespace.
2862 * data/glr.c: Don't use b4_check_percent_define_variables and
2863 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
2864 * data/glr.cc, data/lalr1.cc: Likewise, and use b4_get_percent_define.
2865 (b4_parser_class_name, b4_namespace): Define these using
2866 b4_get_percent_define for parser_class_name and namespace.
2867 * data/location.cc: Use b4_get_percent_define.
2868 * data/push.c: Don't use b4_check_percent_define_variables and
2869 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
2870 * data/yacc.c: Likewise, and don't call m4_exit in
2871 b4_use_push_for_pull_if or m4_wrap code will never execute.
2872 * src/muscle_tab.c, src/muscle_tab.h (muscle_grow_used_name_list):
2873 Rename to...
2874 (muscle_grow_user_name_list): ... this for consistency with the
2875 terminology used in bison.m4.
2876 * src/parse-gram.y (prologue_declaration): Prepend "percent_define_" to
2877 %define variable names, and rename muscle used_percent_define_variables
2878 to user_percent_define_variables.
2879 (grammar_declaration): Rename muscle used_percent_code_qualifiers to
2880 user_percent_code_qualifiers.
2881 (content): Remove.
2882 (content.opt): Replace content RHS with STRING RHS so %define "NAME"
2883 {CODE} form is no longer accepted.
2884 * tests/input.at (Reject bad %code qualifiers): Rename to...
2885 (Reject unused %code qualifiers): ... this, and update test output.
2886 (%define error): Update test output.
2887
2888 2007-01-07 Joel E. Denny <jdenny@ces.clemson.edu>
2889
2890 Check for unrecognized %define variables similar to checking for
2891 unrecognized %code qualifiers. Check for redefined %define variables.
2892 * data/bison.m4 (b4_check_for_unrecognized_names): New macro that
2893 generalizes...
2894 (b4_check_percent_code_qualifiers): ... this, which now wraps it.
2895 (b4_check_percent_define_variables): New, also wraps it.
2896 * data/glr.c: Unless glr.cc is wrapping glr.c, declare no valid %define
2897 variables using b4_check_percent_define_variables.
2898 * data/glr.cc, data/lalr1.cc: Declare the valid %define variables as
2899 all those exercised in the test suite and all those listed in the
2900 `Default values' section of c++.m4. Are there others?
2901 * data/push.c, data/yacc.c: Declare no valid %define variables.
2902 * src/muscle_tab.c, src/muscle_tab.h (muscle_find_const): New function,
2903 similar to muscle_find, but it works even when the muscle stores a
2904 const value.
2905 (muscle_grow_used_name_list): New function for constructing the used
2906 name list muscles that b4_check_for_unrecognized_names requires.
2907 * src/parse-gram.y (prologue_declaration): Warn if a variable is
2908 %define'd more than once. Define the b4_used_percent_define_variables
2909 muscle with muscle_grow_used_name_list.
2910 (grammar_declaration): Abbreviate %code code with
2911 muscle_grow_used_name_list.
2912 * tests/input.at (%define errors): New.
2913
2914 2007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
2915
2916 Provide warn_at, complain_at, and fatal_at function callbacks to the
2917 skeletons, and use this for %code qualifier complaints.
2918 * data/bison.m4 (b4_error_at): New, invoked by...
2919 (b4_warn_at, b4_complain_at, b4_fatal_at): ... these new macros to wrap
2920 the skeleton scanner's new @warn_at(...@), @complain_at(...@), and
2921 @fatal_at(...@) directives.
2922 (b4_check_percent_code_qualifiers): Rewrite to expect locations for
2923 qualifiers in b4_used_percent_code_qualifiers and to use
2924 b4_complain_at.
2925 * src/location.c, src/location.h (boundary_set_from_string): New global
2926 function.
2927 * src/muscle_tab.c, src/muscle_tab.h (muscle_boundary_grow): New global
2928 function.
2929 * src/parse-gram.y (grammar_declaration): Add locations for qualifiers
2930 to b4_used_percent_code_qualifiers.
2931 * src/scan-skel.l (fail_for_at_directive_too_few_args): New static
2932 function.
2933 (AT_DIRECTIVE_ARGC_MAX): Increase for boundary arguments.
2934 (lineno): Rename to...
2935 (out_lineno): ... this so I don't misunderstand it again.
2936 (SC_AT_DIRECTIVE_SKIP_WS): Don't increment out_lineno for newlines
2937 here; these newlines are in the input but not the output file.
2938 (SC_AT_DIRECTIVE_ARG): Likewise. Extract directive execution to...
2939 (at_directive_perform): ... this new static function, and add handling
2940 of new @warn_at(...@), @complain_at(...@), and @fatal_at(...@)
2941 directives.
2942 * tests/input.at (Reject bad %code qualifiers): Update test output with
2943 locations and extend.
2944
2945 * tests/output.at (Output file name: [, Output file name: ]): Remove
2946 bogus comment about these tests failing.
2947
2948 2007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
2949
2950 Clean up b4_check_percent_code_qualifiers a little.
2951 * data/bison.m4 (b4_check_percent_code_qualifiers): Expect qualifiers
2952 in b4_used_percent_code_qualifiers to be double-M4-quoted. Rewrite
2953 documentation and add examples.
2954 * src/parse-gram.y (grammar_declaration): Double-M4-quote those
2955 qualifiers here.
2956
2957 2007-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
2958
2959 Don't use m4_divert since it makes m4_divert_push and m4_divert_pop
2960 unreliable -- especially when they're hidden inside another macro.
2961 * data/bison.m4, data/c++-skel.m4, data/c++.m4, data/c-skel.m4,
2962 data/c.m4: Remove m4_divert(-1).
2963 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
2964 data/push.c, data/yacc.c: Likewise, and replace m4_divert(0) with
2965 m4_divert_push(0) and m4_divert_pop(0).
2966 * src/output.c (output_skeleton): Don't add an m4_divert_push(0) and
2967 an m4_wrap([m4_divert_pop(0)]) to the M4. Diversion -1, which is
2968 pushed and popped by m4sugar, should be first on the stack.
2969
2970 Provide warn, complain, and fatal function callbacks to the skeletons.
2971 This provides more flexibility than m4_fatal, improves the error
2972 message format, and captures messages for translation. Discussed
2973 starting at
2974 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00063.html>.
2975 * data/bison.m4 (b4_error): New, invoked by...
2976 (b4_warn, b4_complain, b4_fatal): ... these new macros to wrap the
2977 skeleton scanner's new @warn(...@), @complain(...@), and @fatal(...@)
2978 directives. Because these M4 macros might be called when the current
2979 diversion is -1 or 0, m4_divert_push and m4_divert_pop is used; thus
2980 the previous removal of uses of m4_divert, which caused trouble.
2981 (b4_check_percent_code_qualifiers): Use b4_complain instead of
2982 m4_fatal to report unrecognized %code qualifiers.
2983 * data/c++-skel.m4: Use b4_complain instead of m4_fatal to report C++
2984 push parser requests.
2985 * data/glr.c: Use b4_complain instead of m4_fatal to report
2986 non-deterministic push parser requests.
2987 Update @output usage to @output(...@) form.
2988 * data/glr.cc, data/lalr1.cc: Use b4_fatal instead of m4_fatal to
2989 report missing %defines. Update @output usage to @output(...@) form.
2990 * data/location.cc, data/push.c, data/yacc.c: Update @output usage to
2991 @output(...@) form.
2992 * src/main.c (main): Invoke skel_scanner_free.
2993 * src/scan-skel.h (skel_scanner_free): Prototype new function.
2994 * src/scan-skel.l (FLEX_NO_OBSTACK): Don't define; we now need the
2995 obstack_for_string from flex-scanner.h.
2996 (YY_DECL): Use to declare skel_lex static.
2997 (decode_at_digraphs): Remove; now handled in the new
2998 SC_AT_DIRECTIVE_ARG start condition.
2999 (fail_for_at_directive_too_many_args, fail_for_invalid_at): New static
3000 functions.
3001 (at_directive_name, AT_DIRECTIVE_ARGC_MAX, at_directive_argc,
3002 at_directive_argv): New static globals.
3003 (INITIAL): Use fail_for_invalid_at.
3004 Don't parse `@output file_name\n' or `@basename(...@)'. Instead,
3005 recognize the start of a generalized `@directive(...@)' form and
3006 start...
3007 (SC_AT_DIRECTIVE_ARG): ... this new start condition to parse the
3008 directive args (using the new obstack_for_string), to decode the
3009 contained @ diagraphs, and to perform the directive. It recognizes
3010 @basename(...@), @warn(...@), @complain(...@), @fatal(...@), and
3011 @output(...@).
3012 (SC_AT_DIRECTIVE_SKIP_WS): New start condition started by
3013 SC_AT_DIRECTIVE_ARG to skip whitespace after the argument delimiter,
3014 `@,'.
3015 (scan_skel): Initialize obstack_for_string on the first call.
3016 (skel_scanner_free): New function to free obstack_for_string.
3017 * tests/input.at (Reject bad %code qualifiers): Update test output.
3018
3019 2007-01-04 Joel E. Denny <jdenny@ces.clemson.edu>
3020
3021 Consolidate the 4 prologue alternative directives (%code, %requires,
3022 %provides, and %code-top) into a single %code directive with an
3023 optional qualifier field. Discussed at
3024 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00012.html>.
3025 * NEWS (2.3a+): Rewrite the existing entry for the prologue
3026 alternatives.
3027 * doc/bison.texinfo (Prologue Alternatives): Update.
3028 (Decl Summary): Update to %code "requires" and %code "provides".
3029 (Calc++ Parser): Update to %code "requires".
3030 (Table of Symbols): Remove entries for %requires, %provides, and
3031 %code-top. Rewrite %code entry, and add a %code "QUALIFIER" entry.
3032 * data/bison.m4 (b4_user_provides, b4_user_requires): Remove as these
3033 are replaced by b4_percent_code_provides and b4_percent_code_requires,
3034 which are skeleton-specific.
3035 (b4_check_percent_code_qualifiers): New. A skeleton can use this to
3036 declare what %code qualifiers it supports and to complain if any other
3037 qualifiers were used in the grammar.
3038 * data/glr.cc: Update to use b4_user_code([b4_percent_code_requires])
3039 and b4_user_code([b4_percent_code_provides]) in place of
3040 b4_user_requires and b4_user_provides.
3041 * data/glr.c, data/lalr1.cc, data/push.c, data/yacc.c: Likewise.
3042 Add b4_user_code([b4_percent_code_top]) and
3043 b4_user_code([b4_percent_code]).
3044 Invoke b4_check_percent_code_qualifiers.
3045 * src/parse-gram.y (PERCENT_CODE_TOP, PERCENT_PROVIDES,
3046 PERCENT_REQUIRES): Remove.
3047 (grammar_declaration): Remove RHS's for %code-top, %provides, and
3048 %requires. Rewrite the %code RHS as the unqualified form defining the
3049 muscle b4_percent_code. Add another RHS for the qualified %code form,
3050 which defines muscles of the form b4_percent_code_QUALIFIER and the
3051 b4_used_percent_code_qualifiers muscle.
3052 * src/scan-gram.l (PERCENT_CODE_TOP, PERCENT_PROVIDES,
3053 PERCENT_REQUIRES): Remove.
3054 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update to use
3055 %code "requires" and %code "provides".
3056 * tests/input.at (Reject bad %code qualifiers): New.
3057
3058 2007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
3059
3060 Use the new code_props interface for destructors and printers.
3061 * src/symtab.h (symbol, semantic_type): Remove destructor_location and
3062 printer_location members, and change the type of the destructor and
3063 printer members to code_props.
3064 (symbol_destructor_set, symbol_destructor_get, symbol_printer_set,
3065 symbol_printer_get, semantic_type_destructor_set,
3066 semantic_type_printer_set, default_tagged_destructor_set,
3067 default_tagless_destructor_set, default_tagged_printer_set,
3068 default_tagless_printer_set): Use code_props in arguments and return
3069 types in place of char const * and location.
3070 (symbol_destructor_location_get, symbol_printer_location_get): Remove
3071 since the locations are now contained in the return of
3072 symbol_destructor_get and symbol_printer_get.
3073 * src/output.c (symbol_destructors_output, symbol_printers_output):
3074 Replace with...
3075 (symbol_code_props_output): ... this to eliminate duplicate code.
3076 (output_skeleton): Update to use symbol_code_props_output.
3077 * src/reader.c (symbol_should_be_used): Update use of
3078 symbol_destructor_get.
3079 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
3080 Update uses of the various _destructor_set and _printer_set functions.
3081 * src/symtab.c: (default_tagged_destructor_location,
3082 default_tagless_destructor_location, default_tagged_printer_location,
3083 default_tagless_printer_location): Remove since we...
3084 (default_tagged_destructor, default_tagless_destructor,
3085 default_tagged_printer, default_tagless_printer): ... change the type
3086 of these to code_props.
3087 (symbol_new, semantic_type_new, symbol_destructor_set,
3088 semantic_type_destructor_set, symbol_destructor_get,
3089 symbol_printer_set, semantic_type_printer_set, symbol_printer_get,
3090 symbol_check_alias_consistency, default_tagged_destructor_set,
3091 default_tagless_destructor_set, default_tagged_printer_set,
3092 default_tagless_printer_set): Update.
3093 (symbol_destructor_location_get, symbol_printer_location_get): Remove.
3094 (SYMBOL_CODE_PRINT): New similar to SYMBOL_ATTR_PRINT but for
3095 code_props members.
3096 (symbol_print): Use SYMBOL_CODE_PRINT.
3097
3098 2007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
3099
3100 Use the new code_props interface for rule actions.
3101 * src/symlist.h (symbol_list): Replace action, action_location, and
3102 used members with a code_props action_props member.
3103 * src/reader.c (symbol_should_be_used, grammar_rule_check,
3104 grammar_midrule_action, grammar_current_rule_merge_set,
3105 grammar_current_rule_symbol_append, packgram): Update.
3106 * src/scan-code.h (translate_rule_action): Remove, no longer used.
3107 * src/scan-code.l (handle_action_dollar): Update.
3108 (translate_rule_action): Remove, no longer used.
3109 * src/symlist.c (symbol_list_sym_new, symbol_list_syms_print): Update.
3110
3111 2007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
3112
3113 Use the new code_props interface in parse-gram.y.
3114 * src/parse-gram.y (prologue_declaration, braceless, epilogue.opt):
3115 Update all uses of translate_* functions to use the new code_props
3116 interface and to use gram_scanner_last_string_free and
3117 code_scanner_last_string_free where possible.
3118 (grammar_declaration): symbol_list_destructor_set and
3119 symbol_list_printer_set now perform the translation, so don't do it
3120 here. Use gram_scanner_last_string_free where possible.
3121 * src/scan-code.h, src/scan-code.l (translate_symbol_action,
3122 translate_code): Remove, no longer used.
3123 * src/symlist.h, src/symlist.c (symbol_list_destructor_set,
3124 symbol_list_printer_set): Perform code translation here rather than
3125 depending on the caller to do so.
3126
3127 * src/symlist.h (struct symbol_list): Correct some documentation typos.
3128 * src/scan-gram.h (gram_last_string): Remove declaration.
3129 * src/scan-gram.l (last_string): Declare it static.
3130
3131 2007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
3132
3133 Encapsulate code properties and related functionality for the various
3134 destructors, printers, and actions into a code_props structure and
3135 interface. This patch merely implements code_props in scan-code.h and
3136 scan-code.l. Future patches will rewrite other modules to use it.
3137 Discussed starting at
3138 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00020.html>.
3139 * src/location.h (EMPTY_LOCATION_INIT): Define so that it's easier to
3140 consistently initialize const structs that have an empty location
3141 field.
3142 * src/location.c (empty_location): Initialize with EMPTY_LOCATION_INIT
3143 to ensure consistency.
3144 * src/scan-code.h (code_props): New structure.
3145 (code_props_none_init, CODE_PROPS_NONE_INIT, code_props_none): New
3146 function, macro, and const global variable for initializing a
3147 code_props with no code.
3148 (code_props_plain_init, code_props_symbol_action_init,
3149 code_props_rule_action_init, code_props_translate_code): The rest of
3150 the new code_props functional interface. Among other things, the init
3151 functions set the code_props kind field so that
3152 code_props_translate_code will know whether to behave like
3153 translate_symbol_action, translate_rule_action, or translate_code.
3154 These old translate functions must remain until all other modules are
3155 updated to use the new code_props interface.
3156 (code_scanner_last_string_free): New function similar to
3157 gram_scanner_last_string_free.
3158 (code_scanner_free): Add documentation.
3159 * src/scan-code.l: Implement the new interface.
3160 (code_lex): Make it static, add a code_props* argument, and remove the
3161 rule argument.
3162 (last_string): New static global similar to the one in scan-gram.l.
3163 (SC_RULE_ACTION): Update to use the code_props* argument to code_lex
3164 instead of rule.
3165 (SC_SYMBOL_ACTION): For $$, set the is_value_used member of the
3166 code_props since Bison may one day use this information for destructors
3167 and printers.
3168 (<*><<EOF>>): Use STRING_FINISH so that last_string is set.
3169 (handle_action_dollar): Use symbol_list_n_get and set used flag
3170 directly since symbol_list_n_used_set is removed.
3171 (translate_action): Add a code_props* argument and remove the rule,
3172 action, and location arguments. Pass the code_props* on to code_lex.
3173 (translate_rule_action, translate_symbol_action, translate_code):
3174 Rewrite as wrappers around the new code_props interface.
3175 * src/symlist.h, src/symlist.c (symbol_list_n_used_set): Remove since
3176 it would eventually need to break the encapsulation of code_props.
3177
3178 2007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
3179
3180 * etc/.cvsignore: New.
3181
3182 2007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
3183
3184 Add maintainer-push-check to run maintainer-check using push parsing in
3185 place of pull parsing where available.
3186 * Makefile.am (maintainer-push-check): New.
3187 * data/bison.m4 (b4_use_push_for_pull_if): New.
3188 * data/push.c: Redefine b4_push_if and b4_use_push_for_pull_if
3189 appropriately based on their existing values.
3190 (yypush_parse): Don't print push-parser-specific diagnostics if push
3191 parsing is being used in place of pull parsing.
3192 * data/yacc.c: If push parsing should replace pull parsing, redirect to
3193 push.c.
3194 * src/output.c (prepare): Check BISON_USE_PUSH_FOR_PULL environment
3195 variable, and insert b4_use_push_for_pull_flag into muscles.
3196 * tests/Makefile.am (maintainer-push-check): New.
3197
3198 2006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
3199
3200 * data/push.c (yypush_parse): Set yynew = 1 at the end of a parse
3201 (whether successful or failed) so that yypush_parse can be invoked
3202 again to start a new parse using the same yypstate.
3203 * tests/torture.at (AT_DATA_STACK_TORTURE): For push mode, extend to
3204 check multiple yypull_parse invocations on the same yypstate. For pull
3205 mode, extend to check multiple yyparse invocations.
3206 (Exploding the Stack Size with Alloca): Extend to try with
3207 %push-pull-parser.
3208 (Exploding the Stack Size with Malloc): Likewise.
3209
3210 * tests/calc.at (Simple LALR Calculator): Don't specify
3211 %skeleton "push.c" since %push-pull-parser implies that now.
3212 * tests/headers.at (export YYLTYPE): Don't check for the push
3213 declarations. Otherwise, this test case can't be used to see if push
3214 mode can truly emulate pull mode.
3215 * tests/input.at (Torturing the Scanner): Likewise.
3216 * tests/local.at (AT_YACC_OR_PUSH_IF, AT_PUSH_IF): Remove.
3217 (AT_YYERROR_SEES_LOC_IF): Rather than AT_YACC_OR_PUSH_IF, use
3218 AT_YACC_IF, which now includes the case of push mode since %skeleton
3219 need not be used for push mode. This will be more intuitive once
3220 push.c is renamed to yacc.c.
3221
3222 2006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
3223
3224 For push mode, convert yyparse from a macro to a function, invoke yylex
3225 instead of passing a yylexp argument to yypull_parse, and don't
3226 generate yypull_parse or yyparse unless %push-pull-parser is declared.
3227 Discussed starting at
3228 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00163.html>.
3229 * data/bison.m4 (b4_pull_if): New.
3230 * data/c.m4 (b4_identification): Define YYPULL similar to YYPUSH.
3231 * data/push.c: Improve M4 quoting a little.
3232 (b4_generate_macro_args, b4_parenthesize): Remove.
3233 (yyparse): If there's a b4_prefix, #define this to b4_prefix[parse]
3234 any time a pull parser is requested.
3235 Don't #define this as a wrapper around yypull_parse. Instead, when
3236 both push and pull are requested, make it a function that does that
3237 same thing.
3238 (yypull_parse): If there's a b4_prefix, #define this to
3239 b4_prefix[pull_parse] when both push and pull are requested.
3240 Don't define this as a function unless both push and pull are
3241 requested.
3242 Remove the yylexp argument and hard-code yylex invocation instead.
3243 * etc/bench.pl.in (bench_grammar): Use %push-pull-parser instead of
3244 %push-parser.
3245 * src/getargs.c (pull_parser): New global initialized to true.
3246 * getargs.h (pull_parser): extern it.
3247 * src/output.c (prepare): Insert pull_flag muscle.
3248 * src/parse-gram.y (PERCENT_PUSH_PULL_PARSER): New token.
3249 (prologue_declaration): Set both push_parser and pull_parser = true for
3250 %push-pull-parser. Set push_parser = true and pull_parser = false for
3251 %push-parser.
3252 * src/scan-gram.l: Don't accept %push_parser as an alternative to
3253 %push-parser since there's no backward-compatibility concern here.
3254 Scan %push-pull-parser.
3255 * tests/calc.at (Simple LALR(1) Calculator): Use %push-pull-parser
3256 instead of %push-parser.
3257 * tests/headers.at (export YYLTYPE): Make yylex static, and don't
3258 prototype it in the module that calls yyparse.
3259 * tests/input.at (Torturing the Scanner): Likewise.
3260 * tests/local.at (AT_PUSH_IF): Check for %push-pull-parser as well.
3261
3262 2006-12-26 Joel E. Denny <jdenny@ces.clemson.edu>
3263
3264 Update etc/bench.pl. Optimize push mode a little (the yyn change
3265 deserves most of the credit).
3266 * Makefile.am (SUBDIRS): Add etc subdirectory.
3267 * configure.ac (AC_CONFIG_FILES): Add etc/bench.pl and etc/Makefile.
3268 * data/push.c (b4_declare_parser_state_variables): Move yyn, yyresult,
3269 yytoken, yyval, and yyloc declarations to...
3270 (yyparse or yypush_parse): ... here to improve performance. For
3271 yypush_parse invocations after the first, be sure to assign yyn its old
3272 value again.
3273 (yypstate_new): Don't bother initializing the yyresult field since the
3274 initial value isn't used.
3275 (yyn, yyresult, yytoken, yyval, yyloc): For each NAME in this list,
3276 remove the #define that, in push mode, set it to yyps->NAME.
3277 * etc/Makefile.am: New.
3278 * etc/bench.pl: Remove and build it instead from...
3279 * etc/bench.pl.in: ... this new file. Use @abs_top_builddir@ to invoke
3280 "tests/bison" from the build directory by default rather than just
3281 invoking "bison" from $PATH.
3282 (calc_grammar): Update push parser code: don't declare yylval globally,
3283 don't define yyparse_wrapper, and don't #define yyparse.
3284 (bench_grammar): Update to check all working combinations of yacc.c,
3285 push.c, impure, pure, pull, and push.
3286
3287 2006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
3288
3289 For push mode, add pull wrappers around yypush_parse.
3290 * data/push.c: (b4_generate_macro_args, b4_parenthesize): New macros.
3291 (yypull_parse): New function wrapping yypush_parse.
3292 (yyparse): New #define wrapping yypull_parse.
3293 * tests/calc.at (_AT_DATA_CALC_Y): Call yyparse even when %push-parser
3294 is declared.
3295 * tests/headers.at (export YYLTYPE): Make yylex global. For push mode,
3296 prototype yylex in the module that calls yyparse, and don't prototype
3297 yyparse there. Otherwise, the yyparse expansion won't compile.
3298 * tests/input.at (Torturing the Scanner): Likewise.
3299
3300 2006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
3301
3302 Enable push parsers to operate in impure mode. Thus, %push-parser no
3303 longer implies %pure-parser. The point of this change is to move
3304 towards being able to test the push parser code by running the entire
3305 test suite as if %push-parser had been declared.
3306 * data/push.c (yypush_parse): For impure mode, remove the
3307 yypushed_char, yypushed_val, and yypushed_loc arguments.
3308 Instead, declare these as local variables initialized to the global
3309 yychar, yylval, and yylloc.
3310 For the first yypush_parse invocation only, restore the initial values
3311 of these global variables when it's time to read a token since they
3312 have been overwritten.
3313 * src/parse-gram.y (prologue_declaration): Don't set pure_parser for
3314 %push-parser.
3315 * tests/calc.at (Simple LALR(1) Calculator): Always declare
3316 %pure-parser along with %push-parser since this test case was designed
3317 for pure push parsers.
3318 * tests/local.at (AT_PURE_OR_PUSH_IF): Remove unused.
3319 (AT_YACC_OR_PUSH_IF): New.
3320 (AT_YYERROR_SEES_LOC_IF): Fix enough that the test suite passes, but
3321 add a note that it's still wrong for some cases (as it has been for a
3322 while).
3323 (AT_PURE_LEX_IF): Use AT_PURE_IF instead of AT_PURE_OR_PUSH_IF since
3324 %push-parser no longer implies %pure-parser.
3325
3326 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
3327
3328 Remove some unnecessary differences between the pull parser code and
3329 the push parser code. This patch enables yynerrs in push mode.
3330 * data/push.c: Reformat M4 a little.
3331 (b4_yyerror_range): Remove and convert all uses to just yyerror_range.
3332 (b4_declare_scanner_communication_variables): Don't omit yynerrs just
3333 because push mode is on. Instead, if pure mode is on, move yynerrs
3334 to...
3335 (b4_declare_parser_state_variables): ... here.
3336 (yynerrs, yyerror_range): For push mode, #define each NAME in this list
3337 to yyps->NAME so it can be used in yypush_parse.
3338 (yypush_parse): Don't omit uses of yynerrs in push mode.
3339
3340 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
3341
3342 Fix bug such that the first pushed token's value and location are
3343 sometimes overwritten (sometimes by %initial-action) before being used.
3344 * data/push.c (yypush_parse): Rename arguments yynchar, yynlval, and
3345 yynlloc to yypushed_char, yypushed_val, and yypushed_loc for clarity.
3346 For the first yypush_parse invocation, initialize yychar to YYEMPTY to
3347 more closely mimic the pull parser logic.
3348 Don't copy the pushed token to yychar, yylval, and yylloc until it's
3349 time to read a token, which is after any initialization of yylval and
3350 yylloc.
3351 (gottoken): Rename label to...
3352 (yyread_pushed_token): ... for clarity and to avoid infringing on the
3353 user namespace.
3354
3355 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
3356
3357 Rearrange initialization of the parser state variables so that the
3358 skeleton doesn't have to have a copy for pull mode and another for push
3359 mode. This patch also fixes at least a bug such that yylloc was not
3360 initialized (with b4_location_initial_line and
3361 b4_location_initial_column) upon calling yypush_parse. However, that
3362 initialization now overwrites the first token's location;
3363 %initial-action assigning @$ already did the same thing, and both bugs
3364 will be fixed in a later patch.
3365 * data/push.c (b4_yyssa): Remove and convert all uses to just yyssa.
3366 (b4_declare_parser_state_variables): Remove initialization of yytoken,
3367 yyss, yyvs, yyls, and yystacksize.
3368 (yypstate_new): Remove initialization of some yypstate fields: yystate,
3369 yyerrstatus, yytoken, yyss, yyvs, yyls, yystacksize, yyssp, yyvsp, and
3370 yylsp.
3371 (yyssa, yyvsa, yylsa): For push mode, #define each NAME in this list to
3372 yyps->NAME so it can be used in yypush_parse.
3373 (yyparse or yypush_parse): For yypush_parse, don't print the
3374 "Starting parse" diagnostic for invocations after the first.
3375 Add initialization of yytoken, yyss, yyvs, yyls, and yystacksize; for
3376 yypush_parse, only do it for the first invocation.
3377 Allow yystate, yyerrstatus, yyssp, yyvsp, yylsp, and yylloc
3378 initialization to occur in yypush_parse but only on the first
3379 invocation.
3380
3381 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
3382
3383 * data/push.c: Add CPP guards around push parser declarations in both
3384 the header and the code file.
3385 In the code file, move the push parser declarations to the same place
3386 they appear in the header file.
3387 Clean up the M4 some, especially the inconsistent underquoting in
3388 some b4_c_function_def and b4_c_function_decl uses.
3389
3390 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
3391
3392 Encapsulate the push parser state variables into an M4 macro so the
3393 push skeleton doesn't have to list them again for pull mode's yyparse.
3394 For push mode, remove yypush_parse's local equivalents of these
3395 variables to eliminate unnecessary copying between the two sets at
3396 run-time. This patch also fixes at least a bug related to multiple
3397 %initial-action invocations in push mode.
3398 * data/push.c (b4_declare_parser_variables): Rename to...
3399 (b4_declare_scanner_communication_variables): ... this for clarity and
3400 update both uses.
3401 (b4_declare_yyparse_variables): Remove and move its contents to the one
3402 spot where it was invoked.
3403 (b4_declare_parser_state_variables): New macro containing the parser
3404 state variables required by push mode.
3405 (struct yypstate): Replace all fields but yynew with
3406 b4_declare_parser_state_variables.
3407 (yystate, yyn, yyresult, yyerrstatus, yytoken, yyss, yyssp, yyvs,
3408 yyvsp, yyls, yylsp, yystacksize, yyval, yyloc): For push mode, #define
3409 each NAME in this list to yyps->NAME so it can be used in yypush_parse.
3410 (yyparse or yypush_parse): For yyparse in pull mode, replace local
3411 parser state variable declarations with
3412 b4_declare_parser_state_variables.
3413 Don't initialize parser state variables when calling yypush_parse since
3414 yypstate_new already does that.
3415 Invoke the user's initial action only upon the first yypush_parse
3416 invocation.
3417 Remove all code that copies between the local parser state variables
3418 and the yypstate.
3419
3420 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
3421
3422 * data/push.c (union yyalloc): Rename yyss, yyvs, and yyls fields to
3423 prevent a name collision in a future patch where these names will
3424 sometimes be #define'd.
3425 (YYSTACK_RELOCATE): Add an argument to select a union yyalloc field
3426 since it no longer has the same name as the existing argument.
3427 (yyparse or yypush_parse): Update all uses of YYSTACK_RELOCATE.
3428
3429 2006-12-19 Paolo Bonzini <bonzini@gnu.org>
3430 and Joel E. Denny <jdenny@ces.clemson.edu>
3431
3432 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
3433 that the argument is case-insensitive, and there's no `=' here.
3434 For the %skeleton entry, mention that %language is better.
3435 (Bison Options): Likewise for --language and --skeleton. Move the
3436 --skeleton entry so that the `Tuning the parser' section is sorted
3437 alphabetically on long options.
3438 (C++ Bison Interface): Don't use the word skeleton. Don't explain the
3439 %language directive in detail here; cross-reference the %language
3440 documentation instead.
3441 (Calc++ Parser): Use `%require "@value{VERSION}"' rather than
3442 `%require "2.3b"' so that the example is always up-to-date.
3443 (Table of Symbols): Add entries for %language and %skeleton.
3444 * examples/extexi (normalize): Instead of replacing every %require
3445 argument with the current Bison version, just substitute for
3446 `@value{VERSION}'. This guarantees that we're testing what actually
3447 appears in the documentation.
3448 * examples/calc++/Makefile.am ($(calc_extracted)): Use `$(VERSION)'
3449 rather than `@VERSION@'.
3450
3451 2006-12-18 Paul Eggert <eggert@cs.ucla.edu>
3452
3453 * NEWS: Reword the %language news a bit, and put it earlier.
3454
3455 * src/getargs.c (skeleton_arg): Last arg is now location const *.
3456 Rewrite to simplify the logic.
3457 (language_argmatch): Likewise.
3458 (program_name): We now own this var.
3459 * src/getargs.h (struct bison_language): Use char[] rather than
3460 const char *.
3461
3462 * doc/bison.texinfo (Decl Summary, Bison Options): Don't claim
3463 Java is supported.
3464 * src/complain.c (program_name): Remove decl; no longer needed.
3465 * src/main.c (program_name): Remove; now belongs to getargs.
3466
3467 2006-12-18 Paolo Bonzini <bonzini@gnu.org>
3468
3469 * NEWS: Document %language.
3470
3471 * data/Makefile.am (dist_pkgdata_DATA): Add c-skel.m4, c++-skel.m4.
3472
3473 * data/c-skel.m4, data/c++-skel.m4: New files.
3474 * data/glr.c: Complain on push parsers.
3475
3476 * doc/bison.texinfo (C++ Parser Interface): Prefer %language
3477 over %skeleton.
3478 (Decl Summary): Document %language and %skeleton.
3479 (Command line): Document -L.
3480
3481 * examples/extexi: Rewrite %require directive.
3482 * examples/calc++/Makefile.am: Pass VERSION to extexi.
3483
3484 * src/files.c (compute_exts_from_gc): Look in language structure
3485 for .y extension.
3486 (compute_file_name_parts): Check whether .tab should be added.
3487 * src/getargs.c (valid_languages, skeleton_prio, language_prio):
3488 (language, skeleton_arg, language_argmatch): New.
3489 (long_options): Add --language.
3490 (getargs): Use skeleton_arg, add -L/--language.
3491 * src/getargs.h: Include location.h.
3492 (struct bison_language, language, skeleton_arg, language_argmatch): New.
3493 * src/output.c (prepare): Pick default skeleton from struct language.
3494 Don't dispatch C skeletons here.
3495 * src/parse-gram.y (PERCENT_LANGUAGE): New.
3496 (prologue_declaration): Add "%language" rule, use skeleton_arg.
3497 * src/scan-gram.l ("%language"): New rule.
3498
3499 * tests/calc.at: Test %skeleton and %language.
3500 * tests/local.at (AT_SKEL_CC_IF): Look for %language.
3501 (AT_GLR_IF): Look for %skeleton "glr.cc".
3502 (AT_LALR1_CC_IF, AT_GLR_CC_IF): Rewrite.
3503 (AT_YACC_IF): Reject %language.
3504
3505 2006-12-18 Paul Eggert <eggert@cs.ucla.edu>
3506
3507 * src/symtab.h (struct semantic_type): Remove the tag 'semantic_type',
3508 since it wasn't used; only the typedef name 'semantic_type' is needed.
3509 Also, omit trailing white space.
3510
3511 * bootstrap: Sync from coreutils.
3512 (gnulib_extra_files): Add build-aux/announce.gen.
3513 (slurp): Adjust .gitignore files like .cvsignore files.
3514 * build-aux/announce-gen: Remove from CVS, since bootstrap
3515 now creates this.
3516
3517 2006-12-16 Joel E. Denny <jdenny@ces.clemson.edu>
3518
3519 Make %push-parser imply %pure-parser. This fixes several bugs; see
3520 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00148.html>.
3521 * src/parse-gram.y (prologue_declaration): For %push-parser, also set
3522 pure_parser = true.
3523 * data/push.c: Don't bother testing b4_push_if when deciding whether
3524 to expand b4_declare_parser_variables globally.
3525 (yypush_parse): Likewise in here.
3526
3527 * data/push.c (yypush_parse): Add b4_parse_param to arguments.
3528 (yy_reduce_print): Reformat M4 for readability.
3529
3530 2006-12-15 Bob Rossi <bob@brasko.net>
3531 and Joel Denny <jdenny@ces.clemson.edu>
3532
3533 * data/push.c (yypstate): Add typedef, and update all uses of
3534 struct yypstate to just yypstate.
3535 * tests/calc.at (_AT_DATA_CALC_Y): Update here as well.
3536
3537 2006-12-14 Bob Rossi <bob@brasko.net>
3538
3539 * data/push.c (yypush_parse): Declare prototype regardless of
3540 %locations option.
3541
3542 2006-12-14 Bob Rossi <bob@brasko.net>
3543
3544 * data/push.c (yyparse): Remove the prototype and the #define when in
3545 push-parser mode.
3546
3547 2006-12-13 Bob Rossi <bob@brasko.net>
3548
3549 * data/push.c (yypstate_init): Rename to...
3550 (yypstate_new): ... this and use b4_c_function_def.
3551 (yypstate_delete): New.
3552 (yypush_parse): Change parameters yynval and yynlloc to be const.
3553 * tests/calc.at (_AT_DATA_CALC_Y): Use new yypstate_new and
3554 yypstate_delete functions.
3555
3556 2006-12-13 Joel E. Denny <jdenny@ces.clemson.edu>
3557
3558 * configure.ac (AC_PREREQ): Require Autoconf 2.61 because of our
3559 strange test case titles. Reported by Bob Rossi.
3560
3561 2006-12-13 Paul Eggert <eggert@cs.ucla.edu>
3562
3563 * TODO: Add pointer to Sylvain Schmitz's work on static detection
3564 of potential ambiguities in GLR grammers.
3565
3566 2006-12-12 Joel E. Denny <jdenny@ces.clemson.edu>
3567
3568 * tests/testsuite.at (AT_CHECK): When checking if $1 starts with
3569 `bison ', use m4_index instead of m4_substr since chopping up a string
3570 containing M4-special characters causes problems here.
3571
3572 Fix a couple of bugs related to special characters in user-specified
3573 file names, and make it easier for skeletons to compute output file
3574 names with the same file name prefix as Bison-computed output file
3575 names.
3576 * data/glr.cc, data/push.c, data/yacc.c: In @output, use
3577 b4_parser_file_name and b4_spec_defines_file instead of
3578 @output_parser_name@ and @output_header_name@, which are now redundant.
3579 * data/glr.c, data/lalr1.cc: Likewise. Also, in header #include's, use
3580 b4_parser_file_name, b4_spec_defines_file, and the new
3581 @basename(FILENAME@) instead of @output_parser_name@ and
3582 @output_header_name@, which inappropriately escaped the file names as
3583 C string literals.
3584 * src/files.c (all_but_ext): Remove static qualifier.
3585 (compute_output_file_names): Move `free (all_but_ext)' to...
3586 (output_file_names_free): ... here since all_but_ext is needed later.
3587 * src/files.h (all_but_ext): Extern.
3588 * src/muscle_tab.h (MUSCLE_INSERT_STRING_RAW): New macro that does
3589 exactly what MUSCLE_INSERT_STRING used to do.
3590 (MUSCLE_INSERT_STRING): Use MUSCLE_OBSTACK_SGROW so that M4-special
3591 characters are escaped properly.
3592 * src/output.c (prepare): Define muscle file_name_all_but_ext as
3593 all_but_ext.
3594 For pkgdatadir muscle, maintain previous functionality by using
3595 MUSCLE_INSERT_STRING_RAW instead of MUSCLE_INSERT_STRING. The problem
3596 is that b4_pkgdatadir is used inside m4_include in the skeletons, so
3597 digraphs would never be expanded. Hopefully no one has M4-special
3598 characters in his Bison installation path.
3599 * src/scan-skel.l: Don't parse @output_header_name@ and
3600 @output_parser_name@ anymore since they're now redundant.
3601 In @output, use decode_at_digraphs.
3602 Parse a new @basename command that invokes last_component.
3603 (decode_at_digraphs): New.
3604 (BASE_QPUTS): Remove unused.
3605 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): New macro.
3606 (Output file name): New tests.
3607
3608 2006-12-09 Joel E. Denny <jdenny@ces.clemson.edu>
3609
3610 Warn about output files that are generated by the skeletons and that
3611 conflict with other output files.
3612 * data/glr.c: Don't generate the header file here when glr.cc does.
3613 * src/files.c (file_names, file_names_count): New static globals.
3614 (compute_output_file_names): Invoke output_file_name_check for files
3615 not generated by the skeletons and remove existing checks.
3616 (output_file_name_check): New function that warns about conflicting
3617 output file names.
3618 (output_file_names_free): Free file_names.
3619 * src/files.h (output_file_name_check): Declare.
3620 * src/scan-skel.l: Invoke output_file_name_check for files generated by
3621 the skeletons.
3622 * tests/output.at (AT_CHECK_CONFLICTING_OUTPUT): New.
3623 (Conflicting output files): New tests.
3624
3625 2006-12-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3626
3627 * doc/bison.texinfo: Fix a couple of typos.
3628
3629 2006-12-08 Bob Rossi <bob@brasko.net>
3630
3631 * data/push.c: (yypvarsinit, yypvars, struct yypvars, yypushparse):
3632 Rename to...
3633 (yypstate_init, yypstate, struct yypstate, yypush_parse): ... these and
3634 update all uses.
3635 (b4_yyssa, b4_yyerror_range, yypstate_init): Rename pv to yyps.
3636 (yypush_parse): Rename yypvars argument to yyps and remove redundant
3637 local pv.
3638 (yypstate_init, yypush_parse): Declare in Bison-generated header file.
3639 * tests/calc.at (_AT_DATA_CALC_Y): Use newly named functions.
3640
3641 2006-12-07 Bob Rossi <bob@brasko.net>
3642 and Joel Denny <jdenny@ces.clemson.edu>
3643
3644 * data/push.c (yypvarsinit): Change return type from void* to struct
3645 yypvars*. No longer cast to void* on return.
3646 (struct yypvars): Remove yylen since it need not be remembered between
3647 yypushparse invocations.
3648 (yypushparse): Don't copy between yylen and pv->yylen.
3649
3650 2006-12-05 Bob Rossi <bob@brasko.net>
3651
3652 * data/push.c (yychar_set, yylval_set, yylloc_set): Delete.
3653 (yypushparse): Add yynchar, yynlval, yynlloc parameters.
3654 (b4_declare_parser_variables): Do not declare yynerrs for push mode.
3655 (struct yypvars): Remove b4_declare_parser_variables.
3656 (yypvarsinit): Remove init code for removed variables.
3657 (global scope): Do not declare b4_declare_parser_variables if
3658 push or pure mode.
3659 (yypushparse): Add b4_declare_parser_variables.
3660 Init new local variables, and remove init code for removed
3661 yypvars variables.
3662 (yyparse): Delete.
3663 * tests/calc.at (_AT_DATA_CALC_Y): Call yypushparse for push mode
3664 and yyparse for other modes.
3665 (AT_CHECK_CALC_LALR): Added '%skeleton "push.c"' for push tests.
3666 * tests/local.at (AT_PUSH_IF, AT_PURE_OR_PUSH_IF): Added.
3667 (AT_YYERROR_SEES_LOC_IF): push-parser makes this false.
3668 (AT_PURE_LEX_IF): True if pure or push parser.
3669
3670 2006-12-05 Joel E. Denny <jdenny@ces.clemson.edu>
3671
3672 Document Yacc prologue alternatives and default %destructor's and
3673 %printer's as experimental. Don't mention Java yet. Discussed at
3674 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00002.html>.
3675 * NEWS (2.3a+): Say they're experimental. Remove any mention of Java.
3676 (2.3a): Annotate this entry to say the old forms of these features were
3677 also experimental.
3678 * doc/bison.texinfo (Prologue Alternatives, Freeing Discarded Symbols,
3679 Table of Symbols): Say they're experimental. Comment out any mention
3680 of Java (we'll want this back eventually).
3681
3682 2006-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
3683
3684 Support a file name argument to %defines. Deprecate `=' in
3685 %file-prefix, %name-prefix, and %output. Discussed at
3686 <http://lists.gnu.org/archive/html/help-bison/2006-09/msg00001.html>.
3687 * NEWS (2.3a+): Mention.
3688 * doc/bison.texinfo (Decl Summary, Table of Symbols): Add entry for new
3689 form of %defines, and remove `=' from entries for %file-prefix,
3690 %name-prefix, and %output.
3691 * src/parse-gram.y (prologue_declaration): Implement.
3692 * tests/calc.at (Simple LALR Calculator, Simple GLR Calculator, Simple
3693 LALR1 C++ Calculator, Simple GLR C++ Calculator): Remove the `=' from
3694 all but one occurrence of %name-prefix.
3695 * tests/headers.at (export YYLTYPE): Remove the `=' from %name-prefix.
3696 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Likewise.
3697 * tests/output.at (AT_CHECK_OUTPUT): Remove the `=' from all but one
3698 occurrence of each of %file-prefix and %output. Add check for %defines
3699 with argument.
3700 * tests/reduce.at (Useless Terminals, Useless Nonterminals,
3701 Useless Rules, Reduced Automaton, Underivable Rules, Empty Language):
3702 Remove the `=' from %output.
3703
3704 2006-11-21 Joel E. Denny <jdenny@ces.clemson.edu>
3705
3706 Don't escape $ in test case titles since Autoconf 2.61 now does that
3707 correctly.
3708 * tests/actions.at (Default %printer and %destructor are not for error
3709 or $undefined): Here.
3710 (Default %printer and %destructor are not for $accept): Here.
3711 * tests/input.at (Invalid $n and @n): Here.
3712
3713 2006-11-20 Joel E. Denny <jdenny@ces.clemson.edu>
3714
3715 Rename <!> to <>. Discussed starting at
3716 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00039.html>.
3717 * NEWS (2.3a+): Update.
3718 * doc/bison.texinfo (Freeing Discarded Symbols, Table of Symbols):
3719 Update.
3720 * src/parse-gram.y (TYPE_TAG_NONE, generic_symlist_item): Implement.
3721 * src/scan-gram.l (INITIAL): Implement.
3722 * src/symlist.c (symbol_list_default_tagless_new): Update comment.
3723 * src/symlist.h (symbol_list, symbol_list_default_tagless_new): Update
3724 comment.
3725 * tests/actions.at (Default tagless %printer and %destructor,
3726 Default tagged and per-type %printer and %destructor,
3727 Default %printer and %destructor are not for error or $undefined,
3728 Default %printer and %destructor are not for $accept,
3729 Default %printer and %destructor for mid-rule values): Update.
3730 * tests/input.at (Default %printer and %destructor redeclared,
3731 Unused values with default %destructor): Update.
3732
3733 2006-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
3734
3735 Don't let %prec take a nonterminal.
3736 * src/reader.c (grammar_current_rule_prec_set): Make the %prec symbol a
3737 token.
3738 * tests/input.at (%prec takes a token): New test checking that %prec
3739 won't take a nonterminal.
3740
3741 2006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
3742
3743 * tests/testsuite.at (AT_CHECK): Don't miss an exit value of 0 because
3744 it was double-quoted.
3745 * src/Makefile.am (YACC): Use --warnings=all,error so that Bison's own
3746 grammar is maintained with Bison's highest standards.
3747 * src/getargs.c: Fix some typos in Doxygen comments.
3748
3749 2006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
3750
3751 Fix memory leaks in scanners generated by at least Flex 2.5.9 and
3752 later. Reported by Paul Eggert in
3753 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00014.html>.
3754 * src/flex-scanner.h (yylex_destroy): Define for Flex before 2.5.9.
3755 * src/scan-code.l (translate_action): Don't bother invoking
3756 yy_delete_buffer (YY_CURRENT_BUFFER) before creating the first buffer.
3757 (code_scanner_free): Instead of invoking
3758 yy_delete_buffer (YY_CURRENT_BUFFER) directly, invoke yylex_destroy,
3759 which frees more.
3760 * src/scan-gram.l (gram_scanner_free): Likewise.
3761 * src/scan-skel.l (scan_skel): Likewise.
3762
3763 2006-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
3764
3765 * src/files.c (tr): Change return type to void.
3766 * src/muscle_tab.c (muscle_insert): Free storage in case muscle_grow
3767 has been called previously for the same key.
3768 (muscle_find): Return storage instead of value so that
3769 --enable-gcc-warnings doesn't produce warnings that the return discards
3770 const. aver that the value and storage are the same since storage
3771 could potentially be NULL when value is not.
3772 * tests/testsuite.at (AT_CHECK): Treat an unspecified exit value the
3773 same as 0.
3774
3775 2006-11-08 Paul Eggert <eggert@cs.ucla.edu>
3776
3777 * bootstrap.conf (excluded_files): Exclude m4/codeset.m4 (undoing
3778 the earlier change today), m4/intl.m4, m4/intldir.m4. This gives
3779 us a slightly cleaner distribution, and also works.
3780 * m4/.cvsignore: Add inline.m4, wint_t.m4 to accommodate recent
3781 gnulib changes.
3782
3783 2006-11-08 Joel E. Denny <jdenny@ces.clemson.edu>
3784 and Paul Eggert <eggert@cs.ucla.edu>
3785
3786 Don't let Bison leak memory except when it complains.
3787 * src/files.h (parser_file_name, spec_verbose_file, spec_graph_file):
3788 (spec_defines_file, dir_prefix): Now char *, not const char *,
3789 since they are freed.
3790 * src/files.c: Likewise.
3791 (all_but_ext, all_but_tab_ext, src_extension, header_extension):
3792 Likewise.
3793 (tr): Now operates in-place. All uses changed.
3794 (compute_exts_from_gf, compute_exts_from_src): Don't leak temporary
3795 values.
3796 (compute_file_name_parts, compute_output_file_names): Don't store
3797 read-only data in variables that will be freed.
3798 (compute_output_file_names): Free all_but_ext, all_but_tab_ext,
3799 src_extension, and header_extension.
3800 (output_file_names_free): New public function to free
3801 spec_verbose_file, spec_graph_file, spec_defines_file,
3802 parser_file_name, and dir_prefix.
3803 * src/getargs.c (getargs): Don't store read-only data in variables that
3804 will be freed.
3805 * src/main.c (main): Invoke output_file_names_free, code_scanner_free
3806 (which previously existed but was unused), and quotearg_free.
3807 * src/muscle_tab.h (muscle_insert): value arg is now a `char const *'.
3808 * src/muscle_tab.c: Likewise.
3809 (muscle_entry): Make the value char const *,
3810 and add a new storage member that is char * and can be freed.
3811 (muscle_entry_free): New private function.
3812 (muscle_init): Use it instead of free.
3813 (muscle_insert, muscle_grow): Update and use new storage member.
3814 (muscle_code_grow): Free the string passed to muscle_grow
3815 since it's not needed anymore.
3816 * src/parse-gram.y (%union): Make `chars' member a `char const *', and
3817 add a new `char *code' member.
3818 ("{...}"): Declare semantic type as code.
3819 * src/scan-code.h (translate_rule_action):
3820 (translate_symbol_action, translate_code, translate_action): Return
3821 `char const *' rather than `char *' since external code should not free
3822 these strings.
3823 * src/scan-code.l: Likewise.
3824 * src/scan-gram.l (<SC_BRACED_CODE>): Use val->code for BRACED_CODE,
3825 which is "{...}" in the parser.
3826 * tests/Makefile.am (maintainer-check-valgrind): Set
3827 VALGRIND_OPTS='--leak-check=full --show-reacheable=yes' before invoking
3828 Valgrind.
3829 * tests/calc.at (_AT_DATA_CALC_Y): fclose the FILE* so Valgrind doesn't
3830 complain.
3831 * tests/testsuite.at (AT_CHECK): Redefine so that running Bison and
3832 expecting a non-zero exit status sets --leak-check=summary and
3833 --show-reachable=no for Valgrind. Bison unabashedly leaks memory in
3834 this case, and we don't want to hear about it.
3835
3836 2006-11-08 Paul Eggert <eggert@cs.ucla.edu>
3837
3838 * bootstrap (runtime-po/Makevars): Derive from po/Makevars
3839 instead of from the template, to simplify configuration a bit.
3840 * bootstrap.conf (excluded_files): Don't exclude m4/codeset.m4
3841 and m4/wint_t.m4, as they are needed with the latest gnulib.
3842
3843 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
3844
3845 Disable unset/unused mid-rule value warnings by default, and recognize
3846 --warnings=midrule-values to enable them. Discussed starting at
3847 <http://lists.gnu.org/archive/html/help-bison/2006-10/msg00030.html>.
3848 * NEWS (2.3a+): Mention.
3849 * src/getargs.c, src/getargs.h (warnings_args, warnings_types, enum
3850 warnings): Add entry for midrule-values subargument.
3851 * src/reader.c (symbol_should_be_used): Don't return true just because
3852 the value is a set/used mid-rule value unless
3853 --warnings=midrule-values was specified.
3854 * tests/input.at (Unused values, Unused values before symbol
3855 declarations): Run tests with and without --warnings=midrule-values.
3856
3857 * src/reader.c (check_and_convert_grammar): Use symbol_list_free rather
3858 than LIST_FREE directly.
3859
3860 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
3861
3862 Finish implementing --warnings=error, which should not be implied by
3863 --warnings=all (or by its synonyms -W and --warnings without
3864 subarguments).
3865 * src/complain.c (set_warning_issued): New function to report that
3866 warnings are being treated as errors and to record an error if so.
3867 Invoke...
3868 (warn_at, warn): ... here.
3869 * src/getargs.c (warnings_args, warnings_types): Reorder so that
3870 "error - warnings are errors" does not appear above "all - all of the
3871 above".
3872 (getargs): For -W and --warnings without subarguments, don't let
3873 FLAGS_ARGMATCH set warnings_error in warnings_flag.
3874 * src/getargs.h (enum warnings): Unset warnings_error in warnings_all.
3875
3876 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
3877
3878 * src/getargs.c (flags_argmatch): Don't cause segmentation fault for
3879 empty subargument list. For example: `bison --warnings= parser.y'.
3880
3881 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
3882
3883 * data/push.c, data/yacc.c: Make sure there's a newline at the end of
3884 the parser header file so that gcc doesn't warn.
3885
3886 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
3887
3888 Split the default %destructor/%printer into two kinds: <*> and <!>.
3889 Discussed starting at
3890 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00060.html>.
3891 * NEWS (2.3a+): Mention.
3892 * doc/bison.texinfo (Freeing Discarded Symbols): Document this and the
3893 previous change today related to mid-rules.
3894 (Table of Symbols): Remove %symbol-default and add <*> and <!>.
3895 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): Remove.
3896 (TYPE_TAG_ANY): Add as <*>.
3897 (TYPE_TAG_NONE): Add as <!>.
3898 (generic_symlist_item): Remove RHS for %symbol-default and add RHS's
3899 for <*> and <!>.
3900 * src/scan-gram.l (PERCENT_SYMBOL_DEFAULT): Remove.
3901 (TYPE_TAG_ANY, TYPE_TAG_NONE): Add.
3902 * src/symlist.c (symbol_list_default_new): Split into tagged and
3903 tagless versions.
3904 (symbol_list_destructor_set, symbol_list_printer_set): Split
3905 SYMLIST_DEFAULT case into SYMLIST_DEFAULT_TAGGED and
3906 SYMLIST_DEFAULT_TAGLESS.
3907 * src/symlist.h: Update symbol_list_default*_new prototypes.
3908 (symbol_list.content_type): Split enum value SYMLIST_DEFAULT into
3909 SYMLIST_DEFAULT_TAGGED and SYMLIST_DEFAULT_TAGLESS.
3910 * src/symtab.c (default_destructor, default_destructor_location,
3911 default_printer, default_printer_location): Split each into tagged and
3912 tagless versions.
3913 (symbol_destructor_get, symbol_destructor_location_get,
3914 symbol_printer_get, symbol_printer_location_get): Implement tagged
3915 default and tagless default cases.
3916 (default_destructor_set, default_printer_set): Split each into tagged
3917 and tagless versions.
3918 * src/symtab.h: Update prototypes.
3919 * tests/actions.at (Default %printer and %destructor): Rename to...
3920 (Default tagless %printer and %destructor): ... this, and extend.
3921 (Per-type %printer and %destructor): Rename to...
3922 (Default tagged and per-type %printer and %destructor): ... this, and
3923 extend.
3924 (Default %printer and %destructor for user-defined end token): Extend.
3925 (Default %printer and %destructor are not for error or $undefined):
3926 Update.
3927 (Default %printer and %destructor are not for $accept): Update.
3928 (Default %printer and %destructor for mid-rule values): Extend.
3929 * tests/input.at (Default %printer and %destructor redeclared): Extend.
3930 (Unused values with default %destructor): Extend.
3931
3932 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
3933
3934 Don't apply the default %destructor/%printer to an unreferenced midrule
3935 value. Mentioned at
3936 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00104.html>.
3937 * src/symtab.c (dummy_symbol_get): Name all dummy symbols initially
3938 like $@n instead of just @n so that the default %destructor/%printer
3939 logic doesn't see them as user-defined symbols.
3940 (symbol_is_dummy): Check for both forms of the name.
3941 * src/reader.c (packgram): Remove the `$' from each midrule symbol
3942 name for which the midrule value is referenced in any action.
3943 * tests/actions.at (Default %printer and %destructor for mid-rule
3944 values): New test.
3945 * tests/regression.at (Rule Line Numbers, Web2c Report): Update output
3946 for change to dummy symbol names.
3947
3948 2006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
3949
3950 Warn about unset midrule $$ if the corresponding $n is used.
3951 * src/reader.c (symbol_should_be_used): Check midrule parent rule for
3952 $n usage.
3953 (packgram): Before invoking grammar_rule_check on any rule, make sure
3954 all actions have already been scanned in order to set `used' flags.
3955 Otherwise, checking that a midrule's $$ is set will not always work
3956 properly because the midrule check must forward-reference the midrule's
3957 parent rule.
3958 * tests/input.at (AT_CHECK_UNUSED_VALUES): Extend to check the new
3959 warning.
3960
3961 2006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
3962
3963 More improvements to the documentation of the prologue alternatives:
3964 * NEWS (2.3a+): Mention the new `Prologue Alternatives' section in the
3965 Bison manual.
3966 * doc/bison.texinfo (Prologue Alternatives): Correct some errors. Add
3967 some text to clarify the relative importance of the new directives and
3968 to show how these directives may be viewed as code labels.
3969
3970 2006-10-16 Joel E. Denny <jdenny@ces.clemson.edu>
3971
3972 Similar to the recently removed %before-header, add %code-top as the
3973 alternative to the pre-prologue. Mentioned at
3974 <http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00063.html>.
3975 Also, let the prologue alternatives appear in the grammar section.
3976 * src/parse-gram.y (PERCENT_CODE_TOP): New token.
3977 (prologue_declaration): Move the existing prologue alternatives to...
3978 (grammar_declaration): ... here and add %code-top.
3979 * src/scan-gram.l (PERCENT_CODE_TOP): New token.
3980
3981 Clean up and extend documentation for the prologue alternatives.
3982 * NEWS (2.3a+): Describe prologue alternatives.
3983 * doc/bison.texinfo (Prologue): Move discussion of prologue
3984 alternatives to...
3985 (Prologue Alternatives): ... this new section, and extend it to discuss
3986 all 4 directives in detail.
3987 (Table of Symbols): Clean up discussion of prologue alternatives and
3988 add %code-top.
3989
3990 2006-10-16 Juan Manuel Guerrero <juan.guerrero@gmx.de>
3991
3992 DJGPP specific issues.
3993
3994 * djgpp/config.bat: config.hin has been moved to lib. Adjust
3995 config.bat accordingly.
3996 * djgpp/config.sed: Adjust config.sed for the use of autoconf 2.60.
3997 * djgpp/config.site: Likewise.
3998
3999 2006-10-16 Paolo Bonzini <bonzini@gnu.org>
4000
4001 Replace %*-header with %provides, %requires, %code. See discussion at
4002 http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00002.html
4003
4004 * data/bison.m4 (b4_user_requires, b4_user_provides): New.
4005 (b4_user_start_header): Remove.
4006 * data/glr.c: Use new macros instead of b4_*start_header
4007 and b4_*end_header.
4008 * data/glr.cc: Likewise.
4009 * data/lalr1.cc: Likewise.
4010 * data/push.c: Likewise.
4011 * data/yacc.c: Likewise.
4012
4013 * doc/bison.texinfo: Remove %before-header, rename
4014 %{start,end,after}-header to %requires, %provides, %code.
4015
4016 * src/parse-gram.y: Likewise (also rename token names accordingly).
4017 * src/scan-gram.l: Likewise.
4018 * tests/actions.at: Likewise.
4019
4020 2006-10-14 Paul Eggert <eggert@cs.ucla.edu>
4021
4022 * lib/Makefile.am (AM_CFLAGS): Remove $(WERROR_CFLAGS).
4023 Problem reported by Joel E. Denny.
4024
4025 2006-10-14 Jim Meyering <jim@meyering.net>
4026
4027 (Sync from coreutils.)
4028 Work also when the working directory (with e.g. coreutils sources)
4029 is version controlled with git, rather than CVS.
4030 * bootstrap (CVS_only_file): Test for the existence of README-cvs,
4031 rather than CVS.
4032 In messages and comments, say e.g., "checked-out sources",
4033 rather than "CVS sources".
4034 (version_controlled_file): New function. Work for git as well as
4035 for CVS. Don't use grep's -q option.
4036 (slurp): Call it here, in place of CVS-specific code.
4037
4038 2006-10-14 Joel E. Denny <jdenny@ces.clemson.edu>
4039
4040 Fix testsuite for ./configure --enable-gcc-warnings:
4041 * configure.ac (gcc-warnings): Move -Wall before -Wno-sign-compare.
4042 Otherwise, gcc 4.1.0 (at least) warns about sign comparisons in
4043 __AT_CHECK_PRINTER_AND_DESTRUCTOR in tests/actions.at.
4044 * test/input.at (Torturing the Scanner): #include <stdlib.h> for abort.
4045 * test/regression.at (Diagnostic that expects two alternatives):
4046 Likewise.
4047
4048 2006-10-12 Paul Eggert <eggert@cs.ucla.edu>
4049
4050 * bootstrap.conf (gnulib_modules): Add config-h.
4051 * djgpp/subpipe.c: Include <config.h> unconditionally; don't
4052 worry about HAVE_CONFIG_H.
4053 * lib/abitset.c: Likewise.
4054 * lib/bitset.c: Likewise.
4055 * lib/bitset_stats.c: Likewise.
4056 * lib/bitsetv-print.c: Likewise.
4057 * lib/bitsetv.c: Likewise.
4058 * lib/ebitset.c: Likewise.
4059 * lib/get-errno.c: Likewise.
4060 * lib/lbitset.c: Likewise.
4061 * lib/subpipe.c: Likewise.
4062 * lib/timevar.c: Likewise.
4063 * lib/vbitset.c: Likewise.
4064 * lib/bitset.c: Include "bitset.h" first, to test interface.
4065 * lib/bitset_stats.c: Include "bitset_stats.h" first.
4066 * lib/bitsetv-print.c: Include "bitsetv-print.h" first.
4067 * lib/bitsetv.c: Include "bitsetv.h" first.
4068 * lib/get-errno.c: Include "get-errno.h" first.
4069 * m4/.cvsignore: Add config-h.m4.
4070 * tests/actions.at (Default %printer and %destructor for ...):
4071 Adjust expected line numbers in output to reflect removal of #if
4072 HAVE_CONFIG_H lines.
4073 * tests/glr-regression.at (Missed %merge type warnings when ...):
4074 Likewise.
4075 * tests/regression.at (Braced code in declaration in rules section):
4076 Likewise.
4077 * tests/atlocal.in (CPPFLAGS): Don't define HAVE_CONFIG_H.
4078 * tests/local.at (AT_DATA_GRAMMAR_PROLOGUE):
4079 Include <config.h> unconditionally.
4080
4081 * bootstrap: Sync from coreutils, as follows:
4082
4083 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
4084
4085 * bootstrap (symlink_to_gnulib): Fix bug: the dot_dots shell
4086 variable was sometimes used without being initialized. This
4087 messed up the installation of the INSTALL file in some cases.
4088
4089 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
4090
4091 * bootstrap (usage, main program, symlink_to_gnulib): Add option
4092 --copy. Inspired by a suggestion from Bruno Haible.
4093
4094 2006-10-03 Jim Meyering <jim@meyering.net>
4095
4096 * bootstrap: Undo last change to this file, since now gnulib-tool
4097 sticks with the automake default in generating dependencies.
4098
4099 2006-10-12 Paul Eggert <eggert@cs.ucla.edu>
4100
4101 * configure.ac: Use AC_PROG_CC_STDC; this is more modern than
4102 the old AC_PROG_CC / AM_PROG_CC_STDC combination.
4103
4104 * doc/bison.1: Add copyright notice.
4105
4106 * data/glr.c: Don't include <stdarg.h>; not used.
4107
4108 * NEWS: The -g and --graph options now output graphs in Graphviz
4109 DOT format, not VCG format.
4110 * doc/bison.1: Likewise.
4111 * doc/bison.texinfo (Understanding, Bison Options): Likewise.
4112 * THANKS: Add Satya Kiran Popuri, who proposed the initial version
4113 of this change in
4114 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00158.html>.
4115 * TODO: Remove Graphviz entry.
4116 * src/Makefile.am (bison_SOURCES): Add graphviz.c and graphviz.h;
4117 remove vcg.c, vcg.h, vcg_defaults.h.
4118 * src/vcg.c, src/vcg.h, src/vcg_defaults.h: Remove.
4119 * src/graphviz.c, src/graphviz.h: New files.
4120 * src/files.c (compute_output_file_names): Output .dot, not .vcg.
4121 * src/files.h: Make comment more generic.
4122 * src/main.c (main): Likewise.
4123 * src/print_graph.h: Likewise.
4124 * src/getargs.c (usage): Make usage description more generic.
4125 * src/print_graph.c: Include graphviz.h rather than vcg.h.
4126 (static_graph, fgraph): Remove. All uses changed to pass
4127 arguments instead of sharing a static var.
4128 (print_core, print_actions, print_state, print_graph):
4129 Output graphviz format rather than VCG format.
4130 * tests/.cvsignore: Remove *.vcg; add *.dot.
4131 * tests/output.at: Expect *.dot files, not *.vcg files.
4132
4133 * data/Makefile.am (dist_pkgdata_DATA): Add bison.m4; this
4134 accommodates the 2006-10-08 change.
4135
4136 2006-10-11 Bob Rossi <bob@brasko.net>
4137
4138 * data/push.c (yypushparse, yypvarsinit, yypvars): Wrap in b4_push_if.
4139 (b4_yyssa, b4_yyerror_range): New macros.
4140 (struct yypvars): Remove yyssa_ptr and yyerror_range_ptr fields.
4141 (yypvarsinit): Remove init of removed fields.
4142 (yypushparse): Remove use of removed fields; use new macros instead.
4143
4144 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
4145
4146 * data/push.c (yypushparse): Fix memory leak if yymsg is malloced
4147 in a push parser. Reindent slightly to match yacc.c better.
4148
4149 2006-10-11 Bob Rossi <bob@brasko.net>
4150
4151 * data/push.c (struct yypvars): Remove yymsgbuf, yymsgbuf_ptr, yymsg,
4152 yymsg_alloc fields.
4153 (yypvarsinit, yypushparse): Remove init of removed fields.
4154 (yypushparse): Use yymsgbuf instead of yymsgbuf_ptr.
4155
4156 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
4157
4158 * THANKS: Add Paolo Bonzini and Bob Rossi.
4159
4160 2006-10-08 Paolo Bonzini <bonzini@gnu.org>
4161
4162 * data/c.m4 (b4_copyright, b4_epilogue, b4_location_initial_column,
4163 b4_location_initial_line, p4_parse_param, b4_ints_in, b4_flag_if,
4164 b4_define_flag_if and uses, b4_basename, b4_syncline, b4_user_code,
4165 b4_define_user_cde and uses): Remove.
4166 (b4_comment, b4_prefix, b4_sync_start): New.
4167 * data/bison.m4: New file, with most of the content removed from c.m4.
4168 * src/muscle_tab.h: Use "do {...} while(0)" throughout.
4169 * src/output.c (output_skeleton): Pass bison.m4.
4170 (prepare): Pass glr_flag and nondeterministic_flag. Pass prefix
4171 only if specified.
4172
4173 2006-10-05 Paul Eggert <eggert@cs.ucla.edu>
4174
4175 Fix test failure reported by Tom Lane in
4176 <http://lists.gnu.org/archive/html/bug-bison/2006-10/msg00000.html>
4177 and try to make such failures easier to catch in the future.
4178 * data/glr.c (YYTRANSLATE): Don't check for nonpositive arg;
4179 that's now the caller's responsibility.
4180 (yyprocessOneStack, yyrecoverSyntaxError, yyparse):
4181 Set yychar = YYEOF if it's negative.
4182 * tests/actions.at (yylex): Abort if asked to read past EOF.
4183 * tests/conflicts.at (yylex): Likewise.
4184 * tests/cxx-type.at (yylex): Likewise.
4185 * tests/glr-regression.at (yylex): Likewise.
4186 * tests/input.at (yylex): Likewise.
4187 * tests/regression.at (yylex): Likewise.
4188 * tests/torture.at (yylex): Likewise.
4189
4190 2006-10-01 Paul Eggert <eggert@cs.ucla.edu>
4191
4192 Fix problems with translating English-language diagnostics.
4193 * bootstrap: Fix bug introduced in recent bootstrap changes, with
4194 respect to bison-runtime pot generation. The YY_ stuff
4195 wasn't being captured.
4196 * bootstrap.conf (XGETTEXT_OPTIONS_RUNTIME): New var.
4197 * po/POTFILES.in: Add src/location.c, src/scan-code.l.
4198 * runtime-po/POTFILES.in: Add data/push.c.
4199
4200 2006-09-29 Paul Eggert <eggert@cs.ucla.edu>
4201
4202 Merge bootstrap changes from coreutils.
4203
4204 2006-09-28 Jim Meyering <jim@meyering.net>
4205
4206 Automatically generated dependencies are important even
4207 when all of the sources in a directory come from gnulib.
4208 * bootstrap (gnulib_tool): Remove the "no-dependencies" automake
4209 option that gnulib-tool adds to what becomes our lib/gnulib.mk.
4210
4211 2006-09-23 Jim Meyering <jim@meyering.net>
4212
4213 * bootstrap (gnulib_tool_options): Add "--local-dir gl".
4214
4215 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
4216
4217 * bootstrap: Add support for --force.
4218 (usage): New function. Describe usage less tersely.
4219 (CVS_only_file): New var.
4220
4221 2006-09-21 Paul Eggert <eggert@cs.ucla.edu>
4222
4223 * data/push.c (YYPUSH_MORE): Make it an enum instead.
4224 (yypushparse): Use YYPUSH_MORE instead of the mystery constant.
4225 Adjust white space and comments to match GNU style better.
4226
4227 2006-09-20 Bob Rossi <bob@brasko.net>
4228
4229 * data/push.c (yyresult_get): Remove function.
4230 (YYPUSH_MORE): Add #define.
4231 (yypushparse): Modify return value.
4232
4233 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
4234
4235 * stamp-h.in: Remove; no longer needed.
4236 * .cvsignore: Replace autom4te.cache and config.cache with *.cache.
4237 Remove config.h, config.hin, intl (no longer created).
4238 * lib/.cvsignore: Add config.h, config.hin, configmake.h, inttypes.h,
4239 stamp-h1.
4240
4241 Sync bootstrap from coreutils, as follows:
4242
4243 2006-09-18 Paul Eggert <eggert@cs.ucla.edu>
4244
4245 * bootstrap (symlink_to_gnulib): New function.
4246 (cp_mark_as_generated): Use it, to prefer symlinks-to-gnulib
4247 to copies-of-gnulib.
4248 (cp_mark_as_generated, slurp, gnulib_files):
4249 Avoid making a copy if it's the same as the old version.
4250 (gnulib_files): Add support for this variable (used by Bison).
4251
4252 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
4253
4254 * src/getargs.c (usage): Rework to use conventions similar to
4255 coreutils, to make translation a bit easier and the code a bit
4256 smaller. Problem reported by Tim Van Holder.
4257
4258 2006-09-15 Paul Eggert <eggert@cs.ucla.edu>
4259
4260 Use some of gnulib's new modules, taken from coreutils.
4261
4262 * bootstrap: Sync from coreutils, except add support for gnulib_files.
4263 * bootstrap.conf: New file.
4264 (gnulib_modules): Add configmake, inttypes, unistd.
4265 (XGETTEXT_OPTIONS): Add complain, complain_at,
4266 fatal, fatal_at, warn, warn_at, unexpected_end.
4267 * configure.ac (AC_CONFIG_HEADERS): config.h is now in lib, not here.
4268 (gl_USE_SYSTEM_EXTENSIONS): Remove; gl_EARLY now does this.
4269 (gl_EARLY): Add.
4270 (AM_STDBOOL_H): Remove; gl_INIT now dows this.
4271 (gl_INIT): Add
4272 (GNULIB_AUTOCONF_SNIPPET): Remove.
4273 (AM_GNU_GETTEXT): Add; require formatstring macros since that's
4274 the pickiest.
4275 * lib/.cvsignore: Add inttypes_.h.
4276 * lib/Makefile.am: Include gnulib.mk first so we can append to it.
4277 (AM_CFLAGS): Add WERROR_CFLAGS, to be more like coreutils.
4278 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES): Remove
4279 no-longer-necessary initializations.
4280 (lib_SOURCES): Remove, replacing by libbison_a_SOURCES.
4281 * lib/subpipe.c: Include <unistd.h> unconditionally, now that we
4282 use the unistd module.
4283 * src/system.h: Likewise.
4284 * m4/.cvsignore: Remove *_gl.m4, gnulib.m4, inttypes_h.m4, uintmax_t.m4,
4285 ulonglong.m4. Add gettext.m4, gnulib-cache.m4, gnulib-comp.m4,
4286 gnulib-tool.m4, inttypes-h.m4, inttypes-pri.m4, inttypes.m4.
4287 * src/Makefile.am (DEFS): Remove, since configmake does this for us.
4288 (AM_CPPFLAGS): Remove -I../lib, since Automake does that for us.
4289 * src/system.h: Include inttypes.h unconditionally, now that we
4290 use the inttypes module. Don't bother to include stdint.h, since
4291 inttypes.h now does that for us.
4292 (LOCALEDIR): Remove, now that we use the configmake module.
4293 * src/getargs.c: Include configmake.h.
4294 * src/main.c: Likewise.
4295 * src/output.c: Likewise.
4296 * tests/atlocal.in (CPPFLAGS): Include from $abs_top_builddir/lib,
4297 not from $abs_top_builddir, since config.h moved.
4298
4299
4300 Port to GCC 2.95. First two problems reported by Michael Deutschmann in
4301 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00018.html>.
4302
4303 * src/parse-gram.y (symbol_declaration): Don't put statements
4304 before declarations; it's not portable to C89.
4305 * src/scan-code.l (handle_action_at): Likewise.
4306
4307 * src/scan-code.l: Always initialize braces_level; the old code
4308 left it uninitialized and therefore had undefined behavior.
4309
4310 Don't attempt to redefine 'assert', since it runs afoul of
4311 systems where standard headers (mistakenly) include <assert.h>.
4312 Instead, define and use our own alternative, called 'aver'.
4313 * src/reader.c: Don't include assert.h, since we no longer
4314 use assert.
4315 * src/scan-code.l: Likewise.
4316 * src/system.h (assert): Remove, replacing with....
4317 (aver): New function, taking a bool arg. All uses changed.
4318 * src/tables.c (pack_vector): Ensure that aver arg is bool,
4319 not merely an integer.
4320
4321 2006-09-15 Bob Rossi <bob@brasko.net>
4322
4323 * data/Makefile.am (dist_pkgdata_DATA): Add push.c.
4324 * data/c.m4 (YYPUSH): New.
4325 (b4_push_if): New macro. Use it instead of #ifdef YYPUSH.
4326 * src/getargs.c (push_parser): New var.
4327 * src/getargs.h (push_parser): New declaration.
4328 * src/output.c (prepare): Add macro insertion of `push_flag'.
4329 * src/parse-gram.y (PERCENT_PUSH_PARSER): New token.
4330 (prologue_declaration): Parse %push-parser.
4331 * src/scan-gram.l: Scan new PERCENT_PUSH_PARSER token.
4332 * tests/calc.at (_AT_CHECK_CALC_ERROR): Add "Return" and "Now" to
4333 list of removed lines from the traces observed.
4334 (AT_CHECK_CALC_LALR): Added push parser tests.
4335
4336 2006-09-13 Paul Eggert <eggert@cs.ucla.edu>
4337
4338 * NEWS: Version 2.3a.
4339 * configure.ac (AC_INIT): Likewise.
4340
4341 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Remove
4342 "#define YYSTYPE int" that caused "make maintainer-check" to fail
4343 due to header ordering dependencies. I don't know why the #define
4344 was there.
4345
4346 Fix glr.cc and lalr1.cc's use of YYDEBUG so that there's zero
4347 runtime cost when YYDEBUG is not defined, and so that some tests
4348 that used to fail now work. Problem and initial suggestion by
4349 Paolo Bonzini.
4350 * data/c++.m4 (b4_parse_param_cons): Omit leading ','.
4351 * data/glr.cc (b4_parser_class_name):
4352 Initialize yycdebug_ only if YYDEBUG. Also, initialize yydebug_.
4353 (debug_level, set_debug_level): Affect yydebug_, not ::yydebug.
4354 (yydebug_) [YYDEBUG]: New member.
4355 (yycdebug_): Now defined only if YYDEBUG.
4356 * data/lalr1.cc (yydebug_, yycdebug_): Now defined only if YYDEBUG.
4357 (YYCDEBUG) [!YYDEBUG]: Don't use yydebug_ and yycdebug_.
4358 (b4_parser_class_name): Initialize yydebug_ and yycdebug_ only
4359 if YYYDEBUG.
4360 (debug_stream, set_debug_stream, debug_level, set_debug_level):
4361 Define only if YYDEBUG.
4362 * tests/calc.at (_AT_DATA_CALC_Y) [!YYDEBUG]: Omit call to
4363 set_debug_level.
4364 * tests/regression.at (_AT_DATA_DANCER_Y) [!YYDEBUG]: Likewise.
4365 * tests/calc.at (AT_CHECK_CALC_GLR_CC): Uncomment calls to
4366 AT_CHECK_CALC_GLR_CC that are working now.
4367
4368 2006-09-12 Paul Eggert <eggert@cs.ucla.edu>
4369
4370 * data/glr.cc (YYERROR_VERBOSE, YYTOKEN_TABLE): Remove.
4371 We don't need them in glr.cc, and glr.c defines them.
4372 Defining YYERROR_VERBOSE to 0 here breaks glr.c, since glr.c
4373 assumes that defining it to anything is the same as defining
4374 it to 1. Problem reported by Paolo Bonzini.
4375
4376 2006-09-12 Paolo Bonzini <bonzini@gnu.org> (tiny change)
4377
4378 * data/c.m4 (b4_null, b4_case): Define.
4379 * src/output.c (prepare_symbols): Use b4_null.
4380 (user_actions_output): Use b4_case.
4381
4382 2006-09-11 Paul Eggert <eggert@cs.ucla.edu>
4383
4384 * data/glr.c (b4_shared_declarations): Put start-header first,
4385 before any #includes that we generate, so that feature-test
4386 macros work. Problem reported by Michael Deutschmann in
4387 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00004.html>.
4388 * data/lalr1.cc: Likewise.
4389 * doc/bison.texinfo (Prologue): Document that feature-test macros
4390 should be defined before any Bison declarations.
4391 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Put defns
4392 that depend on location.hh after, not before, Bison decls, since
4393 we now include location.hh after the first user prologue.
4394
4395 * doc/bison.texinfo (Calc++ Parser): Fix memory leak reported by
4396 Sander Brandenburg in
4397 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00002.html>.
4398 Also, fix minor white space and comment issues.
4399 (Prologue): Mention that it's better to define feature-test macros
4400 before Bison declarations. Problem reported by Michael Deutschmann.
4401
4402 * README-cvs: Fix typo: "&" should be "&&". Problem reported
4403 by Jim Meyering.
4404 * m4/.cvsignore: Add argmatch.m4. Remove obstack.m4, strerror_r.m4.
4405 This adjusts to recent gnulib changes.
4406
4407 2006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
4408
4409 Finish implementation of per-type %destructor/%printer. Discussed
4410 starting at
4411 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>
4412 and
4413 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>.
4414 * NEWS (2.3+): Add a description of this feature to the default
4415 %destructor/%printer description.
4416 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise.
4417 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
4418 Invoke semantic_type_destructor_set or semantic_type_printer_set when a
4419 list node contains a semantic type.
4420 * src/symtab.c, src/symtab.h: Extend with a table that associates
4421 semantic types with their %destructor's and %printer's.
4422 (semantic_type_from_uniqstr, semantic_type_get,
4423 semantic_type_destructor_set, semantic_type_printer_set): New functions
4424 composing the public interface of that table.
4425 (symbol_destructor_get, symbol_destructor_location_get,
4426 symbol_printer_get, symbol_printer_location_get): If there's no
4427 per-symbol %destructor/%printer, look up the per-type before trying
4428 the default.
4429 * tests/actions.at (Per-type %printer and %destructor): New test case.
4430 * tests/input.at (Default %printer and %destructor redeclared):
4431 Extend to check that multiple occurrences of %symbol-default in a
4432 single %destructor/%printer declaration is an error.
4433 (Per-type %printer and %destructor redeclared, Unused values with
4434 per-type %destructor): New test cases.
4435
4436 2006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
4437
4438 Require default %destructor/%printer to be declared using
4439 %symbol-default instead of an empty symbol list, and start working on
4440 new per-type %destructor/%printer. Discussed at
4441 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00007.html>.
4442 * NEWS (2.3+): Add %symbol-default to example.
4443 * bison.texinfo (Freeing Discarded Symbols): Likewise.
4444 (Table of Symbols): Add entry for %symbol-default.
4445 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): New token.
4446 (generic_symlist, generic_symlist_item): New nonterminals for creating
4447 a list in which each item is a symbol, semantic type, or
4448 %symbol-default.
4449 (grammar_declaration): Use generic_symlist in %destructor and %printer
4450 declarations instead of symbols.1 or an empty list.
4451 (symbol_declaration, precedence_declaration, symbols.1): Update actions
4452 for changes to symbol_list.
4453 * src/reader.c: Update for changes to symbol_list.
4454 * src/scan-code.l: Likewise.
4455 * src/scan-gram.l: Scan new PERCENT_SYMBOL_DEFAULT token.
4456 * src/symlist.c, src/symlist.h: Extend such that a list node may
4457 represent a semantic type or a %symbol-default in addition to just an
4458 ordinary symbol. Add switched functions for setting %destructor's and
4459 %printer's.
4460 * tests/actions.at, tests/input.at: Add %symbol-default to all default
4461 %destructor/%printer declarations.
4462
4463 2006-08-23 Joel E. Denny <jdenny@ces.clemson.edu>
4464
4465 Whether the default %destructor/%printer applies to a particular symbol
4466 isn't a question of whether the user *declares* that symbol (in %token,
4467 for example). It's a question of whether the user by any means
4468 *defines* the symbol at all (by simply using a char token, for
4469 example). $end is defined by Bison whereas any other token with token
4470 number 0 is defined by the user. The error token is always defined by
4471 Bison regardless of whether the user declares it with %token, but we
4472 may one day let the user define error as a nonterminal instead.
4473 * NEWS (2.3+): Say "user-defined" instead of "user-declared".
4474 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise, and document
4475 the meaning of "user-defined".
4476 * tests/actions.at (Default %printer and %destructor for user-declared
4477 end token): Rename to...
4478 (Default %printer and %destructor for user-defined end token): ...
4479 this.
4480
4481 * src/symtab.c (symbol_destructor_get, symbol_printer_get): In the
4482 computation of whether to apply the default, don't maintain a list of
4483 every Bison-defined symbol. Instead, just check for a first character
4484 of '$', which a user symbol cannot have, and check for the error token.
4485
4486 2006-08-21 Joel E. Denny <jdenny@ces.clemson.edu>
4487
4488 Don't apply the default %destructor or %printer to the error token,
4489 $undefined, or $accept. This change fits the general rule that the
4490 default %destructor and %printer are only for user-declared symbols,
4491 and it solves several difficulties that are described in the new test
4492 cases listed below.
4493 * src/symtab.c (symbol_destructor_get, symbol_printer_get): Implement.
4494 * tests/actions.at (Default %printer and %destructor are not for error
4495 or $undefined, Default %printer and %destructor are not for $accept):
4496 New test cases.
4497
4498 2006-08-19 Joel E. Denny <jdenny@ces.clemson.edu>
4499
4500 Allow %start after the first rule.
4501 * src/reader.c (grammar_current_rule_begin): Don't set the start symbol
4502 when parsing the first rule.
4503 (check_and_convert_grammar): Search for it here after all grammar
4504 declarations have been parsed. Skip midrules, which have dummy LHS
4505 nonterminals.
4506 * src/symtab.c (symbol_is_dummy): New function.
4507 * src/symtab.h (symbol_is_dummy): Declare it.
4508 * tests/input.at (%start after first rule): New test.
4509
4510 2006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
4511
4512 Redo some of the previous commit: add back the ability to use
4513 non-aliased/undeclared string literals since it might be useful to
4514 those declaring %token-table.
4515 * src/reader.c (check_and_convert_grammar): Undo changes in previous
4516 commit: don't worry about complaints from symbols_pack.
4517 * src/symtab.c (symbol_new, symbol_class_set,
4518 symbol_check_alias_consistency): Undo changes in previous commit: count
4519 each string literal as a new symbol and token, assign it a symbol
4520 number, and don't complain about non-aliased string literals.
4521 (symbols_pack): Since symbol_make_alias still does not decrement symbol
4522 and token counts but does still set aliased tokens to the same number,
4523 symbol_pack_processor now leaves empty slots in the symbols array.
4524 Remove those slots.
4525 * tests/regression.at (Undeclared string literal): Remove test case
4526 added in previous commit since non-aliased string literals are allowed
4527 again.
4528 (Characters Escapes, Web2c Actions): Undo changes in previous commit:
4529 remove unnecessary string literal declarations.
4530 * tests/sets.at (Firsts): Likewise.
4531
4532 2006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
4533
4534 Don't allow an undeclared string literal, but allow a string literal to
4535 be used before its declaration.
4536 * src/reader.c (check_and_convert_grammar): Don't invoke packgram if
4537 symbols_pack complained.
4538 * src/symtab.c (symbol_new): Don't count a string literal as a new
4539 symbol.
4540 (symbol_class_set): Don't count a string literal as a new token, and
4541 don't assign it a symbol number since symbol_make_alias does that.
4542 (symbol_make_alias): It's not necessary to decrement the symbol and
4543 token counts anymore. Don't assume that an alias declaration occurs
4544 before any uses of the identifier or string, and thus don't assert that
4545 one of them has the highest symbol number so far.
4546 (symbol_check_alias_consistency): Complain if there's a string literal
4547 that wasn't declared as an alias.
4548 (symbols_pack): Bail if symbol_check_alias_consistency failed since
4549 symbol_pack asserts that every token has been assigned a symbol number
4550 although undeclared string literals have not.
4551 * tests/regression.at (String alias declared after use, Undeclared
4552 string literal): New test cases.
4553 (Characters Escapes, Web2c Actions): Declare string literals as
4554 aliases.
4555 * tests/sets.at (Firsts): Likewise.
4556
4557 2006-08-14 Joel E. Denny <jdenny@ces.clemson.edu>
4558
4559 In the grammar scanner, STRING_FINISH unclosed constructs and return
4560 them to the parser in order to improve error messages.
4561 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER,
4562 SC_BRACED_CODE, SC_PROLOGUE): Implement.
4563 * tests/input.at (Unclosed constructs): New test case.
4564 * tests/regression.at (Invalid inputs): Update now that unclosed %{ is
4565 seen.
4566
4567 * src/scan-gram.h, src/scan-gram.l (gram_last_braced_code_loc): Remove
4568 unused global.
4569
4570 2006-08-13 Joel E. Denny <jdenny@ces.clemson.edu>
4571
4572 Handle string aliases for character tokens correctly.
4573 * src/symtab.c (symbol_user_token_number_set): If the token has an
4574 alias, check and set its alias's user token number instead of its own,
4575 which is set to indicate the alias. Previously, every occurrence of
4576 the character token in the grammar overwrote that alias indicator with
4577 the character code.
4578 * tests/input.at (String aliases for character tokens): New test.
4579
4580 2006-08-12 Joel E. Denny <jdenny@ces.clemson.edu>
4581
4582 * src/parse-gram.y: Add `%expect 0' so we don't overlook conflicts.
4583
4584 2006-08-11 Paul Eggert <eggert@cs.ucla.edu>
4585
4586 * bootstrap: Put in need-ngettext argument to AM_GNU_GETTEXT,
4587 to prevent failures when building on older platforms.
4588 Check for autopoint failure.
4589 Set XGETTEXT_OPTIONS to values that check for C format strings,
4590 so that translators are warned about them (this also helps
4591 prevent core dumps).
4592
4593 * lib/subpipe.c (create_subpipe): Use new gnulib pipe_safer
4594 function, since it simplifies our code a bit.
4595
4596 * configure.ac (AC_ARG_ENABLE): Use -Wextra -Wno-sign-compare
4597 rather than -W, so we don't get bogus warnings about sign comparisons.
4598 Add -Wpointer-arith, since that warning is useful (it reports code
4599 that does not conform to C89 and that some compilers reject).
4600 * data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c: Undo latest change,
4601 since it's no longer needed.
4602
4603 2006-08-10 Joel E. Denny <jdenny@ces.clemson.edu>
4604
4605 Clean up scanners a bit.
4606 * src/flex-scanner.h (FLEX_NO_OBSTACK): New macro that blocks obstack
4607 definitions so gcc won't warn when obstack_for_string is unused.
4608 * src/scan-code.l: config.h and system.h are already #include'd by
4609 scan-code-c.c, so get rid of them here.
4610 * src/scan-gram.l: Likewise.
4611 * src/scan-skel.l: Likewise, and use flex-scanner.h without obstack
4612 definitions rather than duplicating the rest of it.
4613 * src/scan-gram-c.c, scan-skel-c.c: #include "system.h".
4614
4615 2006-08-09 Joel E. Denny <jdenny@ces.clemson.edu>
4616
4617 Suppress signed/unsigned comparison warnings for yycheck.
4618 * data/c.m4 (b4_safest_int_type): New macro.
4619 * data/glr.c, data/lalr1.cc: Wherever you compare yycheck[i] against
4620 a signed int type, cast it to b4_safest_int_type first.
4621 * data/yacc.c: Likewise.
4622 (b4_safest_int_type): Overwrite the one from c.m4 since b4_int_type is
4623 also overwritten.
4624
4625 2006-08-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> (tiny change)
4626
4627 * doc/bison.texinfo: Fix some typos.
4628
4629 2006-08-02 Paul Eggert <eggert@cs.ucla.edu>
4630
4631 * m4/.cvsignore: Add inttypes_h.m4,lib-ld.m4, lib-prefix.m4,
4632 po.m4, stdint_h.m4, uintmax_t.m4, ulonglong.m4, warning.m4.
4633
4634 * bootstrap (gnulib_tool): Stop using --assume-autoconf;
4635 the latest gnulib does this a different way.
4636 (get_translations): Sharuzzaman Ahmat Raslan reported that the ms
4637 translation was patched, so stop omitting it.
4638
4639 2006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
4640
4641 Enable declaration of default %printer/%destructor. Make the parser
4642 use these for all user-declared grammar symbols for which the user does
4643 not declare a specific %printer/%destructor. Thus, the parser uses it
4644 for token 0 if the user declares it but not if Bison generates it as
4645 $end. Discussed starting at
4646 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>,
4647 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>,
4648 and
4649 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>.
4650 * NEWS (2.3+): Mention.
4651 * doc/bison.texinfo (Actions in Mid-Rule): It's no longer impossible to
4652 declare a %destructor for a mid-rule's semantic value. It's just
4653 impossible to declare one specific to it.
4654 (Freeing Discarded Symbols): Mention that @$ can be used in %destructor
4655 code. Describe default %destructor form.
4656 * src/parse-gram.y (grammar_declaration): Parse default
4657 %printer/%destructor declarations.
4658 * src/output.c (symbol_destructors_output): Use symbol_destructor_get
4659 and symbol_destructor_location_get rather than accessing the destructor
4660 and destructor_location members of struct symbol.
4661 (symbol_printers_output): Likewise but for %printer's.
4662 * src/reader.c (symbol_should_be_used): Likewise but for %destructor's
4663 again.
4664 * src/symtab.c (default_destructor, default_destructor_location,
4665 default_printer, default_printer_location): New static global
4666 variables to record the default %destructor and %printer.
4667 (symbol_destructor_get, symbol_destructor_location_get,
4668 symbol_printer_get, symbol_printer_location_get): New functions to
4669 compute the appropriate %destructor and %printer for a symbol.
4670 (default_destructor_set, default_printer_set): New functions to set the
4671 default %destructor and %printer.
4672 * src/symtab.h: Prototype all those new functions.
4673 * tests/actions.at (Default %printer and %destructor): New test to
4674 check that the right %printer and %destructor are called, that they're
4675 not called for $end, and that $$ and @$ work correctly.
4676 (Default %printer and %destructor for user-declared end token): New
4677 test to check that the default %printer and %destructor are called for
4678 a user-declared end token.
4679 * tests/input.at (Default %printer and %destructor redeclared, Unused
4680 values with default %destructor): New tests to check related grammar
4681 warnings and errors.
4682
4683 2006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
4684
4685 Clean up handling of %destructor for the end token (token 0).
4686 Discussed starting at
4687 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>
4688 and
4689 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00013.html>.
4690
4691 Make the skeletons consistent in how they pop the end token and invoke
4692 its %destructor.
4693 * data/glr.c (yyrecoverSyntaxError, yyparse): Don't pop the start
4694 state, which has token number 0, since this would invoke the
4695 %destructor for the end token.
4696 * data/lalr1.cc (yy::parser::parse): Don't check for the final state
4697 until after shifting the end token, or else it won't be popped.
4698 * data/yacc.c (yyparse): Likewise.
4699
4700 * data/glr.c (yyparse): Clear the lookahead after shifting it even when
4701 it's the end token. Upon termination, destroy an unshifted lookahead
4702 even when it's the end token.
4703 * data/lalr1.cc (yy::parser::parse): Likewise.
4704 * data/yacc.c (yyparse): Likewise.
4705
4706 * src/reader.c (packgram): Don't check rule 0. This suppresses unused
4707 value warnings for the end token when the user gives the end token a
4708 %destructor.
4709
4710 * tests/actions.at (Printers and Destructors): Test all the above.
4711
4712 2006-07-24 Paul Eggert <eggert@cs.ucla.edu>
4713
4714 Update to latest gnulib and gettext versions.
4715 * bootstrap (gnulib-modules): Remove hard-locale, stdio-safer.
4716 Add fopen-safer.
4717 (gnulib_files): Add m4/warning.m4. Don't worry about files
4718 overwritten by autopoint.
4719 Replace gt_INTL_SUBDIR_CORE with an empty body in m4/gettext_gl.m4.
4720 Suppress "id", "ms", "tr" translations for now, since gettext 0.15
4721 rejects them.
4722 Don't use autoreconf; instead, invoke autopoint etc. by hand,
4723 so that we can remove the intl files at a better time.
4724 (intl_files_to_remove): Remove aclocal.m4, since it gets
4725 rebuilt anyway. Remove m4/inttypes_h.m4, m4/inttypes.m4,
4726 m4/isc-posix.m4, m4/lib-ld.m4, m4/lib-prefix.m4, m4/po.m4,
4727 m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
4728 Add m4/inttypes-h.m4, m4/lock.m4, m4/visibility.m4.
4729 Remove datarootdir hack; no longer needed.
4730 * configure.ac: Use gl_WARNING_CFLAGS rather than BISON_WARNING.
4731 (AM_GNU_GETTEXT_VERSION): Bump from 0.12 to 0.15.
4732 * lib/.cvsignore: Remove hard-locale.c, hard-locale.h, strdup.c,
4733 strdup.h.
4734 * m4/.cvsignore: Remove hard-locale.m4, strdup.m4.
4735 * m4/warning.m4: Remove from CVS, since we now use gnulib's version.
4736
4737 2006-07-20 Paul Eggert <eggert@cs.ucla.edu>
4738
4739 * bootstrap: Adjust to today's change to gnulib-tool by invoking
4740 it with --assume-autoconf='latest-stable'.
4741
4742 2006-07-13 Joel E. Denny <jdenny@ces.clemson.edu>
4743
4744 * src/parse-gram.y (grammar_declaration): Don't confuse Doxygen (at
4745 least 1.4.7 and 1.4.4) by putting a #line between `typedef union
4746 YYSTYPE' and `{'.
4747 * src/muscle_tab.h (muscle_grow): Replace the header comments with
4748 those from muscle_tab.c since the old ones are misleading.
4749
4750 2006-07-13 Akim Demaille <akim@epita.fr>
4751
4752 Support %define "KEY" {VALUE}.
4753 * src/scan-code.h, src/scan-code.l (translate_action)
4754 (translate_rule_action, translate_symbol_action, translate_code):
4755 Return char *, not const char *.
4756 * src/parse-gram.y (declaration): Rename as...
4757 (prologue_declaration): this.
4758 (string_content): Remove this nonterminal, use STRING.
4759 (braceless, content, content.opt): New nonterminal.
4760 Use them.
4761 (%define): Now accept content.opt, i.e., accept also BRACED_CODE
4762 as value.
4763 * src/scan-gram.l (getargs.h): Don't include it.
4764
4765 2006-07-12 Paul Eggert <eggert@cs.ucla.edu>
4766
4767 * data/lalr1.cc (YYCDEBUG): Use 'if (yydebug_) (*yycdebug_)'
4768 rather than a for-loop that declares a local bool variable. This
4769 should work around a compatibility problem with a Cray x1e C++
4770 compiler reported by Hung Nguyen in
4771 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00022.html>.
4772 The for-loop was introduced in the 2004-11-17 change but I don't
4773 know why it was needed.
4774
4775 2006-07-12 Akim Demaille <akim@epita.fr>
4776
4777 * data/c.m4: Comment changes.
4778
4779 2006-07-10 Akim Demaille <akim@lrde.epita.fr>
4780
4781 * src/complain.c (error_message, ERROR_MESSAGE): New.
4782 To factor...
4783 (fatal_at, fatal, warn_at, warn, complain_at, complain): these.
4784 * src/complain.h, src/complain.c (warning_issued): Remove, unused.
4785
4786 2006-07-09 Paul Eggert <eggert@cs.ucla.edu>
4787
4788 * NEWS: Instead of %union, you can define and use your own union type
4789 YYSTYPE if your grammar contains at least one <type> tag.
4790 Your YYSTYPE need not be a macro; it can be a typedef.
4791 * doc/bison.texinfo (Value Type, Multiple Types, Location Type):
4792 (Union Decl, Decl Summary): Document this.
4793 * data/glr.c (YYSTYPE): Implement this.
4794 * data/glr.cc (YYSTYPE): Likewise.
4795 * data/lalr1.cc (YYSTYPE): Likewise.
4796 * data/yacc.c (YYSTYPE): Likewise.
4797 * src/output.c (prepare): Output tag_seen_flag.
4798 * src/parse-gram.y (declaration, grammar_declaration):
4799 Use 'union_seen' rather than 'typed' to determine whether
4800 %union has been seen, since grammars can now be typed without
4801 %union.
4802 (symbol_declaration, type.opt, symbol_def):
4803 Keep track of whether a tag has been seen.
4804 * src/reader.c (union_seen, tag_seen): New vars.
4805 (typed): remove.
4806 * src/reader.h (union_seen, tag_seen, typed): Likewise.
4807 * src/scan-code.l (untyped_var_seen): New variable.
4808 (handle_action_dollar): Adjust to above changes.
4809 (handle_action_dollar, handle_action_at):
4810 Improve overflow checking for outlandish numbers.
4811 * tests/input.at (AT_CHECK_UNUSED_VALUES): Redo test to
4812 avoid new diagnostics generated by above changes.
4813 * tests/regression.at (YYSTYPE typedef): Add test to check
4814 for type tags without %union.
4815
4816 * src/symlist.c (symbol_list_length): Return int, not unsigned
4817 int, since callers expect int. This may need to get revisited
4818 once we have proper integer overflow checking.
4819
4820 * src/scan-gram.h (gram_scanner_cursor): Remove decl, since this
4821 object is now static.
4822
4823 * src/getargs.c (flags_argmatch): Return void, not int,
4824 to pacify ./configure --enable-gcc-warnings.
4825
4826 * src/flex-scanner.h (STRING_FREE): Don't use FLEX_PREFIX (last_string)
4827 since last_string is already defined to FLEX_PREFIX (last_string).
4828
4829 2006-07-09 Akim Demaille <akim@lrde.epita.fr>
4830
4831 Implement --warnings/-W.
4832 * src/getargs.c (report_argmatch, trace_argmatch): Remove,
4833 replaced by...
4834 (flags_argmatch, FLAGS_ARGMATCH): this new function and macro.
4835 Adjust callers.
4836 * src/getargs.h, src/getargs.c (warnings, warnings_flags)
4837 (warnings_args, warnings_types): New.
4838 (getargs, short_options, long_options): Accept -W/--warnings.
4839 Sort the options by alphabetical order, upper case letter right
4840 before its lower case.
4841
4842 2006-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
4843
4844 Change %merge result type clash warnings to errors. Discussed at
4845 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00026.html>.
4846 * src/reader.c (record_merge_function_type): Use complain_at.
4847 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
4848 declared later): Update test case results.
4849
4850 2006-07-09 Akim Demaille <akim@lrde.epita.fr>
4851
4852 * src/getargs.h, src/getargs.c: Swap --report and --trace handling
4853 to be in alphabetical order.
4854 (trace_args): Spelling fixes.
4855
4856 2006-07-09 Paul Eggert <eggert@cs.ucla.edu>
4857
4858 * data/yacc.c (YYID, yy_stack_print): Prefix local vars with "yy"
4859 so they don't collide with user-defined macros.
4860 (yy_stack_print): Don't assume that yytype_int16 promotes to int;
4861 this was never guaranteed, and now that we're using gnulib stdint,
4862 which defines int_fast16_t to long int, the problem is exposed.
4863
4864 2006-07-08 Paul Eggert <eggert@cs.ucla.edu>
4865
4866 * data/c.m4 (b4_basename): Simplify a bit, since we don't
4867 need the full POSIX semantics (and weren't implementing them
4868 anyway).
4869
4870 Adjust to Autoconf 2.60 and today's gnulib.
4871 * bootstrap (gnulib_modules): Add stdint.
4872 Remove special case for m4/onceonly_2_57.m4, since gnulib-tool
4873 no longer copies it.
4874 (intl_files_to_remove): Remove m4/longlong.m4 and m4/wchar_t.m4,
4875 since stdint needs the former and wcwidth (which is now required
4876 by mbswidth) needs the latter.
4877 Append 'datarootdir = @datarootdir@' to po/Makefile.in.in, to
4878 work around a compatibility glitch between gettext 0.14.6 and
4879 Autoconf 2.60.
4880 * configure.ac (AC_PREREQ): Require Autoconf 2.60.
4881 Do not check for uintptr_t, since new stdint module does the right
4882 thing.
4883 * lib/.cvsignore: Remove alloca.c, alloca.h, alloca_.h.
4884 Add stdint.h, stdint_.h, wcwidth.h.
4885 * m4/.cvsignore: Remove alloca.m4, onceonly.m4.
4886 Add absolute-header.m4, double-slash-root.m4, longlong.m4,
4887 stdint.m4, wchar_t.m4, wcwidth.m4.
4888 * src/files.c: Include <dirname.h> and <stdio-safer.h> in the
4889 usual order for ../lib/*.h files.
4890 (file_name_split): Use last_component, not base_name, to adjust
4891 to gnulib changes.
4892 * src/parse-gram.h: Include <strverscmp.h> in the usual order
4893 for ../lib/*.h files.
4894 (YYTYPE_INT16, YYTYPE_INT8, YYTYPE_UINT16, YYTYPE_UINT8):
4895 Define unconditionally, since we now assume the stdint module.
4896 * src/scan-skel.l: Include <dirname.h>.
4897 (BASE_QPUTS): Use last_component, not base_name.
4898 * src/system.h: Include <unlocked-io.h> in the usual order
4899 for ../lib/*.h files. Include <stdint.h> unconditionally,
4900 since we now use the stdint module.
4901 (uintptr_t): Declare if UINTPTR_MAX is not defined, not
4902 HAVE_UINTPTR_T, since we now use the stdint module.
4903 (base_name): Remove decl, since files now include <dirname.h>
4904 to get the decl.
4905
4906 2006-07-08 Akim Demaille <akim@lrde.epita.fr>
4907
4908 * data/c.m4 (b4_location_initial_column, b4_location_initial_line):
4909 New, default to 1.
4910 * data/yacc.c, data/glr.c, data/location.cc: Use them.
4911 * NEWS, doc/bison.texinfo: The initial column and line are 1 by
4912 default.
4913 * tests/calc.at: Adjust.
4914
4915 2006-07-08 Akim Demaille <akim@lrde.epita.fr>
4916
4917 * data/c.m4 (b4_basename): New.
4918 (b4_syncline): Also output the location of its invocation (from
4919 the skeleton).
4920 (b4_user_action, b4_define_user_action, b4_user_actions)
4921 (b4_user_initial_action, b4_user_post_prologue, b4_user_start_header)
4922 (b4_user_stype): New.
4923 * data/yacc.c, data/glr.c, data/lalr1.cc, data/glr.cc: Use them.
4924
4925 2006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
4926
4927 In the grammar file, the first column is 1 not 0 on the first line as
4928 on every other line.
4929 * src/parse-gram.y (%initial-action): Initialize @$ correctly.
4930 * tests/input.at (Torturing the Scanner): Update output.
4931
4932 * src/scan-gram.l (scanner_cursor): Declare it static.
4933
4934 2006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
4935
4936 In warnings, say "previous declaration" rather than "first
4937 declaration".
4938 * src/symtab.c (redeclaration): Do that here.
4939 * src/reader.c (record_merge_function_type): In the case of a result
4940 type clash, report the previous declaration rather than the very first
4941 one in the grammar file.
4942 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
4943 declared later): Add a third declaration to check this behavior.
4944 * tests/input.at (Incompatible Aliases): Update output.
4945
4946 2006-06-27 Akim Demaille <akim@epita.fr>
4947
4948 * doc/Doxyfile.in: New.
4949 * doc/Makefile.am: Use it.
4950 * src/lalr.h, src/symtab.h: Initial doxygenation.
4951
4952 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
4953
4954 Don't miss %merge result type warnings just because the LHS types are
4955 declared after the %merge. This continues the effort of the previous
4956 patch.
4957 * src/reader.c (get_merge_function): Don't set the merger type yet.
4958 (record_merge_function_type): New function for setting the merger type
4959 and checking for clashes.
4960 (grammar_current_rule_merge_set): Set the location of the %merge for
4961 the current rule.
4962 (packgram): Invoke record_merge_function_type for each rule now that
4963 all symbol type declarations have been parsed.
4964 * src/reader.h (merger_list.type_declaration_location): New member
4965 storing the location of the first %merge from which the type for this
4966 merging function was derived.
4967 * src/symlist.h (symbol_list.merger_declaration_location): New member
4968 storing the location of a rule's %merge, if any.
4969 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
4970 declared later): New test to catch the error fixed by the above patch.
4971
4972 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
4973
4974 Get action warnings (grammar_rule_check) right even when symbol
4975 declarations appear after the rules. Discussed at
4976 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00108.html>
4977 and
4978 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00151.html>.
4979 Don't mistake the type of $$ in a midrule to be that of its parent
4980 rule's $$.
4981 * src/reader.c (grammar_current_rule_end): Don't invoke
4982 grammar_rule_check yet since not all symbol declarations may have been
4983 parsed yet.
4984 (grammar_midrule_action): Likewise.
4985 Don't record whether the midrule's $$ has been used yet since actions
4986 haven't been translated yet.
4987 Record the midrule's parent rule and its RHS index within the parent
4988 rule.
4989 (grammar_current_rule_action_append): Don't translate the action yet
4990 since not all symbol declarations may have been parsed yet and, thus,
4991 warnings about types for $$, $n, @$, and @n can't be reported yet.
4992 (packgram): Translate the action and invoke grammar_rule_check now that
4993 all symbol declarations have been parsed.
4994 * src/scan-code.l (handle_action_dollar): Now that this is invoked
4995 after parsing the entire grammar file, the symbol list here in the case
4996 of a midrule is actually the midrule's empty RHS, so reference its
4997 parent rule's RHS where necessary.
4998 On the other hand, now that you can already know it's a midrule, you
4999 aren't forced to think $$ has the same type as its parent rule's $$.
5000 (handle_action_at): In the case of a midrule, reference the parent rule
5001 where necessary.
5002 * src/symlist.c (symbol_list_new): Initialize new midrule-related
5003 members.
5004 (symbol_list_length): Now that this is invoked after all rules have
5005 been parsed, a NULL symbol (rather than a NULL symbol list node)
5006 terminates a rule. symbol_list_print already does this correctly.
5007 * src/symlist.h (symbol_list.midrule_parent_rule,
5008 symbol_list.midrule_parent_rhs_index): New members so that midrules can
5009 remember their relationships with their parents.
5010 * tests/input.at (Type Clashes): Extend to catch the midrule $$ error
5011 fixed by the above patch.
5012 (_AT_UNUSED_VALUES_DECLARATIONS, AT_CHECK_UNUSED_VALUES): New m4 macros
5013 implementing...
5014 (Unused values): ... this old test case and...
5015 (Unused values before symbol declarations): ... this new test case.
5016 This one is the same as `Unused values' except that all symbol
5017 declarations appear after the rules in order to catch the rest of the
5018 errors fixed by the above patch.
5019
5020 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
5021
5022 More cleanup.
5023 * src/reader.c (current_rule): Declare it static since it's no longer
5024 used outside this file.
5025 (grammar_current_rule_action_append): Remove redundant arguments from
5026 translate_rule_action invocation.
5027 * src/reader.h (current_rule): Remove this unused extern.
5028 * src/scan-code.h (translate_rule_action): Remove redundant arguments.
5029 * src/scan-code.l (translate_rule_action): Likewise.
5030
5031 2006-06-25 Joel E. Denny <jdenny@ces.clemson.edu>
5032
5033 Clean up yesterday's patch.
5034 * parse-gram.y (rhs): Move grammar_midrule_action invocation from here
5035 to...
5036 * src/reader.c (grammar_current_rule_action_append): ... here for
5037 consistency with grammar_current_rule_symbol_append.
5038 * tests/regression.at (Braced code in declaration in rules section):
5039 Make yyerror and yylex static as usual.
5040
5041 2006-06-24 Joel E. Denny <jdenny@ces.clemson.edu>
5042
5043 Fix bug that mistakes braced code in a declaration in the rules section
5044 to be a rule action. Mentioned at
5045 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00105.html>.
5046 * src/scan-gram.l: Move midrule action detection from the start of the
5047 scanning of any braced code to...
5048 * src/parse-gram.y (rhs): ... the parsing of braced code as a rule
5049 action. For readability, use $2 and @2 rather than the equivalent
5050 global variables.
5051 * tests/regression.at (Braced code in declaration in rules section):
5052 New test to catch the error fixed by the above patch.
5053
5054 Work on code readability some.
5055 * src/scan-code.l (current_rule): Get rid of this misleading and
5056 redundant declaration: it's actually extern'ed in reader.h.
5057 (YY_DECL, code_lex, handle_action_dollar, handle_action_at,
5058 translate_action): Add a rule argument and use it instead of the global
5059 current_rule.
5060 (translate_rule_action): This already receives current_rule through an
5061 argument, so pass it on to translate_action instead of assigning
5062 current_rule to current_rule.
5063 (translate_symbol_action, translate_code): Pass rule = NULL to
5064 translate_action.
5065
5066 2006-06-23 Joel E. Denny <jdenny@ces.clemson.edu>
5067
5068 Rename %before-definitions to %start-header and %after-definitions to
5069 %end-header. Don't use these declarations to separate pre-prologue
5070 blocks from post-prologue blocks. Add new order-independent
5071 declarations %before-header and %after-header as alternatives to the
5072 traditional Yacc pre-prologue and post-prologue blocks. Discussed at
5073 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00110.html>.
5074 * NEWS (2.3+): Update for these changes.
5075 * data/glr.c (b4_before_definitions): Update to...
5076 (b4_start_header): ... this.
5077 (b4_after_definitions): Update to...
5078 (b4_end_header): ... this.
5079 * data/glr.cc: Likewise.
5080 * data/lalr1.cc: Likewise.
5081 * data/yacc.c: Likewise.
5082 * doc/bison.texinfo (The prologue): Update names, and replace remaining
5083 prologue blocks with %*-header declarations.
5084 (Calc++ Parser): Likewise.
5085 (Decl Summary): Update names.
5086 (Table of Symbols): Update description.
5087 * src/parse-gram.y (PERCENT_AFTER_DEFINITIONS): Update to...
5088 (PERCENT_END_HEADER): ... this.
5089 (PERCENT_BEFORE_DEFINITIONS): Update to...
5090 (PERCENT_START_HEADER): ... this.
5091 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
5092 (declaration): Update token names and m4 macro names.
5093 When parsing %end-header and %start-header, invoke translate_code
5094 before muscle_code_grow, and no longer set global booleans to remember
5095 whether these declarations have been seen.
5096 Parse new %after-header and %before-header.
5097 * src/reader.c (before_definitions, after_definitions): Remove.
5098 (prologue_augment): Accept a new bool argument to specify whether to
5099 augment the pre-prologue or post-prologue.
5100 * src/reader.h (before_definitions, after_definitions): Remove these
5101 extern's.
5102 (prologue_augment): Add new bool argument.
5103 * src/scan-gram.l (PERCENT_AFTER_DEFINITIONS): Update to...
5104 (PERCENT_END_HEADER): ... this.
5105 (PERCENT_BEFORE_DEFINITIONS): Update to...
5106 (PERCENT_START_HEADER): ... this.
5107 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
5108 * tests/actions.at (Printers and Destructors): Update names.
5109
5110 2006-06-22 Joel E. Denny <jdenny@ces.clemson.edu>
5111
5112 Add comparison operators for C++ location classes. Discussed at
5113 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00092.html>.
5114 * data/c++.m4 (b4_define_location_comparison): New boolean %define
5115 declaration indicating whether filename_type has an operator==. If
5116 filename_type is `std::string', it defaults to `1', `0' otherwise.
5117 * data/location.cc: Iff b4_define_location_comparison is `1', add
5118 operator== and operator!= for class position and for class location.
5119
5120 Some minor fixes.
5121 * src/scan-action.l: Remove unused file.
5122 * src/symtab.c (symbol_printer_set): Use printer_location not
5123 destructor_location.
5124 * src/symtab.h (struct symbol): Replace incorrect source comment for
5125 printer members.
5126 * tests/input.at (Incompatible Aliases): Update output with correct
5127 printer location.
5128
5129 2006-06-20 Joel E. Denny <jdenny@ces.clemson.edu>
5130
5131 Don't put the pre-prologue in the header file. For the yacc.c code
5132 file and the glr.c header and code files, move the pre-prologue before
5133 the token definitions. Add new %before-definitions and
5134 %after-definitions to declare code that will go in both the header file
5135 and code file. Discussed at
5136 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00000.html>,
5137 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00016.html>,
5138 and
5139 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00055.html>.
5140 * NEWS (2.3+): Describe these changes.
5141 * data/glr.c (b4_pre_prologue): Move from within to before...
5142 (b4_shared_declarations): ... this.
5143 Add new b4_before_definitions before b4_token_enums.
5144 Add new b4_after_definitions at the end.
5145 * data/glr.cc (b4_pre_prologue): Replace with...
5146 (b4_before_definitions): ... this in the header file.
5147 (b4_after_definitions): New near the end of the header file.
5148 * data/lalr1.cc (b4_pre_prologue): Move from the header file to the
5149 code file right before including the header file.
5150 (b4_before_definitions): New in the previous position of
5151 b4_pre_prologue in the header file.
5152 (b4_after_definitions): New near the end of the header file.
5153 * data/yacc.c: Clean up some m4 quoting especially in the header file.
5154 (b4_token_enums_defines): In the code file, move to right before
5155 YYSTYPE for consistency with the header file.
5156 (b4_before_definitions): New right before b4_token_enums_defines in
5157 both the header and code file.
5158 (b4_after_definitions): New right after YYLTYPE and yylloc in both the
5159 header and code file.
5160 * doc/bison.texinfo (Prologue): Show use of %before-definitions instead
5161 of prologues for %union dependencies.
5162 (Decl Summary): In %defines description, mention the effect of
5163 %before-definitions and %after-definitions on the header file.
5164 (Calc++ Parser): Forward declare driver in a %before-definitions rather
5165 than in the pre-prologue so that make check succeeds.
5166 (Table of Symbols): Add entries for %before-definitions and
5167 %after-definitions.
5168 * src/parse-gram.y (PERCENT_BEFORE_DEFINITIONS): New token for
5169 %before-definitions.
5170 (PERCENT_AFTER_DEFINITIONS): New token for %after-definitions.
5171 (declaration): Parse those declarations and append to
5172 b4_before_definitions and b4_after_definitions, respectively.
5173 * src/reader.c (before_definitions, after_definitions): New bools to
5174 track whether those declarations have been seen.
5175 (prologue_augment): Add to the post-prologue if %union,
5176 %before-definitions, or %after-definitions has been seen.
5177 * src/reader.h (before_definitions, after_definitions): New extern's.
5178 * src/scan-gram.l: Scan the new declarations.
5179 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Place the second
5180 prologue block in a %before-definitions or a %after-definitions based
5181 on whether the %union is declared.
5182 * tests/regression.at (Early token definitions with --yacc, Early token
5183 definitions without --yacc): Move tests for token definitions into the
5184 post-prologue since token names are no longer defined in the
5185 pre-prologue.
5186
5187 2006-06-20 Akim Demaille <akim@epita.fr>
5188
5189 * src/symtab.h, src/symtab.c (symbol_from_uniqstr): New.
5190 (symbol_get): Use it.
5191 * src/parse-gram.y: Use it.
5192
5193 2006-06-19 Joel E. Denny <jdenny@ces.clemson.edu>
5194
5195 * src/scan-gram.l: Remove unused declaration of last_string_1 so the
5196 build succeeds when configured with --enable-gcc-warnings.
5197
5198 2006-06-19 Paul Eggert <eggert@cs.ucla.edu>
5199
5200 * src/parse-gram.y (char_name): New function.
5201 (CHAR, STRING, string_content): For %printer, properly escape.
5202 (ID): Prefer fputs to fprintf.
5203 (id): Reindent to be consistent with other rules.
5204 Properly quote char.
5205
5206 The Translation Project changed its way of publishing translations
5207 to maintainers. I haven't received any responses to my request
5208 for supporting the old way, or for documenting the new way. I
5209 have modified 'bootstrap' to use screen scraping
5210 (in this case, HTML scraping). This is unreliable and inelegant,
5211 but I don't see any better way. Yuck.
5212 * bootstrap (TP_URL, WGET_COMMAND): New vars.
5213 (get_translations): New function, which uses HTML scraping to
5214 deduce locations of latest translations.
5215 Use this function to grab both bison and bison-runtime .po files.
5216 Don't bother priming the pump for the runtime-po domain any more,
5217 as it's now translated better than bison is.
5218
5219 2006-06-19 Akim Demaille <akim@epita.fr>
5220
5221 * src/scan-gram.l: No longer "parse" things after `%union' until
5222 `{'. Rather, return a single "%union" token.
5223 No longer make symbols: return strings, and leave the conversion
5224 to symbols to the parser.
5225 (SC_PRE_CODE, token_type): Remove.
5226 * src/parse-gram.y (%union): New field `character'.
5227 Sort tokens.
5228 (CHAR): New token.
5229 (ID, ID_COLON): Now that the scanner no longer makes them
5230 identifiers, adjust all uses to invoke symbol_get.
5231 (id_colon): New, wraps the conversion from string to symbol.
5232 (%union): Accept a possible union_name.
5233 (symbol): Now can be a char.
5234 * data/c.m4 (b4_union_name): Leave a default value.
5235 * data/glr.c, data/yacc.c: Use it.
5236
5237 2006-06-11 Joel E. Denny <jdenny@ces.clemson.edu>
5238
5239 For associating token numbers with token names for "yacc.c", don't use
5240 #define statements unless `--yacc' is specified; always use enum
5241 yytokentype. Most important discussions start at:
5242 <http://lists.gnu.org/archive/html/bison-patches/2005-09/msg00053.html>,
5243 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00052.html>,
5244 and
5245 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00043.html>.
5246 * NEWS (2.3+): Mention.
5247 * data/c.m4 (b4_yacc_if): New.
5248 (b4_token_enums_defines): Use b4_yacc_if to decide whether to add the
5249 token #define's.
5250 * doc/bison.texinfo (Bison Options): Describe the effect of `--yacc'
5251 on token name definitions.
5252 * src/getargs.c (usage): Capitalize `Yacc' in English.
5253 * src/output.c (prepare): Define b4_yacc_flag.
5254 * tests/regression.at (Early token definitions): Test that tokens names
5255 are defined before the pre-prologue not just before the post-prologue.
5256 Remove this test case and copy to...
5257 (Early token definitions with --yacc): ... this to test #define's.
5258 (Early token definitions without --yacc): ... and this to test enums.
5259
5260 2006-06-11 Paul Eggert <eggert@cs.ucla.edu>
5261
5262 * NEWS: Reword the post-2.3 change to not be so optimistic about
5263 removing the old "look-ahead" spelling.
5264 Update previous look-ahead/lookahead change reports.
5265 * REFERENCES: look-ahead -> lookahead (since that's
5266 what he actually wrote).
5267 * doc/refcard.tex: look ahead -> lookahead,
5268 look-ahead -> lookahead
5269
5270 2006-06-09 Joel E. Denny <jdenny@ces.clemson.edu>
5271
5272 For consistency, use `lookahead' instead of `look-ahead' or
5273 `look_ahead'. Discussed starting at
5274 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00049.html>
5275 and then at
5276 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00017.html>.
5277 * NEWS: For the next release, note the change to `--report'.
5278 * TODO, doc/bison.1: Update English.
5279 * doc/bison.texinfo: Update English.
5280 (Understanding Your Parser, Bison Options): Document as
5281 `--report=lookahead' rather than `--report=look-ahead'.
5282 * src/conflicts.c: Update English in comments.
5283 (lookahead_set): Rename from look_ahead_set.
5284 (flush_reduce): Rename argument look_ahead_tokens to lookahead_tokens.
5285 (resolve_sr_conflict): Rename local look_ahead_tokens to
5286 lookahead_tokens, and update other uses.
5287 (flush_shift, set_conflicts, conflicts_solve, count_sr_conflicts,
5288 count_rr_conflicts, conflicts_free): Update uses.
5289 * src/getargs.c (report_args): Move "lookahead" before alternate
5290 spellings.
5291 (report_types): Update uses.
5292 (usage): For `--report' usage description, state `lookahead' spelling
5293 rather than `look-ahead'.
5294 * src/getargs.h (report.report_lookahead_tokens): Rename from
5295 report_look_ahead_tokens.
5296 * src/lalr.c: Update English in comments.
5297 (compute_lookahead_tokens): Rename from compute_look_ahead_tokens.
5298 (state_lookahead_tokens_count): Rename from
5299 state_look_ahead_tokens_count.
5300 Rename local n_look_ahead_tokens to n_lookahead_tokens.
5301 (lookahead_tokens_print): Rename from look_ahead_tokens_print.
5302 Rename local n_look_ahead_tokens to n_lookahead_tokens.
5303 Update other uses.
5304 Update English in output.
5305 (add_lookback_edge, initialize_LA, lalr, lalr_free): Update uses.
5306 * src/print.c: Update English in comments.
5307 (lookahead_set): Rename from look_ahead_set.
5308 (print_reduction): Rename argument lookahead_token from
5309 look_ahead_token.
5310 (print_core, state_default_rule, print_reductions, print_results):
5311 Update uses.
5312 * src/print_graph.c: Update English in comments.
5313 (print_core): Update uses.
5314 * src/state.c: Update English in comments.
5315 (reductions_new): Update uses.
5316 (state_rule_lookahead_tokens_print): Rename from
5317 state_rule_look_ahead_tokens_print, and update other uses.
5318 * src/state.h: Update English in comments.
5319 (reductions.lookahead_tokens): Rename from look_ahead_tokens.
5320 (state_rule_lookahead_tokens_print): Rename from
5321 state_rule_look_ahead_tokens_print.
5322 * src/tables.c: Update English in comments.
5323 (conflict_row, action_row): Update uses.
5324 * tests/glr-regression.at
5325 (Incorrect lookahead during deterministic GLR,
5326 Incorrect lookahead during nondeterministic GLR): Rename
5327 print_look_ahead to print_lookahead.
5328 * tests/torture.at: Update English in comments.
5329 (AT_DATA_LOOKAHEAD_TOKENS_GRAMMAR): Rename from
5330 AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR.
5331 (Many lookahead tokens): Update uses.
5332 * data/glr.c: Update English in comments.
5333 * lalr1.cc: Likewise.
5334 * yacc.c: Likewise.
5335 * src/conflicts.h: Likewise.
5336 * src/lalr.h: Likewise.
5337 * src/main.c: Likewise.
5338 * src/output.c: Likewise.
5339 * src/parse-gram.c: Likewise.
5340 * src/tables.h: Likewise.
5341 * tests/calc.at: Likewise.
5342
5343 2006-06-08 Joel E. Denny <jdenny@ces.clemson.edu>
5344
5345 * src/flex-scanner.h (yytext): Remove stray `*/' in #define.
5346
5347 2006-06-07 Paul Eggert <eggert@cs.ucla.edu>
5348
5349 * TODO: Add request from Nelson H. F. Beebe to be able to install
5350 Bison without installing the yacc script.
5351
5352 2006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
5353
5354 * src/flex-scanner.h: For the sake of Flex 2.5.4, don't #define yyleng
5355 and yytext if they're already #define'd.
5356 * src/flex-scanner.h, src/location.h: Move #include "system.h" to...
5357 * src/scan-code-c.c: ... here.
5358 * src/scan-code.l, src/scan-gram.l: ... and here. Also #include
5359 <config.h>.
5360
5361 2006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
5362
5363 Get Bison to build again when configured with --enable-gcc-warnings.
5364 * src/location.c, src/location.h, src/main.c, src/scan-code.l: Add some
5365 missing #include's.
5366 * src/scan-code.l (handle_action_dollar, handle_action_at): Rename
5367 loc argument as it shadows a global.
5368 * src/scan-gram.l: Remove stray comma that prevents boundary_set
5369 invocation.
5370
5371 * src/.cvsignore: Add scan-code.c.
5372
5373 2006-06-07 Akim Demaille <akim@epita.fr>
5374
5375 * src/scan-gram.l: Move the "add a trailing ; to actions" code
5376 to...
5377 * src/scan-code.l: here.
5378 * tests/input.at (Torturing the Scanner): Fix another location
5379 error.
5380
5381 2006-06-07 Akim Demaille <akim@epita.fr>
5382
5383 * src/Makefile.am (BUILT_SOURCES): Fix the trailing backslash.
5384
5385 2006-06-06 Akim Demaille <akim@epita.fr>
5386
5387 Extract the parsing of user actions from the grammar scanner.
5388 As a consequence, the relation between the grammar scanner and
5389 parser is much simpler. We can also split "composite tokens" back
5390 into simple tokens.
5391 * src/gram.h (ITEM_NUMBER_MAX, RULE_NUMBER_MAX): New.
5392 * src/scan-gram.l (add_column_width, adjust_location): Move to and
5393 rename as...
5394 * src/location.h, src/location.c (add_column_width)
5395 (location_compute): these.
5396 Fix the column count: the initial column is 0.
5397 (location_print): Be robust to ending column being 0.
5398 * src/location.h (boundary_set): New.
5399 * src/main.c: Adjust to scanner_free being renamed as
5400 gram_scanner_free.
5401 * src/output.c: Include scan-code.h.
5402 * src/parse-gram.y: Include scan-gram.h and scan-code.h.
5403 Use boundary_set.
5404 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_INITIAL_ACTION)
5405 (PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Remove the {...} part,
5406 which is now, again, a separate token.
5407 Adjust all dependencies.
5408 Whereever actions with $ and @ are used, use translate_code.
5409 (action): Remove this nonterminal which is now useless.
5410 * src/reader.c: Include assert.h, scan-gram.h and scan-code.h.
5411 (grammar_current_rule_action_append): Use translate_code.
5412 (packgram): Bound check ruleno, itemno, and rule_length.
5413 * src/reader.h (gram_in, gram__flex_debug, scanner_cursor)
5414 (last_string, last_braced_code_loc, max_left_semantic_context)
5415 (scanner_initialize, scanner_free, scanner_last_string_free)
5416 (gram_out, gram_lineno, YY_DECL_): Move to...
5417 * src/scan-gram.h: this new file.
5418 (YY_DECL): Rename as...
5419 (GRAM_DECL): this.
5420 * src/scan-code.h, src/scan-code.l, src/scan-code-c.c: New.
5421 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
5422 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
5423 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
5424 Move these declarations, and...
5425 (obstack_for_string, STRING_GROW, STRING_FINISH, STRING_FREE):
5426 these to...
5427 * src/flex-scanner.h: this new file.
5428 * src/scan-gram.l (rule_length, rule_length_overflow)
5429 (increment_rule_length): Remove.
5430 (last_braced_code_loc): Rename as...
5431 (gram_last_braced_code_loc): this.
5432 Adjust to the changes of the parser.
5433 Move all the handling of $ and @ into...
5434 * src/scan-code.l: here.
5435 * src/scan-gram.l (handle_dollar, handle_at): Remove.
5436 (handle_action_dollar, handle_action_at): Move to...
5437 * src/scan-code.l: here.
5438 * src/Makefile.am (bison_SOURCES): Add flex-scanner.h,
5439 scan-code.h, scan-code-c.c, scan-gram.h.
5440 (EXTRA_bison_SOURCES): Add scan-code.l.
5441 (BUILT_SOURCES): Add scan-code.c.
5442 (yacc): Be robust to white spaces.
5443
5444 * tests/conflicts.at, tests/input.at, tests/reduce.at,
5445 * tests/regression.at: Adjust the column numbers.
5446 * tests/regression.at: Adjust the error message.
5447
5448 2006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
5449
5450 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
5451 Use Akim's wording from
5452 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00056.html>.
5453
5454 2006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
5455
5456 Between Bison releases, manually append `+' to the previous Bison
5457 release number, and use that as a signal to automatically print the
5458 ChangeLog's CVS Id keyword from --version. Discussed starting at
5459 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00028.html>.
5460 * ChangeLog: Add Id header.
5461 * configure.ac (AC_INIT): Append `+' to `2.3'.
5462 * src/.cvsignore: Add revision.c.
5463 * src/Makefile.am (bison_SOURCES): Add revision.c and revision.h.
5464 (BUILT_SOURCES): Add revision.c.
5465 (revision.c): New target rule. This file defines a new global variable
5466 named revision. It initializes it with either the Id from ChangeLog
5467 or, if VERSION doesn't contain `+', with the empty string.
5468 * src/getargs.c (version): Print the value of revision.
5469 * src/revision.h: Extern revision.
5470
5471 2006-06-05 Paul Eggert <eggert@cs.ucla.edu>
5472
5473 * NEWS: Version 2.3.
5474 * configure.ac (AC_INIT): Likewise.
5475
5476 2006-05-30 Paul Eggert <eggert@cs.ucla.edu>
5477
5478 * data/glr.c (YYRECOVERING): Define to be a function-like macro
5479 with no arguments, not as an object-like macro. This is for
5480 compatibility with data/yacc.c. Problem reported by John P. Hartmann in
5481 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00059.html>.
5482 * doc/bison.texinfo (Action Features, Error Recovery, Table of Symbols):
5483 Document this.
5484
5485 2006-05-30 Joel E. Denny <jdenny@ces.clemson.edu>
5486
5487 * src/getargs.c (usage): Back out yesterday's modification of the
5488 --help output so that we don't have to wait for translation before
5489 releasing 2.3.
5490
5491 2006-05-29 Paul Eggert <eggert@cs.ucla.edu>
5492
5493 * doc/bison.texinfo (Introduction): Don't say "GLR grammar".
5494 Problem reported by Akim Demaille.
5495
5496 2006-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
5497
5498 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
5499
5500 2006-05-26 Paul Eggert <eggert@cs.ucla.edu>
5501
5502 * data/yacc.c (yy_reduce_print): Omit trailing white space in
5503 generated source code. Problem reported by Frans Englich in
5504 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00049.html>.
5505
5506 2006-05-22 Paul Eggert <eggert@cs.ucla.edu>
5507
5508 * Makefile.maint (gzip_rsyncable, GZIP_ENV): Compute within the
5509 shell, not within 'make', so that 'make' by an ordinary builder
5510 (using GNU make) does not worry about configuring gzip. This also
5511 works around a bug reported independently by Keith Thompson and by
5512 Georg Schwarz, whereby gzip 1.2.4 --help would output usage on
5513 stderr rather than stdout, messing up the build logs.
5514
5515 2006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
5516
5517 * data/yacc.c (yyparse): Wrap the final return from yyparse inside YYID
5518 to make sure that YYID will never be unused. This fixes a 'make
5519 maintainer-check' failure caused by the recent changes to the 'Trivial
5520 grammars' test case, which caused g++ 4.1.0 to complain that YYID was
5521 not used.
5522 * data/glr.c (yyparse): Wrap yyparse's return inside YYID just in case.
5523
5524 2006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
5525
5526 * data/glr.c (yyresolveLocations): Remove bogus YYASSERT that the
5527 state before an empty RHS is always resolved here. Only the location
5528 of that state is guaranteed to be resolved, and that's enough. This
5529 fixes the remaining bug reported by Derek M. Jones in
5530 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
5531 * tests/glr-regression.at (Uninitialized location when reporting
5532 ambiguity): Test the above case.
5533 Also, the embedded comments in this test case claim it checks the case
5534 of an empty RHS that has inherited the initial location. However, the
5535 corresponding LHS was already resolved, so yyresolveLocations didn't
5536 actually have reason to modify it. Fix this by forcing
5537 nondeterministic operation at the beginning of the parse.
5538
5539 2006-05-20 Paul Eggert <eggert@cs.ucla.edu>
5540
5541 * data/c.m4 (b4_yy_symbol_print_generate):
5542 (b4_yy_symbol_print_generate): Use 'YYSTYPE const' rather than
5543 'const YYSTYPE', and similarly for YYLTYPE. This fixes one
5544 of the bugs reported today by Derek M Jones in
5545 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
5546 * doc/bison.texinfo (Value Type): Document that YYSTYPE must be
5547 defined to be a type name without parens or brackets.
5548 (Location Type): Similarly for YYLTYPE.
5549 * tests/regression.at (Trivial grammars): Put in a test for this
5550 bug that will be caught by 'make maintainer-check' (though not,
5551 alas, by 'make check' unless your compiler is picky).
5552
5553 2006-05-19 Paul Eggert <eggert@cs.ucla.edu>
5554
5555 * NEWS: Version 2.2.
5556 * configure.ac (AC_INIT): Likewise.
5557
5558 2006-05-17 Joel E. Denny <jdenny@ces.clemson.edu>
5559
5560 * data/glr.c (yyreportTree): Make room in yystates for the state
5561 preceding the RHS. This fixes the segmentation fault reported by Derek
5562 M. Jones in
5563 <http://lists.gnu.org/archive/html/help-bison/2006-05/msg00035.html>.
5564 (yyreportTree, yypdumpstack): Subtract 1 from yyrule before printing
5565 to the user. Reported for yyreportTree by Derek M. Jones later in the
5566 same thread.
5567 * THANKS: Add Derek M. Jones.
5568 Update my email address.
5569 Fix typo in Steve Murphy's name.
5570
5571 2006-05-14 Paul Eggert <eggert@cs.ucla.edu>
5572
5573 * data/glr.c (yyreportSyntaxError): Fix off-by-one error in
5574 checking against YYLAST that caused the parser to miss a potential
5575 alternative in its diagnostic.
5576 Problem reported by Maria Jose Moron Fernandez in
5577 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00024.html>.
5578 * data/lalr1.cc (yysyntax_error_): Likewise.
5579 * data/yacc.c (yysyntax_error): Likewise.
5580 * tests/regression.at (_AT_DATA_DANCER_Y): Use static array for
5581 tokens, in case we run into an older C compiler.
5582 (_AT_DATA_EXPECT2_Y, AT_CHECK_EXPECT2): New macros.
5583 Use them to check for the off-by-one error fixed above.
5584
5585 * data/yacc.c (yytnamerr): Fix typo: local var should be of type
5586 YYSIZE_T, not size_t.
5587 * tests/regression.at (Trivial grammars): New test, to catch
5588 the error fixed by the above patch.
5589
5590 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
5591
5592 * doc/bison.texinfo (C++ Bison Interface): Clarify the naming
5593 scheme.
5594 Reported by Steve Murphy.
5595
5596 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
5597
5598 * data/glr.cc, data/lalr1.cc: Using %defines is mandatory.
5599 * data/glr.cc: b4_location_flag is now b4_locations_flag.
5600
5601 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
5602
5603 Implement --trace=m4.
5604 * src/getargs.c (trace_types, trace_args): Accept trace_m4.
5605 * src/output.c (output_skeleton): When set, pass -dV to m4.
5606
5607 Factor the handling of flags in m4.
5608 * src/output.c (prepare): Rename the muscle names debug, defines,
5609 error_verbose to debug_flag, defines_flag, error_verbose_flag.
5610 * data/c.m4: Adjust.
5611 (_b4_define_flag_if, b4_define_flag_if, b4_defines_if): New.
5612 Use b4_define_flag_if to define other b4_FLAG_if macros.
5613 (b4_location_if): As a consequence, rename as...
5614 (b4_locations_if): this, for consistency.
5615 Adjust all the skeletons.
5616
5617 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
5618
5619 * etc/bench.pm: Shorten bench names.
5620
5621 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
5622
5623 * src/output.h, src/output.c (error_verbose): Move to...
5624 * src/getargs.h, src/getargs.c: here.
5625 Sort the flags.
5626 Adjust dependencies.
5627
5628 2006-05-13 Paul Eggert <eggert@cs.ucla.edu>
5629
5630 * data/c.m4 (b4_copyright): Put the special exception for Bison
5631 skeletons here, so we don't have to put it in each skeleton. All
5632 uses changed. Suggested by Akim Demaille. Also, wrap the
5633 copyright notice, in case it is longer than 80 columns. Replace
5634 comma by newline after title.
5635
5636 2006-05-11 Paul Eggert <eggert@cs.ucla.edu>
5637
5638 * doc/bison.texinfo (Calc++ Scanner): The flex behavior is an
5639 incompatibility, not a bug. Mention that it wasn't fixed as of
5640 flex 2.5.33.
5641
5642 2006-05-11 Akim Demaille <akim@lrde.epita.fr>
5643
5644 * examples/extexi: Enforce the precedence of concatenation over
5645 >>.
5646 Reported by Tommy Nordgren.
5647
5648 2006-05-11 Akim Demaille <akim@lrde.epita.fr>
5649
5650 * data/lalr1.cc (yytranslate_): Rename token as t to avoid clashes
5651 with the member "token".
5652 Reported by Martin Nylin.
5653
5654 2006-05-08 Paul Eggert <eggert@cs.ucla.edu>
5655
5656 * data/glr.c: Switch to Bison 2.2 special-exception language in
5657 the copyright notice. Use more-regular format for titles and
5658 copyright notices.
5659 * data/glr.cc: Likewise.
5660 * data/location.cc: Likewise.
5661 * data/yacc.cc: Likewise.
5662 * doc/bison.texinfo (Conditions): Document this.
5663 * NEWS: likewise. Upgrade version to 2.2.
5664
5665 2006-04-27 Akim Demaille <akim@lrde.epita.fr>
5666
5667 * data/glr.cc: Remove dead code.
5668
5669 2006-04-25 Paul Eggert <eggert@cs.ucla.edu>
5670
5671 * bootstrap: Comment out the AM_CPPFLAGS line, since we don't use
5672 that variable and the line breaks the bootstrap. Problem reported
5673 by Juan M. Guerrero.
5674
5675 2006-04-24 Akim Demaille <akim@lrde.epita.fr>
5676
5677 * doc/bison.texinfo (Multiple start-symbols): New.
5678
5679 2006-04-24 Akim Demaille <akim@lrde.epita.fr>
5680
5681 * etc/README, etc/bench.pl: New.
5682
5683 2006-04-03 Akim Demaille <akim@lrde.epita.fr>
5684
5685 * src/scan-gram.l: Be robust to BRACED_CODE appearing before any
5686 rule.
5687 Reported by Mickael Labau.
5688 * tests/input.at (Torturing the Scanner): Test it.
5689
5690 2006-03-16 Paul Eggert <eggert@cs.ucla.edu>
5691
5692 * doc/bison.texinfo (Decl Summary): Don't mention yylloc twice.
5693 Problem reported by Bob Rossi.
5694
5695 2006-03-13 Paul Eggert <eggert@cs.ucla.edu>
5696
5697 * doc/bison.texinfo: Remove @shorttitlepage stuff; it wasn't used
5698 and didn't really work.
5699 For the index, use @ifnotinfo, not @iftex.
5700 Minor cleanups of spacing and terminology.
5701
5702 2006-03-12 Akim Demaille <akim@lrde.epita.fr>
5703
5704 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Fix the definition
5705 of AT_NAME_PREFIX when %name-prefix is not used.
5706
5707 2006-03-12 Akim Demaille <akim@lrde.epita.fr>
5708
5709 Apply --prefix to C++ skeletons too: they change the namespace.
5710 The test suite already exercize these cases.
5711 * data/c++.m4 (b4_namespace): New.
5712 * data/lalr1.cc, data/glr.cc, data/location.cc: Use it instead of `yy'.
5713 * data/lalr1.cc (yytnameerr_): Move its definition into the namespace.
5714 * data/yacc.c, data/glr.c: Remove a useless `[]'.
5715 * doc/bison.texinfo: Document it.
5716 (Option Cross Key): Use @multitable in all formats. It looks
5717 nicer, even in TeX outputs.
5718 (Rules): Use the same code whatever the output type is.
5719 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS)
5720 (_AT_BISON_OPTION_POPDEFS): Support AT_NAME_PREFIX.
5721 * tests/calc.at: Use it, instead of hard coding `yy'.
5722
5723 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
5724
5725 * TODO: Remove dead items.
5726
5727 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
5728
5729 * doc/FAQ: Remove, merged into...
5730 * doc/bison.texinfo (FAQ): this.
5731 * doc/Makefile.am (EXTRA_DIST): Adjust.
5732
5733 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
5734
5735 * data/c.m4 (b4_token_enum): Always define the enum of tokens,
5736 even if empty.
5737 * data/lalrl1.cc, data/glr.cc (parser::token_type): New.
5738 * doc/bison.texinfo (Calc++ Scanner): Use it.
5739
5740 2006-03-09 Paul Eggert <eggert@cs.ucla.edu>
5741
5742 Fix two nits reported by twlevo, plus one more that I discovered.
5743
5744 * src/assoc.h (assoc_to_string): Give a name to the arg, as
5745 this is the usual Bison style.
5746 * src/location.h (location_print): Likewise.
5747
5748 * src/reader.h (token_name): Likewise.
5749
5750 2006-03-08 Paul Eggert <eggert@cs.ucla.edu>
5751
5752 Fix some nits reported by twlevo.
5753 * doc/FAQ: Remove ancient Y2K FAQ, replacing it with "secure"
5754 and "POSIX". Use more-modern syntax for URLs. Mention C++
5755 and ask for Java. Don't hardwire OS version numbers. Add
5756 copyright notice.
5757 * m4/.cvsignore: Add unistd_h.m4, for latest gnulib.
5758 * src/conflicts.c (solved_conflicts_obstack): Now static.
5759
5760 2006-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
5761
5762 * doc/bison.texinfo (Introduction): Mention GLR and C++ as on the web
5763 page. Say "you can use it" not "you may use it" as on the web page;
5764 we're describing capabilities not granting permission.
5765
5766 2006-03-06 Paul Eggert <eggert@cs.ucla.edu>
5767
5768 * data/glr.c (yyresolveLocations): Rename local variables to avoid
5769 shadowing warnings. Use usual patter for iterating through RHS.
5770 * tests/glr-regression.at
5771 (Uninitialized location when reporting ambiguity):
5772 Modify yylex so that it uses its argument, rather than trying
5773 to rely on ARGSUSED (which doesn't work for gcc with warnings).
5774 const char -> char const.
5775
5776 * tests/Makefile.am ($(srcdir)/package.m4, maintainer-check-valgrind):
5777 Don't use tabs inside commands; it messes up 'ps'.
5778 Problem reported by twlevo.
5779
5780 2006-03-06 Joel E. Denny <jdenny@ces.clemson.edu>
5781
5782 * tests/glr-regression.at (Uninitialized location when reporting
5783 ambiguity): New test case.
5784 * data/glr.c (yyresolveLocations): New function, which uses
5785 YYLLOC_DEFAULT.
5786 (yyresolveValue): Invoke yyresolveLocations before reporting an
5787 ambiguity.
5788 * doc/bison.texinfo (Default Action for Locations): Note
5789 YYLLOC_DEFAULT's usage for ambiguity locations.
5790 (GLR Semantic Actions): Cross-reference those notes.
5791
5792 2006-03-04 Joel E. Denny <jdenny@ces.clemson.edu>
5793
5794 * tests/glr-regression.at (Leaked semantic values when reporting
5795 ambiguity): Remove unnecessary union and type declarations.
5796 (Leaked lookahead after nondeterministic parse syntax error): New test
5797 case.
5798 * data/glr.c (yyparse): Check for zero stacks remaining before
5799 attempting to shift the lookahead so that you don't lose it.
5800
5801 2006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
5802
5803 Avoid memory leaks by not invoking longjmp in yyreportAmbiguity.
5804 * tests/glr-regression.at (Leaked semantic values when reporting
5805 ambiguity): New test case.
5806 * data/glr.c (yyreportAmbiguity): Invoke yyyerror directly and return
5807 yyabort rather than invoking yyFail, which invokes longjmp. Remove the
5808 now unnecessary yystackp parameter.
5809 (yyresolveValue): Return yyreportAmbiguity's result. Now the necessary
5810 destructors can be called.
5811
5812 * tests/glr-regression.at: Don't invoke bison with `-t' unnecessarily
5813 in existing testcases.
5814
5815 2006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
5816
5817 Don't leak semantic values for parent RHS when a user action cuts the
5818 parser, and clean up related code a bit.
5819 * tests/glr-regression.at (Leaked merged semantic value if user action
5820 cuts parse): Rename to...
5821 (Leaked semantic values if user action cuts parse): ... this. Add check
5822 for leaked parent RHS values.
5823 * data/glr.c (yydestroyGLRState): In debugging output, distinguish
5824 between an unresolved state (non-empty chain of semantic options) and
5825 an incomplete one (signaled by an empty chain).
5826 (yyresolveStates): Document the interface. Move all manipulation of a
5827 successfully or unsuccessfully resolved yyGLRState to...
5828 (yyresolveValue): ... here so that yyresolveValue always leaves a
5829 yyGLRState with consistent data and thus is easier to understand.
5830 Remove the yyvalp and yylocp parameters since they are always just
5831 taken from the yys parameter. When reporting a discarded merged value
5832 in debugging output, note that it is incompletely merged. Document the
5833 interface.
5834 (yyresolveAction): If resolving any of the RHS states fails, destroy
5835 them all rather than leaking them. Thus, as long as user actions are
5836 written to clean up the RHS correctly, yyresolveAction always cleans up
5837 the RHS of a semantic option. Document the interface.
5838
5839 2006-02-27 Paul Eggert <eggert@cs.ucla.edu>
5840
5841 * data/glr.c (yyexpandGLRStack): Catch an off-by-one error that
5842 led to a segmentation fault in GNU Pascal. Problem reported
5843 by Waldek Hebisch.
5844
5845 2006-02-21 Joel E. Denny <jdenny@ces.clemson.edu>
5846
5847 * doc/bison.texinfo (Mid-Rule Actions): Explain how to bury a
5848 mid-rule action inside a nonterminal symbol in order to declare a
5849 destructor for its semantic value.
5850
5851 2006-02-16 Paul Eggert <eggert@cs.ucla.edu>
5852
5853 * data/yacc.c [(! defined yyoverflow || YYERROR_VERBOSE) && !
5854 YYSTACK_USE_ALLOCA && ! defined YYSTACK_ALLOC && defined
5855 __cplusplus && ! defined _STDLIB_H && !
5856 ((defined YYMALLOC || defined malloc) && (defined YYFREE ||
5857 defined free))]: Include <stdlib.h> rather than rolling our own
5858 declarations of malloc and free, to avoid problems with
5859 incompatible declarations (using 'throw') C++'s stdlib.h. This
5860 should fix Debian bug 340012
5861 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=340012>,
5862 reported by Guillaume Melquiond.
5863
5864 2006-02-13 Paul Eggert <eggert@cs.ucla.edu>
5865
5866 * NEWS: Clarify symbols versus types in unused-value warnings.
5867
5868 * configure.ac (AC_INIT): Bump version number.
5869
5870 2006-02-13 Paul Eggert <eggert@cs.ucla.edu>
5871
5872 * NEWS: Version 2.1a.
5873 * tests/headers.at (AT_TEST_CPP_GUARD_H): Declare yyerror and yylex,
5874 since C99 requires this.
5875
5876 2006-02-11 Paul Eggert <eggert@cs.ucla.edu>
5877
5878 * m4/c-working.m4: New file.
5879 * configure.ac (BISON_TEST_FOR_WORKING_C_COMPILER): Use it.
5880
5881 2006-02-10 Paul Eggert <eggert@cs.ucla.edu>
5882
5883 * Makefile.maint: Merge from coreutils.
5884
5885 2006-02-09 Paul Eggert <eggert@cs.ucla.edu>
5886
5887 More portability fixes for problems summarized by Nelson H. F. Beebe.
5888
5889 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Catch a
5890 configuration screwup "./configure CC=/opt/SUNWspro/bin/c89
5891 CFLAGS="-xarch=generic64" CXX=/opt/SUNWspro/bin/CC
5892 LDFLAGS="-xarch=generic64" with Sun C 5.7 on Solaris 10; this
5893 messes up because C++ code is compiled in 32-bit mode but linked
5894 in 64-bit mode.
5895
5896 2006-02-08 Paul Eggert <eggert@cs.ucla.edu>
5897
5898 More portability fixes for problems summarized by Nelson H. F. Beebe.
5899
5900 * doc/bison.texinfo (Calc++ Scanner): Work around a bug in flex
5901 2.5.31. This resembles the 2005-10-10 patch to src/scan-skel.l.
5902
5903 * examples/calc++/Makefile.am (check_PROGRAMS): Renamed from
5904 nodist_PROGRAMS, since we don't need to actually compile the
5905 example if we're just doing a plain 'make'. This avoids bothering
5906 the installer unnecessarily about problems due to weird C++
5907 compilers.
5908
5909 2006-02-06 Paul Eggert <eggert@cs.ucla.edu>
5910
5911 More portability fixes for problems summarized by Nelson H. F. Beebe.
5912
5913 * tests/headers.at (AT_TEST_CPP_GUARD_H): Use #include <...> rather
5914 than #include "...", and compile with -I'.'. The old method was
5915 not portable, according to Posix and the C standard, and it does
5916 not work with Sun C 5.7, where previous #line directives affect
5917 the working directory used in later #include "..." directives.
5918
5919 2006-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
5920
5921 Various DJGGP specific issues in /djgpp
5922
5923 2006-02-02 Paul Eggert <eggert@cs.ucla.edu>
5924
5925 More portability fixes for problems summarized by Nelson H. F. Beebe.
5926
5927 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check that
5928 '#include <map>' works and that you can apply ++ to iterators.
5929
5930 2006-02-01 Paul Eggert <eggert@cs.ucla.edu>
5931
5932 Work around portability problems summarized by Nelson H. F. Beebe in
5933 <http://lists.gnu.org/archive/html/bug-bison/2005-09/msg00021.html>.
5934
5935 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
5936 that '#include <string>' works.
5937
5938 * data/lalr1.cc (yytranslate_): No longer inline, to work around a
5939 porting problem to g++ 3.4.3 on Darwin 7.9.0, where g++ complained
5940 "warning: sorry: semantics of inline function static data `const
5941 unsigned char translate_table[262]' are wrong (you'll wind up with
5942 multiple copies)".
5943
5944 * lib/bbitset.h (struct bitset_vtable): Rename members not, and,
5945 or, xor to not_, and_, or_, and xor_, respectively. This works
5946 around a bug in GCC 3.4.3 on Irix 6.5, which apparently has a
5947 random system header somewhere that includes the equivalent of
5948 <iso646.h>.
5949
5950 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that "$CC
5951 -E" works; it apparently doesn't work with PathScale EKO Compiler
5952 Suite Version 2.0.
5953
5954 2006-01-30 Joel E. Denny <jdenny@ces.clemson.edu>
5955
5956 During deterministic GLR operation, user actions should be able to
5957 influence the parse by changing yychar. To make this easier to fix and
5958 to make glr.c easier to evolve in general, don't maintain yytoken in
5959 parallel with yychar; just compute yytoken when needed.
5960 * tests/glr-regression.at (Incorrect lookahead during deterministic
5961 GLR): Check that setting yychar in a user action has the intended
5962 effect.
5963 * data/glr.c (yyGLRStack): Remove yytokenp member.
5964 (yyclearin): Don't set *yytokenp.
5965 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Examine
5966 yychar rather than *yytokenp to determine the current lookahead.
5967 Compute yytoken locally when needed.
5968 (yyparse): Likewise. Remove the local yytoken that yytokenp used to
5969 point to.
5970
5971 * doc/bison.texinfo (Bison Options): Remove stray sentence fragment
5972 after `--report' documentation.
5973
5974 2006-01-30 Paul Eggert <eggert@cs.ucla.edu>
5975
5976 * src/parse-gram.y (grammar_declaration): Location of printer
5977 symbol is @1, not list->location. Bug reported by twlevo.
5978 * tests/input.at (Incompatible Aliases): Adjust to above change.
5979
5980 2006-01-29 Paul Eggert <eggert@cs.ucla.edu>
5981
5982 * tests/input.at (AT_CHECK_UNUSED_VALUES): Remove. Instead, do
5983 all the test at once. This makes the output easier to read in the
5984 normal case.
5985
5986 Fix a longstanding bug uncovered by bro-0.9a9/src/parse.y, which I
5987 got from <http://bro-ids.org/download.html>. The bug is that
5988 when two actions appeared in succession, the second one was
5989 scanned before the first one was added to the grammar rule
5990 as a midrule action. Bison then output the incorrect warning
5991 "parse.y:905.17-906.36: warning: unused value: $3".
5992 * src/parse-gram.y (BRACED_CODE, action): These are no longer
5993 associated with a value.
5994 (rhs): Don't invoke grammar_current_rule_action_append.
5995 (action): Invoke it here instead.
5996 * src/reader.c (grammar_midrule_action): Now extern.
5997 (grammar_current_rule_action_append): Don't invoke
5998 grammar_midrule_action; that is now the scanner's job.
5999 * src/reader.h (last_string, last_braced_code_loc):
6000 (grammar_midrule_action): New decls.
6001 * src/scan-gram.l (last_string): Now extern, sigh.
6002 (last_braced_code_loc): New extern variable.
6003 (<INITIAL>"{"): Invoke grammar_midrule_action if the current
6004 rule already has an action.
6005 (<SC_BRACED_CODE>"}"): Set last_braced_code_loc before returning.
6006 * tests/input.at (AT_CHECK_UNUSED_VALUES):
6007 Add some tests to check that the above changes fixed the bug.
6008
6009 2006-01-27 Paul Eggert <eggert@cs.ucla.edu>
6010
6011 * src/reader.c (symbol_should_be_used): Renamed from symbol_typed_p.
6012 All used changed. Check whether the symbol has a destructor,
6013 not whether it is typed.
6014 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add a destructor, so
6015 that the values are still reported as unused. All line numbers
6016 adjusted.
6017
6018 2006-01-23 Paul Eggert <eggert@cs.ucla.edu>
6019
6020 Work around a bug in bro 0.8, which underparenthesizes its
6021 definition of YYLLOC_DEFAULT.
6022 * data/glr.c: Change all uses of YYLLOC_DEFAULT to parenthesize
6023 their arguments.
6024 * data/lalr1.cc: Likewise.
6025 * data/yacc.cc: Likewise.
6026
6027 2006-01-22 Paul Eggert <eggert@cs.ucla.edu>
6028
6029 Work around a bug in Pike 7.0, and give the Pike folks a
6030 better way to override the usual int widths.
6031 * data/yacc.c (b4_int_type): Use yytype_uint8, etc., so that the
6032 user can override the types.
6033 (short): #undef, to work around a bug in Pike 7.0.
6034 (yytype_uint8, yytype_int8, yytype_uint16, yytype_int16): New types.
6035 (union yyalloc.yyss): Use yytype_int16 rather than short.
6036 All uses changed.
6037 (yysigned_char): Remove.
6038 * src/parse-gram.y (YYTYPE_UINT8, YYTYPE_INT8, YYTYPE_UINT16):
6039 (YYTYPE_INT16): New macros, to test the new facility in yacc.c.
6040 * tests/regression.at (Web2c Actions): Adjust to above changes.
6041
6042 * src/reader.c (check_and_convert_grammar): New function.
6043 (reader): Close the input file even if something went wrong during
6044 parsing. Minor file descriptor leak reported by twlevo.
6045
6046 * src/assoc.c (assoc_to_string): Use a default: abort (); case
6047 to pacify gcc -Wswitch-default.
6048 * src/scan-gram.l (adjust_location): Use a default: break; case
6049 to pacify gcc -Wswitch-default.
6050 * src/scan-skel.h (skel_get_lineno, skel_get_in, skel_get_out):
6051 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
6052 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
6053 Move these decls to scan-skel.l, since they don't need to be
6054 visible elsewhere.
6055 * src/scan-skel.l: Accept the above decls.
6056 (skel_lex): New decl, to pacify GCC when unpatched flex 2.5.31
6057 is used.
6058
6059 2006-01-21 Paul Eggert <eggert@cs.ucla.edu>
6060
6061 * Makefile.cfg (local-checks-to-skip): Add changelog-check,
6062 since we don't want to insist on a version number at the start
6063 of the changelog every time.
6064 * Makefile.maint: Sync from coreutils a bit better.
6065 (sc_trailing_blank): Renamed from sc_trailing_space.
6066 All uses changed.
6067 (sc_no_if_have_config_h, sc_require_config_h):
6068 (sc_prohibit_assert_without_use): New rules.
6069 (sc_obsolete_symbols): Don't catch Makefile.maint itself.
6070 (sc_dd_max_sym_length): Fix leading spaces in rule.
6071 (sc_system_h_headers): Prefix with @.
6072 (sc_useless_cpp_parens, m4-check): Output line numbers.
6073 (changelog-check): Allow version only in head.
6074 * data/c.m4: Use "defined FOO" instead of "defined (FOO)", to
6075 satisfy new Makefile.maint rule.
6076 * data/glr.c: Likewise.
6077 * data/glr.cc: Likewise.
6078 * data/lalr1.cc: Likewise.
6079 * data/yacc.c: Likewise.
6080 * lib/ebitsetv.c: Likewise.
6081 * lib/lbitset.c: Likewise.
6082 * lib/subpipe.c: Likewise.
6083 * lib/timevar.c: Likewise.
6084 * src/system.h: Likewise.
6085 * data/yacc.c (YYSTYPE): Don't generate trailing spaces in output.
6086 * djgpp/Makefile.maint: Add copyright notice.
6087 * djgpp/README.in: Likewise.
6088 * djgpp/config.bat: Likewise.
6089 * djgpp/config.site: Likewise.
6090 * djgpp/config_h.sed: Likewise.
6091 * djgpp/djunpack.bat: Likewise.
6092 * djgpp/config.sed: Fix copyright notice to match standard format.
6093 * djgpp/subpipe.h: Likewise.
6094 * lib/bitsetv-print.c: Likewise.
6095 * lib/bitsetv.c: Likewise.
6096 * lib/subpipe.h: Likewise.
6097 * lib/timevar.c: Likewise.
6098 * lib/timevar.h: Likewise.
6099 * djgpp/subpipe.c: Use standard recipe for config.h.
6100 * lib/abitset.c: Likewise.
6101 * lib/bitset.c: Likewise.
6102 * lib/bitset_stats.c: Likewise.
6103 * lib/bitsetv-print.c: Likewise.
6104 * lib/bitsetv.c: Likewise.
6105 * lib/ebitsetv.c: Likewise.
6106 * lib/get-errno.c: Likewise.
6107 * lib/lbitset.c: Likewise.
6108 * lib/subpipe.c: Likewise.
6109 * lib/timevar.c: Likewise.
6110 * lib/vbitset.c: Likewise.
6111 * tests/local.at: Likewise.
6112 * src/scan-gram.l: Don't include verify.h, since system.h does
6113 that for us.
6114 * .x-sc_require_config_h: New file.
6115 * .x-sc_unmarked_diagnostics: New file.
6116
6117 2006-01-20 Paul Eggert <eggert@cs.ucla.edu>
6118
6119 Be a bit more systematic about using 'abort'.
6120 * lib/abitset.c (abitset_test): Remove ATTRIBUTE_UNUSED; not needed.
6121 * lib/bitset.c (bitset_bytes, bitset_init, bitset_op4_cmp):
6122 Put 'default: abort ();' before some other case, to satisfy older
6123 pedantic compilers.
6124 * lib/bitset_stats.c (bitset_stats_init): Likewise.
6125 * lib/ebitset.c (ebitset_elt_find, ebitset_op3_cmp): Likewise.
6126 * lib/lbitset.c (lbitset_elt_find, lbitset_op3_cmp): Likewise.
6127 * src/conflicts.c (resolve_sr_conflict): Likewise.
6128 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str):
6129 (get_decision_str, get_orientation_str, get_node_alignment_str):
6130 (get_arrow_mode_str, get_crossing_type_str, get_view_str):
6131 (get_linestyle_str, get_arrowstyle_str): Likewise.
6132 * src/conflicts.c (resolve_sr_conflict):
6133 Use a default case rather than one for the one remaining enum
6134 value, to catch invalid enum values as well.
6135 * src/lalr.c (set_goto_map, map_goto):
6136 Prefer "assert (FOO);" to "if (!FOO) abort ();".
6137 * src/nullable.c (nullable_compute, token_definitions_output):
6138 Likewise.
6139 * src/reader.c (packgram, reader): Likewise.
6140 * src/state.c (transitions_to, state_new, state_reduction_find):
6141 Likewise.
6142 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias):
6143 (symbol_pack): Likewise.
6144 * src/tables.c (conflict_row, pack_vector): Likewise.
6145 * src/scan-skel.l (QPUTS): Remove unnecessary parens.
6146 (BASE_QPUTS, "@output ".*\n): Remove unnecessary asserts.
6147 * src/system.h: Don't include <assert.h>.
6148 (assert): New macro.
6149
6150 * doc/bison.texinfo (Prologue, Rules, Actions, Union Decl, Action Decl):
6151 (Destructor Decl, Parser Function, Pure Calling):
6152 Describe rules for braces inside C code more carefully.
6153
6154 2006-01-19 Paul Eggert <eggert@cs.ucla.edu>
6155
6156 Fix some porting glitches found by Nelson H. F. Beebe.
6157 * lib/abitset.c (abitset_resize): Rewrite to avoid warnings from
6158 compilers that don't understand that abort () does not return.
6159 * src/state.c (transitions_to): Likewise.
6160 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
6161 that '#include <cstdlib>' works.
6162 * src/system.h (INT8_MIN, INT16_MIN, INT32_MIN, INT8_MAX):
6163 (INT16_MAX, UINT8_MAX, INT32_MAX, UINT16_MAX, UINT32_MAX):
6164 #undef if ! defined __STDC_VERSION__ || __STDC_VERSION__ < 199901,
6165 for the benefit of some pre-C99 compilers.
6166
6167 * bootstrap: Undo changes to gnulib files that autoreconf made.
6168
6169 Minor fixups to get 'make maintainer-check' to work.
6170 * configure.ac: Don't use -Wnested-externs, as it's incompatible
6171 with the new verify.h implementation.
6172 * data/c.m4 (b4_yy_symbol_print_generate): YYUSE (yyoutput).
6173 * data/glr.c (YYUSE): Depend on __GNUC__ as well.
6174 * data/yacc.c (YYUSE): Likewise.
6175 * data/lalr1.cc (yysyntax_error_): YYUSE (yystate).
6176 * lib/subpipe.c (end_of_output_subpipe): The args are unused.
6177 * src/parse-gram.y (declaration): Don't pass a string constant
6178 to a function that expects char *, since GCC might complain
6179 about the constant value.
6180 * src/reader.c (symbol_typed_p): Add parens to pacify GCC.
6181 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): #undef yylloc and yylval
6182 before #defining them.
6183 * tests/glr-regression.at
6184 (Incorrectly initialized location for empty right-hand side in GLR):
6185 In yyerror, use the msg arg.
6186 (Corrupted semantic options if user action cuts parse):
6187 (Incorrect lookahead during deterministic GLR):
6188 (Incorrect lookahead during nondeterministic GLR):
6189 Don't name a local var 'index'; it shadows string.h's 'index'.
6190
6191 2006-01-19 Akim Demaille <akim@epita.fr>
6192
6193 * tests/calc.at (_AT_DATA_CALC_Y): Initialize the whole initial
6194 location, not just parts of it.
6195
6196 2006-01-18 Paul Eggert <eggert@cs.ucla.edu>
6197
6198 * NEWS: Document the fact that multiple %unions are now allowed.
6199 * doc/bison.texinfo (Union Decl): Likewise.
6200 * TODO: This feature is now implemented, so remove it from
6201 the wishlist.
6202
6203 * Makefile.maint: Merge with coreutils Makefile.maint.
6204 (CVS_LIST): Use build-aux version if available.
6205 (VERSION_REGEXP): New macro.
6206 (syntax-check-rules): Add sc_no_if_have_config_h,
6207 sc_prohibit_assert_without_use, sc_require_config_h,
6208 sc_useless_cpp_parens.
6209 (sc_obsolete_symbols): Check for O_NDELAY.
6210 (sc_dd_max_sym_length): Track coreutils.
6211 (sc_unmarked_diagnostics): Look in all files, not just *.c.
6212 (sc_useless_cpp_parens): New rule.
6213 (news-date-check): Look for version or today's date.
6214 (changelog-check): Don't require version number near head.
6215 (copyright-check): Use current year instead of hardwiring 2005.
6216 (my-distcheck): Depend on $(release_archive_dir)/$(prev-tgz).
6217 (announcement): Add --gpg-key-ID.
6218
6219 * djgpp/config.sed: Add copyright notice, and replace "filesystem"
6220 with "file system".
6221
6222 Avoid undefined behavior that addressed just before the start of an
6223 array. Problem reported by twlevo.
6224 * src/reader.c (packgram): Prepend a new sentinel before ritem.
6225 * src/lalr.c (build_relations): Rely on new sentinel.
6226 * src/gram.c (gram_free): Adjust to new sentinel.
6227
6228 2006-01-12 Joel E. Denny <jdenny@ces.clemson.edu>
6229
6230 * data/glr.c (yyGLRStateSet): Rename yylookaheadStatuses to
6231 yylookaheadNeeds. All uses updated.
6232 (yysplitStack): Rename local yynewLookaheadStatuses to
6233 yynewLookaheadNeeds.
6234 * data/glr-regression.at (Incorrect lookahead during nondeterministic
6235 GLR): In comments, change `lookahead status' to `lookahead need'.
6236
6237 2006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
6238
6239 * data/glr.c (yysplitStack): A little stylistic rewrite.
6240
6241 2006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
6242
6243 * data/glr.c (yyaddDeferredAction): Flesh out the comment.
6244
6245 2006-01-11 Joel E. Denny <jdenny@ces.clemson.edu>
6246
6247 * doc/bison.texinfo: Fix some typos.
6248 (GLR Semantic Actions): New subsection discussing special
6249 considerations because GLR semantic actions might be deferred.
6250 (Actions): Mention look-ahead usage of yylval.
6251 (Actions and Locations): Mention look-ahead usage of yylloc.
6252 (Special Features for Use in Actions): Add YYEOF entry and mention it
6253 in the yychar entry.
6254 In the yychar entry, remove mention of the local yychar case (pure
6255 parser) since this is irrelevant information when writing semantic
6256 actions and since it's already discussed in `Table of Symbols' where
6257 yychar is otherwise described as an external variable.
6258 In the yychar entry, don't call it the `current' look-ahead since it
6259 isn't when semantic actions are deferred.
6260 In the yychar and yyclearin entries, add note about deferred semantic
6261 actions.
6262 Add yylloc and yylval entries discussing look-ahead usage.
6263 (Look-Ahead Tokens): When discussing yychar, don't call it the
6264 `current' look-ahead, and do mention yylval and yylloc.
6265 (Error Recovery): Cross-reference `Action Features' when mentioning
6266 yyclearin.
6267 (Table of Symbols): In the yychar entry, don't call it the `current'
6268 look-ahead.
6269 In the yylloc and yylval entries, mention look-ahead usage.
6270
6271 2006-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
6272
6273 * tests/glr-regression.at: Update copyright year to 2006.
6274
6275 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
6276
6277 * data/glr.c (yyGLRStateSet): Add yybool* yylookaheadStatuses member to
6278 use during nondeterministic operation to track which stacks have
6279 actually needed the current lookahead.
6280 (yyinitStateSet, yyfreeStateSet, yyremoveDeletes, yysplitStack):
6281 Allocate, deallocate, resize, and otherwise shuffle space for
6282 yylookaheadStatuses in parallel with yystates member of yyGLRStateSet.
6283 (yysplitStack, yyprocessOneStack, yyparse): Set lookahead status
6284 appropriately during nondeterministic operation.
6285 (yySemanticOption): Add int yyrawchar, YYSTYPE yyval, and YYLTYPE yyloc
6286 members to store the current lookahead to be used by the deferred
6287 user action.
6288 (yyaddDeferredAction): Add size_t yyk parameter specifying the stack
6289 from which the RHS is taken. Set the lookahead members of the new
6290 yySemanticOption according to the lookahead status for stack yyk.
6291 (yyglrShiftDefer, yyglrReduce): Pass yyk parameter on to
6292 yyaddDeferredAction.
6293 (yyresolveAction): Set yychar, yylval, and yylloc to the lookahead
6294 members of yySemanticOption before invoking yyuserAction, and then set
6295 them back to their current values afterward.
6296 (yyparse): Set yychar = YYEMPTY where yytoken = YYEMPTY.
6297 (yyreportAmbiguity): Add /*ARGSUSED*/ to pacify lint.
6298 * tests/glr-regression.at: Remove `.' from the ends of recent test case
6299 titles for consistency.
6300 (Leaked merged semantic value if user action cuts parse): In order to
6301 suppress lint warnings, use arguments in merge function, and assign
6302 char value < 128 in main.
6303 (Incorrect lookahead during deterministic GLR): New test case.
6304 (Incorrect lookahead during nondeterministic GLR): New test case.
6305
6306 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
6307
6308 * data/c.m4 (b4_yy_symbol_print_generate): In yy_symbol_print, accept
6309 !yyvaluep as signal that no semantic value is available to print.
6310 * data/glr.c (yydestroyGLRState): If state is not resolved, don't try
6311 to print a semantic value.
6312
6313 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
6314
6315 * tests/glr-regression.at: For consistency with my newer test cases,
6316 don't thank myself.
6317
6318 2006-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
6319
6320 * data/glr.c (yyresolveValue): When merging semantic options, if at
6321 least one user action succeeds but a later one cuts the parse, then
6322 destroy the semantic value before returning rather than leaking it.
6323 (yyresolveStates): If a user action cuts the parse and thus
6324 yyresolveValue fails, ignore the (unset) semantic value rather than
6325 corrupting the yyGLRState, and empty the semantic options list since
6326 the user actions should have called all necessary destructors.
6327 Simplify code with YYCHK.
6328 * tests/glr-regression.at (Corrupted semantic options if user action
6329 cuts parse): New test case.
6330 (Undesirable destructors if user action cuts parse): New test case.
6331 Before applying any of this patch, this test case never actually failed
6332 for me... but only because the corrupted semantic options usually
6333 masked this bug.
6334 (Leaked merged semantic value if user action cuts parse): New test
6335 case.
6336
6337 2006-01-05 Akim Demaille <akim@epita.fr>
6338
6339 * src/reader.c, src/symlist.h, src/symlist.c: s/mid_rule/midrule/.
6340
6341 2006-01-04 Paul Eggert <eggert@cs.ucla.edu>
6342
6343 * data/c.m4 (b4_c_modern): New macro, with a new provision for
6344 _MSC_VER. Problem reported by Cenzato Marco.
6345 (b4_c_function_def): Use it.
6346 * data/yacc.c (YYMODERN_C): Remove. All uses replaced by
6347 b4_c_modern.
6348 (yystrlen, yystpcpy, yyparse): Use b4_c_function... macros rather
6349 than rolling our own.
6350
6351 2006-01-04 Akim Demaille <akim@epita.fr>
6352
6353 Also warn about non-used mid-rule values.
6354 * src/symlist.h, src/symlist.c (symbol_list): Add a mid_rule
6355 member.
6356 (symbol_list_new): Adjust.
6357 * src/reader.c (symbol_typed_p): New.
6358 (grammar_rule_check): Use it.
6359 (grammar_midrule_action): Bind a mid-rule LHS to its rule.
6360 Check its rule.
6361 * tests/input.at (AT_CHECK_UNUSED_VALUES): New.
6362 Use it.
6363 * tests/actions.at (Exotic Dollars): Adjust.
6364
6365 2006-01-04 Akim Demaille <akim@epita.fr>
6366
6367 * src/reader.c (grammar_midrule_action): If $$ is set in a
6368 mid-rule, move the `used' bit to its lhs.
6369 * tests/input.at (Unused values): New.
6370 * tests/actions.at (Exotic Dollars): Adjust: exp is not typed.
6371
6372 2006-01-03 Paul Eggert <eggert@cs.ucla.edu>
6373
6374 * doc/bison.texinfo (Bison Options): Say more accurately what
6375 --yacc does.
6376 * src/parse-gram.y (rules_or_grammar_declaration): Don't complain
6377 about declarations in the grammar when in Yacc mode, as POSIX does
6378 not require a diagnostic when the grammar uses extensions.
6379
6380 * src/reduce.c (reduce_grammar): Remove unnecessary cast to bool.
6381
6382 Warn about dubious constructions like "%token T T".
6383 Reported by twlevo.
6384 * src/symtab.h (struct symbol.declared): New member.
6385 * src/symtab.c (symbol_new): Initialize it to false.
6386 (symbol_class_set): New arg DECLARING, specifying whether
6387 this is a declaration that we want to warn about, if there
6388 is more than one of them. All uses changed.
6389
6390 * data/glr.c, data/glr.cc, data/lalr1.cc, data/yacc.c:
6391 Allow multiple %union directives, whose contents concatenate.
6392 * src/parse-gram.y (grammar_declaration): Likewise.
6393 Use muscle_code_grow, so that we don't need stype_line any more.
6394 All uses changed.
6395
6396 * src/muscle_tab.c (muscle_grow): Fix comment.
6397
6398 * ChangeLog, data/c.m4, data/glr.c, data/glr.cc, data/location.cc:
6399 * data/yacc.c, src/getargs.c, src/output.c, tests/cxx-type.at:
6400 Update copyright year to 2006.
6401
6402 2006-01-03 Akim Demaille <akim@epita.fr>
6403
6404 Have glr.cc pass (some of) the calc.at tests.
6405 * data/glr.cc (b4_parse_param_orig): New.
6406 (b4_parse_param): Improve its definition, and bound it more
6407 clearly in the skeleton.
6408 (b4_epilogue): Append, instead of prepending, in order to keep
6409 #line consistency.
6410 Simplify the generation of auxiliary functions: locations and
6411 purity are mandated.
6412 (b4_global_tokens_and_yystype): Honor it.
6413 * data/location.cc (c++.m4): Don't include it.
6414 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Define AT_GLR_CC_IF
6415 and AT_SKEL_CC_IF.
6416 * tests/calc.at (AT_CHECK_CALC): Rely on AT_SKEL_CC_IF instead of
6417 AT_LALR1_CC_IF.
6418 Be sure to initialize the first position's filename.
6419 (AT_CHECK_CALC_LALR1_CC): Add %location and %defines, they are
6420 mandated anyway.
6421 (AT_CHECK_CALC_GLR_CC): New.
6422 Use it to exercise glr.cc as a lalr1.cc drop-in replacement.
6423
6424 2006-01-02 Akim Demaille <akim@epita.fr>
6425
6426 * src/output.c (output_skeleton): Don't hard wire the inclusion of
6427 c.m4.
6428 * data/c++.m4, data/glr.c, data/yacc.c: Include c.m4.
6429 * data/glr.cc: Do not include stack.hh.
6430
6431 2006-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
6432
6433 * data/glr.c: Reformat whitespace with tabs.
6434 (b4_lpure_formals): Remove this unused m4 macro.
6435 * tests/cxx-type.at: Reformat whitespace with tabs.
6436 (_AT_TEST_GLR_CXXTYPES): In union Node, rename node_info to nodeInfo
6437 since it's a member. Rename type to isNterm for clarity.
6438
6439 2005-12-29 Akim <akim@sulaco.local>
6440
6441 Let glr.cc catch up with symbol_value_print.
6442 * data/glr.cc (b4_yysymprint_generate): Replace by...
6443 (b4_yy_symbol_print_generate): this.
6444 (yy_symbol_print, yy_symbol_value_print): Declare them.
6445
6446 2005-12-28 Paul Eggert <eggert@cs.ucla.edu>
6447
6448 * src/location.h (boundary): Note that a line or column equal
6449 to INT_MAX indicates an overflow.
6450 * src/scan-gram.l: Include verify.h. Don't include get-errno.h.
6451 (rule_length_overflow, increment_rule_length, add_column_width):
6452 New functions.
6453 (<INITIAL>{id}, <SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'"):
6454 (<SC_BRACED_CODE>"}"):
6455 Use increment_rule_length rather than incrementing it by hand.
6456 (adjust_location, handle_syncline): Diagnose overflow.
6457 (handle_action_dollar, handle_action_at):
6458 Fix bug with monstrosities like $-2147483648.
6459 Remove now-unnecessary checks.
6460 (scan_integer): Verify assumptions and remove now-unnecessary checks.
6461 (convert_ucn_to_byte): Verify assumptions.
6462 (handle_syncline): New arg LOC. All callers changed.
6463 Don't store through a value derived from char const * pointer.
6464
6465 * src/reader.c (grammar_rule_check): Rewrite slightly to avoid
6466 GCC warnings.
6467
6468 2005-12-27 Paul Eggert <eggert@cs.ucla.edu>
6469
6470 * src/reader.c (grammar_midrule_action, grammar_symbol_append):
6471 Remove unnecessary forward static decls.
6472
6473 2005-12-27 Akim Demaille <akim@epita.fr>
6474
6475 * src/reader.c (grammar_current_rule_check): Also check that $$
6476 is used.
6477 Take the rule to check as argument, hence rename as...
6478 (grammar_rule_check): this.
6479 * src/reader.h, src/reader.c (grammar_rule_begin, grammar_rule_end):
6480 Rename as...
6481 (grammar_rule_begin, grammar_rule_end): these, for consistency.
6482 (grammar_midrule_action, grammar_symbol_append): Now static.
6483 * tests/torture.at (input): Don't rely on the default action
6484 being always performed.
6485 * tests/calc.at: "Set" $$ even when the action is "cut" with
6486 YYERROR or other.
6487 * tests/actions.at (Exotic Dollars): Instead of using unused
6488 values, check that the warning is issued.
6489
6490 2005-12-22 Paul Eggert <eggert@cs.ucla.edu>
6491
6492 * NEWS: Improve wording for unused-value warnings.
6493
6494 2005-12-22 Akim Demaille <akim@epita.fr>
6495
6496 * data/lalr1.cc, data/yacc.c, data/glr.c, data/c.m4
6497 (b4_yysymprint_generate): Rename as...
6498 (b4_yy_symbol_print_generate): this.
6499 Generate yy_symbol_print instead of yysymprint.
6500 Generate also yy_symbol_value_print, and use it.
6501
6502 2005-12-22 Akim Demaille <akim@epita.fr>
6503
6504 * NEWS: Warn about unused values.
6505 * src/symlist.h, src/symlist.c (symbol_list, symbol_list_new): Add
6506 a `used' member.
6507 (symbol_list_n_get, symbol_list_n_used_set): New.
6508 (symbol_list_n_type_name_get): Use symbol_list_n_get.
6509 * src/scan-gram.l (handle_action_dollar): Flag used symbols.
6510 * src/reader.c (grammar_current_rule_check): Check that values are
6511 used.
6512 * src/symtab.c (symbol_print): Accept 0.
6513 * tests/existing.at: Remove the type information.
6514 Empty the actions.
6515 Remove useless actions (beware of mid-rule actions: perl -000
6516 -pi -e 's/\s*\{\}(?=[\n\s]*[|;])//g').
6517 * tests/actions.at (Exotic Dollars): Use unused values.
6518 * tests/calc.at: Likewise.
6519 * tests/glr-regression.at (No users destructors if stack 0 deleted):
6520 Likewise.
6521
6522 * src/gram.c (rule_useful_p, rule_never_reduced_p): Use
6523 rule_useful_p.
6524
6525 2005-12-21 Paul Eggert <eggert@cs.ucla.edu>
6526
6527 Undo 2005-12-01 tentative license wording change. The wording is
6528 still being reviewed by the lawyers, and we don't want to wait for
6529 them before publishing a test release. For now, revert to the
6530 previous wording.
6531 * NEWS: Undo 2005-12-01 change.
6532 * data/glr.c: Revert to previous license wording.
6533 * data/glr.cc: Likewise.
6534 * data/lalr1.cc: Likewise.
6535 * data/location.cc: Likewise.
6536 * data/yacc.c: Likewise.
6537
6538 * NEWS: Reword %destructor vs YYABORT etc.
6539 * data/glr.c: Use American spacing, for consistency.
6540 * data/glr.cc: Likewise.
6541 * data/lalr1.cc: Likewise.
6542 * data/yacc.c: Likewise.
6543 * data/yacc.c: Reformat comments slightly.
6544 * doc/bison.texinfo: Replace "non-" with "non" when that makes sense,
6545 for consistency. Fix some spelling errors and reword recently-included
6546 text slightly.
6547 * tests/cxx-type.at: Cast results of malloc, for C++.
6548
6549 2005-12-21 Joel E. Denny <address@hidden>
6550
6551 * tests/cxx-type.at: Construct a tree, count the parents of shared
6552 nodes, and free each node once and only once. Previously, the memory
6553 for semantic values was leaked instead.
6554
6555 2005-12-21 Joel E. Denny <address@hidden>
6556
6557 * data/glr.c (struct yyGLRStack): If pure, add yyval and yyloc members.
6558 (yylval, yylloc): If pure, #define to yystackp->yyval and
6559 yystackp->yyloc similar to yychar and yynerrs.
6560 (yyparse): If pure, remove local yylval and yylloc. Add local
6561 yystackp to accommodate pure definitions of yylval and yylloc.
6562 (b4_lex_param, b4_lyyerror_args, b4_lpure_args): If pure, change
6563 yylvalp and yyllocp to &yylval and &yylloc.
6564 (nerrs, char, lval, lloc): If pure, add #define's for b4_prefix[]
6565 namespace. Previously, nerrs and char were missing, but lval and lloc
6566 weren't necessary.
6567 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Remove
6568 yylvalp and yyllocp parameters since, if pure, these are now always
6569 accessible through yystackp. If not pure, they are still accessible
6570 globally.
6571 * data/glr.c, data/yacc.c (YYLLOC_DEFAULT): Change `if (N)' to
6572 `if (YYID (N))' to pacify lint.
6573
6574 2005-12-21 Akim Demaille <akim@epita.fr>
6575
6576 YYACCEPT, YYERROR, and YYABORT, as user actions, should not
6577 destroy the RHS symbols of a rule.
6578 * data/yacc.c (yylen): Initialize to 0.
6579 Keep its value to the number of items to possibly shift.
6580 In particular, a regular successful parse that ends on YYFINAL by
6581 a (internal) YYACCEPT must not have yylen != 0.
6582 (yyerrorlab, yyreturn): Pop the RHS.
6583 Reorder a bit to emphasize the `shifting' bits of code.
6584 (YYPOPSTACK): Now accept a number of items to pop.
6585 * data/lalr1.cc: Likewise.
6586 * data/glr.c: Formatting changes.
6587 Use goto instead of fall through.
6588 * doc/bison.texinfo (Destructor Decl): Complete.
6589
6590 2005-12-20 Juan Manuel Guerrero <juan.guerrero@gmx.de>
6591
6592 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
6593 * djgpp/Makefile.maint: Fix PACKAGE variable computation.
6594 * djgpp/config.bat: Replace every occurence of the file name
6595 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
6596 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
6597 * djgpp/config.sed: Replace every occurence of the file name
6598 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
6599 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
6600 * djgpp/djunpack.bat: DJGPP specific file.
6601 * djgpp/fnchange.lst: DJGPP specific file.
6602 * djgpp/README.in: Add new information about how to unpack the bison
6603 source on MSDOS and other systems which have 8.3 file name restrictions
6604 using djunpack.bat and fnchange.lst.
6605
6606 2005-12-12 Paul Eggert <eggert@cs.ucla.edu>
6607
6608 * bootstrap (build_cvs_prefix): Remove; unused.
6609 (CVS_PREFIX): Adjust to yesterday's Savannah reorganization
6610 when getting gnulib.
6611
6612 2005-12-12 "Joel E. Denny" <jdenny@ces.clemson.edu>
6613
6614 * data/glr.c: Reorder typedef declarations for structs to match order
6615 of struct declarations.
6616 Rename yystack everywhere to yystackp except in yyparse where it's not
6617 a pointer.
6618 (yyglrShift): Change parameter YYSTYPE yysval to YYSTYPE* yyvalp for
6619 consistency.
6620 (yyis_table_ninf): Change 0 to YYID (0) to pacify lint.
6621 (yyreportSyntaxError): Add /*ARGSUSED*/ to pacify lint.
6622 (yyparse): Change while (yytrue) to while ( YYID (yytrue)) to pacify
6623 lint.
6624
6625 2005-12-09 Paul Eggert <eggert@cs.ucla.edu>
6626
6627 * tests/sets.at (Accept): Fix typos in regular expression used to
6628 sed out the final state number.
6629
6630 Work around portability problem on Solaris 10: flex-generated
6631 files include <stdio.h> before <config.h>, which messes up
6632 because the latter defines __EXTENSIONS__. Address the problem
6633 by creating two new little files that include <config.h> first,
6634 then include the flex-generated files. Rewrite everyone else
6635 to include <config.h> first, as well.
6636 * lib/timevar.c: Always include "config.h".
6637 * src/Makefile.am (bison_SOURCES): Replace scan-gram.l with
6638 scan-gram-c.c, and scan-skel.l with scan-skel-c.c.
6639 (EXTRA_bison_SOURCES): New macro.
6640 * src/scan-gram-c.c, src/scan-skel-c.c: New files.
6641 * src/system.h: Don't include config.h.
6642 * src/LR0.c: Include <config.h> first.
6643 * src/assoc.c: Likewise.
6644 * src/closure.c: Likewise.
6645 * src/complain.c: Likewise.
6646 * src/conflicts.c: Likewise.
6647 * src/derives.c: Likewise.
6648 * src/files.c: Likewise.
6649 * src/getargs.c: Likewise.
6650 * src/gram.c: Likewise.
6651 * src/lalr.c: Likewise.
6652 * src/location.c: Likewise.
6653 * src/main.c: Likewise.
6654 * src/muscle_tab.c: Likewise.
6655 * src/nullable.c: Likewise.
6656 * src/output.c: Likewise.
6657 * src/parse-gram.y: Likewise.
6658 * src/print.c: Likewise.
6659 * src/print_graph.c: Likewise.
6660 * src/reader.c: Likewise.
6661 * src/reduce.c: Likewise.
6662 * src/relation.c: Likewise.
6663 * src/state.c: Likewise.
6664 * src/symlist.c: Likewise.
6665 * src/symtab.c: Likewise.
6666 * src/tables.c: Likewise.
6667 * src/uniqstr.c: Likewise.
6668 * src/vcg.c: Likewise.
6669
6670 * src/parse-gram.y: Fix minor problems uncovered by lint.
6671 (current_lhs, current_lhs_location): Now static.
6672 (current_assoc): Remove unused variable.
6673
6674 Cleanups so that Bison-generated parsers have less lint.
6675 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate):
6676 Prepend /*ARGSUSED*/, for lint's sake.
6677 * data/glr.c (YYUSE): Properly parenthesize, and use an alternate
6678 definition if 'lint' is defined.
6679 (YYID): New macro (or function, if lint).
6680 All uses of /*CONSTCOND*/0 replaced by YYID(0).
6681 * data/yacc.c: Likewise.
6682 * data/glr.c (yyuserAction, yyuserMerge, yy_reduce_print):
6683 (yyrecoverSyntaxError): Prepend /*ARGSUSED*/.
6684 * data/glr.cc (YYLLOC_DEFAULT): Omit /*CONSTCOND*/ since this code
6685 is C++ only.
6686 * data/lalr1.cc (YYUSE): Just use a cast, since this code is C++ only.
6687 * data/yacc.c (YYSTACK_FREE) [defined YYSTACK_ALLOC]:
6688 Use YYID(0) rather than 0, for lint.
6689 (yystrlen): Rewrite to avoid lint warning about ptrdiff_t overflow.
6690 (yysyntax_error): Rewrite to avoid lint warnings about parenthesization.
6691
6692 2005-12-07 Paul Eggert <eggert@cs.ucla.edu>
6693
6694 * tests/glr-regression.at
6695 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
6696 Close memory leak reported by twlevo.
6697
6698 2005-12-06 "Joel E. Denny" <jdenny@ces.clemson.edu>
6699
6700 * data/glr.c (yyprocessOneStack, yyparse): Synchronize the shift for
6701 all stacks.
6702 (yyparse): Iterate another stack in order to call user destructors.
6703 * tests/glr-regression.at (No users destructors if stack 0 deleted):
6704 New test case.
6705 (Duplicated user destructor for lookahead): This test now is expected
6706 to succeed.
6707
6708 2005-12-01 Paul Eggert <eggert@cs.ucla.edu>
6709
6710 * NEWS: Document the following change.
6711 * data/yacc.c: Say "parser skeleton" rather than "file", since
6712 it's no longer just a file.
6713 * data/glr.c: Grant a special exception for C GLR parsers, that
6714 reads like the already-existing exception for C LALR(1) parsers.
6715 * data/glr.cc: Likewise.
6716 * data/lalr1.cc: Likewise.
6717 * data/location.cc: Likewise.
6718 * data/yacc.c: Reword the "written by" statement to clarify that
6719 it was the parser skeleton, not the entire output file.
6720 * data/glr.c: Written by Paul Hilfinger.
6721 * data/glr.cc: Written by Akim Demaille.
6722 * data/lalr1.cc: Likewise.
6723
6724 2005-11-18 Paul Eggert <eggert@cs.ucla.edu>
6725
6726 * data/yacc.c (yy_reduce_print, YY_REDUCE_PRINT):
6727 Fix typos in previous change that broke 'make check'.
6728 YY_REDUCE_PRINT cannot be a pseudo-varargs macro; that isn't
6729 supported in C.
6730 * tests/calc.at (_AT_CHECK_CALC,_AT_CHECK_CALC_ERROR):
6731 Don't check NUM-STDERR-LINES, since the output format is fluctuating.
6732 We can revert this once things settle down.
6733
6734 * src/conflicts.c (conflicts_print): Don't print file name twice
6735 when %expect fails because there were no conflicts.
6736 * doc/bison.texinfo (Expect Decl): Tighten up wording in previous
6737 change.
6738 * tests/conflicts.at (%expect not enough, %expect too much):
6739 (%expect with reduce conflicts): Adjust to new behavior.
6740
6741 2005-11-18 Akim Demaille <akim@epita.fr>
6742
6743 * src/conflicts.c (conflicts_print): Unsatisfied %expectation are
6744 errors.
6745 * NEWS: Document this.
6746 * doc/bison.texinfo (Expect Decl): Likewise.
6747
6748 2005-11-16 Akim Demaille <akim@epita.fr>
6749
6750 Generalize the display of semantic values and locations in traces.
6751 * data/glr.c (yy_reduce_print): Fix indices (again).
6752 * data/c++.m4 (b4_rhs_value, b4_rhs_location): Don't expect
6753 literal integers.
6754 * data/lalr1.cc (yyreduce_print): Rename as...
6755 (yy_reduce_print): this.
6756 Display values and locations.
6757 * data/yacc.c (yy_reduce_print): Likewise.
6758 (YY_REDUCE_PRINT): Adjust to pass the required arguments.
6759 (yysymprint): Move higher to be visible from yy_reduce_print).
6760 (yyparse): Adjust.
6761 * tests/calc.at: Adjust the expected length of the traces.
6762
6763 2005-11-14 Akim Demaille <akim@epita.fr>
6764
6765 * data/glr.c (yy_reduce_print): The loop was quite wrong: type are
6766 from 1 to N, while values and location start at 0.
6767 (b4_rhs_location, b4_rhs_value): Add parens around $1 and $2.
6768
6769 2005-11-14 Akim Demaille <akim@epita.fr>
6770
6771 * data/glr.c (yy_reduce_print): Fix the $ number.
6772
6773 2005-11-14 Akim Demaille <akim@epita.fr>
6774
6775 "Use" parse parameters.
6776 * data/c.m4 (b4_parse_param_for, b4_parse_param_use): New.
6777 * data/glr.c, data/glr.cc: Use them.
6778 * data/glr.c (YYUSE): Have a C++ definition that supports
6779 non-pointer types.
6780
6781 2005-11-14 Akim Demaille <akim@epita.fr>
6782
6783 * data/glr.c (yyexpandGLRStack): Declare only if defined.
6784
6785 2005-11-14 Akim Demaille <akim@epita.fr>
6786
6787 * data/glr.cc: New.
6788 * data/m4sugar/m4sugar.m4 (m4_prepend): New.
6789
6790 2005-11-12 Akim Demaille <akim@epita.fr>
6791
6792 Let position and location be PODs.
6793 * data/location.cc (position::initialize, location::initialize): New.
6794 (position::position, location::location): Define only if
6795 b4_location_constructors is defined.
6796 * data/lalr1.cc (b4_location_constructors): Define it for backward
6797 compatibility.
6798 * doc/bison.texinfo (Initial Action Decl): Use initialize.
6799
6800 2005-11-12 Akim Demaille <akim@epita.fr>
6801
6802 * data/lalr1.cc: Move the body of the ctor and dtor into the
6803 parser file (instead of the header).
6804 Wrap the implementations in a "namespace yy".
6805
6806 2005-11-12 Akim Demaille <akim@epita.fr>
6807
6808 Have glr.c include its header file when created.
6809 * data/glr.c (b4_shared_declarations): New.
6810 Output them verbatim in the parser if !%defines, otherwise
6811 output then in the header file, and include it instead.
6812
6813 2005-11-11 Akim Demaille <akim@epita.fr>
6814
6815 * data/glr.c: Comment changes.
6816
6817 2005-11-11 Akim Demaille <akim@epita.fr>
6818
6819 When yydebug, report semantic and location values for reductions.
6820 * data/glr.c (yy_reduce_print): Report the semantic values and the
6821 locations.
6822 (YY_REDUCE_PRINT): Adjust.
6823 (yyglrReduce): Use them.
6824 (b4_rhs_value, b4_rhs_location): Remove m4_eval invocations.
6825 * data/c.m4 (b4_yysymprint_generate): Specify the const arguments.
6826 * tests/calc.at (_AT_CHECK_CALC_ERROR): Remove the reduction
6827 traces.
6828
6829 2005-11-10 Akim Demaille <akim@epita.fr>
6830
6831 * data/glr.c (yynewGLRStackItem, YY_RESERVE_GLRSTACK): New.
6832 (yyaddDeferredAction, yyglrShift, yyglrShiftDefer): Use them.
6833 (yyexpandGLRStack, YYRELOC): Define only when YYSTACKEXPANDABLE.
6834
6835 2005-11-09 Albert Chin-A-Young <china@thewrittenword.com>
6836
6837 * m4/cxx.m4, examples/Makefile.am: Don't build
6838 examples/calc++ if no C++ compiler is available. (trivial change)
6839
6840 2005-11-09 Akim Demaille <akim@epita.fr>
6841
6842 * src/scan-skel.l: Use a couple of asserts.
6843
6844 2005-11-03 Akim Demaille <akim@epita.fr>
6845
6846 In some (weird) cases, the final state number is incorrect.
6847 Reported by Alexandre Duret-Lutz.
6848 * src/LR0.c (state_list_append): Remove the computation of
6849 final_state.
6850 (save_reductions): Do it here.
6851 (get_state): Alpha conversion.
6852 (generate_states): Use a for loop.
6853 * src/gram.h (item_number_is_rule_number)
6854 (item_number_is_symbol_number): New.
6855 * src/state.c: Use assert.
6856 * src/system.h: Include assert.h.
6857 * tests/sets.at (Accept): New.
6858
6859 2005-10-30 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
6860
6861 * data/glr.c (yyfill): Adjust comment.
6862 (yyresolveAction): Initialize default location properly
6863 for empty right-hand sides.
6864 (yydoAction): Ditto.
6865 Add comment explaining apparently dead code.
6866 * tests/glr-regression.at
6867 (Incorrectly initialized location for empty right-hand side in GLR):
6868 New test.
6869
6870 2005-10-30 Paul Eggert <eggert@cs.ucla.edu>
6871
6872 * bootstrap (cleanup_gnulib): New function. Use it to clean up
6873 gnulib when interrupted. This fixes some race conditions and
6874 works around some portability problems (one noted by Paul
6875 Hilfinger).
6876
6877 2005-10-22 Akim <akim@epita.fr>
6878
6879 * Makefile.cfg: Adjust to config -> build-aux.
6880 Reported by twledo.
6881
6882 2005-10-21 Akim Demaille <akim@epita.fr>
6883
6884 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Pass
6885 the %parse-params.
6886 * data/glr.c (YY_SYMBOL_PRINT, yydestroyGLRState): Adjust.
6887 * data/yacc.c (b4_Pure_if): Rename as...
6888 (b4_yacc_pure_if): this.
6889 (YY_SYMBOL_PRINT, yyparse): Adjust.
6890 * doc/bison.texinfo: Formatting changes.
6891
6892 2005-10-21 Akim Demaille <akim@epita.fr>
6893
6894 Finish the transition config -> build-aux.
6895 * configure.ac, Makefile.am: Use build-aux.
6896 * config/prev-version, config/announce-gen, config/Makefile.am:
6897 Move to...
6898 * build-aux/prev-version, build-aux/announce-gen,
6899 * build-aux/Makefile.am: here.
6900
6901 2005-10-14 Akim Demaille <akim@epita.fr>
6902
6903 * examples/calc++/test: Use set -x only when VERBOSE.
6904
6905 2005-10-13 Paul Eggert <eggert@cs.ucla.edu>
6906
6907 * NEWS: Bison now warns if it finds a stray `$' or `@' in an action.
6908 * src/scan-gram.l (<SC_BRACED_CODE>[$@]): Implement this.
6909
6910 2005-10-13 Akim Demaille <akim@epita.fr>
6911
6912 * src/scan-skel.l: Output the base name parts of the parser and
6913 header file names.
6914 * tests/output.at (AT_CHECK_OUTPUT): Support subdirectories, and
6915 additional checks.
6916 Use this to exercise C++ outputs in subdirs.
6917 Reported by Oleg Smolsky.
6918
6919 2005-10-12 Paul Eggert <eggert@cs.ucla.edu>
6920
6921 * data/c.m4 (b4_c_function_def): Look at __C99_FUNC__, not at
6922 __STDC_VERSION__, as IBM cc 7.0 doesn't define the latter either.
6923 Problem reported by John P. Hartmann.
6924 * data/yacc.c (YYMODERN_C): Likewise. Don't define if the user has
6925 already defined it.
6926
6927 2005-10-12 Akim Demaille <akim@epita.fr>
6928
6929 * src/parse-gram.y (version_check): Exit 63 to please missing
6930 (stands for "version mismatch).
6931 * tests/input.at, doc/bison.texinfo: Adjust.
6932
6933 2005-10-10 Paul Eggert <eggert@cs.ucla.edu>
6934
6935 Work around portability problems with Visual Age C compiler
6936 (xlc and xlC_r) reported by John P. Hartmann.
6937 * data/location.cc (initial_column, initial_line): Remove.
6938 All uses replaced by 0 and 1.
6939 * src/scan-gram.l (gram_wrap): Redefine to avoid bug in flex 2.5.31
6940 that xlc complains about.
6941 * src/scan-skel.l (skel_wrap): Likewise.
6942 * data/c.m4 (b4_c_function_def): Look at __STDC_VERSION__ as well
6943 as __STDC__.
6944 * data/yacc.c (YYMODERN_C): New macro, which also looks at
6945 __STDC_VERSION__. Use it everywhere instead of looking at
6946 __STDC__ and __cplusplus.
6947
6948 2005-10-10 Akim Demaille <akim@epita.fr>
6949
6950 * examples/calc++/test: Be quiet unless VERBOSE.
6951
6952 2005-10-05 Paul Eggert <eggert@cs.ucla.edu>
6953
6954 * data/c.m4 (yydestruct, yysymprint):
6955 Use YYUSE instead of casting to void.
6956 * data/glr.c (YYUSE): New macro.
6957 (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
6958 Use it instead of rolling our own.
6959 (YYLLOC_DEFAULT, YYCHK, YYDPRINTF, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
6960 (YYCHK1):
6961 Use /*CONSTCOND*/ to suppress lint warnings.
6962 * data/lalr1.cc (YYLLOC_DEFAULT, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
6963 (YY_STACK_PRINT): Use 'false' not '0'.
6964 (YYUSE): New macro.
6965 (yysymprint_, yydestruct_): Use it instead of rolling our own.
6966 * data/yacc.c (YYUSE): New macro.
6967 (YYCOPY, YYSTACK_RELOCATE, YYBACKUP, YYLLOC_DEFAULT):
6968 (YYDPRINTF, YY_SYMBOL_PRINT, YY_STACK_PRINT, YY_REDUCE_PRINT):
6969 (yyerrorlab): Use /*CONSTCOND*/ to suppress lint warnings.
6970
6971
6972 * data/m4sugar/m4sugar.m4 (_m4_map): New macro.
6973 (m4_map, m4_map_sep): Use it. Handle the empty list correctly.
6974
6975 2005-10-04 Paul Eggert <eggert@cs.ucla.edu>
6976
6977 Undo the parts of the unlocked-I/O change that substituted
6978 putc or puts for printf. This might hurt performance a bit,
6979 but some people prefer the printf style.
6980 * data/c.m4 (yysymprint): Prefer printf to puts and putc.
6981 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): Remove.
6982 All uses replaced by YYFPRINTF and YYDPRINTF.
6983 * data/yacc.c: Likewise.
6984 * lib/bitset.c (bitset_print): Likewise.
6985 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer printf to
6986 putc and puts.
6987 * lib/lbitset.c (debug_lbitset): Likewise.
6988 * src/closure.c (print_firsts, print_fderives): Likewise.
6989 * src/gram.c (grammar_dump): Likewise.
6990 * src/lalr.c (look_ahead_tokens_print): Likewise.
6991 * src/output.c (escaped_output): Likewise.
6992 (user_actions_output): Break apart two printfs.
6993 * src/parse-gram.y (%printer): Prefer printf to putc and puts.
6994 * src/reduce.c (reduce_print): Likewise.
6995 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
6996 * src/system.h: Include unlocked-io.h rathe than stdio.h.
6997
6998 * data/glr.c (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
6999 Use assignments rather than casts-to-void to suppress
7000 unused-variable warnings. This pacifies 'lint'.
7001 * data/lalr1.cc (yysymprint_, yydestruct_): Use a call to suppress
7002 unused-variable warnings.
7003
7004 2005-10-03 Juan Manuel Guerrero <juan.guerrero@gmx.de>
7005
7006 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
7007
7008 2005-10-02 Paul Eggert <eggert@cs.ucla.edu>
7009
7010 Use unlocked I/O for a minor performance improvement on hosts like
7011 GNU/Linux and Solaris that support unlocked I/O. The basic idea
7012 is to use the gnlib unlocked-io module, and to prefer putc and
7013 puts to printf when either will work (since the latter doesn't
7014 come in an unlocked flavor).
7015 * bootstrap (gnulib_modules): Add unlocked-io.
7016 * data/c.m4 (yysymprint): Prefer puts and putc to printf.
7017 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): New macros.
7018 Prefer them to YYFPRINTF and YYDPRINTF if either will do,
7019 and similarly for puts and putc and printf.
7020 * data/yacc.c: Likewise.
7021 * lib/bitset.c (bitset_print): Likewise.
7022 * lib/bitset.h [USE_UNLOCKED_IO]: Include unlocked-io.h.
7023 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer putc and puts
7024 to printf.
7025 * lib/lbitset.c (debug_lbitset): Likewise.
7026 * src/closure.c (print_firsts, print_fderives): Likewise.
7027 * src/gram.c (grammar_dump): Likewise.
7028 * src/lalr.c (look_ahead_tokens_print): Likewise.
7029 * src/output.c (escaped_output): Likewise.
7030 (user_actions_output): Coalesce two printfs.
7031 * src/parse-gram.y (%printer): Prefer putc and puts to printf.
7032 * src/reduce.c (reduce_print): Likewise.
7033 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
7034 * src/system.h: Include unlocked-io.h rather than stdio.h.
7035
7036 * data/lalr1.cc: Don't put an unmatched ' in a dnl comment, as
7037 this confuses xgettext.
7038
7039 2005-10-02 Akim Demaille <akim@epita.fr>
7040
7041 * bootstrap (gnulib_modules): Add strverscmp.
7042 * lib/.cvsignore: Add strverscmp.c, strverscmp.h.
7043 * m4/.cvsignore: Add strverscmp.m4.
7044 * src/parse-gram.y (%require): New token, new rule.
7045 (version_check): New.
7046 * src/scan-gram.l (%require): Adjust.
7047 * tests/input.at (AT_REQUIRE): New.
7048 Use it.
7049 * doc/bison.texinfo (Require Decl): New.
7050 (Calc++ Parser): Use %require.
7051
7052 2005-10-02 Akim Demaille <akim@epita.fr>
7053
7054 * data/location.cc: New.
7055
7056 2005-10-02 Paul Eggert <eggert@cs.ucla.edu>,
7057 Akim Demaille <akim@epita.fr>
7058
7059 Make sure -odir/foo.cc creates dir/location.hh etc.
7060 * src/files.h (spec_outfile, parser_file_name, spec_name_prefix)
7061 (spec_file_prefix, spec_verbose_file, spec_graph_file)
7062 (spec_defines_file): Now const.
7063 (dir_prefix): New.
7064 (short_base_name): Remove.
7065 * src/files.c: Adjust.
7066 (dirname.h): Include.
7067 (base_name): Don't prototype it.
7068 (finput): Remove, duplicates gram_in.
7069 (full_base_name, short_base_name): Replace by...
7070 (all_but_ext, all_but_tab_ext): these.
7071 (compute_base_names): Rename as...
7072 (compute_file_name_parts): this.
7073 Update to compute the new variables, including dir_prefix.
7074 Adjust dependencies.
7075 * src/output.c (prepare): Output them.
7076 * src/reader.c: Adjust to use gram_in, not finput.
7077 * src/scan-skel.l (@dir_prefix@): New.
7078
7079 2005-10-02 Juan Manuel Guerrero <juan.guerrero@gmx.de>
7080
7081 * lib/subpipe.c: New function end_of_output_subpipe() added
7082 to allow support for non-posix systems. This is a no-op function
7083 for posix systems.
7084
7085 * lib/subpipe.h: New function end_of_output_subpipe() added
7086 to allow support for non-posix systems. This is a no-op function
7087 for posix systems.
7088
7089 * src/output.c (output_skeleton): Use end_of_output_subpipe() to
7090 handle the lack of pipe/fork functionality on non-posix systems.
7091
7092 * djgpp/Makefile.maint: DJGPP specific file.
7093
7094 * djgpp/README.in: DJGPP specific file.
7095
7096 * djgpp/config.bat: DJGPP specific configuration file.
7097
7098 * djgpp/config.sed: DJGPP specific configuration file.
7099
7100 * djgpp/config.site: DJGPP specific configuration file.
7101
7102 * djgpp/config_h.sed: DJGPP specific configuration file.
7103
7104 * djgpp/subpipe.c: DJGPP specific replacement file for lib/subpipe.c.
7105
7106 * djgpp/subpipe.h: DJGPP specific replacement file for lib/subpipe.h.
7107
7108 2005-10-02 Akim Demaille <akim@epita.fr>
7109
7110 * data/location.cc: New, extract from...
7111 * data/lalr1.cc: here.
7112 (location.hh): Include it after the user prologue, in case the
7113 filename type is defined by the user.
7114 Forward declation location and position before the pre-prologue.
7115 (yyresult_): Rename as...
7116 (yyresult): this, it's a local variable, not an attribute.
7117 * data/Makefile.am (dist_pkgdata_DATA): Adjust.
7118
7119 2005-10-01 Akim Demaille <akim@epita.fr>
7120
7121 * examples/extexi: Restore the #line generation.
7122
7123 2005-09-30 Akim Demaille <akim@epita.fr>,
7124 Alexandre Duret-Lutz <adl@gnu.org>
7125
7126 Move the token type and YYSTYPE in the parser class.
7127 * data/lalr1.cc (stack.hh, location.hh): Include earlier.
7128 (parser::token): New, from the moved free definition of tokens.
7129 (parser::semantic_value): Now a full definition instead of an
7130 indirection to YYSTYPE.
7131 (b4_post_prologue): No longer included in the header file, but
7132 in the implementation file.
7133 * doc/bison.texi (C+ Language Interface): Update.
7134 * src/parse-gram.y: Support unary %define.
7135 * tests/actions.at: Define global_tokens_and_yystype for backward
7136 compatibility until we update the tests.
7137 * tests/calc.at: Idem.
7138 (first_line, first_column, last_line, last_column): Define for lalr1.cc
7139 to simplify the code.
7140
7141 2005-09-29 Paul Eggert <eggert@cs.ucla.edu>
7142
7143 Port to SunOS 4.1.4, which lacks strtoul and strerror.
7144 Ah, the good old days! Problem reported by Peter Klein.
7145 * bootstrap (gnulib_modules): Add strerror, strtoul.
7146 * lib/.cvsignore: Add strerror.c, strtol.c, strtoul.c
7147 * m4/.cvsignore: Add strerror.m4, strtol.m4, strtoul.m4.
7148
7149 2005-09-29 Akim Demaille <akim@epita.fr>
7150
7151 * data/c.m4 (b4_error_verbose_if): New.
7152 * data/lalr1.cc: Use it.
7153 (YYERROR_VERBOSE_IF): Remove.
7154 (yyn_, yylen_, yystate_, yynerrs_, yyerrstatus_): Remove as
7155 parser members, replaced by...
7156 (yyn, yylen, yystate, yynerss, yyerrstatus): these parser::parse
7157 local variables.
7158 (yysyntax_error_): Takes the state number as argument.
7159 (yyreduce_print_): Use the argument yyrule, not the former
7160 attribute yyn_.
7161
7162 2005-09-26 Paul Eggert <eggert@cs.ucla.edu>
7163
7164 * bootstrap (gnulib_modules): Add verify.
7165 * lib/.cvsignore: Add verify.h.
7166 * src/getargs.c: Use ARGMATCH_VERIFY rather than verify.
7167 * src/system.h (verify): Remove.
7168 Include verify.h instead.
7169 * src/tables.c (tables_generate): Use new API for 'verify'.
7170
7171 2005-09-21 Paul Eggert <eggert@cs.ucla.edu>
7172
7173 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Do not use
7174 local variables whose names begin with 'yy'.
7175 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
7176 Trivial changes from Joel E. Denny.
7177
7178 * bootstrap (gnulib_modules): Remove alloca. Bison doesn't need
7179 it itself.
7180 * src/main.c (main) [C_ALLOCA]: Don't flush alloca'ed memory; we
7181 don't use alloca any more.
7182
7183 * data/yacc.c [YYSTACK_USE_ALLOCA && !defined __GNUC__ && ! defined
7184 __BUILTIN_VA_ARG_INCR && ! defined _AIX && ! defined _MSC_VER &&
7185 defined _ALLOCA_H]: Don't include <stdlib.h>; not needed in this case.
7186 * tests/torture.at (Exploding the Stack Size with Alloca): Adjust
7187 to match yacc.c, to test more hosts.
7188
7189 2005-09-20 Paul Eggert <eggert@cs.ucla.edu>
7190
7191 * data/yacc.c (YYSIZE_T): Reindent to make it clearer. This
7192 doesn't affect behavior.
7193 (YYSTACK_ALLOC) [YYSTACK_USE_ALLOCA]: Improve support for
7194 Solaris, AIX, MSC.
7195 (_STDLIB_H): Renamed from YYINCLUDED_STDLIB_H. All uses changed.
7196 This works a bit better with glibc, if user code has already included
7197 stdlib.h.
7198 * doc/bison.texinfo (Bison Parser): Document that users can't
7199 arbitrarily use malloc and free for other purposes. Document
7200 that <alloca.h> and <malloc.h> might be included.
7201 (Table of Symbols): Under YYSTACK_USE_ALLOCA, Don't claim that the
7202 user must declare alloca.
7203
7204 * HACKING (release): Forwarn the Translation Project about
7205 stable releses.
7206
7207 2005-09-20 Akim Demaille <akim@epita.fr>
7208
7209 * data/glr.c: Use b4_token_enums, not b4_token_enums_defines.
7210
7211 2005-09-19 Paul Eggert <eggert@cs.ucla.edu>
7212
7213 * data/yacc.c (YYSIZE_MAXIMUM): New macro.
7214 (YYSTACK_ALLOC_MAXIMUM): Use it.
7215 (yysyntax_error): New function.
7216 (yyparse) [YYERROR_VERBOSE]: Don't leak memory indefinitely if
7217 multiple syntax errors are reported, and alloca is being used.
7218 Instead, reallocate buffers twice as big each time, so that
7219 we waste at most half the allocated memory. Start with a small
7220 (128-byte) buffer that will suffice in most cases anyway.
7221 Use yysyntax_error to do most of the work.
7222
7223 * doc/bison.texinfo (Error Reporting, Table of Symbols):
7224 yynerrs is the number of errors reported, not the number of
7225 errors encountered.
7226
7227 * tests/glr-regression.at (Duplicated user destructor for lookahead):
7228 Mark it as expected to fail.
7229 Cast result of malloc; problem reported by twlevo@xs4all.nl.
7230 * tests/actions.at, tests/calc.at, tests/glr-regression.at:
7231 Don't start user-code symbols with "yy", to avoid name space problems.
7232
7233 2005-09-19 Akim Demaille <akim@epita.fr>
7234
7235 Remove the traits, failed experiment.
7236 It never proved useful, and anyway because of the current
7237 definition, it was not possible to have several specialization of
7238 this traits, making it useless.
7239 * data/lalr1.cc (yy:traits): Remove.
7240 Inline its definitions in the parser class.
7241
7242 2005-09-19 Akim Demaille <akim@epita.fr>
7243
7244 * tests/atlocal.in (LIBS): Pass INTLLIBS to address failures on at
7245 least Mac OSX with a /usr/local install of gettext.
7246
7247 2005-09-19 Akim Demaille <akim@epita.fr>
7248
7249 * data/lalr1.cc (yyparse): Rename yylooka and yyilooka as yychar
7250 and yytoken for similarity with the other skeletons.
7251
7252 2005-09-19 Akim Demaille <akim@epita.fr>
7253
7254 * NEWS, configure.ac: update version number to 2.1a.
7255
7256 2005-09-16 Paul Eggert <eggert@cs.ucla.edu>
7257
7258 * NEWS: Version 2.1.
7259
7260 * NEWS: Remove notice of yytname change, since it was never in an
7261 official release.
7262 * data/glr.c (yydestroyGLRState): Rename local var to avoid shadowing
7263 diagnostic.
7264 * src/output.c (prepare): Likewise.
7265 * data/lalr1.cc (YYERROR_VERBOSE_IF): New macro.
7266 (yysyntax_error_): Use it to avoid GCC warning when YYERROR_VERBOSE
7267 is not defined. This is an awful hack, but it's enough for now.
7268 All callers changed.
7269 * tests/glr-regression-at (make_value): Args are const pointers now,
7270 to avoid GCC warning.
7271 (Duplicated user destructor for lookahead): New test. Currently
7272 skipped. It fails on my host but I'm not sure it'll always fail.
7273
7274 2005-09-16 Akim Demaille <akim@epita.fr>
7275
7276 * src/symtab.h (struct symbol): Declare the printer and destructor
7277 as const, to avoid accidental calls to free.
7278 (symbol_destructor_set, symbol_printer_set): Adjust.
7279 * src/symtab.c: Adjust.
7280
7281 2005-09-16 Akim Demaille <akim@epita.fr>
7282
7283 * data/c.m4 (b4_token_enums): New.
7284 (b4_token_defines): Rename as...
7285 (b4_token_enums_defines): this.
7286 (b4_token_defines): New, output only the #defines.
7287 * data/yacc.c, data/glr.c: Adjust.
7288 * data/lalr1.cc: Use b4_token_enums instead of b4_token_enums_defines.
7289 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Define
7290 as default values.
7291
7292 2005-09-16 Akim Demaille <akim@epita.fr>
7293
7294 * data/lalr1.cc (yylex_): Remove, inline its code.
7295 (yyreport_syntax_error_): Remove, replaced by...
7296 (yysyntax_error_): this which returns a string and leaves to the
7297 caller the call to the users' error function.
7298 (yylooka_, yyilooka_, yylval, yylloc, yyerror_range_, yyval, yyloc):
7299 Move from members of the parser object...
7300 (yylooka, yyilooka, yylval, yylloc, yyerror_range, yyval, yyloc):
7301 to local variables of the parse function.
7302
7303 2005-09-16 Akim Demaille <akim@epita.fr>
7304
7305 * doc/bison.texinfo (Calc++ Parser): Don't promote defining YYEOF
7306 since it's in Bison's name space.
7307
7308 2005-09-15 Paul Eggert <eggert@cs.ucla.edu>
7309
7310 * data/glr.c (yyresolveValue): Add default case to pacify
7311 gcc -Wswitch-default. Problem reported by twlevo@xs4all.nl.
7312
7313 * NEWS: Document when yyparse started to return 2.
7314 * doc/bison.texinfo (Parser Function): Document when yyparse
7315 returns 2.
7316
7317 * data/lalr1.cc: Revert part of previous change, as it's incompatible.
7318 (b4_filename_type): Renamed back from b4_file_name_type. All uses
7319 changed.
7320 (class position): file_name -> filename (reverting). All uses changed.
7321
7322 2005-09-14 Paul Eggert <eggert@cs.ucla.edu>
7323
7324 * examples/calc++/Makefile.am ($(calc_sources_generated)): Don't
7325 do anything if $@ exists. This reverts part of the 2005-07-07
7326 patch.
7327
7328 2005-09-11 Paul Eggert <eggert@cs.ucla.edu>
7329
7330 * Makefile.am (EXTRA_DIST): Do not distribute REFERENCES; it
7331 contains obsolete information and isn't worth distributing as a
7332 separate file anyway.
7333 * data/glr.c [defined YYSETJMP]: Don't include <setjmp.h>.
7334 (YYJMP_BUF, YYSETJMP, YYLONGJMP) [!defined YYSETJMP]: New macros.
7335 All uses of jmp_buf, setjmp, longjmp changed to use these instead.
7336 (yyparse): Abort if user code uses longjmp to throw an unexpected
7337 value.
7338
7339 2005-09-09 Paul Eggert <eggert@cs.ucla.edu>
7340
7341 * data/c.m4 (b4_identification): Define YYBISON_VERSION.
7342 Suggested by twlevo@xs4all.nl.
7343
7344 * data/glr.c (YYCHK1): Do not assume YYE is in range.
7345 This avoids a diagnostic from gcc -Wswitch-enum.
7346 Problem reported by twlevo@xs4all.nl.
7347
7348 * doc/bison.texinfo: Don't use "filename", as per GNU coding
7349 standards. Use "file name" or "file" or "name", depending on
7350 the context.
7351 (Invocation): The output of "bison hack/foo.y" goes to foo.tab.c,
7352 not to hack/foo.tab.c.
7353 (Calc++ Top Level): 2nd arg of main is not const.
7354 * data/glr.c: b4_filename -> b4_file_name.
7355 * data/lalr1.cc: Likewise. Also, b4_filename_type -> b4_file_name_type.
7356 All uses changed.
7357 (class position): filename -> file_name. All uses changed.
7358 * data/yacc.c: b4_filename -> b4_file_name.
7359 * lib/bitset.h: filename -> file_name in local vars.
7360 * lib/bitset_stats.c: Likewise.
7361 * src/files.c: Likewise.
7362 * src/scan-skel.l ("@output ".*\n): Likewise.
7363 * src/files.c (file_name_split): Renamed from filename_split.
7364 * src/muscle_tab.c (muscle_init): Output b4_file_name, not b4_filename.
7365
7366 2005-09-08 Paul Eggert <eggert@cs.ucla.edu>
7367
7368 * lib/.cvsignore: Add pipe-safer.c, stdio--.h, unistd--.h,
7369 to accommodate latest gnulib.
7370
7371 * tests/glr-regression.at (Duplicate representation of merged trees):
7372 Add casts to pacify g++. Problem reported by twlevo@xs4all.nl.
7373
7374 * bootstrap: Add comment as to why the AM_LANGINFO_CODESET hack is
7375 needed.
7376
7377 2005-08-26 Paul Eggert <eggert@cs.ucla.edu>
7378
7379 * data/glr.c (yydestroyGLRState): Renamed from yydestroyStackItem.
7380 All uses changed. Invoke user destructor after an error during a
7381 split parse (trivial change from Joel E. Denny).
7382
7383 * tests/glr-regression.at
7384 (User destructor after an error during a split parse): New test case.
7385 Problem reported by Joel E. Denny in:
7386 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00029.html
7387
7388 2005-08-25 Paul Eggert <eggert@cs.ucla.edu>
7389
7390 * README-cvs: Give URLs for recommended tools.
7391 Mention Gzip version problem, and bootstrapping issues.
7392 Remove troubleshooting section, as it's somewhat obsolete.
7393
7394 * bootstrap (no_cache): New var, to accommodate different wget
7395 variants. Use it instead of '-C off'. Problem reported by
7396 twlevo@xs4all.nl.
7397
7398 * data/glr.c (yydestroyStackItem): New function.
7399 (yyrecoverSyntaxError, yyreturn): Use it to improve quality of
7400 debugging information. Problem reported by Joel E. Denny.
7401
7402 2005-08-25 Akim Demaille <akim@epita.fr>
7403
7404 * tests/local.at (AT_COMPILE_CXX): Pass $LINKS too.
7405
7406 2005-08-24 Paul Eggert <eggert@cs.ucla.edu>
7407
7408 * data/glr.c (yyrecoverSyntaxError, yyreturn):
7409 Don't invoke destructor on unresolved entries.
7410 * tests/glr-regression.at
7411 (User destructor for unresolved GLR semantic value): New test case.
7412 Problem reported by Joel E. Denny in:
7413 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00016.html
7414
7415 2005-08-21 Paul Eggert <eggert@cs.ucla.edu>
7416
7417 * lib/.cvsignore: Remove realloc.c, strncasecmp.c, xstrdup.c.
7418 Add strnlen.c.
7419 * m4/.cvsignore: Remove codeset.m4, gettext.m4, lib-ld.m4,
7420 lib-prefix.m4, po.m4.
7421
7422 * data/glr.c (yyreturn): Use "Cleanup:" rather than "Error:"
7423 in yydestruct diagnostic, since it might not be an error.
7424 Problem reported by Joel Denny near end of
7425 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
7426 * data/lalr1.cc (yyerturn): Likewise.
7427 * data/yacc.c (yyreturn): Likewise.
7428 * tests/calc.at (_AT_CHECK_CALC_ERROR): Adjust to the above change.
7429
7430 * src/files.c: Remove obsolete FIXME comment.
7431
7432 * data/glr.c (YY_SYMBOL_PRINT): Append a newline, for consistency
7433 with the other templates, and to fix bogus run-on messages such
7434 as the one reported at the end of
7435 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
7436 All callers changed to avoid the newline.
7437 (yyprocessOneStack): Output two lines rather than one, to accommodate
7438 the above change. This changes the debug output format slightly.
7439
7440 * data/glr.c (yyresolveValue): Fix redundant parse tree problem
7441 reported by Joel E. Denny in
7442 <http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00004.html>
7443 (trivial change).
7444 * tests/glr-regression.at (Duplicate representation of merged trees):
7445 New test, from Joel E. Denny in:
7446 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00013.html>.
7447 * THANKS: Add Joel E. Denny.
7448
7449 * configure.ac (AC_INIT): Bump to 2.0c.
7450
7451 2005-07-24 Paul Eggert <eggert@cs.ucla.edu>
7452
7453 * NEWS: Version 2.0b.
7454
7455 * Makefile.am (SUBDIRS): Put examples before tests, so that
7456 "make check" doesn't finish with "All 1 tests passed".
7457
7458 * tests/regression.at (Token definitions): Don't rely on
7459 AT_PARSER_CHECK for data that contains backslashes. It currently
7460 uses 'echo', and 'echo' isn't portable if its argument contains
7461 backslashes. Problem found on OpenBSD 3.4. Also, do not assume
7462 that the byte '\0xff' is not printable in the C locale; it is,
7463 under OpenBSD 3.4 (!). Luckily, '\0x80' through '\0x9e' are
7464 not printable, so use '\0x81' to test.
7465
7466 * data/glr.c (YYOPTIONAL_LOC): Define even if it's not a recent
7467 version of GCC, since the macro is used with non-GCC compilers.
7468
7469 Fix core dump reported by Pablo De Napoli in
7470 <http://lists.gnu.org/archive/html/bug-bison/2005-07/msg00053.html>.
7471 * tests/regression.at (Invalid inputs with {}): New test.
7472 * src/parse-gram.y (token_name): Translate type before using
7473 it as an index.
7474
7475 * data/glr.c (ATTRIBUTE_UNUSED): Remove, since it infringes on
7476 the user's name space. All uses changed to __attribute__
7477 ((__unused__)).
7478 (yyFail, yyMemoryExhausted, yyreportAmbiguity):
7479 Add __attribute__ ((__noreturn__)).
7480
7481 * etc/clcommit: Remove. We weren't using it, and it failed
7482 "make maintainer-distcheck".
7483 * Makefile.maint: Merge from coreutils.
7484 (CVS_LIST, CVS_LIST_EXCEPT): New macros.
7485 (syntax-check-rules): Change list of rules as described below.
7486 (sc_cast_of_alloca_return_value, sc_dd_max_sym_length):
7487 (sc_file_system, sc_obsolete_symbols, sc_prohibit_atoi_atof):
7488 (sc_prohibit_jm_in_m4, sc_root_tests, sc_tight_scope):
7489 (sc_trailing_space): New rules.
7490 (sc_xalloc_h_in_src): Remove.
7491 (sc_cast_of_argument_to_free, sc_cast_of_x_alloc_return_value):
7492 (sc_space_tab, sc_error_exit_success, sc_changelog):
7493 (sc_system_h_headers, sc_sun_os_names, sc_unmarked_diagnostics):
7494 (makefile-check, po-check, author_mark_check):
7495 (makefile_path_separator_check, copyright-check):
7496 Use grep -n, to make it easier to find violations.
7497 Use CVS_LIST and CVS_LIST_EXCEPT.
7498 (header_regexp, h_re): Remove.
7499 (dd_c): New macro.
7500 (sc_dd_max_sym_length, .re-list, news-date-check): New rules.
7501 (my-distcheck): Use more-modern GCC flags.
7502 (signatures, %.asc): Remove.
7503 (rel-files, announcement): Remove signatures.
7504 Restore old updating code, even though we don't use it, so
7505 that we're the same as coreutils.
7506 (alpha, beta, major): Depend on news-date-check.
7507 Make the upload commands.
7508
7509 * data/c.m4, data/lalr1.cc, data/yacc.c: Normalize white space.
7510 * lib/abitset.h, lib/bbitset.h, lib/bitset.h: Likewise.
7511 * lib/bitset_stats.c, lib/ebitset.h, lib/lbitset.c: Likewise.
7512 * lib/libitset.h, lib/timevar.c, lib/vbitset.h: Likewise.
7513 * src/Makefile.am, src/gram.c, src/muscle_tab.h: Likewise.
7514 * src/parse-gram.y, src/system.h, src/tables.c, src/vcg.c: Likewise.
7515 * src/vcg_defaults.h, tests/cxx-type.at, tests/existing.at: Likewise.
7516 * tests/sets.at: Likewise.
7517
7518 * data/m4sugar/m4sugar.m4: Sync from Autoconf, except that
7519 we comment out the Autoconf version number.
7520 * doc/bison.texinfo (Calc++ Scanner): Don't use atoi, as
7521 it's error-prone and "make maintainer-distcheck" rejects it.
7522
7523 * lib/subpipe.c: Include <fcntl.h> without checking for HAVE_FCNTL_H.
7524 Indent calls to "error" to pacify "make maintainer-distcheck",
7525 when the calls are not intended to be translated.
7526 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't check for fcntl.h.
7527
7528 * src/Makefile.am (DEFS): Use +=, to pacify
7529 "make maintainer-distcheck".
7530 (bison_SOURCES): Add scan-skel.h.
7531 (sc_tight_scope): New rule, from coreutils.
7532
7533 * src/files.c (src_extension, header_extension):
7534 Now static, not extern.
7535 * src/getargs.c (short_options): Likewise.
7536 * src/muscle_tab.c (muscle_table): Likewise.
7537 * src/parse-gram.y (current_class, current_type, current_prec):
7538 Likewise.
7539 * src/reader.c (grammar_end, previous_rule_end): Likewise.
7540 * src/getargs.h: Redo comments to pacify "make maintainer-distcheck".
7541 * src/main.c (main): Cast bindtextdomain and textdomain calls to
7542 void, to avoid warning when NLS is disabled.
7543 * src/output.c: Include scan-skel.h.
7544 (scan_skel): Remove decl, since scan-skel.h does this.
7545 (output_skeleton):
7546 Indent calls to "error" to pacify "make maintainer-distcheck".
7547 * src/print_graph.c: Don't include <obstack.h>, as system.h does this.
7548 * src/reader.h (gram_end, gram_lineno): New decls to pacify
7549 "make maintainer-distcheck".
7550 * src/scan-skel.l (skel_lex, skel_get_lineno, skel_get_in):
7551 (skel_get_out, skel_get_leng, skel_get_text, skel_set_lineno):
7552 (skel_set_in, skel_set_out, skel_get_debug, skel_set_debug):
7553 (skel_lex_destroy, scan_skel): Move these decls to...
7554 * src/scan-skel.h: New file.
7555 * src/uniqstr.c (uniqstr_assert):
7556 Indent calls to "error" to pacify "make maintainer-distcheck".
7557
7558 * tests/Makefile.am ($(srcdir)/package.m4): Use $(VAR),
7559 not @VAR@.
7560
7561 * tests/torture.at: Revamp to avoid misuse of atoi that
7562 "make maintainer-distcheck" complained about.
7563
7564 * examples/extexi (message): Don't print a message more than once,
7565 and omit line-number decoration that makes Emacs compile think
7566 that informative messages are worth worrying about.
7567
7568 2005-07-22 Paul Eggert <eggert@cs.ucla.edu>
7569
7570 * configure.ac: Update version number.
7571
7572 * Makefile.am (SUBDIRS): Add examples; somehow this got removed
7573 accidentally.
7574 * examples/calc++/calc++-parser.yy: Remove from CVS, as it's
7575 autogenerated by the maintainer.
7576 * examples/calc++/.cvsignore: Add *.yy.
7577
7578 * lib/bitset.c (bitset_alloc): Don't cast xcalloc result.
7579 * lib/bitset_stats.c (bitset_stats_init): Likewise.
7580 * lib/bitsetv.c (bitsetv_alloc): Likewise.
7581
7582 * po/POTFILES.in: Add lib/xalloc-die.c; remove lib/xmalloc.c.
7583
7584 * src/relation.c (relation_transpose): Rewrite to avoid bogus complaint
7585 from maintainer-distcheck about casting the argument of 'free'.
7586
7587 * NEWS: Mention recent yytname changes.
7588 * THANKS: Add Anthony Heading, twlevo@xs4all.nl.
7589
7590 * bootstrap: For translations that have not yet been upgraded to
7591 the new runtime-po domain, prime the pump by extracting the
7592 relevant strings from the obsolete translations. This code can be
7593 removed once the bison-runtime domain has been translated by each
7594 team.
7595
7596 * src/scan-gram.l (<SC_PRE_CODE>.): Don't double-quote token names,
7597 now that token names are already quoted.
7598
7599 Fix problem reported by Anthony Heading.
7600 * data/glr.c (YYTOKEN_TABLE): New macro.
7601 (yytname): Define if YYTOKEN_TABLE.
7602 * data/yacc.c (YYTOKEN_TABLE, yytname): Likewise.
7603 * data/lalr1.cc (YYTOKEN_TABLE, yytname_): Likewise.
7604 (YYERROR_VERBOSE): Define the same way the other skeletons do.
7605 * src/output.c (prepare_symbols): Output token_table_flag.
7606
7607 2005-07-21 Paul Eggert <eggert@cs.ucla.edu>
7608
7609 * data/glr.c (yyinitGLRStack, yyreturn): Don't call malloc
7610 again if the first call fails.
7611
7612 * data/glr.c (yytnamerr): New function.
7613 (yyreportSyntaxError): Use it to dequote most string literals.
7614 * data/lalr1.c (yytname_): Renamed from yyname_, for compatibility
7615 with other skeletons. All uses changed.
7616 (yytnameerr_): New function.
7617 (yyreport_syntax_error): Use it to dequote most string literals.
7618 * data/yacc.c (yytnamerr): New function.
7619 (yyerrlab): Use it to decode most string literals.
7620 * doc/bison.texinfo (Decl Summary, Calling Convention):
7621 Clarify quoting convention of yytname.
7622 * src/output.c (prepare_symbols): Quote all names. This undoes
7623 the 2005-04-17 change, which is now accomplished (mostly) via
7624 changes in the parsers as described above.
7625 * tests/regression.at (Token definitions, Web2c Actions):
7626 Undo most 2005-04-17 change here, too.
7627
7628 2005-07-20 Paul Eggert <eggert@cs.ucla.edu>
7629
7630 Fix more problems reported by twlevo@xs4all.nl.
7631 * tests/cxx-type.at: Don't pipe output of ./types through sed to
7632 remove trailing spaces. This loses the exit status of ./types,
7633 and isn't needed since ./types shouldn't be emitting trailing
7634 spaces.
7635 * data/glr.c (yyreturn): Don't pop stack if yyinitStateSet failed,
7636 as the stack isn't valid in that case.
7637
7638 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
7639 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
7640 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
7641 Add declarations to pacify "gcc -Wmissing-prototypes" when flex 2.5.31
7642 is used.
7643 * src/scan-skel.l (skel_get_lineno, skel_get_in, skel_get_out):
7644 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
7645 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
7646 Likewise.
7647
7648 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Work even with
7649 overly-picky compilers that reject 'char *foo = "bar";'.
7650
7651 * src/symtab.c (SYMBOL_ATTR_PRINT, symbol_print): Direct output
7652 to FILE * parameter, not to stderr. This fixes a typo introduced
7653 in the 2005-07-12 change.
7654
7655 * lib/subpipe.c (create_subpipe): Rewrite slightly to avoid
7656 warnings from GCC 4.
7657
7658 * data/glr.c (yyexpandGLRStack, yyaddDeferredAction, yyexpandGLRStack):
7659 (yyglrShiftDefer, yysplitStack):
7660 Remove unused parameters b4_pure_formals. All uses changed.
7661 (yyglrShift): Remove unused parameters b4_user_formals.
7662 All uses changed.
7663 (yyglrReduce): Removed unused parameter yylocp. All uses changed.
7664
7665 2005-07-18 Paul Eggert <eggert@cs.ucla.edu>
7666
7667 Destructor cleanups and regularization among the three skeletons.
7668 * NEWS: Document the behavior changes.
7669 * data/glr.c (yyrecoverSyntaxError): Don't bother to pop the
7670 stack before failing, as the cleanup code will do it for us now.
7671 * data/lalr1.cc (yyerrlab): Likewise.
7672 * data/glr.c (yyparse): Pop everything off the stack before
7673 freeing it, so that destructors get called properly.
7674 * data/lalr1.cc (yyreturn): Likewise.
7675 * data/yacc.c (yyreturn): Pop and destroy the start symbol, too.
7676 This is more consistent.
7677 * doc/bison.texinfo (Destructor Decl): Mention more reasons
7678 why destructors might be called. 1.875 -> 2.1.
7679 (Destructor Decl, Decl Summary, Table of Symbols):
7680 Some English-language cleanups for %destructor.
7681 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
7682 Add output line for destructor of start symbol.
7683 * tests/calc.at (AT_CHECK_CALC): Add one to line counts,
7684 because of that same extra output line.
7685
7686 * NEWS: Document minor wording changes in diagnostics of
7687 Bison-generated parsers.
7688 * data/glr.c (yyMemoryExhausted): Renamed from yyStackOverflow.
7689 Remove unused formals. All uses changed.
7690 (yyreportAmbiguity): "ambiguity detected" -> "syntax is ambiguous".
7691 (yyparse): Rename yyoverflowlab to yyexhaustedlab.
7692 * data/yacc.c (yyparse): "parser stack overflow" -> "memory exhausted".
7693 Rename yyoverflowab to yyexhaustedlab.
7694 When memory exhaustion occurs during syntax-error reporting,
7695 report it separately rather than in a single diagnostic; this
7696 eases translation.
7697 * doc/bison.texinfo (Memory Management): Renamed from Stack Overflow.
7698 (Memory Exhausted): Renamed from Parser Stack Overflow.
7699 Revamp wording slightly to prefer "memory exhaustion".
7700 * tests/actions.at: "parser stack overflow" -> "memory exhausted".
7701
7702 * data/c.m4 (b4_yysymprint_generate): Use YYFPRINTF, not fprintf.
7703
7704 Add i18n support to the GLR skeleton. Partially fix the C++
7705 skeleton; a C++ expert needs to finish this. Remove debugging
7706 msgids; there's little point to having them translated, since they
7707 can be understood only by someone who can read the
7708 (English-language) source code.
7709
7710 Generate runtime-po/bison-runtime.pot automatically, so that we
7711 don't have to worry about garbage getting in that file. We'll
7712 make sure after the next official release that old msgids don't
7713 get lost. See
7714 <http://lists.gnu.org/archive/html/bison-patches/2005-07/msg00119.html>.
7715
7716 * runtime-po/Makefile.in.in, runtime-po/bison-runtime.pot: Remove.
7717 Now auto-generated.
7718 * PACKAGING: Don't claim that Gawk, GCC, Perl use this method yet.
7719 Fix typos in explanations of the runtime file.
7720 * bootstrap: Change gettext keyword from YYI18N to YY_.
7721 Use standard Makefile.in.in in runtime-po, since we'll arrange
7722 for backward-compatible bison-runtime.po files in a different way.
7723 * data/glr.c (YY_): New macro, from yacc.c.
7724 (yyuserAction, yyreportAmbiguity, yyreportSyntaxError, yyparse):
7725 Translate messages intended for users.
7726 (yyreportSyntaxError): Change "virtual memory" to "memory" to match
7727 the wording in the other skeletons. We don't know that the memory
7728 is virtual.
7729 * data/lalr1.cc (YY_): Renamed from _. All uses changed.
7730 Use same method that yacc.c uses.
7731 Don't translate debugging messages.
7732 (yy::yyreport_syntax_error): Put in a FIXME for the i18n stuff;
7733 it doesn't work (yet), and requires C++ expertise to fix.
7734 * data/yacc.c (YY_): Renamed from YY18N. All uses changed.
7735 Move defn to a more logical place, to be consistent with other
7736 skeletons.
7737 Don't translate debugging messages.
7738 Don't assume line numbers fit in unsigned int; use unsigned long fmts.
7739 * doc/bison.texinfo: Mention <libintl.h>. Change glibc cross reference
7740 to gettext cross reference. Add indexing terms. Mention YYENABLE_NLS.
7741 * runtime-po/POTFILES.in: Add data/glr.c, data/lalr1.cc.
7742
7743 Fix yyerror / yylex test glitches noted by twlevo@xs4all.nl.
7744 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Have yyerror return
7745 void, not int.
7746 * tests/glr-regression.at (Badly Collapsed GLR States):
7747 Likewise.
7748 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
7749 yylex should return 0 at EOF rather than aborting.
7750
7751 Improve tests for stack overflow in GLR parser.
7752 Problem reported by twlevo@xs4all.nl.
7753 * data/glr.c (struct yyGLRStack): Remove yyerrflag member.
7754 All uses removed.
7755 (yyStackOverflow): Just longjmp, but with value 2 so that caller
7756 can handle the problem.
7757 (YYCHK1): Use goto (a la yacc.c) rather than setting a flag.
7758 (yyparse): New local variable yyresult to record the result.
7759 Use result of setjmp to set it, rather than storing itinto
7760 struct.
7761 (yyDone): Remove label.
7762 (yyacceptlab, yyabortlab, yyoverflowlab, yyreturn): New labels,
7763 to mimic yacc.c. Do not discard lookahead if it's EOF (possible
7764 if YYABORT is used).
7765 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Exit with
7766 yyparse status; put status > 1 into diagnostic.
7767 Check that status==2 works.
7768 * tests/calc.at, tests/cxx-type.at, tests/glr-regression.at:
7769 Use exit status 3 for failure to open (which shouldn't happen).
7770
7771 2005-07-17 Paul Eggert <eggert@cs.ucla.edu>
7772
7773 * tests/conflicts.at (%nonassoc and eof): Don't exit with status
7774 1 on syntax error; just let yyparse do its thing.
7775 * tests/glr-regression.at (Badly Collapsed GLR States): Likewise.
7776 * tests/torture.at (AT_DATA_STACK_TORTURE): Likewise.
7777 (Exploding the Stack Size with Alloca):
7778 (Exploding the Stack Size with Malloc):
7779 Expect exit status 2, not 1, since the parser is supposed to blow
7780 its stack. Problem reported by twlevo@xs4all.nl.
7781
7782 * data/glr.c (yyparse): Don't assume that the initial calls
7783 to YYMALLOC succeed; in that case, yyparse incorrectly returned 0.
7784 Print a stack-overflow message and fail instead.
7785 Initialize the line-number information before creating the stack,
7786 so that the stack-overflow message can report line zero safely.
7787
7788 2005-07-14 Paul Eggert <eggert@cs.ucla.edu>
7789
7790 Fix problems reported by twlevo@xs4all.nl.
7791 * data/glr.c (YYSTACKEXPANDABLE): Don't define if already defined.
7792 (yyuserMerge): Provide a default case if b4_mergers is empty.
7793 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Define YYSTACKEXPANDABLE.
7794 * tests/glr-regression.at
7795 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
7796 Add casts to pacify C++ compilers.
7797 * tests/glr-regression.at (Improper merging of GLR delayed action
7798 sets): Declare yylex before using it.
7799 * tests/Makefile.am (maintainer-check-g++): Fix a stray
7800 $(GXX) that escaped the renaming of GXX to CXX. Remove bogus
7801 test for valgrind; valgrind is independent of g++.
7802 (maintainer-check-posix): Add _POSIX2_VERSION=200112, to check
7803 for compatibility with POSIX 1003.1-2001 (if running coreutils).
7804 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Port to stricter C++.
7805 Use a destructor, so that we can expand the stack. Change
7806 YYSTYPE to char * so that we can free it. Cast result of malloc.
7807
7808 2005-07-13 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
7809
7810 * data/glr.c (yyuserAction): Fix uninitialized variable that caused
7811 a valgrind failure. Problem reported by twlevo@xs4all.nl.
7812
7813 2005-07-13 Paul Eggert <eggert@cs.ucla.edu>
7814
7815 * PACKAGING: New file, suggested by Bruno Haible and taken from
7816 similar wording in gettext's PACKAGING file.
7817 * NEWS: Mention PACKAGING.
7818 * Makefile.am (EXTRA_DIST): Add PACKAGING.
7819
7820 2005-07-12 Paul Eggert <eggert@cs.ucla.edu>
7821
7822 * NEWS: Document recent i18n improvements.
7823 * bootstrap: Get runtime translations into runtime-po.
7824 Create runtime-po files automatically, if possible.
7825 * configure.ac: Invoke BISON_I18N, so that we eat our own dog food.
7826 * data/yacc.c: Rewrite inclusion of <libintl.h> so that ENABLE_NLS
7827 does not infringe on the user's name space.
7828 (YYENABLE_NLS): Renamed from ENABLE_BISON_NLS.
7829 * doc/bison.texinfo (Internationalization): Revamp the English
7830 and Texinfo syntax a bit, to try to make it clearer.
7831 (Bison Options, Option Cross Key): Mention --print-localedir.
7832 * m4/bison-i18n.m4 (BISON_I18N): Rename ENABLE_BISON_NLS to
7833 YYENABLE_NLS. Quote a bit more.
7834 * runtime-po/.cvsignore: New file.
7835 * runtime-po/Makefile.in.in (mostlyclean): Remove *.old.pot.
7836 * runtime-po/Rules-quot: Remove; now created by bootstrap.
7837 * runtime-po/quot.sed: Likewise.
7838 * runtime-po/boldquot.sed: Likewise.
7839 * runtime-po/en@quot.header: Likewise.
7840 * runtime-po/en@boldquot.header: Likewise.
7841 * runtime-po/insert-header.sin: Likewise.
7842 * runtime-po/remove-potcdate.sin: Likewise.
7843 * runtime-po/Makevars: Likewise.
7844 * runtime-po/LINGUAS: Likewise.
7845 * runtime-po/de.po: Likewise; we will rely on the translation project
7846 to maintain this, so "bootstrap" should get it.
7847 * src/getarg.c (PRINT_LOCALEDIR_OPTION): Let the C compiler determine
7848 its value.
7849 * src/main.c (main): Bind the bison-runtime domain, too.
7850
7851 2005-07-12 Bruno Haible <bruno@clisp.org>
7852
7853 * data/yacc.c: Include <libintl.h> when NLS is enabled.
7854 (YYI18N): Renamed from _. Use dgettext when NLS is enabled.
7855 * po/POTFILES.in: Remove autogenerated file src/parse-gram.c.
7856 * runtime-po: New directory.
7857 * runtime-po/Makefile.in.in: New file, copied from po/, with modified
7858 $(DOMAIN).pot-update rule, so that old messages are never dropped.
7859 * runtime-po/Rules-quot: New file, copied from po/.
7860 * runtime-po/quot.sed: Likewise.
7861 * runtime-po/boldquot.sed: Likewise.
7862 * runtime-po/en@quot.header: Likewise.
7863 * runtime-po/en@boldquot.header: Likewise.
7864 * runtime-po/insert-header.sin: Likewise.
7865 * runtime-po/remove-potcdate.sin: Likewise.
7866 * runtime-po/Makevars: New file.
7867 * runtime-po/POTFILES.in: New file.
7868 * runtime-po/LINGUAS: New file.
7869 * runtime-po/bison-runtime.pot: New file.
7870 * runtime-po/de.po: New file.
7871 * m4/bison.m4: New file.
7872 * Makefile.am (SUBDIRS): Add runtime-po.
7873 (aclocaldir, aclocal_DATA): New variables.
7874 * configure.ac: Add AC_CONFIG_FILES of runtime-po/Makefile.in.
7875 Define aclocaldir.
7876 * src/getargs.c (usage): Document --print-localedir option.
7877 (PRINT_LOCALEDIR_OPTION): New enum item.
7878 (long_options): Add --print-localedir option.
7879 (getargs): Handle --print-localedir option.
7880 * doc/bison.texinfo (Bison Parser): Remove paragraph about _().
7881 (Internationalization): New section.
7882
7883 2005-07-12 Akim Demaille <akim@epita.fr>
7884
7885 * src/symtab.h, src/symtab.c (symbol_print): Swap the arguments,
7886 for consistency with the rest of the code.
7887 * src/symlist.h, src/symlist.c (symbol_list_print): Ditto.
7888 Add separators.
7889
7890 2005-07-12 Akim Demaille <akim@epita.fr>
7891
7892 * src/parse-gram.y: Use %printer instead of YYPRINT.
7893
7894 2005-07-12 Akim Demaille <akim@epita.fr>
7895
7896 * src/symtab.h, src/symtab.c (symbol_print): New.
7897 * src/symlist.h, src/symlist.c (symbol_list_print): New.
7898 * src/symlist.c (symbol_list_n_type_name_get): Report the culprit.
7899
7900 2005-07-12 Akim Demaille <akim@epita.fr>
7901
7902 * data/glr.c (b4_syncline): Fix (swap) the definitions of
7903 b4_at_dollar and b4_dollar_dollar.
7904
7905 2005-07-11 Paul Eggert <eggert@cs.ucla.edu>
7906
7907 * doc/bison.texinfo (Mystery Conflicts): Add reference to DeRemer
7908 and Pennello's paper.
7909
7910 2005-07-09 Paul Eggert <eggert@cs.ucla.edu>
7911
7912 * data/yacc.c (yyparse): Undo previous patch. Instead,
7913 set yylsp[0] and yyvsp[0] only if the initial action
7914 sets yylloc and yylval, respectively.
7915
7916 * data/yacc.c (yyparse): In the initial action, set
7917 yylsp[0] and yyvsp[0] rather than yylloc and yylval.
7918 This avoids the use of undefined variables if the initial
7919 action does not set yylloc and/or yylval.
7920
7921 2005-07-07 Paul Eggert <eggert@cs.ucla.edu>
7922
7923 * examples/calc++/calc++-driver.cc, examples/calc++/calc++-driver.hh:
7924 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc:
7925 Remove from CVS. These files are automatically generated.
7926 * examples/extexi: Clarify that this file is now part of Bison,
7927 not GNU M4, and that it works with any POSIX-compatible Awk.
7928 * examples/calc++/Makefile.am (run_extexi): Remove; not used.
7929 ($(calc_extracted)): Renamed from $(calc_sources_extracted),
7930 so that we also get calc++-parser.yy. Geneate it.
7931 Use $(AWK), not gawk, since any conforming Awk will do.
7932 Put comment before action, since older 'make' can't handle comment
7933 in action.
7934 $(BUILT_SOURCES): List all built sources, not just some of them.
7935 $(MAINTAINERCLEANFILES): Remove *.stamp, and all built sources.
7936 $($(srcdir)/calc++-parser.stamp): Work even if POSIXLY_CORRECT.
7937 $($(calc_sources_generated)): Remove unnecessary test for existence
7938 of target. (This had a shell syntax error anyway; a stray "x".)
7939 (calc_extracted): List $(srcdir)/calc++-parser.yy, not
7940 calc++-parser.yy.
7941 * examples/.cvsignore, examples/calc++/.cvsignore: New files.
7942
7943 * bootstrap (gnulib_modules): Add gettext, now that it's no longer
7944 implied by the other modules.
7945
7946 2005-07-06 Akim Demaille <akim@epita.fr>
7947
7948 Bind examples/calc++ to the package.
7949 * examples/calc++/Makefile: Remove, replaced by...
7950 * examples/calc++/Makefile.am: ... this new file.
7951 * examples/calc++/test: Remove input.
7952 * examples/calc++/compile: Remove.
7953 * examples/Makefile.am: New.
7954 * configure.ac, Makefile.am: Adjust.
7955 * doc/Makefile.am (clean-local): New, for more recent texi2dvis.
7956
7957 2005-07-05 Paul Eggert <eggert@cs.ucla.edu>
7958
7959 * data/glr.c (yyFail): Drastically simplify; since the format argument
7960 never had any % directives, we can simply pass it to yyerror.
7961 (yyparse): Use "t a; a=b;" rather than "t a = b;" when a will
7962 be modified later, as that is the usual style in glr.c.
7963 Problems reported by Paul Hilfinger.
7964
7965 Rewrite GLR parser to catch more buffer overrun, storage exhaustion,
7966 and size overflow errors.
7967 * data/glr.c: Include <stdio.h> etc. after user prolog, not before,
7968 in case the user prolog sets feature-test macros like _GNU_SOURCE.
7969 (YYSIZEMAX): New macro.
7970 (yystpcpy): New function, taken from yacc.c.
7971 (struct yyGLRStack.yyspaceLeft): Now size_t, not int.
7972 (yyinitGLRStack, yyfreeGLRstack): Remove unnecessary forward decls,
7973 so that we don't have to maintain their signatures.
7974 (yyFail): Check for buffer overflow, by using vsnprintf rather
7975 than vsprintf. Allocate a bigger buffer if possible.
7976 Report an error if buffer allocation fails.
7977 (yyStackOverflow): New function.
7978 (yyinitStateSet, yyinitGLRStack): Return a boolean indicating whether
7979 the initialization was successful. It might fail if storage was
7980 exhausted.
7981 (yyexpandGLRStack): Add more checks for storage allocation failure.
7982 Use yyStackOverflow to report failures.
7983 (yymarkStackDeleted, yyglrShift, yyglrShiftDefer, yydoAction):
7984 (yysplitStack, yyprocessOneStack, yyparse, yypstack):
7985 Don't assume stack number fits in int.
7986 (yysplitStack): Check for storage allocation failure.
7987 (yysplitStack, yyprocessOneStack): Add pure_formals, so that we
7988 can print diagnostics on storage allocation failure. All callers
7989 changed.
7990 (yyresolveValue): Use yybool for boolean.
7991 (yyreportSyntaxError): Check for size-calculation overflow.
7992 This code is taken from yacc.c.
7993 (yyparse): Check for storage allocation errors when allocating
7994 the initial stack.
7995
7996 2005-07-05 Akim Demaille <akim@epita.fr>
7997
7998 Extract calc++ from the documentation.
7999 * doc/bison.texinfo (Calc++): Add the extraction marks.
8000 * examples/extexi: New, from the aborted GNU Programming 2E.
8001 Separate the different paragraph of a file with empty lines.
8002 * examples/Makefile: Use it to extract the whole calc++ example.
8003
8004 2005-06-24 Akim Demaille <akim@epita.fr>
8005
8006 * doc/bison.texinfo (C++ Parser Interface): Use defcv to define
8007 class typedefs.
8008
8009 2005-06-22 Akim Demaille <akim@epita.fr>
8010
8011 * doc/bison.texinfo (C++ Language Interface): First stab.
8012 (C++ Parsers): Remove.
8013
8014 2005-06-22 Akim Demaille <akim@epita.fr>
8015
8016 * data/lalr1.cc (yylex_): Honor %lex-param.
8017
8018 2005-06-22 Akim Demaille <akim@epita.fr>
8019
8020 Start a set of simple examples.
8021 * examples/calc++/Makefile, examples/calc++/calc++-driver.cc,
8022 * examples/calc++/calc++-driver.hh,
8023 * examples/calc++/calc++-parser.yy,
8024 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc,
8025 * examples/calc++/compile, examples/calc++/test: New.
8026
8027 2005-06-09 Paul Eggert <eggert@cs.ucla.edu>
8028
8029 * data/yacc.c (malloc, free) [defined __cplusplus]: Wrap inside
8030 extern "C" {}. This fixes a problem reported by Paul Hilfinger,
8031 which stems from the 2005-05-27 patch.
8032
8033 2005-06-06 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
8034
8035 * data/glr.c: Modify treatment of unused parameters to permit use
8036 of g++ (which doesn't allow __attribute__ ((unused)) for parameters).
8037
8038 2005-05-30 Paul Eggert <eggert@cs.ucla.edu>
8039
8040 Fix infringement on user name space reported by Janos Zoltan Szabo.
8041 * data/yacc.c (yyparse): strlen -> yystrlen.
8042
8043 2005-05-30 Akim Demaille <akim@epita.fr>
8044
8045 * data/lalr1.cc (_): New.
8046 Translate the various messages.
8047
8048 2005-05-27 Paul Eggert <eggert@cs.ucla.edu>
8049
8050 Fix infringement on user name space reported by Bruno Haible.
8051 * data/yacc.c (YYSIZE_T): Define first, so that later decls can use it.
8052 Prefer GCC's __SIZE_TYPE__ if available, so that we don't infringe on
8053 the user's name space.
8054 (alloca): Include <stdlib.h> to get it, if it's not built in.
8055 (YYMALLOC, YYFREE): Define only if needed.
8056 (malloc, free): Declare, but only if needed, as this infringes on
8057 the user name space.
8058
8059 2005-05-25 Paul Eggert <eggert@cs.ucla.edu>
8060
8061 Fix BeOS, FreeBSD, MacOS porting problems reported by Bruno Haible.
8062 * lib/bitset.c (bitset_print): Don't assume size_t can be printed
8063 with %d format.
8064 * lib/ebitset.c (min, max): Undef before defining.
8065 * lib/vbitset.c (min, max): Likewise.
8066 * lib/subpipe.c (create_subpipe): Save local variables in case
8067 vfork clobbers them.
8068
8069 2005-05-24 Bruno Haible <bruno@clisp.org>
8070
8071 * tests/synclines.at (AT_SYNCLINES_COMPILE): Add support for the
8072 error message syntax used by gcc-4.0.
8073
8074 2005-05-23 Paul Eggert <eggert@cs.ucla.edu>
8075
8076 * README: Mention m4 1.4.3. Remove obsolete advice about
8077 Sun Forte Developer 6 update 2, VMS, and MS-DOS.
8078
8079 * bootstrap: Remove workaround for problem I encountered with
8080 gettext 0.14.1; it seems to be fixed now.
8081
8082 2005-05-22 Paul Eggert <eggert@cs.ucla.edu>
8083
8084 * NEWS: Version 2.0a.
8085
8086 * src/files.c: Include "stdio-safer.h"; this fixes a typo in
8087 the previous change.
8088
8089 Various maintainer cleanups.
8090 * .cvsignore: Add a.exe, a.out, b.out,, conf[0-9]*, confdefs*,
8091 conftest*, for benefit of CVS commands run at the same time as
8092 "configure". Add build-aux, since "bootstrap" now creates it and
8093 its subfiles.
8094 * Makefile.cfg (move_if_change): Remove.
8095 * Makefile.maint: Remove the update stuff; we now use "bootstrap".
8096 (ftp-gnu, www-gnu, move_if_change, local_updates, update):
8097 (po_repo, do-po-update, po-update, wget_files, get-targets):
8098 (config.guess-url_prefix, config.sub-url_prefix):
8099 (ansi2knr.c-url_prefix, texinfo.tex-url_prefix):
8100 (standards.texi-url_prefix, make-stds.texi-url_prefix, taget, url):
8101 ($(get-targets), cvs-files, automake_repo, wget-update, cvs-update):
8102 Remove.
8103 * configure.ac (AC_CONFIG_AUX_DIR): Change from config to build-aux;
8104 this is now the recommended name.
8105 * config/.cvsignore: Remove config.guess, config.rpath, config.sub,
8106 depcomp, install-sh, mdate-sh, missing, mkinstalldirs, texinfo.tex,
8107 ylwrap. These files now go into build-aux.
8108 * config/move-if-change: Remove.
8109 * config/prev-version.txt: Bump from 1.75 to 2.0.
8110
8111 * bootstrap: Add stdio-safer, unistd-safer modules.
8112 Remove m4/glibc2.m4 (introduced by latest gnulib, but
8113 we don't need it).
8114 * lib/.cvsignore: Add dup-safer.c, fd-safer.c,
8115 fopen-safer.c, stdio-safer.h, unistd-safer.h.
8116 * lib/subpipe.c: Include "unistd-safer.h".
8117 (create_subpipe): Make sure all the newly-created
8118 file descriptors are > 2, so that diagnostics don't
8119 get sent down them (which might cause Bison to hang, in theory).
8120 * m4/.cvsignore: Add stdio-safer.m4, unistd-safer.m4.
8121 * src/files.c (xfopen): Use fopen_safer, not fopen.
8122
8123 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Port
8124 yesterday's yacc.c fix.
8125
8126 2005-05-21 Paul Eggert <eggert@cs.ucla.edu>
8127
8128 * data/glr.c, data/lalr1.cc: Update copyright date.
8129
8130 Fix a destructor bug reported by Wolfgang Spraul in
8131 <http://lists.gnu.org/archive/html/bug-bison/2005-05/msg00042.html>.
8132 * data/yacc.c (yyabortlab): Don't call destructor, and
8133 don't set yychar to EMPTY.
8134 (yyoverflowlab): Don't call destructor.
8135 (yyreturn): Call destructor, if yychar is neither YYEOF nor YYEMPTY.
8136 * tests/calc.at (AT_CHECK_CALC): Expect one fewer output lines,
8137 since we no longer output the message "discarding lookahead token
8138 end of input ()".
8139
8140 2005-05-20 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
8141
8142 * data/glr.c (YY_SYMBOL_PRINT): Don't print newline at end to
8143 fix a small glitch in debugging output.
8144 (yyprocessOneStack, yyrecoverSyntaxError, yyparse): Print newline
8145 after YY_SYMBOL_PRINT where needed.
8146
8147 (struct yyGLRState): Add some comments.
8148 (struct yySemanticOption): Add some comments.
8149 (union yyGLRStackItem): Add comment.
8150
8151 (yymergeOptionSets): Correct this to properly perform the union,
8152 avoiding infinite reported by Michael Rosien.
8153 Update comment.
8154
8155 * tests/glr-regression.at: Add test for GLR merging error reported
8156 by M. Rosien.
8157
8158 2005-05-13 Paul Eggert <eggert@cs.ucla.edu>
8159
8160 * COPYING, ChangeLog, GNUmakefile, HACKING, Makefile.am,
8161 Makefile.cfg, Makefile.maint, NEWS, README, README-alpha,
8162 README-cvs, TODO, bootstrap, configure.ac, data/Makefile.am,
8163 data/README, data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c,
8164 data/m4sugar/m4sugar.m4, doc/Makefile.am, doc/bison.texinfo,
8165 doc/fdl.texi, doc/gpl.texi, doc/refcard.tex, lib/Makefile.am,
8166 lib/abitset.c, lib/abitset.h, lib/bbitset.h, lib/bitset.c,
8167 lib/bitset.h, lib/bitset_stats.c, lib/bitset_stats.h,
8168 lib/bitsetv-print.c, lib/bitsetv-print.h, lib/bitsetv.c,
8169 lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/get-errno.c,
8170 lib/get-errno.h, lib/lbitset.c, lib/lbitset.h, lib/libiberty.h,
8171 lib/main.c, lib/subpipe.c, lib/subpipe.h, lib/timevar.c,
8172 lib/timevar.def, lib/timevar.h, lib/vbitset.c, lib/vbitset.h,
8173 lib/yyerror.c, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4, m4/timevar.m4,
8174 m4/warning.m4, src/LR0.c, src/LR0.h, src/Makefile.am, src/assoc.c,
8175 src/assoc.h, src/closure.c, src/closure.h, src/complain.c,
8176 src/complain.h, src/conflicts.c, src/conflicts.h, src/derives.c,
8177 src/derives.h, src/files.c, src/files.h, src/getargs.c,
8178 src/getargs.h, src/gram.c, src/gram.h, src/lalr.c, src/lalr.h,
8179 src/location.c, src/location.h, src/main.c, src/muscle_tab.c,
8180 src/muscle_tab.h, src/nullable.c, src/nullable.h, src/output.c,
8181 src/output.h, src/parse-gram.c, src/parse-gram.h,
8182 src/parse-gram.y, src/print.c, src/print.h, src/print_graph.c,
8183 src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c,
8184 src/reduce.h, src/relation.c, src/relation.h, src/scan-gram.l,
8185 src/scan-skel.l, src/state.c, src/state.h, src/symlist.c,
8186 src/symlist.h, src/symtab.c, src/symtab.h, src/system.h,
8187 src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h,
8188 src/vcg.c, src/vcg.h, src/vcg_defaults.h, tests/Makefile.am,
8189 tests/actions.at, tests/c++.at, tests/calc.at, tests/conflicts.at,
8190 tests/cxx-type.at, tests/existing.at, tests/glr-regression.at,
8191 tests/headers.at, tests/input.at, tests/local.at, tests/output.at,
8192 tests/reduce.at, tests/regression.at, tests/sets.at,
8193 tests/synclines.at, tests/testsuite.at, tests/torture.at:
8194 Update FSF postal mail address.
8195
8196 2005-05-11 Paul Eggert <eggert@cs.ucla.edu>
8197
8198 * tests/local.at (AT_COMPILE_CXX): Treat LDFLAGS like AT_COMPILE does.
8199 Problem reported by Ralf Menzel.
8200
8201 2005-05-01 Paul Eggert <eggert@cs.ucla.edu>
8202
8203 * tests/actions.at: Test that stack overflow invokes destructors.
8204 From Marcus Holland-Moritz.
8205 * data/yacc.c (yyerrlab): Move the code that destroys the stack
8206 from here....
8207 (yyreturn): to here. That way, destructors are called properly
8208 even if the stack overflows, or the user calls YYACCEPT or
8209 YYABORT. Stack-overflow problem reported by Marcus Holland-Moritz.
8210 (yyoverflowlab): Destroy the lookahead.
8211
8212 2005-04-24 Paul Eggert <eggert@cs.ucla.edu>
8213
8214 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): Add more-descriptive comment.
8215
8216 2005-04-17 Paul Eggert <eggert@cs.ucla.edu>
8217
8218 * NEWS: Bison-generated C parsers no longer quote literal strings
8219 associated with tokens.
8220 * src/output.c (prepare_symbols): Don't escape strings,
8221 since users don't want to see C escapes.
8222 * tests/calc.at (AT_CHECK_CALC): Adjust to lack of quotes
8223 in diagnostics.
8224 * tests/input.at (Torturing the Scanner): Likewise.
8225 * tests/regression.at (Token definitions, Web2c Actions): Likewise.
8226
8227 2005-04-16 Paul Eggert <eggert@cs.ucla.edu>
8228
8229 * tests/torture.at (AT_INCREASE_DATA_SIZE): Skip the test if
8230 the data size is known to be too small and we can't increase it.
8231 This works around an HP-UX 11.00 glitch reported by Andrew Benham.
8232
8233 2005-04-15 Paul Eggert <eggert@cs.ucla.edu>
8234
8235 * src/parse-gram.y: Include quotearg.h.
8236 (string_as_id): Quote $1 before using it as a key, since the
8237 lexer no longer quotes it for us.
8238 (string_content): Don't strip quotes, since lexer no longer
8239 quotes it for us.
8240 * src/scan-gram.l: Include quotearg.h.
8241 ("\""): Omit quote.
8242 ("'"<SC_ESCAPED_CHARACTER>): Quote symbol before using it as
8243 a key, since the rest of the lexer doesn't quote it.
8244 * src/symtab.c (symbol_get): Don't quote symbol; caller does it now.
8245 * tests/regression.at (Token definitions): Check for backslashes
8246 in token strings.
8247
8248 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): New macro.
8249 (YYSIZE_T): Define to unsigned long int when using an older compiler.
8250 (yyparse): Revamp code to generate long syntax error message, to
8251 make it easier to translate, and to avoid problems with arithmetic
8252 overflow. Change "virtual memory" to "memory" in diagnostic, since
8253 we don't know whether the memory is virtual.
8254
8255 2005-04-13 Paul Eggert <eggert@cs.ucla.edu>
8256
8257 * NEWS: Bison-generated C parsers now use the _ macro to
8258 translate strings.
8259 * data/yacc.c (_) [!defined _]: New macro.
8260 All English strings wrapped inside this macro.
8261 * doc/bison.texinfo (Bison Parser): Document _.
8262 * po/POTFILES.in: Include src/parse-gram.c, since it now
8263 includes translateable strings that parse-gram.y doesn't.
8264
8265 2005-04-12 Paul Eggert <eggert@cs.ucla.edu>
8266
8267 * src/symtab.c (symbol_make_alias): Call symbol_type_set,
8268 reverting the 2004-10-11 change to this function.
8269 (symbol_check_alias_consistency): Don't call symbol_type_set
8270 if the type name is already correct.
8271 * tests/input.at (Typed symbol aliases): New test, from Tim Van Holder.
8272
8273 2005-03-25 Paul Eggert <eggert@cs.ucla.edu>
8274
8275 * tests/regression.at (Token definitions): Don't use a token named
8276 c, as that generates a "#define c ..." that runs afoul of buggy
8277 stdlib.h that uses the identifier c as a member of struct
8278 drand48_data. Problem reported by Horst Wente.
8279
8280 2005-03-21 Paul Eggert <eggert@cs.ucla.edu>
8281
8282 * bootstrap: Change translation URL from
8283 http://www2.iro.umontreal.ca/~gnutra/po/maint/bison/ to
8284 http://www.iro.umontreal.ca/translation/maint/bison/ to avoid
8285 redirection glitches. Problem reported by twlevo@xs4all.nl.
8286
8287 2005-03-20 Paul Eggert <eggert@cs.ucla.edu>
8288
8289 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Don't put options
8290 after operands; POSIX says this isn't portable for the c99 command.
8291
8292 2005-03-18 Paul Eggert <eggert@cs.ucla.edu>
8293
8294 * tests/glr-regression.at (glr-regr2a.y): Try to dump core
8295 immediately if a data overrun has occurred; this may help us track
8296 down what may be a spurious failure on MacOS.
8297
8298 2005-03-17 Paul Eggert <eggert@cs.ucla.edu>
8299
8300 Respond to problems reported by twlevo@xs4all.nl.
8301
8302 * bootstrap: Use "trap - 0" rather than the unportable "trap 0".
8303
8304 * src/vcg.h: Comment fix.
8305 * src/vcg_defaults.h: Parenthesize macro bodies to make them safe.
8306 (G_CMAX): Change to -1 instead of INT_MAX.
8307
8308 * data/yacc.c (yyparse): Omit spaces before #line.
8309
8310 2005-03-15 Paul Eggert <eggert@cs.ucla.edu>
8311
8312 * src/tables.c (state_number_to_vector_number): Put it inside an
8313 "#if 0", since it's not currently used. Problem reported by
8314 Roland McGrath.
8315
8316 2005-03-06 Paul Eggert <eggert@cs.ucla.edu>
8317
8318 * src/output.c (escaped_output): Renamed from
8319 escaped_file_name_output, since we now use it for symbol tags as
8320 well. All uses changed.
8321 (symbol_destructors_output, symbol_printers_output):
8322 Escape symbol tags too.
8323 Problem reported by Matyas Forstner in
8324 <http://lists.gnu.org/archive/html/bug-bison/2005-03/msg00009.html>.
8325
8326 * src/muscle_tab.c (muscle_code_grow): Don't quote numbers; it's
8327 not needed.
8328 * src/output.c (user_actions_output, token_definitions_output,
8329 symbol_destructors_output, symbol_printers_output): Likewise.
8330 * src/reader.c (prologue_augment): Likewise.
8331 * src/scan-gram.l (handle_action_dollar, handle_action_at): Likewise.
8332
8333 * src/vcg.c (output_edge): Don't quote linestyle arg.
8334 Problem reported by twlevo@xs4all.nl.
8335
8336 2005-02-28 Paul Eggert <eggert@cs.ucla.edu>
8337
8338 * doc/bison.texinfo (Semantic Tokens): Fix scoping problem in
8339 example, reported by Derek M Jones. Also, make the example even
8340 more outrageous, to better illustrate how bad the problem is.
8341
8342 2005-02-24 Paul Eggert <eggert@cs.ucla.edu>
8343
8344 * doc/bison.texinfo (Mfcalc Symtab): Correct the prototype for
8345 putsym. Typo reported by Sebastian Piping.
8346
8347 2005-02-23 Paul Eggert <eggert@cs.ucla.edu>
8348
8349 * doc/bison.texinfo (Language and Grammar): some -> same
8350 (Epilogue): int he -> in the
8351 Typos reported by Sebastian Piping via Justin Pence.
8352
8353 2005-02-07 Paul Eggert <eggert@cs.ucla.edu>
8354
8355 * tests/glr-regression.at (Improper handling of embedded actions
8356 and dollar(-N) in GLR parsers): Renamed from "Improper handling of
8357 embedded actions and $-N in GLR parsers", work around an Autoconf bug
8358 with dollar signs in test names.
8359 * tests/input.at (Invalid dollar-n): Renamed from "Invalid \$n",
8360 for a similar reason.
8361
8362 2005-01-28 Paul Eggert <eggert@cs.ucla.edu>
8363
8364 * src/vcg.c (output_graph): G_VIEW -> normal_view in case someone
8365 wants to redefine G_VIEW.
8366
8367 2005-01-27 Paul Eggert <eggert@cs.ucla.edu>
8368
8369 * src/vcg.c (get_view_str): Remove case for normal_view.
8370 Problem reported by twlevo@xs4all.nl.
8371
8372 2005-01-24 Paul Eggert <eggert@cs.ucla.edu>
8373
8374 * configure.ac (O0CFLAGS, O0CXXFLAGS): Fix quoting bug.
8375 Problem reported by twlevo@xs4all.nl.
8376
8377 * doc/bison.texinfo: Change @dircategory from "GNU programming
8378 tools" to "Software development". Requested by Richard Stallman
8379 via Karl Berry.
8380
8381 2005-01-23 Paul Eggert <eggert@cs.ucla.edu>
8382
8383 * tests/c++.at (AT_CHECK_DOXYGEN): Don't use options after operands.
8384 Problem reported by twlevo@xs4all.nl.
8385
8386 2005-01-21 Paul Eggert <eggert@cs.ucla.edu>
8387
8388 * data/yacc.c (YYCOPY, yystpcpy, yyparse): Remove "register"
8389 keyword; it's not needed with modern compilers, and it doesn't
8390 affect correctness with older compilers. Suggested by
8391 twlevo@xs4all.nl.
8392
8393 2005-01-17 Paul Eggert <eggert@cs.ucla.edu>
8394
8395 * data/glr.c (yyuserAction): Add "default: break;" case to pacify
8396 gcc -Wswitch-default.
8397 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
8398 * data/yacc.c (yyparse): Likewise.
8399
8400 2005-01-12 Paul Eggert <eggert@cs.ucla.edu>
8401
8402 * src/system.h (OUTPUT_EXT, TAB_EXT): Define only if not defined
8403 already. Let config.h define any nonstandard values.
8404
8405 2005-01-10 Paul Eggert <eggert@cs.ucla.edu>
8406
8407 * tests/calc.at (_AT_DATA_CALC_Y): Use alarm (100), not alarm (10),
8408 for the benefit of slower hosts. Problem reported by
8409 Nelson H. F. Beebe.
8410
8411 2005-01-07 Paul Eggert <eggert@cs.ucla.edu>
8412
8413 * data/yacc.c (yyparse): Pacify non-GCC compilers about yyerrorlab
8414 being defined and not used.
8415 * data/lalr1.cc (yyparse): Likewise.
8416 Use "if (false)" rather than "if (0)".
8417
8418 2005-01-05 Paul Eggert <eggert@cs.ucla.edu>
8419
8420 * TODO: Mention that we should allow NUL bytes in tokens.
8421
8422 2005-01-02 Paul Eggert <eggert@cs.ucla.edu>
8423
8424 * src/scan-skel.l (<<EOF>>): Don't close standard output.
8425 Problem reported by Hans Aberg.
8426
8427 2005-01-01 Paul Eggert <eggert@cs.ucla.edu>
8428
8429 * src/getargs.c (version): Happy new year; update overall
8430 program copyright date from 2004 to 2005.
8431
8432 * src/scan-skel.l ("@output ".*\n): Don't close standard output.
8433 Problem reported by Hans Aberg.
8434 * tests/output.at (AT_CHECK_OUTPUT): New arg SHELLIO.
8435 (Output file names.): Add a test for the case when standard output
8436 is closed.
8437
8438 2004-12-26 Paul Eggert <eggert@cs.ucla.edu>
8439
8440 * doc/bison.texinfo (@copying): Update FDL version number to 1.2,
8441 to fix an oversight in the Bison 2.0 manual.
8442
8443 2004-12-25 Paul Eggert <eggert@cs.ucla.edu>
8444
8445 * NEWS: Version 2.0. Reformat the existing news items since
8446 1.875, so that related items are grouped together.
8447 * configure.ac (AC_INIT): Bump version to 2.0.
8448 * src/parse-gram.c, src/parse-gram.h: Regenerate with 2.0.
8449
8450 * tests/torture.at (Exploding the Stack Size with Alloca): Set
8451 YYSTACK_USE_ALLOCA to 1 if __GNUC__ or alloca are defined;
8452 otherwise, we're not testing alloca. Unfortunately there's no
8453 simple way to consult HAVE_ALLOCA here.
8454
8455 * data/lalr1.cc (yydestruct_): Pacify unused variable warning
8456 for yymsg, too.
8457
8458 * src/LR0.c (new_itemsets): Use memset rather than zeroing by
8459 hand. This avoids a warning about comparing int to size_t when
8460 GCC warnings are enabled.
8461
8462 2004-12-22 Paul Eggert <eggert@cs.ucla.edu>
8463
8464 * NEWS: Bison-generated parsers no longer default to using the
8465 alloca function (when available) to extend the parser stack, due
8466 to widespread problems in unchecked stack-overflow detection.
8467 * data/glr.c (YYMAXDEPTH): Remove undef when zero. It's the user's
8468 responsibility to set it to a positive value. This lets the user
8469 specify a value that is not a preprocessor constant.
8470 * data/yacc.c (YYMAXDEPTH): Likewise.
8471 (YYSTACK_ALLOC): Define only if YYSTACK_USE_ALLOCA is nonzero.
8472 * doc/bison.texinfo (Stack Overflow): YYMAXDEPTH no longer needs
8473 to be a compile-time constant. However, explain the constraints on it.
8474 Also, explain the constraints on YYINITDEPTH.
8475 (Table of Symbols): Explain that alloca is no longer the default.
8476 Explain the user's responsibility if they define YYSTACK_USE_ALLOCA
8477 to 1.
8478
8479 * doc/bison.texinfo (Location Default Action): Mention that n must
8480 be zero when k is zero. Suggested by Frank Heckenbach.
8481
8482 2004-12-22 Akim Demaille <akim@epita.fr>
8483
8484 * data/lalr1.cc (parser::token_number_type, parser::rhs_number_type)
8485 (parser::state_type, parser::semantic_type, parser::location_type):
8486 Private, not public.
8487 (parser::parse): Return ints, not bool.
8488 Returning a bool introduces a problem: 0 corresponds to false, and
8489 it seems weird to return false on success. Returning true changes
8490 the conventions for yyparse.
8491 Alternatively we could return void and send an exception.
8492 There is no clear consensus (yet?).
8493 (state_stack, semantic_stack, location_stack): Rename as...
8494 (state_stack_type, semantic_stack_type, location_stack_type): these.
8495 Private, not public.
8496 * tests/c++.at: New.
8497 * tests/testsuite.at, tests/Makefile.am: Adjust.
8498
8499 2004-12-21 Akim Demaille <akim@epita.fr>
8500
8501 * data/lalr1.cc (parser::parse): Return a bool instead of an int.
8502
8503 2004-12-21 Akim Demaille <akim@epita.fr>
8504
8505 Don't impose std::string for filenames.
8506
8507 * data/lalr1.cc (b4_filename_type): New.
8508 (position::filename): Use it.
8509 (parser.hh): Move the inclusion of stack.hh and location.hh below
8510 the user code, so that needed headers for the filename type can be
8511 included first.
8512 Forward declare them before the user code.
8513 * tests/Makefile.am (check-local, installcheck-local): Pass
8514 TESTSUITEFLAGS to the TESTSUITE.
8515
8516 2004-12-20 Akim Demaille <akim@epita.fr>
8517
8518 Use more STL like names: my_class instead of MyClass.
8519
8520 * data/lalr1.cc (LocationStack, LocationType, RhsNumberType)
8521 (SemanticStack, SemanticType, StateStack, StateType)
8522 (TokenNumberType, Stack, Slice, Traits, Parser::location)
8523 (Parser::value): Rename as...
8524 (location_stack, location_type, rhs_number_type, semantic_stack)
8525 (semantic_type, state_stack, state_type, token_number_type, stack)
8526 (slice, traits, parser::yylloc, parser::yylval): these.
8527
8528 * tests/calc.at, tests/regression.at, tests/actions.at: Adjust.
8529
8530 2004-12-19 Paul Eggert <eggert@cs.ucla.edu>
8531
8532 * data/glr.c (YYLLOC_DEFAULT): Use GNU spacing conventions.
8533 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
8534
8535 2004-12-17 Paul Eggert <eggert@cs.ucla.edu>
8536
8537 Remove uses of 'short int' and 'unsigned short int'. This raises
8538 some arbitrary limits. It uses more memory but nowadays that's
8539 not much of an issue.
8540
8541 This change does not affect the generated parsers; that's a different
8542 task, as some users will want to conserve memory there.
8543
8544 Ideally we should use size_t to represent all object counts, and
8545 something like ptrdiff_t to represent signed differences of object
8546 counts; but that will require more code-cleanup than I have the
8547 time to do right now.
8548
8549 * src/LR0.c (allocate_itemsets, new_itemsets, save_reductions):
8550 Use size_t, not int or short int, to count objects.
8551 * src/closure.c (nritemset, closure): Likewise.
8552 * src/closure.h (nritemset, closure): Likewise.
8553 * src/nullable.c (nullable_compute): Likewise.
8554 * src/print.c (print_core): Likewise.
8555 * src/print_graph.c (print_core): Likewise.
8556 * src/state.c (state_compare, state_hash): Likewise.
8557 * src/state.h (struct state): Likewise.
8558 * src/tables.c (default_goto, goto_actions): Likewise.
8559
8560 * src/gram.h (rule_number, rule): Use int, not short int.
8561 * src/output.c (prepare_rules): Likewise.
8562 * src/state.h (state_number, STATE_NUMBER_MAXIMUM, transitions,
8563 errs, reductions): Likewise.
8564 * src/symtab.h (symbol_number, SYMBOL_NUMBER_MAXIMUM, struct symbol):
8565 Likewise.
8566 * src/tables.c (vector_number, tally, action_number,
8567 ACTION_NUMBER_MINIMUM): Likewise.
8568 * src/output.c (muscle_insert_short_int_table): Remove.
8569
8570 2004-12-17 Akim Demaille <akim@epita.fr>
8571
8572 * data/lalr1.cc: Extensive Doxygenation.
8573 (error_): Rename as...
8574 (error): this, since it is visible to the user.
8575 Adjust callers.
8576 (Parser::message): Now an automatic variable from...
8577 (Parser::yyreport_syntax_error_): here.
8578 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust to
8579 Parser::error.
8580 * tests/input.at: Escape $.
8581
8582 2004-12-16 Paul Eggert <eggert@cs.ucla.edu>
8583
8584 * data/glr.c (b4_lhs_value, b4_rhs_value, b4_rhs-location):
8585 Parenthesize rhs to avoid obscure problems with mistakes like
8586 "foo$$bar = foo$1bar;". Problem reported by twlevo at xs4all.
8587 * data/lalr1.cc (b4_lhs_value, b4_rhs_value, b4_lhs_location,
8588 b4_rhs_location): Likewise.
8589 * data/yacc.c (b4_lhs_value, b4_rhs_value, b4_lhs_location,
8590 b4_rhs_location): Likewise.
8591
8592 2004-12-16 Akim Demaille <akim@epita.fr>
8593
8594 * data/lalr1.cc (yyreport_syntax_error_): Catch up with glr.c and
8595 yacc.c: be sure to stay within yycheck_.
8596 * tests/actions.at: Re-enable C++ tests.
8597
8598 2004-12-16 Akim Demaille <akim@epita.fr>
8599
8600 * src/print_graph.c (print_graph): Remove layoutalgorithm uses for
8601 real.
8602
8603 2004-12-16 Akim Demaille <akim@epita.fr>
8604
8605 Use #define to handle the %name-prefix.
8606
8607 * data/glr.c, data/yacc.c: Comment changes.
8608 * data/lalr1.cc (yylex): Use #define to select the name of yylex,
8609 so that one can refer to yylex in the parser file, and have it
8610 renamed, as is the case with other skeletons.
8611
8612 2004-12-16 Akim Demaille <akim@epita.fr>
8613
8614 Move lalr1.cc internals into yy*.
8615
8616 * data/lalr1.cc (semantic_stack_, location_stack_, state_stack_)
8617 (semantic_stack_, location_stack_, pact_, pact_ninf_, defact_)
8618 (pgoto_, defgoto_, table_, table_ninf_, check_, stos_, r1_, r2_)
8619 (name_, rhs_, prhs_, rline_, token_number_, eof_, last_, nnts_)
8620 (empty_, final_, terror_, errcode_, ntokens_)
8621 (user_token_number_max_, undef_token_, n_, len_, state_, nerrs_)
8622 (looka_, ilooka_, error_range_, nerrs_):
8623 Rename as...
8624 (yysemantic_stack_, yylocation_stack_, yystate_stack_)
8625 (yysemantic_stack_, yylocation_stack_, yypact_, yypact_ninf_)
8626 (yydefact_, yypgoto_, yydefgoto_, yytable_, yytable_ninf_)
8627 (yycheck_, yystos_, yyr1_, yyr2_, yyname_, yyrhs_, yyprhs_)
8628 (yyrline_, yytoken_number_, yyeof_, yylast_, yynnts_, yyempty_)
8629 (yyfinal_, yyterror_, yyerrcode_, yyntokens_)
8630 (yyuser_token_number_max_, yyundef_token_, yyn_, yylen_, yystate_)
8631 (yynerrs_, yylooka_, yyilooka_, yyerror_range_, yynerrs_):
8632 these.
8633
8634 2004-12-15 Paul Eggert <eggert@cs.ucla.edu>
8635
8636 Fix some problems reported by twlevo at xs4all.
8637 * src/symtab.c (symbol_new): Report an error if the input grammar
8638 contains too many symbols. This is better than calling abort() later.
8639 * src/vcg.h (enum layoutalgorithm): Remove. All uses removed.
8640 (struct node, struct graph):
8641 Rename member expand to stretch. All uses changed.
8642 (struct graph): Remove member layoutalgorithm. All uses removed.
8643 * src/vcg.c (get_layoutalgorithm_str): Remove. All uses removed.
8644 * src/vcg_defaults.h (G_STRETCH): Renamed from G_EXPAND.
8645 All uses changed.
8646 (N_STRETCH): Rename from N_EXPAND. All uses changed.
8647
8648 2004-12-15 Akim Demaille <akim@epita.fr>
8649
8650 * data/lalr1.cc: Normalize /** \brief ... */ to ///.
8651 Add more Doxygen comments.
8652 (symprint_, stack_print_, reduce_print_, destruct_, pop)
8653 (report_syntax_error_, translate_): Rename as...
8654 (yysymprint_, yystack_print_, yyreduce_print_, yydestruct_)
8655 (yypop_, yyreport_syntax_error_, yytranslate_): this.
8656
8657 2004-12-15 Akim Demaille <akim@epita.fr>
8658
8659 * data/lalr1.cc (lex_): Rename as...
8660 (yylex_): this.
8661 Move the trace here.
8662 Take the %name-prefix into account.
8663 Reported by Alexandre Duret-Lutz.
8664
8665 2004-12-15 Akim Demaille <akim@epita.fr>
8666
8667 Simplify the C++ parser constructor.
8668
8669 * data/lalr1.cc (debug_): Rename as...
8670 (yydebug_): so that the parser's internals are always in the yy*
8671 pseudo namespace.
8672 Adjust uses.
8673 (b4_parse_param_decl): Remove the leading comma as it is now only
8674 called as unique argument list.
8675 (Parser::Parser): Remove the constructor accepting a location and
8676 an initial debugging level.
8677 Remove from the other ctor the argument for the debugging level.
8678 (debug_level_type, debug_level, set_debug_level): New.
8679
8680 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust
8681 constructor calls.
8682
8683 2004-12-15 Akim Demaille <akim@epita.fr>
8684
8685 Remove b4_root related material: failure experiment
8686 (which goal was to allow to derive from a class).
8687
8688 * data/lalr1.cc (b4_root, b4_param, b4_constructor): Remove
8689 definitions and uses.
8690
8691 2004-12-14 Paul Eggert <eggert@cs.ucla.edu>
8692
8693 * data/glr.c (struct yyGLRStack): yyerror_range now has 3 items,
8694 not 2, since it's not portable to subtract 1 from the start of an
8695 array. The new item 0 is never set or used. All uses changed.
8696
8697 (yyrecoverSyntaxError): Use YYLLOC_DEFAULT instead of assuming
8698 the default definition of YYLLOC_DEFAULT. Problem reported
8699 by Frank Heckenbach.
8700
8701 2004-12-12 Paul Eggert <eggert@cs.ucla.edu>
8702
8703 * data/glr.c (YYRHSLOC): Don't have two definitions, one for
8704 the normal case and one for the error case. Just use the
8705 first one uniformly. Problem reported by Frank Heckenbach.
8706 (YYLLOC_DEFAULT): Use the conventions of yacc.c, so we can
8707 use exactly the same macro in both places.
8708 (yyerror_range): Now of type yyGLRStackItem, not YYLTYPE,
8709 so that the normal-case YYRHSLOC works for the error case too.
8710 All uses changed.
8711 * data/yacc.c (YYRHSLOC): New macro, taken from glr.c.
8712 (YYLLOC_DEFAULT): Use the same macro as glr.c.
8713 * doc/bison.texinfo (Location Default Action): Don't claim that
8714 we have an array of locations. Use the same macro for both glr
8715 and lalr parsers. Mention YYRHSLOC. Mention what happens when
8716 the index is 0.
8717
8718 2004-12-10 Paul Eggert <eggert@cs.ucla.edu>
8719
8720 * HACKING: Update email addresses to send announcements to.
8721
8722 * configure.ac (AC_INIT): Bump version to 1.875f.
8723
8724 2004-12-10 Paul Eggert <eggert@cs.ucla.edu>
8725
8726 * NEWS: Version 1.875e.
8727 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875e.
8728
8729 * src/scan-skel.l: Include "complain.h", for "fatal".
8730
8731 * src/relation.h (relation_print, relation_digraph):
8732 Relation sizes are of type relation_node, not size_t (this is
8733 merely a doc fix, since the two types are equivalent).
8734 (relation_transpose): Relation sizes are of type relation_node,
8735 not int.
8736 * src/relation.c: Likewise.
8737 (top, infinity): Now of type relation_node, not int.
8738 (traverse, relation_transpose): Use relation_node, not int.
8739
8740 * data/glr.c (yyuserAction, yyrecoverSyntaxError): Mark args
8741 with ATTRIBUTE_UNUSED if they're not used, to avoid GCC warning.
8742 (yyparse): Remove unused local introduced in 2004-10-25 patch.
8743
8744 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): New arg
8745 specifying whether the test should be skipped. Use it tp
8746 specify that the [%defines %skeleton "lalr1.cc"] tests currently
8747 fail on some hosts, and should be skipped.
8748
8749 2004-12-08 Paul Eggert <eggert@cs.ucla.edu>
8750
8751 * src/system.h (CALLOC, MALLOC, REALLOC): Remove. All callers
8752 changed to use xcalloc, xnmalloc, xnrealloc, respectively,
8753 unless otherwise specified below.
8754
8755 * src/LR0.c (allocate_itemsets): Use xnmalloc, not xcalloc,
8756 to allocate kernel_base, kernel_items, kernel_size, since
8757 they needn't be initialized to 0.
8758 (allocate_storgae): Likewise, for shiftset, redset, shift_symbol.
8759 * src/closure.c (new_closure): Likewise, for itemset.
8760 * src/derives.c (derives_compute): Likewise, for delts, derives, q.
8761 * src/lalr.c (set_goto_map): Likewise, for temp_map.
8762 (initialize_F): Likewise, for reads, edge, reads[i], includes[i].
8763 (build_relations): Likewise for edge, states1, includes.
8764 * src/nullable.c (nullable_compute): Likewise, for squeue, relts.
8765 * src/reader.c (packgram): Likewise, for ritem, rules.
8766 * src/reduce.c (nonterminals_reduce): Likewise for nontermmap.
8767 * src/relation.c (relation_digraph): Likewise for VERTICES.
8768 (relation_transpose): Likewise for new_R, end_R.
8769 * src/symtab.c (symbols_token_translations_init): Likewise for
8770 token_translations.
8771 * src/tables.c (save_row): Likewise for froms, tos, conflict_tos.
8772 (token_actions): Likewise for yydefact, actrow, conflrow,
8773 conflict_list.
8774 (save_column): Likewise for froms[symno], tos[symno].
8775 (goto_actions): Likewise for state_count.
8776 (pack_table): Likewise for base, pos, check.
8777 (tables_generate): Likewise for width.
8778
8779 * src/LR0.c (set_states): Don't reuse kernel_size and kernel_base
8780 for initial core. Just have a separate core, so we needn't worry
8781 about whether kernel_size and kernel_base are initialized.
8782
8783 * src/LR0.c (shift_symbol, redset, shiftset, kernel_base,
8784 kernel_size, kernel_items): Remove unnecessary initialization.
8785 * src/conflicts.c (conflicts): Likewise.
8786 * src/derives.c (derives): Likewise.
8787 * src/muscle_tablc (muscle_insert): Likewise.
8788 * src/relation.c (relation_digraph): Likewise.
8789 * src/tables.c (froms, tos, conflict_tos, tally, width, actrow, order,
8790 conflrow, conflict_table, conflict_list, table, check):
8791 Likewise.
8792
8793 * src/closure.c (new_closure): Arg is of type unsigned int, not int.
8794 This is because all callers pass unsigned int.
8795 * src/closure.h (new_closure): Likewise.
8796
8797 * src/lalr.c (initialize_F): Initialize reads[i] in all cases.
8798 (build_relations): Initialize includes[i] in all cases.
8799 * src/reader.c (packgram): Always initialize rules[ruleno].prec
8800 and rules[ruleno].precsym. Initialize members in order.
8801 * src/relation.c (relation_transpose): Always initialize new_R[i]
8802 and end_R[i].
8803 * src/table.c (conflict_row): Initialize 0 at end of conflict_list.
8804
8805 * src/output.c (prepare_actions): Pass 0 instead of conflict_list[0];
8806 conflict_list[0] was always 0, but now it isn't initialized.
8807
8808 * src/table.c (table_grow): When conflict_table grew, the grown
8809 area wasn't cleared. Fix this.
8810
8811 * lib/.cvsignore: Add strdup.c, strdup.h.
8812 * m4/.cvsignore: Add strdup.m4.
8813
8814 2004-12-07 Paul Eggert <eggert@cs.ucla.edu>
8815
8816 * src/lalr.h (GOTO_NUMBER_MAXIMUM): New macro.
8817 * src/lalr.c (set_goto_map): Don't allow ngotos to equal
8818 GOTO_NUMBER_MAXIMUM, since we occasionally compute
8819 ngotos + 1 without checking for overflow.
8820 (build_relations): Use END_NODE, not -1, to denote end of edges.
8821 * src/lalr.c (set_goto_map, map_goto, initialize_F, add_loopback_edge,
8822 build_relations): Use goto_number, not int, for goto numbers.
8823 * src/tables.c (save_column, default_goto): Likewise.
8824
8825 2004-11-23 Akim Demaille <akim@epita.fr>
8826
8827 * data/lalr1.cc (YYSTYPE): Define it as is done for C, instead
8828 of #defining from yystype.
8829 Don't typedef yystype, C++ does not need it.
8830 This lets it possible to forward declare it as union.
8831
8832 2004-11-23 Paul Eggert <eggert@cs.ucla.edu>
8833
8834 * bootstrap (gnulib_modules): Add extensions.
8835 Problem reported by Jim Meyering.
8836
8837 2004-11-22 Paul Eggert <eggert@cs.ucla.edu>
8838
8839 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c,
8840 src/lalr.c, src/nullable.c, src/relation.c, src/scan-skel.l,
8841 src/system.h, src/tables.c: XFREE -> free, to accommodate
8842 recent change to gnulib xalloc.h.
8843 Problem reported by Jim Meyering.
8844
8845 2004-11-17 Akim Demaille <akim@epita.fr>
8846
8847 * data/lalr1.cc (symprint_): Use cdebug_ to avoid warnings.
8848
8849 2004-11-17 Akim Demaille <akim@epita.fr>,
8850 Alexandre Duret-Lutz <adl@gnu.org>
8851
8852 * data/lalr1.cc (Parser::yycdebug_): New, a pointer, to allow
8853 changes.
8854 (YYCDEBUG): Adjust.
8855 Use it instead of cdebug_.
8856 (Parser::debug_stream, Parser::set_debug_stream): New.
8857 (Parser::symprint_): Define cdebug_ for temporary backward
8858 compatibility.
8859 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use
8860 debug_stream ().
8861
8862 2004-11-17 Akim Demaille <akim@epita.fr>
8863
8864 * data/lalr1.cc (Parser:print_): Remove, use %printer instead.
8865 * tests/regression.at (_AT_DATA_DANCER_Y): Adjust.
8866 * tests/calc.at (_AT_DATA_CALC_Y): Ditto.
8867 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
8868
8869 2004-10-27 Paul Eggert <eggert@cs.ucla.edu>
8870
8871 * data/glr.c (yyloc_default): Remove; not used.
8872 Problem reported by Frank Heckenbach.
8873
8874 2004-10-25 Akim Demaille <akim@epita.fr>
8875
8876 * data/glr.c (YYRHSLOC): Move its definition next to its uses.
8877 Introduce another definition to address simple location arrays.
8878 (yyGLRStack): New member: yyerror_range.
8879 (yyrecoverSyntaxError, yyparse): Update it.
8880 (yyrecoverSyntaxError): Use it when shifting the error token to
8881 have an accurate range, equivalent to the one computed by both
8882 yacc.c and lalr1.cc.
8883 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Change its yylex so
8884 that column numbers start at column 0, as per GNU Coding
8885 Standards, the others tests, and the doc.
8886 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT_WITH_LOC):
8887 Adjust to the above change (first column is 0).
8888 And adjust the location of the "<error>", now covering the whole
8889 line.
8890
8891 2004-10-22 Akim Demaille <akim@epita.fr>
8892 and Paul Eggert <eggert@cs.ucla.edu>
8893
8894 Remove some arbitrary limits on goto numbers and relations.
8895 * src/lalr.c (goto_map, ngotos, from_state, to_state): Omit
8896 initial values, since they're never used.
8897 (set_goto_map): ngotos is now unsigned, so test for overflow
8898 by seeing whether it wraps around to zero.
8899 * src/lalr.h (goto_number): Now size_t, not short int.
8900 (GOTO_NUMBER_MAXIMUM): Remove.
8901 * src/relation.c (relation_print, traverse, relation_transpose):
8902 Check for END_NODE rather than looking at sign.
8903 * src/relation.h (END_NODE): New macro.
8904 (relation_node): Now size_t, not short int.
8905
8906 2004-10-22 Paul Eggert <eggert@cs.ucla.edu>
8907
8908 * doc/bison.texinfo (Language and Grammar): In example, "int" is a
8909 keyword, not an identifier. Problem reported by Baron Schwartz in
8910 <http://lists.gnu.org/archive/html/bug-bison/2004-10/msg00017.html>.
8911
8912 2004-10-11 Akim Demaille <akim@epita.fr>
8913
8914 * src/symtab.c (symbol_check_alias_consistency): Also check
8915 type names, destructors, and printers.
8916 Reported by Alexandre Duret-Lutz.
8917 Recode the handling of associativity and precedence in terms
8918 of symbol_precedence_set.
8919 Accept no redeclaration at all, not even equal to the previous
8920 value.
8921 (redeclaration): New.
8922 Use it to factor redeclaration complaints.
8923 (symbol_make_alias): Don't set the type of the alias, let
8924 symbol_check_alias_consistency do it as for other features.
8925 * src/symtab.h (symbol): Add new member prec_location, and
8926 type_location.
8927 * src/symtab.c (symbol_precedence_set, symbol_type_set): Set them.
8928 * tests/input.at (Incompatible Aliases): New.
8929
8930 2004-10-09 Paul Eggert <eggert@cs.ucla.edu>
8931
8932 .cvsignore fixes to accommodate gnulib changes,
8933 and the practice of naming build directories "_build".
8934 * .cvsignore: Add "_*". Sort.
8935 * lib/.cvsignore: Add getopt_.h, xalloc-die.c.
8936 * m4/.cvsignore: Add "*_gl.m4".
8937
8938 2004-10-06 Akim Demaille <akim@epita.fr>
8939
8940 * src/parse-gram.y (add_param): Fix the truncation of trailing
8941 spaces.
8942
8943 2004-10-05 Akim Demaille <akim@epita.fr>
8944
8945 In Bison 1.875's yacc.c, YYLLOC_DEFAULT was called regardless
8946 whether the reducion was empty or not. This leaves room to
8947 improve the use of YYLLOC_DEFAULT in such a case.
8948 lalr1.cc is still experimental, so changing this is acceptable.
8949 And finally, there are probably not many users who changed the
8950 handling of locations in GLR, so changing is admissible too.
8951
8952 * data/glr.c, data/lalr1.cc, data/yacc.c (YYLLOC_DEFAULT): On an
8953 empty reduction, set @$ to an empty location ending the previously
8954 stacked symbol.
8955 Adjust uses to make sure the code is triggered on empty
8956 reductions.
8957 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust the
8958 expected output: empty reductions have empty locations.
8959
8960 2004-09-29 Akim Demaille <akim@epita.fr>
8961
8962 * data/lalr1.cc: Move towards a more standard C++ coding style
8963 for templates: Class < T > -> Class<T>.
8964
8965 2004-09-29 Akim Demaille <akim@epita.fr>
8966
8967 * data/lalr1.cc: Reinstall the former ctor, for sake of
8968 compatibility, but warn it will be removed.
8969 Move towards a more standard C++ coding style (i.e., type *var ->
8970 type* var).
8971
8972 2004-09-27 Paul Eggert <eggert@cs.ucla.edu>
8973
8974 * src/parse-gram.y (add_param): Rewrite to avoid strchr,
8975 since it's less likely to work if NULs are involved in the future.
8976
8977 2004-09-27 Akim Demaille <akim@epita.fr>
8978
8979 * data/yacc.c (YY_LOCATION_PRINT): Fix its default declaration.
8980
8981 2004-09-27 Akim Demaille <akim@epita.fr>
8982
8983 * data/lalr1.cc (b4_parse_param_decl_1): New.
8984 (b4_parse_param_decl): Use it to have different names between attribute
8985 and argument names.
8986 (b4_cc_constructor_call): Likewise.
8987
8988 2004-09-24 Akim Demaille <akim@epita.fr>
8989
8990 * src/parse-gram.y (add_param): Strip the leading and trailing
8991 blanks from a formal argument declaration.
8992 (YY_LOCATION_PRINT): New.
8993
8994 2004-09-24 Akim Demaille <akim@epita.fr>
8995
8996 * data/c.m4 (b4_yysymprint_generate): Move the YYINPUT invocation
8997 after the location.
8998
8999 2004-09-24 Akim Demaille <akim@epita.fr>
9000
9001 * doc/bison.texinfo (Table of Symbols): Sort.
9002
9003 2004-09-21 Akim Demaille <akim@epita.fr>
9004
9005 * data/yacc.c, data/glr.c (b4_at_dollar, b4_dollar_dollar): Remove
9006 the useless parentheses.
9007 Suggested by Paul Eggert.
9008
9009 2004-09-20 Akim Demaille <akim@epita.fr>
9010
9011 Let the initial-action act on the look-ahead, and use it for the
9012 "initial push" (corresponding to an hypothetical beginning-of-file).
9013 And let lalr1.cc honor %initial-action.
9014
9015 * doc/bison.texinfo (Initial Action Decl): Clarify, and add an
9016 example.
9017 * data/lalr1.cc (Parser::initlocation_): Remove, bad experiment.
9018 (Parser::Parser): Remove the ctor that used to initialize it.
9019 (Parser::parse): Like in the other skeletons, issue the "starting
9020 parse" message before any action.
9021 Honor %initial-action.
9022 Initialize the stacks with the lookahead.
9023 * data/yacc.c: Let $$ and @$ in %initial-action designate the
9024 look-ahead.
9025 Push them in the stacks.
9026 * tests/actions.at, tests/calc.at: Adjust the C++ ctor invocations.
9027
9028 2004-09-20 Akim Demaille <akim@epita.fr>
9029
9030 * doc/bison.texinfo (Initial Action Decl): New.
9031
9032 2004-09-20 Akim Demaille <akim@epita.fr>
9033
9034 * data/yacc.c (YY_LOCATION_PRINT): Use YYLTYPE_IS_TRIVIAL as a
9035 clearer criterion to define it.
9036 (parse): Initialize the initial location when YYLTYPE_IS_TRIVIAL.
9037 When reducing on an empty RHS, use the latest stacked location as
9038 location.
9039 yylloc is not always available.
9040 * data/glr.c: Likewise.
9041 Also, honor initial-actions.
9042
9043 2004-09-20 Akim Demaille <akim@epita.fr>
9044
9045 * data/yacc.c (YY_LOCATION_PRINT): New.
9046 Define when we know YYLTYPE's structure, i.e., when the default
9047 YYLLOC_DEFAULT is used.
9048 * data/c.m4 (b4_yysymprint_generate): Use it.
9049 * data/lalr1.cc (YYLLOC_DEFAULT): Stop relying on the initial
9050 value of the result.
9051 (error_start_): Replace with...
9052 (error_range_): this location array.
9053 This allows to replace code relying on the implementation of
9054 locations by portable code.
9055 * data/yacc.c (yylerrsp): Replace with...
9056 (yyerror_range): this.
9057 Every time a token is popped, update yyerror_range[0], to have an
9058 accurate location for the error token.
9059 * data/glr.c (YY_LOCATION_PRINT): New.
9060 (yyprocessOneStack): Fix an invocation of YY_SYMBOL_PRINT:
9061 deference a pointer.
9062 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): No longer
9063 report the location in %printers.
9064
9065 * src/scan-skel.l: Instead of abort, report error messages to ease
9066 understanding skeleton scanning failures.
9067
9068 2004-09-16 Akim Demaille <akim@epita.fr>
9069
9070 * data/lalr1.cc (Stack::Iterator, Stack::ConstIterator): Rename as...
9071 (iterator, const_iterator): these, to be more in the C++ spirit.
9072 Also, return reverse iterators so that when displaying the stack
9073 we display its bottom first.
9074 (Parser::stack_print_, Parser::reduce_print_): Match the messages
9075 from yacc.c.
9076 We should probably use vector here though.
9077
9078 2004-09-16 Akim Demaille <akim@epita.fr>
9079
9080 Have more complete shift traces.
9081
9082 * data/yacc.c, data/lalr1.c, data/glr.c: Use YY_SYMBOL_PRINT
9083 to report Shifts instead of ad hoc YYDPRINTF invocations,
9084 including for the error token.
9085 * data/lalr1.cc (symprint_): Output the location.
9086 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): In C++, don't
9087 output the location within the %printer.
9088 Activate GLR tests, at least to make sure they compile properly.
9089 They still don't pass though.
9090 * tests/calc.at: Adjust expect verbose output, since now "Entering
9091 state..." is on a different line than the "Shifting" message.
9092
9093 2004-09-08 Akim Demaille <akim@epita.fr>
9094
9095 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Move the
9096 Bison directive from the Bison file to the invocation of this
9097 macro, so that these directives are passed to
9098 AT_BISON_OPTION_PUSHDEFS to get correct help macros.
9099 Use these helping macros (e.g., AT_LOC, AT_VAL and so forth).
9100 Move the AT_SETUP/AT_CLEANUP outside, to report as test title
9101 the extra Bison directives instead of the whole series.
9102 Change the grammar so that there are recoverable errors, and
9103 unrecoverable errors. Now we can have the parser give up before
9104 consuming the whole input. As a result we now can observe that
9105 the lookahead is freed when needed.
9106 Change the parser source to parse argv[1] instead of a hard coded
9107 string.
9108 Simplify yylex, and give a value and location to EOF.
9109 Simplify some invocations of AT_CHECK_PRINTER_AND_DESTRUCTOR that
9110 passed directives already coded in the file.
9111 Add some tests to check the location of "error".
9112 For some tests, the C++ parser is correct, and not yacc.c.
9113 For other tests, they provide different, but unsatisfying, values,
9114 so keep the C++ value so that at least one parser is "correct"
9115 according to the test suite.
9116 (Actions after errors): Remove, this is subsumed by the
9117 AT_CHECK_PRINTER_AND_DESTRUCTOR series.
9118
9119 2004-09-06 Akim Demaille <akim@epita.fr>
9120
9121 * data/lalr1.cc: Adjust the indentation of the labels.
9122 (Parser::pop): New.
9123 Use it.
9124
9125 2004-09-06 Akim Demaille <akim@epita.fr>
9126
9127 * data/yacc.cc, data/glr.cc (yydestruct): Accept an additional
9128 argument, an informative message.
9129 Call YY_SYMBOL_PRINT.
9130 Adjust all callers: integrate the associated YY_SYMBOL_PRINT.
9131 * data/lalr1.cc (destruct_): Likewise.
9132 In addition, no longer depend on b4_yysymprint_generate and
9133 b4_yydestruct_generate to generate these functions, do it "by
9134 hand".
9135
9136 2004-09-03 Akim Demaille <akim@epita.fr>
9137
9138 * data/glr.c, data/lalr1.cc, data/yacc.c: When YYABORT was
9139 invoked, yydestruct the lookahead.
9140 * tests/calc.at (Calculator $1): Update the expected lengths of
9141 traces: there is an added line for the discarded lookahead.
9142 * doc/bison.texinfo (Destructor Decl): Some rewording.
9143 Define "discarded" symbols.
9144
9145 2004-09-02 Akim Demaille <akim@epita.fr>
9146
9147 * data/lalr1.cc (translate_, destruct_): No reason to be static.
9148
9149 2004-09-02 Akim Demaille <akim@epita.fr>
9150
9151 * data/glr.c, yacc.c (YYDSYMPRINT): Remove, not used.
9152 (YYDSYMPRINTF): Rename as...
9153 (YY_SYMBOL_PRINT): this.
9154 * data/lalr1.cc (YY_SYMBOL_PRINT): New, modeled after the previous
9155 two.
9156 Use it instead of direct symprint_ calls.
9157 (yybackup): Tweak the "Now at end of input" case to match yacc.c's
9158 one.
9159
9160 2004-09-02 Akim Demaille <akim@epita.fr>
9161
9162 * data/lalr1.cc (b4_yysymprint_generate): New.
9163 (symprint_): New member function, defined when YYDEBUG.
9164 Use it consistently instead of token/nterm debugging output by
9165 hand.
9166 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust
9167 %printer calls to use cdebug_ when using lalr1.cc.
9168
9169 2004-08-30 Florian Krohm <florian@edamail.fishkill.ibm.com>
9170
9171 * data/glr.c: Guard the declarations of yypstack and yypdumpstack
9172 with #ifdef YYDEBUG.
9173
9174 2004-08-26 Akim Demaille <akim@epita.fr>
9175
9176 * doc/bison.texinfo (Implementing Loops): Rename as...
9177 (Implementing Gotos/Loops): this.
9178
9179 2004-08-13 Paul Eggert <eggert@cs.ucla.edu>
9180
9181 Adjust to latest gnulib.
9182 * bootstrap (gnulib_modules): Add xalloc-die.
9183 Set LC_ALL=C so that file names sort consistently.
9184 Prefer the gnulib copies of gettext.m4, glibc21.m4,
9185 inttypes_h.m4, lib-ld.m4, lib-prefix.m4, po.m4, stdint_h.m4,
9186 uintmax_t.m4, ulonglong.m4.
9187 (intl_files_to_remove): Add gettext.m4, lib-ld.m4, lib-prefix.m4,
9188 po.m4 since we are now using _gl.m4 instead.
9189
9190 2004-08-10 Florian Krohm <florian@edamail.fishkill.ibm.com>
9191
9192 * src/scan-action.l: Remove. Scanning of semantic actions is
9193 handled in scan-gram.l.
9194
9195 2004-08-07 Florian Krohm <florian@edamail.fishkill.ibm.com>
9196
9197 * src/scan-gram.l (handle_syncline): Use uniqstr_new not xstrdup.
9198
9199 * src/location.h (struct): The file member is a uniqstr.
9200 (equal_boundaries): Use UNIQSTR_EQ for comparison.
9201
9202 2004-07-22 Paul Eggert <eggert@cs.ucla.edu>
9203
9204 Fix bug with non-%union parsers that have printers or destructors,
9205 which led to a Bison core dump. Reported by Peter Fales in
9206 <http://lists.gnu.org/archive/html/bug-bison/2004-07/msg00014.html>.
9207
9208 * data/c.m4 (b4_symbol_actions): Don't assume %union was used.
9209 * data/lalr1.cc (yystype) [defined YYSTYPE]: Define to YYSTYPE,
9210 not to our own type.
9211 * src/output.c (symbol_destructors_output, symbol_printers_output):
9212 Don't assume %union.
9213 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR,
9214 AT_CHECK_PRINTER_AND_DESTRUCTOR): New argument
9215 UNION-FLAG. All callers changed.
9216 (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't assume %union.
9217 Use type char, not unsigned int, when declaring an array of char;
9218 this lets us remove a cast.
9219 (Printers and Destructors): Add non-%union test cases.
9220
9221 2004-06-21 Paul Eggert <eggert@cs.ucla.edu>
9222
9223 * doc/bison.texinfo: Minor editorial changes, mostly to the new
9224 GLR writeups. E.g., avoid frenchspacing and the future tense,
9225 change "lookahead" to "look-ahead", and change "wrt" to "with
9226 respect to".
9227
9228 2004-06-21 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
9229
9230 * doc/bison.texinfo (Merging GLR Parses, Compiler Requirements):
9231 New sections, split off from the GLR Parsers section. Put the new
9232 Simple GLR Parser near the start of the GLR section, for clarity.
9233 Rewrite connective text.
9234
9235 2004-06-21 Frank Heckenbach <frank@g-n-u.de>
9236
9237 * doc/bison.texinfo (Simple GLR Parsers): New section.
9238
9239 2004-06-21 Paul Eggert <eggert@cs.ucla.edu>
9240
9241 * NEWS, TODO, doc/bison.texinfo:
9242 Use "look-ahead" instead of "lookahead", to be consistent.
9243 * REFERENCES: Fix incorrect reference to DeRemer and Pennello,
9244 while we're fixing "look-ahead".
9245 * src/conflicts.c (shift_set): Renamed from shiftset.
9246 (look_ahead_set): Renamed from lookaheadset.
9247 * src/print.c: Likewise.
9248 * src/getargs.c (report_args): Add "look-ahead" as the new canonical
9249 name for "lookahead".
9250 (report_types, usage): Likewise.
9251 * src/getargs.h (report_look_ahead_tokens): Renamed from
9252 report_lookaheads.
9253 * src/lalr.c (compute_look_ahead_tokens): Renamed from
9254 compute_lookaheads.
9255 (state_look_ahead_tokens_count): Renamed from state_lookaheads_count.
9256 (look_ahead_tokens_print): Renamed from lookaheads_print.
9257 * src/state.c (state_rule_look_ahead_tokens_print): Renamed from
9258 state_rule_lookaheads_print.
9259 * src/state.h: Likewise.
9260 (reductions.look_ahead_tokens): Renamed from lookaheads.
9261 * tests/torture.at (AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR): Renamed from
9262 AT_DATA_LOOKAHEADS_GRAMMAR.
9263
9264 2004-06-03 Paul Eggert <eggert@cs.ucla.edu>
9265
9266 * README: Update location of patched M4 distribution.
9267
9268 2004-05-30 Albert Chin-A-Young <china@thewrittenword.com>
9269
9270 Don't assume the C++ compiler takes the same arguments as the C compiler
9271 (trivial change).
9272 * configure.ac (O0CXXFLAGS): New var.
9273 * tests/atlocal.in (CXXFLAGS): Use it.
9274
9275 2004-05-29 Paul Eggert <eggert@cs.ucla.edu>
9276
9277 Fix some "make check" problems with C++ reported by
9278 Albert Chin-A-Young for Tru64 C++ in this thread:
9279 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00049.html
9280
9281 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check for std::cerr.
9282 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
9283 Output to a .cc file for C++, not to a .c file.
9284 * tests/calc.at (AT_CHECK_CALC): Likewise.
9285 * tests/regression.at (AT_CHECK_DANCER): Likewise.
9286 * tests/local.at (AT_COMPILE_CXX): Default to OUTPUT.cc, not OUTPUT.c.
9287
9288 2004-05-28 Albert Chin-A-Young <china@thewrittenword.com>
9289
9290 * tests/calc.at, tests/actions.at: Workaround for SGI
9291 C++ compiler. (trivial change)
9292
9293 2004-05-27 Paul Eggert <eggert@cs.ucla.edu>
9294
9295 Spent a few hours checking out which prerequisite versions the
9296 current sources actually require. I went all the way back to
9297 Gettext 0.10.40, Automake 1.4, and Autoconf 2.57 and investigated
9298 a seemingly endless set of combinations of versions more recent
9299 than that. The bottom line is that the current sources require
9300 fairly recent versions of the build tools, and it'll be some work
9301 to change this.
9302 * configure.ac (AC_PREREQ): Increase from 2.58 to 2.59.
9303 (AM_INIT_AUTOMAKE): Increase from 1.7 to 1.8.
9304 (AM_GNU_GETTEXT_VERSION): Increase from 0.11.5 to 0.12.
9305 Add comments explaining why those particular versions are
9306 currently needed.
9307
9308 * src/parse-gram.y (lloc_default): Rewrite to avoid compiler bug
9309 in SGI MIPSpro 7.4.1m. Problem reported by Albert Chin-A-Young in
9310 <http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00037.html>.
9311
9312 * configure.ac (AC_PREREQ): Bump to 2.58, since 2.57 doesn't work
9313 (it fails with a Autoconf-without-aclocal-m4 diagnostic).
9314
9315 2004-05-26 Paul Eggert <eggert@cs.ucla.edu>
9316
9317 * configure.ac (AM_GNU_GETTEXT_VERSION): Lower it from 0.14.1 to
9318 0.11.5. Suggested by Bruno Haible.
9319 * bootstrap: Remove gettext version checking.
9320
9321 * doc/bison.texinfo (Decl Summary): Also mention that %union
9322 can depend on prerequisite types. Problem reported by Tim
9323 Van Holder.
9324
9325 2004-05-25 Paul Eggert <eggert@cs.ucla.edu>
9326
9327 * README: Mention GNU m4 1.4 bugs and Akim's patched version.
9328 * README-alpha: Don't tell people not to package this.
9329
9330 * bootstrap: Don't assume $(...) works; use `...` instead.
9331 Problem reported by Paul Hilfinger. Also, diagnose non-GNU
9332 gettext better.
9333
9334 * doc/bison.texinfo (Decl Summary, Bison Options): Clarify what's
9335 put into the -d output file, and mention what to do if YYSTYPE is
9336 defined as a macro.
9337
9338 2004-05-24 Paul Eggert <eggert@cs.ucla.edu>
9339
9340 Undo change made earlier today: it caused autopoint to not bring
9341 in ABOUT-NLS. Ouch. Instead, substitute our own diagnostic for
9342 autopoint's.
9343
9344 * bootstrap: Check that gettext version matches what's in
9345 configure.ac. Warn users to ignore robots.txt ERROR 404.
9346 * bootstrap: Undo today's earlier change (logged below).
9347 * configure.ac (AM_GNU_GETTEXT_VERSION): Likewise.
9348
9349 The gettext version checking is causing more trouble than it's
9350 curing; remove it. Problem reported by Paul Hilfinger.
9351
9352 * bootstrap: Issue a warning that one can expect a message
9353 'AM_GNU_GETTEXT is used, but not AM_GNU_GETTEXT_VERSION'.
9354 * configure.ac (AM_GNU_GETTEXT_VERSION): Remove.
9355
9356 2004-05-23 Paul Eggert <eggert@cs.ucla.edu>
9357
9358 Ensure that the C++ compiler used for testing actually works on a
9359 simple test program; if not, skip the C++-related tests. Problem
9360 reported by Vin Shelton in:
9361 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00026.html
9362
9363 * m4/cxx.m4: New file.
9364 * configure.ac (BISON_TEST_FOR_WORKING_CXX_COMPILER): Add.
9365 * tests/atlocal.in (BISON_CXX_WORKS): Add.
9366 * tests/local.at (AT_COMPILE_CXX): Use it.
9367
9368 2004-05-21 Paul Eggert <eggert@cs.ucla.edu>
9369
9370 * data/glr.c (yylloc): Output this macro even if locations are not
9371 being generated, as the GLR parser needs it even in that case.
9372 Problem reported by Troy A. Johnson
9373 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=195946>.
9374
9375 * configure.ac (AC_INIT): Update to 1.875e.
9376
9377 2004-05-21 Paul Eggert <eggert@cs.ucla.edu>
9378
9379 * NEWS: Version 1.875d.
9380 * configure.ac (AC_INIT): Likewise.
9381 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875d.
9382
9383 * configure.ac (--enable-gcc-warnings): Do not enable -Wshadow,
9384 -Wmissing-prototypes, or -Wstrict-prototypes for C++. The current
9385 lalr1.cc runs afoul of the first, and the last two are no longer
9386 supported by GCC 3.4.0.
9387 * README: Mention GNU m4 1.4 or later; mention m4 patches.
9388 * HACKING: Use ./bootstrap, not "make update" to import foreign files.
9389
9390 2004-05-06 Paul Eggert <eggert@cs.ucla.edu>
9391
9392 * src/muscle_tab.c (hash_muscle): Accept and return size_t, not
9393 unsigned int, for compatibility with latest gnulib hash module.
9394 * src/state.c (state_hash, state_hasher): Likewise.
9395 * src/symtab.c (hash_symbol, hash_symbol_hasher): Likewise.
9396 * src/uniqstr.c (hash_uniqstr): Likewise.
9397
9398 2004-05-03 Paul Eggert <eggert@cs.ucla.edu>
9399
9400 * NEWS: Unescaped newlines are no longer allowed in char & strings.
9401
9402 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER,
9403 SC_CHARACTER,SC_STRING>): Reject unescaped newlines in
9404 character and string literals.
9405 (unexpected_end): New function.
9406 (unexpected_eof): Use it.
9407 (unexpected_newline): New function.
9408 (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>): Coalesce duplicate
9409 actions.
9410
9411 * NEWS: Document %expect-rr.
9412
9413 * bootstrap (--gnulib-srcdir=*, --cvs-user=*):
9414 Fix typo by replacing $1 with $option.
9415 Remove more 'intl'-related files.
9416 Don't DEFUN AM_INTL_SUBDIR twice.
9417
9418 * lib/.cvsignore: Add strndup.h. Remove memchr.c, memcmp.c,
9419 memrchr.c, strcasecmp.c, strchr.c, strrchr.c, strspn.c, strtol.c,
9420 strtoul.c.
9421 * m4/.cvsignore: Add exitfail.m4, extensions.m4, gnulib.m4,
9422 hard-locale.m4, mbstate_t.m4, strerror_r.m4, strndup.m4,
9423 xstrndup.m4. Remove glibc21.m4, intdiv0.m4, inttypes-pri.m4,
9424 inttypes.m4, inttypes_h.m4, isc-posix.m4, lcmessage.m4,
9425 stdint_h.m4, uintmax_t.m4, ulonglong.m4.
9426 * src/.cvsignore: Add *.output.
9427
9428 * src/parse-gram.y: Put copyright notice inside %{ %} so it
9429 gets copied to the output file.
9430
9431 2004-04-28 Paul Eggert <eggert@twinsun.com>
9432
9433 Get files from the gnulib and po repositories, instead of relying
9434 on them being in our CVS. Upgrade to latest versions of gnulib
9435 and Automake.
9436
9437 * Makefile.am (SUBDIRS): Remove m4; Automake now does m4.
9438 * bootstrap: Bootstrap from gnulib and po repositories.
9439 Much of this code was stolen from GNU diff and GNU tar's bootstrap.
9440 * README-cvs: Document these changes. Remove version numbers from
9441 mentions of build tools, since they change so often. Mention Flex.
9442
9443 * configure.ac (AC_CONFIG_MACRO_DIR): Add, with m4 as arg.
9444 (gl_USE_SYSTEM_EXTENSIONS): Add.
9445 (AC_GNU_SOURCE, AC_AIX, AC_MINIX):
9446 Remove; no longer needed, as gl_USE_SYSTEM_EXTENSIONS
9447 does this for us.
9448 (AC_ISC_POSIX): Remove; we no longer support this
9449 ancient OS, as it gets in the way of latest Autoconf & gnulib.
9450 (AC_HEADER_STDC): Remove: we now assume C89 or better.
9451 (AC_CHECK_HEADERS_ONCE): Use instead of AC_CHECK_HEADERS.
9452 Do not check for C89 headers, except for locale.h which is used
9453 by the Yacc library and must port to K&R hosts.
9454 (AC_CHECK_FUNCS_ONCE): Use instead of AC_CHECK_FUNCS.
9455 Do not check for C89 functions, except for setlocale which is
9456 used by the Yacc library.
9457 (AC_CHECK_DECLS, AC_REPLACE_FUNCS): Remove; no longer needed.
9458 (gl_DIRNAME, gl_ERROR, gl_FUNC_ALLOCA, gl_FUNC_MEMCHR,
9459 gl_FUNC_MEMRCHR, gl_FUNC_STPCPY, gl_FUNC_STRNLEN, gl_FUNC_STRTOL,
9460 gl_GETOPT, gl_HASH, gl_MBSWIDTH, gl_OBSTACK, gl_QUOTE,
9461 gl_QUOTEARG, gl_XALLOC, jm_FUNC_GLIBC_UNLOCKED_IO, jm_FUNC_MALLOC,
9462 AM_GNU_GETTEXT): Remove; now done by:
9463 (GNULIB_AUTOCONF_SNIPPET): Add. "bootstrap" builds this for us.
9464 (AC_CONFIG_FILES): Remove m4/Makefile, as Automake now does this
9465 for us.
9466
9467 * lib/Makefile.am: Include gnulib.mk, built for us by "bootstrap".
9468 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES):
9469 Define to empty, as gnulib.mk will do the rest for us.
9470 ($(libbison_a_OBJECTS), stdbool.h): Remove, as gnulib.mk does this
9471 for us.
9472 (libbison_a_SOURCES): Define to $(lib_SOURCES) now.
9473 (lib_SOURCES): New symbol, containing only the non-gnulib libs.
9474
9475 * src/files.c: Include gnulib's xstrndup.h.
9476
9477 * src/system.h (MALLOC): Use xnmalloc, for better overflow checking.
9478 (REALLOC): Use xnrealloc, for likewise.
9479 (xstrndup, stpcpy): Remove decls, as gnulib does this for us now.
9480 (strnlen, memrchr): Remove decls; functions no longer used.
9481 Include <stpcpy.h>.
9482
9483 * config/depcomp, config/install-sh, lib/alloca.c, lib/argmatch.c,
9484 lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
9485 lib/error.c, lib/error.h, lib/getopt.c, lib/getopt.h,
9486 lib/getopt1.c, lib/gettext.h, lib/hash.c, lib/hash.h,
9487 lib/malloc.c, lib/mbswidth.c, lib/mbswidth.h, lib/memchr.c,
9488 lib/memcmp.c, lib/memrchr.c, lib/obstack.c, lib/obstack.h,
9489 lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h,
9490 lib/realloc.c, lib/stdbool_.h, lib/stpcpy.c, lib/strcasecmp.c,
9491 lib/strchr.c, lib/strncasecmp.c, lib/strnlen.c, lib/strrchr.c,
9492 lib/strspn.c, lib/strtol.c, lib/strtoul.c, lib/unlocked-io.h,
9493 lib/xalloc.h, lib/xmalloc.c, lib/xstrdup.c, lib/xstrndup.c,
9494 m4/Makefile.am, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
9495 m4/error.m4, m4/getopt.m4, m4/hash.m4, m4/malloc.m4,
9496 m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4, m4/memcmp.m4,
9497 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/prereq.m4,
9498 m4/quote.m4, m4/quotearg.m4, m4/realloc.m4, m4/stdbool.m4,
9499 m4/stpcpy.m4, m4/strnlen.m4, m4/strtol.m4, m4/strtoul.m4,
9500 m4/unlocked-io.m4, m4/xalloc.m4, po/LINGUAS, po/Makefile.in.in,
9501 po/Makevars, po/da.po, po/de.po, po/es.po, po/et.po, po/fr.po,
9502 po/hr.po, po/id.po, po/it.po, po/ja.po, po/ms.po, po/nl.po,
9503 po/pt_BR.po, po/ro.po, po/ru.po, po/sv.po, po/tr.po:
9504 Remove, as these files are now generated automatically
9505 by bootstrap or automake.
9506
9507 * po/ChangeLog: Remove: all but one entry was a duplicate
9508 of this file, and I moved that 2000-11-02 entry here.
9509
9510 * config/.cvsignore: Add Makefile, depcomp, install-sh.
9511 * lib/.cvsignore: Add alloca.c, alloca.h, alloca_.h, argmatch.c,
9512 argmatch.h, basename.c, dirname.c, dirname.h, error.c, error.h,
9513 exit.h, exitfail.c, exitfail.h, getopt.c, getopt.h, getopt1.c,
9514 getopt_int.h, gettext.h, gnulib.mk, hard-locale.c, hard-locale.h,
9515 hash.c, hash.h, malloc.c, mbswidth.c, mbswidth.h, memchr.c,
9516 memcmp.c, memrchr.c, obstack.c, obstack.h, quote.c, quote.h,
9517 quotearg.c, quotearg.h, realloc.c, stdbool_.h, stpcpy.c, stpcpy.h,
9518 strcasecmp.c, strchr.c, stripslash.c, strncasecmp.c, strndup.c,
9519 strnlen.c, strrchr.c, strspn.c, strtol.c, strtoul.c,
9520 unlocked-io.h, xalloc.h, xmalloc.c, xstrdup.c, xstrndup.c,
9521 xstrndup.h.
9522 * m4/.cvsignore: Remove Makefile, Makefile.in. Add alloca.m4,
9523 dirname.m4, dos.m4, error.m4, getopt.m4, hash.m4, mbrtowc.m4,
9524 mbswidth.m4, obstack.m4, onceonly.m4, quote.m4, quotearg.m4,
9525 stdbool.m4, stpcpy.m4, strnlen.m4, unlocked-io.m4, xalloc.m4.
9526 * po/.cvsignore: Add *.po, LINGUAS, Makefile.in.in, Makevars.
9527 * src/.cvsignore: Remove *_.c.
9528
9529
9530 * Makefile.maint (GZIP_ENV): Don't use --rsyncable if gzip doesn't
9531 support it. (The latest stable gzip doesn't.)
9532
9533 2004-04-27 Paul Eggert <eggert@twinsun.com>
9534
9535 * data/lalr1.cc (Parser::stos_) [! YYDEBUG]: Define even in this
9536 case, as stos_ is now used by destructors due to the 2004-02-09
9537 change.
9538
9539 Remove more K&R C support.
9540 * lib/libiberty.y (PARAMS): Remove. All uses removed.
9541 * lib/subpipe.c (errno): Remove decl.
9542 Include <stdlib.h> unconditionally.
9543 (EXIT_FAILURE): Remove macro.
9544 * src/complain.c (vfprintf, strerror): Remove.
9545 * src/system.h: Include limits.h, stdlib.h, string.h, locale.h
9546 unconditionally.
9547 (EXIT_FAILURE, EXIT_SUCCESS, setlocale): Remove defns.
9548 Use latest Autoconf recommendations for including inttypes.h, stdint.h.
9549 (strchr, strspn, memchr): Remove decls.
9550 * tests/calc.at (_AT_DATA_CALC_Y): Include stdlib.h, string.h
9551 unconditionally. Do not declare perror.
9552 * tests/conflicts.at (%nonassoc and eof): Include stdlib.h
9553 unconditionally.
9554
9555 * src/complain.c (_): Remove useless defn, as system.h defines this.
9556
9557 * lib/bitset.h (__INT_TO_PTR): Remove; workaround no longer needed
9558 with latest obstack.h.
9559 * lib/ebitset.c (ebitset_elt_alloc): Don't bother to cast args
9560 to procedure types, as obstack.h now does that for us.
9561 * lib/lbitset.c (lbitset_elt_alloc): Likewise.
9562
9563 * lib/subpipe.h [HAVE_SYS_TYPES_H]: Include <sys/types.h>,
9564 so that this include file can stand alone.
9565 * lib/subpipe.c: Do not include <sys/types.h>, as subpipe.h
9566 does this now. Include subpipe.h first after config.h, to
9567 test whether it can stand alone.
9568
9569 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't
9570 declare yyerror when using lalr.cc, as GCC 3.4.0 warns about the
9571 unused declaration.
9572
9573 * tests/synclines.at (%union synch line): Put a dummy member in
9574 the union, because empty unions aren't allowed in C. Caught
9575 by GCC 3.4.0.
9576
9577 2004-04-13 Jim Meyering <jim@meyering.net>
9578
9579 * src/conflicts.c (conflicts_print): Correct format string typo:
9580 use `%%' to produce literal `%'. (trivial change)
9581
9582 2004-03-30 Paul Eggert <eggert@twinsun.com>
9583
9584 * src/getargs.c (version): Update copyright year to 2004.
9585
9586 * data/c.m4 (b4_int_type): Use 'short int' rather than
9587 'short', and similarly for 'long', 'unsigned', etc.
9588 * data/glr.c (YYTRANSLATE, yyconfl, yySymbol, yyItemNum,
9589 yygetLRActions, yyprocessOneStack, yyrecoverSyntaxError,
9590 yy_yypstack, yydumpstack): Likewise.
9591 * data/lalr1.cc (user_token_number_max_, user_token_number_max_,
9592 translate_, seq_, [], pop, Slice, range_, operator+, operator+=):
9593 Likewise.
9594 * data/yacc.c (b4_int_type, yyss, YYSTACK_BYTES, yysigned_char,
9595 yy_stack_print, yyparse): Likewise.
9596 * doc/bison.texinfo (Prologue, Multiple Types): Likewise.
9597 * lib/bbitset.h (bitset_word, BITSET_WORD_BITS): Likewise.
9598 * lib/bitset.c (bitset_print): Likewise.
9599 * lib/bitset_stats.c (bitste_log_histogram_print): Likewise.
9600 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
9601 * lib/bitsetv.c (bitsetv_dump): Likewise.
9602 * lib/ebitset.c (EBITSET_ELT_BITS, ebitset_elt_alloc): Likewise.
9603 * lib/lbitset.c (LBITSET_ELT_BITS, lbitset_elt_alloc, debug_lbitset):
9604 Likewise.
9605 * src/LR0.c (allocate_itemsets): Likewise.
9606 * src/gram.h (rule_number, rule): Likewise.
9607 * src/lalr.h (goto_number): Likewise.
9608 * src/nullable.c (nullable_compute): Likewise.
9609 * src/output.c (prepare_rules): Likewise.
9610 * src/relation.c (relation_print, relation_digraph): Likewise.
9611 * src/relation.h (relation_node): Likewise.
9612 * src/state.h (state_number, transitions, errs, reductions,
9613 struct state): Likewise.
9614 * src/symtab.h (symbol_number, struct symbol): Likewise.
9615 * src/tables.c (vector_number, tally, action_number,
9616 default_goto, goto_actions): Likewise.
9617 * tests/existing.at (GNU Cim Grammar): Likewise.
9618 * tests/regression.at (Web2c Actions): Likewise.
9619
9620 * src/output.c (muscle_insert_short_int_table): Renamed from
9621 muscle_insert_short_table. All uses changed.
9622
9623 2004-03-25 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
9624
9625 * src/parse-gram.y: Define PERCENT_EXPECT_RR.
9626 (declaration): Replace expected_conflicts with expected_sr_conflicts.
9627 Add %expect-rr rule.
9628
9629 * src/scan-gram.l: Recognize %expect-rr.
9630
9631 * src/conflicts.h (expected_sr_conflicts): Rename from
9632 expected_conflicts.
9633 (expected_rr_conflicts): Declare.
9634
9635 * src/conflicts.c (expected_sr_conflicts): Rename from
9636 expected_conflicts.
9637 (expected_rr_conflicts): Define.
9638 (conflicts_print): Check r/r conflicts against expected_rr_conflicts
9639 for GLR parsers.
9640 Use expected_sr_conflicts in place of expected_conflicts.
9641 Warn if expected_rr_conflicts used in non-GLR parser.
9642
9643 * doc/bison.texinfo: Add documentation for %expect-rr.
9644
9645 2004-03-08 Paul Eggert <eggert@gnu.org>
9646
9647 Add support for hex token numbers. Suggested by Odd Arild Olsen in
9648 <http://lists.gnu.org/archive/html/bison-patches/2004-03/msg00000.html>.
9649
9650 * NEWS: Document hexadecimal tokens, no NUL bytes, %destructor
9651 in lalr1.cc.
9652 * doc/bison.texinfo (Token Decl): Add hexadecimal token numbers.
9653 * src/scan-gram.l (scan_integer): New function.
9654 ({int}): Use it.
9655 (0[xX][0-9abcdefABCDEF]+): New pattern, to support hex numbers.
9656 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>, \\x[0-9abcdefABCDEF]+,
9657 handle_action_dollar, handle_action_at, convert_ucn_to_byte):
9658 Say "long int", not "long", for uniformity with GNU style.
9659
9660 2004-02-25 Paul Eggert <eggert@twinsun.com>
9661
9662 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Ignore stdout from
9663 compilers. This fixes a problem with Intel's C++ compiler being
9664 chatty, reported by Guido Trentalancia in
9665 <http://lists.gnu.org/archive/html/bug-bison/2004-02/msg00030.html>.
9666
9667 2004-02-09 Alexandre Duret-Lutz <adl@gnu.org>
9668
9669 Support %destructor and merge error locations in lalr1.cc.
9670
9671 * data/lalr1.cc (b4_cxx_destruct_def): New macro.
9672 (Parser::stos_): Define unconditionally.
9673 (Parser::destruct_): New method. Generate its body with
9674 b4_yydestruct_generate.
9675 (Parser::error_start_): New attribute.
9676 (Parser::parse) <yyerrlab, yyerrlab1>: Call destruct_ on erroneous
9677 token which are discarded.
9678 (Parser::parse) <yyerrlab, yyerrorlab, yyerrlab1>: Update
9679 error_start_ when erroneous token are discarded.
9680 (Parser::parse) <yyerrlab1>: Compute the location of the error
9681 token so that it covers all the discarded tokens.
9682 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust so
9683 it can be called with `%skeleton "lalr1.cc"', and do that.
9684
9685 2004-02-02 Paul Eggert <eggert@twinsun.com>
9686
9687 * src/Makefile.am (AM_CPPFLAGS): New macro. It mentions
9688 $(top_srcdir)/lib and ../lib. This fixes a bug reported
9689 by Paul Hilfinger; the old INCLUDES value didn't mention ../lib.
9690 There's no need to mention top_builddir since Automake does that
9691 for us.
9692 (INCLUDES): Remove, as Automake says it's obsolescent.
9693 Contents migrated into AM_CPPFLAGS as described above.
9694 * lib/Makefile.am (INCLUDES): Remove; obsolescent.
9695
9696 2004-01-14 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
9697
9698 * data/glr.c (yytokenName): Bullet-proof against YYEMPTY token.
9699 (yyreportSyntaxError): Handle case where lookahead token is
9700 YYEMPTY.
9701
9702 2004-01-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
9703
9704 * data/glr.c: Put casts on uses of YYREALLOC and YYMALLOC so that
9705 resulting parsers are compilable with C++.
9706
9707 2003-12-23 Paul Eggert <eggert@twinsun.com>
9708
9709 * config/depcomp, config/install-sh: Sync with Automake 1.8.
9710 * src/output.c (output_skeleton): Rename local var.
9711 * tests/input.at (Torturing the Scanner): Don't use \x0 or \0 in
9712 Bison tokens, as this runs afoul of the 2003-10-07 change that
9713 disallowed NUL bytes in character constants or string literals.
9714
9715 * tests/local.at: Require Autoconf 2.59's Autotest.
9716 * tests/testsuite.at: Don't include local.at, since we now assume
9717 Autoconf 2.59 or later. Autoconf 2.59 had some problems with
9718 including it.
9719 * tests/Makefile.am ($(TESTSUITE)): Remove warning about ignoring
9720 multiple inclusion warnings.
9721
9722 2003-12-02 Akim Demaille <akim@epita.fr>
9723
9724 * doc/bison.texinfo (How Can I Reset the Parser): More about start
9725 conditions.
9726 From Bruno Haible.
9727
9728 2003-11-18 Alexandre Duret-Lutz <adl@gnu.org>
9729
9730 * doc/bison.texinfo (Bison Options): Escape `@' in `$@'.
9731
9732 2003-10-07 Paul Eggert <eggert@twinsun.com>
9733
9734 * tests/Makefile.am (clean-local): Don't run 'testsuite --clean'
9735 if testsuite doesn't exist.
9736
9737 * doc/bison.texinfo (Symbols): NUL bytes are not allowed in string
9738 literals, unfortunately.
9739 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
9740 Complain about NUL bytes in character constants or string literals.
9741
9742 2003-10-05 Paul Eggert <eggert@twinsun.com>
9743
9744 * NEWS: Don't document %no-default-prec, as it's still
9745 too experimental.
9746 * doc/bison.texinfo: Document %no-default-prec only if
9747 the defaultprec flag is set. Normally it's not.
9748
9749 2003-10-04 Paul Eggert <eggert@twinsun.com>
9750
9751 * data/glr.c (b4_rhs_value, b4_rhs_location): Yield a
9752 non-modifiable lvalue, instead of a modifiable one.
9753 * doc/bison.texinfo (Actions): Document that $$ can
9754 be assigned to. Do not claim that $$ and $N are
9755 array element references: user code should not rely on this.
9756
9757 2003-10-01 Paul Eggert <eggert@twinsun.com>
9758
9759 * src/parse-gram.h (PERCENT_NO_DEFAULT_PREC): New token.
9760 (grammar_declaration): Use it.
9761 * src/scan-gram.l: New token %no-default-prec.
9762 * tests/conflicts.at: Revamp tests to use %no-default-prec.
9763 * NEWS, doc/bison.texinfo: Document the above.
9764
9765 2003-10-01 Akim Demaille <akim@epita.fr>
9766
9767 VCG no longer supports long_straight_phase.
9768
9769 * src/vcg.c, src/vcg.h: Remove the handling of long_straight_phase.
9770 * src/print_graph.c (print_graph): Adjust.
9771
9772 2003-09-30 Frank Heckenbach <frank@g-n-u.de>
9773 and Paul Eggert <eggert@twinsun.com>
9774
9775 * doc/bison.texinfo (Decl Summary, Contextual Precedence,
9776 Table of Symbols): Document %default-prec.
9777 * src/parse-gram.y (PERCENT_DEFAULT_PREC): New token.
9778 (grammar_declaration): Set default_prec on %default-prec.
9779 * src/scan-gram.l (%default-prec): New token.
9780 * src/reader.h (default_prec): New flag.
9781 * src/reader.c: Likewise.
9782 (packgram): Handle it.
9783 * tests/conflicts.at (%default-prec without %prec,
9784 %default-prec with %prec, %default-prec 1): New tests.
9785
9786 2003-09-30 Paul Eggert <eggert@twinsun.com>
9787
9788 * tests/testsuite.at: Include local.at, not input.at, fixing
9789 a typo in the 2003-08-25 patch.
9790
9791 2003-08-27 Akim Demaille <akim@epita.fr>
9792
9793 * data/lalr1.cc (yyparse) [__GNUC__]: "Use" yyerrorlab to pacify
9794 GCC warnings.
9795
9796 2003-08-26 Akim Demaille <akim@epita.fr>
9797
9798 * config/announce-gen (print_changelog_deltas): Neutralize "<#" as
9799 "<\#" to avoid magic from Gnus when posting parts of this script.
9800
9801 2003-08-26 Akim Demaille <akim@epita.fr>
9802
9803 * data/lalr1.cc (Parser::report_syntax_error_): New, extracted from
9804 (Parser::parse): here.
9805 Adjust: nerrs and errstatus is now replaced by...
9806 (Parser::nerrs_, Parser::errstatus_): New.
9807
9808 2003-08-25 Akim Demaille <akim@epita.fr>
9809
9810 * config/announce-gen, Makefile.cfg: New.
9811 * Makefile.am: Adjust.
9812 * GNUmakefile, Makefile.maint: Update from CVS Autoconf, but
9813 keeping local WGET and WGETFLAGS modifications from Paul Eggert.
9814
9815 2003-08-25 Akim Demaille <akim@epita.fr>
9816
9817 When reducing initial empty rules, Bison parser read an initial
9818 location that is not defined. This results in garbage, and that
9819 affects Bison's own parser. Therefore we need (i) to extend Bison
9820 to support a means to initialize this location, and (ii) to use
9821 this CVS Bison to fix CVS Bison's parser.
9822
9823 * src/reader.h, reader.c (epilogue_augment): Remove, replace
9824 with...
9825 * src/muscle_tab.h, src/muscle_tab.c (muscle_code_grow): this.
9826 * src/parse-gram.y: Adjust.
9827 (%initial-action): New.
9828 (%error-verbose): Since we require CVS Bison, there is no reason
9829 not to use it.
9830 * src/scan-gram.l: Adjust.
9831 * src/Makefile.am (YACC): New, to make sure we use our own parser.
9832 * data/yacc.c (yyparse): Use b4_initial_action.
9833
9834 2003-08-25 Akim Demaille <akim@epita.fr>
9835
9836 * doc/bison.texinfo: Don't promote stdout for error messages.
9837
9838 2003-08-25 Akim Demaille <akim@epita.fr>
9839
9840 * data/lalr1.cc (Parser::reduce_print_): Remove unused yyi.
9841 From Alexandre Duret-Lutz.
9842
9843 2003-08-25 Akim Demaille <akim@epita.fr>
9844
9845 Version 1.875c.
9846
9847 2003-08-25 Akim Demaille <akim@epita.fr>
9848
9849 * data/lalr1.cc (Parser::stack_print_, YY_STACK_PRINT): New.
9850 Use them.
9851
9852 2003-08-25 Akim Demaille <akim@epita.fr>
9853
9854 * data/lalr1.cc (Parser::reduce_print_): New.
9855 Use it.
9856
9857 2003-08-25 Akim Demaille <akim@epita.fr>
9858
9859 Have lalr1.cc catch with Paul Eggert's patch to fix the infinite
9860 error recovery loops. This patch is based on
9861 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00000.html>.
9862 Also, augment the similarity between lalr1.cc and yacc.c.
9863 Note: the locations of error recovery rules are not correct yet.
9864
9865 * data/lalr1.cc: Comment changes to augment the similarity between
9866 lalr1.cc and yacc.c.
9867 (YYERROR): Goto to yyerrorlab, not yyerrlab1.
9868 (yyerrlab1): Remove, but where it used to be (now the bottom part of
9869 yyerrlab), when hitting EOF, pop the whole stack here instead of
9870 merely falling thru the default error handling mechanism.
9871 (yyerrorlab): New label, with the old contents of YYERROR,
9872 plus the following change: pop the stack of rhs corresponding
9873 to the production that invoked YYERROR. That is how Yacc
9874 behaves (required by POSIX).
9875 * tests/calc.at (AT_CHECK_CALC_LALR1_CC): No longer expected to
9876 fail.
9877
9878 2003-08-25 Akim Demaille <akim@epita.fr>
9879
9880 Tune local.at so that people can "autom4te -l autotest calc.at -o
9881 calc" for instance, to extract a sub test suite.
9882
9883 * tests/testsuite.at: Move the initialization, Autotest version
9884 requirement, and AT_TESTED invocation into...
9885 * tests/local.at: here.
9886 * tests/testsuite.at: Include it for compatibility with Autoconf
9887 2.57.
9888 * tests/Makefile.am ($(TESTSUITE)): Report that the warning should
9889 be ignore.
9890
9891 2003-08-04 Paul Eggert <eggert@twinsun.com>
9892
9893 Rework code slightly to avoid gcc -Wtraditional warnings.
9894 * data/glr.c (yyuserMerge): Return void, not YYSTYPE.
9895 The returned value is now stored in *YY0. All callers changed.
9896 * src/output.c (merge_output): Adjust to the above change.
9897
9898 2003-07-26 Paul Eggert <eggert@twinsun.com>
9899
9900 * data/glr.c (YYASSERT): New macro.
9901 (yyfillin, yydoAction, yyglrReduce, yysplitStack,
9902 yyresolveStates, yyprocessOneStack):
9903 Use `YYASSERT (FOO);' rather than `if (! (FOO)) abort ();'.
9904 Derived from a suggestion by Frank Heckenbach.
9905
9906 2003-07-25 Paul Eggert <eggert@twinsun.com>
9907
9908 * data/glr.c (yyglrReduce): Don't use C89 string concatenation,
9909 for portability to K&R C (after ansi2knr, presumably). See
9910 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>
9911 by Frank Heckenbach, though I have omitted the structure-initialization
9912 part of his glr-knr.diff patch since I recall that the Portable
9913 C Compiler didn't require that change.
9914
9915 Let the user specify how to allocate and free memory.
9916 Derived from a suggestion by Frank Heckenbach in
9917 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>.
9918 * data/glr.c (YYFREE, YYMALLOC, YYREALLOC): New macros.
9919 All uses of free, malloc, realloc changed to use these macros,
9920 and unnecessary casts removed.
9921 * data/yacc.c (YYFREE, YYMALLOC): Likewise.
9922
9923 2003-07-06 Matthias Mann <MatthiasMann@gmx.de>
9924
9925 * data/lalr1.cc (operator<<(std::ostream&, const Position&)):
9926 use s.empty() rather than s == "" to test for empty string; see
9927 <http://lists.gnu.org/archive/html/bison-patches/2003-07/msg00003.html>
9928 (trivial change)
9929
9930 2003-06-25 Akim Demaille <akim@epita.fr>
9931
9932 * config/depcomp, config/install-sh: Update from masters.
9933
9934 2003-06-20 Paul Eggert <eggert@twinsun.com>
9935
9936 * data/glr.c (YYLLOC_DEFAULT): Parenthesize arguments as needed,
9937 and return properly parenthesized result.
9938 * data/lalar1.cc (YYLLOC_DEFAULT): Likewise.
9939 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
9940 Remove unnecessary parentheses from uses.
9941 * doc/bison.texinfo (Location Default Action): Describe the
9942 conventions for parentheses.
9943
9944 2003-06-19 Paul Eggert <eggert@twinsun.com>
9945
9946 * data/glr.c (yyremoveDeletes, yy_reduce_print, yyglrReduce,
9947 yyreportTree): Do not assume that size_t is the same width as int,
9948 when printing sizes. Print sizes using an unsigned format.
9949 Problem reported by Frank Heckenbach in
9950 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00035.html>.
9951
9952 Port to Forte Developer 7 C compiler.
9953 * data/glr.c (struct YYLTYPE): If locations are not being used,
9954 declare a single dummy member, as empty structs do not conform
9955 to the C standard.
9956 (YYERROR, YYBACKUP): Do not use "do { ...; return foo; } while (0)";
9957 the Forte Developer 7 C compiler complains that end-of-loop
9958 code is not reached.
9959
9960 2003-06-17 Paul Eggert <eggert@twinsun.com>
9961
9962 * lib/libiberty.h (PARAMS): Spell argument as Args, not as X, to
9963 avoid warnings from picky compilers about redefinition of PARAMS.
9964
9965 2003-06-17 Paul Eggert <eggert@twinsun.com>
9966
9967 Version 1.875b.
9968
9969 * NEWS: Document 1.875b.
9970
9971 * lib/bbitset.h: Do not include config.h; that's the includer's job.
9972 Do not include <sys/types.h>; shouldn't be needed on a C89 host.
9973 * lib/bitset.h (bitset_compatible_p): Indent as per GNU standard.
9974 Don't use 'index' in comments, as it's a builtin fn on some hosts.
9975 * lib/bitset_stats.c: Include gettext.h unconditionally, as
9976 per recent gettext manual's suggestion.
9977 * lib/ebitset.c (ebitset_resize, ebitset_unused_clear):
9978 Use prototypes, not old-style definitions.
9979 * lib/lbitset.c (lbitset_unused_clear): Likewise.
9980 * lib/vbitset.c (vbitset_resize, vbitset_ones, vbitset_zero,
9981 vbitset_empty_p, vbitset_copy1, vbitset_not, vbitset_equal_p,
9982 vbitset_subset_p, vbitset_disjoint_p, vbitset_and, vbitset_and_cmp,
9983 vbitset_andn, vbitset_andn_cmp, vbitset_or, vbitset_or_cmp,
9984 vbitset_xor, vbitset_xor_cmp, vbitset_and_or, vbitset_and_or_cmp,
9985 vbitset_andn_or, vbitset_andn_or_cmp, vbitset_or_and,
9986 vbitset_or_and_cmp, vbitset_copy): Likewise.
9987
9988 * lib/libiberty.h: Do not include config.h; that's the includer's job.
9989 Do not include <stdlib.h>.
9990 (PARAMS): Define unconditionally for C89.
9991 (ATTRIBUTE_NORETURN): Remove.
9992 (ATTRIBUTE_UNUSED): Define unconditionally.
9993
9994 Upgrade to 2003-06-08 libbitset, submitted by Michael Hayes in:
9995 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00005.html>
9996 * lib/Makefile.am (bitsets_sources): Add vbitset.c, vbitset.h.
9997 * lib/vbitset.c, lib/vbitset.h: New files.
9998 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
9999 lib/bitset_stats.c, lib/ebitset.c, lib/lbitset.c: Import
10000 from libbitset.
10001
10002 * doc/bison.texinfo (How Can I Reset the Parser): Renamed from
10003 `How Can I Reset @code{yyparse}', since texinfo does not allow
10004 arbitrary @ in node names.
10005
10006 * m4/Makefile.am (EXTRA_DIST): Add the following files, which
10007 shouldn't be needed according to the gettext 0.12.1 documentation
10008 but which seem to be needed anyway: codeset.m4 glibc21.m4
10009 intdiv0.m4 inttypes-pri.m4 inttypes.m4 inttypes_h.m4 isc-posix.m4
10010 lcmessage.m4 nls.m4 po.m4 stdint_h.m4 uintmax_t.m4 ulonglong.m4.
10011 * po/Makefile.in.in: Upgrade to gettext 0.12.1 version.
10012
10013 * lib/.cvsignore: Add stdbool.h.
10014 * m4/.cvsignore: Add nls.m4, po.m4.
10015
10016 Upgrade to CVS gnulib.
10017 * stdbool_.h: File renamed from stdbool.h.in.
10018 * configure.ac (AM_STDBOOL_H): Invoke this instead of
10019 AC_HEADER_STDBOOL.
10020 (AM_GNU_GETTEXT): Put brackets around args, as latest manual suggests.
10021 (AM_GNU_GETTEXT_VERSION): Update to 0.12.1.
10022 * lib/Makefile.am (EXTRA_DIST): Add stdbool_.h.
10023 (MOSTLYCLEANFILES): New var.
10024 ($(libbison_a_OBJECTS)): Depend on $(STDBOOL_H).
10025 (stdbool.h): New rule.
10026 * lib/dirname.c, lib/dirname.h, lib/hash.c, lib/hash.h,
10027 lib/malloc.c, lib/obstack.h, lib/quote.c, lib/realloc.c,
10028 lib/strcasecmp.c, lib/xalloc.h, m4/alloca.m4, m4/onceonly.m4,
10029 m4/quote.m4: Upgrade to today's gnulib.
10030
10031 * tests/calc.at (AT_CHECK_CALC): New option EXPECTED-TO-FAIL.
10032 (AT_CHECK_CALC_LALR1_CC): Use it, since the C++ LALR parser fails
10033 the tests right now.
10034 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Ensure yylex and
10035 yyerror are declared before use; C99 requires this.
10036
10037 2003-06-09 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10038
10039 * data/glr.c (YYERROR): Update definition to reset yyerrState to 0
10040 first.
10041 (yyrecoverSyntaxError): Correct the logic for setting and testing
10042 yyerrState.
10043 Correct comment on handling EOF.
10044 Allow states with only a default reduction, rather than failing
10045 (I can't quite reconstruct why these were not allowed before).
10046
10047 Fixes to avoid problem that $-N rules in GLR parsers can cause
10048 buffer overruns, corrupting state.
10049
10050 * src/output.c (prepare_rules): Output max_left_semantic_context
10051 definition.
10052 * src/reader.h (max_left_semantic_context): New variable declaration.
10053 * src/scan-gram.l (max_left_semantic_context): Define.
10054 (handle_action_dollar): Update max_left_semantic_context.
10055 * data/glr.c (YYMAXLEFT): New definition.
10056 (yydoAction): Increase size of yyrhsVals by YYMAXLEFT.
10057 (yyresolveAction): Ditto.
10058
10059 Fixes to problems with location handling in GLR parsers reported by
10060 Frank Heckenbach (2003/06/05).
10061
10062 * data/glr.c (YYLTYPE): Make trivial if locations not used.
10063 (YYRHSLOC): Add parentheses, and define only if locations used.
10064 (YYLLOC_DEFAULT): Add parentheses, and give trivial definition if
10065 locations not used.
10066 (yyuserAction): Use YYLLOC_DEFAULT to set *yylocp.
10067 (yydoAction): Remove redundant initialization of *yyvalp and *yylocp.
10068
10069 * tests/cxx-type.at: Exercise location information; update tests
10070 to differentiate output with and without locations.
10071 Remove forward declarations of yylex and yyerror---caused errors
10072 because default YYLTYPE not yet defined.
10073 Change semantic actions to compute strings, rather than printing
10074 them directly (to test proper passing of semantics values). Change
10075 output to prefix notation and update test data and expected results.
10076 (yylex): Track locations.
10077 (stmtMerge): Return value rather than printing, and include arguments
10078 in value.
10079
10080 2003-06-03 Paul Eggert <eggert@twinsun.com>
10081
10082 Avoid warnings generated by GCC 2.95.4 when Bison is
10083 configured with --enable-gcc-warnings.
10084 * data/lalr1.cc (yy::]b4_parser_class_name[::parse,
10085 yy::]b4_parser_class_name[::translate_,
10086 yy::Stack::operator[] (unsigned),
10087 yy::Stack::operator[] (unsigned) const,
10088 yy::Slice::operator[] (unsigned),
10089 yy::Slice::operator[] (unsigned) const):
10090 Rename local vars to avoid warnings.
10091 * tests/glr-regression.at (Improper handling of embedded actions
10092 and $-N in GLR parsers): Remove unused local variable from yylex.
10093 * tests/regression.at (_AT_DATA_DANCER_Y): Declare yylex to take
10094 (void) as arg when not pure, since we now assume C89 when building
10095 Bison. Pacify GCC by using parameter.
10096
10097 2003-06-02 Paul Eggert <eggert@twinsun.com>
10098
10099 * data/lalr1.cc (yy::Position::lines, yy::Position::columns,
10100 yy::Location::lines, yy::Location::columns): Rename arguments
10101 to avoid shadowing; this removes a warning generated by GCC 3.3.
10102
10103 2003-06-01 Paul Eggert <eggert@twinsun.com>
10104
10105 Don't pass C-only warning optins (e.g., -Wmissing-declarations)
10106 to g++, as GCC 3.3 complains if you do it.
10107 * configure.ac (WARNING_CXXFLAGS): New subst. Set it to
10108 everything that WARNING_CFLAGS has, except omit warnings
10109 not suitable for C++.
10110 (AC_PROG_CXX): Use this instead of AC_CHECK_PROGS([CXX], [g++]).
10111 * tests/atlocal.in (CXXFLAGS): New var.
10112 * tests/local.at (AT_COMPILE_CXX): Use it instead of CFLAGS.
10113
10114 Fix a GLR parser bug I reported in February; see
10115 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00008.html>.
10116 The problem was that GLR parsers did not conform to the C standard,
10117 because actions like { $1 = $2 + $3; } expanded to expressions
10118 that invoked YYFILL in separate subexpressions, and YYFILL assigned
10119 to a local variable. The C standard says that expressions
10120 like (var = f ()) + (var = f ()) have undefined behavior.
10121 Another problem was that GCC sometimes issues warnings that
10122 yyfill and its parameters are unused.
10123
10124 * data/glr.c (yyfillin): Renamed from the old yyfill. Mark
10125 as possibly unused.
10126 (yyfill): New function.
10127 (YYFILL): Use it.
10128 (yyuserAction): Change type of yynormal to bool, so that it matches
10129 the new yyfill signature. Mark it as possibly unused.
10130
10131
10132 Follow up on a bug I reported in February, where a Bison-generated
10133 parser can loop. Provide a test case and a fix for yacc.c. I
10134 don't have a fix for lalr1.cc or for glr.c, unfortunately.
10135 The original bug report is in:
10136 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00044.html>
10137
10138 * data/yacc.c (YYERROR): Now just 'goto yyerrorlab', since the
10139 macro's size was becoming unwieldy.
10140 (yyerrlab): Do not discard an empty lookahead symbol, as this
10141 might destroy garbage.
10142 (yyerrorlab): New label, with the old contents of YYERROR,
10143 plus the following change: pop the stack of rhs corresponding
10144 to the production that invoked YYERROR. That is how Yacc
10145 behaves, and POSIX requires this behavior.
10146 (yyerrlab1): Use YYPOPSTACK instead of its definiens.
10147 * tests/calc.at (_AT_DATA_CALC_Y): Include unistd.h if available.
10148 Define 'alarm' to do nothing if unistd.h is not available.
10149 Add a new rule "exp: '-' error;" to test the above change to
10150 data/yacc.c. Use 'alarm' to abort any test taking longer than
10151 10 seconds, as it's probably looping.
10152 (AT_CHECK_CALC): Test recovery from error in new grammar rule.
10153 Also, the new yacc.c generates two fewer diagnostics for an
10154 existing test.
10155
10156 2003-05-24 Paul Eggert <eggert@twinsun.com>
10157
10158 * data/glr.c (YYSTACKEXPANDABLE): Do not evaluate
10159 YYSTYPE_IS_TRIVIAL or YYSTYPE_IS_TRIVIAL unless they are defined.
10160 This fixes a problem reported by John Bowman when the Compaq/HP
10161 Alpha cxx compiler happy (e.g. using cxx -D__USE_STD_IOSTREAM
10162 -ansi -Wall -gall).
10163 * data/yacc.c (union yyalloc): Likewise.
10164 (YYCOPY): Do not evaluate __GNUC__ unless it is defined.
10165
10166 Switch from 'int' to 'bool' where that makes sense.
10167
10168 * lib/abitset.c (abitset_test, abitset_empty_p, abitset_equal_p,
10169 abitset_subset_p, abitset_disjoint_p, abitset_and_cmp,
10170 abitset_andn_cmp, abitset_or_cmp, abitset_xor_cmp, abitset_and_or,
10171 abitset_and_or_cmp, abitset_andn_or_cmp, abitset_or_and_cmp):
10172 Return or accept bool, not int. All callers changed.
10173 * lib/bbitset.h: (bitset_toggle_, bitset_copy_, bitset_and_or_cmp_,
10174 bitset_andn_or_cmp_, bitset_or_and_cmp_): Likewise.
10175 * lib/bitset.c (bitset_only_set_p, bitset_print, bitset_toggle_,
10176 bitset_copy_, bitset_op4_cmp, bitset_and_or_cmp_, bitset_andn_or_cmp_,
10177 bitset_or_and_cmp_): Likewise.
10178 * lib/bitset.h (bitset_test, bitset_only_set_p): Likewise.
10179 * lib/bitset_stats.c (bitset_stats_print, bitset_stats_toggle,
10180 bitset_stats_test, bitset_stats_empty_p, bitset_stats_disjoint_p,
10181 bitset_stats_equal_p, bitset_stats_subset_p, bitset_stats_and_cmp,
10182 bitset_stats_andn_cmp, bitset_stats_or_cmp, bitset_stats_xor_cmp,
10183 bitset_stats_and_or_cmp, bitset_stats_andn_or_cmp,
10184 bitset_stats_or_and_cmp): Likewise.
10185 * lib/ebitset.c (ebitset_elt_zero_p, ebitset_equal_p, ebitset_copy_cmp,
10186 ebitset_test, ebitset_empty_p, ebitset_subset_p, ebitset_disjoint_p,
10187 ebitset_op3_cmp, ebitset_and_cmp, ebitset_andn_cmp, ebitset_or_cmp,
10188 ebitset_xor_cmp): Likewise.
10189 * lib/lbitset.c (lbitset_elt_zero_p, lbitset_equal_p, lbitset_copy_cmp,
10190 lbitset_test, lbitset_empty_p, lbitset_subset_p, lbitset_disjoint_p,
10191 lbitset_op3_cmp, lbitset_and_cmp, lbitset_andn_cmp, lbitset_or_cmp,
10192 lbitset_xor_cmp): Likewise.
10193 * lib/bbitset.h: Include <stdbool.h>.
10194 (struct bitset_vtable): The following members now return bool, not
10195 int: toggle, test, empty_p, disjoint_p, equal_p, subset_p,
10196 and_cmp, andn_cmp, or_cmp, xor_cmp, and_or_cmp, andn_or_cmp,
10197 or_and_cmp).
10198 * src/conflicts.c (count_rr_conflicts): Likewise.
10199 * lib/bitset_stats.h (bitset_stats_enabled): Now bool, not int.
10200 All uses changed.
10201 * lib/ebitset.c (ebitset_obstack_init): Likewise.
10202 * lib/lbitset.c (lbitset_obstack_init): Likewise.
10203 * src/getargs.c (debug_flag, defines_flag, locations_flag,
10204 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
10205 graph_flag): Likewise.
10206 * src/getargs.h (debug_flag, defines_flag, locations_flag,
10207 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
10208 graph_flag): Likewise.
10209 * src/output.c (error_verbose): Likewise.
10210 * src/output.h (error_verbose): Likewise.
10211 * src/reader.c (start_flag, typed): Likewise.
10212 * src/reader.h (typed): Likewise.
10213 * src/getargs.c (LOCATIONS_OPTION): New constant.
10214 (long_options, getargs): Use it.
10215 * src/lalr.c (build_relations): Use bool, not int.
10216 * src/nullable.c (nullable_compute): Likewise.
10217 * src/print.c (print_reductions): Likewise.
10218 * src/tables.c (action_row, pack_vector): Likewise.
10219 * src/muscle_tab.h (MUSCLE_INSERT_BOOL): New macro.
10220 * src/output.c (prepare): Use it.
10221 * src/output.c (token_definitions_output,
10222 symbol_destructors_output, symbol_destructors_output): Use string,
10223 not boolean integer, to keep track of whether to output separator.
10224 * src/print_graph.c (print_core): Likewise.
10225 * src/state.c (state_rule_lookaheads_print): Likewise.
10226
10227 * config/install-sh: Sync from automake 1.7.5.
10228
10229 2003-05-14 Paul Eggert <eggert@twinsun.com>
10230
10231 * src/parse-gram.y (rules_or_grammar_declaration): Require a
10232 semicolon after a grammar declaration, in the interest of possible
10233 future changes to the Bison input language.
10234 Do not allow a stray semicolon at the start of the grammar.
10235 (rhses.1): Allow one or more semicolons after any rule, including
10236 just before "|" as required by POSIX.
10237 * tests/input.at (Torturing the Scanner): Add tests for ";|" in a
10238 grammar.
10239
10240 2003-05-14 Alexandre Duret-Lutz <adl@gnu.org>
10241
10242 %parse-param support for lalr1.cc.
10243
10244 * data/lalr1.cc (b4_parse_param_decl, b4_parse_param_cons,
10245 b4_cc_constructor_calls, b4_cc_constructor_call,
10246 b4_parse_param_vars, b4_cc_var_decls, b4_cc_var_decl): New m4
10247 definitions.
10248 (yy::b4_parser_class_name::b4_parser_class_name): Take extra
10249 parse-param arguments.
10250 (yy::b4_parser_class_name): Declare instance variables to
10251 hold parse-param arguments.
10252 * tests/calc.at: s/value/semantic_value/ because value clashes
10253 with a member of yy::b4_parser_class_name. Adjust C++ code
10254 to handle %parse-param. Enable %parse-param test in C++.
10255
10256 2003-05-12 Paul Eggert <eggert@twinsun.com>
10257
10258 * doc/bison.texinfo (How Can I Reset @code{yyparse}): Reword the
10259 English a bit. Fix fclose typo. Change "const char" to "char
10260 const", and use ANSI C rather than K&R for "main". Suggest
10261 YY_FLUSH_BUFFER over yyrestart (as that is what Flex recommends)
10262 and suggest yy_switch_to_buffer.
10263
10264 2003-05-05 Paul Eggert <eggert@twinsun.com>
10265
10266 * lib/bitset.h (__INT_TO_PTR): Define to a value that presumes
10267 C89. This avoids a diagnostic on compilers that define __STDC__
10268 to 0, fixing a problem with Tru64 cc reported by Martin Mokrejs in
10269 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
10270
10271 2003-05-03 Paul Eggert <eggert@twinsun.com>
10272
10273 * lib/bitset.h (BITSET_FOR_EACH, BITSET_FOR_EACH_REVERSE):
10274 Do not overrun array bounds.
10275 This should fix a bug reported today by Olatunji Oluwabukunmi in
10276 <http://lists.gnu.org/archive/html/bug-bison/2003-05/msg00004.html>.
10277
10278 2003-04-29 Akim Demaille <akim@epita.fr>
10279
10280 * src/gram.h, src/gram.c (pure_parser, glr_parser): Move to...
10281 * src/getargs.c, src/getargs.h: here, as bool, not int.
10282 (nondeterministic_parser): New.
10283 * src/parse-gram.y, src/scan-gram.l: Support
10284 %nondeterministic-parser.
10285 * src/output.c (prepare): Use nondeterministic_parser instead
10286 of glr_parser where appropriate.
10287 * src/tables.c (conflict_row, action_row, save_row)
10288 (token_actions, token_actions, pack_vector): Ditto.
10289
10290 2003-04-29 Akim Demaille <akim@epita.fr>
10291
10292 * doc/bison.texinfo (C++ Parsers, Implementing Loops): New.
10293
10294 2003-04-29 Akim Demaille <akim@epita.fr>
10295
10296 * tests/calc.at: Also test yacc.c and glr.c (but not lalr1.cc yet)
10297 with %pure-parser and %locations to exercise the patch from Yakov
10298 Markovitch below.
10299
10300 2003-04-28 Tim Van Holder <tim.van.holder@pandora.be>
10301
10302 * data/yacc.c: (b4_lex_param): Corrected for the case where
10303 %lex-param is provided and %pure-parser isn't.
10304
10305 2003-04-27 Paul Eggert <eggert@twinsun.com>
10306
10307 Avoid gcc -Wundef warnings reported by Gerald Pfeifer in
10308 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00044.html>.
10309 * data/yacc.c (YYSTACK_ALLOC): Don't evaluate YYSTACK_USE_ALLOCA
10310 if it is not defined.
10311 (YYMAXDEPTH): Don't evaluate YYMAXDEPTH if it is not defined.
10312
10313 2003-04-26 Paul Eggert <eggert@twinsun.com>
10314
10315 * data/lalr1.cc (yy::Parser::pact_ninf_, yy::Parser::table_ninf_):
10316 Declare to be of type suitable for the ninf value itself, not of
10317 type suitable for the corresponding table, since the latter might
10318 be unsigned but the ninf value might be negative. This fixes a
10319 bug reported by Alexandre Duret-Lutz in
10320 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00017.html>.
10321
10322 * configure.ac (AC_FUNC_ERROR_AT_LINE): Remove, since gl_ERROR
10323 invokes it. We shouldn't invoke it twice because it will attempt
10324 to put error.o in the archive twice. This fixes a glitch reported
10325 by Martin Mokrejs in
10326 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
10327
10328 2003-04-21 Paul Eggert <eggert@twinsun.com>
10329
10330 * m4/error.m4: Update from Bruno Haible's 2003-04-14 patch
10331 to gnulib.
10332
10333 2003-04-21 Yakov Markovitch <Markovitch@iso.ru>
10334
10335 * data/glr.c (yyexpandGLRStack) [!YYSTACKEXPANDABLE]:
10336 Fix obvious typo that results in uncompilable GLR parsers
10337 when both %pure-parser and %locations are used. (trivial change)
10338
10339 2003-04-17 Paul Eggert <eggert@twinsun.com>
10340
10341 * src/scan-gram.l: Add %option nounput, since we no longer use unput.
10342 (unexpected_eof): Renamed from unexpected_end_of_file, for brevity.
10343 Do not insert the expected token via unput, as this runs afoul
10344 of a POSIX-compatibility bug in flex 2.5.31.
10345 All uses changed to BEGIN the parent state,
10346 since we no longer insert the expected token via unput.
10347 * tests/regression.at (Invalid inputs): Remove cascaded diagnostic
10348 that is no longer emitted after the above change.
10349
10350 * src/conflicts.c (set_conflicts): Resolve all conflicts, not just
10351 the first one. This change is from Paul Hilfinger, and it fixes
10352 regression reported by Werner Lemberg in
10353 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
10354
10355 (resolve_sr_conflict): Don't invoke state_errs_set
10356 unless one or more tokens have been explicitly made errors.
10357 Otherwise, the above change causes Bison to abort.
10358
10359 * tests/existing.at (GNU pic Grammar): New test case, taken from
10360 Lemberg's email.
10361
10362 2003-03-31 Akim Demaille <akim@epita.fr>
10363
10364 * doc/Makefile.am (AM_MAKEINFOFLAGS): Don't split the info file.
10365
10366 2003-03-31 Akim Demaille <akim@epita.fr>
10367
10368 * src/output.c (prepare_symbols): Avoid trailing spaces in the
10369 output.
10370
10371 2003-03-31 Akim Demaille <akim@epita.fr>
10372
10373 * doc/bison.texinfo (Strings are Destroyed): s/losses/loses/.
10374 From Paul Hilfinger.
10375
10376 2003-03-29 Akim Demaille <akim@epita.fr>
10377
10378 * m4/error.m4: Do not put under dynamic conditions some code which
10379 expansion is under static control.
10380
10381 2003-03-29 Akim Demaille <akim@epita.fr>
10382
10383 * doc/bison.texinfo (How Can I Reset @code{yyparse}): New.
10384
10385 2003-03-29 Akim Demaille <akim@epita.fr>
10386
10387 * doc/bison.texinfo (Strings are Destroyed): New.
10388
10389 2003-03-13 Paul Eggert <eggert@twinsun.com>
10390
10391 * .cvsignore: Add configure.lineno.
10392 * src/.cvsignore: Add yacc.
10393 * tests/.cvsignore: Add testsuite.log.
10394 * doc/fdl.texi: Sync with latest FSF version.
10395
10396 2003-03-12 Paul Eggert <eggert@twinsun.com>
10397
10398 * scan-gram.l (YY_USER_INIT): Initialize code_start, too.
10399 (<INITIAL><<EOF>>, <SC_PRE_CODE><<EOF>>): Set *loc to the scanner
10400 cursor, instead of leaving it undefined. This fixes a bug
10401 reported by Tim Van Holder in
10402 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00023.html>.
10403 * tests/input.at (Torturing the Scanner): Test the scanner on
10404 an empty input file, which was Tim Van Holder's test case.
10405
10406 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): When checking whether
10407 <sys/resource.h> can be included, include sys/time.h and
10408 sys/times.h first, if available. This works around the SunOS
10409 4.1.4 porting bug reported by Bruce Becker in
10410 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00018.html>.
10411
10412 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't
10413 AC_CHECK_HEADERS([sys/wait.h]), as this interferes with
10414 AC_HEADER_SYS_WAIT.
10415
10416 Merge changes from gnulib. This was prompted because the CVS
10417 snapshot didn't build on Solaris 7 due to strnlen problems.
10418
10419 These changes need to be merged back into gnulib:
10420 * lib/hash.c: Include <stdbool.h> unconditionally.
10421 * m4/onceonly.m4 (m4_quote): New macro.
10422 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
10423 Quote AC_FOREACH variable-expansions properly.
10424 The 2003-01-03 obstack.h change also needs merging.
10425 {end of changes requiring merging}
10426
10427 * lib/stdbool.h.in, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
10428 m4/getopt.m4, m4/hash.m4, m4/malloc.m4, m4/memchr.m4,
10429 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/quote.m4,
10430 m4/quotearg.m4, m4/realloc.m4, m4/stpcpy.m4, m4/strnlen.m4,
10431 m4/strtol.m4, m4/strtoul.m4, m4/unlocked-io.m4, m4/xalloc.m4:
10432 New files, imported from gnulib.
10433 * m4/Makefile.am (EXTRA_DIST): Add the new m4/*.m4 files mentioned
10434 above.
10435
10436 * lib/mbswidth.c, m4/error.m4, m4/mbrtowc.m4, m4/mbswidth.m4,
10437 m4/memcmp.m4, m4/prereq.m4, m4/stdbool.m4: Update to current
10438 gnulib sources.
10439
10440 * configure.ac (gl_DIRNAME, gl_GETOPT, gl_HASH, gl_QUOTE, gl_XALLOC):
10441 Add.
10442 (gl_ERROR): New, replacing jm_PREREQ_ERROR.
10443 (gl_FUNC_ALLOCA): New, replacing AC_FUNC_ALLOCA.
10444 (gl_FUNC_STPCPY): New, replacing AC_REPLACE_FUNCS(stpcpy).
10445 (gl_FUNC_STRNLEN): New, replacing AC_FUNC_STRNLEN.
10446 (gl_MBSWIDTH): New, replacing jm_PREREQ_MBSWIDTH.
10447 (gl_OBSTACK): New, replacing AC_FUNC_OBSTACK.
10448 (gl_QUOTEARG): New, replacing jm_PREREQ_QUOTEARG.
10449 (jm_FUNC_GLIBC_UNLOCKED_IO, gl_FUNC_STPCPY, gl_FUNC_STRTOL): New.
10450 (jm_FUNC_MALLOC): New, replacing AC_FUNC_MALLOC.
10451 (jm_FUNC_REALLOC): New, replacing AC_FUNC_REALLOC.
10452 (jm_PREREQ_ARGMATCH): Remove.
10453 (AC_REPLACE_FUNCS): Remove memchr, memrchr, stpcpy, strtol, strtoul.
10454 * lib/Makefile.am (libbison_a_SOURCES): Add argmatch.c, argmatch.h.
10455
10456 * src/system.h: Include <stdbool.h> unconditionally.
10457
10458 * lib/bbitset.h: Include <limits.h> unconditionally. We have been
10459 assuming at least C89 in the bitset code for some time now.
10460
10461 2003-03-03 Akim Demaille <akim@epita.fr>
10462
10463 * ro.po: New.
10464
10465 2003-03-02 Akim Demaille <akim@epita.fr>
10466
10467 * doc/bison.texinfo (Table of Symbols): Reactivate the
10468 documentation for %lex-param, and %parse-param.
10469
10470 2003-03-02 Akim Demaille <akim@epita.fr>
10471
10472 * data/yacc.c, data/glr.c, data/lal1.cc: Use similar code to
10473 generate verbose error messages.
10474 Use the number of tokens as an upper bound in yytname, as it
10475 cannot be a non terminal.
10476
10477 2003-03-02 Akim Demaille <akim@epita.fr>
10478
10479 * tests/regression.at (_AT_DATA_DANCER_Y): Fix the expected error
10480 message.
10481
10482 2003-03-02 Akim Demaille <akim@epita.fr>
10483
10484 * tests/regression.at (_AT_DATA_DANCER_Y, AT_CHECK_DANCER): New.
10485 Use them to exercise yycheck overrun.
10486 Based on Andrew Suffield's grammar.
10487
10488 2003-03-02 Akim Demaille <akim@epita.fr>
10489
10490 Create tests/local.at for Bison generic testing macros.
10491
10492 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Move to...
10493 * tests/local.at (AT_BISON_OPTION_PUSHDEFS, AT_BISON_OPTION_POPDEFS):
10494 This new file.
10495 * tests/calc.at (AT_CHECK_CALC): Adjust.
10496 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR)
10497 (AT_COMPILE, AT_COMPILE_CXX, AT_PARSER_CHECK): Move to...
10498 * tests/local.at: here.
10499 (AT_COMPILE_CXX): Tags the tests using it as c++.
10500 Ignore the test if CXX is not functional.
10501
10502 2003-03-01 Paul Eggert <eggert@twinsun.com>
10503
10504 * src/scan-gram.l (code_start): Initialize it to scanner_cursor,
10505 not loc->end, since loc->end might contain garbage and this leads
10506 to undefined behavior on some platforms.
10507 (id_loc, token_start): Use (IF_LINTed) initial values that do not
10508 depend on *loc, so that the reader doesn't give the the false
10509 impression that *loc is initialized.
10510 (<INITIAL>"%%"): Do not bother setting code_start, since its value
10511 does not survive the return.
10512
10513 2003-03-01 Akim Demaille <akim@epita.fr>
10514
10515 * src/scan-gram.l (code_start): Always initialize it when entering
10516 into yylex, as SC_EPILOGUE is activated *before* the corresponding
10517 yylex invocation. An alternative would be making it static, but
10518 then it starts with the second %%'s beginning, instead of its end.
10519
10520 2003-02-28 Paul Eggert <eggert@twinsun.com>
10521
10522 * lib/mbswidth.c: Include <wchar.h> before "mbswidth.h", to work
10523 around a UnixWare 7.1.1 porting bug reported by John Hughes in
10524 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00030.html>.
10525
10526 2003-02-26 Paul Eggert <eggert@twinsun.com>
10527
10528 * README: Mention compiler bug in Sun Forte Developer 6 update 2.
10529 Remove Sequent/Pyramid discussion (nobody uses them any more).
10530 Merge VMS and MS-DOS discussion; these ports may well be dead
10531 but let's keep mentioning them for now. Put <> around email
10532 addresses. Add copyright notice.
10533
10534 2003-02-24 Paul Eggert <eggert@twinsun.com>
10535
10536 * data/glr.c (yy_reduce_print): yylineno -> yylno,
10537 to avoid collision with flex use of yylineno.
10538 Problem reported by Bruce Lilly in
10539 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00016.html>.
10540 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
10541 * data/yacc.c (yy_reduce_print): Likewise.
10542
10543 * config/depcomp: Sync with Automake 1.7.3.
10544
10545 2003-02-21 Akim Demaille <akim@epita.fr>
10546
10547 * data/lalr1.cc: Use temporary variables instead of casts to
10548 change integer types.
10549 Suggested by Paul Eggert.
10550
10551 2003-02-21 Akim Demaille <akim@epita.fr>
10552
10553 * doc/bison.texinfo: Use "location" consistently to refer to @n,
10554 to avoid confusions with lalr1.cc's notion of Position.
10555 Suggested by Paul Eggert.
10556
10557 2003-02-20 Akim Demaille <akim@epita.fr>
10558
10559 * data/lalr1.cc (position.hh): Make sure "columns" never pushes
10560 before initial_columns.
10561 (location.hh): Use consistent variable names when defining the
10562 operator<<.
10563 Use "last" so that we subtract from Positions, not from unsigned.
10564
10565 2003-02-20 Akim Demaille <akim@epita.fr>
10566
10567 * data/lalr1.cc (position.hh): New subfile, including the extended
10568 and Doxygen'ed documentation of class Position.
10569 (location.hh): Use it.
10570 Document a` la Doxygen.
10571 With the help of Benoit Perrot.
10572
10573 2003-02-20 Akim Demaille <akim@epita.fr>
10574
10575 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Define
10576 AT_YACC_IF.
10577 Redefine AT_YYERROR_SEES_LOC_IF using it.
10578 (_AT_DATA_CALC_Y): Don't declare yyerror when lalr1.cc, as it is
10579 not defined.
10580 Don't use the location in yy::Parser::error_ and
10581 yy::Parser::print_ when not %locations.
10582 Activate more lalr1.cc tests.
10583
10584 2003-02-19 Akim Demaille <akim@epita.fr>
10585
10586 * data/lalr1.cc: When displaying a line number, be sure to make it
10587 an int.
10588
10589 2003-02-19 Akim Demaille <akim@epita.fr>
10590
10591 * data/lalr1.cc (b4_stack_depth_init, yy::Parser::initdepth_):
10592 Remove, useless.
10593 (YYABORT, YYACCEPT, YYERROR): New.
10594 * tests/calc.at: Renable the lalr1.cc test.
10595
10596 2003-02-19 Akim Demaille <akim@epita.fr>
10597
10598 * tests/calc.at (AT_CHECK_CALC): Check different scenarios of
10599 error recovery, mixing with/without pops and discarding of the
10600 lookahead.
10601 Exercise YYERROR.
10602 Disable the lalr1.cc tests as currently it doesn't support YYERROR.
10603
10604 2003-02-17 Paul Eggert <eggert@twinsun.com>
10605
10606 * tests/atlocal.in (LDFLAGS, LIBS): New vars.
10607 * tests/testsuite.at (AT_COMPILE): Use them.
10608 This fixes the testsuite problem reported by Robert Lentz in
10609 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00011.html>.
10610
10611 2003-02-12 Paul Eggert <eggert@twinsun.com>
10612
10613 * data/yacc.c (yyerrlab) [YYERROR_VERBOSE]:
10614 Avoid subscript error in yycheck. Bug reported by Andrew Suffield in
10615 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00003.html>.
10616 * data/glr.c (yyreportSyntaxError) [YYERROR_VERBOSE]: Likewise.
10617 Check for malloc failure, for consistency with yacc.c.
10618 (yytname_size): Remove, for consistency with yacc.c.
10619
10620 The bug still remains in data/lalr1.cc, as I didn't have time
10621 to fix it there.
10622
10623 2003-02-06 Akim Demaille <akim@epita.fr>
10624
10625 * configure.ac (GXX): Rename as...
10626 (CXX): this, to keep the original Autoconf semantics.
10627 Require 2.57.
10628 * data/lalr1.cc: Fix b4_copyright invocations.
10629 If YYDEBUG is not defined, don't depend upon name_ being defined.
10630 (location.hh): Include string and iostream.
10631 (Position::filename): New member.
10632 (Position::Position ()): New.
10633 (operator<< (Position)): New.
10634 (operator- (Position, int)): New.
10635 (Location::first, Location::last): Rename as...
10636 (Location::begin, Location::end): these, to mock the conventional
10637 iterator names.
10638 (operator<< (Location)): New.
10639 * tests/atlocal.in (CXX): New.
10640 * tests/testsuite.at (AT_COMPILE_CXX): New.
10641 * tests/calc.at (_AT_DATA_CALC_Y): Adjust yyerror to report the
10642 locations in a more synthetic way.
10643 (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF is positive if
10644 lalr1.cc is used.
10645 Adjust the C locations to match those from Emacs: first column is
10646 column 0.
10647 Change all the expected results.
10648 Conform to the GCS: simplify the locations when applicable.
10649 (LOC, VAL, YYLLOC_FORMAL, YYLLOC_ARG, USE_YYLLOC, LEX_FORMALS)
10650 (LEX_ARGS, USE_LEX_ARGS, LEX_PRE_FORMALS, LEX_PRE_ARGS): Replace
10651 these CPP macros with the m4 macros new defined by...
10652 (AT_CHECK_PUSHDEFS): this, i.e.:
10653 (AT_LALR1_CC_IF, AT_PURE_LEX_IF, AT_LOC, AT_VAL, AT_LEX_FORMALS)
10654 (AT_LEX_ARGS, AT_USE_LEX_ARGS, AT_LEX_PRE_FORMALS, AT_LEX_PRE_ARGS)
10655 New macros.
10656 (AT_CHECK_POPDEFS): Undefine them.
10657 (AT_CHECK_CALC_LALR1_CC): New.
10658 Use it for the first lalr1.cc test.
10659
10660 2003-02-04 Akim Demaille <akim@epita.fr>
10661
10662 * data/lalr1.cc (YYLLOC_DEFAULT): Fix its definition: be based on
10663 Location as is defined.
10664
10665 2003-02-04 Akim Demaille <akim@epita.fr>
10666
10667 * data/lalr1.cc: If YYDEBUG is not defined, don't depend upon
10668 name_ being defined.
10669
10670 2003-02-03 Paul Eggert <eggert@twinsun.com>
10671
10672 * src/gram.h (start_symbol): Remove unused decl.
10673
10674 Use more-consistent naming conventions for local vars.
10675
10676 * src/derives.c (derives_compute): Change type of local var from
10677 int to rule_number.
10678 * src/gram.c (grammar_rules_partial_print): Likewise.
10679 * src/print.c (print_core): Likewise.
10680 * src/reduce.c (reduce_grammar_tables): Likewise.
10681
10682 * src/gram.c (grammar_dump): Change name of item_number *
10683 local var from r to rp.
10684 * src/nullable.c (nullable_compute): Likewise.
10685
10686 * src/gram.h (ISTOKEN, ISVAR): Use i, not s, for int var.
10687
10688 * src/gram.h (symbol_number_as_item_number): Use sym, not s,
10689 for symbol or symbol_number var.
10690 * src/reader.c (grammar_start_symbol_set): Likewise.
10691 * src/reader.h (grammar_start_symbol_set, grammar_symbol_append):
10692 Likewise.
10693 * src/state.c (transitions_to): Likewise.
10694 * src/state.h: Likewise.
10695 * src/tables.c (symbol_number_to_vector_number): Likewise.
10696
10697 * src/muscle_tab.h (MUSCLE_OBSTACK_SGROW): Use p, not s, for
10698 char * var.
10699
10700 * src/parse-gram.y (lloc_default): Use loc, not r, for YYLTYPE
10701 var.
10702
10703 * src/scan-gram.l (no_cr_read): Use bytes_read, not s, for size
10704 var.
10705
10706 * src/system.h (xstrndup, strchr, strspn, strnlen, memchr, memrchr):
10707 Use str, not s, for char * var. Use ch, not c, for character var.
10708 Use size for size var.
10709
10710 * src/uniqstr.c (uniqstr_new, uniqstr_assert): Use str, not s, for
10711 char * var.
10712 (uniqstr_print, uniqst_print_processor): Use ustr, not s, for
10713 uniqstr var.
10714 * src/uniqstr.h: Likewise.
10715
10716 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
10717 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
10718 get_node_alignment_str, get_arrow_mode_str, get_crossing_type_str,
10719 get_view_str, get_linestyle_str, get_arrowstyle_str): Rename
10720 param to have same name as that of enum, so that we don't use
10721 "s" to stand for a non-state.
10722
10723 2003-02-02 Akim Demaille <akim@epita.fr>
10724
10725 * src/scan-skel.l: Scan more than one inert character per yylex
10726 invocation.
10727
10728 2003-02-01 Paul Eggert <eggert@twinsun.com>
10729
10730 Version 1.875a.
10731
10732 * po/LINGUAS: Add ms.
10733
10734 2003-01-30 Akim Demaille <akim@epita.fr>
10735
10736 * doc/Makefile.am (CLEANFILES): Add bison.fns for distcheck.
10737
10738 2003-01-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10739
10740 * tests/cxx-type.at: Correct apparent typo in Bison input: $$ instead
10741 of $1.
10742
10743 Changes in response to error report by S. Eken: GLR mode does not
10744 handle negative $ indices or $ indices in embedded rules correctly.
10745 See <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00076.html>.
10746
10747 * data/glr.c (b4_rhs_value): Change to use YYFILL macro.
10748 (b4_rhs_location): Ditto.
10749 (yyfill): New function to copy from stack tree into array
10750 incrementally.
10751 (yyuserAction): Modify to allow incremental move of semantic values
10752 to rhs array when in GLR mode.
10753 Define YYFILL to use in user-defined actions to fill semantic array
10754 as needed.
10755 Remove dummy use of yystack, as there is now a guaranteed use.
10756 (yydoAction): Modify to allow incremental move of semantic values
10757 to rhs array when in GLR mode.
10758 (yyresolveAction): Ditto.
10759 (yyglrShiftDefer): Update comment.
10760 (yyresolveStates): Use X == NULL for pointers, not !X.
10761 (yyglrReduce): Ditto.
10762 (yydoAction): Ditto
10763
10764 * tests/glr-regr1.at: Rename to ...
10765 * tests/glr-regression.at: Add new regression test for the problems
10766 described above (adapted from S. Eken).
10767 Update copyright notice.
10768 * tests/testsuite.at: Rename glr-regr1.at to glr-regression.at.
10769 * tests/Makefile.am: Ditto.
10770
10771 2003-01-28 Paul Eggert <eggert@twinsun.com>
10772
10773 * data/lalr1.cc: Do not use @output_header_name@ unless
10774 b4_defines_flag is set. This fixes two bugs reported by
10775 Tim Van Holder in
10776 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00071.html>
10777 and <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00073.html>.
10778
10779 2003-01-21 Paul Eggert <eggert@twinsun.com>
10780
10781 * data/yacc.c (YYERROR): Move code from yyerrlab1 to here, so that
10782 we don't need to worry about yyerrlab1 being reported as an
10783 "unused label" by non-GCC C compilers. The downside is that if
10784 locations are used then a couple of statements are duplicated each
10785 time YYERROR is invoked, but the upside is that the warnings
10786 should vanish.
10787 (yyerrlab1): Move code to YERROR.
10788 (yyerrlab2): Remove. Change uses back to yyerrlab1.
10789 This reverts some of the 2002-12-27 change.
10790
10791 2003-01-17 Paul Eggert <eggert@twinsun.com>
10792
10793 * src/output.c (symbol_printers_output): Fix typo that led
10794 to core dump. Problem reported by Antonio Rus in
10795 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00058.html>.
10796
10797 2003-01-13 Akim Demaille <akim@epita.fr>,
10798 Quoc Peyrot <chojin@lrde.epita.fr>,
10799 Robert Anisko <anisko_r@lrde.epita.fr>
10800
10801 * data/lalr1.cc (parse::yyerrlab1): When popping the stack, stop
10802 when the stacks contain one element, as the loop would otherwise
10803 free the last state, and then use the top state (the one we just
10804 popped). This means that the initial elements will not be freed
10805 explicitly, as is the case in yacc.c; it is not a problem, as
10806 these elements have fake values.
10807
10808 2003-01-11 Paul Eggert <eggert@twinsun.com>
10809
10810 * NEWS: %expect-violations are now just warnings, reverting
10811 to Bison 1.30 and 1.75 behavior. This fixes the GCC 3.2
10812 bootstrapping problem reported by Matthias Klose; see
10813 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00053.html>.
10814 * src/conflicts.c (conflicts_print): Likewise.
10815 * tests/conflicts.at (%expect not enough, %expect too much,
10816 %expect with reduce conflicts): Likewise.
10817 * doc/bison.texinfo (Expect Decl): Document this. Also mention
10818 that the warning is enabled if the number of conflicts changes
10819 (not necessarily increases).
10820
10821 * src/getargs.c (version): Update copyright year.
10822
10823 2003-01-09 Akim Demaille <akim@epita.fr>
10824
10825 * src/Makefile.am, lib/Makefile.am: Use $(VAR) instead of @VAR@.
10826
10827 2003-01-08 Paul Eggert <eggert@twinsun.com>
10828
10829 * Makefile.maint (WGETFLAGS):
10830 New macro, containing "-C off" to disable proxy caches.
10831 All uses of $(WGET) changed to $(WGET) $(WGETFLAGS).
10832 (rel-check): Use $(WGET) instead of wget.
10833
10834 2003-01-06 Paul Eggert <eggert@twinsun.com>
10835
10836 * doc/bison.texinfo (Generalized LR Parsing): Add a reference to
10837 the GLR paper of Scott, Johnstone and Hussain.
10838
10839 2003-01-04 Paul Eggert <eggert@twinsun.com>
10840
10841 * configure.ac (AC_ARG_ENABLE): Add --disable-yacc.
10842 (YACC_SCRIPT, YACC_LIBRARY): New vars to AC_SUBST.
10843 * lib/Makefile.am (lib_LIBRARIES): liby.a -> @YACC_LIBRARY@.
10844 (EXTRA_LIBRARIES): New var, for liby.a.
10845 * src/Makefile.am (bin_SCRIPTS): yacc -> @YACC_SCRIPT@.
10846 (EXTRA_SCRIPTS): New var, for yacc.
10847
10848 * data/yacc.c (yyerrlab1): Omit attribute if __cplusplus is defined,
10849 since GNU C++ (as of 3.2.1) does not allow attributes on labels.
10850 Problem reported by Nelson H. F. Beebe.
10851
10852 2003-01-03 Paul Eggert <eggert@twinsun.com>
10853
10854 * lib/obstack.h (__INT_TO_PTR) [__STDC__]: Cast result to
10855 (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
10856 when compiling Bison 1.875's `bitset bset = obstack_alloc
10857 (bobstack, bytes);'. Problem reported by Nelson H. F. Beebe.
10858
10859 * src/scan-skel.l (QPUTS): Omit redundant `;' from macro definition.
10860 ([^@\n]): Renamed from [^@\n]+ so that the token buffer does not
10861 grow to a huge size with typical invocation.
10862
10863 * lib/hash.c (_Bool, bool, false, true, __bool_true_false_are_defined):
10864 Use the pattern recommended by Autoconf 2.57, except also protect
10865 against double-definition.
10866 * src/system.h: Likewise.
10867 Portability issues reported by Nelson H. F. Beebe.
10868
10869 * data/glr.c (yybool): Renamed from bool, to avoid collisions in C.
10870 All uses changed. Provide a definition in both C and C++.
10871 (yytrue, yyfalse): Define even if defined (__cplusplus).
10872
10873 * lib/bitset_stats.c (bitset_stats_list): Remove unused var.
10874 Reported by Nelson H. F. Beebe.
10875
10876 * src/scan-skel.l ("@oline@"): Output lineno+1, not lineno.
10877
10878 2003-01-02 Paul Eggert <eggert@twinsun.com>
10879
10880 * data/yacc.c (yyerrlab1): Append `;' after attribute, to
10881 pacify the buggy "smart preprocessor" in MacOS 10.2.3.
10882 Bug reported by Nelson H. F. Beebe.
10883
10884 2003-01-01 Paul Eggert <eggert@twinsun.com>
10885
10886 * Version 1.875.
10887
10888 2002-12-30 Paul Eggert <eggert@twinsun.com>
10889
10890 * src/scan-gram.l (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>","):
10891 Moved here from...
10892 (<INITIAL>","): Here. This causes stray "," to be treated
10893 more uniformly.
10894
10895 * src/scan-gram.l (<SC_BRACED_CODE>"}"): Output ";" before the
10896 last brace in braced code when not in Yacc mode, for compatibility
10897 with Bison 1.35. This resurrects the 2001-12-15 patch to
10898 src/reader.c.
10899
10900 * src/reader.h (YYDECL): Use YYSTYPE, not its deprecated alias
10901 yystype. This follows up the 2002-12-24 YYSTYPE bug fix.
10902
10903 2002-12-28 Paul Eggert <eggert@twinsun.com>
10904
10905 * src/symtab.c (symbol_make_alias): Set type of SYMVAL to be
10906 that of SYM's type. This fixes Debian bug 168069, reported by
10907 Thomas Olsson.
10908
10909 2002-12-28 Paul Eggert <eggert@twinsun.com>
10910
10911 Version 1.75f.
10912
10913 Switch back to the Yacc style of conflict reports, undoing some
10914 of the 2002-07-30 change.
10915 * doc/bison.texinfo (Understanding): Use Yacc style for
10916 conflict reports. Also, use new way of locating rules.
10917 * src/conflicts.c (conflict_report):
10918 Renamed from conflict_report_yacc, removing the old
10919 'conflict_report'. Translate the entire conflict report at once,
10920 so that we don't assume that "," has the same interpretation in
10921 all languages.
10922 (conflicts_output): Use Yacc-style conflict report for each state,
10923 instead of our more-complicated style.
10924 (conflicts_print): Use Yacc-style conflict report, except print
10925 the input file name when not emulating Yacc.
10926 * tests/conflicts.at (Unresolved SR Conflicts, Defaulted
10927 Conflicted Reduction, %expect not enough, %expect too much,
10928 %expect with reduce conflicts): Switch to Yacc-style conflict reports.
10929 * tests/existing.at (GNU Cim Grammar): Likewise.
10930 * tests/glr-regr1.at (Badly Collapsed GLR States): Likewise.
10931
10932 * src/complain.c (warn_at, warn, complain_at, complain, fatal_at,
10933 fatal): Don't invoke fflush; it's not needed and it might even be
10934 harmful for stdout, as stdout might not be open.
10935 * src/reduce.c (reduce_print): Likewise.
10936
10937 2002-12-27 Paul Eggert <eggert@twinsun.com>
10938
10939 Fix a bug where error locations were not being recorded correctly.
10940 This problem was originally reported by Paul Hilfinger in
10941 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00086.html>.
10942
10943 * data/yacc.c (yyparse): New local var yylerrsp, to record the
10944 top of the location stack's error locations.
10945 (yyerrlab): Set it. When discarding a token, push its location
10946 onto yylerrsp so that we don't lose track of the error's end.
10947 (yyerrlab1): Now is only the target of YYERROR, so that we can
10948 properly record the location of the action that failed. For GCC
10949 2.93 and later, insert an __attribute__ ((__unused__)) to avoid
10950 GCC warning about yyerrlab1 being unused if YYERROR is unused.
10951 (yyerrlab2): New label, which yyerrlab now falls through to.
10952 Compute the error's location by applying YYLLOC_DEFAULT to
10953 the locations of all the symbols that went into the error.
10954 * doc/bison.texinfo (Location Default Action): Mention that
10955 YYLLOC_DEFAULT is also invoked for syntax errors.
10956 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
10957 Error locations include the locations of all the tokens that were
10958 discarded, not just the last token.
10959
10960 2002-12-26 Paul Eggert <eggert@twinsun.com>
10961
10962 * src/files.c: Include quote.h.
10963 (compute_output_file_names): Warn if we detect conflicting
10964 outputs to the same file. This should catch the misunderstanding
10965 exemplified by Debian Bug 165349, reported by Bruce Stephens..
10966
10967 * src/conflicts.c (conflicts_print): If the user specifies
10968 "%expect N", report an error if there are any reduce/reduce
10969 conflicts. This is what the manual says should happen.
10970 This fixes Debian bug 130890, reported by Anthony DeRobertis.
10971 * tests/conflicts.at (%expect with reduce conflicts): New test.
10972
10973 Don't use m4_include on relative file names, as it doesn't work as
10974 desired if there happens to be a file with that name under ".".
10975
10976 * m4sugar/version.m4: Remove; it was included but it wasn't used.
10977 * data/Makefile.am (dist_m4sugar_DATA): Remove m4sugar/version.m4.
10978 * data/m4sugar/m4sugar.m4: Don't include m4sugar/version.m4.
10979 * data/glr.c, data/lalr1.cc, data/yacc.c: Don't include c.m4.
10980 * src/output.c (output_skeleton): Use full path names when
10981 specifying a file to include; don't rely on include path, as
10982 it's unreliable when the working file contains a file with
10983 that name.
10984
10985 2002-12-25 Paul Eggert <eggert@twinsun.com>
10986
10987 Remove obsolete references to bison.simple and bison.hairy.
10988 Problem mentioned by Aubin Mahe in
10989 <http://lists.gnu.org/archive/html/help-bison/2002-12/msg00010.html>.
10990 * data/glr.c: Comment fix.
10991 * doc/bison.1: Remove references. Also, mention "yacc".
10992
10993 * src/getargs.c (getargs) [MSDOS]: Don't assume optarg != NULL
10994 with -g option.
10995
10996 * src/parse-gram.y (declaration): Use enum "report_states" rather
10997 than its numeric value 1.
10998
10999 * src/scan-skel.l ("@output ".*\n): Close any old yyout before
11000 opening a new one. This fixes Debian bug 165349, reported by
11001 Bruce Stephens.
11002
11003 2002-12-24 Paul Eggert <eggert@twinsun.com>
11004
11005 Version 1.75e.
11006
11007 * Makefile.maint (cvs-update): Don't assume that the shell
11008 supports $(...), as Solaris sh doesn't.
11009
11010 * src/parse-gram.y (lloc_default): Remove test for empty
11011 nonterminals at the end, since it didn't change the result.
11012
11013 2002-12-24 Paul Eggert <eggert@twinsun.com>
11014
11015 If the user does not define YYSTYPE as a macro, Bison now declares it
11016 using typedef instead of defining it as a macro. POSIX requires this.
11017 For consistency, YYLTYPE is also declared instead of defined.
11018
11019 %union directives can now have a tag before the `{', e.g., the
11020 directive `%union foo {...}' now generates the C code
11021 `typedef union foo { ... } YYSTYPE;'; this is for Yacc compatibility.
11022 The default union tag is `YYSTYPE', for compatibility with Solaris 9
11023 Yacc. For consistency, YYLTYPE's struct tag is now `YYLTYPE'
11024 instead of `yyltype'.
11025
11026 `yystype' and `yyltype' are now obsolescent macros instead of being
11027 typedefs or tags; they are no longer documented and will be
11028 withdrawn in a future release.
11029
11030 * data/glr.c (b4_location_type): Remove.
11031 (YYSTYPE): Renamed from yystype.
11032 (YYSTYPE_IS_DECLARED): New macro, used to prevent double-typedef.
11033 (struct YYLTYPE): Renamed from struct yyltype.
11034 (YYLTYPE): Renamed from yyltype.
11035 (yyltype, yystype): New (and obsolescent) macros,
11036 for backward compatibility.
11037 * data/yacc.c: Likewise.
11038
11039 * data/yacc.c (YYSTYPE): Declare as union YYSTYPE if the user
11040 does not specify a union tag. This is for compatibility with
11041 Solaris 9 yacc.
11042
11043 * src/parse-gram.y (add_param): 2nd arg is now char * not char
11044 const *, since it is now modified by stripping surrounding { }.
11045 (current_braced_code): Remove.
11046 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_UNION,
11047 PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Change names to include
11048 trailing " {...}". Now of type <chars>.
11049 (grammar_declaration): Adjust to bundled tokens.
11050 (code_content): Remove; stripping is now done by add_param.
11051 (print_token_value): Print contents of bundled tokens.
11052 (token_name): New function.
11053
11054 * src/reader.h (braced_code, current_braced_code): Remove.
11055 (token_name): New decl.
11056
11057 * src/scan-gram.l (handle_dollar, handle_at): Now takes int
11058 token_type, not braced_code code_kind. All uses changed.
11059 (SC_PRE_CODE): New state, for scanning after a keyword that
11060 has (or usually has) an immediately-following braced code.
11061 (token_type): New local var, to keep track of which token type
11062 to return when scanning braced code.
11063 (<INITIAL>"%destructor", <INITIAL>"%lex-param",
11064 <INITIAL>"%parse-param", <INITIAL>"%printer",
11065 <INITIAL>"%union"): Set token type and BEGIN SC_PRE_CODE
11066 instead of returning a token type immediately.
11067 (<INITIAL>"{"): Set token type.
11068 (<SC_BRACED_CODE>"}"): Use it.
11069 (handle_action_dollar, handle_action_at): Now returns bool
11070 indicating success. Fail if ! current_rule; this prevents a core dump.
11071 (handle_symbol_code_dollar, handle_symbol_code_at):
11072 Remove; merge body into caller.
11073 (handle_dollar, handle_at): Complain in invalid contexts.
11074
11075 * NEWS, doc/bison.texinfo: Document the above.
11076 * NEWS: Fix years and program names in copyright notice.
11077
11078 2002-12-17 Paul Eggert <eggert@twinsun.com>
11079
11080 * NEWS, doc/bison.texinfo (Parser Function, Pure Calling, Error
11081 Reporting, Table of Symbols): Omit mentions of %lex-param and
11082 %parse-param from the documentation for now.
11083
11084 2002-12-15 Paul Eggert <eggert@twinsun.com>
11085
11086 Undo most of the 2002-11-12 yychar -> yytoken patch, as it broke
11087 GCC 3.2.1 (which depends on yychar == YYEMPTY when there is no
11088 lookahead symbol, and which sets yychar in parser actions) and it
11089 disagreed with the Bison documentation. Bug
11090 reported by Andrew Walrond.
11091
11092 * data/yacc.c (YYTRANSLATE): Don't check for negative argument,
11093 as the caller now does that.
11094 (yyclearin, YYBACKUP, yyparse): Use yychar, not yytoken.
11095 (YYEMPTY): Parenthesize right hand side, since others use it.
11096 (yyparse): Don't assume that our generated code is the only code
11097 that sets yychar.
11098
11099 2002-12-13 Paul Eggert <eggert@twinsun.com>
11100
11101 Version 1.75d.
11102
11103 POSIX requires a "yacc" command.
11104 * src/Makefile.am (bin_SCRIPTS): New macro, for yacc.
11105 (MOSTLYCLEANFILES): Add yacc.
11106 (yacc): New rule.
11107 * doc/bison.texinfo (Invocation, Bison Options): Mention yacc
11108 as an alias for bison y.
11109
11110 * po/LINGUAS: Add da.
11111
11112 * src/getargs.c (__GNU_LIBRARY__) [lint]: Define to work around
11113 problem with latest <getopt.h>.
11114 (HACK_FOR___GNU_LIBRARY___PROTOTYPE): New macro.
11115
11116 * doc/fdl.texi: Upgrade to 1.2.
11117 * lib/alloca.c, lib/error.c, lib/getopt.c, lib/getopt.h
11118 lib/getopt1.c, lib/gettext.h, lib/memrchr.c, lib/obstack.c,
11119 lib/obstack.h, lib/strnlen.c, lib/unlocked-io.h: Sync with
11120 gnulib.
11121 * config/install-sh: Sync with autotools.
11122
11123 Fix a bad interaction with flex 2.5.23 reported by Bruce Lilly in
11124 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
11125 * data/yacc.c (YYLTYPE, struct yyltype): Do not define unless
11126 locations are requested.
11127 (union yyalloc): Do not depend on YYLTYPE_IS_TRIVIAL unless
11128 locations are requested.
11129
11130 2002-12-12 Paul Eggert <eggert@twinsun.com>
11131
11132 Remove unportable casts and storage allocation tricks.
11133 While we're at it, remove almost all casts, since they
11134 usually aren't needed and are a sign of trouble.
11135
11136 * configure.ac (AC_CHECK_TYPES): Check for uintptr_t.
11137
11138 * src/derives.c (derives_compute): Do not subtract NTOKENS from
11139 the pointer DSET returned by malloc; this isn't portable.
11140 Instead, always use DSET[i - NTOKENS] rather than DSET[i].
11141 Similarly for DERIVES.
11142 * src/lalr.c (set_goto_map): Likewise, for GOTO_MAP and TEMP_MAP.
11143 * src/nullable.c (nullable_compute): Likewise, for RSETS and NULLABLE.
11144 * src/reduce.c (reduce_grammar_tables): Likewise, for nontermmap
11145
11146 * src/derives.c (derives_compute): Do not bother invoking
11147 int_of_rule_number, since rule numbers are integers.
11148
11149 * src/files.c (concat2, tr, compute_base_name): Use xmalloc (N)
11150 rather than XMALLOC (char, N).
11151
11152 * src/files.c (filename_split): Rewrite to avoid cast.
11153
11154 * src/gram.h (symbol_number_as_item_number,
11155 item_number_as_symbol_number, rule_number_as_item_number,
11156 item_number_as_rule_number):
11157 Now inline functions rather than macros, to avoid casts.
11158 * src/state.h (state_number_as_int): Likewise.
11159 * src/tables.c (state_number_to_vector_number,
11160 symbol_number_to_vector_number): Likewise.
11161
11162 * src/gram.h (int_of_rule_number): Remove; no longer used.
11163
11164 * src/lalr.c (add_lookback_edge): Use malloc rather than calloc,
11165 since the resulting storage is always stored into.
11166
11167 * src/main.c (alloca) [C_ALLOCA]: Add decl here, the only place
11168 where it's needed.
11169
11170 * src/muscle_tab.c (muscle_m4_output):
11171 Now inline. Return bool, not int.
11172 * src/state.c (state_compare): Likewise.
11173 * src/symtab.c (symbol_check_defined,
11174 symbol_check_alias_consistency, symbol_pack, symbol_translation,
11175 hash_compare_symbol, hash_symbol):
11176 Likewise.
11177 * src/uniqstr.c (uniqstr_print): Likewise.
11178 * src/muscle_tab.c (muscle_m4_output_processor):
11179 New function, to avoid casts.
11180 * src/state.c (state_comparator, stage_hasher): Likewise.
11181 * src/symtab.c (symbol_check_defined_processor,
11182 symbol_check_alias_consistency_processor, symbol_pack_processor,
11183 symbol_translation_processor, hash_symbol_comparator,
11184 hash_symbol_hasher): Likewise.
11185 * src/uniqstr.c (uniqstr_print_processor): Likewise.
11186 * src/muscle_tab.c (muscles_m4_output):
11187 Use new functions instead of casting old functions unportably.
11188 * src/state.c (state_hash_new): Likewise.
11189 * src/symtab.c (symbols_new, symbols_do, symbols_check_defined,
11190 symbols_token_translations_init):
11191 Likewise.
11192 * src/uniqstr.c (uniqstrs_new, hash_initialize, uniqstrs_do): Likewise.
11193
11194 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): Use long local
11195 var instead of casting to long, to avoid casts.
11196 (prepare_states): Use MALLOC rather than alloca, so that we don't
11197 have to worry about alloca.
11198 * src/state.c (state_hash_lookup): Likewise.
11199
11200 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>"'"): Use unsigned char
11201 local var instead of casting to unsigned char, to avoid casts.
11202
11203 * src/state.c (TRANSITIONS_ALLOC, ERRS_ALLOC, REDUCTIONS_ALLOC,
11204 STATE_ALLOC): Remove.
11205 (transitions_new, errs_new, reductions_new, state_new): Use malloc
11206 rather than calloc, and use offsetof to avoid allocating slightly
11207 too much storage.
11208 (state_new): Initialize all members.
11209
11210 * src/state.c (state_hash): Use unsigned accumulator, not signed.
11211
11212 * src/symtab.c (symbol_free): Remove; unused.
11213 (symbol_get): Remove cast in lhs of assignment.
11214 (symbols_do): Now static. Accept generic arguments, not
11215 hashing-related ones.
11216
11217 * src/symtab.h: (NUMBER_UNDEFINED): Remove unnecessary cast.
11218 (symbol_processor): Remove.
11219 (symbols_do): Remove decl; now static.
11220
11221 * src/system.h (alloca): Remove; decl no longer needed.
11222 (<stddef.h>): Include, for offsetof.
11223 (<inttypes.>, <stdint.h>): Include if available.
11224 (uintptr_t): New type, if system lacks it.
11225 (CALLOC, MALLOC, REALLOC): New macros.
11226 All uses of XCALLOC, XMALLOC, and XREALLOC changed to use these
11227 new macros.
11228
11229 * src/tables.c (table_size): Now int, to pacify GCC.
11230 (table_grow, table_ninf_remap): Use signed table size.
11231 (save_row): Don't bother initializing locals when not needed.
11232 (default_goto, goto_actions, pack_vector): Remove unnecessary casts.
11233 * src/uniqstr.c (hash_compare_uniqstr): Likewise.
11234
11235 * src/vcg.h: Correct misspellings.
11236
11237 * src/vcg_defaults.h (G_CMAX): Now INT_MAX.
11238
11239
11240 * src/getargs.c (getargs): Don't assume EOF == -1.
11241
11242 2002-12-09 Paul Eggert <eggert@twinsun.com>
11243
11244 Change identifier spellings to avoid collisions with names
11245 that are reserved by POSIX.
11246
11247 Don't use names ending in _t, since POSIX reserves them.
11248 For consistency, remove _e and _s endings -- they're weren't
11249 needed to remove ambiguity. All uses changed.
11250 * src/uniqstr.h (uniqstr): Renamed from uniqstr_t, which in
11251 turn was just renamed from struniq_t.
11252 * src/uniqstr.c (uniqstr_processor): Renamed from struniq_processor,
11253 which in turn was just renamed from struniq_processor_t.
11254 (hash_compare_uniqstr): Renamed from hash_compare_struniq, which
11255 in turn was renamed from hash_compare_struniq_t.
11256 * src/LR0.c (struct state_list): Renamed from struct state_list_s.
11257 (state_list): Renamed from state_list_t.
11258 * src/assoc.h (assoc): Renamed from assoc_t.
11259 * src/conflicts.c (enum conflict_resolution): Renamed from
11260 enum conflict_resolution_e.
11261 * src/derives.c (struct rule_list): Renamed from struct rule_list_s.
11262 (rule_list): Renamed from rule_list_t.
11263 * src/getargs.h (enum trace): Renamed from enum trace_e.
11264 (enum report): Renamed from enum report_e.
11265 * src/gram.h (item_number): Renamed from item_number_t.
11266 (rule_number): Renamed from rule_number_t.
11267 (struct rule_s): Remove the "rule_s" part; not used.
11268 (rule): Renamed from rule_t.
11269 (rule_filter): Renamed from rule_filter_t.
11270 * src/lalr.c (struct goto_list): Renamed from struct goto_list_s.
11271 (goto_list): Renamed from goto_list_t.
11272 * src/lalr.h (goto_number): Renamed from goto_number_t.
11273 * src/location.h (location): Renamed from location_t.
11274 * src/muscle_tab.c (muscle_entry): Renamed from muscle_entry_t,
11275 and moved here from:
11276 * src/muscle_tab.h (muscle_entry_t): here.
11277 * src/nullable.c (struct rule_list): Renamed from struct rule_list_s.
11278 (rule_list): Renamed from rule_list_t.
11279 * src/print_graph.c (static_graph): Renamed from graph.
11280 * src/reader.h (braced_code): Renamed from braced_code_t.
11281 Remove brace_code_e tag.
11282 * src/relation.h (relation_node): Renamed from relation_node_t.
11283 (relation_nodes): Renamed from relation_nodes_t.
11284 (relation): Renamed from relation_t.
11285 * src/state.h (state_number): Renamed from state_number_t.
11286 (struct state): Renamed from struct state_s.
11287 (state): Renamed from state_t.
11288 (transitions): Renamed from transitions_t. Unused (and
11289 misspelled) transtion_s tag removed.
11290 (errs): Renamed from errs_t. Unused errs_s tag removed.
11291 (reductions): Renamed from reductions_t. Unused tag
11292 reductions_s removed.
11293 * src/symlist.h (symbol_list): Renamed from symbol_list_t.
11294 (struct symbol_list): Renamed from struct symbol_list_s.
11295 * src/symtab.h (symbol_number): Renamed from symbol_number_t.
11296 (struct symbol): Renamed from struct symbol_s.
11297 (symbol): Renamed from symbol_t.
11298 * src/tables.c (vector_number): Renamed from vector_number_t.
11299 (action_number): Renamed from action_t.
11300 * src/tables.h (base_number): Renamed from base_t.
11301 * src/vcg.h (enum color): Renamed from enum color_e.
11302 (enum textmode): Renamed from enum textmode_e.
11303 (enum shape): Renamed from enum shape_e.
11304 (struct colorentry): Renamed from struct colorentry_s.
11305 (struct classname): Renamed from struct classname_s.
11306 (struct infoname): Renamed from struct infoname_s.
11307 (enum layoutalgorithm): Renamed from enum layoutalgorithm_e.
11308 (enum decision): Renamed from enum decision_e.
11309 (enum orientation): Renamed from enum orientation_e.
11310 (enum alignment): Renamed from enum alignment_e.
11311 (enum arrow_mode): Renamed from enum arrow_mode_e.
11312 (enum crossing_type): Renamed from enum crossing_type_e.
11313 (enum view): Renamed from enum view_e.
11314 (struct node): Renamed from struct node_s.
11315 (node): Renamed from node_t.
11316 (enum linestyle): Renamed from enum linestyle_e.
11317 (enum arrowstyle): Renamed from enum arrowstyle_e.
11318 (struct edge): Renamed from struct edge.
11319 (edge): Renamed from edge_t.
11320 (struct graph): Renamed from struct graph_s.
11321 (graph): Renamed from graph_t.
11322 * tests/calc.at (_AT_DATA_CALC_Y, Simple LALR Calculator):
11323 Rename value_t -> value.
11324 * tests/input.at (Torturing the Scanner): Rename value_t -> value,
11325 value_t_as_yystype -> value_as_yystype.
11326
11327 Don't include <errno.h> in the mainstream code, since it
11328 reserves E[A-Z0-9]* and we want to use symbols like 'EQUALS'.
11329 * lib/get-errno.c, lib/get-errno.h: New files.
11330 * lib/Makefile.am (libbison_a_SOURCES): Add get-errno.h,
11331 get-errno.c.
11332 * src/files.c (xfopen, xfclose): Use get_errno instead of errno.
11333 * src/output.c (output_skeleton): Likewise.
11334 * src/scan-gram.l (<INITIAL>{int}): Use set_errno and get_errno
11335 instead of errno.
11336 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>\\x[0-9abcdefABCDEF]+):
11337 Likewise.
11338 (handle_action_dollar, handle_action_at): Likewise.
11339 * src/system.h: Do not include <errno.h>.
11340 (TAB_EXT): Renamed from EXT_TAB.
11341 (OUTPUT_EXT): Renamed from EXT_OUTPUT.
11342
11343 Avoid str[a-z]*, since <string.h> reserves that name space.
11344 Change all instances of "struniq" in names to "uniqstr", and
11345 likewise for "STRUNIQ" and "UNIQSTR".
11346 * src/uniqstr.c: Renamed from src/struniq.c.
11347 * src/uniqstr.h: Renamed from src/struniq.h.
11348 * src/Makefile.am (bison_SOURCES): Adjust to these renamings.
11349 * src/files.c (strsuffix): Remove; unused.
11350 (concat2): Renamed from stringappend. Now static.
11351 * src/files.h (strsuffix, stringappend): Remove; unused.
11352 * src/parse-gram.y (<chars>): Renamed from <string>.
11353 (<uniqstr>): Renamed from <struniq>.
11354 * src/scan-gram.l (obstack_for_string): Renamed from string_obstack.
11355 * src/vcg.h (struct node_s.expand): Renamed from struct node_s.stretch.
11356 (struct graph_s.expand): Renamed from struct graph_s.stretch.
11357 * src/vcg_defaults.h (G_EXPAND): Renamed from G_STRETCH.
11358 (G_LONG_STRAIGHT_PHASE): Renamed from G_STRAIGHT_PHASE.
11359 (N_EXPAND): Renamed from N_STRETCH.
11360
11361 Avoid *_MAX and *_MIN, since <limits.h> reserves that name space.
11362 * data/yacc.c (YYSTACK_GAP_MAXIMUM): Renamed from YYSTACK_GAP_MAX.
11363 * src/gram.h (ITEM_NUMBER_MAX, ITEM_NUMBER_MIN, RULE_NUMBER_MAX):
11364 Remove; unused.
11365 * src/lalr.h (GOTO_NUMBER_MAXIMUM): Renamed from GOTO_NUMBER_MAX.
11366 * src/state.h (STATE_NUMBER_MAXIMUM): Renamed from STATE_NUMBER_MAX.
11367 * src/symtab.h (SYMBOL_NUMBER_MAXIMUM): Renamed from SYMBOL_NUMBER_MAX.
11368 * src/tables.c (VECTOR_NUMBER_MAX, VECTOR_NUMBER_MIN): Remove; unused.
11369 (BASE_MAXIMUM): Renamed from BASE_MAX.
11370 (BASE_MINIMUM): Renamed from BASE_MIN.
11371 (ACTION_MAX): Remove; unused.
11372 (ACTION_NUMBER_MINIMUM): Renamed from ACTION_MIN.
11373 Unnecessary casts removed from above defines.
11374
11375
11376 Fix misspelling in names.
11377 * src/vcg.h (enum_alignment_e): Renamed from enum_alignement_e.
11378 * src/vcg_defaults.h (G_NODE_ALIGNMENT): Renamed from
11379 G_NODE_ALIGNEMENT.
11380
11381
11382 * lib/timevar.c (timevar_report): Renamed from time_report,
11383 for consistency with other names.
11384 * lib/timevar.h (timevar_report): New decl.
11385 * src/system.h (time_report): Remove; decl is now in lib/timevar.h.
11386
11387
11388 Sort include-file uses.
11389
11390 Reorder all include files under src to be in the order "system.h".
11391 then the ../lib include files in angle brackets (alphabetized),
11392 then the . include files in double-quotes (alphabetized). Fix
11393 dependency breakages encountered in this process, as follows:
11394 * src/closure.h, src/derives.h, src/state.h: Include "gram.h".
11395 * src/complain.c: Don't include stdlib.h, string.h _LIBC stuff.
11396 * src/state.h: Include "symtab.h".
11397
11398 2002-12-08 Paul Eggert <eggert@twinsun.com>
11399
11400 * data/glr.c, data/lalr1.cc, data/yacc.c: Do not use __file__,
11401 since this causes problems when __file__ contains character
11402 sequences like "@" that are treated specially by src/scan-skel.l.
11403 Instead, just use the file's basename. This fixes the bug
11404 reported by Martin Mokrejs in
11405 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00007.html>.
11406
11407 2002-12-06 Paul Eggert <eggert@twinsun.com>
11408
11409 Add support for rules that do not have trailing semicolons, as
11410 POSIX requires. Improve the quality of locations in Bison
11411 diagnostics.
11412
11413 * src/location.c: Include <quotearg.h>.
11414 (empty_location): Now const.
11415 (location_print): New function. Follow the recommendation of the
11416 GNU Coding Standards for locations that span file boundaries.
11417 * src/location.h: Do not include <quotearg.h>; no longer needed.
11418 (boundary): New type.
11419 (location_t): Use it. This allows locations to span file boundaries.
11420 All member uses changed: file -> start.file or end.file (as needed),
11421 first_line -> start.line, first_column -> start.column,
11422 last_line -> end.line, last_column -> end.column.
11423 (equal_boundaries): New function.
11424 (LOCATION_RESET, LOCATION_STEP): Remove.
11425 (LOCATION_PRINT): Remove. All callers changed to use location_print.
11426 (empty_location): Now const.
11427 (location_print): New decl.
11428 * src/parse-gram.y (lloc_default): New function, which handles
11429 empty locations more accurately.
11430 (YYLLOC_DEFAULT): Use it.
11431 (%token COLON): Remove.
11432 (%token ID_COLON): New token.
11433 (rules): Use it.
11434 (declarations, rules): Remove trailing semicolon.
11435 (declaration, rules_or_grammar_declaration):
11436 Allow empty (";") declaration.
11437 (symbol_def): Remove empty actions; no longer needed.
11438 (rules_or_grammar_declaration): Remove trailing semicolon.
11439 (semi_colon.opt): Remove.
11440 * src/reader.h: Include location.h.
11441 (scanner_cursor): New decl.
11442 * src/reduce.c (nonterminals_reduce): Use warn_at rather than
11443 rolling our own.
11444 * src/scan-gram.l (YY_USER_INIT): Initialize scanner_cursor instead
11445 of *loc.
11446 (STEP): Remove. No longer needed, now that adjust_location does
11447 the work. All uses removed.
11448 (scanner_cursor): New var.
11449 (adjust_location): Renamed from extend_location. It now sets
11450 *loc and adjusts the scanner cursor. All uses changed.
11451 Don't bother testing for CR.
11452 (handle_syncline): Remove location arg; now updates scanner cursor.
11453 All callers changed.
11454 (unexpected_end_of_file): Now accepts start boundary of token or
11455 comment, not location. All callers changed. Update scanner cursor,
11456 not the location.
11457 (SC_AFTER_IDENTIFIER): New state.
11458 (context_state): Renamed from c_context. All uses changed.
11459 (id_loc, code_start, token_start): New local vars.
11460 (<INITIAL,SC_AFTER_IDENTIFIER>): New initial context. Move all
11461 processing of Yacc white space and equivalents here.
11462 (<INITIAL>{id}): Save id_loc. Begin state SC_AFTER_IDENTIFIER
11463 instead of returning ID immediately, since we need to search for
11464 a subsequent colon.
11465 (<INITIAL>"'", "\""): Save token_start.
11466 (<INITIAL>"%{", "{", "%%"): Save code_start.
11467 (<SC_AFTER_IDENTIFIER>): New state, looking for a colon.
11468 (<SC_YACC_COMMENT>, <SC_COMMENT>, <SC_LINE_COMMENT>):
11469 BEGIN context_state at end, not INITIAL.
11470 (<SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'",
11471 <SC_BRACED_CODE>"}", <SC_PROLOGUE>"%}", <SC_EPILOGUE><<EOF>>):
11472 Return correct token start.
11473 (<SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>): Save start boundary when
11474 the start of a character, string or multiline comment is found.
11475 * tests/conflicts.at (S/R in initial, Defaulted Conflicted
11476 Reduction): Adjust reported locations to match the more-precise
11477 results now expected.
11478 * tests/input.at (Invalid $n, Invalid @n, Type Clashes): Likewise.
11479 * tests/reduce.at (Useless Rules, Reduced Automaton,
11480 Underivable Rules): Likewise.
11481 * tests/regression.at (Invalid inputs): No longer `expecting ";"
11482 or "|"' now that so many other tokens are allowed by the new grammar.
11483
11484 * src/complain.h (current_file): Remove duplicate decl;
11485 current_file is now owned by files.h.
11486 * src/complain.c, src/scan-gram.l: Include files.h.
11487
11488 2002-12-06 Paul Eggert <eggert@twinsun.com>
11489
11490 * data/glr.c (yy_reduce_print): Don't assume that yyrline[yyrule]
11491 promotes to int; it might be unsigned int.
11492 * data/yacc.c (yy_reduce_print): Likewise.
11493
11494 * doc/bison.texinfo (Table of Symbols): YYERROR_VERBOSE should
11495 be #defined in the prologue, not in the Bison declarations.
11496 This fixes Debian Bug 102878, reported by Shaul Karl.
11497
11498 2002-12-02 Paul Eggert <eggert@twinsun.com>
11499
11500 * configure.ac (AC_REPLACE_FUNCS): Add strtoul.
11501 * lib/strtoul.c: New file, from gnulib.
11502 This fixes a porting bug reported by Peter Klein in
11503 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00000.html>.
11504
11505 2002-11-30 Paul Eggert <eggert@twinsun.com>
11506
11507 * src/scan-gram.l (no_cr_read, extend_location): Move to epilogue,
11508 and put only a forward declaration in the prologue. This is for
11509 consistency with the other scanner helper functions.
11510
11511 Type clashes now generate warnings, not errors, since it
11512 appears that POSIX may allow some grammars with type clashes.
11513 * src/reader.c (grammar_current_rule_check): Warn about
11514 type clashes instead of complaining.
11515 * tests/input.at (Type Clashes): Expect warnings, not complaints.
11516
11517 Add Yacc library, since POSIX requires it.
11518 * doc/bison.texinfo (Yacc Library): New node. Regenerate top menu.
11519 * lib/Makefile.am (lib_LIBRARIES, liby_a_SOURCES): New macros.
11520 * lib/main.c, lib/yyerror.c: New files.
11521
11522 gram_error can be static; it need not be extern.
11523 * src/reader.h (gram_error): Remove decl.
11524 * src/parse-gram.y (gram_error): Now static. Add static decl.
11525 (print_token_value): Omit parameter names from forward decl,
11526 for consistency.
11527
11528 2002-11-29 Paul Eggert <eggert@twinsun.com>
11529
11530 * doc/bison.texinfo: Emphasize that yylex and yyerror must
11531 be declared before being used. E.g., one should typically
11532 declare them in the prologue. Use GNU coding style in examples.
11533 Put "const" consistently after the type it modifies. Mention
11534 that C99 supports "inline". Mention that yyerror traditionally
11535 returns "int".
11536
11537 %parse-param and %lex-param now take just one argument, the
11538 declaration; the argument name is deduced from the declaration.
11539
11540 * doc/bison.texinfo (Parser Function, Pure Calling, Error
11541 Reporting, Table of Symbols): Document this.
11542 * src/parse-gram.y (add_param): New function.
11543 (COMMA): Remove.
11544 (declaration): Implement new rule for %parse-param and %lex-param.
11545 * src/scan-gram.l: "," now elicits a warning, rather than being
11546 a token; this is more compatible with byacc.
11547 * tests/calc.at (Simple LALR Calculator): Adopt new convention.
11548
11549 2002-11-27 Paul Eggert <eggert@twinsun.com>
11550
11551 Rename identifiers to avoid real and potential collisions.
11552
11553 * data/c.m4 (b4_yysymprint_generate): yyout -> yyoutput,
11554 to avoid collision with lex macro described by Bruce Lilly in
11555 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
11556 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
11557 * doc/bison.texinfo (Prologue, Tracing): yyprint -> print_token_value.
11558 * src/parse-gram.y (print_token_value): Renamed from yyprint.
11559 All uses changed.
11560 (YYPARSE_PARAM, YYLEX_PARAM, yycontrol): Remove. All uses changed.
11561 The name "yycontrol" violates the name space rules, and this stuff
11562 wasn't being used anyway.
11563 (input): Remove action; this stuff wasn't being used.
11564 (gram_error): Rename local variable yylloc -> loc.
11565 * src/reader.h (struct gram_control_s, gram_control_t): Remove.
11566 (YY_DECL): Don't use "yy" at start of local variables.
11567 All uses changed, e.g., yylloc -> loc.
11568 * src/scan-gram.l (STEP): Renamed from YY_STEP. All uses changed.
11569 (STRING_GROW): Renamed from YY_OBS_GROW. All uses changed.
11570 (STRING_FINISH): Renamed from YY_OBS_FINISH. All uses changed.
11571 (STRING_FREE): Renamed from YY_OBS_FREE. All uses changed.
11572
11573 * src/parse-gram.y (gram_error): loc is now const *.
11574 * src/reader.h (gram_error): Likewise.
11575
11576 2002-11-24 Paul Eggert <eggert@twinsun.com>
11577
11578 Version 1.75c.
11579
11580 * tests/actions.at (Actions after errors): Use an output format
11581 more similar to that of the Printers and Destructors test.
11582 Test the position of the ';' token too.
11583 (Printers and Destructors): Likewise.
11584 (Printers and Destructors: %glr-parser): Remove for now, to avoid
11585 unnecessarily alarming people when the test fails.
11586
11587 * data/yacc.c (yyerrlab1): Move this label down, so that the
11588 parser does not discard the lookahead token if the user code
11589 invokes YYERROR. This change is required for POSIX conformance.
11590
11591 * lib/error.c: Sync with gnulib.
11592
11593 2002-11-22 Paul Eggert <eggert@twinsun.com>
11594
11595 * lib/quotearg.c, lib/quotearg.h: Sync with gnulib.
11596 * lib/mbswidth.c, lib/mbswidth.h: Likewise.
11597 * lib/xmalloc.c: Likewise.
11598
11599 2002-11-20 Paul Eggert <eggert@twinsun.com>
11600
11601 * lib/argmatch.c, lib/argmatch.h: Sync with gnulib.
11602
11603 2002-11-20 Paul Eggert <eggert@twinsun.com>
11604
11605 Avoid use of <assert.h>, as the GNU Coding Standards hint that one
11606 should use `if (! x) abort ();' rather than `assert (x);', and
11607 anyway it's one less thing to worry about configuring.
11608
11609 * data/glr.c, lib/hash.c, src/system.h: Do not include <assert.h>.
11610 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise,
11611 and replace all instances of assert with abort.
11612 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
11613 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Likewise.
11614
11615 * data/glr.c (yydoAction, yyglrReduce, yysplitStack, yyresolveStates,
11616 yyresolveAction, yyprocessOneStack): Use abort rather than assert.
11617 * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
11618 hash_find_entry, hash_rehash, hash_insert): Likewise.
11619 * src/conflicts.c (resolve_sr_conflict): Likewise.
11620 * src/lalr.c (set_goto_map, map_goto): Likewise.
11621 * src/nullable.c (nullable_compute): Likewise.
11622 * src/output.c (prepare_rules, token_definitions_output): Likewise.
11623 * src/reader.c (packgram, reader): Likewise.
11624 * src/state.c (state_new, state_free, state_transitions_set,
11625 state_reduction_find): Likewise.
11626 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias,
11627 symbol_pack): Likewise.
11628 * src/tables.c (conflict_row, pack_vector): Likewise.
11629 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
11630 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
11631 get_node_alignement_str, get_arrow_mode_str, get_crossing_type_str,
11632 get_view_str, get_linestyle_str, get_arrowstyle_str): Likewise.
11633
11634 * lib/argmatch.h (ARRAY_CARDINALITY): Do not bother to #undef.
11635 (ARGMATCH_CONSTRAINT): New macro.
11636 (ARGMATCH_ASSERT): Use it.
11637
11638 * src/system.h (verify): New macro.
11639 * src/getargs.c (trace_argmatch, report_argmatch): Use verify
11640 rather than assert.
11641 * src/tables.c (tables_generate): Likewise.
11642
11643 * src/struniq.c (struniq_assert): Now returns void, and aborts
11644 if the assertion is false.
11645 (struniq_assert_p): Remove.
11646 * src/struniq.h: Likewise.
11647
11648 2002-11-18 Paul Eggert <eggert@twinsun.com>
11649
11650 * data/glr.c (yygetLRActions): Replace `yyindex' with
11651 `yytable[yyindex]' to fix typo introduced in my 2002-11-09 patch.
11652 This fixes the regression with Sun ONE Studio 7 cc that I reported in
11653 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00077.html>.
11654
11655 2002-11-18 Akim Demaille <akim@epita.fr>
11656
11657 * doc/bison.texinfo (Tracing): `yyprint' shouldn't prepend a
11658 space.
11659 From Tim Van Holder.
11660
11661 2002-11-17 Paul Eggert <eggert@twinsun.com>
11662
11663 Pacify Sun ONE Studio 7 lint. Also, rename "ParseError"
11664 to "SyntaxError" for consistency with my 2002-11-15 change.
11665
11666 * data/glr.c (YYDPRINTF, YYDSYMPRINT, YYDSYMPRINTF) [!YYDEBUG]: Do
11667 not define to {}, since this breaks the common use of `YYDPRINTF
11668 ((...));' if a single statement is desired (e.g. before `else').
11669 Work around GCC warnings by surrounding corresponding calls with
11670 {} if needed.
11671 (yyhasResolvedValue): Remove unused function.
11672 (yymergeOptionSets, yyresolvStack): Use `continue;' for empty
11673 loop body.
11674 (yyreportSyntaxError): Renamed from yyreportParseError.
11675 (yyrecoverSyntaxError): Renamed from yyrecoverParseError.
11676 All uses changed.
11677 * tests/calc.at (_AT_DATA_CALC_Y): Make vars static instead of
11678 extern when possible. Remove unused initializations.
11679
11680 2002-11-16 Akim Demaille <akim@epita.fr>
11681
11682 Augment the similarity between GLR and LALR traces.
11683
11684 * data/yacc.c (yy_stack_print, YY_STACK_PRINT, yy_reduce_print)
11685 (YY_REDUCE_PRINT): New.
11686 (yyparse): Use them.
11687 * data/glr.c (yy_reduce_print): Use YYFPRINTF, no need for
11688 YYDPRINT here.
11689 (yyglrReduce, yyrecoverParseError, yyparse): Don't report the
11690 state reached after the reduction/recovery, since...
11691 (yyparse, yyprocessOneStack): Report the state we are entering in.
11692
11693 2002-11-16 Akim Demaille <akim@epita.fr>
11694
11695 * src/getargs.h, src/getargs.c (trace_e, trace_args, trace_types):
11696 Add support for --trace=skeleton.
11697 * src/scan-skel.l: %option debug.
11698 Scan strings of non-@ or \n instead of character by character.
11699 (scan_skel): Handle trace_skeleton.
11700 (QPUTS): New.
11701 (@output_parser_name@, @output_header_name@): ``Restore'' their
11702 support (used to be M4 macros).
11703 * data/yacc.c: Quote larger chunks, a la glr.c.
11704 * data/lalr1.cc: Likewise.
11705 The header guards are no longer available, so use some other
11706 string than `YYLSP_NEEDED'.
11707
11708 2002-11-16 Akim Demaille <akim@epita.fr>
11709
11710 Make the ``Printers and Destructors'' test more verbose, taking
11711 `yacc.c''s behavior as (possibly wrong) reference.
11712
11713 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use printf
11714 instead of fprint on stdout.
11715 Set and report the last_line of the symbols.
11716 Consistently display values and locations.
11717
11718 2002-11-16 Paul Eggert <eggert@twinsun.com>
11719
11720 * data/yacc.c: Avoid over-quoting of __line__ and __file__.
11721
11722 2002-11-15 Paul Eggert <eggert@twinsun.com>
11723
11724 * tests/actions.at (Actions after errors): New test case.
11725
11726 * data/glr.c, data/lalr1.cc, data/yacc.cc, doc/bison.texinfo,
11727 src/conflicts.c, src/parse-gram.y, src/tables.c, src/tables.h,
11728 tests/action.at, tests/calc.at, tests/conflicts.at,
11729 tests/cxx-type.at, tests/regression.at:
11730 "parse error" -> "syntax error" for POSIX compatibility.
11731 "parsing stack overflow..." -> "parser stack overflow" so
11732 that code matches Bison documentation.
11733
11734 2002-11-15 Akim Demaille <akim@epita.fr>
11735
11736 * src/parse-gram.y (declaration): Have %parse-param and %lex-param
11737 take two BRACED_CODE, not two string_content.
11738 Free the scanner's obstack when we are done.
11739 (code_content): New.
11740 * tests/calc.at: Adjust.
11741 * doc/bison.texinfo: Adjust.
11742 Also, make sure to include the `,' for these declarations.
11743
11744 2002-11-15 Tim Van Holder <tim.van.holder@pandora.be>
11745
11746 * m4/prereq.m4: Removed the commented jm_PREREQ_HASH
11747 definition; avoids potential autoreconf problems.
11748
11749 2002-11-15 Akim Demaille <akim@epita.fr>
11750
11751 Always check the value returned by yyparse.
11752
11753 * tests/calc.at (_AT_DATA_CALC_Y): Have `main' exit with the value
11754 returned by yyparse.
11755 (_AT_CHECK_CALC_ERROR): Take the expected exit value as argument.
11756 Adjust calls.
11757 * tests/glr-regr1.at (glr-regr1.y): Have `main' exit with the value
11758 returned by yyparse.
11759
11760 2002-11-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
11761
11762 * data/glr.c (yyFail): Always set yyerrflag. Corrects regression
11763 on input.at test.
11764
11765 2002-11-14 Paul Eggert <eggert@twinsun.com>
11766
11767 * src/output.c (output_skeleton): Call xfopen instead of
11768 duplicating xfopen's body.
11769
11770 Fix bugs reported by Nelson H. F. Beebe in
11771 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00078.html>.
11772
11773 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that
11774 "$CC -E foo.h" is allowed, as this doesn't work with the Portland
11775 Group compiler. Instead, use "$CC -E bar.c". Include the .h
11776 file twice in the grammar, as an extra check.
11777
11778 * tests/input.at (Torturing the Scanner): Surround the
11779 backslash-newline tests with "#if 0", to make it less likely that
11780 we'll run into compiler bugs. Bring back solitary \ inside
11781 comment, but add a closing comment to work around HP C bug. Don't
11782 test backslash-newline in C character constant.
11783
11784 2002-11-14 Akim Demaille <akim@epita.fr>
11785
11786 * tests/synclines.at (AT_SYNCLINES_COMPILE): Ignore the exit
11787 status of the compiler.
11788 Calling `exit 1' is no longer needed.
11789 Reported by Nelson H. F. Beebe.
11790
11791 2002-11-14 Akim Demaille <akim@epita.fr>
11792
11793 * tests/atlocal.in (CPPFLAGS): We have config.h.
11794 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR):
11795 New.
11796 * tests/actions.at, tests/calc.at, tests/conflicts.at,
11797 * tests/cxx-type.at, tests/glr-regr1.at, tests/headers.at,
11798 * tests/regression.at, tests/torture.at: Use them for all the
11799 grammars that are to be compiled.
11800 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Rename as...
11801 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): this.
11802 * doc/bison.texinfo (GLR Parsers): Document `inline'.
11803
11804 2002-11-14 Akim Demaille <akim@epita.fr>
11805
11806 * doc/bison.texinfo: Various formatting changes (alignments in
11807 samples, additional @group/@end group, GCS in samples.
11808 Use @deffn instead of simple @table to define the directives,
11809 macros, variables etc.
11810
11811 2002-11-13 Paul Eggert <eggert@twinsun.com>
11812
11813 Fix some bugs reported by Albert Chin-A-Young in
11814 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00066.html>.
11815
11816 * tests/input.at (Torturing the Scanner): Don't invoke "cc a.c b.c
11817 -o c"; the HP C compiler chatters during compilation.
11818 Instead, invoke "cc -c a.c -o a.o; cc -c b.c -o b.o; cc a.o b.o -o c".
11819 * tests/headers.at (export YYLTYPE): Likewise.
11820
11821 * tests/input.at (Torturing the Scanner): Remove lines containing
11822 solitary backslashes, as they tickle a bug in the HP C compiler.
11823
11824 * tests/glr-regr1.at (Badly Collapsed GLR States): Avoid //
11825 comments, since they're not portable. Use GNU coding style.
11826
11827 2002-11-13 Akim Demaille <akim@epita.fr>
11828
11829 * data/yacc.c: Leave bigger chunks of quoted text.
11830 (YYDSYMPRINTF): New.
11831 Use it to report symbol activities.
11832 * data/glr.c (YYDSYMPRINTF): New.
11833 Use it.
11834
11835 2002-11-12 Paul Eggert <eggert@twinsun.com>
11836
11837 Version 1.75b.
11838
11839 * data/glr.c (yydoAction): Return YYRESULTTAG, not int.
11840 (yyglrReduce): Return yyok, not 0.
11841 This should avoid the enumerated-type warnings reported
11842 by Nelson H. F. Beebe in
11843 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00057.html>.
11844
11845 * lib/bbitset.h (BITSET_INLINE): Remove.
11846 * lib/bitset.h [! BITSET_INLINE]: Remove.
11847 (bitset_set, bitset_reset, bitset_test): Rename local vars
11848 to avoid shadowing warnings by GCC.
11849
11850 * data/glr.c (inline): Remove #define. It's the user's
11851 responsibility to #define it away, just like 'const'.
11852 This fixes one of the bugs reported by Nelson H. F. Beebe in
11853 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00058.html>.
11854
11855 * Makefile.maint (po-check): Scan .l and .y files instead of the
11856 .c and the .h files that they generate. This fixes the bug
11857 reported by Tim Van Holder in:
11858 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00062.html>
11859 Look for N_ as well as for _. Try to avoid matching #define for
11860 N_ and _.
11861 * po/POTFILES.in: Remove src/parse-gram.c, src/scan-gram.c,
11862 src/system.h. Add src/parse-gram.y, src/scan-gram.l.
11863 * src/scan-gram.l: Revamp regular expressions so that " and '
11864 do not confuse xgettext.
11865
11866 * src/struniq.h (struniq_new): Do not declare the return type
11867 to be 'const'; this violates the C standard.
11868 * src/struniq.c (struniq_new): Likewise.
11869
11870 2002-11-12 Albert Chin-A-Young <china@thewrittenword.com>
11871
11872 * src/Makefile.am (LDADD): Link $(LIBINTL) last to avoid the
11873 duplicate definition of optind on Tru64 UNIX 4.0D with the Compaq
11874 linker.
11875
11876 2002-11-12 Akim Demaille <akim@epita.fr>
11877
11878 * Makefile.maint: Sync with Autoconf:
11879 (local_updates): New.
11880
11881 2002-11-12 Akim Demaille <akim@epita.fr>
11882
11883 * po/POTFILES.in (src/lalr.c, src/state.c): Remove
11884
11885 2002-11-12 Akim Demaille <akim@epita.fr>
11886
11887 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Display the
11888 locations.
11889
11890 2002-11-12 Akim Demaille <akim@epita.fr>
11891
11892 * data/c.m4 (b4_yysymprint_generate): Pass *yyvaluep to YYPRINT,
11893 not yyvalue.
11894
11895 2002-11-12 Akim Demaille <akim@epita.fr>
11896
11897 * tests/actions.at (AT_CHECK_PRINTER_AND_DESTRUCTOR): New.
11898 Use it to test the GLR parser.
11899
11900 2002-11-12 Akim Demaille <akim@epita.fr>
11901
11902 * tests/regression.at (input.y): s/YYEOF/MYEOF/, as the skeleton
11903 defines it.
11904 * data/glr.c (yystos): New.
11905 (b4_yysymprint_generate, b4_yydestruct_generate): Invoke.
11906 (YYDSYMPRINT): New.
11907 (yyval): Don't define it, it is handled via M4.
11908 (yyrecoverParseError): Free verbosely the discarded symbols.
11909 * data/yacc.c (yysymprint): Remove, rather...
11910 (b4_yysymprint_generate): invoke.
11911 * data/c.m4 (b4_yysymprint_generate): New.
11912 Accept pointers as arguments, as opposed to the version from
11913 yacc.c.
11914 (b4_yydestruct_generate): Likewise.
11915 * tests/cations.at (Printers and Destructors): Use Bison directives
11916 instead of CPP macros.
11917 Don't rely on internal details.
11918
11919 2002-11-12 Akim Demaille <akim@epita.fr>
11920
11921 * data/c.m4 (b4_yydestruct_generate, b4_symbol_actions): New.
11922 * data/yacc.c: Rename yychar1 as yytoken, as in glr.c.
11923 Don't work on yychar (i.e., do set it to YYEMPTY, don't match
11924 it against YYEMPTY and so forth), work on yytoken (i.e., set
11925 it to YYEMPTY etc.).
11926 (yydestruct): Replace with a b4_yydestruct_generate invocation.
11927 (b4_symbol_actions): Remove.
11928 * data/glr.c (YYTRANSLATE): As for yacc.c, if negative, it stands
11929 for 0, end-of-input.
11930
11931 2002-11-12 Akim Demaille <akim@epita.fr>
11932
11933 * doc/bison.texinfo (Destructor Decl): New.
11934
11935 2002-11-12 Akim Demaille <akim@epita.fr>
11936
11937 * src/tables.c (tables_generate): Use free for pointers that
11938 cannot be NULL, not XFREE.
11939 (pack_vector): Use assert, not fatal, for bound violations.
11940 * src/state.c (state_new): Likewise.
11941 * src/reader.c (reader): Likewise.
11942 * src/lalr.c (set_goto_map): Likewise.
11943 * src/location.h (LOCATION_PRINT): If first_line is 0, just issue
11944 the file name.
11945
11946 2002-11-12 Akim Demaille <akim@epita.fr>
11947
11948 * src/scan-gram.l, src/reader.h (scanner_last_string_free):
11949 Restore.
11950 * src/scan-gram.l (last_string): Is global to the file, not to
11951 yylex.
11952 * src/parse-gram.y (input): Don't append the epilogue here,
11953 (epilogue.opt): do it here, and free the scanner's obstack.
11954 * src/reader.c (epilogue_set): Rename as...
11955 (epilogue_augment): this.
11956 * data/c.m4 (b4_epilogue): Defaults to empty.
11957
11958 2002-11-12 Akim Demaille <akim@epita.fr>
11959
11960 * src/getargs.c (long_options): Remove duplicates.
11961 * src/vmsgetargs.c, src/build.com, src/bison.cld, src/vmshlp.mar:
11962 Remove.
11963 * doc/bison.rnh: Remove.
11964 * doc/bison.texinfo (VMS Invocation): Remove.
11965
11966 2002-11-12 Akim Demaille <akim@epita.fr>
11967
11968 * src/struniq.h, src/struniq.c (struniq_t): Is const.
11969 (STRUNIQ_EQ, struniq_assert, struniq_assert_p): New.
11970
11971 Use struniq for symbols.
11972
11973 * src/symtab.h (symbol_t): The tag member is a struniq.
11974 (symbol_type_set): Adjust.
11975 * src/symtab.c (symbol_new): Takes a struniq.
11976 (symbol_free): Don't free the tag member.
11977 (hash_compare_symbol_t, hash_symbol_t): Rename as...
11978 (hash_compare_symbol, hash_symbol): these.
11979 Use the fact that tags as struniqs.
11980 (symbol_get): Use struniq_new.
11981 * src/symlist.h, src/symlist.c (symbol_list_n_type_name_get):
11982 Returns a strniq.
11983 * src/reader.h (merger_list, grammar_currentmerge_set): The name
11984 and type members are struniqs.
11985 * src/reader.c (get_merge_function)
11986 (grammar_current_rule_merge_set): Adjust.
11987 (TYPE, current_type): Are struniq.
11988
11989 Use struniq for file names.
11990
11991 * src/files.h, src/files.c (infile): Split into...
11992 (grammar_file, current_file): these.
11993 * src/scan-gram.c (YY_USER_INIT, handle_syncline): Adjust.
11994 * src/reduce.c (reduce_print): Likewise.
11995 * src/getargs.c (getargs): Likewise.
11996 * src/complain.h, src/complain.c: Likewise.
11997 * src/main.c (main): Call struniqs_new early enough to use it for
11998 file names.
11999 Don't free the input file name.
12000
12001 2002-11-12 Akim Demaille <akim@epita.fr>
12002
12003 * src/symtab.c (symbol_free): Remove dead deactivated code:
12004 type_name are properly removed.
12005 Don't use XFREE to free items that cannot be NULL.
12006 * src/struniq.h, src/struniq.c: New.
12007 * src/main.c (main): Initialize/free struniqs.
12008 * src/parse-gram.y (%union): Add astruniq member.
12009 (yyprint): Adjust.
12010 * src/scan-gram.l (<{tag}>): Return a struniq.
12011 Free the obstack bit that used to store it.
12012 * src/symtab.h (symbol_t): The 'type_name' member is a struniq.
12013
12014 2002-11-11 Paul Eggert <eggert@twinsun.com>
12015
12016 Revamp to fix many (but not all) of the C- and M4-related quoting
12017 problems. Among other things, this fixes the Bison bug reported
12018 by Jan Hubicka when processing the Bash grammar; see:
12019 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00039.html>
12020
12021 Use new @ escapes consistently. Represent brackets with @{ and @}
12022 rather than @<:@ and @:>@, since this works a bit better with dumb
12023 editors like vi. Represent @ with @@, since @ is now consistently
12024 an escape. Use @oline@ and @ofile@ rather than __oline__ and
12025 __ofile__, to avoid unexpected expansions. Similarly, use @output
12026 rather than #output.
12027
12028 * data/c.m4 (b4_copyright): Omit file name from comment, since
12029 the file name could contain "*/".
12030 (b4_synclines_flag): Don't quote the 2nd argument; it should already
12031 be quoted. All uses changed.
12032
12033 * data/glr.c: Use new @ escapes consistently.
12034 (b4_input_suffix, b4_output_parser_suffix, b4_output_parser_name,
12035 b4_output_header_suffix, b4_output_header_name, b4_header_guard):
12036 Remove, since they couldn't handle arbitrary characters in file
12037 names.
12038 * data/lalr1.cc: Likewise.
12039 * data/yacc.c: Likewise.
12040
12041 * src/files.c (output_infix): Remove; all uses removed.
12042 * src/files.h: Likewise.
12043
12044 * data/glr.c: Remove use of "#ifdef b4_header_guard", since it
12045 mishandled funny characters in file names, and anyway it isn't
12046 needed any more.
12047 * data/yacc.c: Likewise.
12048 * data/lalr1.cc: Use YYSLP_NEEDED instead of b4_header_guard.
12049
12050 * data/glr.c (YYSTYPE_IS_TRIVIAL): Define when the .h file would.
12051 * data/yacc.c: Likewise.
12052
12053 * src/muscle_tab.c: Include quotearg.h, since we need to quote C
12054 strings now.
12055 (muscle_init): Quote filename as a C string.
12056 * src/muscle_tab.h (MUSCLE_GROW_STRING_PAIR): Remove; unused.
12057 (MUSCLE_OBSTACK_SGROW, MUSCLE_INSERT_C_STRING): New macros.
12058 * src/output.c (escaped_file_name_output): New function.
12059 (prepare_symbols): Quote tokens for M4.
12060 (prepare): Don't insert output_infix, output_prefix,
12061 output_parser_name, output_header_name; this is now down by scan-skel.
12062 Insert skeleton as a C string.
12063
12064 * src/output.c (user_actions_output, symbol_destructors_output,
12065 symbol_printers_output): Quote filenames for C and M4.
12066 * src/reader.c (prologue_augment, epilogue_set): Likewise.
12067
12068 * src/scan-gram.l (<SC_CHARACTER>): Don't worry about any backslash
12069 escapes other than \\ and \'; this simplifies the code.
12070 (<SC_STRING>): Likewise, for \\ and \".
12071 (<SC_COMMENT,SC_LINE_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,
12072 SC_PROLOGUE,SC_EPILOGUE>): Escape $ and @, too.
12073 Use new escapes @{ and @} for [ and ].
12074
12075 * src/scan-skel.l (yylineno, yyoutname): Remove static vars, replacing
12076 them with auto vars.
12077 Switch to new escape scheme, where @ is the escape character uniformly.
12078 Abort if a stray escape character is found. Avoid unbounded input
12079 buffer when parsing non-escaped text.
12080
12081 * tests/input.at (Torturing the Scanner): Add tests that @oline@,
12082 __oline__, #output, $@, and @{ do not have unintended meanings.
12083
12084 2002-11-09 Paul Eggert <eggert@twinsun.com>
12085
12086 Fix the test failure due to GCC warnings described in
12087 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00000.html>.
12088 * data/glr.c (yyis_pact_ninf, yyis_table_ninf): New macros, which
12089 evaluate to 0 if it's impossible for NINF to be in the respective
12090 table.
12091 (yygetLRActions, yyrecoverParseError): Use them.
12092
12093 * src/scan-gram.l (unexpected_end_of_file): Fix bug: columns were
12094 counted in the token inserted at end of file. Now takes
12095 location_t *, not location_t, so that the location can be
12096 adjusted. All uses changed.
12097
12098 * tests/regression.at (Invalid inputs): Adjust wording in
12099 diagnostic to match the new behavior.
12100
12101 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR,
12102 AT_DATA_HORIZONTAL_GRAMMAR, AT_DATA_LOOKAHEADS_GRAMMAR,
12103 AT_DATA_STACK_TORTURE): Replace `assert (x);' with `if (! (x))
12104 abort ();'. This reduces the runtime of the "Many lookaheads"
12105 test from 27.6 to 2.7 minutes on a 440 MHz Ultrasparc III running
12106 GCC 3.2.
12107
12108 2002-11-07 Paul Eggert <eggert@twinsun.com>
12109
12110 * src/parse-gram.y (CHARACTER): Remove unused token.
12111 All uses removed.
12112
12113 * src/scan-gram.l: Remove stack option. We no longer use the
12114 stack, since the stack was never deeper than 1; instead, use the
12115 new auto var c_context to record the stacked value.
12116
12117 Remove nounput option. At an unexpected end of file, we now unput
12118 the minimal input necessary to end cleanly; this simplifies the
12119 code.
12120
12121 Avoid unbounded token sizes where this is easy.
12122
12123 (unexpected_end_of_file): New function.
12124 Use it to systematize the error message on unexpected EOF.
12125 (last-string): Now auto, not static.
12126 (YY_OBS_FREE): Remove unnecessary do while (0) wrapper.
12127 (scanner_last_string_free): Remove; not used.
12128 (percent_percent_count): Move decl to just before use.
12129 (SC_ESCAPED_CHARACTER): Return ID at unexpected end of file,
12130 not the (never otherwised-used) CHARACTER.
12131
12132 2002-11-07 Akim Demaille <akim@epita.fr>
12133
12134 Let yyerror always receive the msg as last argument, so that
12135 yyerror can be variadic.
12136
12137 * data/yacc.c (b4_yyerror_args): New.
12138 Use it when calling yyerror.
12139 * data/glr.c (b4_yyerror_args, b4_lyyerror_args): New.
12140 Use it when calling yyerror.
12141 * doc/bison.texinfo (Error Reporting): Adjust.
12142 * tests/calc.at (_AT_DATA_CALC_Y): Adjust.
12143 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Adjust.
12144
12145 2002-11-06 Akim Demaille <akim@epita.fr>
12146
12147 #line should have quoted strings.
12148 Ideally, this should be done by m4_quotearg.
12149
12150 * src/scan-skel.l: Include quotearg.h.
12151 Quote __ofile__.
12152 * src/output.c (symbol_printers_output)
12153 (symbol_destructors_output): Quote the file name.
12154
12155 2002-11-06 Akim Demaille <akim@epita.fr>
12156
12157 * tests/regression.at (Invalid inputs): Adjust to the recent
12158 messages.
12159
12160 2002-11-06 Akim Demaille <akim@epita.fr>
12161
12162 Restore --no-lines.
12163 Reported by Jim Kent.
12164
12165 * data/c.m4 (b4_syncline): New.
12166 * data/glr.c, data/yacc.c, data/lalr1.cc: Use it.
12167 * src/reader.c (prologue_augment, epilogue_set): Use b4_syncline.
12168 * src/output.c (user_actions_output): Likewise.
12169 (prepare): Define 'b4_synclines_flag'.
12170 * src/muscle_tab.c (muscle_init): Don't define b4_linef.
12171
12172 2002-11-06 Akim Demaille <akim@epita.fr>
12173
12174 * src/main.c (main): Free `infile'.
12175 * src/scan-gram.l (handle_syncline): New.
12176 Recognize `#line'.
12177 * src/output.c (user_actions_output, symbol_destructors_output)
12178 (symbol_printers_output): Use the location's file name, not
12179 infile.
12180 * src/reader.c (prologue_augment, epilogue_set): Likewise.
12181
12182 2002-11-05 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
12183
12184 * src/tables.c (matching_state): Don't allow states to match if
12185 either has GLR conflict entries.
12186
12187 2002-11-05 Paul Eggert <eggert@twinsun.com>
12188
12189 * src/scan-gram.l: Use more accurate diagnostics, e.g.
12190 "integer out of range" rather than "invalid value".
12191 * tests/input.at (Invalid $n, Invalid @n): Change expected wording
12192 accordingly.
12193
12194 Scan <% and %> digraphs in C code as POSIX 1003.1-2001 requires.
12195 Also, remove one static variable in the scanner.
12196
12197 * src/scan-gram.l (braces_level): Now auto, not static.
12198 Initialize to zero if the compiler is being picky.
12199 (INITIAL): Clear braces_level instead of incrementing it.
12200 (SC_BRACED_CODE): Treat <% and %> as { and } when inside C code,
12201 as POSIX 1003.1-2001 requires.
12202 * src/system.h (IF_LINT): New macro, taken from coreutils.
12203 * configure.ac: Define "lint" if --enable-gcc-warnings.
12204
12205 2002-11-05 Akim Demaille <akim@epita.fr>
12206
12207 * src/scan-gram.l: When it starts with `%', complain about the
12208 whole directive, not just that `invalid character: %'.
12209
12210 2002-11-04 Akim Demaille <akim@epita.fr>
12211
12212 * Makefile.maint: Update from Autoconf.
12213 (update, cvs-update, po-update, do-po-update): New.
12214
12215 2002-11-04 Akim Demaille <akim@epita.fr>
12216
12217 * tests/glr-regr1.at (Badly Collapsed GLR States): Prototype yylex
12218 and yyerror.
12219 Have yyerror `use' its arguments.
12220 * tests/calc.at (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF
12221 returns true when location & yacc & pure & parse-param.
12222 (_AT_DATA_CALC_Y): Let yyerror ``use'' its arguments.
12223
12224 2002-11-04 Akim Demaille <akim@epita.fr>
12225
12226 * src/location.h (LOCATION_PRINT): Use quotearg slot 3 to avoid
12227 clashes.
12228 * src/scan-gram.l: Use [\'] instead of ['] to pacify
12229 font-lock-mode.
12230 Use complain_at.
12231 Use quote, not quote_n since LOCATION_PRINT no longer uses the
12232 slot 0.
12233
12234 2002-11-03 Paul Eggert <eggert@twinsun.com>
12235
12236 * src/reader.c (get_merge_function, grammar_current_rule_check):
12237 Use consistent diagnostics for reporting type name clashes.
12238 Quote the types with <>, for consistency with Yacc.
12239 * tests/input.at (Type Clashes): Adjust to diagnostic changes.
12240
12241 2002-11-03 Akim Demaille <akim@epita.fr>
12242
12243 * data/c.m4 (b4_identification, b4_user_args, b4_parse_param):
12244 New.
12245 * data/yacc.m4 (b4_pure_args, b4_Pure_args): New.
12246 (b4_parse_param): Remove.
12247 Use b4_identification.
12248 Propagate b4_pure_args where needed to pass them to yyerror.
12249 * data/glr.m4 (b4_parse_param): Remove.
12250 (b4_user_formals, b4_pure_args, b4_pure_formals, b4_lpure_args)
12251 (b4_lpure_formals): New.
12252 Use b4_identification.
12253 (YY_USER_FORMALS, YY_USER_ARGS): Remove, replaced by
12254 b4_user_formals and b4_user_args.
12255 (yyexpandGLRStack, yyFail, yyaddDeferredAction, yyglrShiftDefer)
12256 (yyreportAmbiguity): When using a pure parser, also need
12257 the location, and the parse-params.
12258 Adjust callers.
12259 (yyuserAction, yyglrShift, yyreportParseError, yyrecoverParseError):
12260 When using a pure parser, also need the parse-params.
12261 Adjust callers.
12262 * tests/calc.at: Test pure (%pure-parser) and absolutely pure
12263 (%pure-parser + %parse-param) LALR and GLR parsers.
12264 (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): New, define AT_PARAM_IF,
12265 AT_LOCATION_IF, AT_PURE_IF, AT_GLR_IF, AAT_PURE_AND_LOC_IF,
12266 AT_GLR_OR_PARAM_IF, AT_YYERROR_ARG_LOC_IF, AT_YYERROR_SEES_LOC_IF.
12267 (_AT_DATA_CALC_Y): Equip for purity of yyerror.
12268 (_AT_CHECK_CALC_ERROR): Use AT_YYERROR_SEES_LOC_IF.
12269 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Equip for yyerror purity.
12270 * doc/bison.texinfo: Untabify the whole file.
12271 (Parser Function): Document %parse-param, deprecate YYPARSE_PARAM.
12272 (Pure Calling): Document %lex-param, deprecate YYLEX_PARAM.
12273 (Error Reporting): Adjust to these new directives.
12274 Document %error-verbose, deprecate YYERROR_VERBOSE.
12275
12276 2002-11-03 Akim Demaille <akim@epita.fr>
12277
12278 * tests/calc.at: Change all the AT_CHECK_CALC_LALR and
12279 AT_CHECK_CALC_GLR invocations to use % directives, instead of
12280 command line options.
12281 * tests/cxx-type.at: Formatting changes.
12282
12283 2002-11-03 Paul Eggert <eggert@twinsun.com>
12284
12285 * src/scan-gram.l: Revamp to fix POSIX incompatibilities,
12286 to count columns correctly, and to check for invalid inputs.
12287
12288 Use mbsnwidth to count columns correctly. Account for tabs, too.
12289 Include mbswidth.h.
12290 (YY_USER_ACTION): Invoke extend_location rather than LOCATION_COLUMNS.
12291 (extend_location): New function.
12292 (YY_LINES): Remove.
12293
12294 Handle CRLF in C code rather than in Lex code.
12295 (YY_INPUT): New macro.
12296 (no_cr_read): New function.
12297
12298 Scan UCNs, even though we don't fully handle them yet.
12299 (convert_ucn_to_byte): New function.
12300
12301 Handle backslash-newline correctly in C code.
12302 (SC_LINE_COMMENT, SC_YACC_COMMENT): New states.
12303 (eols, blanks): Remove. YY_USER_ACTION now counts newlines etc.;
12304 all uses changed.
12305 (tag, splice): New EREs. Do not allow NUL or newline in tags.
12306 Use {splice} wherever C allows backslash-newline.
12307 YY_STEP after space, newline, vertical-tab.
12308 ("/*"): BEGIN SC_YACC_COMMENT, not yy_push_state (SC_COMMENT).
12309
12310 (letter, id): Don't assume ASCII; e.g., spell out a-z.
12311
12312 ({int}, handle_action_dollar, handle_action_at): Check for integer
12313 overflow.
12314
12315 (YY_STEP): Omit trailing semicolon, so that it's more like C.
12316
12317 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>): Allow \0 and \00
12318 as well as \000. Check for UCHAR_MAX, not 255.
12319 Allow \x with an arbitrary positive number of digits, as in C.
12320 Check for overflow here.
12321 Allow \? and UCNs, for compatibility with C.
12322
12323 (handle_symbol_code_dollar): Use quote_n slot 1 to avoid collision
12324 with quote slot used by complain_at.
12325
12326 * tests/input.at: Add tests for backslash-newline, m4 quotes
12327 in symbols, long literals, and funny escapes in strings.
12328
12329 * configure.ac (jm_PREREQ_MBSWIDTH): Add.
12330 * lib/Makefile.am (libbison_a_SOURCES): Add mbswidth.h, mbswidth.c.
12331 * lib/mbswidth.h, lib/mbswidth.c: New files, from GNU gettext.
12332 * m4/Makefile.am (EXTRA_DIST): Add mbswidth.m4.
12333 * m4/mbswidth.m4: New file, from GNU coreutils.
12334
12335 * doc/bison.texinfo (Grammar Outline): Document // comments.
12336 (Symbols): Document that trigraphs have no special meaning in Bison,
12337 nor is backslash-newline allowed.
12338 (Actions): Document that trigraphs have no special meaning.
12339
12340 * src/location.h (LOCATION_COLUMNS, LOCATION_LINES): Remove;
12341 no longer used.
12342
12343 2002-11-02 Paul Eggert <eggert@twinsun.com>
12344
12345 * src/reader.c: Don't include quote.h; not needed.
12346 (get_merge_function): Reword warning to be consistent with
12347 type clash diagnostic in grammar_current_rule_check.
12348
12349 * lib/quotearg.c (quotearg_buffer_restyled): Fix off-by-two
12350 bug in trigraph handling.
12351
12352 * src/output.c (prepare_symbols): When printing token names,
12353 escape "[" as "@<:@" and likewise for "]".
12354
12355 * src/system.h (errno): Remove declaration, as we are now
12356 assuming C89 or better, and C89 guarantees errno.
12357
12358 2002-10-30 Paul Eggert <eggert@twinsun.com>
12359
12360 * lib/bitset_stats.c (bitset_stats_read, bitset_stats_write):
12361 Check for close failures.
12362 * src/files.h (xfclose): Return void, not int, since it always
12363 returned zero.
12364 * src/files.c (xfclose): Likewise. Report I/O error if ferror
12365 indicates one.
12366 * src/output.c (output_skeleton): Use xfclose rather than fclose
12367 and ferror. xfclose now checks ferror.
12368
12369 * data/glr.c (YYLEFTMOST_STATE): Remove.
12370 (yyreportTree): Use a stack-based leftmost state. This avoids
12371 our continuing battles with bogus warnings about initializers.
12372
12373 2002-10-30 Akim Demaille <akim@epita.fr>
12374
12375 * src/system.h: Don't use #ifdef/#ifndef on HAVE_ values, only
12376 #if.
12377
12378 2002-10-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
12379
12380 * tests/glr-regr1.at: New test for reported regressions.
12381 * tests/testsuite.at: Add glr-regr1.at test.
12382 * tests/Makefile.am: Add glr-regr1.at test.
12383
12384 2002-10-24 Paul Eggert <eggert@twinsun.com>
12385
12386 Version 1.75a.
12387
12388 * tests/calc.at (_AT_DATA_CALC_Y): Remove unused strcat declaration.
12389 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Include stdlib.h, since
12390 we use malloc. Don't assume 'A' through 'Z' are contiguous.
12391 Don't assume strdup exists; POSIX says its an XSI extension.
12392 Check for buffer overflow on input.
12393
12394 2002-10-24 Akim Demaille <akim@epita.fr>
12395
12396 * src/output.c (output_skeleton): Don't disable M4sugar comments
12397 too soon: it results in comments being expanded.
12398 * data/yacc.c, data/glr.c, data/lalr1.cc: Do it right before the
12399 first output.
12400
12401 2002-10-24 Akim Demaille <akim@epita.fr>
12402
12403 * data/yacc.c (m4_int_type): New.
12404 * data/c.m4 (m4_int_type): Don't use yysigned_char, but `signed
12405 char' as only yacc.c wants K&R portability.
12406 * data/glr.c (yysigned_char): Remove.
12407 * data/lalr1.cc: Rename the trailing b4_name as b4_parser_class_name.
12408 Reported by Quoc Peyrot.
12409
12410 2002-10-23 Paul Eggert <eggert@twinsun.com>
12411
12412 * src/main.c (main): With --trace=time, report times even if a
12413 non-fatal error occurs. Formerly, the times were reported in some
12414 such cases but not in others.
12415 * src/reader.c (reader): Just return if a complaint has been issued,
12416 instead of exiting, so that 'main' can report times.
12417
12418 2002-10-22 Akim Demaille <akim@epita.fr>
12419
12420 * src/system.h: Include sys/types.
12421 Reported by Bert Deknuydt.
12422
12423 2002-10-23 Paul Eggert <eggert@twinsun.com>
12424
12425 * configure.ac (AC_PROG_LEX): Use instead of AM_PROG_LEX.
12426 Suggested by Art Haas.
12427
12428 2002-10-22 Paul Eggert <eggert@twinsun.com>
12429
12430 * src/complain.c (exit) [! (STDC_HEADERS || _LIBC)]: Remove exit
12431 decl; not needed any more.
12432 * src/main.c (main): Use return to exit, undoing yesterday's change.
12433 The last OS that we could find where this wouldn't work is
12434 SunOS 3.5, and that's too old to worry about now.
12435
12436 * data/glr.c (struct yyltype): Define members even when not
12437 doing locations. This is more consistent with yacc.c, and it
12438 works around the following bug reports:
12439 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00106.html
12440 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00111.html
12441
12442 * doc/bison.texinfo: Minor spelling and typographical fixes. Use
12443 @acronym consistently. Standardize on "Yacc" instead of "YACC",
12444 "Algol" instead of "ALGOL". Give a bit more history about BNF.
12445
12446 2002-10-22 Akim Demaille <akim@epita.fr>
12447
12448 * data/README: New.
12449
12450 2002-10-21 Paul Eggert <eggert@twinsun.com>
12451
12452 Be consistent about 'bool'; the old code used an enum in one
12453 module and an int in another, and this violates the C standard.
12454 * m4/stdbool.m4: New file, from coreutils 4.5.3.
12455 * configure.ac (AC_HEADER_STDBOOL): Add.
12456 * m4/Makefile.am (EXTRA_DIST): Add stdbool.m4.
12457 * src/muscle_tab.c (hash_compare_muscles): (a ? FALSE : TRUE) -> (! a)
12458 * src/symtab.c (hash_compare_symbol_t): Likewise.
12459 * src/system.h (bool, false, true): Use a definition consistent
12460 with ../lib/hash.c. All uses changed.
12461
12462 * src/complain.c (warning_issued): Renamed from warn_message_count,
12463 so that we needn't worry about integer overflow (!).
12464 Now of type bool. All uses changed.
12465 (complaint_issued): Renamed from complain_message_count; likewise.
12466
12467 * src/main.c (main): Use exit to exit with failure.
12468
12469 * src/complain.c (fatal_at, fatal): Use EXIT_FAILURE and EXIT_SUCCESS
12470 rather than 1 and 0.
12471 * src/main.c (main): Likewise.
12472 * src/getargs.c (getargs): Likewise.
12473 * src/reader.c (reader): Likewise.
12474
12475 * src/getarg.c (getargs): Remove duplicate code for
12476 "Try `bison --help'".
12477
12478 * src/files.c (xfopen, xfclose): Use EXIT_FAILURE rather than 2.
12479 What was that "2" for?
12480
12481 * src/complain.h (fatal, fatal_at): Add __attribute__((__noreturn__)).
12482 * src/getargs.c (usage): Likewise.
12483
12484 * src/getargs.c (getargs): When there are too few operands, report
12485 the last one. When there are too many, report the first extra
12486 one. This is how diffutils does it.
12487
12488 2002-10-20 Paul Eggert <eggert@twinsun.com>
12489
12490 Remove K&R vestiges.
12491 * configure.ac (AC_C_CONST, AM_C_PROTOTYPES): Remove.
12492 * src/complain.c (VA_START): Remove. Assume prototypes.
12493 (vfprintf) [! (HAVE_VPRINTF || defined vfprintf)]: New macro.
12494 (private_strerror, warn_at, warn, complain_at, complain, fatal_at,
12495 fatal): Assume prototypes.
12496 * src/complain.h: Assume prototypes.
12497 * src/system.h (PARAMS): Remove.
12498 Include <limits.h> unconditionally, since it's guaranteeed even
12499 for a freestanding C89 compiler.
12500 (SHRT_MIN, SHRT_MAX): Remove, since C89 guarantees them.
12501 * src/vmsgetargs.c (getargs, cli_present, cli_get_value): Prototype.
12502
12503 2002-10-20 Akim Demaille <akim@epita.fr>
12504
12505 * src/muscle_tab.c (muscle_grow): Remove trailing debugging code.
12506 * data/glr.c (YY_USER_FORMALS, YY_USER_ARGS): New.
12507 (yyuserAction, yydoAction, yyglrReduce, yyresolveValue)
12508 (yyresolveStates, yyresolveAction, yyresolveStack)
12509 (yyprocessOneStack): Use them.
12510 (yy_reduce_print): New.
12511 * tests/calc.at (_AT_DATA_CALC_Y): Exercise %parse-param.
12512
12513 2002-10-20 Akim Demaille <akim@epita.fr>
12514
12515 * data/c.m4 (b4_c_ansi_args): Recognize functions with no
12516 arguments and output `void'.
12517 (b4_c_function): Rename as...
12518 (b4_c_function_def): this.
12519 (b4_c_function_decl, b4_c_ansi_function_def)
12520 (b4_c_ansi_function_decl): New.
12521 Change the interpretation of the arguments: before `int, foo', now
12522 `int foo, foo'.
12523 * data/yacc.c (yyparse): Prototype and define thanks to these.
12524 Adjust b4_c_function_def uses.
12525 * data/glr.c (yyparse): Likewise, but ANSI only.
12526
12527 2002-10-20 Akim Demaille <akim@epita.fr>
12528
12529 * src/output.c (prepare): Move the definition of `tokens_number',
12530 `nterms_number', `undef_token_number', `user_token_number_max'
12531 to...
12532 (prepare_tokens): Here.
12533 (prepare_tokens): Rename as...
12534 (prepare_symbols): this.
12535 (prepare): Move the definition of `rules_number' to...
12536 (prepare_rules): here.
12537 (prepare): Move the definition of `last', `final_state_number',
12538 `states_number' to...
12539 (prepare_states): here.
12540 * data/yacc.c, data/lalr1.cc, data/glr.c: Normalize `>' into `<'.
12541
12542 2002-10-20 Akim Demaille <akim@epita.fr>
12543
12544 * src/tables.h, src/tables.c, src/output.c: Comment changes.
12545
12546 2002-10-20 Akim Demaille <akim@epita.fr>
12547
12548 * data/yacc.c, data/yacc.c (b4_location_if, b4_pure_if): Move to...
12549 * data/c.m4: here.
12550
12551 2002-10-20 Akim Demaille <akim@epita.fr>
12552
12553 * src/output.c (prepare): Use MUSCLE_INSERT_STRING.
12554 * src/muscle_tab.c (muscle_pair_list_grow): Rename `val as
12555 `pair'.
12556 (muscle_init): Move the `b4_ltype', `b4_maxdepth', `b4_initdepth',
12557 `name' to...
12558 * data/glr.c, data/lalr1.cc, data/yacc.c (b4_location_type)
12559 (b4_stack_depth_init, b4_stack_depth_max, b4_parser_class_name):
12560 These.
12561
12562 2002-10-19 Paul Eggert <eggert@twinsun.com>
12563
12564 Do not create a temporary file, as that involves security and
12565 cleanup headaches. Instead, use a pair of pipes.
12566 Derived from a suggestion by Florian Krohm.
12567 * lib/subpipe.c, lib/subpipe.h, m4/subpipe.m4: New files.
12568 * lib/mkstemp.c, lib/readpipe.c, lib/tempname.c, m4/mkstemp.m4: Remove.
12569 * configure.ac (UTILS_FUNC_MKSTEMP, jm_PREREQ_TEMPNAME): Remove.
12570 (BISON_PREREQ_SUBPIPE): Add.
12571 * lib/Makefile.am (libbison_a_SOURCES): Remove readpipe.c.
12572 Add subpipe.h, subpipe.c.
12573 * m4/Makefile.am (EXTRA_DIST): Remove mkstemp.m4. Add subpipe.m4.
12574 * po/POTFILES.in: Add lib/subpipe.c.
12575 * src/output.c: Include "subpipe.h".
12576 (m4_invoke): Remove decl.
12577 (scan_skel): New decl.
12578 (output_skeleton): Use pipe rather than temporary file for m4 input.
12579 Check that m4sugar.m4 is readable, to avoid deadlock.
12580 Check for pipe I/O error.
12581 * src/scan-skel.l (readpipe): Remove decl.
12582 (scan_skel): New function, to be used in place of m4_invoke.
12583 Read from stream rather than file.
12584
12585 * lib/timevar.c (TICKS_TO_MSEC, CLOCKS_TO_MSEC): Do not cast to
12586 float, as this generates a warning on Solaris 8 + GCC 3.2 with
12587 --enable-gcc-warnings. Instead, divide into 1.0 rather than 1;
12588 this generates a more-accurate value anyway.
12589
12590 * lib/timevar.c (timervar_accumulate): Rename locals to
12591 avoid confusion with similarly-named more-global.
12592 * src/muscle_tab.c (muscle_pair_list_grow): Likewise.
12593
12594 * src/output.c (prepare): Use xstrdup to convert char const *
12595 to char *, to avoid GCC warning.
12596
12597 2002-10-19 Akim Demaille <akim@epita.fr>
12598
12599 * tests/calc.at (_AT_DATA_CALC_Y): Define VAL, LOC, LEX_FORMALS,
12600 LEX_PRE_FORMALS, LEX_ARGS, LEX_PRE_ARGS, USE_LEX_ARGS.
12601 Use them to have `calc.y' ready for %pure-parser.
12602 * data/yacc.c (YYLEX): Pass a yylex return type to
12603 b4_c_function_call.
12604
12605 2002-10-19 Akim Demaille <akim@epita.fr>
12606
12607 Prototype support of %lex-param and %parse-param.
12608
12609 * src/parse-gram.y: Add the definition of the %lex-param and
12610 %parse-param tokens, plus their rules.
12611 Drop the `_' version of %glr-parser.
12612 Add the "," token.
12613 * src/scan-gram.l (INITIAL): Scan them.
12614 * src/muscle_tab.c: Comment changes.
12615 (muscle_insert, muscle_find): Rename `pair' as `probe'.
12616 * src/muscle_tab.h (MUSCLE_INSERT_PREFIX): Remove unused.
12617 (muscle_entry_s): The `value' member is no longer const.
12618 Adjust all dependencies.
12619 * src/muscle_tab.c (muscle_init): Adjust: use
12620 MUSCLE_INSERT_STRING.
12621 Initialize the obstack earlier.
12622 * src/muscle_tab.h, src/muscle_tab.c (muscle_grow)
12623 (muscle_pair_list_grow): New.
12624 * data/c.m4 (b4_c_function_call, b4_c_args): New.
12625 * data/yacc.c (YYLEX): Use b4_c_function_call to honor %lex-param.
12626 * tests/calc.at: Use %locations, not --locations.
12627 (AT_CHECK_CALC_GLR): Use %glr-parser, not %glr_parser.
12628
12629 2002-10-19 Akim Demaille <akim@epita.fr>
12630
12631 * src/getargs.c (usage): Take status as argument and exit
12632 accordingly.
12633 Report the traditional `Try ... --help' message when status != 0.
12634 (usage, version): Don't take a FILE * as arg, it is pointless.
12635 (getargs): When there is an incorrect number of arguments, make it
12636 an error, and report it GNUlically thanks to `usage ()'.
12637
12638 2002-10-18 Paul Eggert <eggert@twinsun.com>
12639
12640 * data/glr.c (yyreportParseError): Don't assume that sprintf
12641 yields the length of the printed string, as this is not true
12642 on SunOS 4.1.4. Reported by Peter Klein.
12643
12644 * tests/calc.at (_AT_DATA_CALC_Y): #undef memcmp and realloc.
12645 * tests/conflicts.at (%nonassoc and eof): Likewise.
12646 Fixes SunOS 4.1.4 test failure reported by Peter Klein.
12647
12648 2002-10-17 Akim Demaille <akim@epita.fr>
12649
12650 * src/getargs.h (trace_e): Add trace_scan, and trace_parse.
12651 * src/getargs.c (trace_types, trace_args): Adjust.
12652 * src/reader.c (grammar_current_rule_prec_set)
12653 (grammar_current_rule_dprec_set, grammar_current_rule_merge_set):
12654 Standardize error messages.
12655 And s/@prec/%prec/!
12656 (reader): Use trace_flag to enable scanner/parser debugging,
12657 instead of an adhoc scheme.
12658 * src/scan-gram.l: Remove trailing debugging code.
12659
12660 2002-10-16 Paul Eggert <eggert@twinsun.com>
12661
12662 * src/muscle_tab.h (MUSCLE_TAB_H_): Was misspelled as
12663 MUSCLE_TAB_H.
12664
12665 * NEWS: Officially drop support for building Bison with K&R C,
12666 since it didn't work anyway and it's not worth worrying about.
12667 * Makefile.maint (wget_files): Remove ansi2knr.c.
12668 (ansi2knr.c-url_prefix): Remove.
12669 * lib/.cvsignore: Remove ansi2knr, ansi2knr.*.
12670 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
12671 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
12672
12673 2002-10-15 Paul Eggert <eggert@twinsun.com>
12674
12675 Stop using the "enum_" trick for K&R-style function definitions;
12676 it confused me, and I was the author! Instead, assume that people
12677 who want to use K&R C compilers (when using these modules in GCC,
12678 perhaps?) will run ansi2knr.
12679
12680 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): Remove.
12681 All uses of "enum_" changed to "enum ".
12682 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
12683 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
12684
12685 * lib/abitset.c (abitset_and, abitset_and_cmp, abitset_and_or,
12686 abitset_and_or_cmp, abitset_andn, abitset_andn_cmp,
12687 abitset_andn_or, abitset_andn_or_cmp, abitset_bytes, abitset_copy,
12688 abitset_copy1, abitset_disjoint_p, abitset_empty_p,
12689 abitset_equal_p, abitset_init, abitset_list, abitset_list_reverse,
12690 abitset_not, abitset_ones, abitset_or, abitset_or_and,
12691 abitset_or_and_cmp, abitset_or_cmp, abitset_reset, abitset_set,
12692 abitset_size, abitset_small_list, abitset_subset_p, abitset_test,
12693 abitset_unused_clear, abitset_xor, abitset_xor_cmp, abitset_zero):
12694 Use function prototypes; this removes the need for declaring
12695 static functions simply to provide their prototypes.
12696 * lib/bitset.c (bitset_alloc, bitset_and_or_, bitset_and_or_cmp_,
12697 bitset_andn_or_, bitset_andn_or_cmp_, bitset_bytes, bitset_copy_,
12698 bitset_count_, bitset_create, bitset_dump, bitset_first,
12699 bitset_free, bitset_init, bitset_last, bitset_next,
12700 bitset_obstack_alloc, bitset_obstack_free, bitset_only_set_p,
12701 bitset_op4_cmp, bitset_or_and_, bitset_or_and_cmp_, bitset_prev,
12702 bitset_print, bitset_release_memory, bitset_toggle_,
12703 bitset_type_choose, bitset_type_get, bitset_type_name_get,
12704 debug_bitset): Likewise.
12705 * lib/bitset.h (bitset_set, bitset_reset, bitset_test): Likewise.
12706 * lib/bitset_stats.c (bitset_log_histogram_print,
12707 bitset_percent_histogram_print, bitset_stats_and,
12708 bitset_stats_and_cmp, bitset_stats_and_or,
12709 bitset_stats_and_or_cmp, bitset_stats_andn, bitset_stats_andn_cmp,
12710 bitset_stats_andn_or, bitset_stats_andn_or_cmp, bitset_stats_copy,
12711 bitset_stats_count, bitset_stats_disable, bitset_stats_disjoint_p,
12712 bitset_stats_dump, bitset_stats_empty_p, bitset_stats_enable,
12713 bitset_stats_equal_p, bitset_stats_free, bitset_stats_init,
12714 bitset_stats_list, bitset_stats_list_reverse, bitset_stats_not,
12715 bitset_stats_ones, bitset_stats_or, bitset_stats_or_and,
12716 bitset_stats_or_and_cmp, bitset_stats_or_cmp, bitset_stats_print,
12717 bitset_stats_print_1, bitset_stats_read, bitset_stats_reset,
12718 bitset_stats_set, bitset_stats_size, bitset_stats_subset_p,
12719 bitset_stats_test, bitset_stats_toggle, bitset_stats_type_get,
12720 bitset_stats_write, bitset_stats_xor, bitset_stats_xor_cmp,
12721 bitset_stats_zero): Likewise.
12722 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
12723 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
12724 bitsetv_dump, debug_bitsetv): Likewise.
12725 * lib/ebitset.c (ebitset_and, ebitset_and_cmp, ebitset_andn,
12726 ebitset_andn_cmp, ebitset_bytes, ebitset_copy, ebitset_copy_,
12727 ebitset_copy_cmp, ebitset_disjoint_p, ebitset_elt_add,
12728 ebitset_elt_alloc, ebitset_elt_calloc, ebitset_elt_find,
12729 ebitset_elt_free, ebitset_elt_last, ebitset_elt_remove,
12730 ebitset_elt_zero_p, ebitset_elts_grow, ebitset_empty_p,
12731 ebitset_equal_p, ebitset_free, ebitset_init, ebitset_list,
12732 ebitset_list_reverse, ebitset_not, ebitset_ones, ebitset_op3_cmp,
12733 ebitset_or, ebitset_or_cmp, ebitset_release_memory, ebitset_reset,
12734 ebitset_set, ebitset_size, ebitset_subset_p, ebitset_test,
12735 ebitset_weed, ebitset_xor, ebitset_xor_cmp, ebitset_zero):
12736 Likewise.
12737 * lib/lbitset.c (debug_lbitset, lbitset_and, lbitset_and_cmp,
12738 lbitset_andn, lbitset_andn_cmp, lbitset_bytes, lbitset_copy,
12739 lbitset_copy_cmp, lbitset_disjoint_p, lbitset_elt_alloc,
12740 lbitset_elt_calloc, lbitset_elt_find, lbitset_elt_free,
12741 lbitset_elt_link, lbitset_elt_unlink, lbitset_elt_zero_p,
12742 lbitset_empty_p, lbitset_equal_p, lbitset_free, lbitset_init,
12743 lbitset_list, lbitset_list_reverse, lbitset_not, lbitset_ones,
12744 lbitset_op3_cmp, lbitset_or, lbitset_or_cmp, lbitset_prune,
12745 lbitset_release_memory, lbitset_reset, lbitset_set, lbitset_size,
12746 lbitset_subset_p, lbitset_test, lbitset_weed, lbitset_xor,
12747 lbitset_xor_cmp, lbitset_zero): Likewise.
12748
12749 2002-10-14 Akim Demaille <akim@epita.fr>
12750
12751 Version 1.75.
12752
12753 2002-10-14 Akim Demaille <akim@epita.fr>
12754
12755 * tests/Makefile.am (maintainer-check-posix): New.
12756
12757 2002-10-14 Akim Demaille <akim@epita.fr>
12758
12759 * data/glr.c [YYDEBUG] (YYLEFTMOST_STATE): Initialize the yyloc
12760 member.
12761
12762 2002-10-14 Akim Demaille <akim@epita.fr>
12763
12764 * src/tables.c (table_ninf_remap): base -> tab.
12765 Reported by Matt Rosing.
12766
12767 2002-10-14 Paul Eggert <eggert@twinsun.com>
12768
12769 * tests/action.at, tests/calc.at, tests/conflicts.at,
12770 tests/cxx-type.at, tests/headers.at, tests/input.at,
12771 tests/regression.at, tests/synclines.at, tests/torture.at:
12772 Say "bison -o foo.c foo.y", not "bison foo.y -o foo.c",
12773 so that the tests still work even if POSIXLY_CORRECT is set.
12774 * doc/bison.texinfo (Rpcalc Compile, Invocation): Likewise.
12775
12776 * data/c.m4 (b4_int_type): Use yysigned_char instead of signed char,
12777 for portability to K&R hosts. Fix typo: signed char is guaranteed
12778 only to 127, not to 128.
12779 * data/glr.c (yysigned_char): New type.
12780 * data/yacc.c (yysigned_char): Likewise.
12781 * tests/regression.at (Web2c Actions): signed char -> yysigned_char.
12782
12783 2002-10-13 Paul Eggert <eggert@twinsun.com>
12784
12785 * data/yacc.c (yyparse): Rewrite to avoid "comparison is always
12786 true due to limited range of data type" warning from GCC.
12787
12788 * data/c.m4 (b4_token_defines): Protect against double-inclusion
12789 by wrapping enum yytokentype's definition inside #ifndef
12790 YYTOKENTYPE. This undoes a bug I introduced on 2002-10-12.
12791
12792 2002-10-13 Akim Demaille <akim@epita.fr>
12793
12794 * data/glr.c (yyglrShiftDefer, yyaddDeferredAction, yydoAction):
12795 Un yy- yyrhs to avoid the name clash with the global YYRHS.
12796
12797 2002-10-13 Akim Demaille <akim@epita.fr>
12798
12799 * Makefile.maint: Update from Autoconf 2.54.
12800 * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Remove, shipped with 2.54.
12801
12802 2002-10-13 Akim Demaille <akim@epita.fr>
12803
12804 * src/print.c (print_state): Separate the list of solved conflicts
12805 from the other items.
12806 * tests/conflicts.at (Resolved SR Conflicts): Adjust.
12807
12808 2002-10-13 Akim Demaille <akim@epita.fr>
12809
12810 Let nondeterministic skeletons be usable with deterministic
12811 tables.
12812
12813 With the patch, GAWK compiled by GCC without -O2 passes its test
12814 suite using a GLR parser driven by LALR tables. It fails with -O2
12815 because `struct stat' gives two different answers on my machine:
12816 88 (definition of an auto var) and later 96 (memset on this var).
12817 Hence the stack is badly corrumpted. The headers inclusion is to
12818 blame: if I move the awk.h inclusion before GLR's system header
12819 inclusion, the two struct stat have the same size.
12820
12821 * src/tables.c (pack_table): Always create conflict_table.
12822 (token_actions): Always create conflict_list.
12823 * data/glr.c (YYFLAG): Remove, unused.
12824
12825 2002-10-13 Akim Demaille <akim@epita.fr>
12826
12827 * configure.ac (AC_GNU_SOURCE): Use it instead of hand written code.
12828 (O0FLAGS): New.
12829 (VALGRIND, GXX): New.
12830 * tests/atlocal.in (CFLAGS): Use O0FLAGS.
12831 * tests/bison.in: Run $PREBISON a pre-command.
12832 * tests/Makefile.am (maintainer-check, maintainer-check-valgrind)
12833 (maintainer-check-g++): New.
12834 * Makefile.am (maintainer-check): New.
12835
12836 2002-10-13 Akim Demaille <akim@epita.fr>
12837
12838 * data/glr.c: Formatting changes.
12839 Tweak some trace messages to match yacc.c's.
12840
12841 2002-10-13 Akim Demaille <akim@epita.fr>
12842
12843 GLR parsers sometimes raise parse errors instead of performing the
12844 default reduction.
12845 Reported by Charles-Henry de Boysson.
12846
12847 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Don't
12848 check the length of the traces when %glr.
12849 (_AT_CHECK_CALC_ERROR): Also skip `^Stack' lines, coming from
12850 GLR's traces.
12851 (AT_CHECK_CALC_LALR, AT_CHECK_CALC_GLR): New.
12852 Test GLR parsers.
12853 * data/glr.c (YYLEFTMOST_STATE): Fix its value.
12854 (yyltype): Remove the yy prefix from the member names.
12855 (yytable): Complete its comment.
12856 (yygetLRActions): Map error action number from YYTABLE from
12857 YYTABLE_NINF to 0.
12858 (yyisErrorAction): No longer compare YYACTION to YYPACT_NINF
12859 (which was a bug: it should have been YYTABEL_NINF, and yet it was
12860 not satisfying as we could compare an YYACTION computed from
12861 YYDEFACT to YYTABLE_NINF although they are unrelated): 0 is the
12862 only value for error actions.
12863 (yyreportParseError): In verbose parse error messages, don't issue
12864 `error' in the list of expected tokens.
12865 * data/yacc.c (yyparse) <yybackup>: Rewrite the decoding of the
12866 next action to perform to match glr.c's decoding.
12867 (yytable): Complete its comment.
12868
12869 2002-10-13 Paul Eggert <eggert@twinsun.com>
12870
12871 Fix problem reported by Henrik Grubbstroem in
12872 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00098.html>:
12873 "nonterm: { $$ = 123; } { $$ = $1; };" was wrongly rejected,
12874 because the Bison parser reads the second action before reducing
12875 the first one.
12876 * src/scan-gram.l (rule_length): New static var.
12877 Use it to keep track of the rule length in the scanner, since
12878 we can't expect the parser to be in lock-step sync with the scanner.
12879 (handle_action_dollar, handle_action_at): Use this var.
12880 * tests/actions.at (Exotic Dollars): Test for the problem.
12881
12882 2002-10-12 Paul Eggert <eggert@twinsun.com>
12883
12884 * lib/timevar.c [! IN_GCC && HAVE_SYS_TIME_H]: Include <sys/time.h>.
12885 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): Check for <sys/time.h>.
12886 Include <sys/time.h> when checking for clock_t and struct tms.
12887 Use same include order as source.
12888 This is for the SunOS 4.1.4 porting bug reported by Peter Klein in
12889 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00016.html>.
12890
12891 * lib/timevar.c: Update copyright date and clarify comments.
12892 (get_time) [IN_GCC]: Keep the GCC version for reference.
12893
12894 * lib/timevar.c, lib/timevar.h, lib/timevar.def: Import
12895 GCC version as of today, then merge Bison's changes.
12896 Change "GCC" to "Bison" in copyright notice. timevar.def's
12897 author is Akim, so change that too.
12898
12899 * src/reader.c (grammar_current_rule_check):
12900 Don't worry about the default action if $$ is untyped.
12901 Prevents bogus warnings reported by Jim Gifford in
12902 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00015.html>.
12903
12904 * data/c.m4 (b4_token_enum): Do not define YYTOKENTYPE.
12905 * data/glr.c, data/lalr1.cc, data/yacc.c:
12906 Output token definitions before the first part of user declarations.
12907 Fixes compatibility problem reported by Jim Gifford for kbd in
12908 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00014.html>.
12909
12910 2002-10-11 Paul Eggert <eggert@twinsun.com>
12911
12912 * data/yacc.c (yyreport_parse_error): Remove, putting its body into...
12913 (yyparse): here. This undoes some of the 2002-07-25 change.
12914 Compatibility problem reported by Ralf S. Engelschall with
12915 OSSP cfg <http://www.ossp.org/pkg/lib/cfg/>.
12916
12917 2002-10-11 Akim Demaille <akim@epita.fr>
12918
12919 * tests/regression.at Characters Escapes): New.
12920 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Accept \' in strings and
12921 characters.
12922 Reported by Jan Nieuwenhuizen.
12923
12924 2002-10-11 Akim Demaille <akim@epita.fr>
12925
12926 * po/id.po: New.
12927
12928 2002-10-10 Paul Eggert <eggert@twinsun.com>
12929
12930 Portability fixes for bitsets; this also avoids several GCC
12931 warnings.
12932
12933 * lib/abitset.c: Include <stddef.h>, for offsetof.
12934 * lib/lbitset.c: Likewise.
12935
12936 * lib/abitset.c (abitset_bytes): Return a size that is aligned
12937 properly for vectors of objects. Do not assume that adding a
12938 header size to a multiple of a word size yields a value that is
12939 properly aligned for the whole union.
12940 * lib/bitsetv.c (bitsetv_alloc): Likewise.
12941
12942 * lib/bitset_stats.c (bitset_stats_bytes): Adjust to new,
12943 unique names for structures.
12944 * lib/ebitset.c (ebitset_bytes): Likewise.
12945 * lib/lbitset.c (lbitset_bytes): Likewise.
12946
12947 * lib/abitset.c (abitset_ones, abitset_zero, abitset_empty_p,
12948 abitset_copy1, abitset_not, abitset_equal_p, abitset_subset_p,
12949 abitset_disjoint_p, abitset_and, abitset_and_cmp, abitset_andn,
12950 abitset_andn_cmp, abitset_or, abitset_or_cmp, abitset_xor,
12951 abitset_xor_cmp, abitset_and_or, abitset_and_or_cmp,
12952 abitset_andn_or, abitset_andn_or_cmp, abitset_or_and,
12953 abitset_or_and_cmp, abitset_copy): Supply prototype decls,
12954 to improve the type-checking that GCC can do.
12955 * lib/bitset.c (bitset_op4_cmp): Likewise.
12956 * lib/bitset_stats.c (bitset_stats_count,
12957 bitset_stats_empty_p, bitset_stats_ones, bitset_stats_zero,
12958 bitset_stats_copy, bitset_stats_disjoint_p,
12959 bitset_stats_equal_p, bitset_stats_not, bitset_stats_subset_p,
12960 bitset_stats_and, bitset_stats_and_cmp, bitset_stats_andn,
12961 bitset_stats_andn_cmp, bitset_stats_or, bitset_stats_or_cmp,
12962 bitset_stats_xor, bitset_stats_xor_cmp, bitset_stats_and_or,
12963 bitset_stats_and_or_cmp, bitset_stats_andn_or,
12964 bitset_stats_andn_or_cmp, bitset_stats_or_and,
12965 bitset_stats_or_and_cmp): Likewise.
12966 * lib/lbitset.c (lbitset_and, lbitset_and_cmp, lbitset_andn,
12967 lbitset_andn_cmp, lbitset_or, lbitset_or_cmp, lbitset_xor,
12968 lbitset_xor_cmp, lbitset_empty_p, lbitset_ones, lbitset_not,
12969 lbitset_subset_p, lbitset_disjoint_p, debug_lbitset): Likewise.
12970
12971 * lib/abitset.h: Include bitset.h, not bbitset.h.
12972 * lib/ebitset.h: Likewise.
12973 * lib/lbitset.h: Likewise.
12974
12975 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): New types.
12976 All instances of parameters of type enum bitset_opts are now of
12977 type enum_bitset_opts, to conform to the C Standard, and similarly
12978 for enum_bitset_type.
12979 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
12980 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
12981
12982 Do not use "struct bitset_struct" to mean different things in
12983 different modules. Not only is this confusing, it violates
12984 the C Standard, which requires that structure types in different
12985 modules must be compatible if one is to be passed to the other.
12986 * lib/bbitset.h (bitset): Now points to a union, not to a struct.
12987 All instances of "struct bitset_struct *" replaced with "bitset".
12988 * lib/bitset.h (struct bitset_struct): Remove, replacing with....
12989 (union bitset_union, struct abitset_struct, struct ebitset_struct,
12990 struct lbitset_struct, struct bitset_stats_struct): New types.
12991 All uses of struct bitset_struct changed to union bitset_union,
12992 etc.
12993 * lib/abitset.c (struct abitset_struct, abitset,
12994 struct bitset_struct): Remove.
12995 * lib/bitset_stats.c (struct bitset_stats_struct, bitset_stats,
12996 struct bitset_struct): Remove.
12997 * lib/ebitset.c (struct ebitset_struct, ebitset, struct
12998 bitset_struct): Remove.
12999 * lib/lbitset.c (struct lbitset_struct, lbitset, bitset_struct):
13000 Likewise.
13001
13002 Do not call a function of type T using a call that assumes the
13003 function is of a different type U. Standard C requires that a
13004 function must be called with a type that is compatible with its
13005 definition.
13006 * lib/bbitset.h (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
13007 New decls.
13008 * lib/bitset.c (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
13009 New functions.
13010 * lib/ebitset.c (PFV): Remove.
13011 * lib/lbitset.c (PFV): Likewise.
13012 * lib/ebitset.c (ebitset_and, ebitset_andn, ebitset_or,
13013 ebitset_xor, ebitset_copy, ebitset_ones, ebitset_empty_p): New
13014 decls.
13015 (ebitset_and, ebitset_andn, ebitset_or, ebitset_xor): New functions.
13016 (ebitset_vtable): Use them.
13017 * lib/lbitset.c (lbitset_and, lbitset_andn, lbitset_or,
13018 lbitset_xor): New functions.
13019 (lbitset_vtable): Use them.
13020
13021 * lib/bitset.h (bitset_next, bitset_prev, bitset_only_set_p):
13022 Declare.
13023
13024 * lib/bitsetv.c (bitsetv_alloc): Add a cast to (void *) to avoid a
13025 GCC warning.
13026 * lib/lbitset.c (LBITSET_CURRENT1): Likewise.
13027 Use offsetof, for simplicity.
13028
13029 2002-10-06 Paul Eggert <eggert@twinsun.com>
13030
13031 * lib/bitset.h (bitset_reset): Do not assume that bitset_word is
13032 the same width as int. This reapplies a hunk of the 2002-08-12 patch
13033 <http://lists.gnu.org/archive/html/bison-patches/2002-08/msg00007.html>,
13034 which was inadvertently undone by the 2002-09-30 patch.
13035 * lib/lbitset.c (debug_lbitset): Do not assume that bitset_word is
13036 the same width as int.
13037
13038 2002-10-04 Paul Eggert <eggert@twinsun.com>
13039
13040 Version 1.50.
13041
13042 * configure.ac (AC_INIT), NEWS: Increment version number.
13043
13044 * doc/bison.texinfo: Minor spelling, grammar, and white space
13045 fixes.
13046 (Symbols): Mention that any negative value returned from yylex
13047 signifies end-of-input. Warn about negative chars. Mention
13048 the portable Standard C character set.
13049
13050 The GNU coding standard says CFLAGS and YFLAGS are reserved
13051 for the installer to set.
13052 * lib/Makefile.am (AM_CFLAGS): Renamed from CFLAGS.
13053 * src/Makefile.am (AM_CFLAGS): Likewise.
13054 (AM_YFLAGS): Renamed from YFLAGS.
13055
13056 Fix some MAX and MIN problems.
13057 * src/gram.h (ITEM_NUMBER_MIN): MIN_MAX -> INT_MIN.
13058 * src/lalr.h (GOTO_NUMBER_MAX): INT_MAX -> SHRT_MAX.
13059 * src/symtab.h (SYMBOL_NUMBER_MAX): New macro.
13060 * src/reader.c (reader): Use it.
13061
13062 * tests/regression.at (Braces parsing): Use grep, not fgrep, as
13063 POSIX 1003.1-2001 has removed fgrep.
13064
13065 2002-10-04 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
13066
13067 * lib/bbitset.h (BITSET_WINDEX_MAX): Redefine so that it cannot be
13068 interpreted as signed.
13069 * lib/ebitset.c (ebitset_list): Fix bug.
13070
13071 2002-10-01 Paul Eggert <eggert@twinsun.com>
13072
13073 More fixes for 64-bit hosts and large bitsets.
13074
13075 * lib/abitset.c (struct abitset_struct.n_bits, abitset_small_list,
13076 abitset_size, abitset_list, abitset_list_reverse, abitset_list):
13077 Use bitset_bindex, not int or unsigned int or size_t, to count bits.
13078 * lib/bbitset.h (struct bitset_vtable.size, struct bitset_vtable.count,
13079 struct bitset_vtable.list, struct bitset_vtable.list_reverse,
13080 bitset_count_, bitset_next, bitset_prev, bitset_first, bitset_last,
13081 bitset_count_): Likewise.
13082 * lib/bitset.h (bitset_iterator.num, bitset_iterator.i,
13083 bitset_first, bitset_last): Likewise.
13084 * lib/bitset_stats.c (bitset_stats_size, bitset_stats_list,
13085 bitset_stats_list_reverse, bitset_stats_size,
13086 bitset_stats_count, bitset_stats_list, bitset_stat_list_reverse):
13087 Likewise.
13088 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
13089 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
13090 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
13091 bitsetv_reflexive_transitive_closure): Likewise.
13092 * lib/bitsetv.h (bitsetv_alloc, bitsetv_create): Likewise.
13093 * lib/ebitset.c (ebitset_size, ebitset_list, ebitset_list_reverse):
13094 Likewise.
13095 * lib/lbitset.c (lbitset_size, lbitset_list, lbitset_list_merge):
13096 Likewise.
13097
13098 * lib/abitset.c (abitset_ones, abitset_zero, abitset_bytes):
13099 Use size_t, not unsigned int, to count bytes.
13100 * lib/abitset.h (abitset_bytes): Likewise.
13101 * lib/bitset.c (bitset_bytes, bitset_alloc, bitset_obstack_alloc):
13102 Likewise.
13103 * lib/bitset.h (bitset_bytes): Likewise.
13104 * lib/bitset_stats.c (bitset_stats_bytes, bitset_stats_init): Likewise.
13105 * lib/bitset_stats.h (bitset_stats_bytes): Likewise.
13106 * lib/bitsetv.c (bitsetv_alloc): Likewise.
13107 * lib/ebitset.c (ebitset_bytes): Likewise.
13108 * lib/ebitset.h (ebitset_bytes): Likewise.
13109 * lib/lbitset.c (lbitset_bytes): Likewise.
13110 * lib/lbitset.h (lbitset_bytes): Likewise.
13111
13112 * lib/abitset.c (abitset_empty_p, abitset_not, abitset_equal_p,
13113 abitset_subset_p, abitset_disjoint_p, abitset_and,
13114 abitset_and_cmp, abitset_andn, abitset_andn_cmp, abitset_or,
13115 abitset_or_cmp, abitset_xor, abitset_xor_cmp, abitset_and_or,
13116 abitset_and_or_cmp, abitset_andn_or, abitset_andn_or_cmp,
13117 abitset_or_and, abitset_or_and_cmp):
13118 Use bitset_windex instead of unsigned int.
13119 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
13120 * lib/ebitset.c (struct ebitset_struct.size, ebitset_elts_grow,
13121 ebitset_elt_add, ebitset_elt_remove, ebitset_weed,
13122 ebitset_elt_find, ebitset_list_reverse, ebitset_list, ebitset_init):
13123 Likewise.
13124 * lib/lbitset.c (lbitset_ones, lbitset_not): Likewise.
13125
13126 * lib/bitset.c (bitset_print):
13127 Use proper printf formats for widths of integer types.
13128 * lib/bitset_stats.c (bitset_percent_histogram_print,
13129 bitset_log_histogram_print, bitset_stats_print_1): Likewise.
13130 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
13131 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
13132 * lib/lbitset.c (lbitset_bytes): Likewise.
13133
13134 * lib/bbitset.h (BITSET_BINDEX_MAX, BITSET_WINDEX_MAX,
13135 BITSET_SIZE_MAX): New macros.
13136 (BITSET_INDEX_MAX): Remove. It wasn't right, since it assumed that
13137 sizeof (bitset_word) == sizeof (bitset_windex). All uses changed
13138 to BITSET_WINDEX_MAX.
13139
13140 * lib/bitset.c (bitset_next, bitset_prev, bitset_first,
13141 bitset_last): Return BITSET_BINDEX_MAX (not -1) for no value,
13142 since we now return the bitset_bindex type (not int).
13143
13144 * lib/bitsetv.c (bitsetv_alloc): Check for arithmetic overflow
13145 when computing sizes.
13146 * lib/ebitset.c (ebitset_elts_grow): Likewise.
13147
13148 * lib/lbitset.c (lbitset_elt_find): Simplify windex calculation
13149 and avoid cast to unsigned.
13150
13151 2002-09-30 Akim Demaille <akim@epita.fr>
13152
13153 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
13154 * lib/bitset_stats.c, lib/bitsetv.c, lib/ebitset.c, lib/lbitset.c:
13155 Updates from Michael Hayes.
13156
13157 2002-09-30 Art Haas <ahaas@neosoft.com>
13158
13159 * configure.ac: Update AC_OUTPUT and AM_CONFIG_HEADER
13160 invocations.
13161 * tests/cxx-type.at (declarator): Don't rely on NDEBUG being not
13162 defined.
13163
13164 2002-09-27 Akim Demaille <akim@epita.fr>
13165
13166 Version 1.49c.
13167
13168 2002-09-27 Akim Demaille <akim@epita.fr>
13169
13170 * configure.ac (AM_INIT_AUTOMAKE): We _need_ 1.7.
13171 (Because of AC_LIBSOURCE).
13172
13173 2002-09-27 Akim Demaille <akim@epita.fr>
13174
13175 Playing with Autoscan.
13176
13177 * configure.ac: Remove the old LIBOBJ tweaks.
13178 (AC_REPLACE_FUNCS): Add strrchr and strtol.
13179 * lib/strrchr.c: New.
13180 * lib/strtol.c: New, from the Coreutils 4.5.1.
13181
13182 2002-09-27 Akim Demaille <akim@epita.fr>
13183
13184 Playing with Autoscan.
13185
13186 * m4/prereq.m4 (jm_PREREQ_ARGMATCH, jm_FUNC_ARGMATCH): New.
13187 * lib/Makefile.am (libbison_a_SOURCES): No longer include
13188 argmatch.c and argmatch.h, since they are AC_LIBSOURCE'd.
13189 * lib/strcasecmp.c, lib/strncasecmp.c, lib/memcmp.c: New, from the
13190 Coreutils 4.5.1.
13191
13192 2002-09-24 Akim Demaille <akim@epita.fr>
13193
13194 * doc/bison.texinfo (Stack Overflow): xref to Recursion.
13195 (Frequently Asked Questions, Parser Stack Overflow): New.
13196
13197 2002-09-13 Akim Demaille <akim@epita.fr>
13198
13199 Playing with autoscan.
13200
13201 * src/reader.c (get_merge_function): Use xstrdup, not strdup.
13202 * src/files.c (skeleton_find): Remove, unused.
13203 * m4/memcmp.m4: New, from the Coreutils 4.5.1.
13204 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Run jm_FUNC_MEMCMP.
13205
13206 2002-09-13 Akim Demaille <akim@epita.fr>
13207
13208 * configure.ac (AM_INIT_AUTOMAKE): Require Automake 1.6.3.
13209 * Makefile.am (AUTOMAKE_OPTIONS): Don't.
13210
13211 2002-09-13 Akim Demaille <akim@epita.fr>
13212
13213 * configure.ac: Require 2.54.
13214 s/jm_FUNC_MALLOC/AC_FUNC_MALLOC/.
13215 s/jm_FUNC_REALLOC/AC_FUNC_REALLOC/.
13216 * m4/c-bs-a.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/realloc.m4:
13217 Remove, provided by Autoconf macros.
13218
13219 2002-09-12 Akim Demaille <akim@epita.fr>
13220
13221 * m4/prereq.m4: Update, from Coreutils 4.5.1.
13222
13223 2002-09-12 Akim Demaille <akim@epita.fr>
13224
13225 * m4/prereq.m4: Update, from Fileutils 4.1.5.
13226 * configure.ac (jm_PREREQ_TEMPNAME): Invoke it.
13227 Reported by Martin Mokrejs.
13228
13229 2002-09-10 Akim Demaille <akim@epita.fr>
13230
13231 * src/parse-gram.y: Associate a human readable string to each
13232 token type.
13233 * tests/regression.at (Invalid inputs): Adjust.
13234
13235 2002-09-10 Gary V. Vaughan <gary@gnu.org>
13236
13237 * tests/Makefile.am ($(srcdir)/package.m4): Bison now ships
13238 with an Autoconf-2.5x style configure.ac.
13239
13240 2002-09-06 Paul Eggert <eggert@twinsun.com>
13241
13242 * doc/bison.texinfo (Conditions): Make explicit that the GPL
13243 exception applies only to yacc.c. This is a modification of a
13244 patch originally suggested by Akim Demaille.
13245
13246 2002-09-06 Akim Demaille <akim@epita.fr>
13247
13248 * data/c.m4 (b4_copyright): Move the GPL exception comment from
13249 here to...
13250 * data/yacc.c: here.
13251
13252 * data/lalr1.cc (struct yyltype): Don't define it, since we use
13253 LocationType.
13254 (b4_ltype): Default to yy::Location from location.hh.
13255
13256 2002-09-04 Jim Meyering <jim@meyering.net>
13257
13258 * data/yacc.c: Guard the declaration of yytoknum also with
13259 `#ifdef YYPRINT', so it is declared only when used.
13260
13261 2002-09-04 Akim Demaille <akim@epita.fr>
13262
13263 * configure.in: Rename as...
13264 * configure.ac: this.
13265 Bump to 1.49c.
13266
13267 2002-09-04 Akim Demaille <akim@epita.fr>
13268
13269 * src/assoc.c, src/closure.c, src/gram.c, src/injections.c,
13270 * src/lalr.c, src/LR0.c, src/relation.c, src/tables.c: Don't
13271 translate maintainer only messages.
13272
13273 2002-08-12 Paul Eggert <eggert@twinsun.com>
13274
13275 Version 1.49b.
13276
13277 * Makefile.am (SUBDIRS): Remove intl.
13278 (DISTCLEANFILES): Remove.
13279 * NEWS: Mention that GNU M4 is now required. Clarify what is
13280 meant by "larger grammars". Mention the pt_BR translation.
13281 * configure.in (AC_CHECK_DECLS): Add getenv, getopt.
13282 (AM_GNU_GETTEXT_VERSION): New macro, replacing GETTEXT_VERSION var.
13283 Bump version from 0.11.2 to 0.11.5.
13284 (BISON_PREREQ_STAGE): Remove.
13285 (AM_GNU_GETTEXT): Use external gettext.
13286 (AC_OUTPUT): Remove intl/Makefile.
13287
13288 * config/depcomp, config/install-sh: Sync with Automake 1.6.3.
13289
13290 * data/glr.c: Include string.h, for strlen.
13291 (yyreportParseError): Use size_t for yysize.
13292 (yy_yypstack): No longer nested inside yypstates, as nested
13293 functions are not portable. Do not assume size_t is the
13294 same width as int.
13295 (yypstates): Do not assume that ptrdiff_t is the same width
13296 as int, and similarly for yyposn and YYINDEX.
13297
13298 * data/yacc.c: Fix comment about `$$ = $1': it can copy garbage.
13299
13300 * lib/Makefile.am (INCLUDES): Do not include from the intl
13301 directory, which has been removed.
13302 * src/Makefile.am (INCLUDES): Likewise.
13303
13304 * lib/Makefile.am (libbison_a_SOURCES): Add unlocked-io.h.
13305 (bitsets_sources, additional_bitsets_sources, timevars_sources):
13306 New vars.
13307
13308 * lib/Makefile.am (libbison_a_SOURCES): Avoid +=, a GNU make extension.
13309 * tests/Makefile.am (EXTRA_DIST): Likewise.
13310
13311 * lib/abitset.c (abitset_reverse_list, ebitset_reverse_list):
13312 Do not assume that bitset_windex is the same width as unsigned.
13313
13314 * lib/abitset.c (abitset_unused_clear): Do not assume that
13315 bitset_word is the same width as int.
13316 * lib/bbitset.h (BITSET_INDEX_MAX, BITSET_MSB): Likewise.
13317 * lib/bitset.h (bitset_set, bitset_reset): Likewise.
13318 * lib/bitset_stats.c (bitset_stats_set, bitset_stats_reset): Likewise.
13319 * lib/ebitset.c (ebitset_set, ebitset_reset): Likewise.
13320 * lib/lbitset.c (lbitset_set, lbitset_reset): Likewise.
13321
13322 * lib/abitset.c (abitset_op1): Use -1, not ~0, as memset arg (for
13323 portability to one's complement hosts!).
13324 * lib/ebitset.c (ebitset_op1): Likewise.
13325 * lib/lbitset.c (lbitset_op1): Likewise.
13326
13327 * lib/argmatch.c, lib/quotearg.c, quotearg.h: Sync with GNU tar.
13328 * lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
13329 lib/hash.c, lib/hash.h, lib/strnlen.c, lib/xmalloc.c:
13330 Sync with fileutils.
13331 * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
13332 lib/gettext.h: Sync with diffutils.
13333
13334 * lib/memrchr.c, lib/mkstemp.c, lib/strchr.c, lib/strnlen.c,
13335 lib/strspn.c, lib/tempname.c: Use GPL, not LGPL.
13336
13337 * lib/obstack.c, lib/obstack.h: Sync with fileutils, except use
13338 PROTOTYPES to check for prototypes, and "defined __STDC__" to
13339 check for void *.
13340
13341 * lib/bbitset.h (BITSET_WORD_BITS): Now of type unsigned, not
13342 size_t; the old version tried to do this but casted improperly.
13343 (bitset_bindex, bitset_windex): Now size_t, not unsigned long.
13344 (bitset_test): Now returns int, not unsigned long.
13345
13346 * lib/bitset_stats.c: Include "gettext.h".
13347 (_): New macro.
13348 (bitset_stats_set, bitset_stats_reset, bitset_stats_test): Don't
13349 name locals "index", as it generates unnecessary warnings on some
13350 hosts that have an "index" function.
13351
13352 * lib/bitset_stats.c (bitset_stats_print_1, bitset_stats_print,
13353 bitset_stats_read, bitset_stats_write): Wrap strings in _() if
13354 they need translation.
13355 * src/LR0.c (state_list_append, new_itemsets, get_state,
13356 append_states, generate_states): Likewise.
13357 * src/assoc.c (assoc_to_string): Likewise.
13358 * src/closure.c (print_closure, set_firsts, closure): Likewise.
13359 * src/gram.c (grammar_dump): Likewise.
13360 * src/injections.c (injections_compute): Likewise.
13361 * src/lalr.c (lookaheads_print): Likewise.
13362 * src/relation.c (relation_transpose): Likewise.
13363 * src/scan-gram.l: Likewise.
13364 * src/tables.c (table_grow, pack_vector): Likewise.
13365
13366 * m4/Makefile.am (EXTRA_DIST): Remove codeset.m4,
13367 glibc21.m4, isc-posix.m4 lcmessage.m4, stage.m4.
13368 * m4/malloc.m4, m4/realloc.m4: Sync with diffutils.
13369 * m4/mbstate_t.m4: Sync with fileutils.
13370 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): AC_MBSTATE_T -> AC_TYPE_MBSTATE_T.
13371
13372 * po/LINGUAS: Add pt_BR.
13373 * po/POTFILES.in: Add src/assoc.c, src/closure.c, src/gram.c,
13374 src/main.c, src/relation.c, src/state.c, lib/bitset_stats.c,
13375 lib/timevar.c.
13376 Use src/parse-gram.y instead of src/parse-gram.c, as the gettext
13377 manual recommends.
13378 Similarly, use src/scan-gram.l instead of src/scan-gram.c.
13379
13380 * src/complain.c (strerror_r): Remove decl; not needed.
13381 (strerror): Use same pattern as ../lib/error.c.
13382
13383 * src/files.c, src/files.h (compute_header_macro): Remove; unused.
13384
13385 * src/gram.c (grammar_dump): Do not assume ptrdiff_t fits in int.
13386
13387 * src/main.c (main): Cast result of bindtextdomain and textdomain
13388 to void, to avoid a GCC warning when --disable-nls is in effect.
13389
13390 * src/scan-gram.l: Use strings rather than escapes when possible,
13391 to minimize the number of warnings from xgettext.
13392 (handle_action_dollar, handle_action_at): Don't use isdigit,
13393 as it mishandles negative chars and it may not work as expected
13394 outside the C locale.
13395
13396 * src/symtab.c (symbol_get): Don't cast LHS of an assignment;
13397 this is a GCC extension and is not portable to other compilers.
13398
13399 * src/system.h (alloca): Use same pattern as ../lib/error.c.
13400 Do not include <ctype.h>; no longer needed.
13401 Do not include <malloc.h>; no longer needed (and generates
13402 warnings on OpenBSD 3.0).
13403
13404 * tests/cxx-type.at (yylex): Do not pass signed char to isupper;
13405 it's not portable.
13406
13407 * tests/regression.at: Do not use 'cc -c input.c -o input';
13408 Sun C rejects this. Instead, use 'cc -c input.c -o input.o'.
13409
13410 * tests/synclines.at (AC_SYNCLINES_COMPILE): Accept any nonzero
13411 exit status as failure, not just exit status 1. Sun C exits
13412 with status 2 sometimes.
13413
13414 * tests/torture.at (AT_INCREASE_DATA_SIZE): New macro.
13415 Use it for the two large tests.
13416
13417 2002-08-02 Akim Demaille <akim@epita.fr>
13418
13419 * src/conflicts.c (conflicts_output): Don't output rules never
13420 reduced here, since anyway that computation doesn't work.
13421 * src/gram.h, src/gram.h (rule_filter_t, rule_useful_p)
13422 (rule_useless_p, rule_never_reduced_p): New.
13423 (grammar_rules_partial_print): Use a filter instead of a range.
13424 Display the title only if needed.
13425 (grammar_rules_print): Adjust.
13426 (grammar_rules_never_reduced_report): New.
13427 * src/tables.c (action_row): Move the computation of rules never
13428 reduced to...
13429 (token_actions): here.
13430 * src/main.c (main): Make the parser before making the report, so
13431 that rules never reduced are computed.
13432 Call grammar_rules_never_reduced_report.
13433 * src/print.c (print_results): Report rules never reduced.
13434 * tests/conflicts.at, tests/reduce.at: Adjust.
13435
13436 2002-08-01 Akim Demaille <akim@epita.fr>
13437
13438 Instead of attaching lookaheads and duplicating the rules being
13439 reduced by a state, attach the lookaheads to the reductions.
13440
13441 * src/state.h (state_t): Remove the `lookaheads',
13442 `lookaheads_rule' member.
13443 (reductions_t): Add a `lookaheads' member.
13444 Use a regular array for the `rules'.
13445 * src/state.c (reductions_new): Initialize the lookaheads member
13446 to 0.
13447 (state_rule_lookaheads_print): Adjust.
13448 * src/state.h, src/state.c (state_reductions_find): New.
13449 * src/conflicts.c (resolve_sr_conflict, set_conflicts)
13450 (count_rr_conflicts): Adjust.
13451 * src/lalr.c (LArule): Remove.
13452 (add_lookback_edge): Adjust.
13453 (state_lookaheads_count): New.
13454 (states_lookaheads_initialize): Merge into...
13455 (initialize_LA): this.
13456 (lalr_free): Adjust.
13457 * src/main.c (main): Don't free nullable and derives too early: it
13458 is used by --verbose.
13459 * src/print.c, src/print_graph.c, src/tables.c: Adjust.
13460
13461 2002-08-01 Akim Demaille <akim@epita.fr>
13462
13463 * src/derives.h, src/derives.c (derives): A `rule_t***' instead of
13464 `rule_number_t**'.
13465 (set_derives, free_derives): Rename as...
13466 (derives_compute, derives_free): this.
13467 Adjust all dependencies.
13468 * src/nullable.c (set_nullable, free_nullable): Rename as...
13469 (nullable_compute, nullable_free): these.
13470 (rule_list_t): Store rule_t *, not rule_number_t.
13471 * src/state.c (state_rule_lookaheads_print): Directly compare rule
13472 pointers, instead of their numbers.
13473 * src/main.c (main): Call nullable_free, and derives_free earlier,
13474 as they were lo longer used.
13475
13476 2002-08-01 Akim Demaille <akim@epita.fr>
13477
13478 * lib/timevar.c (get_time): Include children time.
13479 * src/lalr.h (LA, LArule): Don't export them: used with the
13480 state_t.
13481 * src/lalr.c (LA, LArule): Static.
13482 * src/lalr.h, src/lalr.c (lalr_free): New.
13483 * src/main.c (main): Call it.
13484 * src/tables.c (pack_vector): Check whether loc is >= to the
13485 table_size, not >.
13486 (pack_tables): Don't free froms, tos, conflict_tos, and pos...
13487 (tables_generate): do it, since that's also it which allocates
13488 them.
13489 Don't free LA and LArule, main does.
13490
13491 2002-07-31 Akim Demaille <akim@epita.fr>
13492
13493 Separate parser tables computation and output.
13494
13495 * src/output.c (nvectors, base_t, base, base_ninf, conflict_table)
13496 (conflict_list, conflict_list_cnt, table, check, table_ninf)
13497 (yydefgoto, yydefact, high): Move to...
13498 * src/tables.h, src/tables.c: here.
13499 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
13500 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
13501 (symbol_number_to_vector_number, nvectors, BASE_MAX, BASE_MIN)
13502 (froms, tos, conflict_tos, tally, width, action_t, ACTION_MAX)
13503 (ACTION_MIN, actrow, order, nentries, pos, conflrow)
13504 (conflict_list_free, table_size, lowzero, table_grow, conflict_row)
13505 (action_row, save_row, token_actions, save_column, default_goto)
13506 (goto_actions, sort_actions, matching_state, pack_vector)
13507 (table_ninf_remap, pack_table, prepare_actions): Move to...
13508 * src/tables.c: here.
13509 * src/tables.h, src/tables.c(tables_generate, tables_free): New.
13510 * src/output.c (token_actions, output_base, output_conflicts)
13511 (output_check): Merge into...
13512 (prepare_actions): this.
13513 (actions_output): Rename as...
13514 (user_actions_output): this.
13515 * src/main.c (main): Call tables_generate and tables_free.
13516
13517 2002-07-31 Akim Demaille <akim@epita.fr>
13518
13519 Steal GCC's --time-report support.
13520
13521 * lib/timevar.c, lib/timevar.h, lib/timevar.def: New,
13522 stolen/adjusted from GCC.
13523 * m4/stage.m4: Remove time related checks.
13524 * m4/timevar.m4: New.
13525 * configure.in: Adjust.
13526 * src/system.h: Adjust to using timevar.h.
13527 * src/getargs.h, src/getargs.c: Support trace_time for
13528 --trace=time.
13529 * src/main.c (stage): Remove.
13530 (main): Replace `stage' invocations with timevar calls.
13531 * src/output.c: Insert pertinent timevar calls.
13532
13533 2002-07-31 Akim Demaille <akim@epita.fr>
13534
13535 Let --trace have arguments.
13536
13537 * src/getargs.h (enum trace_e): New.
13538 * src/getargs.c (trace_args, trace_types, trace_argmatch): New.
13539 (long_options, short_options): --trace/-T takes an optional
13540 argument.
13541 Change all the uses of trace_flag to reflect the new flags.
13542 * tests/sets.at (Firsts, Nullable, Broken Closure): Use --trace=sets.
13543
13544 Strengthen `stage' portability.
13545
13546 * m4/stage.m4 (BISON_PREREQ_STAGE): New.
13547 * configure.in: Use it.
13548 Don't check for malloc.h and sys/times.h.
13549 * src/system.h: Include them when appropriate.
13550 * src/main.c (stage): Compile only when mallinfo, struct mallinfo,
13551 times and struct tms are available.
13552
13553 2002-07-30 Akim Demaille <akim@epita.fr>
13554
13555 In verbose parse error message, don't report `error' as an
13556 expected token.
13557 * tests/actions.at (Printers and Destructors): Adjust.
13558 * tests/calc.at (Calculator $1): Adjust.
13559 * data/yacc.c, data/glr.c, data/lalr1.c: When making the verbose
13560 error message, do not report the parser accepts the error token in
13561 that state.
13562
13563 2002-07-30 Akim Demaille <akim@epita.fr>
13564
13565 Normalize conflict related messages.
13566
13567 * src/complain.h, src/complain.c (warn, complain): New.
13568 * src/conflicts.c (conflicts_print): Use them.
13569 (conflict_report_yacc): New, extracted from...
13570 (conflicts_print): here.
13571 * tests/conflicts.at, tests/existing.at: Adjust.
13572
13573 2002-07-30 Akim Demaille <akim@epita.fr>
13574
13575 Report rules which are never reduced by the parser: those hidden
13576 by conflicts.
13577
13578 * src/LR0.c (save_reductions): Don't make the final state too
13579 different: save its reduction (accept) instead of having a state
13580 without any action (no shift or goto, no reduce).
13581 Note: the final state is now a ``regular'' state, i.e., the
13582 parsers now contain `reduce 0' as default reduction.
13583 Nevertheless, since they decide to `accept' when yystate =
13584 final_state, they still will not reduce rule 0.
13585 * src/print.c (print_actions, print_reduction): Adjust.
13586 * src/output.c (action_row): Track reduced rules.
13587 (token_actions): Report rules never reduced.
13588 * tests/conflicts.at, tests/regression.at: Adjust.
13589
13590 2002-07-30 Akim Demaille <akim@epita.fr>
13591
13592 `stage' was accidently included in a previous patch.
13593 Initiate its autoconfiscation.
13594
13595 * configure.in: Look for malloc.h and sys/times.h.
13596 * src/main.c (stage): Adjust.
13597 Report only when trace_flag.
13598
13599 2002-07-29 Akim Demaille <akim@epita.fr>
13600
13601 * src/state.h, src/state.c (transitions_t): Holds state_t*'s, not
13602 state_number_t.
13603 (errs_t): symbol_t*, not symbol_number_t.
13604 (reductions_t): rule_t*, not rule_number_t.
13605 (FOR_EACH_SHIFT): New.
13606 * src/LR0.c, src/conflicts.c, src/lalr.c, src/output.c
13607 * src/print.c, src/print_graph.c: Adjust.
13608
13609 2002-07-29 Akim Demaille <akim@epita.fr>
13610
13611 Use $accept and $end, as BYacc and BTYacc do, instead of $axiom and $.
13612
13613 * src/symtab.h, src/symtab.c (eoftoken, axiom): Rename as...
13614 (endtoken, accept): these.
13615 * src/reader.c (reader): Set endtoken's default tag to "$end".
13616 Set undeftoken's tag to "$undefined" instead of "$undefined.".
13617 * doc/bison.texinfo (Table of Symbols): Mention $accept and $end.
13618 Adjust.
13619
13620 2002-07-29 Akim Demaille <akim@epita.fr>
13621
13622 * src/reduce.c (reduce_grammar): When the language is empty,
13623 complain about the start symbol, not the axiom.
13624 Use its location.
13625 * tests/reduce.at (Empty Language): New.
13626
13627 2002-07-26 Akim Demaille <akim@epita.fr>
13628
13629 * src/reader.h, src/reader.c (gram_error): ... can't get
13630 yycontrol without making too strong assumptions on the parser
13631 itself.
13632 * src/output.c (prepare_tokens): Use the real 0th value of
13633 token_translations instead of `0'.
13634 * src/parse-gram.y (yyerror): Don't rely on yycontrol being
13635 visible here.
13636 * data/yacc.c (yyreport_parse_error): Rename yylocation as yylloc
13637 for the time being: %locations ought to provide it to yyerror.
13638
13639 2002-07-25 Akim Demaille <akim@epita.fr>
13640
13641 * src/output.c (prepare_tokens): Go up to ntokens, not ntokens + 1.
13642 * doc/bison.texinfo (Decl Summary): s/$illegal/$undefined./.
13643 * tests/regression.at (Web2c Actions): Adjust.
13644
13645 2002-07-25 Akim Demaille <akim@epita.fr>
13646
13647 Stop storing rules from 1 to nrules + 1.
13648
13649 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c, src/lalr.c
13650 * src/nullable.c, src/output.c, src/print.c, src/reader.c
13651 * src/reduce.c: Allocate and free from &rules[0], not &rules[1].
13652 Iterate from 0 to nrules.
13653 Use rule_number_as_item_number and item_number_as_rule_number.
13654 Adjust to `derive' now containing possibly 0.
13655 * src/gram.h (rule_number_as_item_number, item_number_as_rule_number):
13656 Handle the `- 1' part in rule numbers from/to item numbers.
13657 * src/conflicts.c (log_resolution): Fix the message which reversed
13658 shift and reduce.
13659 * src/output.c (action_row): Initialize default_rule to -1.
13660 (token_actions): Adjust.
13661 * tests/sets.at (Nullable, Firsts): Fix the previously bogus
13662 expected output.
13663 * tests/conflicts.at (Resolved SR Conflicts): Likewise.
13664
13665 2002-07-25 Akim Demaille <akim@epita.fr>
13666
13667 * data/c.m4 (b4_c_function, b4_c_ansi_args, b4_c_ansi_arg)
13668 (b4_c_knr_arg_names, b4_c_knr_arg_name, b4_c_knr_arg_decls)
13669 (b4_c_knr_arg_decl): New.
13670 * data/yacc.c: Use it to define yysymprint, yydestruct, and
13671 yyreport_parse_error.
13672
13673 2002-07-25 Akim Demaille <akim@epita.fr>
13674
13675 * data/yacc.c (yyreport_parse_error): New, extracted from...
13676 (yyparse): here.
13677 (yydestruct, yysymprint): Move above yyparse.
13678 Be K&R compliant.
13679
13680 2002-07-25 Akim Demaille <akim@epita.fr>
13681
13682 * data/c.m4 (b4_ints_in, b4_int_type, b4_int_type_for): New,
13683 replace...
13684 (b4_sint_type, b4_uint_type): these.
13685 * data/yacc.c, data/glr.c, data/lalr1.cc: Use b4_int_type_for.
13686 * tests/regression.at (Web2c Actions): Adjust.
13687
13688 2002-07-25 Akim Demaille <akim@epita.fr>
13689
13690 * src/gram.h (TIEM_NUMBER_MAX): New.
13691 (item_number_of_rule_number, rule_number_of_item_number): Rename
13692 as...
13693 (rule_number_as_item_number, item_number_as_rule_number): these.
13694 Adjust dependencies.
13695 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
13696 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
13697 (symbol_number_to_vector_number): New.
13698 (order): Of vector_number_t* type.
13699 (base_t, BASE_MAX, BASE_MIN): New.
13700 (froms, tos, width, pos, check): Of base_t type.
13701 (action_number_t, ACTION_MIN, ACTION_MAX): New.
13702 (actrow): Of action_number_t type.
13703 (conflrow): Of unsigned int type.
13704 (table_ninf, base_ninf): New.
13705 (GENERATE_MUSCLE_INSERT_TABLE): Also output the `*_min' value.
13706 (muscle_insert_int_table, muscle_insert_base_table)
13707 (muscle_insert_rule_number_table): New.
13708 (prepare_tokens): Output `toknum' as int_table.
13709 (action_row): Returns a rule_number_t.
13710 Use ACTION_MIN, not SHRT_MIN.
13711 (token_actions): yydefact is rule_number_t*.
13712 (table_ninf_remap): New.
13713 (pack_table): Use it for `base' and `table'.
13714 * data/yacc.c, data/glr.c, data/lalr1.cc (YYFLAG): Remove,
13715 replaced with...
13716 (YYPACT_NINF, YYTABLE_NINF): these.
13717 (yypact, yytable): Compute their types instead of hard-coded
13718 `short'.
13719 * tests/regression.at (Web2c Actions): Adjust.
13720
13721 2002-07-19 Akim Demaille <akim@epita.fr>
13722
13723 * src/scan-gram.l (id): Can start with an underscore.
13724
13725 2002-07-16 Akim Demaille <akim@epita.fr>
13726
13727 * src/assoc.c, src/asssoc.h (assoc_t, assoc_to_string): New.
13728 Adjust all former `associativity' dependencies.
13729 * src/symtab.c (symbol_new): Default associativity is `undef', not
13730 `right'.
13731 (symbol_check_alias_consistence): Adjust.
13732
13733 2002-07-09 Akim Demaille <akim@epita.fr>
13734
13735 * doc/bison.texinfo: Properly set the ``header'' part.
13736 Use @dircategory ``GNU programming tools'' as per Texinfo's
13737 documentation.
13738 Use @copying.
13739
13740 2002-07-09 Akim Demaille <akim@epita.fr>
13741
13742 * lib/quotearg.h: Protect against multiple inclusions.
13743 * src/location.h (location_t): Add a `file' member.
13744 (LOCATION_RESET, LOCATION_PRINT): Adjust.
13745 * src/complain.c (warn_at, complain_at, fatal_at): Drop
13746 `error_one_per_line' support.
13747
13748 2002-07-09 Akim Demaille <akim@epita.fr>
13749
13750 * src/complain.h, src/complain.c (warn, complain): Remove, unused.
13751 * src/reader.c (lineno): Remove.
13752 Adjust all dependencies.
13753 (get_merge_function): Take a location and use complain_at.
13754 * src/symtab.h, src/symtab.c (symbol_make_alias): Likewise.
13755 * tests/regression.at (Invalid inputs, Mixing %token styles):
13756 Adjust.
13757
13758 2002-07-09 Akim Demaille <akim@epita.fr>
13759
13760 * src/parse-gram.y (rules_or_grammar_declaration): Add an error
13761 recovery rule, and forbid extensions when --yacc.
13762 (gram_error): Use complain_at.
13763 * src/reader.c (reader): Exit if there were parse errors.
13764
13765 2002-07-09 Akim Demaille <akim@epita.fr>
13766
13767 * tests/synclines.at (AT_SYNCLINES_COMPILE): New.
13768 (AT_TEST_SYNCLINE): Adjust to unusual GCC outputs.
13769 Reported by R Blake <blakers@mac.com>.
13770
13771 2002-07-09 Akim Demaille <akim@epita.fr>
13772
13773 * data/yacc.c: Output the copyright notive in the header.
13774
13775 2002-07-03 Akim Demaille <akim@epita.fr>
13776
13777 * src/output.c (froms, tos): Are state_number_t.
13778 (save_column): sp, sp1, and sp2 are state_number_t.
13779 (prepare): Rename `final' as `final_state_number', `nnts' as
13780 `nterms_number', `nrules' as `rules_number', `nstates' as
13781 `states_number', and `ntokens' as `tokens_number'. Remove `nsym',
13782 unused.
13783 * data/yacc.c, data/glr.c, data/lalr1.cc: Adjust.
13784 * data/lalr1.cc (nsym_): Remove, unused.
13785
13786 2002-07-03 Akim Demaille <akim@epita.fr>
13787
13788 * src/lalr.h, src/lalr.c (goto_number_t): New.
13789 * src/lalr.c (goto_list_t): New.
13790 Propagate them.
13791 * src/nullable.c (rule_list_t): New.
13792 Propagate.
13793 * src/types.h: Remove.
13794
13795 2002-07-03 Akim Demaille <akim@epita.fr>
13796
13797 * src/closure.c (print_fderives): Use rule_rhs_print.
13798 * src/derives.c (print_derives): Use rule_rhs_print.
13799 (rule_list_t): New, replaces `shorts'.
13800 (set_derives): Add comments.
13801 * tests/sets.at (Nullable, Firsts): Adjust.
13802
13803 2002-07-03 Akim Demaille <akim@epita.fr>
13804
13805 * src/output.c (prepare_actions): Free `tally' and `width'.
13806 (prepare_actions): Allocate and free `order'.
13807 * src/symtab.c (symbols_free): Free `symbols'.
13808 * src/scan-gram.l (scanner_free): Clear Flex's scanners memory.
13809 * src/output.c (m4_invoke): Move to...
13810 * src/scan-skel.l: here.
13811 (<<EOF>>): Close yyout, and free its name.
13812
13813 2002-07-03 Akim Demaille <akim@epita.fr>
13814
13815 Fix some memory leaks, and fix a bug: state 0 was examined twice.
13816
13817 * src/LR0.c (new_state): Merge into...
13818 (state_list_append): this.
13819 (new_states): Merge into...
13820 (generate_states): here.
13821 (set_states): Don't ensure a proper `errs' state member here, do it...
13822 * src/conflicts.c (conflicts_solve): here.
13823 * src/state.h, src/state.c: Comment changes.
13824 (state_t): Rename member `shifts' as `transitions'.
13825 Adjust all dependencies.
13826 (errs_new): For consistency, also take the values as argument.
13827 (errs_dup): Remove.
13828 (state_errs_set): New.
13829 (state_reductions_set, state_transitions_set): Assert that no
13830 previous value was assigned.
13831 (state_free): New.
13832 (states_free): Use it.
13833 * src/conflicts.c (resolve_sr_conflict): Don't use an `errs_t' as
13834 temporary storage: use `errs' and `nerrs' as elsewhere.
13835 (set_conflicts): Allocate and free this `errs'.
13836
13837 2002-07-02 Akim Demaille <akim@epita.fr>
13838
13839 * lib/libiberty.h: New.
13840 * lib: Update the bitset implementation from upstream.
13841 * src/closure.c, src/lalr.c, src/output.c, src/print_graph.c,
13842 * src/state.c: Use BITSET_FOR_EACH, not BITSET_EXECUTE.
13843 * src/main.c: Adjust bitset stats calls.
13844
13845 2002-07-01 Paul Eggert <eggert@twinsun.com>
13846
13847 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>): Convert to unsigned
13848 char, so that negative chars don't collide with $.
13849
13850 2002-06-30 Akim Demaille <akim@epita.fr>
13851
13852 Have the GLR tests be `warning' checked, and fix the warnings.
13853
13854 * data/glr.c (YYFPRINTF): Always define it, not only when YYDEBUG
13855 (yyuserAction, yyreportAmbiguity): `Use' all the arguments.
13856 (yyremoveDeletes): `yyi' and `yyj' are size_t.
13857 Use YYFPRINTF when under if (YYDEBUG) to avoid empty `if' bodies.
13858 (yyaddDeferredAction): static.
13859 (yyglrReduce): yyi, yyk, amd yyposn are size_t.
13860 (yyreportParseError): yyprefix is const.
13861 yytokenp is used only when verbose.
13862 (yy__GNUC__): Replace with __GNUC__.
13863 (yypdumpstack): yyi is size_t.
13864 (yypreference): Un-yy local variables and arguments, to avoid
13865 clashes with `yyr1'. Anyway, we are not in the user name space.
13866 (yytname_size): be an int, as is compared with ints.
13867 * tests/testsuite.at (AT_COMPILE, AT_PARSER_CHECK): New.
13868 Use them.
13869 * tests/cxx-gram.at: Use quotation to protect $1.
13870 Use AT_COMPILE to enable warnings hunts.
13871 Prototype yylex and yyerror.
13872 `Use' argc.
13873 Include `string.h', not `strings.h'.
13874 Produce and prototype stmtMerge only when used.
13875 yylex takes a location.
13876
13877 2002-06-30 Akim Demaille <akim@epita.fr>
13878
13879 We spend a lot of time in quotearg, in particular when --verbose.
13880
13881 * src/symtab.c (symbol_get): Store a quoted version of the key.
13882 (symbol_tag_get, symbol_tag_get_n, symbol_tag_print): Remove.
13883 Adjust all callers.
13884
13885 2002-06-30 Akim Demaille <akim@epita.fr>
13886
13887 * src/state.h (reductions_t): Rename member `nreds' as num.
13888 (errs_t): Rename members `nerrs' and `errs' as `num' and `symbols'.
13889 * src/state.c (ERRS_ALLOC, REDUCTIONS_ALLOC): Use the correct types.
13890
13891 2002-06-30 Akim Demaille <akim@epita.fr>
13892
13893 * src/state.h, src/state.c (shift_t, SHIFT_SYMBOL, SHIFT_IS_SHIFT)
13894 (SHIFT_IS_GOTO, SHIFT_IS_ERROR, SHIFT_DISABLE, SHIFT_IS_DISABLED)
13895 (shifts_to): Rename as...
13896 (transition_t, TRANSITION_SYMBOL, TRANSITION_IS_TRANSITION)
13897 (TRANSITION_IS_GOTO, TRANSITION_IS_ERROR, TRANSITION_DISABLE)
13898 (TRANSITION_IS_DISABLED, transitions_to): these.
13899
13900 2002-06-30 Akim Demaille <akim@epita.fr>
13901
13902 * src/print.c (print_shifts, print_gotos): Merge into...
13903 (print_transitions): this.
13904 (print_transitions, print_errs, print_reductions): Align the
13905 lookaheads columns.
13906 (print_core, print_transitions, print_errs, print_state,
13907 print_grammar): Output empty lines separator before, not after.
13908 (state_default_rule_compute): Rename as...
13909 (state_default_rule): this.
13910 * tests/conflicts.at (Defaulted Conflicted Reduction),
13911 (Unresolved SR Conflicts, Resolved SR Conflicts): Adjust.
13912 * tests/regression.at (Rule Line Numbers, Web2c Report): Adjust.
13913
13914 2002-06-30 Akim Demaille <akim@epita.fr>
13915
13916 Display items as we display rules.
13917
13918 * src/gram.h, src/gram.c (rule_lhs_print): New.
13919 * src/gram.c (grammar_rules_partial_print): Use it.
13920 * src/print.c (print_core): Likewise.
13921 * tests/conflicts.at (Defaulted Conflicted Reduction),
13922 (Unresolved SR Conflicts): Adjust.
13923 (Unresolved SR Conflicts): Adjust and rename as...
13924 (Resolved SR Conflicts): this, as was meant.
13925 * tests/regression.at (Web2c Report): Adjust.
13926
13927 2002-06-30 Akim Demaille <akim@epita.fr>
13928
13929 * src/print.c (state_default_rule_compute): New, extracted from...
13930 (print_reductions): here.
13931 Pessimize, but clarify the code.
13932 * tests/conflicts.at (Defaulted Conflicted Reduction): New.
13933
13934 2002-06-30 Akim Demaille <akim@epita.fr>
13935
13936 * src/output.c (action_row): Let default_rule be always a rule
13937 number.
13938
13939 2002-06-30 Akim Demaille <akim@epita.fr>
13940
13941 * src/closure.c (print_firsts, print_fderives, closure):
13942 Use BITSET_EXECUTE.
13943 * src/lalr.c (lookaheads_print): Likewise.
13944 * src/state.c (state_rule_lookaheads_print): Likewise.
13945 * src/print_graph.c (print_core): Likewise.
13946 * src/print.c (print_reductions): Likewise.
13947 * src/output.c (action_row): Likewise.
13948 Use SHIFT_IS_DISABLED, SHIFT_IS_SHIFT and SHIFT_SYMBOL.
13949
13950 2002-06-30 Akim Demaille <akim@epita.fr>
13951
13952 * src/print_graph.c: Use report_flag.
13953
13954 2002-06-30 Akim Demaille <akim@epita.fr>
13955
13956 * src/lalr.c (traverse, digraph, matrix_print, transpose): Move
13957 to...
13958 * src/relation.h, src/relation.c (traverse, relation_digraph)
13959 (relation_print, relation_transpose): New.
13960
13961 2002-06-30 Akim Demaille <akim@epita.fr>
13962
13963 * src/state.h, src/state.c (shifts_to): New.
13964 * src/lalr.c (build_relations): Use it.
13965
13966 2002-06-30 Akim Demaille <akim@epita.fr>
13967
13968 * src/gram.h (rule_number_t, RULE_NUMBER_MAX, int_of_rule_number)
13969 (item_number_of_rule_number, rule_number_of_item_number): New.
13970 * src/LR0.c, src/closure.c, src/derives.c, src/derives.h,
13971 * src/gram.c, src/lalr.c, src/nullable.c, src/output.c, src/print.c,
13972 * src/print_graph.c, src/reader.c, src/reduce.c, src/reduce.h:
13973 Propagate their use.
13974 Much remains to be done, in particular wrt `shorts' from types.h.
13975
13976 2002-06-30 Akim Demaille <akim@epita.fr>
13977
13978 * src/symtab.c (symbol_new): Initialize the `printer' member.
13979
13980 2002-06-30 Akim Demaille <akim@epita.fr>
13981
13982 * src/LR0.c (save_reductions): Remove, replaced by...
13983 * src/state.h, src/state.c (state_reductions_set): New.
13984 (reductions, errs): Rename as...
13985 (reductions_t, errs_t): these.
13986 Adjust all dependencies.
13987
13988 2002-06-30 Akim Demaille <akim@epita.fr>
13989
13990 * src/LR0.c (state_list_t, state_list_append): New.
13991 (first_state, last_state): Now symbol_list_t.
13992 (this_state): Remove.
13993 (new_itemsets, append_states, save_reductions): Take a state_t as
13994 argument.
13995 (set_states, generate_states): Adjust.
13996 (save_shifts): Remove, replaced by...
13997 * src/state.h, src/state.c (state_shifts_set): New.
13998 (shifts): Rename as...
13999 (shifts_t): this.
14000 Adjust all dependencies.
14001 * src/state.h (state_t): Remove the `next' member.
14002
14003 2002-06-30 Akim Demaille <akim@epita.fr>
14004
14005 * src/vcg.c (quote): Use slot 2, since we often pass symbol tag
14006 escaped in slot 0.
14007
14008 2002-06-30 Akim Demaille <akim@epita.fr>
14009
14010 Use hash.h for the state hash table.
14011
14012 * src/LR0.c (STATE_HASH_SIZE, state_hash): Remove.
14013 (allocate_storage): Use state_hash_new.
14014 (free_storage): Use state_hash_free.
14015 (new_state, get_state): Adjust.
14016 * src/lalr.h, src/lalr.c (states): Move to...
14017 * src/states.h (state_t): Remove the `link' member, no longer
14018 used.
14019 * src/states.h, src/states.c: here.
14020 (state_hash_new, state_hash_free, state_hash_lookup)
14021 (state_hash_insert, states_free): New.
14022 * src/states.c (state_table, state_compare, state_hash): New.
14023 * src/output.c (output_actions): Do not free states now, since we
14024 still need to know the final_state number in `prepare', called
14025 afterwards. Do it...
14026 * src/main.c (main): here: call states_free after `output'.
14027
14028 2002-06-30 Akim Demaille <akim@epita.fr>
14029
14030 * src/state.h, src/state.c (state_new): New, extracted from...
14031 * src/LR0.c (new_state): here.
14032 * src/state.h (STATE_ALLOC): Move to...
14033 * src/state.c: here.
14034 * src/LR0.h, src/LR0.c (nstates, final_state): Move to...
14035 * src/state.h, src/state.c: here.
14036
14037 2002-06-30 Akim Demaille <akim@epita.fr>
14038
14039 * src/reader.c (gensym): Rename as...
14040 * src/symtab.h, src/symtab.c (dummy_symbol_get): this.
14041 (getsym): Rename as...
14042 (symbol_get): this.
14043
14044 2002-06-30 Akim Demaille <akim@epita.fr>
14045
14046 * src/state.h (state_number_t, STATE_NUMBER_MAX): New.
14047 * src/LR0.c, src/LR0.h, src/conflicts.c, src/lalr.c, src/lalr.h,
14048 * src/output.c, src/print.c, src/print_graph.c: Propagate.
14049 * src/LR0.h, src/LR0.h (final_state): Is a state_t*.
14050
14051 2002-06-30 Akim Demaille <akim@epita.fr>
14052
14053 Make the test suite pass with warnings checked.
14054
14055 * tests/actions.at (Printers and Destructors): Improve.
14056 Avoid unsigned vs. signed issues.
14057 * tests/calc.at: Don't exercise the scanner here, do it...
14058 * tests/input.at (Torturing the Scanner): here.
14059
14060 2002-06-28 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14061
14062 * data/glr.c: Correct typo in Emacs-mode directive. Slightly
14063 reorganize first lines parallel to yacc.c.
14064
14065 2002-06-28 Akim Demaille <akim@epita.fr>
14066
14067 * data/c.m4 (b4_copyright, b4_sint_type, b4_uint_type, b4_token_define)
14068 (b4_token_enum, b4_token_defines): New, factored from...
14069 * data/lalr1.cc, data/yacc.c, glr.c: here.
14070
14071 2002-06-28 Akim Demaille <akim@epita.fr>
14072
14073 * data/yacc.c (yydestruct, yysymprint): Pacify GCC warnings for
14074 unused variables.
14075 * src/output.c (merger_output): static.
14076
14077 2002-06-28 Akim Demaille <akim@epita.fr>
14078
14079 * src/reader.h: s/grammer_current_rule_merge_set/grammar_.../.
14080 * src/conflicts.c (conflicts_total_count): `i' is unsigned, to
14081 pacify GCC.
14082 * src/output.c (save_row): Initialize all the variables to pacify GCC.
14083
14084 2002-06-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14085
14086 Accumulated changelog for new GLR parsing features.
14087
14088 * src/conflicts.c (count_total_conflicts): Change name to
14089 conflicts_total_count.
14090 * src/conflicts.h: Ditto.
14091 * src/output.c (token_actions): Use the new name.
14092 (output_conflicts): Change conflp => conflict_list_heads, and
14093 confl => conflict_list for better readability.
14094 * data/glr.c: Use the new names.
14095 * NEWS: Add self to GLR announcement.
14096
14097 * src/reader.c (free_merger_functions): Cleanup: XFREE->free.
14098
14099 * doc/bison.texinfo (GLR Parsers): Make corrections suggested by
14100 Akim Demaille.
14101
14102 * data/bison.glr: Change name to glr.c
14103 * data/glr.c: Renamed from bison.glr.
14104 * data/Makefile.am: Add glr.c
14105
14106 * src/getargs.c:
14107
14108 * src/symlist.h: Add dprec and merger fields to symbol_list_s.
14109 * src/symlist.c (symbol_list_new): Initialize dprec and merger fields.
14110
14111 Originally 2002-06-16 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14112
14113 * data/bison.glr: Be sure to restore the
14114 current #line when returning to the skeleton contents after having
14115 exposed the input file's #line.
14116
14117 Originally 2002-06-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14118
14119 * data/bison.glr: Bring up to date with changes to bison.simple.
14120
14121 Originally 2002-06-03 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14122
14123 * data/bison.glr: Correct definitions that use b4_prefix.
14124 Various reformatting.
14125 (GLRStack): Make yychar (in YYPURE case) and yytokenp as part of stack.
14126 (yyreportParseError, yyrecoverParseError, yyprocessOneStack): remove
14127 yytokenp argument; now part of stack.
14128 (yychar): Define to behave as documented.
14129 (yyclearin): Ditto.
14130
14131 Originally 2002-05-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14132
14133 * src/reader.h: Add declaration for free_merger_functions.
14134
14135 * src/reader.c (merge_functions): New variable.
14136 (get_merge_function): New function.
14137 (free_merger_functions): New function.
14138 (readgram): Check for %prec that is not followed by a symbol.
14139 Handle %dprec and %merge declarations.
14140 (packgram): Initialize dprec and merger fields in rules array.
14141
14142 * src/output.c (conflict_tos, conflrow, conflict_table, conflict_list,
14143 conflict_list_cnt, conflict_list_free): New variables.
14144 (table_grow): Also grow conflict_table.
14145 (prepare_rules): Output dprec and merger tables.
14146 (conflict_row): New function.
14147 (action_row): Output conflict lists for GLR parser. Don't use
14148 default reduction in conflicted states for GLR parser so that there
14149 are spaces for the conflict lists.
14150 (save_row): Also save conflict information.
14151 (token_actions): Allocate conflict list.
14152 (merger_output): New function.
14153 (pack_vector): Pack conflict table, too.
14154 (output_conflicts): New function to output yyconflp and yyconfl.
14155 (output_check): Allocate conflict_tos.
14156 (output_actions): Output conflict tables, also.
14157 (output_skeleton): Output b4_mergers definition.
14158 (prepare): Output b4_max_rhs_length definition.
14159 Use 'bison.glr' as default skeleton for GLR parsers.
14160
14161 * src/gram.c (glr_parser): New flag.
14162 (grammar_free): Call free_merger_functions.
14163
14164 * src/conflicts.c (count_rr_conflicts): Augment to optionally count
14165 all pairs of conflicting reductions, rather than just all tokens
14166 causing conflicts. Needed to size conflict tables.
14167 (conflicts_output): Modify call to count_rr_conflicts for new
14168 interface.
14169 (conflicts_print): Ditto.
14170 (count_total_conflicts): New function.
14171
14172 * src/reader.h (merger_list): New type.
14173 (merge_functions): New variable.
14174
14175 * src/lex.h (tok_dprec, tok_merge): New token types.
14176
14177 * src/gram.h (rule_s): Add dprec and merger fields.
14178 (glr_parser): New flag.
14179
14180 * src/conflicts.h (count_total_conflicts): New function.
14181
14182 * src/options.c (option_table): Add %dprec, %merge, and %glr-parser.
14183
14184 * doc/bison.texinfo (Generalized LR Parsing): New section.
14185 (GLR Parsers): New section.
14186 (Language and Grammar): Mention GLR parsing.
14187 (Table of Symbols): Add %dprec, %glr-parser, %merge, GLR
14188 Correct typo ("tge" -> "the").
14189
14190 * data/bison.glr: New skeleton for GLR parsing.
14191
14192 * tests/cxx-gram.at: New tests for GLR parsing.
14193
14194 * tests/testsuite.at: Include cxx-gram.at.
14195
14196 * tests/Makefile.am: Add cxx-gram.at.
14197
14198 * src/parse-gram.y:
14199
14200 * src/scan-gram.l: Add %dprec, %glr-parser, %merge.
14201
14202 * src/parse-gram.y: Grammar for %dprec, %merge, %glr-parser.
14203
14204 2002-06-27 Akim Demaille <akim@epita.fr>
14205
14206 * src/options.h, src/options.c: Remove.
14207 * src/getargs.c (short_options, long_options): New.
14208
14209 2002-06-27 Akim Demaille <akim@epita.fr>
14210
14211 * data/bison.simple, data/bison.c++: Rename as...
14212 * data/yacc.c, data/lalr1.cc: these.
14213 * doc/bison.texinfo (Environment Variables): Remove.
14214
14215 2002-06-25 Raja R Harinath <harinath@cs.umn.edu>
14216
14217 * src/getargs.c (report_argmatch): Initialize strtok().
14218
14219 2002-06-20 Akim Demaille <akim@epita.fr>
14220
14221 * data/bison.simple (b4_symbol_actions): New, replaces...
14222 (b4_symbol_destructor, b4_symbol_printer): these.
14223 (yysymprint): Be sure to call YYPRINT only for tokens, and using
14224 user token numbers.
14225
14226 2002-06-20 Akim Demaille <akim@epita.fr>
14227
14228 * data/bison.simple (yydestructor): Rename as...
14229 (yydestruct): this.
14230
14231 2002-06-20 Akim Demaille <akim@epita.fr>
14232
14233 * src/symtab.h, src/symtab.c (symbol_type_set)
14234 (symbol_destructor_set, symbol_precedence_set): The location is
14235 the last argument.
14236 Adjust all callers.
14237
14238 2002-06-20 Akim Demaille <akim@epita.fr>
14239
14240 * src/parse-gram.y (YYPRINT, yyprint): Don't mess with the parser
14241 internals.
14242 * src/reader.h, src/reader.c (grammar_current_rule_prec_set):
14243 Takes a location.
14244 * src/symtab.h, src/symtab.c (symbol_class_set)
14245 (symbol_user_token_number_set): Likewise.
14246 Adjust all callers.
14247 Promote complain_at.
14248 * tests/input.at (Type Clashes): Adjust.
14249
14250 2002-06-20 Akim Demaille <akim@epita.fr>
14251
14252 * data/bison.simple (YYLEX): Fix the declaration when
14253 %pure-parser.
14254
14255 2002-06-20 Akim Demaille <akim@epita.fr>
14256
14257 * data/bison.simple (yysymprint): Don't print the token number,
14258 just its name.
14259 * tests/actions.at (Destructors): Rename as...
14260 (Printers and Destructors): this.
14261 Also exercise %printer.
14262
14263 2002-06-20 Akim Demaille <akim@epita.fr>
14264
14265 * data/bison.simple (YYDSYMPRINT): New.
14266 Use it to remove many of the #if YYDEBUG/if (yydebug).
14267
14268 2002-06-20 Akim Demaille <akim@epita.fr>
14269
14270 * src/symtab.h, src/symtab.c (symbol_t): printer and
14271 printer_location are new members.
14272 (symbol_printer_set): New.
14273 * src/parse-gram.y (PERCENT_PRINTER): New token.
14274 Handle its associated rule.
14275 * src/scan-gram.l: Adjust.
14276 (handle_destructor_at, handle_destructor_dollar): Rename as...
14277 (handle_symbol_code_at, handle_symbol_code_dollar): these.
14278 * src/output.c (symbol_printers_output): New.
14279 (output_skeleton): Call it.
14280 * data/bison.simple (yysymprint): New. Cannot be named yyprint
14281 since there are already many grammar files with a user `yyprint'.
14282 Replace the calls to YYPRINT to calls to yysymprint.
14283 * tests/calc.at: Adjust.
14284 * tests/torture.at (AT_DATA_STACK_TORTURE): Remove YYPRINT: it was
14285 taking advantage of parser very internal details (stack size!).
14286
14287 2002-06-20 Akim Demaille <akim@epita.fr>
14288
14289 * src/scan-gram.l: Complete the scanner with the missing patterns
14290 to pacify Flex.
14291 Use `quote' and `symbol_tag_get' where appropriate.
14292
14293 2002-06-19 Akim Demaille <akim@epita.fr>
14294
14295 * tests/actions.at (Destructors): Augment to test locations.
14296 * data/bison.simple (yydestructor): Pass it the current location
14297 if locations are enabled.
14298 Prototype only when __STDC__ or C++.
14299 Change the argument names to move into the yy name space: there is
14300 user code here.
14301
14302 2002-06-19 Akim Demaille <akim@epita.fr>
14303
14304 * data/bison.simple (b4_pure_if): New.
14305 Use it instead of #ifdef YYPURE.
14306
14307 2002-06-19 Akim Demaille <akim@epita.fr>
14308
14309 * data/bison.simple (b4_location_if): New.
14310 Use it instead of #ifdef YYLSP_NEEDED.
14311
14312 2002-06-19 Akim Demaille <akim@epita.fr>
14313
14314 Prepare @$ in %destructor, but currently don't bind it in the
14315 skeleton, as %location use is not cleaned up yet.
14316
14317 * src/scan-gram.l (handle_dollar, handle_destructor_at)
14318 (handle_action_at): New.
14319 (handle_at, handle_action_dollar, handle_destructor_dollar): Take
14320 a braced_code_t and a location as additional arguments.
14321 (handle_destructor_dollar): Instead of requiring `b4_eval', just
14322 unquote one when outputting `b4_dollar_dollar'.
14323 Adjust callers.
14324 * data/bison.simple (b4_eval): Remove.
14325 (b4_symbol_destructor): Adjust.
14326 * tests/input.at (Invalid @n): Adjust.
14327
14328 2002-06-19 Zack Weinberg <zack@codesourcery.com>
14329
14330 * doc/bison.texinfo: Document ability to have multiple
14331 prologue sections.
14332
14333 2002-06-18 Akim Demaille <akim@epita.fr>
14334
14335 * src/files.c (compute_base_names): When computing the output file
14336 names from the input file name, strip the directory part.
14337
14338 2002-06-18 Akim Demaille <akim@epita.fr>
14339
14340 * data/bison.simple.new: Comment changes.
14341 Reported by Andreas Schwab.
14342
14343 2002-06-18 Matt Kraai <kraai@alumni.cmu.edu>
14344
14345 * data/bison.simple (yyoverflowlab): #ifndef yyoverflow, so that
14346 there are no `label `yyoverflowlab' defined but not used' warnings
14347 when yyoverflow is defined.
14348
14349 2002-06-18 Akim Demaille <akim@epita.fr>
14350
14351 * src/symtab.h, src/symtab.c (symbol_t): destructor_location is a
14352 new member.
14353 (symbol_destructor_set): Adjust.
14354 * src/output.c (symbol_destructors_output): Output the destructor
14355 locations.
14356 Output the symbol name.
14357 * data/bison.simple (b4_symbol_destructor): Adjust.
14358
14359 2002-06-18 Cris Bailiff <c.bailiff@awayweb.com>
14360 and Akim Demaille <akim@epita.fr>
14361
14362 * data/bison.simple.new (yyerrlab1): Be sure to pop and destroy
14363 what's left on the stack when the error recovery hits EOF.
14364 * tests/actions.at (Destructors): Complete to exercise this case.
14365
14366 2002-06-17 Akim Demaille <akim@epita.fr>
14367
14368 * data/m4sugar/m4sugar.m4 (m4_map): Recognize when the list of
14369 arguments is really empty, not only equal to `[]'.
14370 * src/symtab.h, src/symtab.c (symbol_t): `destructor' is a new
14371 member.
14372 (symbol_destructor_set): New.
14373 * src/output.c (symbol_destructors_output): New.
14374 * src/reader.h (brace_code_t, current_braced_code): New.
14375 * src/scan-gram.l (BRACED_CODE): Use it to branch on...
14376 (handle_dollar): Rename as...
14377 (handle_action_dollar): this.
14378 (handle_destructor_dollar): New.
14379 * src/parse-gram.y (PERCENT_DESTRUCTOR): New.
14380 (grammar_declaration): Use it.
14381 * data/bison.simple (yystos): Is always defined.
14382 (yydestructor): New.
14383 * tests/actions.at (Destructors): New.
14384 * tests/calc.at (_AT_CHECK_CALC_ERROR): Don't rely on egrep.
14385
14386 2002-06-17 Akim Demaille <akim@epita.fr>
14387
14388 * src/symlist.h, src/symlist.c (symbol_list_length): New.
14389 * src/scan-gram.l (handle_dollar, handle_at): Compute the
14390 rule_length only when needed.
14391 * src/output.c (actions_output, token_definitions_output): Output
14392 the full M4 block.
14393 * src/symtab.c: Don't access directly to the symbol tag, use
14394 symbol_tag_get.
14395 * src/parse-gram.y: Use symbol_list_free.
14396
14397 2002-06-17 Akim Demaille <akim@epita.fr>
14398
14399 * src/reader.h, src/reader.c (symbol_list, symbol_list_new)
14400 (symbol_list_prepend, get_type_name): Move to...
14401 * src/symlist.h, src/symlist.c (symbol_list_t, symbol_list_new)
14402 (symbol_list_prepend, symbol_list_n_type_name_get): here.
14403 Adjust all callers.
14404 (symbol_list_free): New.
14405 * src/scan-gram.l (handle_dollar): Takes a location.
14406 * tests/input.at (Invalid $n): Adjust.
14407
14408 2002-06-17 Akim Demaille <akim@epita.fr>
14409
14410 * src/reader.h, src/reader.c (symbol_list_new): Export it.
14411 (symbol_list_prepend): New.
14412 * src/parse-gram.y (%union): `list' is a new member.
14413 (symbols.1): New, replaces...
14414 (terms_to_prec.1, nterms_to_type.1): these.
14415 * src/symtab.h, src/symtab.c (symbol_type_set, symbol_precedence_set)
14416 Take a location as additional argument.
14417 Adjust all callers.
14418
14419 2002-06-15 Akim Demaille <akim@epita.fr>
14420
14421 * src/parse-gram.y: Move %token in the declaration section so that
14422 we don't depend upon CVS Bison.
14423
14424 2002-06-15 Akim Demaille <akim@epita.fr>
14425
14426 * src/state.h, src/state.c (state_rule_lookaheads_print): New.
14427 * src/print.c (print_core): Use it.
14428
14429 2002-06-15 Akim Demaille <akim@epita.fr>
14430
14431 * src/conflicts.c (log_resolution): Accept the rule involved in
14432 the sr conflicts instead of the lookahead number that points to
14433 that rule.
14434 (flush_reduce): Accept the current lookahead vector as argument,
14435 instead of the index in LA.
14436 (resolve_sr_conflict): Accept the current number of lookahead
14437 bitset to consider for the STATE, instead of the index in LA.
14438 (set_conflicts): Adjust.
14439 * src/lalr.c, src/lalr.h, src/state.h: Comment changes.
14440
14441 2002-06-15 Akim Demaille <akim@epita.fr>
14442
14443 * src/state.h (state_t): Replace the `lookaheadsp' member, a
14444 short, with `lookaheads' (bitsetv), `lookaheads_rule' (rule_t**).
14445 Adjust all dependencies.
14446 * src/lalr.c (initialize_lookaheads): Split into...
14447 (states_lookaheads_count, states_lookaheads_initialize): these.
14448 (lalr): Adjust.
14449
14450 2002-06-15 Akim Demaille <akim@epita.fr>
14451
14452 * src/gram.h, src/gram.c (grammar_rules_partial_print): New, eved
14453 out of...
14454 (grammar_rules_print): here.
14455 * src/reduce.c (reduce_output): Use it.
14456 * tests/reduce.at (Useless Rules, Reduced Automaton)
14457 (Underivable Rules): Adjust.
14458
14459 2002-06-15 Akim Demaille <akim@epita.fr>
14460
14461 Copy BYacc's nice way to report the grammar.
14462
14463 * src/gram.h, src/gram.c (grammar_rhs_print, grammar_rules_print):
14464 New.
14465 Don't print the rules' location, it is confusing and useless.
14466 (rule_print): Use grammar_rhs_print.
14467 * src/print.c (print_grammar): Use grammar_rules_print.
14468
14469 2002-06-15 Akim Demaille <akim@epita.fr>
14470
14471 Complete and rationalize `useless thing' warnings.
14472
14473 * src/symtab.h, src/symtab.c (symbol_tag_get, symbol_tag_get_n)
14474 (symbol_tag_print): New.
14475 Use them everywhere in place of accessing directly the tag member.
14476 * src/gram.h, src/gram.c (rule_print): New.
14477 Use it where a rule used to be printed `by hand'.
14478 * src/reduce.c (nonterminals_reduce): Report the use nonterminals.
14479 (reduce_grammar_tables): Report the useless rules.
14480 (reduce_print): Useless things are a warning, not an error.
14481 Report it as such.
14482 * tests/reduce.at (Useless Nonterminals, Useless Rules):
14483 (Reduced Automaton, Underivable Rules): Adjust.
14484 * tests/regression.at (Web2c Report, Web2c Report): Adjust.
14485 * tests/conflicts.at (Unresolved SR Conflicts)
14486 (Solved SR Conflicts): Adjust.
14487
14488 2002-06-15 Akim Demaille <akim@epita.fr>
14489
14490 Let symbols have a location.
14491
14492 * src/symtab.h, src/symtab.c (symbol_t): Location is a new member.
14493 (getsym): Adjust.
14494 Adjust all callers.
14495 * src/complain.h, src/complain.c (complain_at, fatal_at, warn_at):
14496 Use location_t, not int.
14497 * src/symtab.c (symbol_check_defined): Take advantage of the
14498 location.
14499 * tests/regression.at (Invalid inputs): Adjust.
14500
14501 2002-06-15 Akim Demaille <akim@epita.fr>
14502
14503 * src/parse-gram.y (YYLLOC_DEFAULT, current_lhs_location): New.
14504 (input): Don't try to initialize yylloc here, do it in the
14505 scanner.
14506 * src/scan-gram.l (YY_USER_INIT): Initialize yylloc.
14507 * src/gram.h (rule_t): Change line and action_line into location
14508 and action_location, of location_t type.
14509 Adjust all dependencies.
14510 * src/location.h, src/location.c (empty_location): New.
14511 * src/reader.h, src/reader.c (grammar_start_symbol_set)
14512 (grammar_symbol_append, grammar_rule_begin, grammar_rule_end)
14513 (grammar_current_rule_symbol_append)
14514 (grammar_current_rule_action_append): Expect a location as argument.
14515 * src/reader.c (grammar_midrule_action): Adjust to attach an
14516 action's location as dummy symbol location.
14517 * src/symtab.h, src/symtab.c (startsymbol_location): New.
14518 * tests/regression.at (Web2c Report, Rule Line Numbers): Adjust
14519 the line numbers.
14520
14521 2002-06-14 Akim Demaille <akim@epita.fr>
14522
14523 Grammar declarations may be found in the grammar section.
14524
14525 * src/parse-gram.y (rules_or_grammar_declaration): New.
14526 (declarations): Each declaration may end with a semicolon, not
14527 just...
14528 (grammar_declaration): `"%union"'.
14529 (grammar): Branch to rules_or_grammar_declaration.
14530
14531 2002-06-14 Akim Demaille <akim@epita.fr>
14532
14533 * src/main.c (main): Invoke scanner_free.
14534
14535 2002-06-14 Akim Demaille <akim@epita.fr>
14536
14537 * src/output.c (m4_invoke): Extracted from...
14538 (output_skeleton): here.
14539 Free tempfile.
14540
14541 2002-06-14 Akim Demaille <akim@epita.fr>
14542
14543 * src/parse-gram.y (directives, directive, gram)
14544 (grammar_directives, precedence_directives, precedence_directive):
14545 Rename as...
14546 (declarations, declaration, grammar, grammar_declaration)
14547 (precedence_declaration, precedence_declarator): these.
14548 (symbol_declaration): New.
14549
14550 2002-06-14 Akim Demaille <akim@epita.fr>
14551
14552 * src/files.c (action_obstack): Remove, unused.
14553 (output_obstack): Remove it, and all its dependencies, as it is no
14554 longer needed.
14555 * src/reader.c (epilogue_set): Build the epilogue in the
14556 muscle_obstack.
14557 * src/output.h, src/output.c (muscle_obstack): Move to...
14558 * src/muscle_tab.h, src/muscle_tab.h: here.
14559 (muscle_init): Initialize muscle_obstack.
14560 (muscle_free): New.
14561 * src/main.c (main): Call it.
14562
14563 2002-06-14 Akim Demaille <akim@epita.fr>
14564
14565 * src/location.h: New, extracted from...
14566 * src/reader.h: here.
14567 * src/Makefile.am (noinst_HEADERS): Merge into
14568 (bison_SOURCES): this.
14569 Add location.h.
14570 * src/parse-gram.y: Use location_t instead of Bison's.
14571 * src/reader.h, src/reader.c (prologue_augment, epilogue_set):
14572 Use location_t instead of ints.
14573
14574 2002-06-14 Akim Demaille <akim@epita.fr>
14575
14576 * data/bison.simple, data/bison.c++: Be sure to restore the
14577 current #line when returning to the skeleton contents after having
14578 exposed the input file's #line.
14579
14580 2002-06-12 Akim Demaille <akim@epita.fr>
14581
14582 * src/scan-gram.l (SC_BRACED_CODE): Don't use `<.*>', it is too
14583 eager.
14584 * tests/actions.at (Exotic Dollars): New.
14585
14586 2002-06-12 Akim Demaille <akim@epita.fr>
14587
14588 * src/scan-gram.l (SC_PROLOGUE): Don't eat characters amongst
14589 ['"/] too eagerly.
14590 * tests/input.at (Torturing the Scanner): New.
14591
14592 2002-06-11 Akim Demaille <akim@epita.fr>
14593
14594 * src/scan-gram.l (YY_OBS_INIT): Remove, replace with...
14595 [SC_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE]
14596 [SC_EPILOGUE]: Output the quadrigraphs only when not in a comment.
14597 * src/reader.h, src/scan-gram.l (scanner_initialize): this.
14598 * src/reader.c (reader): Use it.
14599
14600 2002-06-11 Akim Demaille <akim@epita.fr>
14601
14602 * src/scan-gram.l (YY_OBS_FINISH): Don't set yylval.
14603 Adjust all callers.
14604 (scanner_last_string_free): New.
14605
14606 2002-06-11 Akim Demaille <akim@epita.fr>
14607
14608 * src/scan-gram.l (YY_INIT, YY_GROW, YY_FINISH): Rename as...
14609 (YY_OBS_INIT, YY_OBS_GROW, YY_OBS_FINISH): these.
14610 (last_string, YY_OBS_FREE): New.
14611 Use them when returning an ID.
14612
14613 2002-06-11 Akim Demaille <akim@epita.fr>
14614
14615 Have Bison grammars parsed by a Bison grammar.
14616
14617 * src/reader.c, src/reader.h (prologue_augment): New.
14618 * src/reader.c (copy_definition): Remove.
14619
14620 * src/reader.h, src/reader.c (gram_start_symbol_set, prologue_augment)
14621 (grammar_symbol_append, grammar_rule_begin, grammar_midrule_action)
14622 (grammar_current_rule_prec_set, grammar_current_rule_check)
14623 (grammar_current_rule_symbol_append)
14624 (grammar_current_rule_action_append): Export.
14625 * src/parse-gram.y (symbol_list_new, symbol_list_symbol_append_
14626 (symbol_list_action_append): Remove.
14627 Hook the routines from reader.
14628 * src/scan-gram.l: In INITIAL, characters and strings are tokens.
14629 * src/system.h (ATTRIBUTE_NORETURN, ATTRIBUTE_UNUSED): Now.
14630
14631 * src/reader.c (read_declarations): Remove, unused.
14632
14633 * src/parse-gram.y: Handle the epilogue.
14634 * src/reader.h, src/reader.c (gram_start_symbol_set): Rename as...
14635 (grammar_start_symbol_set): this.
14636 * src/scan-gram.l: Be sure to ``use'' yycontrol to keep GCC quiet.
14637 * src/reader.c (readgram): Remove, unused.
14638 (reader): Adjust to insert eoftoken and axiom where appropriate.
14639
14640 * src/reader.c (copy_dollar): Replace with...
14641 * src/scan-gram.h (handle_dollar): this.
14642 * src/parse-gram.y: Remove `%thong'.
14643
14644 * src/reader.c (copy_at): Replace with...
14645 * src/scan-gram.h (handle_at): this.
14646
14647 * src/complain.h, src/complain.c (warn_at, complain_at, fatal_at):
14648 New.
14649
14650 * src/scan-gram.l (YY_LINES): Keep lineno synchronized for the
14651 time being.
14652
14653 * src/reader.h, src/reader.c (grammar_rule_end): New.
14654
14655 * src/parse.y (current_type, current_class): New.
14656 Implement `%nterm', `%token' support.
14657 Merge `%term' into `%token'.
14658 (string_as_id): New.
14659 * src/symtab.h, src/symtab.c (symbol_make_alias): Don't pass the
14660 type name.
14661
14662 * src/parse-gram.y: Be sure to handle properly the beginning of
14663 rules.
14664
14665 * src/parse-gram.y: Handle %type.
14666 * src/reader.c (grammar_rule_end): Call grammar_current_rule_check.
14667
14668 * src/parse-gram.y: More directives support.
14669 * src/options.c: No longer handle source directives.
14670
14671 * src/parse-gram.y: Fix %output.
14672
14673 * src/parse-gram.y: Handle %union.
14674 Use the prologue locations.
14675 * src/reader.c (parse_union_decl): Remove.
14676
14677 * src/reader.h, src/reader.c (epilogue_set): New.
14678 * src/parse-gram.y: Use it.
14679
14680 * data/bison.simple, data/bison.c++: b4_stype is now either not
14681 defined, then default to int, or to the contents of %union,
14682 without `union' itself.
14683 Adjust.
14684 * src/muscle_tab.c (muscle_init): Don't predefine `stype'.
14685
14686 * src/output.c (actions_output): Don't output braces, as they are
14687 already handled by the scanner.
14688
14689 * src/scan-gram.l (SC_CHARACTER): Set the user_token_number of
14690 characters to themselves.
14691
14692 * tests/reduce.at (Reduced Automaton): End the grammars with %% so
14693 that the epilogue has a proper #line.
14694
14695 * src/parse-gram.y: Handle precedence/associativity.
14696
14697 * src/symtab.c (symbol_precedence_set): Requires the symbol to be
14698 a terminal.
14699 * src/scan-gram.l (SC_BRACED_CODE): Catch strings and characters.
14700 * tests/calc.at: Do not use `%token "foo"' as it makes not sense
14701 at all to define terminals that cannot be emitted.
14702
14703 * src/scan-gram.l: Escape M4 characters.
14704
14705 * src/scan-gram.l: Working properly with escapes in user
14706 strings/characters.
14707
14708 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR)
14709 (AT_DATA_HORIZONTAL_GRAMMAR): Respect the `%token ID NUM STRING'
14710 grammar.
14711 Use more modest sizes, as for the time being the parser does not
14712 release memory, and therefore the process swallows a huge amount
14713 of memory.
14714
14715 * tests/torture.at (AT_DATA_LOOKAHEADS_GRAMMAR): Adjust to the
14716 stricter %token grammar.
14717
14718 * src/symtab.h (associativity): Add `undef_assoc'.
14719 (symbol_precedence_set): Do nothing when passed an undef_assoc.
14720 * src/symtab.c (symbol_check_alias_consistence): Adjust.
14721
14722 * tests/regression.at (Invalid %directive): Remove, as it is now
14723 meaningless.
14724 (Invalid inputs): Adjust to the new error messages.
14725 (Token definitions): The new grammar doesn't allow too many
14726 eccentricities.
14727
14728 * src/lex.h, src/lex.c: Remove.
14729 * src/reader.c (lastprec, skip_to_char, read_signed_integer)
14730 (copy_character, copy_string2, copy_string, copy_identifier)
14731 (copy_comment, parse_token_decl, parse_type_decl, parse_assoc_decl)
14732 (parse_muscle_decl, parse_dquoted_param, parse_skel_decl)
14733 (parse_action): Remove.
14734 * po/POTFILES.in: Adjust.
14735
14736 2002-06-11 Akim Demaille <akim@epita.fr>
14737
14738 * src/reader.c (parse_action): Don't store directly into the
14739 rule's action member: return the action as a string.
14740 Don't require `rule_length' as an argument: compute it.
14741 (grammar_current_rule_symbol_append)
14742 (grammar_current_rule_action_append): New, eved out from
14743 (readgram): here.
14744 Remove `action_flag', `rulelength', unused now.
14745
14746 2002-06-11 Akim Demaille <akim@epita.fr>
14747
14748 * src/reader.c (grammar_current_rule_prec_set).
14749 (grammar_current_rule_check): New, eved out from...
14750 (readgram): here.
14751 Remove `xaction', `first_rhs': useless.
14752 * tests/input.at (Type clashes): New.
14753 * tests/existing.at (GNU Cim Grammar): Adjust.
14754
14755 2002-06-11 Akim Demaille <akim@epita.fr>
14756
14757 * src/reader.c (grammar_midrule_action): New, Eved out from
14758 (readgram): here.
14759
14760 2002-06-11 Akim Demaille <akim@epita.fr>
14761
14762 * src/reader.c (grammar_rule_begin, previous_rule, current_rule):
14763 New.
14764 (readgram): Use them as replacement of inlined code, crule and
14765 crule1.
14766
14767 2002-06-11 Akim Demaille <akim@epita.fr>
14768
14769 * src/reader.c (grammar_end, grammar_symbol_append): New.
14770 (readgram): Use them.
14771 Make the use of `p' as local as possible.
14772
14773 2002-06-10 Akim Demaille <akim@epita.fr>
14774
14775 GCJ's parser requires the tokens to be defined before the prologue.
14776
14777 * data/bison.simple: Output the token definition before the user's
14778 prologue.
14779 * tests/regression.at (Braces parsing, Duplicate string)
14780 (Mixing %token styles): Check the output from bison.
14781 (Early token definitions): New.
14782
14783 2002-06-10 Akim Demaille <akim@epita.fr>
14784
14785 * src/symtab.c (symbol_user_token_number_set): Don't complain when
14786 assigning twice the same user number to a token, so that we can
14787 use it in...
14788 * src/lex.c (lex): here.
14789 Also use `symbol_class_set' instead of hand written code.
14790 * src/reader.c (parse_assoc_decl): Likewise.
14791
14792 2002-06-10 Akim Demaille <akim@epita.fr>
14793
14794 * src/symtab.c, src/symtab.c (symbol_class_set)
14795 (symbol_user_token_number_set): New.
14796 * src/reader.c (parse_token_decl): Use them.
14797 Use a switch instead of ifs.
14798 Use a single argument.
14799
14800 2002-06-10 Akim Demaille <akim@epita.fr>
14801
14802 Remove `%thong' support as it is undocumented, unused, duplicates
14803 `%token's job, and creates useless e-mail traffic with people who
14804 want to know what it is, why it is undocumented, unused, and
14805 duplicates `%token's job.
14806
14807 * src/reader.c (parse_thong_decl): Remove.
14808 * src/options.c (option_table): Remove "thong".
14809 * src/lex.h (tok_thong): Remove.
14810
14811 2002-06-10 Akim Demaille <akim@epita.fr>
14812
14813 * src/symtab.c, src/symtab.c (symbol_type_set)
14814 (symbol_precedence_set): New.
14815 * src/reader.c (parse_type_decl, parse_assoc_decl): Use them.
14816 (value_components_used): Remove, unused.
14817
14818 2002-06-09 Akim Demaille <akim@epita.fr>
14819
14820 Move symbols handling code out of the reader.
14821
14822 * src/reader.h, src/reader.c (errtoken, undeftoken, eoftoken)
14823 (axiom): Move to...
14824 * src/symtab.h, src/symtab.c: here.
14825
14826 * src/gram.c (start_symbol): Remove: use startsymbol->number.
14827 * src/reader.c (startval): Rename as...
14828 * src/symtab.h, src/symtab.c (startsymbol): this.
14829 * src/reader.c: Adjust.
14830
14831 * src/reader.c (symbol_check_defined, symbol_make_alias)
14832 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
14833 (token_translations_init)
14834 Move to...
14835 * src/symtab.c: here.
14836 * src/reader.c (packsymbols): Move to...
14837 * src/symtab.h, src/symtab.c (symbols_pack): here.
14838 * src/symtab.h, src/symtab.c (symbol_make_alias): Takes SYMVAL as
14839 argument.
14840
14841 2002-06-03 Akim Demaille <akim@epita.fr>
14842
14843 * src/muscle_tab.c (muscle_insert, muscle_find): Declarations,
14844 then statements.
14845
14846 2002-06-03 Akim Demaille <akim@epita.fr>
14847
14848 * src/muscle_tab.c (muscle_find, muscle_insert): Don't initialize
14849 structs with non literals.
14850 * src/scan-skel.l: never-interactive.
14851 * src/conflicts.c (enum conflict_resolution_e): No trailing
14852 comma.
14853 * src/getargs.c (usage): Split long literal strings.
14854 Reported by Hans Aberg.
14855
14856 2002-05-28 Akim Demaille <akim@epita.fr>
14857
14858 * data/bison.c++: Use C++ ostreams.
14859 (cdebug_): New member.
14860
14861 2002-05-28 Akim Demaille <akim@epita.fr>
14862
14863 * src/output.c (output_skeleton): Be sure to allocate enough room
14864 for `/' _and_ for `\0' in full_skeleton.
14865
14866 2002-05-28 Akim Demaille <akim@epita.fr>
14867
14868 * data/bison.c++: Catch up with bison.simple:
14869 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14870 and Paul Eggert <eggert@twinsun.com>: `error' handing.
14871 2002-05-26 Akim Demaille <akim@epita.fr>: stos_, token_number_,
14872 and popping traces.
14873
14874 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14875
14876 * src/output.c (output_skeleton): Put an explicit path in front of
14877 the skeleton file name, rather than relying on the -I directory,
14878 to partially alleviate effects of having a skeleton file lying around
14879 in the current directory.
14880
14881 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14882
14883 * src/conflicts.c (log_resolution): Correct typo:
14884 obstack_printf should be obstack_fgrow1.
14885
14886 2002-05-26 Akim Demaille <akim@epita.fr>
14887
14888 * src/state.h (state_t): `solved_conflicts' is a new member.
14889 * src/LR0.c (new_state): Set it to 0.
14890 * src/conflicts.h, src/conflicts.c (print_conflicts)
14891 (free_conflicts, solve_conflicts): Rename as...
14892 (conflicts_print, conflicts_free, conflicts_solve): these.
14893 Adjust callers.
14894 * src/conflicts.c (enum conflict_resolution_e)
14895 (solved_conflicts_obstack): New, used by...
14896 (log_resolution): this.
14897 Adjust to attach the conflict resolution to each state.
14898 Complete the description with the precedence/associativity
14899 information.
14900 (resolve_sr_conflict): Adjust.
14901 * src/print.c (print_state): Output its solved_conflicts.
14902 * tests/conflicts.at (Unresolved SR Conflicts)
14903 (Solved SR Conflicts): Exercise --report=all.
14904
14905 2002-05-26 Akim Demaille <akim@epita.fr>
14906
14907 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
14908 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
14909 * src/reader.c, src/reduce.c, src/state.h, src/symtab.h
14910 (token_number_t, item_number_as_token_number)
14911 (token_number_as_item_number, muscle_insert_token_number_table):
14912 Rename as...
14913 (symbol_number_t, item_number_as_symbol_number)
14914 (symbol_number_as_item_number, muscle_insert_symbol_number_table):
14915 these, since it is more appropriate.
14916
14917 2002-05-26 Akim Demaille <akim@epita.fr>
14918
14919 * tests/calc.at (AT_CHECK_CALC): Adjust: there are now additional
14920 `Error:' lines.
14921 * data/bison.simple (yystos) [YYDEBUG]: New.
14922 (yyparse) [YYDEBUG]: Display the symbols which are popped during
14923 error recovery.
14924 * tests/regression.at (Web2c Actions): Adjust: yystos is output now.
14925
14926 2002-05-25 Akim Demaille <akim@epita.fr>
14927
14928 * doc/bison.texinfo (Debugging): Split into...
14929 (Tracing): this new section, its former contents, and...
14930 (Understanding): this new section.
14931 * src/getargs.h, src/getargs.c (verbose_flag): Remove, replaced
14932 by...
14933 (report_flag): this.
14934 Adjust all dependencies.
14935 (report_args, report_types, report_argmatch): New.
14936 (usage, getargs): Report/support -r, --report.
14937 * src/options.h
14938 (struct option_table_struct): Rename as..,
14939 (struct option_table_s): this.
14940 Rename the `set_flag' member to `flag' to match with getopt_long's
14941 struct.
14942 * src/options.c (option_table): Split verbose into an entry for
14943 %verbose, and another for --verbose.
14944 Support --report/-r, so remove -r from the obsolete --raw.
14945 * src/print.c: Attach full item sets and lookaheads reports to
14946 report_flag instead of trace_flag.
14947 * lib/argmatch.h, lib/argmatch.c: New, from Fileutils 4.1.
14948
14949 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14950 and Paul Eggert <eggert@twinsun.com>
14951
14952 * data/bison.simple (yyparse): Correct error handling to conform to
14953 POSIX and yacc. Specifically, after syntax error is discovered,
14954 do not reduce further before shifting the error token.
14955 Clean up the code a bit by removing the labels yyerrdefault,
14956 yyerrhandle, yyerrpop.
14957 * NEWS: Document the above.
14958
14959 2002-05-20 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14960
14961 * data/bison.simple (yyr1): Don't use yy_token_number_type as element
14962 type; it isn't always big enough, since it doesn't necessarily
14963 include non-terminals.
14964 (yytranslate): Expand definition of yy_token_number_type, so that
14965 the latter can be removed.
14966 (yy_token_number_type): Remove, only one use.
14967 * data/bison.c++ (r1_): Parallel change to yyr1 in bison.simple---
14968 don't use TokenNumberType as element type.
14969
14970 * tests/regression.at: Modify expected output to agree with change
14971 to yyr1 and yytranslate.
14972
14973 2002-05-13 Florian Krohm <florian@edamail.fishkill.ibm.com>
14974
14975 * src/reader.c (parse_action): Use copy_character instead of
14976 obstack_1grow.
14977
14978 2002-05-13 Akim Demaille <akim@epita.fr>
14979
14980 * tests/regression.at (Token definitions): Prototype yylex and
14981 yyerror.
14982
14983 2002-05-12 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14984
14985 * src/scan-skel.l: Correct off-by-one error in handling of __oline__.
14986 * data/bison.simple (b4_sint_type, b4_uint_type): Correct to reflect
14987 32-bit arithmetic.
14988 * data/bison.c++ (b4_sint_type, b4_uint_type): Ditto.
14989
14990 2002-05-07 Akim Demaille <akim@epita.fr>
14991
14992 * tests/synclines.at: Be sure to prototype yylex and yyerror to
14993 avoid GCC warnings.
14994
14995 2002-05-07 Akim Demaille <akim@epita.fr>
14996
14997 Kill GCC warnings.
14998
14999 * src/reduce.c (nonterminals_reduce): Don't loop over RITEM: loop
15000 over the RHS of each rule.
15001 * src/gram.h, src/gram.c (nritems): Is `unsigned int', not int.
15002 * src/state.h (state_t): Member `nitems' is unsigned short.
15003 * src/LR0.c (get_state): Adjust.
15004 * src/reader.c (packgram): Likewise.
15005 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): `max' is of type
15006 `Type'.
15007 (muscle_insert_int_table): Remove, unused.
15008 (prepare_rules): Remove `max'.
15009
15010 2002-05-06 Akim Demaille <akim@epita.fr>
15011
15012 * src/closure.c (print_firsts): Display of the symbol tags.
15013 (bitmatrix_print): Move to...
15014 * lib/bitsetv-print.h, lib/bitsetv-print.c (bitsetv_matrix_dump):
15015 here.
15016 * tests/sets.at (Nullable, Broken Closure, Firsts): Adjust.
15017
15018 2002-05-06 Akim Demaille <akim@epita.fr>
15019
15020 * src/muscle_tab.c (muscle_m4_output): Must return TRUE for
15021 hash_do_for_each.
15022
15023 2002-05-06 Akim Demaille <akim@epita.fr>
15024
15025 * src/LR0.c (new_state, get_state): Instead of using the global
15026 `kernel_size' and `kernel_base', have two new arguments:
15027 `core_size' and `core'.
15028 Adjust callers.
15029
15030 2002-05-06 Akim Demaille <akim@epita.fr>
15031
15032 * src/reader.c (packgram): No longer end `ritem' with a 0
15033 sentinel: it is not used.
15034
15035 2002-05-05 Akim Demaille <akim@epita.fr>
15036
15037 New experimental feature: display the lookaheads in the report and
15038 graph.
15039
15040 * src/print (print_core): When --trace-flag, display the rules
15041 lookaheads.
15042 * src/print_graph.c (print_core): Likewise.
15043 Swap the arguments.
15044 Adjust caller.
15045
15046 2002-05-05 Akim Demaille <akim@epita.fr>
15047
15048 * tests/torture.at (Many lookaheads): New test.
15049
15050 2002-05-05 Akim Demaille <akim@epita.fr>
15051
15052 * src/output.c (GENERATE_OUTPUT_TABLE): Replace with...
15053 (GENERATE_MUSCLE_INSERT_TABLE): this.
15054 (output_int_table, output_unsigned_int_table, output_short_table)
15055 (output_token_number_table, output_item_number_table): Replace with...
15056 (muscle_insert_int_table, muscle_insert_unsigned_int_table)
15057 (muscle_insert_short_table, muscle_insert_token_number_table)
15058 (muscle_insert_item_number_table): these.
15059 Adjust all callers.
15060 (prepare_tokens): Don't free `translations', since...
15061 * src/reader.h, src/reader.c (grammar_free): do it.
15062 Move to...
15063 * src/gram.h, src/gram.c (grammar_free): here.
15064 * data/bison.simple, data/bison.c++: b4_token_number_max is now
15065 b4_translate_max.
15066
15067 2002-05-05 Akim Demaille <akim@epita.fr>
15068
15069 * src/output.c (output_unsigned_int_table): New.
15070 (prepare_rules): `i' is unsigned.
15071 `prhs', `rline', `r2' are unsigned int.
15072 Rename muscle `rhs_number_max' as `rhs_max'.
15073 Output muscles `prhs_max', `rline_max', and `r2_max'.
15074 Free rline and r1.
15075 * data/bison.simple, data/bison.c++: Adjust to use these muscles
15076 to compute types instead of constant types.
15077 * tests/regression.at (Web2c Actions): Adjust.
15078
15079 2002-05-04 Akim Demaille <akim@epita.fr>
15080
15081 * src/symtab.h (SALIAS, SUNDEF): Rename as...
15082 (USER_NUMBER_ALIAS, USER_NUMBER_UNDEFINED): these.
15083 Adjust dependencies.
15084 * src/output.c (token_definitions_output): Be sure not to output a
15085 `#define 'a'' when fed with `%token 'a' "a"'.
15086 * tests/regression.at (Token definitions): New.
15087
15088 2002-05-03 Paul Eggert <eggert@twinsun.com>
15089
15090 * data/bison.simple (b4_token_defines): Also define YYTOKENTYPE
15091 for K&R C.
15092
15093 2002-05-03 gettextize <bug-gnu-gettext@gnu.org>
15094
15095 * Makefile.am (SUBDIRS): Remove intl.
15096 (EXTRA_DIST): Add config/config.rpath.
15097
15098 2002-05-03 Akim Demaille <akim@epita.fr>
15099
15100 * data/bison.simple (m4_if): Don't output empty enums.
15101 And actually, output valid enum definitions :(.
15102
15103 2002-05-03 Akim Demaille <akim@epita.fr>
15104
15105 * configure.bat: Remove, completely obsolete.
15106 * Makefile.am (EXTRA_DIST): Adjust.
15107 Don't distribute config.rpath...
15108 * config/Makefile.am (EXTRA_DIST): Do it.
15109
15110 2002-05-03 Akim Demaille <akim@epita.fr>
15111
15112 * configure.in (GETTEXT_VERSION): New.
15113 Suggested by Bruno Haible for the forthcoming Gettext 0.10.3.
15114
15115 2002-05-03 Akim Demaille <akim@epita.fr>
15116
15117 * data/bison.simple (b4_token_enum): New.
15118 (b4_token_defines): Use it to output tokens both as #define and
15119 enums.
15120 Suggested by Paul Eggert.
15121 * src/output.c (token_definitions_output): Don't output spurious
15122 white spaces.
15123
15124 2002-05-03 Akim Demaille <akim@epita.fr>
15125
15126 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
15127
15128 2002-05-02 Robert Anisko <robert@lrde.epita.fr>
15129
15130 * data/bison.c++: Adapt expansion of $s and @s to the C++ parser.
15131 Update the stack class, give a try to deque as the default container.
15132
15133 2002-05-02 Akim Demaille <akim@epita.fr>
15134
15135 * data/bison.simple (yyparse): Do not implement @$ = @1.
15136 (YYLLOC_DEFAULT): Adjust to do it.
15137 * doc/bison.texinfo (Location Default Action): Fix.
15138
15139 2002-05-02 Akim Demaille <akim@epita.fr>
15140
15141 * src/reader.c (parse_braces): Merge into...
15142 (parse_action): this.
15143
15144 2002-05-02 Akim Demaille <akim@epita.fr>
15145
15146 * configure.in (ALL_LINGUAS): Remove.
15147 * po/LINGUAS, hr.po: New.
15148
15149 2002-05-02 Akim Demaille <akim@epita.fr>
15150
15151 Remove the so called hairy (semantic) parsers.
15152
15153 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove.
15154 * src/gram.h, src/gram.c (semantic_parser): Remove.
15155 (rule_t): Remove the guard and guard_line members.
15156 * src/lex.h (token_t): remove tok_guard.
15157 * src/options.c (option_table): Remove %guard and %semantic_parser
15158 support.
15159 * src/output.c, src/output.h (guards_output): Remove.
15160 (prepare): Adjust.
15161 (token_definitions_output): Don't output the `T'
15162 tokens (???).
15163 (output_skeleton): Don't output the guards.
15164 * src/files.c, src/files.c (attrsfile): Remove.
15165 * src/reader.c (symbol_list): Remove the guard and guard_line
15166 members.
15167 Adjust dependencies.
15168 (parse_guard): Remove.
15169 * data/bison.hairy: Remove.
15170 * doc/bison.texinfo (Environment Variables): Remove occurrences of
15171 BISON_HAIRY.
15172
15173 2002-05-02 Akim Demaille <akim@epita.fr>
15174
15175 * src/reader.c (copy_at, copy_dollarm parse_braces, parse_action)
15176 (parse_guard): Rename the formal argument `stack_offset' as
15177 `rule_length', which is more readable.
15178 Adjust callers.
15179 (copy_at, copy_dollar): Instead of outputting the hard coded
15180 values of $$, $n and so forth, output invocation to b4_lhs_value,
15181 b4_lhs_location, b4_rhs_value, and b4_rhs_location.
15182 Note: this patch partially drops `semantic-parser' support: it
15183 always does `rule_length - n', where semantic parsers ought to
15184 always use `-n'.
15185 * data/bison.simple, data/bison.c++ (b4_lhs_value)
15186 (b4_lhs_location, b4_rhs_value, and b4_rhs_location: New.
15187
15188 2002-05-02 Akim Demaille <akim@epita.fr>
15189
15190 * configure.in (AC_INIT): Bump to 1.49b.
15191 (AM_INIT_AUTOMAKE): Short invocation.
15192
15193 2002-05-02 Akim Demaille <akim@epita.fr>
15194
15195 Version 1.49a.
15196
15197 2002-05-01 Akim Demaille <akim@epita.fr>
15198
15199 * src/skeleton.h: Remove.
15200
15201 2002-05-01 Akim Demaille <akim@epita.fr>
15202
15203 * src/skeleton.h: Fix the #endif.
15204 Reported by Magnus Fromreide.
15205
15206 2002-04-26 Paul Eggert <eggert@twinsun.com>
15207
15208 * data/bison.simple (YYSTYPE_IS_TRIVIAL, YYLTYPE_IS_TRIVIAL):
15209 Define if we define YYSTYPE and YYLTYPE, respectively.
15210 (YYCOPY): Fix [] quoting problem in the non-GCC case.
15211
15212 2002-04-25 Robert Anisko <robert@lrde.epita.fr>
15213
15214 * src/scan-skel.l: Postprocess quadrigraphs.
15215
15216 * src/reader.c (copy_character): New function, used to output
15217 single characters while replacing `[' and `]' with quadrigraphs, to
15218 avoid troubles with M4 quotes.
15219 (copy_comment): Output characters with copy_character.
15220 (read_additionnal_code): Likewise.
15221 (copy_string2): Likewise.
15222 (copy_definition): Likewise.
15223
15224 * tests/calc.at: Exercise M4 quoting.
15225
15226 2002-04-25 Akim Demaille <akim@epita.fr>
15227
15228 * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
15229 between `!' and the command.
15230 Reported by Paul Eggert.
15231
15232 2002-04-24 Robert Anisko <robert@lrde.epita.fr>
15233
15234 * tests/calc.at: Exercise prologue splitting.
15235
15236 * data/bison.simple, data/bison.c++: Use `b4_pre_prologue' and
15237 `b4_post_prologue' instead of `b4_prologue'.
15238
15239 * src/output.c (prepare): Add the `pre_prologue' and `post_prologue'
15240 muscles.
15241 (output): Free pre_prologue_obstack and post_prologue_obstack.
15242 * src/files.h, src/files.c (attrs_obstack): Remove.
15243 (pre_prologue_obstack, post_prologue_obstack): New.
15244 * src/reader.c (copy_definition): Add a parameter to specify the
15245 obstack to fill, instead of using attrs_obstack unconditionally.
15246 (read_declarations): Pass pre_prologue_obstack to copy_definition if
15247 `%union' has not yet been seen, pass post_prologue_obstack otherwise.
15248
15249 2002-04-23 Paul Eggert <eggert@twinsun.com>
15250
15251 * data/bison.simple: Remove unnecessary commentary and white
15252 space differences from 1_29-branch.
15253 Depend on YYERROR_VERBOSE, not defined (YYERROR_VERBOSE).
15254
15255 (union yyalloc, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYCOPY,
15256 YYSTACK_RELOCATE): Do not define if yyoverflow is defined, or
15257 if this is a C++ parser and YYSTYPE or YYLTYPE has nontrivial
15258 constructors or destructors.
15259
15260 (yyparse) [! defined YYSTACK_RELOCATE]: Do not relocate the stack.
15261
15262 2002-04-23 Akim Demaille <akim@epita.fr>
15263
15264 * tests/sets.at (AT_EXTRACT_SETS): Don't use 8 char long sed labels.
15265 * tests/synclines.at (AT_TEST_SYNCLINE): Be robust to GCC's
15266 location with columns.
15267 * tests/conflicts.at (%nonassoc and eof): Don't use `error.h'.
15268 All reported by Paul Eggert.
15269
15270 2002-04-22 Akim Demaille <akim@epita.fr>
15271
15272 * src/reduce.c (dump_grammar): Move to...
15273 * src/gram.h, src/gram.c (grammar_dump): here.
15274 Be sure to separate long item numbers.
15275 Don't read the members of a rule's prec if its nil.
15276
15277 2002-04-22 Akim Demaille <akim@epita.fr>
15278
15279 * src/output.c (table_size, table_grow): New.
15280 (MAXTABLE): Remove, replace uses with table_size.
15281 (pack_vector): Instead of dying when the table is too big, grow it.
15282
15283 2002-04-22 Akim Demaille <akim@epita.fr>
15284
15285 * data/bison.simple (yyr1): Its type is that of a token number.
15286 * data/bison.c++ (r1_): Likewise.
15287 * tests/regression.at (Web2c Actions): Adjust.
15288
15289 2002-04-22 Akim Demaille <akim@epita.fr>
15290
15291 * src/reader.c (token_translations_init): 256 is now the default
15292 value for the error token, i.e., it will be assigned another
15293 number if the user assigned 256 to one of her tokens.
15294 (reader): Don't force 256 to error.
15295 * doc/bison.texinfo (Symbols): Adjust.
15296 * tests/torture.at (AT_DATA_HORIZONTAL_GRAMMAR)
15297 (AT_DATA_TRIANGULAR_GRAMMAR): Number the tokens as 1, 2, 3
15298 etc. instead of 10, 20, 30 (which was used to `jump' over error
15299 (256) and undefined (2)).
15300
15301 2002-04-22 Akim Demaille <akim@epita.fr>
15302
15303 Propagate more token_number_t.
15304
15305 * src/gram.h (token_number_as_item_number)
15306 (item_number_as_token_number): New.
15307 * src/output.c (GENERATE_OUTPUT_TABLE): New.
15308 Use it to create output_item_number_table and
15309 output_token_number_table.
15310 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
15311 * src/lex.c, src/nullable.c, src/output.c, src/print.c,
15312 * src/print_graph.c, src/reader.c, src/reduce.c, src/state.h,
15313 * src/symtab.c, src/symtab.h: Use token_number_t instead of shorts.
15314
15315 2002-04-22 Akim Demaille <akim@epita.fr>
15316
15317 * src/output.h, src/output.c (get_lines_number): Remove.
15318
15319 2002-04-19 Akim Demaille <akim@epita.fr>
15320
15321 * doc/bison.texinfo (Actions): Make clear that `|' is not the same
15322 as Lex/Flex'.
15323 (Debugging): More details about enabling the debugging features.
15324 (Table of Symbols): Describe $$, $n, @$, and @n.
15325 Suggested by Tim Josling.
15326
15327 2002-04-19 Akim Demaille <akim@epita.fr>
15328
15329 * doc/bison.texinfo: Remove the uses of the obsolete @refill.
15330
15331 2002-04-10 Akim Demaille <akim@epita.fr>
15332
15333 * src/system.h: Rely on HAVE_LIMITS_H.
15334 Suggested by Paul Eggert.
15335
15336 2002-04-09 Akim Demaille <akim@epita.fr>
15337
15338 * tests/calc.at (_AT_CHECK_CALC_ERROR): Receive as argument the
15339 full stderr, and strip it according to the bison options, instead
15340 of composing the error message from different bits.
15341 This makes it easier to check for several error messages.
15342 Adjust all the invocations.
15343 Add an invocation exercising the error token.
15344 Add an invocation demonstrating a stupid error message.
15345 (_AT_DATA_CALC_Y): Follow the GCS: initial column is 1, not 0.
15346 Adjust the tests.
15347 Error message are for stderr, not stdout.
15348
15349 2002-04-09 Akim Demaille <akim@epita.fr>
15350
15351 * src/gram.h, src/gram.c (error_token_number): Remove, use
15352 errtoken->number.
15353 * src/reader.c (reader): Don't specify the user token number (2)
15354 for $undefined, as it uselessly prevents using it.
15355 * src/gram.h (token_number_t): Move to...
15356 * src/symtab.h: here.
15357 (state_t.number): Is a token_number_t.
15358 * src/print.c, src/reader.c: Use undeftoken->number instead of
15359 hard coded 2.
15360 (Even though this 2 is not the same as above: the number of the
15361 undeftoken remains being 2, it is its user token number which
15362 might not be 2).
15363 * src/output.c (prepare_tokens): Rename the `maxtok' muscle with
15364 `user_token_number_max'.
15365 Output `undef_token_number'.
15366 * data/bison.simple, data/bison.c++: Use them.
15367 Be sure to map invalid yylex return values to
15368 `undef_token_number'. This saves us from gratuitous SEGV.
15369
15370 * tests/conflicts.at (Solved SR Conflicts)
15371 (Unresolved SR Conflicts): Adjust.
15372 * tests/regression.at (Web2c Actions): Adjust.
15373
15374 2002-04-08 Akim Demaille <akim@epita.fr>
15375
15376 * data/bison.c++: s/b4_item_number_max/b4_rhs_number_max/.
15377 Adding #line.
15378 Remove the duplicate `typedefs'.
15379 (RhsNumberType): Fix the declaration and various other typos.
15380 Use __ofile__.
15381 * data/bison.simple: Use __ofile__.
15382 * src/scan-skel.l: Handle __ofile__.
15383
15384 2002-04-08 Akim Demaille <akim@epita.fr>
15385
15386 * src/gram.h (item_number_t): New, the type of item numbers in
15387 RITEM. Note that it must be able to code symbol numbers as
15388 positive number, and the negation of rule numbers as negative
15389 numbers.
15390 Adjust all dependencies (pretty many).
15391 * src/reduce.c (rule): Remove this `short *' pointer: use
15392 item_number_t.
15393 * src/system.h (MINSHORT, MAXSHORT): Remove.
15394 Include `limits.h'.
15395 Adjust dependencies to using SHRT_MAX and SHRT_MIN.
15396 (shortcpy): Remove.
15397 (MAXTABLE): Move to...
15398 * src/output.c (MAXTABLE): here.
15399 (prepare_rules): Use output_int_table to output rhs.
15400 * data/bison.simple, data/bison.c++: Adjust.
15401 * tests/torture.at (Big triangle): Move the limit from 254 to
15402 500.
15403 * tests/regression.at (Web2c Actions): Ajust.
15404
15405 Trying with bigger grammars shows various phenomena: at 3000 (28Mb
15406 of grammar file) bison is killed by my system, at 2000 (12Mb) bison
15407 passes, but produces negative #line number, once fixed, GCC is
15408 killed while compiling 14Mb, at 1500 (6.7 Mb of grammar, 8.2Mb of
15409 C), it passes.
15410 * src/state.h (state_h): Code input lines on ints, not shorts.
15411
15412 2002-04-08 Akim Demaille <akim@epita.fr>
15413
15414 * src/reduce.c (reduce_grammar): First reduce the nonterminals,
15415 and then the grammar.
15416
15417 2002-04-08 Akim Demaille <akim@epita.fr>
15418
15419 * src/system.h: No longer using strndup.
15420
15421 2002-04-07 Akim Demaille <akim@epita.fr>
15422
15423 * src/muscle_tab.h (MUSCLE_INSERT_LONG_INT): New.
15424 * src/output.c (output_table_data): Return the longest number.
15425 (prepare_tokens): Output `token_number_max').
15426 * data/bison.simple, data/bison.c++ (b4_sint_type, b4_uint_type):
15427 New.
15428 Use them to define yy_token_number_type/TokenNumberType.
15429 Use this type for yytranslate.
15430 * tests/torture.at (Big triangle): Push the limit from 124 to
15431 253.
15432 * tests/regression.at (Web2c Actions): Adjust.
15433
15434 2002-04-07 Akim Demaille <akim@epita.fr>
15435
15436 * tests/torture.at (Big triangle): New.
15437 (GNU AWK Grammar, GNU Cim Grammar): Move to...
15438 * tests/existing.at: here.
15439
15440 2002-04-07 Akim Demaille <akim@epita.fr>
15441
15442 * src/gram.h, src/gram.c (nitems): Remove, it is an alias of
15443 nritems.
15444 Adjust dependencies.
15445
15446 2002-04-07 Akim Demaille <akim@epita.fr>
15447
15448 * src/reader.c: Normalize increments to prefix form.
15449
15450 2002-04-07 Akim Demaille <akim@epita.fr>
15451
15452 * src/reader.c, symtab.c: Remove debugging code.
15453
15454 2002-04-07 Akim Demaille <akim@epita.fr>
15455
15456 Rename all the `bucket's as `symbol_t'.
15457
15458 * src/gram.c, src/gram.h, src/lex.c, src/lex.h, src/output.c,
15459 * src/reader.c, src/reader.h, src/reduce.c, src/state.h,
15460 * src/symtab.c, src/symtab.h (bucket): Rename as...
15461 (symbol_t): this.
15462 (symbol_list_new, bucket_check_defined, bucket_make_alias)
15463 (bucket_check_alias_consistence, bucket_pack, bucket_translation)
15464 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
15465 (buckets_new, buckets_free, buckets_do): Rename as...
15466 (symbol_list_new, symbol_check_defined, symbol_make_alias)
15467 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
15468 (symbol_new, symbol_free, hash_compare_symbol_t, hash_symbol_t)
15469 (symbols_new, symbols_free, symbols_do): these.
15470
15471 2002-04-07 Akim Demaille <akim@epita.fr>
15472
15473 Use lib/hash for the symbol table.
15474
15475 * src/gram.c (ntokens): Initialize to 1, to reserve a slot for
15476 EOF.
15477 * src/lex.c (lex): Set the `number' member of new terminals.
15478 * src/reader.c (bucket_check_defined, bucket_make_alias)
15479 (bucket_check_alias_consistence, bucket_translation): New.
15480 (reader, grammar_free, readgram, token_translations_init)
15481 (packsymbols): Adjust.
15482 (reader): Number the predefined tokens.
15483 * src/reduce.c (inaccessable_symbols): Just use hard coded numbers
15484 for predefined tokens.
15485 * src/symtab.h (bucket): Remove all the hash table related
15486 members.
15487 * src/symtab.c (symtab): Replace by...
15488 (bucket_table): this.
15489 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
15490 (buckets_new, buckets_do): New.
15491
15492 2002-04-07 Akim Demaille <akim@epita.fr>
15493
15494 * src/gram.c (nitems, nrules, nsyms, ntokens, nvars, nritems)
15495 (start_symbol, max_user_token_number, semantic_parser)
15496 (error_token_number): Initialize.
15497 * src/reader.c (grammar, start_flag, startval, typed, lastprec):
15498 Initialize.
15499 (reader): Don't.
15500 (errtoken, eoftoken, undeftoken, axiom): Extern.
15501
15502 2002-04-07 Akim Demaille <akim@epita.fr>
15503
15504 * src/gram.h (rule_s): prec and precsym are now pointers
15505 to the bucket giving the priority/associativity.
15506 Member `associativity' removed: useless.
15507 * src/reduce.c, src/conflicts.c: Adjust.
15508
15509 2002-04-07 Akim Demaille <akim@epita.fr>
15510
15511 * src/lalr.c, src/LR0.c, src/closure.c, src/gram.c, src/reduce.c:
15512 Properly escape the symbols' TAG when outputting them.
15513
15514 2002-04-07 Akim Demaille <akim@epita.fr>
15515
15516 * src/lalr.h (LA): Is a bitsetv, not bitset*.
15517
15518 2002-04-07 Akim Demaille <akim@epita.fr>
15519
15520 * src/lalr.h, src/lalr.c (LAruleno): Replace with...
15521 (LArule): this, which is an array to rule_t*.
15522 * src/print.c, src/conflicts.c: Adjust.
15523
15524 2002-04-07 Akim Demaille <akim@epita.fr>
15525
15526 * src/gram.h (rule_t): Rename `number' as `user_number'.
15527 `number' is a new member.
15528 Adjust dependencies.
15529 * src/reduce.c (reduce_grammar_tables): Renumber rule_t.number.
15530
15531 2002-04-07 Akim Demaille <akim@epita.fr>
15532
15533 As a result of the previous patch, it is no longer needed
15534 to reorder ritem itself.
15535
15536 * src/reduce.c (reduce_grammar_tables): Don't sort RITEM.
15537
15538 2002-04-07 Akim Demaille <akim@epita.fr>
15539
15540 Be sure never to walk through RITEMS, but use only data related to
15541 the rules themselves. RITEMS should be banished.
15542
15543 * src/output.c (output_token_translations): Rename as...
15544 (prepare_tokens): this.
15545 In addition to `translate', prepare the muscles `tname' and
15546 `toknum', which were handled by...
15547 (output_rule_data): this.
15548 Remove, and move the remainder of its outputs into...
15549 (prepare_rules): this new routines, which also merges content from
15550 (output_gram): this.
15551 (prepare_rules): Be sure never to walk through RITEMS.
15552 (output_stos): Rename as...
15553 (prepare_stos): this.
15554 (output): Always invoke prepare_states, after all, just don't use it
15555 in the output if you don't need it.
15556
15557 2002-04-07 Akim Demaille <akim@epita.fr>
15558
15559 * src/LR0.c (new_state): Display `nstates' as the name of the
15560 newly created state.
15561 Adjust to initialize first_state and last_state if needed.
15562 Be sure to distinguish the initial from the final state.
15563 (new_states): Create the itemset of the initial state, and use
15564 new_state.
15565 * src/closure.c (closure): Now that the initial state has its
15566 items properly set, there is no need for a special case when
15567 creating `ruleset'.
15568
15569 As a result, now the rule 0, reducing to $axiom, is visible in the
15570 outputs. Adjust the test suite.
15571
15572 * tests/conflicts.at (Solved SR Conflicts)
15573 (Unresolved SR Conflicts): Adjust.
15574 * tests/regression.at (Web2c Report, Rule Line Numbers): Idem.
15575 * tests/conflicts.at (S/R in initial): New.
15576
15577 2002-04-07 Akim Demaille <akim@epita.fr>
15578
15579 * src/LR0.c (allocate_itemsets): Don't loop over ritem: loop over
15580 the RHS of the rules.
15581 * src/output.c (output_gram): Likewise.
15582
15583 2002-04-07 Akim Demaille <akim@epita.fr>
15584
15585 * src/gram.h (rule_t): `lhs' is now a pointer to the symbol's
15586 bucket.
15587 Adjust all dependencies.
15588 * src/reduce.c (nonterminals_reduce): Don't forget to renumber the
15589 `number' of the buckets too.
15590 * src/gram.h: Include `symtab.h'.
15591 (associativity): Move to...
15592 * src/symtab.h: here.
15593 No longer include `gram.h'.
15594
15595 2002-04-07 Akim Demaille <akim@epita.fr>
15596
15597 * src/gram.h, src/gram.c (rules_rhs_length): New.
15598 (ritem_longest_rhs): Use it.
15599 * src/gram.h (rule_t): `number' is a new member.
15600 * src/reader.c (packgram): Set it.
15601 * src/reduce.c (reduce_grammar_tables): Move the useless rules at
15602 the end of `rules', and count them out of `nrules'.
15603 (reduce_output, dump_grammar): Adjust.
15604 * src/print.c (print_grammar): It is no longer needed to check for
15605 the usefulness of a rule, as useless rules are beyond `nrules + 1'.
15606 * tests/reduce.at (Reduced Automaton): New test.
15607
15608 2002-04-07 Akim Demaille <akim@epita.fr>
15609
15610 * src/reduce.c (inaccessable_symbols): Fix a buglet: because of a
15611 lacking `+ 1' to nrules, Bison reported as useless a token if it
15612 was used solely to set the precedence of the last rule...
15613
15614 2002-04-07 Akim Demaille <akim@epita.fr>
15615
15616 * data/bison.c++, data/bison.simple: Don't output the current file
15617 name in #line, to avoid useless diffs between two identical
15618 outputs under different names.
15619
15620 2002-04-07 Akim Demaille <akim@epita.fr>
15621
15622 * src/closure.c, src/print.c, src/reader.c, src/reduce.c:
15623 Normalize loops to using `< nrules + 1', not `<= nrules'.
15624
15625 2002-04-07 Akim Demaille <akim@epita.fr>
15626
15627 * TODO: Update.
15628
15629 2002-04-07 Akim Demaille <akim@epita.fr>
15630
15631 * src/output.c, src/reader.c, src/symtab.c, src/symtab.h: Rename
15632 bucket.value as bucket.number.
15633
15634 2002-04-07 Akim Demaille <akim@epita.fr>
15635
15636 * src/closure.c, src/derives.c, src/gram.h, src/lalr.c,
15637 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
15638 * src/reader.c, src/reduce.c: Let rule_t.rhs point directly to the
15639 RHS, instead of being an index in RITEMS.
15640
15641 2002-04-04 Paul Eggert <eggert@twinsun.com>
15642
15643 * doc/bison.texinfo: Update copyright date.
15644 (Rpcalc Lexer, Symbols, Token Decl): Don't assume ASCII.
15645 (Symbols): Warn about running Bison in one character set,
15646 but compiling and/or running in an incompatible one.
15647 Warn about character code 256, too.
15648
15649 2002-04-03 Paul Eggert <eggert@twinsun.com>
15650
15651 * src/bison.data (YYSTACK_ALLOC): Depend on whether
15652 YYERROR_VERBOSE is nonzero, not whether it is defined.
15653
15654 Merge changes from bison-1_29-branch.
15655
15656 2002-03-20 Paul Eggert <eggert@twinsun.com>
15657
15658 Merge fixes from Debian bison_1.34-1.diff.
15659
15660 * configure.in (AC_PREREQ): 2.53.
15661
15662 2002-03-20 Akim Demaille <akim@epita.fr>
15663
15664 * src/conflicts.c (log_resolution): Argument `resolution' is const.
15665
15666 2002-03-19 Paul Eggert <eggert@twinsun.com>
15667
15668 * src/bison.simple (YYCOPY): New macro.
15669 (YYSTACK_RELOCATE): Use it.
15670 Remove Type arg; no longer needed. All callers changed.
15671 (yymemcpy): Remove; no longer needed.
15672
15673 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
15674 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
15675
15676 2002-03-19 Akim Demaille <akim@epita.fr>
15677
15678 Test and fix the #line outputs.
15679
15680 * tests/atlocal.at (GCC): New.
15681 * tests/synclines.at (AT_TEST_SYNCLINE): New macro.
15682 (Prologue synch line, %union synch line, Postprologue synch line)
15683 (Action synch line, Epilogue synch line): New tests.
15684 * src/reader.c (parse_union_decl): Define the muscle stype_line.
15685 * data/bison.simple, data/bison.c++: Use it.
15686
15687 2002-03-19 Akim Demaille <akim@epita.fr>
15688
15689 * tests/regression.at (%nonassoc and eof, Unresolved SR Conflicts)
15690 (Solved SR Conflicts, %expect not enough, %expect right)
15691 (%expect too much): Move to...
15692 * tests/conflicts.at: this new file.
15693
15694 2002-03-19 Akim Demaille <akim@epita.fr>
15695
15696 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
15697 * data/bison.simple, data/bison.c++: Handle the `#define' part, so
15698 that we can move to enums for instance.
15699 * src/output.c (token_definitions_output): Output a list of
15700 `token-name, token-number' instead of the #define.
15701 (output_skeleton): Name this list `b4_tokens', not `b4_tokendefs'.
15702
15703 2002-03-14 Akim Demaille <akim@epita.fr>
15704
15705 Use Gettext 0.11.1.
15706
15707 2002-03-09 Robert Anisko <robert@lrde.epita.fr>
15708
15709 * data/bison.c++: Make the user able to add members to the generated
15710 parser by subclassing.
15711
15712 2002-03-05 Robert Anisko <robert@lrde.epita.fr>
15713
15714 * src/reader.c (read_additionnal_code): `c' should be an integer, not
15715 a character.
15716 Reported by Nicolas Tisserand and Nicolas Burrus.
15717
15718 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
15719
15720 * src/reader.c: Warn about lacking semi-colons, do not complain.
15721
15722 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
15723
15724 * data/bison.c++: Remove a debug line.
15725
15726 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
15727
15728 * data/bison.c++: Unmerge value as yylval and value as yyval. Unmerge
15729 location as yylloc and location as yyloc. Use YYLLOC_DEFAULT, and
15730 provide a default implementation.
15731
15732 2002-03-04 Akim Demaille <akim@epita.fr>
15733
15734 * tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
15735 * tests/output.at (AT_CHECK_OUTPUT): Likewise.
15736 * tests/headers.at (AT_TEST_CPP_GUARD_H): Ditto.
15737 * tests/semantic.at (Parsing Guards): Similarly.
15738 * src/reader.at (readgram): Complain if the last rule is not ended
15739 with a semi-colon.
15740
15741 2002-03-04 Akim Demaille <akim@epita.fr>
15742
15743 * src/warshall.h, src/warshall.c (bitmatrix_print): Move to...
15744 * src/closure.c: here.
15745 (set_firsts): Use bitsetv_reflexive_transitive_closure instead of
15746 RTC.
15747 * src/warshall.h, src/warshall.c: Remove.
15748 * tests/sets.at (Broken Closure): Adjust.
15749
15750 2002-03-04 Akim Demaille <akim@epita.fr>
15751
15752 * src/output.c (output_skeleton): tempdir is const.
15753 bytes_read is unused.
15754
15755 2002-03-04 Akim Demaille <akim@epita.fr>
15756
15757 * lib/bbitset.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
15758 * lib/bitsetv.h, lib/ebitset.c, lib/lbitset.c, lib/sbitset.c:
15759 Update.
15760 From Michael Hayes.
15761
15762 2002-03-04 Akim Demaille <akim@epita.fr>
15763
15764 * src/closure.c (closure): `r' is unused.
15765
15766 2002-03-04 Akim Demaille <akim@epita.fr>
15767
15768 * tests/sets.at (Broken Closure): Add the ending `;'.
15769 * src/reader.at (readgram): Complain if a rule is not ended with a
15770 semi-colon.
15771
15772 2002-03-04 Akim Demaille <akim@epita.fr>
15773
15774 * src/conflicts.c (set_conflicts): Use bitset_disjoint_p.
15775 (count_sr_conflicts): Use bitset_count.
15776 * src/reduce.c (inaccessable_symbols): Ditto.
15777 (bits_size): Remove.
15778 * src/warshall.h, src/warshall.c: Convert to bitsetv.
15779
15780 2002-03-04 Akim Demaille <akim@epita.fr>
15781
15782 * src/closure.c, src/conflicts.c, src/lalr.c, src/print.c,
15783 * src/reduce.c: Remove the `bitset_zero's following the
15784 `bitset_create's, as now it is performed by the latter.
15785
15786 2002-03-04 Akim Demaille <akim@epita.fr>
15787
15788 * lib/bitset.c, lib/bitset.h, lib/bitsetv.c, lib/bitsetv.h,
15789 * lib/ebitset.c, lib/ebitset.h, lib/lbitset.c, lib/lbitset.h,
15790 * lib/sbitset.c, lib/sbitset.h, lib/bbitset.h: Update from the
15791 latest sources from Michael.
15792
15793 2002-03-04 Akim Demaille <akim@epita.fr>
15794
15795 * src/output.c (output): Don't free the grammar.
15796 * src/reader.c (grammar_free): New.
15797 * src/main.c (main): Call it and don't free symtab here.
15798
15799 2002-03-04 Akim Demaille <akim@epita.fr>
15800
15801 * src/lex.c (parse_percent_token): Be sure to 0-end token_buffer
15802 before returning.
15803 Reported by Benoit Perrot.
15804
15805 2002-03-04 Akim Demaille <akim@epita.fr>
15806
15807 Use bitset operations when possible, not loops over bits.
15808
15809 * src/conflicts.c (set_conflicts, count_sr_conflicts): Use
15810 bitset_or.
15811 * src/print.c (print_reductions): Use bitset_and, bitset_andn.
15812 * src/reduce.c (useless_nonterminals): Formatting changes.
15813 * src/warshall.c (TC): Use bitset_or.
15814
15815 2002-03-04 Akim Demaille <akim@epita.fr>
15816
15817 * src/lalr.h, src/lalr.c (tokensetsize): Remove, unused.
15818 * src/system.h (BITS_PER_WORD, WORDSIZE, SETBIT, RESETBIT, BITISSET):
15819 Ditto.
15820
15821 2002-03-04 Akim Demaille <akim@epita.fr>
15822
15823 * src/lalr.c (F): Now a bitset*.
15824 Adjust all dependencies.
15825
15826 2002-03-04 Akim Demaille <akim@epita.fr>
15827
15828 * src/conflicts.c (shiftset, lookaheadset): Now bitset.
15829 Adjust all dependencies.
15830
15831 2002-03-04 Akim Demaille <akim@epita.fr>
15832
15833 * src/L0.c, src/LR0.h (nstates): Be size_t.
15834 Adjust comparisons (signed vs unsigned).
15835 * src/conflics.c, src/lalr.c, src/lalr.h, src/output.c (LA): Now a
15836 bitset*.
15837 Adjust all dependencies.
15838
15839 2002-03-04 Akim Demaille <akim@epita.fr>
15840
15841 * src/closure.c (firsts): Now, also a bitset.
15842 Adjust all dependencies.
15843 (varsetsize): Remove, now unused.
15844 * src/warshall.h, src/warshall.c: Now work on arrays of bitsets.
15845
15846 2002-03-04 Akim Demaille <akim@epita.fr>
15847
15848 * src/print.c: Convert to use bitset.h, not hand coded iterations
15849 over ints.
15850
15851 2002-03-04 Akim Demaille <akim@epita.fr>
15852
15853 * src/reduce.c: Convert to use bitset.h, not hand coded BSet.
15854
15855 2002-03-04 Akim Demaille <akim@epita.fr>
15856
15857 * src/closure.c (ruleset): Be a bitset.
15858 (rulesetsize): Remove.
15859
15860 2002-03-04 Akim Demaille <akim@epita.fr>
15861
15862 * lib/bitset-int.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
15863 * lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/lbitset.c,
15864 * lib/lbitset.h, lib/sbitset.c, lib/sbitset.h: New.
15865 * src/closure.c (fderives): Be an array of bitsets.
15866
15867 2002-02-28 Robert Anisko <robert@lrde.epita.fr>
15868
15869 * data/bison.c++: Merge the two generated headers. Insert a copyright
15870 notice in each output file.
15871
15872 2002-02-28 Akim Demaille <akim@epita.fr>
15873
15874 * data/bison.c++: Copy the prologue of bison.simple to fetch
15875 useful M4 definitions, such as b4_header_guard.
15876
15877 2002-02-25 Akim Demaille <akim@epita.fr>
15878
15879 * src/getargs.c (version): Give the name of the authors, and use a
15880 translator friendly scheme for the bgr
15881 copyright notice.
15882
15883 2002-02-25 Akim Demaille <akim@epita.fr>
15884
15885 * src/output.c (header_output): Remove, now handled completely via
15886 M4.
15887
15888 2002-02-25 Akim Demaille <akim@epita.fr>
15889
15890 * m4/m4.m4: New, from CVS Autoconf.
15891 * configure.in: Invoke it.
15892 * src/output.c (output_skeleton): Use its result instead of the
15893 hard coded name.
15894
15895 2002-02-25 Akim Demaille <akim@epita.fr>
15896
15897 * lib/tempname.c, lib/mkstemp.c, m4/mkstemp.m4: New, stolen from
15898 Fileutils 4.1.5.
15899 * configure.in: Invoke UTILS_FUNC_MKSTEMP.
15900 * src/output.c (output_skeleton): Use mkstemp to create a real
15901 temporary file.
15902 Move the filling of `skeleton' and its muscle to...
15903 (prepare): here.
15904 (output): Move the definition of the prologue muscle to...
15905 (prepare): here.
15906 * src/system.h (DEFAULT_TMPDIR): New.
15907
15908 2002-02-14 Paul Eggert <eggert@twinsun.com>
15909
15910 Remove the support for C++ namespace cleanliness; it was
15911 causing more problems than it was curing, since it didn't work
15912 properly on some nonstandard C++ compilers. This can wait
15913 for a proper C++ parser.
15914
15915 * NEWS: Document this.
15916 * doc/bison.texinfo (Bison Parser, Debugging): Remove special mention
15917 of C++, as it's treated like C now.
15918 * src/bison.simple (YYSTD): Remove.
15919 (YYSIZE_T, YYFPRINTF, YYPARSE_PARAM_ARG, YYPARSE_PARAM_DECL):
15920 Treat C++ just like Standard C instead of trying to support
15921 namespace cleanliness.
15922
15923 2002-02-14 Akim Demaille <akim@epita.fr>
15924
15925 * tests/regression.at (else): Adjust to Andreas' change.
15926
15927 2002-02-14 Akim Demaille <akim@epita.fr>
15928
15929 * lib/Makefile.am (EXTRA_DIST): Ship strnlen.c.
15930
15931 2002-02-13 Andreas Schwab <schwab@suse.de>
15932
15933 * src/output.c (output_rule_data): Don't output NULL, it might
15934 not be defined yet.
15935
15936 2002-02-11 Robert Anisko <robert@lrde.epita.fr>
15937
15938 * data/bison.c++ (YYDEBUG, YYERROR_VERBOSE): After the prologue.
15939 (Copyright notice): Update.
15940
15941 2002-02-11 Akim Demaille <akim@epita.fr>
15942
15943 * tests/regression.at (%nonassoc and eof): Don't include
15944 nonportable headers.
15945
15946 2002-02-08 Robert Anisko <robert@lrde.epita.fr>
15947
15948 * data/bison.c++: Correct error recovery. Make the user able to
15949 initialize the starting location.
15950
15951 2002-02-07 Akim Demaille <akim@epita.fr>
15952
15953 * tests/input.at: New.
15954
15955 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
15956
15957 * data/bison.c++: Replace some direct m4 expansions by constants. Be
15958 more consistent when naming methods and variables. Put preprocessor
15959 directives around tables only needed for debugging.
15960
15961 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
15962
15963 * data/bison.c++ (yy::b4_name::print_): New method, replaces yyprint in
15964 C++ parsers.
15965 (yy::b4_name::parse): Use print_.
15966
15967 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
15968
15969 * data/bison.c++ (yy::b4_name::parse): Error recovery is back.
15970
15971 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
15972
15973 * data/bison.c++ (yy::b4_name::error_): New method, replaces yyerror in
15974 C++ parsers.
15975 (yy::b4_name::parse): Build verbose error messages, and use error_.
15976
15977 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
15978
15979 * data/bison.c++: Fix m4 quoting in comments.
15980
15981 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
15982
15983 * data/bison.c++: Adjust the parser code. Fix some muscles that were
15984 not expanded by m4.
15985
15986 2002-02-05 Akim Demaille <akim@epita.fr>
15987
15988 * data/bison.c++: Adjust to the M4 back end.
15989 More is certainly needed.
15990
15991 2002-02-05 Akim Demaille <akim@epita.fr>
15992
15993 Give a try to M4 as a back end.
15994
15995 * lib/readpipe.c: New, from wdiff.
15996 * src/Makefile.am (DEFS): Define PKGDATADIR, not BISON_SIMPLE and
15997 BISON_HAIRY.
15998 * src/system.h (BISON_HAIRY, BISON_SIMPLE): Remove the DOS and VMS
15999 specific values. Now it is m4 that performs the lookup.
16000 * src/parse-skel.y: Remove.
16001 * src/muscle_tab.c, src/muscle_tab.h (muscles_m4_output): New.
16002 * src/output.c (actions_output, guards_output)
16003 (token_definitions_output): No longer keeps track of the output
16004 line number, hence remove the second argument.
16005 (guards_output): Check against the guard member of a rule, not the
16006 action member.
16007 Adjust callers.
16008 (output_skeleton): Don't look for the skeleton location, let m4 do
16009 that.
16010 Create `/tmp/muscles.m4'. This is temporary, a proper temporary
16011 file will be used.
16012 Invoke `m4' on m4sugar.m4, muscles.m4, and the skeleton.
16013 (prepare): Given that for the time being changesyntax is not
16014 usable in M4, rename the muscles using `-' to `_'.
16015 Define `defines_flag', `output_parser_name' and `output_header_name'.
16016 * src/output.h (actions_output, guards_output)
16017 (token_definitions_output): Adjust prototypes.
16018 * src/scan-skel.l: Instead of scanning the skeletons, it now
16019 processes the output of m4: `__oline__' and `#output'.
16020 * data/bison.simple: Adjust to be used by M4(sugar).
16021 * tests/Makefile.am: Use check_SCRIPTS to make sure `bison' is up
16022 to date.
16023 * tests/bison.in: Use the secrete envvar `BISON_PKGDATADIR'
16024 instead of the dead `BISON_SIMPLE' and `BISON_HAIRY'.
16025 * data/m4sugar/m4sugar.m4, data/m4sugar/version.m4: New,
16026 shamelessly stolen from CVS Autoconf.
16027
16028 2002-02-05 Akim Demaille <akim@epita.fr>
16029
16030 * lib/hash.c, lib/hash.h: Replace with Fileutils 4.1's version.
16031 * configure.in: Check for the declarations of free and malloc.
16032 * src/muscle_tab.c: Adjust.
16033
16034 2002-02-05 Akim Demaille <akim@epita.fr>
16035
16036 * src/muscle_tab.c (muscle_init): Don't default to NULL muscle
16037 which have no values.
16038
16039 2002-02-05 Akim Demaille <akim@epita.fr>
16040
16041 * src/bison.simple, src/bison.hairy, src/bison.c++: Move to...
16042 * data/: here.
16043
16044 2002-01-29 Paul Eggert <eggert@twinsun.com>
16045
16046 * src/bison.simple (YYSIZE_T): Do not define merely because
16047 YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
16048 On some platforms, <alloca.h> does not declare YYSTD (size_t).
16049
16050 2002-01-27 Akim Demaille <akim@epita.fr>
16051
16052 Fix `%nonassoc and eof'.
16053
16054 * src/state.c (errs_dup): Aaaah! The failure was due to bytes
16055 which were not properly copied! Replace
16056 memcpy (res->errs, src->errs, src->nerrs);
16057 with
16058 memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
16059 !!!
16060 * tests/regression.at (%nonassoc and eof): Adjust to newest
16061 Autotest: `.' is not in the PATH.
16062
16063 2002-01-27 Akim Demaille <akim@epita.fr>
16064
16065 * tests/sets.at (AT_EXTRACT_SETS): New.
16066 (Nullable): Use it.
16067 (Firsts): New.
16068
16069 2002-01-26 Akim Demaille <akim@epita.fr>
16070
16071 * tests/actions.at, tests/calc.at, tests/headers.at,
16072 * tests/torture.at: Adjust to the newest Autotest which no longer
16073 forces `.' in the PATH.
16074
16075 2002-01-25 Akim Demaille <akim@epita.fr>
16076
16077 * tests/regression.at (%nonassoc and eof): New.
16078 Suggested by Robert Anisko.
16079
16080 2002-01-24 Akim Demaille <akim@epita.fr>
16081
16082 Bison dumps core when trying to complain about broken input files.
16083 Reported by Cris van Pelt.
16084
16085 * src/lex.c (parse_percent_token): Be sure to set token_buffer.
16086 * tests/regression.at (Invalid input: 1, Invalid input: 2): Merge
16087 into...
16088 (Invalid inputs): Strengthen: exercise parse_percent_token.
16089
16090 2002-01-24 Robert Anisko <robert.anisko@epita.fr>
16091
16092 * src/Makefile.am: Add bison.c++.
16093 * src/bison.c++: New skeleton.
16094
16095 2002-01-21 Paolo Bonzini <bonzini@gnu.org>
16096
16097 * po/it.po: New.
16098
16099 2002-01-21 Kees Zeelenberg <kzlg@users.sourceforge.net>
16100
16101 * src/files.c (skeleton_find) [MSDOS]: Fix cp definition.
16102
16103 2002-01-20 Marc Autret <marc@gnu.org>
16104
16105 * src/files.c (compute_output_file_names): Fix
16106
16107 2002-01-20 Marc Autret <marc@gnu.org>
16108
16109 * tests/output.at: New test.
16110 * src/files.c (compute_base_names): Don't map extensions when
16111 the YACC flag is set, use defaults.
16112 Reported by Evgeny Stambulchik.
16113
16114 2002-01-20 Marc Autret <marc@gnu.org>
16115
16116 * src/system.h: Need to define __attribute__ away for non-GCC
16117 compilers as well (i.e., the vendor C compiler).
16118 Suggested by Albert Chin-A-Young.
16119
16120 2002-01-11 Tim Van Holder <tim.van.holder@pandora.be>
16121
16122 * lib/hash.h, lib/hash.c: Renamed __P to PARAMS and used the
16123 canonical definition.
16124 * src/system.h: Use the canonical definition for PARAMS (avoids
16125 a conflict with the macro from lib/hash.h).
16126
16127 2002-01-11 Akim Demaille <akim@epita.fr>
16128
16129 * configure.in: Use AC_FUNC_STRNLEN.
16130 Fixes the failures observed on AIX 4.3 by H.Merijn Brand.
16131
16132 2002-01-09 Akim Demaille <akim@epita.fr>
16133
16134 * src/files.c, src/files.h (output_infix): New.
16135 (tab_extension): Remove.
16136 (compute_base_names): Compute the former, drop the latter.
16137 * src/output.c (prepare): Insert the muscles `output-infix', and
16138 `output-suffix'.
16139 * src/parse-skel.y (string, string.1): New.
16140 (section.header): Use it.
16141 (section.yacc): Remove.
16142 (prefix): Remove too.
16143 * src/scan-skel.l: Adjust.
16144 * src/bison.simple, src/bison.hairy: Adjust.
16145
16146 2002-01-09 Akim Demaille <akim@epita.fr>
16147
16148 * configure.in (WERROR_CFLAGS): Compute it.
16149 * src/Makefile.am (CFLAGS): Pass it.
16150 * tests/atlocal.in (CFLAGS): Idem.
16151 * src/files.c: Fix a few warnings.
16152 (get_extension_index): Remove, unused.
16153
16154 2002-01-08 Akim Demaille <akim@epita.fr>
16155
16156 * src/getargs.c (AS_FILE_NAME): New.
16157 (getargs): Use it to convert DOSish file names.
16158 * src/files.c (base_name): Rename as full_base_name to avoid
16159 clashes with `base_name ()'.
16160 (filename_split): New.
16161 (compute_base_names): N-th rewrite, using filename_split.
16162
16163 2002-01-08 Akim Demaille <akim@epita.fr>
16164
16165 * lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
16166 New, stolen from the Fileutils 4.1.
16167 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
16168 * configure.in: Check for the presence of memrchr, and of its
16169 prototype.
16170
16171 2002-01-07 Tim Van Holder <tim.van.holder@pandora.be>
16172
16173 * lib/hash.h (__P): Added definition for this macro.
16174 * src/Makefile.am: Add parse-skel.c and scan-skel.c to
16175 BUILT_SOURCES, to ensure they are generated first.
16176 * src/parse-skel.y: Use YYERROR_VERBOSE instead of
16177 %error-verbose to allow bootstrapping with bison 1.30x.
16178
16179 2002-01-06 Akim Demaille <akim@epita.fr>
16180
16181 * src/reader.c (parse_braces): Don't fetch the next char, the
16182 convention is to fetch on entry.
16183 * tests/torture.at (GNU Cim Grammar): Reintroduce their weird
16184 'switch' without a following semicolon.
16185 * tests/regression.at (braces parsing): New.
16186
16187 2002-01-06 Akim Demaille <akim@epita.fr>
16188
16189 Bison is dead wrong in its RR conflict reports.
16190
16191 * tests/torture.at (GNU Cim Grammar): New.
16192 * src/conflicts.c (count_rr_conflicts): Fix.
16193
16194 2002-01-06 Akim Demaille <akim@epita.fr>
16195
16196 Creating package.m4 from configure.ac causes too many problems.
16197
16198 * tests/Makefile.am (package.m4): Create it by hand,
16199 AC_CONFIG_TESTDIR no longer does in the most recent CVS Autoconf.
16200
16201 2002-01-06 Akim Demaille <akim@epita.fr>
16202
16203 * src/Makefile.am (bison_SOURCES): Add parse-skel.h and
16204 skeleton.h.
16205
16206 2002-01-04 Paul Eggert <eggert@twinsun.com>
16207
16208 * doc/bison.texinfo (Debugging):
16209 Remove YYSTDERR; it's no longer defined or used.
16210 Also, s/cstdio.h/cstdio/.
16211
16212 2002-01-03 Akim Demaille <akim@epita.fr>
16213
16214 * tests/bison.in, tests/atlocal.in: Adjust to CVS Autoconf.
16215
16216 2002-01-03 Akim Demaille <akim@epita.fr>
16217
16218 * src/parse-skel.y (process_skeleton): Don't bind the parser's
16219 tracing code to --trace, wait for a better --trace option, with
16220 args.
16221
16222 2002-01-03 Akim Demaille <akim@epita.fr>
16223
16224 * src/bison.simple (YYSTDERR): Remove, replace `stderr'.
16225 The ISO C++ standard is extremely clear about it: stderr is
16226 considered a macro, not a regular symbol (see table 94 `Header
16227 <cstdio> synopsis', [lib.c.files] 27.8.2 C Library files).
16228 Therefore std:: does not apply to it. It still does with fprintf.
16229 Also, s/cstdio.h/cstdio/.
16230
16231 2002-01-03 Akim Demaille <akim@epita.fr>
16232
16233 * lib/quotearg.c: Use `#include "..."' instead of `#include <...>'
16234 for non system headers.
16235
16236 2002-01-02 Akim Demaille <akim@epita.fr>
16237
16238 Equip the skeleton chain with location tracking, runtime trace,
16239 pure parser and scanner.
16240
16241 * src/parse-skel.y: Request a pure parser, locations, and prefix
16242 renaming.
16243 (%union): Having several members with the same type does not help
16244 type mismatches, simplify.
16245 (YYPRINT, yyprint): New.
16246 (yyerror): ``Rename'' (there is a #define yyerror skel_error) as...
16247 (skel_error): this.
16248 Handle locations.
16249 * src/scan-skel.l: Adjust to these changes.
16250 * src/skeleton.h (LOCATION_RESET, LOCATION_LINES, LOCATION_STEP)
16251 (LOCATION_PRINT, skel_control_t): New.
16252
16253 2001-12-30 Akim Demaille <akim@epita.fr>
16254
16255 * src/parse-skel.y: Get rid of the shift/reduce conflict:
16256 replace `gb' with BLANKS.
16257 * src/scan-skel.l: Adjust.
16258
16259 2001-12-30 Akim Demaille <akim@epita.fr>
16260
16261 * src/system.h: We don't need nor want bcopy.
16262 Throw away MS-DOS crap: we don't need getpid.
16263 * configure.in: We don't need strndup. It was even causing
16264 problems: because Flex includes the headers *before* us,
16265 _GNU_SOURCE is not defined by config.h, and therefore strndup was
16266 not visible.
16267 * lib/xstrndup.c: New.
16268 * src/scan-skel.l: Use it.
16269 Be sure to initialize yylval.muscle member when scanning a MUSCLE.
16270 * src/parse-skel.y: Use %directives instead of #defines.
16271
16272 2001-12-30 Akim Demaille <akim@epita.fr>
16273
16274 * src/skeleton.h: New.
16275 * src/output.c (output_parser, output_master_parser): Remove, dead
16276 code.
16277 * src/output.h (get_lines_number, actions_output, guards_output)
16278 (token_definitions_output): Prototype them.
16279 * src/parse-skel.y: Add the license notice.
16280 Include output.h and skeleton.h.
16281 (process_skeleton): Returns void, and takes a single parameter.
16282 * src/scan-skel.l: Add the license notice.
16283 Include skeleton.h.
16284 Don't use %option yylineno: it seems that then Flex imagines
16285 REJECT has been used, and therefore it won't reallocate its
16286 buffers (which makes no other sense to me than a bug). It results
16287 in warnings for `unused: yy_flex_realloc'.
16288
16289 2001-12-30 Robert Anisko <robert.anisko@epita.fr>
16290
16291 * src/muscle_tab.h (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
16292 (MUSCLE_INSERT_PREFIX): ...to there.
16293 * src/output.c (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
16294 (MUSCLE_INSERT_PREFIX): Move from here...
16295
16296 * src/bison.hairy: Add a section directive. Put braces around muscle
16297 names. This parser skeleton is still broken, but Bison should not
16298 choke on a bad muscle 'syntax'.
16299 * src/bison.simple: Add a section directive. Put braces around muscle
16300 names.
16301
16302 * src/files.h (strsuffix, stringappend): Add declarations.
16303 (tab_extension): Add declaration.
16304 (short_base_name): Add declaration.
16305
16306 * src/files.c (strsuffix, stringappend): No longer static. These
16307 functions are used in the skeleton parser.
16308 (tab_extension): New.
16309 (compute_base_names): Use the computations done in this function
16310 to guess if the generated parsers should have '.tab' in their
16311 names.
16312 (short_base_name): No longer static.
16313
16314 * src/output.c (output_skeleton): New.
16315 (output): Disable call to output_master_parser, and give a try to
16316 a new skeleton handling system.
16317 (guards_output, actions_output): No longer static.
16318 (token_definitions_output, get_lines_number): No longer static.
16319
16320 * configure.in: Use AM_PROG_LEX and AC_PROG_YACC.
16321
16322 * src/Makefile.am (bison_SOURCES): Add scan-skel.l and
16323 parse-skel.y.
16324
16325 * src/parse-skel.y: New file.
16326 * src/scan-skel.l: New file.
16327
16328 2001-12-29 Akim Demaille <akim@epita.fr>
16329
16330 %name-prefix is broken.
16331
16332 * src/files.c (spec_name_prefix): Initialize to NULL, not to "yy".
16333 Adjust all dependencies.
16334 * tests/headers.at (export YYLTYPE): Strengthen this test: use
16335 %name-prefix.
16336
16337 Renaming yylval but not yylloc is not consistent. Now we do.
16338
16339 * src/bison.simple: Prefix yylloc if used.
16340 * doc/bison.texinfo (Decl Summary): Document that.
16341
16342 2001-12-29 Akim Demaille <akim@epita.fr>
16343
16344 * doc/bison.texinfo: Promote `%long-directive' over
16345 `%long_directive'.
16346 Remove all references to fixed-output-files, yacc is enough.
16347
16348 2001-12-29 Akim Demaille <akim@epita.fr>
16349
16350 * src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the
16351 user prologue. These are defaults.
16352 * tests/actions.at (Mid-rule actions): Make sure the user can
16353 define YYDEBUG and YYERROR_VERBOSE.
16354
16355 2001-12-29 Akim Demaille <akim@epita.fr>
16356
16357 * src/output.c (header_output): Don't forget to export YYLTYPE and
16358 yylloc.
16359 * tests/headers.at (export YYLTYPE): New, make sure it does.
16360 * tests/regression.at (%union and --defines, Invalid CPP headers):
16361 Move to...
16362 * tests/headers.at: here.
16363
16364 2001-12-29 Akim Demaille <akim@epita.fr>
16365
16366 * src/gram.h (rule_s): Member `assoc' is of type `associativity'.
16367
16368 2001-12-29 Akim Demaille <akim@epita.fr>
16369
16370 * tests/actions.at (Mid-rule actions): Output on a single line
16371 instead of several.
16372
16373 2001-12-29 Akim Demaille <akim@epita.fr>
16374
16375 * doc/bison.texinfo: Formatting changes.
16376
16377 2001-12-29 Akim Demaille <akim@epita.fr>
16378
16379 Don't store the token defs in a muscle, just be ready to output it
16380 on command. Now possible via `symbols'. Fixes a memory leak.
16381
16382 * src/output.c (token_definitions_output): New.
16383 (output_parser, header_output): Use it.
16384 * src/reader.c (symbols_save): Remove.
16385
16386 2001-12-29 Akim Demaille <akim@epita.fr>
16387
16388 * src/bison.simple: Do not provide a default for YYSTYPE and
16389 YYLTYPE before the user's prologue. Otherwise it's hardly... a
16390 default.
16391
16392 2001-12-29 Akim Demaille <akim@epita.fr>
16393
16394 Mid-rule actions are simply... ignored!
16395
16396 * src/reader.c (readgram): Be sure to attach mid-rule actions to
16397 the empty-rule associated to the dummy symbol, not to the host
16398 rule.
16399 * tests/actions.at (Mid-rule actions): New.
16400
16401 2001-12-29 Akim Demaille <akim@epita.fr>
16402
16403 Memory leak.
16404
16405 * src/reader.c (reader): Free grammar.
16406
16407 2001-12-29 Akim Demaille <akim@epita.fr>
16408
16409 Memory leak.
16410
16411 * src/LR0.c (new_itemsets): Don't allocate `shift_symbol' here,
16412 since it allocates it for each state, although only one is needed.
16413 (allocate_storage): Do it here.
16414
16415 2001-12-29 Akim Demaille <akim@epita.fr>
16416
16417 * src/options.h, src/options.c (create_long_option_table): Rename
16418 as...
16419 (long_option_table_new): this, with a clearer prototype.
16420 (percent_table): Remove, unused,
16421 * src/getargs.c (getargs): Adjust.
16422
16423 2001-12-29 Akim Demaille <akim@epita.fr>
16424
16425 * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
16426 * src/print.c, src/print_graph.c, src/state.h: Rename state_table
16427 as states.
16428
16429 2001-12-29 Akim Demaille <akim@epita.fr>
16430
16431 * src/lalr.c (build_relations): Rename `states' as `states1'.
16432 Sorry, I don't understand exactly what it is, no better name...
16433
16434 2001-12-29 Akim Demaille <akim@epita.fr>
16435
16436 * src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
16437 * src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
16438 * src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
16439 as rules.
16440
16441 2001-12-29 Akim Demaille <akim@epita.fr>
16442
16443 * src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
16444 ago.
16445
16446 2001-12-29 Akim Demaille <akim@epita.fr>
16447
16448 * src/reader.c, src/reader.h (user_toknums): Remove.
16449 Adjust all users to use symbols[i]->user_token_number.
16450
16451 2001-12-29 Akim Demaille <akim@epita.fr>
16452
16453 * src/gram.c, src/gram.h (sprec, sassoc): Remove.
16454 Adjust all users to use symbols[i]->prec or ->assoc.
16455
16456 2001-12-29 Akim Demaille <akim@epita.fr>
16457
16458 * src/reader.c, src/reader.h (tags): Remove.
16459 Adjust all users to use symbols[i]->tag.
16460
16461 2001-12-29 Akim Demaille <akim@epita.fr>
16462
16463 * src/gram.h, src/gram.c (symbols): New, similar to state_table
16464 and rule_table.
16465 * src/reader.c (packsymbols): Fill this table.
16466 Drop sprec.
16467 * src/conflicts.c (resolve_sr_conflict): Adjust.
16468 * src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
16469 single table.
16470 Use symbols[i]->tag instead of tags[i].
16471
16472 2001-12-29 Akim Demaille <akim@epita.fr>
16473
16474 * tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
16475 In addition, put a comment in there, to replace...
16476 * tests/regression.at (%union and C comments): Remove.
16477
16478 2001-12-29 Akim Demaille <akim@epita.fr>
16479
16480 * tests/regression.at (Web2c Actions): Blindly move the actual
16481 output as expected output. The contents *seem* right to me, but I
16482 can't pretend reading perfectly parser tables... Nonetheless, all
16483 the other tests pass correctly, the table look OK, even though the
16484 presence of `$axiom' is to be noted: AFAICS it is useless (but
16485 harmless).
16486
16487 2001-12-29 Akim Demaille <akim@epita.fr>
16488
16489 * src/reader.c (readgram): Don't add the rule 0 if there were no
16490 rules read. In other words, add it _after_ having performed
16491 grammar sanity checks.
16492 Fixes the `tests/regression.at (Invalid input: 1)' Failure.
16493
16494 2001-12-29 Akim Demaille <akim@epita.fr>
16495
16496 * tests/regression.at (Web2c Report): Catch up: the rule 0 is now
16497 visible, and some states have now a different number.
16498
16499 2001-12-29 Akim Demaille <akim@epita.fr>
16500
16501 * src/reader.c (readgram): Bind the initial rule's lineno to that
16502 of the first rule.
16503 * tests/regression.at (Rule Line Numbers, Unresolved SR Conflicts):
16504 (Solved SR Conflicts): Adjust rule 0's line number.
16505
16506 2001-12-29 Akim Demaille <akim@epita.fr>
16507
16508 Fix the `GAWK Grammar' failure.
16509
16510 * src/LR0.c (final_state): Initialize to -1 so that we do compute
16511 the reductions of the first state which was mistakenly confused
16512 with the final state because precisely final_state was initialized
16513 to 0.
16514 * tests/sets.at (Nullable): Adjust: state 0 does have lookaheads,
16515 now noticed by Bison.
16516 * tests/regression.at (Rule Line Numbers): Adjust: state 0 does
16517 have a reduction on $default.
16518
16519 2001-12-29 Akim Demaille <akim@epita.fr>
16520
16521 * src/gram.c (ritem_print): Be sure to subtract 1 when displaying
16522 rule line numbers.
16523 * src/closure.c (print_closure): Likewise.
16524 * src/derives.c (print_derives): Likewise.
16525 * tests/sets.at (Nullable): Adjust: the rule numbers are correct
16526 now.
16527
16528 2001-12-29 Akim Demaille <akim@epita.fr>
16529
16530 * src/lalr.c (lookaheads_print): New.
16531 (lalr): Call it when --trace-flag.
16532 * tests/sets.at (Nullable): Adjust: when tracing, the lookaheads
16533 are dumped.
16534
16535 2001-12-29 Akim Demaille <akim@epita.fr>
16536
16537 * src/derives.c (print_derives): Be sure to use `>= 0', not `> 0',
16538 when walking through ritem, even via rule->rhs.
16539 * src/reduce.c (dump_grammar, useful_production, reduce_output)
16540 (useful_production, useless_nonterminals): Likewise.
16541 (reduce_grammar_tables): Likewise, plus update nritems.
16542 * src/nullable.c (set_nullable): Likewise.
16543 * src/lalr.c (build_relations): Likewise.
16544 * tests/sets.at (Nullable): Adjust.
16545 Fortunately, now, the $axiom is no longer nullable.
16546
16547 2001-12-29 Akim Demaille <akim@epita.fr>
16548
16549 * src/LR0.c (generate_states): Use nritems, not nitems, nor using
16550 the 0-sentinel.
16551 * src/gram.c (ritem_longest_rhs): Likewise.
16552 * src/reduce.c (nonterminals_reduce): Likewise.
16553 * src/print_graph.c (print_graph): Likewise.
16554 * src/output.c (output_rule_data): Likewise.
16555 * src/nullable.c (set_nullable): Likewise.
16556
16557 2001-12-29 Akim Demaille <akim@epita.fr>
16558
16559 * src/output.c: Comment changes.
16560
16561 2001-12-27 Paul Eggert <eggert@twinsun.com>
16562
16563 * src/bison.simple (YYSTACK_ALLOC, YYSIZE_T): Remove special
16564 cases for non-GNU systems like AIX, HP-UX, SGI, Sun, and
16565 Sparc, as they were causing more porting problems than the
16566 (minor) performance improvement was worth.
16567
16568 Also, catch up with 1.31's YYSTD.
16569
16570 2001-12-27 Akim Demaille <akim@epita.fr>
16571
16572 * src/output.c (output_gram): Rely on nritems, not the
16573 0-sentinel. See below.
16574 Use -1 as separator, not 0.
16575 * src/bison.simple (yyparse): Subtract 1 to the rule numbers.
16576 Rely on -1 as separator in yyrhs, instead of 0.
16577 * tests/calc.at (AT_CHECK_CALC): Now, the parsers no longer issue
16578 twice `Now at end of input', therefore there are two lines less to
16579 expect.
16580
16581 2001-12-27 Akim Demaille <akim@epita.fr>
16582
16583 * tests/regression.at (Unresolved SR Conflicts):
16584 (Solved SR Conflicts, Rule Line Numbers): Adjust to the changes
16585 below.
16586
16587 2001-12-27 Akim Demaille <akim@epita.fr>
16588
16589 * src/LR0.c (new_state): Recognize the final state by the fact it
16590 is reached by eoftoken.
16591 (insert_start_shifting_state, insert_eof_shifting_state)
16592 (insert_accepting_state, augment_automaton): Remove, since now
16593 these states are automatically computed from the initial state.
16594 (generate_states): Adjust.
16595 * src/print.c: When reporting a rule number to the user, substract
16596 1, so that the axiom rule is rule 0, and the first user rule is 1.
16597 * src/reduce.c: Likewise.
16598 * src/print_graph.c (print_core): For the time being, just as for
16599 the report, depend upon --trace-flags to dump the full set of
16600 items.
16601 * src/reader.c (readgram): Once the grammar read, insert the rule
16602 0: `$axiom: START-SYMBOL $'.
16603 * tests/set.at: Adjust: rule 0 is now displayed, and since the
16604 number of the states has changed (the final state is no longer
16605 necessarily the last), catch up.
16606
16607 2001-12-27 Akim Demaille <akim@epita.fr>
16608
16609 Try to make the use of the eoftoken valid. Given that its value
16610 is 0 which was also used as a sentinel in ritem, (i) make sure >= 0
16611 is used instead of > 0 where appropriate, (ii), depend upon nritems
16612 instead of the 0-sentinel.
16613
16614 * src/gram.h, src/gram.c (nritems): New.
16615 Expected to be duplication of nitems, but for the time being...
16616 * src/reader.c (packgram): Assert nritems and nitems are equal.
16617 * src/LR0.c (allocate_itemsets, new_itemsets): Adjust.
16618 * src/closure.c (print_closure, print_fderives): Likewise.
16619 * src/gram.c (ritem_print): Likewise.
16620 * src/print.c (print_core, print_grammar): Likewise.
16621 * src/print_graph.c: Likewise.
16622
16623 2001-12-27 Akim Demaille <akim@epita.fr>
16624
16625 * src/main.c (main): If there are complains after grammar
16626 reductions, then output the report anyway if requested, then die.
16627 * src/symtab.c (bucket_new): Initialize `value' to -1, not 0.
16628 * src/reader.c (eoftoken): New.
16629 (parse_token_decl): If the token being defined has value `0', it
16630 is the eoftoken.
16631 (packsymbols): No longer hack `tags' to insert `$' by hand.
16632 Be sure to preserve the value of the eoftoken.
16633 (reader): Make sure eoftoken is defined.
16634 Initialize nsyms to 0: now eoftoken is created just like the others.
16635 * src/print.c (print_grammar): Don't special case the eof token.
16636 * src/regression.at: Adjust: `$' has value 0, not -1, which was a
16637 lie anyway, albeit pleasant.
16638 * tests/calc.at: Exercise error messages with eoftoken.
16639 Change the grammar so that empty input is invalid.
16640 Adjust expectations.
16641 When yyungeting, be sure to use a valid yylloc: use last_yylloc.
16642
16643 2001-12-27 Akim Demaille <akim@epita.fr>
16644
16645 * configure.in: Check the protos of strchr ans strspn.
16646 Replace strchr if needed.
16647 * src/system.h: Provide the protos of strchr, strspn and memchr if
16648 missing.
16649 * lib/strchr.c: New.
16650 * src/reader.c (symbols_save): Use strchr.
16651
16652 2001-12-27 Akim Demaille <akim@epita.fr>
16653
16654 * src/print.c, src/print_graph.c (escape): New.
16655 Use it to quote the TAGS outputs.
16656 * src/print_graph.c (print_state): Now errors are in red, and
16657 reductions in green.
16658 Prefer high to wide: output the state number on a line of its own.
16659
16660 2001-12-27 Akim Demaille <akim@epita.fr>
16661
16662 * src/state.h, src/state.c (reductions_new): New.
16663 * src/LR0.c (set_state_table): Let all the states have a
16664 `reductions', even if reduced to 0.
16665 (save_reductions): Adjust.
16666 * src/lalr.c (initialize_LA, initialize_lookaheads): Adjust.
16667 * src/print.c (print_reductions, print_actions): Adjust.
16668 * src/output.c (action_row): Adjust.
16669
16670 2001-12-27 Akim Demaille <akim@epita.fr>
16671
16672 * src/state.h, src/state.c (errs_new, errs_dup): New.
16673 * src/LR0.c (set_state_table): Let all the states have an errs,
16674 even if reduced to 0.
16675 * src/print.c (print_errs, print_reductions): Adjust.
16676 * src/output.c (output_actions, action_row): Adjust.
16677 * src/conflicts.c (resolve_sr_conflict): Adjust.
16678
16679 2001-12-27 Akim Demaille <akim@epita.fr>
16680
16681 * src/lalr.c (set_goto_map, initialize_F): Use SHIFT_SYMBOL.
16682
16683 2001-12-27 Akim Demaille <akim@epita.fr>
16684
16685 * src/conflicts.c, src/conflicts.h (print_reductions): Move to...
16686 * src/print.c: here.
16687 (lookaheadset, shiftset): New, used as additional storage by
16688 print_reductions.
16689 (print_results): Adjust.
16690 (print_shifts, print_gotos, print_errs): New, extracted from...
16691 (print_actions): here.
16692 * src/print_graph.c (print_actions): Remove dead code.
16693
16694 2001-12-27 Akim Demaille <akim@epita.fr>
16695
16696 * src/reader.c (copy_dollar, copy_at): Better checking of `n' in
16697 `$n' and `@n'.
16698
16699 2001-12-27 Akim Demaille <akim@epita.fr>
16700
16701 * src/lalr.c (add_lookback_edge): Use state_t instead of ints.
16702 (build_relations): Adjust.
16703
16704 2001-12-27 Akim Demaille <akim@epita.fr>
16705
16706 * src/lalr.c (set_goto_map): Remove a wrong but benign loop
16707 duplication.
16708
16709 2001-12-27 Akim Demaille <akim@epita.fr>
16710
16711 * src/reader.c (packgram): Catch nitems overflows.
16712
16713 2001-12-27 Akim Demaille <akim@epita.fr>
16714
16715 * src/files.c, src/files.h (guard_obstack): Remove.
16716 * src/output.c (output): Adjust.
16717 * src/reader.c (parse_braces): New, factoring...
16718 (copy_action, copy_guard): these two which are renamed as...
16719 (parse_action, parse_guard): these.
16720 As a voluntary consequence, using braces around guards is now
16721 mandatory.
16722
16723 2001-12-27 Akim Demaille <akim@epita.fr>
16724
16725 * src/gram.h (rule_t): `guard' and `guard_line' are new members.
16726 * src/reader.c (symbol_list): `guard' and `guard_line' are new
16727 members.
16728 (symbol_list_new): Adjust.
16729 (copy_action): action_line is the first line, not the last.
16730 (copy_guard): Just as for actions, store the `action' only, not
16731 the switch/case/break flesh.
16732 Don't parse the user action that might follow the guard, let...
16733 (readgram): do it, i.e., now, there can be an action after a
16734 guard.
16735 In other words the guard is just explicitly optional.
16736 (packgram): Adjust.
16737 * src/output.c (guards_output): New.
16738 (output_parser): Call it when needed.
16739 (output): Also free the guard and attrs obstacks.
16740 * src/files.c, src/files.h (obstack_save): Remove.
16741 (output_files): Remove.
16742 As a result, if one needs the former `.act' file, using an
16743 appropriate skeleton which requires actions and guards is now
16744 required.
16745 * src/main.c (main): Adjust.
16746 * tests/semantic.at: New.
16747 * tests/regression.at: Use `input.y' as input file name.
16748 Avoid 8+3 problems by requiring input.c when the test needs the
16749 parser.
16750
16751 2001-12-27 Akim Demaille <akim@epita.fr>
16752
16753 * src/reader.c (symbol_list_new): Be sure to initialize all the
16754 fields.
16755
16756 2001-12-27 Akim Demaille <akim@epita.fr>
16757
16758 All the hacks using a final pseudo state are now useless.
16759
16760 * src/LR0.c (set_state_table): state_table holds exactly nstates.
16761 * src/lalr.c (nLA): New.
16762 (initialize_LA, compute_lookaheads, initialize_lookaheads): Use it
16763 instead of lookaheadsp from the pseudo state (nstate + 1).
16764
16765 2001-12-27 Akim Demaille <akim@epita.fr>
16766
16767 * src/output.c (action_row, token_actions): Use a state_t instead
16768 of a integer, and nlookaheads instead of the following state's
16769 lookaheadsp.
16770
16771 2001-12-27 Akim Demaille <akim@epita.fr>
16772
16773 * src/conflicts.c (log_resolution, flush_shift)
16774 (resolve_sr_conflict, set_conflicts, solve_conflicts)
16775 (count_sr_conflicts, count_rr_conflicts, conflicts_output)
16776 (conflicts_print, print_reductions): Use a state_t instead of an
16777 integer when referring to a state.
16778 As much as possible, depend upon nlookaheads, instead of the
16779 `lookaheadsp' member of the following state (since lookaheads of
16780 successive states are successive, the difference between state n + 1
16781 and n served as the number of lookaheads for state n).
16782 * src/lalr.c (add_lookback_edge): Likewise.
16783 * src/print.c (print_core, print_actions, print_state)
16784 (print_results): Likewise.
16785 * src/print_graph.c (print_core, print_actions, print_state)
16786 (print_graph): Likewise.
16787 * src/conflicts.h: Adjust.
16788
16789 2001-12-27 Akim Demaille <akim@epita.fr>
16790
16791 * src/bison.hairy: Formatting/comment changes.
16792 ANSIfy.
16793 Remove `register' indications.
16794 Add plenty of `static'.
16795
16796 2001-12-27 Akim Demaille <akim@epita.fr>
16797
16798 * src/output.c (prepare): Drop the muscle `ntbase' which
16799 duplicates ntokens.
16800 * src/bison.simple: Formatting/comment changes.
16801 Use YYNTOKENS only, which is documented, but not YYNTBASE, which
16802 is an undocumented synonym.
16803
16804 2001-12-22 Akim Demaille <akim@epita.fr>
16805
16806 * src/output.c (output_table_data): Change the prototype to use
16807 `int' for array ranges: some invocations do pass an int, not a
16808 short.
16809 Reported by Wayne Green.
16810
16811 2001-12-22 Akim Demaille <akim@epita.fr>
16812
16813 Some actions of web2c.y are improperly triggered.
16814 Reported by Mike Castle.
16815
16816 * src/lalr.c (traverse): s/F (i)[k] = F (j)[k]/F (j)[k] = F (i)[k]/.
16817 * tests/regression.at (Web2c): Rename as...
16818 (Web2c Report): this.
16819 (Web2c Actions): New.
16820
16821 2001-12-22 Akim Demaille <akim@epita.fr>
16822
16823 Reductions in web2c.y are improperly reported.
16824 Reported by Mike Castle.
16825
16826 * src/conflicts.c (print_reductions): Fix.
16827 * tests/regression.at (Web2c): New.
16828
16829 2001-12-18 Akim Demaille <akim@epita.fr>
16830
16831 Some host fail on `assert (!"foo")', which expands to
16832 ((!"foo") ? (void)0 : __assert("!"foo."", __FILE__, __LINE__))
16833 Reported by Nelson Beebee.
16834
16835 * src/output.c, src/vcg.c: Replace `assert (!"it succeeded")' with
16836 `#define it_succeeded 0' and `assert (it_succeeded)'.
16837
16838 2001-12-17 Marc Autret <autret_m@epita.fr>
16839
16840 * src/bison.simple: Don't hard code the skeleton line and filename.
16841 * src/output.c (output_parser): Rename 'line' as 'output_line'.
16842 New line counter 'skeleton_line' (skeleton-line muscle).
16843
16844 2001-12-17 Paul Eggert <eggert@twinsun.com>
16845
16846 * NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
16847 YYDEBUG must be defined to a nonzero value.
16848
16849 * src/bison.simple (yytname): Do not assume that the user defines
16850 YYDEBUG to a properly parenthesized expression.
16851
16852 2001-12-17 Akim Demaille <akim@epita.fr>
16853
16854 * src/state.h (state_t): Rename lookaheads as lookaheadsp.
16855 nlookaheads is a new member.
16856 Adjust all users.
16857 * src/lalr.h (nlookaheads): Remove this orphan declaration.
16858 * src/lalr.c (initialize_lookaheads): Set nlookaheads for each
16859 state.
16860
16861 2001-12-17 Akim Demaille <akim@epita.fr>
16862
16863 * src/files.h, src/files.c (open_files, close_files): Remove.
16864 * src/main.c (main): Don't open/close files, nor invoke lex_free,
16865 let...
16866 * src/reader.c (reader): Do it.
16867
16868 2001-12-17 Akim Demaille <akim@epita.fr>
16869
16870 * src/conflicts.c (print_reductions): Formatting changes.
16871
16872 2001-12-17 Akim Demaille <akim@epita.fr>
16873
16874 * src/conflicts.c (flush_shift): Also adjust lookaheadset.
16875 (flush_reduce): New.
16876 (resolve_sr_conflict): Adjust.
16877
16878 2001-12-17 Akim Demaille <akim@epita.fr>
16879
16880 * src/output.c (output_obstack): Be static and rename as...
16881 (format_obstack): this, to avoid any confusion with files.c's
16882 output_obstack.
16883 * src/reader.h (muscle_obstack): Move to...
16884 * src/output.h: here, since it's defined in output.c.
16885
16886 2001-12-17 Akim Demaille <akim@epita.fr>
16887
16888 * src/output.c (action_row, save_column, default_goto)
16889 (sort_actions, matching_state, pack_vector): Better variable
16890 locality.
16891
16892 2001-12-17 Akim Demaille <akim@epita.fr>
16893
16894 * src/output.c: Various formatting changes.
16895
16896 2001-12-17 Akim Demaille <akim@epita.fr>
16897
16898 * src/files.c (output_files): Free the output_obstack.
16899 * src/main.c (main): Call print and print_graph conditionally.
16900 * src/print.c (print): Work unconditionally.
16901 * src/print_graph.c (print_graph): Work unconditionally.
16902 * src/conflicts.c (log_resolution): Output only if verbose_flag.
16903
16904 2001-12-16 Marc Autret <autret_m@epita.fr>
16905
16906 * src/output.c (actions_output): Fix. When we use %no-lines,
16907 there is one less line per action.
16908
16909 2001-12-16 Marc Autret <autret_m@epita.fr>
16910
16911 * src/bison.simple: Remove a useless #line directive.
16912 s/#line %%line %%skeleton/#line %%line "%%parser-file-name"/'.
16913 * src/output.c (get_lines_number): New.
16914 (output_parser): Adjust, now takes care about the lines of a
16915 output muscles.
16916 Fix line numbering.
16917 (actions_output): Computes the number of lines taken by actions.
16918 (output_master_parser): Insert new skeleton which is the name of
16919 the output parser file name.
16920
16921 2001-12-15 Marc Autret <autret_m@epita.fr>
16922
16923 * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
16924
16925 2001-12-15 Marc Autret <autret_m@epita.fr>
16926
16927 * src/output.c (output_gram): Keep track of the hairy one.
16928
16929 2001-12-15 Akim Demaille <akim@epita.fr>
16930
16931 Make `make distcheck' work.
16932
16933 * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses
16934 system.h which uses libgettext.h.
16935
16936 2001-12-15 Akim Demaille <akim@epita.fr>
16937
16938 * src/nullable.c (set_nullable): Useless rules must be skipped,
16939 otherwise, since we range over their symbols, we might look at a
16940 nonterminal which no longer ``exists'', i.e., it is not counted in
16941 `nvars', hence we overflow our arrays.
16942
16943 2001-12-15 Akim Demaille <akim@epita.fr>
16944
16945 The header can also be produced directly, without any obstack!
16946 Yahoo!
16947
16948 * src/files.c, src/files.h (defines_obstack): Remove.
16949 (compute_header_macro): Global.
16950 (defines_obstack_save): Remove.
16951 * src/reader.c (parse_union_decl): No longer output to
16952 defines_obstack: its content can be found in the `stype' muscle
16953 anyway.
16954 (output_token_translations): Merge into...
16955 (symbols_output): this.
16956 Rename as...
16957 (symbols_save): this.
16958 (reader): Adjust.
16959 * src/output.c (header_output): New.
16960 (output): Call it.
16961
16962 2001-12-15 Akim Demaille <akim@epita.fr>
16963
16964 * src/reader.c (parse_union_decl): Instead of handling two obstack
16965 simultaneously, use one to define the `stype' muscle, and use the
16966 value of the latter to fill defines_obstack.
16967 (copy_comment): Remove.
16968 (copy_comment2): Work for a single obstack.
16969 Rename as...
16970 (copy_comment): this.
16971
16972 2001-12-15 Akim Demaille <akim@epita.fr>
16973
16974 * src/lex.c, src/lex.h (xgetc): No longer static.
16975 * src/reader.c (parse_union_decl): Revamp.
16976
16977 2001-12-15 Akim Demaille <akim@epita.fr>
16978
16979 Still making progress in separating Bison into (i) input, (ii)
16980 process, (iii) output: now we can directly output the parser file
16981 without using table_obstack at all.
16982
16983 * src/files.c, src/files.h (table_obstack): Bye bye.
16984 (parser_file_name): New.
16985 * src/files.c (compute_output_file_names): Compute it.
16986 * src/output.c (actions_output, output_parser)
16987 (output_master_parser): To a file instead of an obstack.
16988
16989 2001-12-15 Akim Demaille <akim@epita.fr>
16990
16991 Attach actions to rules, instead of pre-outputting them to
16992 actions_obstack.
16993
16994 * src/gram.h (rule_t): action and action_line are new members.
16995 * src/reader.c (symbol_list): Likewise.
16996 (copy_action): Save the actions within the rule.
16997 (packgram): Save them in rule_table.
16998 * src/output.c (actions_output): New.
16999 (output_parser): Use it on `%%actions'.
17000 (output_rule_data): Don't free rule_table.
17001 (output): Do it.
17002 (prepare): Don't save the `action' muscle.
17003 * src/bison.simple: s/%%action/%%actions/.
17004
17005 2001-12-15 Akim Demaille <akim@epita.fr>
17006
17007 * src/reader.c (copy_action): When --yacc, don't append a `;'
17008 to the user action: let it fail if lacking.
17009 Suggested by Arnold Robbins and Tom Tromey.
17010
17011 2001-12-14 Akim Demaille <akim@epita.fr>
17012
17013 * src/lex.c (literalchar): Simply return the char you decoded, non
17014 longer mess around with obstacks and int pointers.
17015 Adjust all callers.
17016
17017 2001-12-14 Akim Demaille <akim@epita.fr>
17018
17019 * src/lex.c (literalchar): Don't escape the special characters,
17020 just decode them, and keep them as char (before, eol was output as
17021 the 2 char string `\n' etc.).
17022 * src/output.c (output_rule_data): Use quotearg to output the
17023 token strings.
17024
17025 2001-12-13 Paul Eggert <eggert@twinsun.com>
17026
17027 * src/bison.simple (YYSIZE_T, YYSTACK_ALLOC, YYSTACK_FREE):
17028 Do not infringe on the global user namespace when using C++.
17029 (YYFPRINTF, YYSTDERR): New macros, needed for the above.
17030 All uses of `fprintf' and `stderr' changed.
17031
17032 * doc/bison.texinfo: Document YYFPRINTF, YYSTDERR.
17033
17034 2001-12-13 Akim Demaille <akim@epita.fr>
17035
17036 The computation of nullable is broken: it doesn't handle empty
17037 RHS's properly.
17038
17039 * tests/torture.at (GNU AWK Grammar): New.
17040 * tests/sets.at (Nullable): New.
17041 * src/nullable.c (set_nullable): Instead of blindly looping over
17042 `ritems', loop over the rules, and then over their rhs's.
17043
17044 Work around Autotest bugs.
17045
17046 * src/warshall.c (bitmatrix_print): Don't use `+--+' as table
17047 frame, because Autotest understand lines starting with a `+' as
17048 traces from the shell. Then, they are not processed properly.
17049 Admittedly an Autotest bug, but we don't have time to wait for
17050 Autotest to catch up.
17051 * tests/regression.at (Broken Closure): Adjust to the new table
17052 frames.
17053 Move to...
17054 * tests/sets.at: here.
17055
17056 2001-12-13 Akim Demaille <akim@epita.fr>
17057
17058 * src/closure.c (closure): Use nrules instead of playing tricks
17059 with BITS_PER_WORD.
17060
17061 2001-12-13 Akim Demaille <akim@epita.fr>
17062
17063 * src/print.c (print_actions): Output the handling of `$' as the
17064 traces do: shifting the token EOF. Before EOF was treated as a
17065 nonterminal.
17066 * tests/regression.at: Adjust some tests.
17067 * src/print_graph.c (print_core): Complete the set of items via
17068 closure. The next-to-final and final states are still unsatisfying,
17069 but that's to be addressed elsewhere.
17070 No longer output the rule numbers, but do output the state number.
17071 A single loop for the shifts + gotos is enough, but picked a
17072 distinct color for each.
17073 (print_graph): Initialize and finalize closure.
17074
17075 2001-12-13 Akim Demaille <akim@epita.fr>
17076
17077 * src/reader.c (readgram): Remove dead code, an strip useless
17078 braces.
17079 (get_type): Remove, unused.
17080
17081 2001-12-12 Akim Demaille <akim@epita.fr>
17082
17083 * src/complain.h, src/complain.c: Remove error_one_per_line, rely
17084 on that of lib/error.c.
17085
17086 2001-12-12 Akim Demaille <akim@epita.fr>
17087
17088 Some hosts don't like `/' in includes.
17089
17090 * src/system.h: Include libgettext.h without qualifying the path.
17091 * src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
17092 $(top_srcdir).
17093
17094 2001-12-11 Marc Autret <autret_m@epita.fr>
17095
17096 * src/output.c (output_parser): Remove useless muscle.
17097
17098 2001-12-11 Marc Autret <autret_m@epita.fr>
17099
17100 * src/bison.simple: Remove #line just before %%epilogue. It
17101 is now handled in ...
17102 * src/reader.c (read_additionnal_code): Add the output of a
17103 #line for the epilogue.
17104
17105 2001-12-10 Marc Autret <autret_m@epita.fr>
17106
17107 * src/reader.c (copy_definition): Re-use CPP-outed code which
17108 replace precedent remove.
17109 * src/bison.simple: Remove #line before %%prologue because
17110 %%input-line is wrong at this time.
17111
17112 2001-12-10 Marc Autret <autret_m@epita.fr>
17113
17114 * src/reader.c (symbols_output): Clean up.
17115 * src/output.c (output_gram, output): Clean up.
17116
17117 2001-12-10 Akim Demaille <akim@epita.fr>
17118
17119 * src/lalr.c (initialize_lookaheads): New. Extracted from...
17120 * src/LR0.c (set_state_table): here.
17121 * src/lalr.c (lalr): Call it.
17122
17123 2001-12-10 Akim Demaille <akim@epita.fr>
17124
17125 * src/state.h (shifts): Remove the `number' member: shifts are
17126 attached to state, hence no longer need to be labelled with a
17127 state number.
17128
17129 2001-12-10 Akim Demaille <akim@epita.fr>
17130
17131 Now that states have a complete set of members, the linked list of
17132 shifts is useless: just fill directly the state's shifts member.
17133
17134 * src/state.h (shifts): Remove the `next' member.
17135 * src/LR0.c (first_state, last_state): Remove.
17136 Adjust the callers.
17137 (augment_automaton): Don't look for the shifts that must be added
17138 a shift on EOF: it is those of the state we looked for! But now,
17139 since shifts are attached, it is no longer needed to looking
17140 merely by its id: its number.
17141
17142 2001-12-10 Akim Demaille <akim@epita.fr>
17143
17144 * src/LR0.c (augment_automaton): Better variable locality.
17145 Remove an impossible branch: if there is a state corresponding to
17146 the start symbol being shifted, then there is shift for the start
17147 symbol from the initial state.
17148
17149 2001-12-10 Akim Demaille <akim@epita.fr>
17150
17151 * src/LR0.c (augment_automaton): Call `insert_eof_shifting_state'
17152 only when appropriate: when insert_start_shifting_state' is not
17153 invoked.
17154 * tests/regression.at (Rule Line Numbers): Adjust.
17155
17156 2001-12-10 Akim Demaille <akim@epita.fr>
17157
17158 * src/LR0.c (augment_automaton): Now that all states have shifts,
17159 merge the two cases addition shifts to the initial state.
17160
17161 2001-12-10 Akim Demaille <akim@epita.fr>
17162
17163 * src/lalr.c (set_state_table): Move to...
17164 * src/LR0.c: here.
17165 * src/lalr.c (lalr): Don't call it...
17166 * src/LR0.c (generate_states): do it.
17167 * src/LR0.h (first_state): Remove, only the table is used.
17168
17169 2001-12-10 Akim Demaille <akim@epita.fr>
17170
17171 * src/LR0.h (first_shift, first_reduction): Remove.
17172 * src/lalr.c: Don't use first_shift: find shifts through the
17173 states.
17174
17175 2001-12-10 Akim Demaille <akim@epita.fr>
17176
17177 * src/LR0.c: Attach shifts to states as soon as they are
17178 computed.
17179 * src/lalr.c (set_state_table): Instead of assigning shifts to
17180 state, just assert that the mapping was properly done.
17181
17182 2001-12-10 Akim Demaille <akim@epita.fr>
17183
17184 * src/LR0.c (insert_start_shift): Rename as...
17185 (insert_start_shifting_state): this.
17186 (insert_eof_shifting_state, insert_accepting_state): New.
17187 (augment_automaton): Adjust.
17188 Better locality of the variables.
17189 When looking if the start_symbol is shifted from the initial
17190 state, using `while (... symbol != start_symbol ...)' sounds
17191 better than `while (... symbol < start_symbol ...)': If fail
17192 to see how the order between symbols could be relevant!
17193
17194 2001-12-10 Akim Demaille <akim@epita.fr>
17195
17196 * src/getargs.h: Don't declare `spec_name_prefix' and
17197 `spec_file_prefix', declared by src/files.h.
17198 * src/files.c, src/files.h: Default for spec_name_prefix is "yy".
17199 * src/muscle_tab.c (muscle_init): Default prefix to NULL.
17200 * src/output.c (prepare): Adjust.
17201 * src/reader.c (symbols_output): Likewise.
17202 * src/vmsgetargs.c: Vaguely adjust, but who cares?
17203
17204 2001-12-10 Akim Demaille <akim@epita.fr>
17205
17206 * src/muscle_tab.c (muscle_init): NULL is a better default than
17207 `"0"'.
17208
17209 2001-12-10 Akim Demaille <akim@epita.fr>
17210
17211 * src/reader.c (reader): Calling symbols_output once is enough.
17212
17213 2001-12-10 Akim Demaille <akim@epita.fr>
17214
17215 Now that states have a complete set of members, the linked list of
17216 reductions is useless: just fill directly the state's reductions
17217 member.
17218
17219 * src/state.h (struct reductions): Remove member `number' and
17220 `next'.
17221 * src/LR0.c (first_reduction, last_reduction): Remove.
17222 (save_reductions): Don't link the new reductions, store them in
17223 this_state.
17224 * src/lalr.c (set_state_table): No need to attach reductions to
17225 states, it's already done.
17226 * src/output.c (output_actions): No longer free the shifts, then
17227 the reductions, then the states: free all the states and their
17228 members.
17229
17230 2001-12-10 Akim Demaille <akim@epita.fr>
17231
17232 * src/options.c (OPTN, DRTV, BOTH): New.
17233 (option_table): Use them.
17234
17235 * src/muscle_tab.c: Don't include xalloc.h and string.h: that's
17236 the job of system.h.
17237 * src/options.c: Don't include stdio.h and xalloc.h for the same
17238 reasons.
17239
17240 2001-12-10 Akim Demaille <akim@epita.fr>
17241
17242 * src/output.c (output, prepare): Make sure the values of the
17243 muscles `action' and `prologue' are 0-terminated.
17244
17245 2001-12-10 Akim Demaille <akim@epita.fr>
17246
17247 Clean up GCC warnings.
17248
17249 * src/reader.c (copy_action): `buf' is not used.
17250 (parse_skel_decl): Be static.
17251 * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'.
17252 * src/options.h (create_long_option_table): Have a real prototype.
17253 * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete)
17254 (hash_delete_at): Return const void *.
17255 Adjust casts to preserve the const.
17256
17257 2001-12-10 Akim Demaille <akim@epita.fr>
17258
17259 * configure.in: Require 2.52g.
17260 M4 is not needed, but AUTOM4TE is.
17261 * m4/m4.m4: Remove.
17262 * tests/Makefile.am: Adjust.
17263
17264 2001-12-10 Akim Demaille <akim@epita.fr>
17265
17266 One structure for states is enough, even though theoretically
17267 there are LR(0) states and LALR(1) states.
17268
17269 * src/lalr.h (state_t): Remove.
17270 (state_table): Be state_t **, not state_t *.
17271 * src/state.h (core, CORE_ALLOC): Rename as...
17272 (state_t, STATE_ALLOC): this.
17273 Add the LALR(1) members: shifts, reductions, errs.
17274 * src/LR0.c (state_table): Rename as...
17275 (state_hash): this, to avoid name clashes with the global
17276 `state_table'.
17277 * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c
17278 * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust.
17279
17280 2001-12-10 Akim Demaille <akim@epita.fr>
17281
17282 Bison dumps core on bash.y.
17283 Reported by Pascal Bart.
17284
17285 * src/warshall.c (bitmatrix_print): New.
17286 (TC): Use it.
17287 When performing a transitive closure R(i, j) && R(j, k) => R(i, k),
17288 j must be the outer loop.
17289 * tests/regression.at (Broken Closure): New.
17290
17291 2001-12-05 Akim Demaille <akim@epita.fr>
17292
17293 * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
17294 its argument.
17295 Reported by Peter Hamorsky.
17296
17297 2001-12-05 Akim Demaille <akim@epita.fr>
17298
17299 * src/conflicts.c (err_table): Remove.
17300 (resolve_sr_conflict): Adjust.
17301 * src/lalr.h (state_t.reduction_table, state_t.shift_table):
17302 Rename as...
17303 (state_t.reductions, state_t.shifts): this.
17304
17305 2001-12-05 Akim Demaille <akim@epita.fr>
17306
17307 * src/reduce.c (reduce_grammar_tables): No longer disable the
17308 removal of useless rules via CPP but via `if (0)', so that the
17309 compiler still check the code is valid.
17310 For instance, it should have noticed `rline' no longer exists: use
17311 the `line' member of rule_t.
17312 * src/gram.c (dummy, rline): Remove, unused.
17313
17314 2001-12-05 Akim Demaille <akim@epita.fr>
17315
17316 * src/output.c (pack_vector): Use assert, not berror.
17317 * src/main.c (berror): Remove, unused.
17318
17319 2001-12-05 Akim Demaille <akim@epita.fr>
17320
17321 New experimental feature: if --verbose --trace output all the
17322 items of a state, not only its kernel.
17323
17324 * src/print.c (print_core): If `trace_flag', then invoke closure
17325 before outputting the items of the state (print_core is no longer
17326 a correct name them).
17327 (print_results): Invoke new_closure/free_closure if needed.
17328
17329 2001-12-05 Akim Demaille <akim@epita.fr>
17330
17331 * src/LR0.c (new_itemsets): Use nshifts only, not shiftcount.
17332 * src/closure.c, src/closure.h (itemsetsize): Rename as...
17333 (nitemset): for consistency with the rest of the project.
17334
17335 2001-12-05 Akim Demaille <akim@epita.fr>
17336
17337 * src/closure.c (print_closure): Improve.
17338 (closure): Use it for printing input and output.
17339
17340 2001-12-05 Akim Demaille <akim@epita.fr>
17341
17342 * src/closure.c (FIRSTS, FDERIVES): Adjust to reality: they are
17343 indexed by nonterminals.
17344
17345 2001-12-05 Akim Demaille <akim@epita.fr>
17346
17347 * src/warshall.c (TC, RTC): De-obsfucate (source reduced to 22% of
17348 what it was!).
17349 * src/warshall.h: Remove accidental duplication of the content.
17350
17351 2001-12-05 Akim Demaille <akim@epita.fr>
17352
17353 * src/closure.c (set_fderives): De-obfuscate.
17354
17355 2001-12-05 Akim Demaille <akim@epita.fr>
17356
17357 * src/closure.c (print_firsts, print_fderives): De-obfuscate.
17358
17359 2001-12-05 Akim Demaille <akim@epita.fr>
17360
17361 * src/closure.c (set_firsts): De-obfuscate.
17362
17363 2001-12-05 Akim Demaille <akim@epita.fr>
17364
17365 * src/output.c (action_row): De-obfuscate
17366 using the good o' techniques: arrays not pointers, variable
17367 locality, BITISSET, RESETBIT etc.
17368
17369 2001-12-05 Akim Demaille <akim@epita.fr>
17370
17371 Pessimize the code to simplify it: from now on, all the states
17372 have a valid SHIFTS, which NSHIFTS is possibly 0.
17373
17374 * src/LR0.c (shifts_new): Be global and move to..
17375 * src/state.c, src/state.h: here.
17376 * src/conflicts, src/lalr.c, src/output.c, src/print.c,
17377 * src/print_graph: Adjust.
17378
17379 2001-12-05 Akim Demaille <akim@epita.fr>
17380
17381 * src/state.h (SHIFT_DISABLE, SHIFT_IS_DISABLED): New.
17382 * src/conflicts.c: Use it.
17383 Restore a few missing `if (!SHIFT_IS_DISABLED)' which were
17384 incorrectly ``simplified''.
17385
17386 2001-12-05 Akim Demaille <akim@epita.fr>
17387
17388 * src/conflicts.c (flush_shift, resolve_sr_conflict): De-obfuscate
17389 using the good o' techniques: arrays not pointers, variable
17390 locality, BITISSET, RESETBIT etc.
17391
17392 2001-12-05 Akim Demaille <akim@epita.fr>
17393
17394 * src/state.h (SHIFT_SYMBOL): New.
17395 * src/conflicts.c: Use it to deobfuscate.
17396
17397 2001-12-05 Akim Demaille <akim@epita.fr>
17398
17399 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts)
17400 (print_reductions): De-obfuscate using the good o' techniques:
17401 arrays not pointers, variable locality, BITISSET.
17402
17403 2001-12-05 Akim Demaille <akim@epita.fr>
17404
17405 * src/conflicts.c (print_reductions): Arrays, not pointers.
17406 Use BITISSET.
17407
17408 2001-12-05 Akim Demaille <akim@epita.fr>
17409
17410 * src/conflicts.c (print_reductions): Pessimize, but clarify.
17411
17412 2001-12-05 Akim Demaille <akim@epita.fr>
17413
17414 * src/conflicts.c (print_reductions): Improve variable locality.
17415
17416 2001-12-05 Akim Demaille <akim@epita.fr>
17417
17418 * src/conflicts.c (print_reductions): Pessimize, but clarify.
17419
17420 2001-12-05 Akim Demaille <akim@epita.fr>
17421
17422 * src/conflicts.c (print_reductions): Improve variable locality.
17423
17424 2001-12-05 Akim Demaille <akim@epita.fr>
17425
17426 * src/state.h (SHIFT_IS_ERROR, SHIFT_IS_GOTO, SHIFT_IS_SHIFT): New.
17427 * src/lalr.c: Use them.
17428
17429 2001-12-05 Akim Demaille <akim@epita.fr>
17430
17431 * src/LR0.c (augment_automaton): Formatting changes.
17432 Better variable locality.
17433
17434 2001-12-05 Akim Demaille <akim@epita.fr>
17435
17436 * src/lalr.c (matrix_print): New.
17437 (transpose): Use it.
17438 Use arrays instead of pointers.
17439
17440 2001-12-05 Akim Demaille <akim@epita.fr>
17441
17442 * src/lalr.c (maxrhs): Move to...
17443 * src/gram.c, src/gram.h (ritem_longest_rhs): here.
17444 * src/lalr.c (build_relations): Adjust.
17445
17446 2001-12-05 Akim Demaille <akim@epita.fr>
17447
17448 * src/lalr.c (transpose): Free the memory allocated to the
17449 argument, as it is replaced by the results by the unique caller.
17450 (build_relations): Merely invoke transpose: it handles the memory
17451 deallocation.
17452 Improve variable locality.
17453 Avoid variables used as mere abbreviations.
17454 (compute_lookaheads): Use arrays instead of pointers.
17455
17456 2001-12-05 Akim Demaille <akim@epita.fr>
17457
17458 * src/lalr.c (initialize_F): Improve variable locality.
17459 Avoid variables used as mere abbreviations.
17460
17461 2001-12-05 Akim Demaille <akim@epita.fr>
17462
17463 * src/derives.c (print_derives): Display the ruleno.
17464 * src/lalr.c (initialize_F, transpose): Better variable locality
17465 to improve readability.
17466 Avoid variables used as mere abbreviations.
17467
17468 2001-12-05 Akim Demaille <akim@epita.fr>
17469
17470 * src/lalr.c (traverse): Use arrays instead of pointers.
17471
17472 2001-12-05 Akim Demaille <akim@epita.fr>
17473
17474 * src/nullable.c (set_nullable): Use a for loop to de-obfuscate
17475 the handling of squeue.
17476 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
17477
17478 2001-12-05 Akim Demaille <akim@epita.fr>
17479
17480 Because useless nonterminals are now kept alive (instead of being
17481 `destroyed'), we now sometimes examine them, and store information
17482 related to them. Hence we need to know their number, and adjust
17483 memory allocations.
17484
17485 * src/reduce.c, src/reduce.h (nuseless_nonterminals): No longer
17486 static.
17487 * src/LR0.c (allocate_itemsets): The memory allocated to
17488 `symbol_count' was used for two different purpose: once to count
17489 the number of occurrences of each symbol, and later reassigned to
17490 `shift_symbol', containing the symbol that can be shifted from a
17491 given state.
17492 Deobfuscate, i.e., allocate, use and free `symbol_count' here
17493 only, and...
17494 (new_itemsets): Allocate `shift_symbol' here.
17495 (allocate_itemsets): symbol_count includes useless nonterminals.
17496 Make room for them.
17497 (free_storage): Use `free', not `XFREE', for pointers that cannot
17498 be null.
17499
17500 2001-12-05 Akim Demaille <akim@epita.fr>
17501
17502 * src/nullable.c (set_nullable): Deobfuscate the handling of
17503 ritem.
17504 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
17505
17506 2001-12-05 Akim Demaille <akim@epita.fr>
17507
17508 * src/gram.c, src/gram.h (ritem_print): New.
17509 * src/gram.c (dummy): Remove, now there is actual code in gram.c.
17510 (This useless function was defined only to work around VMS linkers
17511 that can't handle compilation units with variables only).
17512 * src/reduce.c (dump_grammar): Use it to trace the construction of
17513 ritem.
17514
17515 2001-12-04 Paul Eggert <eggert@twinsun.com>
17516
17517 * src/bison.simple (union yyalloc): Change member names
17518 to be the same as the stack names.
17519 (yyparse): yyptr is now union yyalloc *, not char *.
17520 (YYSTACK_RELOCATE): Likewise. This avoids a GCC warning,
17521 and may generate better code on some machines.
17522 (yystpcpy): Use prototype if __STDC__ is defined, not just
17523 if __cplusplus is defined.
17524
17525 2001-11-30 Akim Demaille <akim@epita.fr>
17526
17527 * configure.in (WARNING_CFLAGS): Add -Werror when possible.
17528 (CFLAGS): Do not include the WARNING_CFLAGS here, since GNU
17529 Gettext doesn't compile cleanly, and dies with -Werror.
17530 * src/Makefile.am, lib/Makefile.am, tests/atlocal.in (CFLAGS):
17531 Include WARNING_CFLAGS here.
17532 * lib/xstrdup.c: Include xalloc.h, so that xstrdup be declared
17533 before being defined.
17534
17535 2001-11-27 Paul Eggert <eggert@twinsun.com>
17536
17537 * lib/quotearg.h (quotearg_n, quotearg_n_style):
17538 First arg is int, not unsigned.
17539 * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
17540 (SIZE_MAX, UINT_MAX): New macros.
17541 (quotearg_n_options): Abort if N is negative.
17542 Avoid overflow check on hosts where size_t is 64 bits and int
17543 is 32 bits, as overflow is impossible there.
17544 Fix off-by-one typo that caused unnecessary reallocation.
17545
17546 2001-11-29 Paul Eggert <eggert@twinsun.com>
17547
17548 Name space cleanup in generated parser.
17549
17550 * doc/bison.texinfo (Bison Parser): Discuss system headers
17551 and their effect on the user name space.
17552
17553 * src/bison.simple:
17554 (YYSTACK_ALLOC, YYSTACK_FREE, union yyalloc, YYSTACK_GAP_MAX,
17555 YYSTACK_BYTES, YYSTACK_RELOCATE): Do not define unless necessary,
17556 i.e. unless ! defined (yyoverflow) || defined (YYERROR_VERBOSE).
17557
17558 (YYSIZE_T): New macro. Use it instead of size_t, to avoid infringing
17559 on user names when possible.
17560
17561 (YYSTACK_USE_ALLOCA): Do not define; just use any existing defn.
17562 Simplify test for whather <alloca.h> exists.
17563
17564 (<stdlib.h>): Include if we will use malloc, and if standard C or C++.
17565
17566 (<stdio.h>): Include if YYDEBUG.
17567
17568 (yymemcpy): Renamed from __yy_memcpy. Do not define unless
17569 ! defined (yyoverflow) && ! defined (yymemcpy).
17570
17571 (yymemcpy, yyparse): Rename local variables as needed so that
17572 they all begin with 'yy'.
17573
17574 (yystrlen, yystpcpy): New functions.
17575
17576 (YY_DECL_NON_LSP_VARIABLES): Renamed from _YY_DECL_VARIABLES.
17577 All uses changed.
17578
17579 (yyparse): size_t -> YYSIZE_T. Use yystrlen and yystpcpy
17580 instead of relying on string.h functions. Use YYSTACK_ALLOC
17581 and YYSTACK_FREE instead of malloc and free.
17582
17583 2001-11-30 Akim Demaille <akim@epita.fr>
17584
17585 * src/bison.simple (YYSTYPE, YYLTYPE): Move their definitions
17586 before their first uses.
17587 (YYBISON, YYPURE): Move to the top of the output.
17588
17589 2001-11-30 Akim Demaille <akim@epita.fr>
17590
17591 * tests/reduce.at (Useless Nonterminals): Fix.
17592
17593 2001-11-30 Akim Demaille <akim@epita.fr>
17594
17595 * src/bison.simple (YYSTACK_FREE): Use `do {;} while (0)' as empty
17596 if body instead of `;' to pacify GCC's warnings.
17597
17598 2001-11-30 Akim Demaille <akim@epita.fr>
17599
17600 Instead of mapping the LHS of unused rules to -1, keep the LHS
17601 valid, but flag the rules as invalid.
17602
17603 * src/gram.h (rule_t): `useful' is a new member.
17604 * src/print.c (print_grammar): Adjust.
17605 * src/derives.c (set_derives): Likewise.
17606 * src/reader.c (packgram, reduce_output): Likewise.
17607 * src/reduce.c (reduce_grammar_tables): Likewise.
17608 * tests/reduce.at (Underivable Rules, Useless Rules): New.
17609
17610 2001-11-30 Akim Demaille <akim@epita.fr>
17611
17612 * src/reduce.c (reduce_output): Formatting changes.
17613 * src/print.c (print_results, print_grammar): Likewise.
17614 * tests/regression.at (Rule Line Numbers)
17615 (Solved SR Conflicts, Unresolved SR Conflicts): Adjust.
17616
17617 2001-11-30 Akim Demaille <akim@epita.fr>
17618
17619 * src/reduce.c (nonterminals_reduce): Instead of throwing away
17620 useless nonterminals, move them at the end of the symbol arrays.
17621 (reduce_output): Adjust.
17622 * tests/reduce.at (Useless Nonterminals): Adjust.
17623
17624 2001-11-30 Akim Demaille <akim@epita.fr>
17625
17626 * src/reduce.c: Various comment/formatting changes.
17627 (nonterminals_reduce): New, extracted from...
17628 (reduce_grammar_tables): here.
17629 (reduce_grammar): Call nonterminals_reduce.
17630
17631 2001-11-29 Paul Eggert <eggert@twinsun.com>
17632
17633 * src/bison.simple (YYSTACK_REALLOC): Remove.
17634 (YYSTACK_ALLOC): Resurrect this macro, with its old meaning.
17635 (YYSTACK_FREE, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYSTACK_RELOCATE):
17636 New macros.
17637 (union yyalloc): New type.
17638 (__yy_memcpy): Last arg is size_t, not unsigned int, to remove
17639 an arbitrary restriction on hosts where size_t is wider than int.
17640
17641 (yyparse): Don't dump core if alloca or malloc fails; instead, report
17642 a parser stack overflow. Allocate just one block of memory for all
17643 three stacks, instead of allocating three blocks; this typically is
17644 faster and reduces fragmentation.
17645
17646 Do not limit the number of items in the stack to a value that fits
17647 in 'int', as this is an arbitrary limit on hosts with 64-bit
17648 size_t and 32-bit int.
17649
17650 2001-11-29 Marc Autret <autret_m@epita.fr>
17651
17652 * tests/calc.at [AT_DATA_CALC_Y]: Use %error-verbose instead
17653 of defining YYERROR_VERBOSE.
17654 [AT_DATA]: $4 is now out of C declarations in the prologue.
17655
17656 2001-11-28 Marc Autret <autret_m@epita.fr>
17657
17658 * src/reader.c (parse_dquoted_param): New.
17659 (parse_skel_decl): Use it.
17660 * src/lex.h: Add its prototype.
17661 * src/lex.c (literalchar): Become not static.
17662
17663 2001-11-28 Marc Autret <autret_m@epita.fr>
17664
17665 * src/output.h: And put its extern declaration here.
17666 * src/output.c (error_verbose): Define here.
17667 (prepare): Echo name modification.
17668 * src/getargs.h: Clean its extern declaration.
17669 * src/getargs.c (error_verbose_flag): Remove.
17670 (getargs): Remove case 'e'.
17671 * src/options.c (option_table): 'error-verbose' is now seen as simple
17672 percent option.
17673 Include output.h.
17674
17675 * src/reader.c (read_declarations): Remove case tok_include.
17676 (parse_include_decl): Remove.
17677 * src/lex.h (token_t): Remove tok_include.
17678 * src/options.c (option_table): 'include' is now a simple command line
17679 option.
17680
17681 2001-11-28 Marc Autret <autret_m@epita.fr>
17682
17683 * src/bison.simple: Adjust muscle names.
17684 * src/muscle_tab.c (muscle_init): Also rename the muscles.
17685 * src/output.c (prepare): s/_/-/ for the muscles names.
17686 (output_parser): When scanning for a muscle, allow '-' instead of '_'.
17687
17688 2001-11-28 Marc Autret <autret_m@epita.fr>
17689
17690 * src/bison.simple: Fix debug.
17691 [YYERROR_VERBOSE]: Re-integrate as an internal macro.
17692
17693 2001-11-28 Akim Demaille <akim@epita.fr>
17694
17695 * src/LR0.c (shifts_new): New.
17696 (save_shifts, insert_start_shift, augment_automaton): Use it.
17697
17698 2001-11-28 Akim Demaille <akim@epita.fr>
17699
17700 * src/closure.c (closure): `b' and `ruleno' denote the same value:
17701 keep ruleno only.
17702
17703 2001-11-28 Akim Demaille <akim@epita.fr>
17704
17705 * src/closure.c (closure): Instead of looping over word in array
17706 then bits in words, loop over bits in array.
17707
17708 2001-11-28 Akim Demaille <akim@epita.fr>
17709
17710 * src/closure.c (closure): No longer optimize the special case
17711 where all the bits of `ruleset[r]' are set to 0, to make the code
17712 clearer.
17713
17714 2001-11-28 Akim Demaille <akim@epita.fr>
17715
17716 * src/closure.c (closure): `r' and `c' are new variables, used to
17717 de-obfuscate accesses to RULESET and CORE.
17718
17719 2001-11-28 Akim Demaille <akim@epita.fr>
17720
17721 * src/reduce.c (reduce_print): Use ngettext.
17722 (dump_grammar): Improve the trace accuracy.
17723
17724 2001-11-28 Akim Demaille <akim@epita.fr>
17725
17726 * src/reduce.c (dump_grammar): Don't translate trace messages.
17727
17728 2001-11-28 Akim Demaille <akim@epita.fr>
17729
17730 * tests/reduce.at (Useless Terminals, Useless Nonterminals): New.
17731 * src/reduce.c (reduce_grammar_tables): Do not free useless tags,
17732 as all tags are free'ed afterwards.
17733 From Enrico Scholz.
17734
17735 2001-11-27 Paul Eggert <eggert@twinsun.com>
17736
17737 * src/bison.simple (YYSTACK_REALLOC): Fix typo that caused us to
17738 use alloca when we didn't want to, and vice versa.
17739
17740 2001-11-27 Marc Autret <autret_m@epita.fr>
17741
17742 * src/muscle_tab.c (muscle_init): Remove 'verbose' muscle
17743 initialization.
17744 * src/output.c (prepare): Remove its update.
17745
17746 2001-11-27 Marc Autret <autret_m@epita.fr>
17747
17748 * tests/torture.at [AT_DATA]: Remove YYERROR_VERBOSE definition.
17749 Use %error-verbose.
17750
17751 2001-11-27 Marc Autret <autret_m@epita.fr>
17752
17753 * src/bison.simple: Remove YYERROR_VERBOSE using.
17754 Use %%error_verbose.
17755 (yyparse): Likewise.
17756 * src/output.c (prepare): Give its final value.
17757 * src/muscle_tab.c (muscle_init): Init new muscle 'error_verbose'.
17758 * src/getargs.h: Add its extern declaration.
17759 * src/getargs.c (error_verbose_flag): New int.
17760 (getargs): Update to catch new case.
17761 * src/options.c (option_table): 'error-verbose' is a new option.
17762 (shortopts): Update.
17763
17764 2001-11-27 Akim Demaille <akim@epita.fr>
17765
17766 * src/system.h: Use intl/libgettext.h.
17767 * src/Makefile.am (INCLUDES): Add -I $(top_srcdir).
17768
17769 2001-11-27 Akim Demaille <akim@epita.fr>
17770
17771 * tests/torture.at (Exploding the Stack Size with Malloc):
17772 s/YYSTACK_USE_ALLOCA_ALLOCA/YYSTACK_USE_ALLOCA/.
17773
17774 2001-11-27 Akim Demaille <akim@epita.fr>
17775
17776 * src/files.c: Include error.h.
17777 Reported by Hans Aberg.
17778
17779 2001-11-26 Marc Autret <autret_m@epita.fr>
17780
17781 * src/reader.c (parse_include_decl): New, not yet implemented.
17782 (read_declarations): Add case tok_include.
17783 * src/getargs.h (include): Add its extern definition.
17784 * src/getargs.c (include): New const char *.
17785 (getargs): Add case '-I'.
17786 * src/options.c (option_table): Add include as command line and
17787 percent option.
17788 * src/lex.h (token_t): Add tok_include.
17789
17790 2001-11-26 Akim Demaille <akim@epita.fr>
17791
17792 * src/reader.c (readgram): Make sure rules for mid-rule actions
17793 have a lineno equal to that of their host rule.
17794 Reported by Hans Aberg.
17795 * tests/regression.at (Rule Line Numbers): New.
17796
17797 2001-11-26 Akim Demaille <akim@epita.fr>
17798
17799 * src/LR0.c (allocate_itemsets): kernel_size contains ints, not
17800 size_ts.
17801
17802 2001-11-26 Akim Demaille <akim@epita.fr>
17803
17804 * src/complain.c, src/complain.h (error): Remove, provided by
17805 lib/error.[ch].
17806
17807 2001-11-26 Akim Demaille <akim@epita.fr>
17808
17809 * src/reader.c (read_declarations): Don't abort on tok_illegal,
17810 issue an error message.
17811 * tests/regression.at (Invalid %directive): New.
17812 Reported by Hans Aberg.
17813
17814 2001-11-26 Akim Demaille <akim@epita.fr>
17815
17816 * configure.in: Invoke AC_FUNC_OBSTACK and AC_FUNC_ERROR_AT_LINE.
17817 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
17818
17819 2001-11-26 Akim Demaille <akim@epita.fr>
17820
17821 * src/conflicts.c (conflicts_print): Don't complain at all when
17822 there are no reduce/reduce conflicts, and as many shift/reduce
17823 conflicts as expected.
17824 * tests/regression.at (%expect right): Adjust.
17825
17826 2001-11-23 Akim Demaille <akim@epita.fr>
17827
17828 * lib/alloca.c: Update, from fileutils.
17829
17830 2001-11-23 Akim Demaille <akim@epita.fr>
17831
17832 * lib/Makefile.am (libbison_a_LIBADD): Add @ALLOCA@.
17833
17834 2001-11-23 Akim Demaille <akim@epita.fr>
17835
17836 * src/system.h: Include alloca.h.
17837 * src/main.c (main) [C_ALLOCA]: Call alloca (0).
17838
17839 2001-11-23 Akim Demaille <akim@epita.fr>
17840
17841 * src/print_graph.c (print_actions): Remove `rule', unused.
17842 * src/LR0.c (kernel_size): Contain `int' instead of `size_t' to
17843 pacify GCC's signed < unsigned warnings.
17844 * src/closure.c (itemsetsize): Likewise.
17845 * src/reader.c (symbol_list_new): Static.
17846
17847 2001-11-23 Akim Demaille <akim@epita.fr>
17848
17849 Attaching lineno to buckets is stupid, since only one copy of each
17850 symbol is kept, only the line of the first occurrence is kept too.
17851
17852 * src/symtab.h, src/symtab.c (bucket): Remove the line member.
17853 * src/reader.c (rline_allocated): Remove, unused.
17854 (symbol_list): Have a `line' member.
17855 (symbol_list_new): New.
17856 (readgram): Use it.
17857 * src/print.c (print_grammar): Output the rule line numbers.
17858 * tests/regression.at (Solved SR Conflicts)
17859 (Unresolved SR Conflicts): Adjust.
17860 Reported by Hans Aberg.
17861
17862 2001-11-22 Marc Autret <autret_m@epita.fr>
17863
17864 * src/bison.simple [YYERROR_VERBOSE]: Force its value to be 1 or 0.
17865
17866 2001-11-22 Marc Autret <autret_m@epita.fr>
17867
17868 * src/muscle_tab.c (muscle_init): Remove initialization of
17869 skeleton muscle.
17870 * src/output.c (output_master_parser): Do it here.
17871
17872 2001-11-20 Akim Demaille <akim@epita.fr>
17873
17874 * po/sv.po: New.
17875 * configure.in (ALL_LINGUAS): Adjust.
17876 * po/POTFILE.in: Remove `nullable.c' and `derives.c' which no
17877 longer contains strings to translate.
17878
17879 2001-11-19 Akim Demaille <akim@epita.fr>
17880
17881 * src/conflicts.c (conflicts_print): Add a missing \n.
17882
17883 2001-11-19 Akim Demaille <akim@epita.fr>
17884
17885 * src/nullable.c (nullable_print): New.
17886 (set_nullable): Call it when tracing.
17887 Better locality of variables.
17888
17889 2001-11-19 Akim Demaille <akim@epita.fr>
17890
17891 * src/print.c (print_actions): Better locality of variables.
17892
17893 2001-11-19 Akim Demaille <akim@epita.fr>
17894
17895 * src/derives.c (print_derives): Fix and enrich.
17896 * src/closure.c (print_fderives): Likewise.
17897
17898 2001-11-19 Akim Demaille <akim@epita.fr>
17899
17900 * src/closure.c (itemsetend): Remove, replaced with...
17901 (itemsetsize): new.
17902
17903 2001-11-19 Akim Demaille <akim@epita.fr>
17904
17905 * src/LR0.c (kernel_end): Remove, replaced with...
17906 (kernel_size): new.
17907
17908 2001-11-19 Akim Demaille <akim@epita.fr>
17909
17910 * src/conflicts.c (set_conflicts): Use arrays instead of pointers
17911 to clarify.
17912
17913 2001-11-19 Akim Demaille <akim@epita.fr>
17914
17915 * src/closure.c (closure): Use arrays instead of pointers to clarify.
17916
17917 2001-11-19 Akim Demaille <akim@epita.fr>
17918
17919 * src/closure.c, src/derives.c, src/nullable.c: Adjust various
17920 trace messages.
17921 * src/LR0.c: Likewise.
17922 (allocate_itemsets): Use arrays instead of pointers to clarify.
17923
17924 2001-11-19 Akim Demaille <akim@epita.fr>
17925
17926 * src/getargs.c (statistics_flag): Replace with...
17927 (trace_flag): New.
17928 (longopts): Accept --trace instead of --statistics.
17929 * src/getargs.h, src/options.c: Adjust.
17930 * src/LR0.c, src/closure.c, src/derives.c, src/nullable.c,
17931 * src/reduce.c: Use trace_flags instead of the CPP conditional TRACE.
17932
17933 2001-11-19 Akim Demaille <akim@epita.fr>
17934
17935 * src/LR0.c (new_itemsets, get_state): Use more arrays and fewer
17936 pointers to clarify the code.
17937 (save_reductions, save_shifts): Factor common parts of alternatives.
17938
17939 2001-11-19 Akim Demaille <akim@epita.fr>
17940
17941 * src/LR0.c (new_state, get_state): Complete TRACE code.
17942 * src/closure.c: Include `reader.h' to get `tags', needed by the
17943 trace code.
17944 Rename the conditional DEBUG as TRACE.
17945 Output consistently TRACEs to stderr, not stdout.
17946 * src/derives.c: Likewise.
17947 * src/reduce.c: (inaccessable_symbols): Using if is better style
17948 than goto.
17949 Use `#if TRACE' instead of `#if 0' for tracing code.
17950
17951 2001-11-19 Akim Demaille <akim@epita.fr>
17952
17953 * src/system.h (LIST_FREE, shortcpy): New.
17954 * src/LR0.c: Use them.
17955 * src/output.c (free_itemsets, free_reductions, free_shifts):
17956 Remove, replaced by LIST_FREE.
17957
17958 2001-11-19 Akim Demaille <akim@epita.fr>
17959
17960 * src/state.h (CORE_ALLOC, SHIFTS_ALLOC, ERRS_ALLOC)
17961 (REDUCTIONS_ALLOC): New.
17962 * src/LR0.c, src/conflicts.c: Use them to de-obfuscate memory
17963 allocation.
17964
17965 2001-11-19 Akim Demaille <akim@epita.fr>
17966
17967 * src/LR0.c (new_state): Complete trace code.
17968 * src/nullable.c (set_nullable): Don't translate traces.
17969
17970 2001-11-19 Akim Demaille <akim@epita.fr>
17971
17972 * src/print_graph.c (print_core): Better locality of variables.
17973 * src/print.c (print_core): Likewise.
17974
17975 2001-11-19 Akim Demaille <akim@epita.fr>
17976
17977 * src/vcg.c: You do the output, so you are responsible of the
17978 handling of VCG syntax, in particular: use quotearg.
17979 * src/print_graph.c: Don't.
17980 (print_actions): Don't output the actions as part of the nodes,
17981 since that's the job of the edges.
17982 (print_state): Don't output by hand: fill the node description,
17983 and ask for its output.
17984
17985 2001-11-19 Akim Demaille <akim@epita.fr>
17986
17987 * src/bison.simple (yyparse): When verbosely reporting an error,
17988 no longer put additional quotes around token names.
17989 * tests/calc.at: Adjust.
17990
17991 2001-11-19 Akim Demaille <akim@epita.fr>
17992
17993 * src/symtab.h, src/symtab.c: `line' is a new member of `bucket'.
17994 * src/reader.c (record_rule_lines, rline, rline_allocated): Remove.
17995 * src/output.c: Adjust.
17996
17997 2001-11-19 Akim Demaille <akim@epita.fr>
17998
17999 * src/gram.h (rprec, rprecsym, rassoc): Remove, now part of...
18000 (rule_t): this.
18001 * src/conflicts.c, src/reader.c, src/reduce.c: Adjust.
18002
18003 2001-11-19 Akim Demaille <akim@epita.fr>
18004
18005 * src/gram.h (rule_t): New.
18006 (rule_table): New.
18007 (rrhs, rlhs): Remove, part of state_t.
18008 * src/print_graph.c, src/closure.c, src/conflicts.c, src/derives.c,
18009 * src/lalr.c, src/nullable.c, src/output.c, src/print.c,
18010 * src/reader.c, src/reduce.c: Adjust.
18011
18012 2001-11-19 Akim Demaille <akim@epita.fr>
18013
18014 * src/reader.c (symbols_output): New, extracted from...
18015 (packsymbols): Here.
18016 (reader): Call it.
18017
18018 2001-11-19 Akim Demaille <akim@epita.fr>
18019
18020 * src/lalr.c (set_maxrhs, maxrhs): Remove, replaced with...
18021 (maxrhs): this new function.
18022
18023 2001-11-19 Akim Demaille <akim@epita.fr>
18024
18025 * src/lalr.c (F): New macro to access the variable F.
18026 Adjust.
18027
18028 2001-11-19 Akim Demaille <akim@epita.fr>
18029
18030 * src/lalr.h (LA): New macro to access the variable LA.
18031 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
18032 * src/lalr.c: Adjust.
18033
18034 2001-11-19 Akim Demaille <akim@epita.fr>
18035
18036 * src/lalr.c (initialize_LA): Only initialize LA. Let...
18037 (set_state_table): handle the `lookaheads' members.
18038
18039 2001-11-19 Akim Demaille <akim@epita.fr>
18040
18041 * src/lalr.h (lookaheads): Removed array, whose contents is now
18042 a member of...
18043 (state_t): this structure.
18044 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
18045 Adjust.
18046
18047 2001-11-19 Akim Demaille <akim@epita.fr>
18048
18049 * src/lalr.h (consistent): Removed array, whose contents is now
18050 a member of...
18051 (state_t): this structure.
18052 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
18053 Adjust.
18054
18055 2001-11-19 Akim Demaille <akim@epita.fr>
18056
18057 * src/lalr.h (reduction_table, shift_table): Removed arrays, whose
18058 contents are now members of...
18059 (state_t): this structure.
18060 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
18061 Adjust.
18062
18063 2001-11-19 Akim Demaille <akim@epita.fr>
18064
18065 * src/lalr.h (state_t): New.
18066 (state_table): Be a state_t * instead of a core **.
18067 (accessing_symbol): Remove, part of state_t.
18068 * src/lalr.c: Adjust.
18069 (set_accessing_symbol): Merge into...
18070 (set_state_table): this.
18071 * src/print_graph.c, src/conflicts.c: Adjust.
18072
18073 2001-11-14 Akim Demaille <akim@epita.fr>
18074
18075 * tests/calc.at, tests/output.at, tests/regression.at,
18076 * tests/testsuite.at, tests/torture.at: Rely on Autotest 2.52g:
18077 now the tests are run in private dirs, therefore AC_CLEANUP and
18078 family can be simplified to 0-ary.
18079 * tests/atlocal.in: Now that we run `elsewhere' than in tests/,
18080 use abs. path to find config.h.
18081 * tests/calc.at (AT_CHECK_CALC): Don't try to check the compiler's
18082 stderr, there can be way too much random noise.
18083 Instead pass -Werror to GCC and rely on the exit status.
18084 Reported by Wolfram Wagner.
18085
18086 2001-11-14 Akim Demaille <akim@epita.fr>
18087
18088 * src/bison.simple (yyparse): Let yyls1, yyss1 and yyvs1 be
18089 defined only if yyoverflow is defined, to avoid `warning: unused
18090 variable `yyvs1''.
18091 Reported by The Test Suite.
18092
18093 2001-11-14 Akim Demaille <akim@epita.fr>
18094
18095 * src/print.c: Include reduce.h.
18096 Reported by Hans Aberg.
18097
18098 2001-11-14 Akim Demaille <akim@epita.fr>
18099
18100 * src/lex.c, src/lex.h (token_buffer, unlexed_token_buffer):
18101 Revert a previous patch: these are really const.
18102 * src/conflicts.c (conflict_report): Additional useless pair of
18103 braces to pacify GCC's warnings for `if () if () {} else {}'.
18104 * src/lex.c (parse_percent_token): Replace equal_offset with
18105 arg_offset.
18106 arg is const.
18107 Be sure to strdup `arg' when used, since there is no reason for
18108 token_buffer not to change.
18109
18110 2001-11-14 Akim Demaille <akim@epita.fr>
18111
18112 * src/system.h (EXIT_SUCCESS, EXIT_FAILURE): Ensure a proper
18113 definition.
18114 * src/main.c (main): Use them.
18115 Suggested by Hans Aberg.
18116
18117 2001-11-12 Akim Demaille <akim@epita.fr>
18118
18119 * src/system.h (ngettext): Now that we use ngettext, be sure to
18120 provide a default definition when NLS are not used.
18121
18122 2001-11-12 Akim Demaille <akim@epita.fr>
18123
18124 * doc/bison.texinfo: Use `$' as shell prompt, not `%'.
18125 Use @kbd to denote user input.
18126 (Language and Grammar): ANSIfy the example.
18127 Adjust its layout for info/notinfo.
18128 (Location Tracking Calc): Output error messages to stderr.
18129 Output locations in a more GNUtically correct way.
18130 Fix a couple of Englishos.
18131 Adjust @group/@end group pairs.
18132
18133 2001-11-12 Akim Demaille <akim@epita.fr>
18134
18135 %expect was not functioning at all.
18136
18137 * src/conflicts.c (expected_conflicts): Set to -1.
18138 (conflict_report): Use ngettext.
18139 (conflicts_print): Check %expect and make its violation an error.
18140 * doc/bison.texinfo (Expect Decl): Adjust.
18141 * configure.in (AM_GNU_GETTEXT): Ask for ngettext.
18142 * tests/regression.at (%expect not enough, %expect right)
18143 (%expect too much): New.
18144
18145 2001-11-12 Akim Demaille <akim@epita.fr>
18146
18147 * tests/regression.at (Conflicts): Rename as...
18148 (Unresolved SR Conflicts): this.
18149 (Solved SR Conflicts): New.
18150
18151 2001-11-12 Akim Demaille <akim@epita.fr>
18152
18153 * src/reduce.c (print_results): Rename as...
18154 (reduce_output): This.
18155 Output to OUT, passed as argument, instead of output_obstack.
18156 (dump_grammar): Likewise.
18157 (reduce_free): New.
18158 Also free V1.
18159 (reduce_grammar): No longer call reduce_output, since...
18160 * src/print.c (print_results): do it.
18161 * src/main.c (main): Call reduce_free;
18162
18163 2001-11-12 Akim Demaille <akim@epita.fr>
18164
18165 * src/conflicts.c (print_reductions): Accept OUT as argument.
18166 Output to it, not to output_obstack.
18167 * src/print.c (print_actions): Adjust.
18168
18169 2001-11-12 Akim Demaille <akim@epita.fr>
18170
18171 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts): Return
18172 the result instead of using...
18173 (src_total, rrc_total, src_count, rrc_count): Remove.
18174 (any_conflicts): Remove.
18175 (print_conflicts): Split into...
18176 (conflicts_print, conflicts_output): New.
18177 * src/conflicts.h: Adjust.
18178 * src/main.c (main): Invoke both conflicts_output and conflicts_print.
18179 * src/print.c (print_grammar): Issue `\n' between two rules.
18180 * tests/regression.at (Conflicts): New.
18181 Reported by Tom Lane.
18182
18183 2001-11-12 Akim Demaille <akim@epita.fr>
18184
18185 * tests/regression.at (Invalid input): Remove, duplicate with
18186 ``Invalid input: 1''.
18187
18188 2001-11-12 Akim Demaille <akim@epita.fr>
18189
18190 * tests/torture.at (AT_DATA_STACK_TORTURE)
18191 (Exploding the Stack Size with Alloca)
18192 (Exploding the Stack Size with Malloc): New.
18193
18194 2001-11-12 Akim Demaille <akim@epita.fr>
18195
18196 * src/bison.simple (YYSTACK_REALLOC): New.
18197 (yyparse) [!yyoverflow]: Use it and free the old stack.
18198 Reported by Per Allansson.
18199
18200 2001-11-12 Pascal Bart <pascal.bart@epita.fr>
18201
18202 * src/bison.simple: Define type yystype instead of YYSTYPE, and
18203 define CPP macro, which substitute YYSTYPE by yystype.
18204 * src/reader.c (parse_union_decl): Output yystype/YYSTYPE as we do
18205 with yyltype/YYLTYPE. This allows inclusion of the generated
18206 header within the parser if the compiler, such as GGC, accepts
18207 multiple equivalent #defines.
18208 From Akim.
18209
18210 2001-11-05 Akim Demaille <akim@epita.fr>
18211
18212 * src/reader.c (symbols_output): New, extracted from...
18213 (packsymbols): here.
18214 (reader): Adjust.
18215
18216 2001-11-05 Akim Demaille <akim@epita.fr>
18217
18218 * src/lex.c (parse_percent_token): s/quotearg/quote/.
18219
18220 2001-11-05 Akim Demaille <akim@epita.fr>
18221
18222 * tests/regression.at (AT_TEST_CPP_GUARD_H): Adjust the clean up
18223 pattern.
18224
18225 2001-11-05 Akim Demaille <akim@epita.fr>
18226
18227 * src/options.h (struct option_table_struct): set_flags is void*.
18228 * src/options.c (longopts): Support `--output' and `%output'.
18229 (usage): Adjust.
18230 * src/lex.h (tok_setopt): Remove, replaced with...
18231 (tok_intopt, tok_stropt): these new guys.
18232 * src/lex.c (getopt.h): Not needed.
18233 (token_buffer, unlexed_token_buffer): Not const.
18234 (percent_table): Promote `-' over `_' in directive names.
18235 Active `%name-prefix', `file-prefix', and `output'.
18236 (parse_percent_token): Accept possible arguments to directives.
18237 Promote `-' over `_' in directive names.
18238
18239 2001-11-04 Akim Demaille <akim@epita.fr>
18240
18241 * doc/bison.texinfo (Decl Summary): Split the list into
18242 `directives for grammars' and `directives for bison'.
18243 Sort'em.
18244 Add description of `%name-prefix', `file-prefix', and `output'.
18245 Promote `-' over `_' in directive names.
18246 (Bison Options): s/%locactions/%locations/. Nice Freudian slip.
18247 Simplify the description of `--name-prefix'.
18248 Promote `-' over `_' in directive names.
18249 Promote `--output' over `--output-file'.
18250 Fix the description of `--defines'.
18251 * tests/output.at: Exercise %file-prefix and %output.
18252
18253 2001-11-02 Akim Demaille <akim@epita.fr>
18254
18255 * doc/refcard.tex: Update.
18256
18257 2001-11-02 Akim Demaille <akim@epita.fr>
18258
18259 * src/symtab.h (SUNDEF): New.
18260 * src/symtab.c (bucket_new): Init user_token_number to SUNDEF to
18261 stand for `uninitialized', instead of 0.
18262 * src/reader.c (packsymbols, parse_thong_decl): Adjust.
18263 * src/lex.c (lex): Adjust.
18264
18265 * tests/calc.at (_AT_DATA_CALC_Y): Declare a token for EOF.
18266 Number it 0.
18267 Let yylex return it instead of a plain 0.
18268 Reported by Dick Streefland.
18269
18270 2001-11-02 Akim Demaille <akim@epita.fr>
18271
18272 * tests/regression.at (Mixing %token styles): New test.
18273
18274 2001-11-02 Akim Demaille <akim@epita.fr>
18275
18276 * src/reader.c (parse_thong_decl): Formatting changes.
18277 (token_translations_init): New, extracted from...
18278 (packsymbols): Here.
18279 Adjust.
18280
18281 2001-11-01 Akim Demaille <akim@epita.fr>
18282
18283 * tests/regression.at (AT_TEST_CPP_GUARD_H): New.
18284 Check that `9foo.y' produces correct cpp guards.
18285 * src/files.c (compute_header_macro): Prepend `BISON_' to CPP
18286 guards.
18287 Reported by Wwp.
18288
18289 2001-11-01 Akim Demaille <akim@epita.fr>
18290
18291 * tests/regression.at (Invalid input: 2): New.
18292 * src/lex.c (unlexed_token_buffer): New.
18293 (lex, unlex): Adjust: when unlexing, be sure to save token_buffer
18294 too.
18295 Reported by Wwp.
18296
18297 2001-11-01 Akim Demaille <akim@epita.fr>
18298
18299 * tests/calc.at: Catch up with 1.30.
18300 * configure.in: Bump to 1.49a.
18301 Adjust to newer Autotest.
18302
18303 2001-10-19 Pascal Bart <pascal.bart@epita.fr>
18304
18305 * src/conflicts.c: Move global variables rrc_total and src_total ...
18306 (print_conflicts): here.
18307 * src/output.c (output): Free global variable user_toknums.
18308 * src/lex.c (token_obstack): Become static.
18309
18310 2001-10-18 Akim Demaille <akim@epita.fr>
18311
18312 * tests/atlocal.in (GCC): Add.
18313 * tests/calc.at: s/m4_match/m4_bmatch/.
18314 s/m4_patsubst/m4_bpatsubst/.
18315 (AT_CHECK_CALC): Check the compiler's stderr only if it's GCC.
18316 * configure.in: AC_SUBST(GCC).
18317
18318 2001-10-14 Marc Autret <autret_m@epita.fr>
18319
18320 * src/options.c (create_long_option_table): Fix.
18321
18322 2001-10-10 Akim Demaille <akim@epita.fr>
18323
18324 * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
18325
18326 2001-10-04 Akim Demaille <akim@epita.fr>
18327
18328 * src/reader.c (parse_union_decl): Push the caracters in
18329 union_obstack, not attrs_obstack.
18330
18331 2001-10-04 Akim Demaille <akim@epita.fr>
18332
18333 Merge in the branch 1.29.
18334
18335 * src/reader.c (packsymbols): Use a temporary obstack for
18336 `%%tokendef', since output_stack is already used elsewhere.
18337
18338 2001-10-02 Akim Demaille <akim@epita.fr>
18339
18340 Bump 1.29d.
18341
18342 2001-10-02 Akim Demaille <akim@epita.fr>
18343
18344 Version 1.29c.
18345
18346 2001-10-02 Akim Demaille <akim@epita.fr>
18347
18348 * tests/regression.at (Invalid CPP headers): New.
18349 From Alexander Belopolsky.
18350 * src/files.c (compute_header_macro): Map non alnum chars to `_'.
18351
18352 2001-10-02 Akim Demaille <akim@epita.fr>
18353
18354 * tests/regression.at (Invalid input): New.
18355 * src/lex.c (lex): Be sure to set `token_buffer' in any case.
18356 Reported by Shura.
18357
18358 2001-10-02 Akim Demaille <akim@epita.fr>
18359
18360 * tests/calc.at: Now that --debug works, the tests must be adjusted.
18361
18362 2001-10-02 Akim Demaille <akim@epita.fr>
18363
18364 * src/output.c (output_parser): Assert `skeleton'.
18365 * src/files.c (skeleton_find): Look harder for skeletons on DOSish
18366 systems.
18367 From Shura.
18368
18369 2001-10-01 Marc Autret <autret_m@epita.fr>
18370
18371 * src/lex.h: Echo modifications.
18372 * src/lex.c (unlex): Parameter is now token_t.
18373 From Hans Aberg.
18374
18375 2001-10-01 Marc Autret <autret_m@epita.fr>
18376
18377 * src/main.c: Include lex.h.
18378 From Hans Aberg.
18379
18380 2001-09-29 Akim Demaille <akim@epita.fr>
18381
18382 * src/getargs.c (longopts): `--debug' is `-t', not `-d'.
18383
18384 2001-09-28 Akim Demaille <akim@epita.fr>
18385
18386 * tests/testsuite.at: Update to newer Autotest.
18387 * tests/Makefile.am (EXTRA_DIST): bison is not to be shipped.
18388
18389 2001-09-27 Akim Demaille <akim@epita.fr>
18390
18391 Position independent wrapper.
18392
18393 * tests/bison: Remove.
18394 * tests/bison.in: New.
18395 * configure.in: Adjust.
18396
18397 2001-09-27 Paul Eggert <eggert@twinsun.com>
18398
18399 Port quotearg fixes from tar 1.13.24.
18400
18401 * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
18402 tm to be declared.
18403 (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
18404 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
18405
18406 * m4/Makefile.am (EXTRA_DIST): Add mbrtowc.m4.
18407 * m4/mbrtowc.m4: New file.
18408 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit and stddef.h.
18409 Use jm_FUNC_MBRTOWC instead of AC_CHECK_FUNCS(mbrtowc).
18410
18411 2001-09-27 Akim Demaille <akim@epita.fr>
18412
18413 Bump to 1.29c.
18414
18415 2001-09-27 Akim Demaille <akim@epita.fr>
18416
18417 Version 1.29b.
18418
18419 2001-09-25 Akim Demaille <akim@epita.fr>
18420
18421 * src/system.h: Include `xalloc.h'.
18422 Remove it from the C files.
18423 * src/files.c (output_files): Free the obstacks.
18424 * src/lex.c (init_lex): Rename as...
18425 (lex_init): this.
18426 (lex_free): New.
18427 * src/main.c (main): Use it.
18428
18429 2001-09-24 Marc Autret <autret_m@epita.fr>
18430
18431 * src/vcg.c (open_edge, close_edge, open_node, close_node): Change
18432 to output informations in fout (FILE*).
18433 (open_graph, close_graph): Likewise.
18434 (output_graph, output_edge, output_node): Likewise.
18435 * src/vcg.h: Update function prototypes.
18436 * src/print_graph.c (print_graph): Open output graph file.
18437 (print_actions): Adjust.
18438 * src/files.h: Remove extern declaration.
18439 * src/files.c: Remove graph_obstack declaration.
18440 (open_files): Remove graph_obstack initialization.
18441 (output_files): Remove graph_obstack saving.
18442
18443 2001-09-24 Marc Autret <autret_m@epita.fr>
18444
18445 * src/files.c (compute_output_file_names): Fix.
18446
18447 2001-09-24 Marc Autret <autret_m@epita.fr>,
18448 Akim Demaille <akim@epita.fr>
18449
18450 * src/reader.c (reader): Remove call to free_symtab ().
18451 * src/main.c (main): Call it here.
18452 Include symtab.h.
18453 * src/conflicts.c (initialize_conflicts): Rename as...
18454 (solve_conflicts): this.
18455 * src/print.c (print_core, print_actions, print_state)
18456 (print_grammar): Dump to a file instead a `output_obstack'.
18457 (print_results): Dump `output_obstack', and then proceed with the
18458 FILE *.
18459 * src/files.c (compute_output_file_names, close_files): New.
18460 (output_files): Adjust.
18461 * src/main.c (main): Adjust.
18462
18463 2001-09-23 Marc Autret <autret_m@epita.fr>
18464
18465 * src/files.c (compute_header_macro): Computes header macro name
18466 from spec_defines_file when given.
18467
18468 2001-09-23 Marc Autret <autret_m@epita.fr>
18469
18470 * src/files.c (output_files): Add default extensions.
18471
18472 2001-09-22 Akim Demaille <akim@epita.fr>
18473
18474 * src/conflicts.c (finalize_conflicts): Rename as...
18475 (free_conflicts): this.
18476
18477 2001-09-22 Akim Demaille <akim@epita.fr>
18478
18479 * src/gram.c (gram_free): Rename back as...
18480 (dummy): this.
18481 (output_token_translations): Free `token_translations'.
18482 * src/symtab.c (free_symtab): Free the tag field.
18483
18484 2001-09-22 Akim Demaille <akim@epita.fr>
18485
18486 Remove `translations' as it is always set to true.
18487
18488 * src/gram.h: Adjust.
18489 * src/reader.c (packsymbols, parse_token_decl): Adjust
18490 * src/print.c (print_grammar): Adjust.
18491 * src/output.c (output_token_translations): Adjust.
18492 * src/lex.c (lex): Adjust.
18493 * src/gram.c: Be sure the set pointers to NULL.
18494 (dummy): Rename as...
18495 (gram_free): this.
18496
18497 2001-09-22 Akim Demaille <akim@epita.fr>
18498
18499 * configure.in: Invoke AM_LIB_DMALLOC.
18500 * src/system.h: Use dmalloc.
18501 * src/LR0.c: Be sure to have pointers initialized to NULL.
18502 (allocate_itemsets): Allocate kernel_items only if needed.
18503
18504 2001-09-22 Akim Demaille <akim@epita.fr>
18505
18506 * configure.in: Bump to 1.29b.
18507 * tests/Makefile.am (DISTCLEANFILES): Add package.m4.
18508 * tests/calc.at (_AT_DATA_CALC_Y): #undef malloc so that we don't
18509 need xmalloc.c in calc.y.
18510 From Pascal Bart.
18511
18512 2001-09-21 Akim Demaille <akim@epita.fr>
18513
18514 Version 1.29a.
18515 * Makefile.maint, config/config.guess, config/config.sub,
18516 * config/missing: Update from masters.
18517 * tests/Makefile.am ($(srcdir)/$(TESTSUITE)): No longer depend
18518 upon package.m4.
18519 * configure.in (ALL_LINGUAS): Add `tr'.
18520
18521 2001-09-21 Akim Demaille <akim@epita.fr>
18522
18523 * tests/Makefile.am (package.m4): Move to...
18524 ($(srcdir)/$(TESTSUITE)): here.
18525
18526 2001-09-20 Akim Demaille <akim@epita.fr>
18527
18528 * src/complain.c: No longer try to be standalone: use system.h.
18529 Don't assume __STDC__ is defined to 1. Just test if it is defined.
18530 * src/complain.h: Likewise.
18531 * src/reduce.c (useless_nonterminals, inaccessable_symbols):
18532 Remove the unused variable `n'.
18533 From Albert Chin-A-Young.
18534
18535 2001-09-18 Marc Autret <autret_m@epita.fr>
18536
18537 * doc/bison.1: Update.
18538 * doc/bison.texinfo (Bison Options): Update --defines and --graph
18539 descriptions.
18540 (Option Cross Key): Update.
18541 Add --graph.
18542
18543 2001-09-18 Marc Autret <autret_m@epita.fr>
18544
18545 * tests/regression.at: New test (comment in %union).
18546
18547 2001-09-18 Marc Autret <autret_m@epita.fr>
18548
18549 * src/reader.c (parse_union_decl): Do not output '/'. Let copy_comment
18550 do that.
18551 Reported by Keith Browne.
18552
18553 2001-09-18 Marc Autret <autret_m@epita.fr>
18554
18555 * tests/output.at: Add tests for --defines and --graph.
18556
18557 2001-09-18 Marc Autret <autret_m@epita.fr>
18558
18559 * tests/output.at: Removes tests of %{header,src}_extension features.
18560
18561 2001-09-18 Akim Demaille <akim@epita.fr>
18562
18563 * tests/Makefile.am (package.m4): New.
18564 * tests/calc.at (_AT_CHECK_CALC): Just run `calc input'.
18565 (_AT_CHECK_CALC_ERROR): Likewise.
18566 Factor the `, ' part of verbose error messages.
18567
18568 2001-09-18 Marc Autret <autret_m@epita.fr>
18569
18570 * src/getargs.c (longopts): Declare --defines and --graph as options
18571 with optional arguments.
18572 * src/files.h: Add extern declarations.
18573 * src/files.c (spec_graph_file, spec_defines_file): New.
18574 (output_files): Update.
18575 Remove CPP-outed code.
18576
18577 2001-09-18 Marc Autret <autret_m@epita.fr>
18578
18579 Turn off %{source,header}_extension feature.
18580
18581 * src/files.c (compute_exts_from_gf): Update.
18582 (compute_exts_from_src): Update.
18583 (output_files): CPP-out useless code.
18584 * src/files.h: Remove {header,source}_extension extern declarations.
18585 * src/reader.c (parse_dquoted_param): CPP-out.
18586 (parse_header_extension_decl): Remove.
18587 (parse_source_extension_decl): Remove.
18588 (read_declarations): Remove cases tok_{hdrext,srcext}.
18589 * src/lex.c (percent_table): Remove {header,source}_extension entries.
18590 * src/lex.h (token_t): Remove tok_hdrext and tok_srcext.
18591
18592 2001-09-10 Akim Demaille <akim@epita.fr>
18593
18594 * tests/output.at (AT_CHECK_BISON_FLAGS, AT_CHECK_BISON_PERCENT):
18595 (AT_CHECK_BISON_PERCENT_FLAGS): Merge into...
18596 (AT_CHECK_OUTPUT): this.
18597 Merely check ls' exit status, its output is useless.
18598
18599 2001-09-10 Akim Demaille <akim@epita.fr>
18600
18601 * tests/calc.at: Use m4_match.
18602 (_AT_DATA_CALC_Y): Check `yyin != NULL', not `stdin != NULL'.
18603
18604 2001-09-10 Marc Autret <autret_m@epita.fr>,
18605 Akim Demaille <akim@epita.fr>
18606
18607 * src/vcg.h (graph_s): color, textcolor, bordercolor are now
18608 enum color_e.
18609 * src/print_graph.c (print_graph): Initalize graph.layoutalgorithm
18610 to `normal'.
18611 * src/reader.c (parse_token_decl): Initialize token with tok_eof.
18612 * src/lex.h: Adjust prototype.
18613 (token_t): Add `tok_undef'.
18614 * src/lex.c (struct percent_table_struct): Retval is now a token_t.
18615 (parse_percent_token): Now returns token_t.
18616 Add default statement in switch.
18617 (lex): Separate `c' as an input variable, from the token_t result
18618 part.
18619 (unlexed): Is a token_t.
18620
18621 2001-09-10 Akim Demaille <akim@epita.fr>
18622
18623 * configure.in: Bump to 1.29a.
18624
18625 2001-09-07 Akim Demaille <akim@epita.fr>
18626
18627 Version 1.29.
18628
18629 2001-08-30 Akim Demaille <akim@epita.fr>
18630
18631 * tests/atgeneral.m4, tests/atconfig.in, tests/suite.at: Remove.
18632 * m4/atconfig.m4: Remove.
18633 * tests/testsuite.at, tests/atlocal.in, tests/output.at,
18634 * tests/bison: New.
18635 * tests/regression.at, tests/calc.at: Use m4_define, AT_BANNER,
18636 m4_if, m4_patsubst, and m4_regexp.
18637 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Use an
18638 `input' file instead of echo.
18639
18640 2001-08-29 Akim Demaille <akim@epita.fr>
18641
18642 Bump to 1.28e.
18643
18644 2001-08-29 Akim Demaille <akim@epita.fr>
18645
18646 Version 1.28d.
18647
18648 2001-08-29 Paul Eggert <eggert@twinsun.com>
18649
18650 * src/bison.simple (yyparse): Don't take the address of an
18651 item before the start of an array, as that doesn't conform to
18652 the C Standard.
18653
18654 2001-08-29 Robert Anisko <anisko_r@epita.fr>
18655
18656 * doc/bison.texinfo (Location Tracking Calc): New node.
18657
18658 2001-08-29 Paul Eggert <eggert@twinsun.com>
18659
18660 * src/output.c (output): Do not define const, as this now
18661 causes more problems than it cures.
18662
18663 2001-08-29 Akim Demaille <akim@epita.fr>
18664
18665 * doc/bison.texinfo: Modernize `@node' and `@top' use: just name
18666 the nodes.
18667 Be sure to tag the `detailmenu'.
18668
18669 2001-08-29 Akim Demaille <akim@epita.fr>
18670
18671 * Makefile.maint (do-po-update): Wget refuses to overwrite files:
18672 download in a tmp dir.
18673
18674 2001-08-28 Marc Autret <autret_m@epita.fr>
18675
18676 * config/depcomp: New file.
18677
18678 2001-08-28 Marc Autret <autret_m@epita.fr>
18679
18680 * doc/bison.1 (mandoc): Adjust.
18681 From Juan Manuel Guerrero.
18682
18683 2001-08-28 Marc Autret <autret_m@epita.fr>
18684
18685 * src/print_graph.c (print_state): Fix.
18686
18687 2001-08-27 Marc Autret <autret_m@epita.fr>
18688
18689 * src/vcg.h (classname_s, infoname_s, node_s): Constify the
18690 char * members.
18691 Echo modifications to the functions prototypes.
18692 * src/vcg.c (add_classname, add_infoname): Adjust arguments.
18693
18694 2001-08-27 Marc Autret <autret_m@epita.fr>
18695
18696 * src/vcg.c: Include `xalloc.h'.
18697 (add_colorentry): New.
18698 (add_classname): New.
18699 (add_infoname): New.
18700 * src/vcg.h: Add new prototypes.
18701
18702 2001-08-27 Akim Demaille <akim@epita.fr>
18703
18704 * Makefile.maint: Sync. again with CVS Autoconf.
18705
18706 2001-08-27 Akim Demaille <akim@epita.fr>
18707
18708 * Makefile.maint: Formatting changes.
18709 (po-update, cvs-update, update): New targets.
18710 (AMTAR): Remove.
18711
18712 2001-08-27 Akim Demaille <akim@epita.fr>
18713
18714 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
18715 * Makefile.maint: Sync. with CVS Autoconf.
18716
18717 2001-08-27 Marc Autret <autret_m@epita.fr>
18718
18719 * src/vcg.h (struct infoname_s): New.
18720 (struct colorentry_s): New.
18721 (graph_s): New fields {vertical,horizontal}_order in structure.
18722 Add `infoname' field.
18723 Add `colorentry' field;
18724 * src/vcg_defaults.h (G_VERTICAL_ORDER): New.
18725 (G_HORIZONTAL_ORDER): New.
18726 (G_INFONAME): New.
18727 (G_COLORENTRY): New.
18728 * src/vcg.c (output_graph): Add output of {vertical,horizontal}_order.
18729 Add output of `infoname'.
18730 Add output of `colorentry'.
18731
18732 2001-08-27 Marc Autret <autret_m@epita.fr>
18733
18734 * src/reader.c (parse_dquoted_param): Rename variable `index' to `i'.
18735 This one shadowed a global parameter.
18736
18737 2001-08-24 Marc Autret <autret_m@epita.fr>
18738
18739 * src/print_graph.c (node_output_size): Declared POSIX `size_t' type,
18740 instead of `unsigned'.
18741 (print_state): Do not call obstack_object_size () in obstack_grow ()
18742 to avoid macro variables shadowing.
18743
18744 2001-08-23 Marc Autret <autret_m@epita.fr>
18745
18746 * src/lex.c (percent_table): Typo: s/naem/name/.
18747 Add graph option.
18748 Normalize new options declarations.
18749
18750 2001-08-20 Pascal Bart <pascal.bart@epita.fr>
18751
18752 * tests/suite.at: Exercise %header_extension and %source_extension.
18753
18754 2001-08-16 Marc Autret <autret_m@epita.fr>
18755
18756 * src/reader.c (parse_dquoted_param): New.
18757 (parse_header_extension_decl): Use it.
18758 (parse_source_extension_decl): Likewise.
18759
18760 2001-08-16 Marc Autret <autret_m@epita.fr>
18761
18762 * src/vcg.c: Remove includes of `complain.h' and `xalloc.h'.
18763 (get_xxxx_str): Use assert () instead of complain ().
18764 Remove return invokations in default cases.
18765 (get_decision_str): Modify default behaviour. Remove second argument.
18766 Echo modifications on calls.
18767 (output_graph): Fix.
18768
18769 2001-08-16 Marc Autret <autret_m@epita.fr>
18770
18771 * src/getargs.c (usage): Update with ``-g, --graph''.
18772
18773 2001-08-16 Marc Autret <autret_m@epita.fr>
18774
18775 * doc/bison.texinfo (Bison Options): Add items `-g', `--graph'.
18776 (Option Cross Key): Likewise.
18777 * doc/bison.1: Update.
18778
18779 2001-09-25 Pascal Bart <pascal.bart@epita.fr>
18780
18781 * src/output.c (output_master_parser): Don't finish action_obstack.
18782 (output_parser): Don't care about the muscle action, here.
18783 (prepare): Copy the action_obstack in the action muscle.
18784 (output): Free action_obstack.
18785
18786 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
18787
18788 * src/reader.c (parse_union_decl): Add new obstack union_obstack. Which
18789 will contain `%union' declaration.
18790 (parse_union_decl): Delete #line directive output.
18791 (parse_union_decl): Substitute /attrs_obstack/union_obstack for all
18792 informations about %union.
18793 (parse_union_decl): Copy the union_obstack in the muscle stype.
18794 * src/bison.simple: Add new #line directive.
18795 Add typdef %%stype YYSTYPE.
18796
18797 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
18798
18799 * src/bison.simple: Add new `#line' directive.
18800
18801 2001-09-22 Pascal Bart <pascal.bart@epita.fr>
18802
18803 * src/bison.simple: New `#line' directive.
18804 * src/output.c (output_parser): Support new dynamic muscle input_line.
18805
18806 2001-09-22 Marc Autret <autret_m@epita.fr>
18807
18808 * src/output.c (output_master_parser): New.
18809 (output_parser): Be more re-entrant.
18810
18811 2001-09-21 Marc Autret <autret_m@epita.fr>
18812
18813 * src/reader.c (copy_definition, parse_union_decl): Update and use
18814 `linef' muscle.
18815 (copy_action): Likewise.
18816 Use obstack_1grow ().
18817 * src/muscle_tab.c (muscle_init): Add muscle `linef'.
18818
18819 2001-09-21 Marc Autret <autret_m@epita.fr>
18820
18821 * src/options.c (option_table): Adjust.
18822 * src/lex.c (parse_percent_token): Fix.
18823
18824 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
18825
18826 * src/options.c (symtab.h): Include it, need by lex.h.
18827
18828 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
18829
18830 * src/lex.c (parse_percent_token): Change type of variable `tx', which
18831 is now an option_table_struct*.
18832 (option_strcmp): New function option_strcmp.
18833 (parse_percent_token): Call option_strcmp.
18834 * src/getargs.c (xalloc.h, options.h): Include it.
18835 (getargs): Call create_long_option_table.
18836 (getargs): Free longopts at the end of the function.
18837 (shortopts): Move in options.c.
18838 * src/options.c (create_long_option_table): New function. Convert
18839 information from option_table to option structure.
18840 * src/reader.c (options.h): Include it.
18841
18842 * src/Makefile.am: Adjust.
18843 * src/options.c (option_table): Create from longopts and percent_table.
18844 * src/getargs.c (longopts): Delete.
18845 * src/lex.c (struct percent_table_struct): Delete.
18846 (percent_table): Delete.
18847 (options.h): Include it.
18848 * src/options.c: Create.
18849 * src/options.h: Create.
18850 Declare enum opt_access_e.
18851 Define struct option_table_struct.
18852
18853 2001-09-20 Marc Autret <autret_m@epita.fr>
18854
18855 * doc/bison.texinfo: Adjust terminologies about prologue and epilogue
18856 sections of Bison.
18857
18858 2001-09-19 Pascal Bart <pascal.bart@epita.fr>
18859
18860 * src/bison.simple: s/%%filename/%%skeleton.
18861 * src/muscle_tab.c (getargs.h): Include it.
18862 (muscle_init): Insert new muscle skeleton.
18863
18864 2001-09-18 Pascal Bart <pascal.bart@epita.fr>
18865
18866 * src/output.c (output_parser): Delete unused variable actions_dumped.
18867
18868 2001-09-07 Pascal Bart <pascal.bart@epita.fr>
18869
18870 * src/output.c (output): Delete call to reader_output_yylsp.
18871 * src/reader.c (reader): Likewise.
18872 * src/reader.h: Delete declaration of reader_output_yylsp.
18873
18874 2001-09-02 Marc Autret <autret_m@epita.fr>
18875
18876 * src/reader.c: Include muscle_tab.h.
18877 (parse_union_decl): Update.
18878 (parse_macro_decl): Rename parse_muscle_decl.
18879 Update to use renamed functions and variable.
18880 (read_declarations, copy_action, read_additionnal_code, : Updated
18881 with correct variables and functions names.
18882 (packsymbols, reader): Likewise.
18883
18884 * src/reader.h (muscle_obstack): Extern declaration update.
18885
18886 * src/output.c: Include muscle_tab.h
18887 In all functions using macro_insert, change by using muscle_insert ().
18888 (macro_obstack): Rename muscle_obstack.
18889 Echo modifications in the whole file.
18890 (MACRO_INSERT_INT): Rename MUSCLE_INSERT_INT.
18891 (MACRO_INSERT_STRING): Rename MUSCLE_INSERT_STRING.
18892 (MACRO_INSERT_PREFIX): Rename MUSCLE_INSERT_PREFIX.
18893
18894 * src/muscle_tab.h: Update double inclusion macros.
18895 (macro_entry_s): Rename muscle_entry_s.
18896 Update prototypes.
18897
18898 * src/muscle_tab.c: Include muscle_tab.h.
18899 Rename macro_tabble to muscle_table.
18900 (mhash1, mhash2, mcmp): Use muscle_entry.
18901 (macro_init): Rename muscle_init. Update.
18902 (macro_insert): Rename muscle_insert. Update.
18903 (macro_find): Rename muscle_find. Update.
18904
18905 * src/main.c: Include muscle_tab.h.
18906 (main): Call muscle_init ().
18907 * src/Makefile.am (bison_SOURCES): Echo modifications.
18908
18909 2001-09-02 Marc Autret <autret_m@epita.fr>
18910
18911 Now the files macro_tab.[ch] are named muscle_tab.[ch].
18912
18913 * src/muscle_tab.c, src/muscle_tab.h: Add files.
18914
18915 2001-09-02 Marc Autret <autret_m@epita.fr>
18916
18917 * src/macrotab.c, src/macrotab.h: Remove.
18918
18919 2001-09-01 Pascal Bart <pascal.bart@epita.fr>
18920
18921 * src/reader.c (copy_guard): Use muscle to specify the `#line'
18922 filename.
18923
18924 2001-09-01 Marc Autret <autret_m@epita.fr>
18925
18926 * tests/calc.at (exp): Now, YYERROR_VERBOSE need to be set
18927 to an explicit value to activate the feature. We do it here.
18928
18929 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
18930
18931 * src/output.c (prepare): Delete the `filename' muscule insertion.
18932 * src/reader.c (copy_action): Use `filename' muscule with `#line'.
18933 (parse_union_decl): Likewise.
18934 * src/macrotab.c (macro_init): Initialize filename by infile.
18935
18936 2001-08-31 Marc Autret <autret_m@epita.fr>
18937
18938 * src/bison.simple (YYLSP_NEEDED): New definition.
18939 * src/output.c (prepare): Add macro insertion of `locations_flag'
18940
18941 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
18942
18943 * src/output.c (prepare): Delete insertion of previous muscles,
18944 and insert the `prefix' muscles.
18945 * src/macrotab.c (macro_init): Likewise.
18946 (macro_init): Initialization prefix directive by `yy'.
18947 * src/bison.simple: Substitute all %%yylex, %%yychar, %%yylval,
18948 %%yydebug, %%yyerror, %%yynerrs and %%yyparse by yylex, yychar,
18949 yylval, yydebug, yyerror, yynerrs and yyparse.
18950 New directive `#define' to substitute yydebug, ... with option
18951 name_prefix.
18952
18953 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
18954
18955 * src/main.c (main): Standardize.
18956 * src/output.c (output_table_data, output_parser): Likewise.
18957 * src/macrotab.h, src/macrotab.c, src/bison.simple: Likewise.
18958
18959 2001-08-31 Pascal Bart <pascal.bart@epita.fr>, Marc Autret <autret_m@epita.fr>
18960
18961 * src/reader.c (read_additionnal_code): Rename %%user_code to
18962 %%epilogue.
18963 * src/output.c (output): Rename %%declarations to %%prologue.
18964 * src/bison.simple: Echo modifications.
18965
18966 2001-08-31 Marc Autret <autret_m@epita.fr>
18967
18968 * src/reader.c (readgram): CleanUp.
18969 (output_token_defines): Likewise.
18970 (packsymbols): Likewise.
18971 (reader): Likewise.
18972 * src/output.c (output): CPP-out useless code.
18973
18974 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
18975
18976 * src/reader.c (reader): Delete obsolete call to function
18977 output_trailers and output_headers.
18978 * src/output.h: Remove obsolete functions prototypes of output_headers
18979 and output_trailers.
18980
18981 2001-08-30 Pascal Bart <pascal.bart@epita.fr>
18982
18983 * src/main.c: Include macrotab.h.
18984 * src/macrotab.h (macro_entry_s): Constify fields.
18985 Adjust functions prototypes.
18986 * src/macrotab.c (macro_insert): Constify key and value.
18987 (macro_find): Constify key.
18988 (macro_insert): Include 'xalloc.h'
18989 (macro_insert): Use XMALLOC.
18990 (macro_find): Constify return value.
18991 * src/output.c (output_table_data): Rename table to table_data.
18992 (output_parser): Constify macro_key, macro_value.
18993
18994 2001-08-30 Marc Autret <autret_m@epita.fr>
18995
18996 * src/reader.c (parse_skel_decl): New.
18997 (read_declarations): Add case `tok_skel', call parse_skel_decl ().
18998 * src/lex.h (token_t): New token `tok_skel'.
18999 * src/lex.c (percent_table): Add skeleton option entry.
19000 Standardize.
19001
19002 2001-08-29 Marc Autret <autret_m@epita.fr>
19003
19004 * src/bison.simple: Add %%user_code directive at the end.
19005 * src/reader.c (read_additionnal_code): New.
19006 (reader): Use it.
19007 * src/output.c (output_program): Remove.
19008 (output): Update.
19009
19010 2001-08-28 Marc Autret <autret_m@epita.fr>
19011
19012 * src/output.c (output_actions): Clean up.
19013 (output_gram): CPP-out useless code.
19014 * src/reader.c (reader): Clean up, CPP-out useless code.
19015
19016 2001-08-28 Pascal Bart <pascal.bart@epita.fr>
19017
19018 * src/output.c (output): Copy attrs_obstack in the '%%definitions'
19019 directive.
19020 * src/bison.simple: Add `%%definitions'.
19021
19022 2001-08-28 Marc Autret <autret_m@epita.fr>
19023
19024 * config/depcomp: New file.
19025
19026 2001-08-27 Paul Eggert <eggert@twinsun.com>
19027
19028 * src/bison.simple (yyparse): Don't take the address of an
19029 item before the start of an array, as that doesn't conform to
19030 the C Standard.
19031
19032 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
19033
19034 * src/output.c (output): Remove the initialization of the macro
19035 obstack. It was done too late here.
19036
19037 * src/reader.c (parse_macro_decl): Fix. Use of the macro obstack was
19038 completely wrong.
19039 (reader): Initialize the macro obstack here, since we need it to grow
19040 '%define' directives.
19041
19042 * src/reader.h: Declare the macro obstack as extern.
19043
19044 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
19045
19046 * src/output.c (output_parser): Fix. Store single '%' characters in
19047 the output obstack instead of throwing them away.
19048
19049 2001-08-27 Akim Demaille <akim@epita.fr>
19050
19051 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
19052
19053 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
19054
19055 * lib/Makefile.am: Adjust.
19056
19057 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
19058
19059 * src/bison.simple: Update and add '%%' directives.
19060
19061 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
19062
19063 * src/reader.c (reader): Remove calls to 'output_headers' and
19064 'output_trailers'. Remove some C output.
19065 (readgram): Disable a piece of code that was writing a default
19066 definition for 'YYSTYPE'.
19067 (reader_output_yylsp): Remove.
19068 (packsymbols): Output token defintions to a macro.
19069 (copy_definition): Disable C output.
19070
19071 * src/reader.c (parse_macro_decl): New function used to parse macro
19072 declarations.
19073 (copy_string2): Put the body of copy_string into this new function.
19074 Add a parameter to let the caller choose whether he wants to copy the
19075 string delimiters or not.
19076 (copy_string): Be a simple call to copy_string2 with the last argument
19077 bound to true.
19078 (read_declarations): Add case for macro definition.
19079 (copy_identifier): New.
19080 (parse_macro_decl): Read macro identifiers using copy_identifier
19081 rather than lex.
19082
19083 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
19084
19085 * src/output.c (prepare): Add prefixed names.
19086 (output_parser): Output semantic actions.
19087 (output_parser): Fix bug on '%%line' directives.
19088
19089 * src/output.c (output_headers): Remove. The C code printed by this
19090 function should now be in the skeletons.
19091 (output_trailers): Remove.
19092 (output): Disable call to 'reader_output_yylsp'.
19093 (output_rule_data): Do not output tables to the table obstack.
19094
19095 * src/output.c: Remove some C dedicated output.
19096 Improve the use of macro and output obstacks.
19097 (output_defines): Remove.
19098
19099 * src/output.c (output_token_translations): Associate 'translate'
19100 table with a macro. No output to the table obstack.
19101 (output_gram): Same for 'rhs' and 'prhs'.
19102 (output_stos): Same for 'stos'.
19103 (output_rule_data): Same for 'r1' and 'r2'.
19104 (token_actions): Same for 'defact'.
19105 (goto_actions): Same for 'defgoto'.
19106 (output_base): Same for 'pact' and 'pgoto'.
19107 (output_table): Same for 'table'.
19108 (output_check): Same for 'check'.
19109
19110 * src/output.c (output_table_data): New function.
19111 (output_short_table): Remove.
19112 (output_short_or_char_table): Remove.
19113
19114 * src/output.c (output_parser): Replace most of the skeleton copy code
19115 with something new. Skeletons are now processed character by character
19116 rather than line by line, and Bison looks for '%%' macros. This is the
19117 first step in making Bison's output process (a lot) more flexible.
19118 (output_parser): Use the macro table.
19119
19120 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
19121
19122 * src/main.c (main): Initialize the macro table.
19123
19124 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
19125
19126 * src/lex.c (percent_table): Add tok_define.
19127 * src/lex.h: Add tok_define.
19128
19129 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
19130
19131 * src/macrotab.c: New file.
19132 * src/macrotab.h: New file.
19133 * src/Makefile.am: Update.
19134
19135 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
19136
19137 * lib/hash.c: New file.
19138 * lib/hash.h: New file.
19139 * lib/Makefile.am: Update.
19140
19141 2001-08-15 Akim Demaille <akim@epita.fr>
19142
19143 Version 1.28c.
19144
19145 2001-08-15 Marc Autret <autret_m@epita.fr>
19146
19147 * src/reader.c (readgram): Indent output macro YYSTYPE.
19148 (packsymbols): Likewise.
19149 (output_token_defines): Likewise.
19150 * src/files.c: Standardize.
19151 (compute_header_macro): New.
19152 (defines_obstack_save): New. Use compute_header_macro.
19153 (output_files): Update. Use defines_obstack_save.
19154
19155 2001-08-15 Akim Demaille <akim@epita.fr>
19156
19157 * doc/bison.texinfo (Table of Symbols): Document
19158 YYSTACK_USE_ALLOCA.
19159
19160 2001-08-15 Akim Demaille <akim@epita.fr>
19161
19162 * missing: Update from CVS Automake.
19163 * config/config.guess, config/config.sub, config/texinfo.tex:
19164 Update from gnu.org.
19165
19166 2001-08-15 Akim Demaille <akim@epita.fr>
19167
19168 * Makefile.maint: Sync with CVS Autoconf.
19169
19170 2001-08-14 Pascal Bart <pascal.bart@epita.fr>
19171
19172 * doc/bison.texinfo: Include GNU Free Documentation License from
19173 `fdl.texi'.
19174 * doc/fdl.texi: Add to package.
19175
19176 2001-08-14 Marc Autret <autret_m@epita.fr>
19177
19178 Turn on %{source,header}_extension features.
19179
19180 * src/lex.c (percent_table): Un-CPP out header_extension and
19181 source_extension.
19182 * src/files.c (compute_exts_from_gf): Compare pointers with NULL.
19183 (compute_exts_from_src): Remove conditions. It restores priorities
19184 between options.
19185
19186 2001-08-14 Marc Autret <autret_m@epita.fr>
19187
19188 * src/files.c (compute_base_names): Add extensions computing when
19189 `--file-prefix' used.
19190 Standardize function calls.
19191
19192 2001-08-13 Marc Autret <autret_m@epita.fr>
19193
19194 * src/bison.simple (YYSTACK_USE_ALLOCA): Changed to allow users
19195 defining it (defined but null disables alloca).
19196
19197 2001-08-13 Marc Autret <autret_m@epita.fr>
19198
19199 * src/bison.simple (_yy_memcpy): CPP reformat.
19200
19201 2001-08-13 Pascal Bart <pascal.bart@epita.fr>
19202
19203 * tests/atconfig.in (CPPFLAGS): Fix.
19204
19205 2001-08-10 Pascal Bart <pascal.bart@epita.fr>
19206
19207 * doc/bison.texinfo: Include GNU General Public License from
19208 `gpl.texi'.
19209 * doc/gpl.texi: Add to package.
19210
19211 2001-08-10 Marc Autret <autret_m@epita.fr>
19212
19213 * src/print_graph.h: Fix.
19214 * src/reader.c (read_declarations): Use parse_header_extension_decl ().
19215
19216 2001-08-10 Akim Demaille <akim@epita.fr>
19217
19218 * src/system.h: Provide default declarations for stpcpy, strndup,
19219 and strnlen.
19220
19221 2001-08-10 Robert Anisko <anisko_r@epita.fr>
19222
19223 * doc/bison.texinfo (Locations): Update @$ stuff.
19224
19225 2001-08-09 Robert Anisko <anisko_r@epita.fr>
19226
19227 * src/bison.simple (YYLLOC_DEFAULT): Update.
19228 (yyparse): Adjust.
19229
19230 2001-08-08 Marc Autret <autret_m@epita.fr>
19231
19232 * doc/bison.texinfo: Change @samp{$<@dots{}>} to
19233 @samp{$<@dots{}>@var{n}} in Section Actions in Mid-Rule.
19234 Reported by Fabrice Bauzac.
19235
19236 2001-08-08 Marc Autret <autret_m@epita.fr>
19237
19238 * src/vcg_default.h: Use NULL instead of 0 to initialize pointers.
19239 * src/vcg.c (output_node): Fix.
19240 * src/vcg.h: Cleanup.
19241 * src/print_graph.c: Add comments.
19242 (node_output_size): New global variable. Simplify the formatting of
19243 the VCG graph output.
19244 (print_actions): Unused code is now used. It notifies the final state
19245 and no action states in the VCG graph. It also give the reduce actions.
19246 The `shift and goto' edges are red and the `go to state' edges are
19247 blue.
19248 Get the current node name and node_obstack by argument.
19249 (node_obstack): New variable.
19250 (print_state): Manage node_obstack.
19251 (print_core): Use node_obstack given by argument.
19252 A node is not only computed here but in print_actions also.
19253 (print_graph): CPP out useless code instead of commenting it.
19254
19255 2001-08-07 Pascal Bart <pascal.bart@epita.fr>
19256
19257 * tests/atconfig.in (CPPFLAGS): Fix.
19258
19259 2001-08-07 Akim Demaille <akim@epita.fr>
19260
19261 * src/print_graph.c (quote): New.
19262 (print_core): Use it.
19263
19264 2001-08-06 Akim Demaille <akim@epita.fr>, Marc Autret <autret_m@epita.fr>
19265
19266 * src/vcg.c (complain.h): Include it.
19267 Unepitaize `return' invocations.
19268 [NDEBUG] (main): Remove.
19269 * src/vcg.h (node_t, edge_t, graph_t): Constify the char * members.
19270 * src/files.c (open_files): Initialize graph_obstack.
19271 * src/print_graph.c (print_actions): CPP out useless code.
19272 (print_core): Don't output the last `\n' in labels.
19273 Use `quote'.
19274 * src/files.c (output_files): Output the VCG file.
19275 * src/main.c (main): Invoke print_graph ();
19276
19277 2001-08-06 Marc Autret <autret_m@epita.fr>
19278
19279 Automaton VCG graph output.
19280 Using option ``-g'' or long option ``--graph'', you can generate
19281 a gram_filename.vcg file containing a VCG description of the LALR (1)
19282 automaton of your grammar.
19283
19284 * src/main.c: Call to print_graph() function.
19285 * src/getargs.h: Update.
19286 * src/getargs.c (options): Update to catch `-g' and `--graph' options.
19287 (graph_flag): New flag.
19288 (longopts): Update.
19289 (getargs): Add case `g'.
19290 * src/files.c (graph_obstack): New obstack struct.
19291 (open_files): Initialize new obstack.
19292 (output_files): Saves graph_obstack if required.
19293 * src/files.h (graph_obstack): New extern declaration.
19294 * src/Makefile.am: Add new source files.
19295
19296 2001-08-06 Marc Autret <autret_m@epita.fr>
19297
19298 * src/print_graph.c, src/print_graph.h (graph): New.
19299 * src/vcg.h: New file.
19300 * src/vcg.c: New file, VCG graph handling.
19301
19302 2001-08-06 Marc Autret <autret_m@epita.fr>
19303
19304 Add of %source_extension and %header_extension which specify
19305 the source or/and the header output file extension.
19306
19307 * src/files.c (compute_base_names): Remove initialisation of
19308 src_extension and header_extension.
19309 (compute_exts_from_gf): Update.
19310 (compute_exts_from_src): Update.
19311 (output_files): Update.
19312 * src/reader.c (parse_header_extension_decl): New.
19313 (parse_source_extension_decl): New.
19314 (read_declarations): New case statements for the new tokens.
19315 * src/lex.c (percent_table): Add entries for %source_extension
19316 and %header_extension.
19317 * src/lex.h (token_e): New tokens tok_hdrext and tok_srcext.
19318
19319 2001-08-06 Marc Autret <autret_m@epita.fr>
19320
19321 * configure.in: Bump to 1.28c.
19322 * doc/bison.texinfo: Texinfo thingies.
19323
19324 2001-08-04 Pascal Bart <pascal.bart@epita.fr>
19325
19326 * tests/atconfig.in (CPPFLAGS): Add.
19327 * tests/calc.at (AT_CHECK): Use CPPFLAGS.
19328
19329 2001-08-03 Akim Demaille <akim@epita.fr>
19330
19331 Version 1.28b.
19332
19333 2001-08-03 Akim Demaille <akim@epita.fr>
19334
19335 * tests/Makefile.am (check-local): Ship testsuite.
19336 * tests/calc.at (_AT_DATA_CALC_Y): Prototype all the functions.
19337 Include `string.h'.
19338
19339 2001-08-03 Akim Demaille <akim@epita.fr>
19340
19341 * configure.in: Try using -Wformat when compiling.
19342
19343 2001-08-03 Akim Demaille <akim@epita.fr>
19344
19345 * configure.in: Bump to 1.28b.
19346
19347 2001-08-03 Akim Demaille <akim@epita.fr>
19348
19349 * src/complain.c: Adjust strerror_r portability issues.
19350
19351 2001-08-03 Akim Demaille <akim@epita.fr>
19352
19353 Version 1.28a.
19354
19355 2001-08-03 Akim Demaille <akim@epita.fr>
19356
19357 * src/getargs.c, src/getarg.h (skeleton)): Constify.
19358 * src/lex.c (literalchar): Avoid name clashes on `buf'.
19359 * src/getargs.c: Include complain.h.
19360 * src/files.c, src/files.h (skeleton_find): Avoid name clashes.
19361 * lib/quotearg.c, lib/quotearg.h: Update from fileutils 4.1.
19362
19363 2001-08-03 Akim Demaille <akim@epita.fr>
19364
19365 * src/reader.c (readgram): Display hidden chars in error messages.
19366
19367 2001-08-03 Akim Demaille <akim@epita.fr>
19368
19369 Update to gettext 0.10.39.
19370
19371 2001-08-03 Akim Demaille <akim@epita.fr>
19372
19373 * lib/strspn.c: New.
19374
19375 2001-08-01 Marc Autret <autret_m@epita.fr>
19376
19377 * doc/bison.texinfo: Update.
19378 * doc/bison.1 (mandoc): Update.
19379 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove .c and .h.
19380 * src/files.c: Support output files extensions computing.
19381 (src_extension): New static variable.
19382 (header_extension): New static variable.
19383 (tr): New function.
19384 (get_extension_index): New function, gets the index of an extension
19385 filename in a string.
19386 (compute_exts_from_gf): New function, computes extensions from the
19387 grammar file extension.
19388 (compute_exts_from_src): New functions, computes extensions from the
19389 C source file extension, file given by ``-o'' option.
19390 (compute_base_names): Update.
19391 (output_files): Update.
19392
19393 2001-08-01 Robert Anisko <anisko_r@epita.fr>
19394
19395 * doc/bison.texi: Document @$.
19396 (Locations): New section.
19397
19398 2001-07-18 Akim Demaille <akim@epita.fr>
19399
19400 * Makefile.maint, GNUmakefile: New, from Autoconf 2.52.
19401 * config/prev-version.txt, config/move-if-change: New.
19402 * Makefile.am: Adjust.
19403
19404 2001-07-08 Pascal Bart <pascal.bart@epita.fr>
19405
19406 * src/bison.simple (yyparse): Suppress warning `comparaison
19407 between signed and unsigned'.
19408
19409 2001-07-05 Pascal Bart <pascal.bart@epita.fr>
19410
19411 * src/getargs.h (raw_flag): Remove.
19412 * src/getargs.c: Die on `-r'/`--raw'.
19413 * src/lex.c (parse_percent_token): Die on `%raw'.
19414 * src/reader.c (output_token_defines): Suppress call to `raw_flag'.
19415 * tests/calc.at: Suppress test with option `--raw'.
19416
19417 2001-07-14 Akim Demaille <akim@epita.fr>
19418
19419 * config/: New.
19420 * configure.in: Require Autoconf 2.50.
19421 Update to gettext 0.10.38.
19422
19423 2001-03-16 Akim Demaille <akim@epita.fr>
19424
19425 * doc/bison.texinfo: ANSIfy the examples.
19426
19427 2001-03-16 Akim Demaille <akim@epita.fr>
19428
19429 * getargs.c (skeleton): New variable.
19430 (longopts): --skeleton is a new option.
19431 (shortopts, getargs): -S is a new option.
19432 * getargs.h: Declare skeleton.
19433 * output.c (output_parser): Use it.
19434
19435 2001-03-16 Akim Demaille <akim@epita.fr>
19436
19437 * m4/strerror_r.m4: New.
19438 * m4/error.m4: Run AC_FUNC_STRERROR_R.
19439 * lib/error.h, lib/error.c: Update.
19440
19441 2001-03-16 Akim Demaille <akim@epita.fr>
19442
19443 * src/getargs.c (longopts): Clean up.
19444
19445 2001-02-21 Akim Demaille <akim@epita.fr>
19446
19447 * src/reader.c (gensym): `gensym_count' is your own.
19448 Use a static buf to create the symbol name, as token_buffer is no
19449 longer a buffer.
19450
19451 2001-02-08 Akim Demaille <akim@epita.fr>
19452
19453 * src/conflicts.c (conflict_report): Be sure not to append to res
19454 between two calls, which could happen if both first sprintf were
19455 skipped, but not the first cp += strlen.
19456
19457 2001-02-08 Akim Demaille <akim@epita.fr>
19458
19459 * lib/memchr.c, lib/stpcpy.c, lib/strndup.c, lib/strnlen.c:
19460 New, from fileutils 4.0.37.
19461 * configure.in: Require Autoconf 2.49c. I took some time before
19462 making this decision. This is the only way out for portability
19463 issues in Bison, it would mean way too much duplicate effort to
19464 import in Bison features implemented in 2.49c since 2.13.
19465 AC_REPLACE_FUNCS and AC_CHECK_DECLS the functions above.
19466
19467 2001-02-02 Akim Demaille <akim@epita.fr>
19468
19469 * lib/malloc.c, lib/realloc.c: New, from the fileutils 4.0.37.
19470 * lib/xalloc.h, lib/xmalloc.c: Update.
19471
19472 2001-01-19 Akim Demaille <akim@epita.fr>
19473
19474 Get rid of the ad hoc handling of token_buffer in the scanner: use
19475 the obstacks.
19476
19477 * src/lex.c (token_obstack): New.
19478 (init_lex): Initialize it. No longer call...
19479 (grow_token_buffer): this. Remove it.
19480 Adjust all the places which used it to use the obstack.
19481
19482 2001-01-19 Akim Demaille <akim@epita.fr>
19483
19484 * src/lex.h: Rename all the tokens:
19485 s/\bENDFILE\b/tok_eof/g;
19486 s/\bIDENTIFIER\b/tok_identifier/g;
19487 etc.
19488 Let them be enums, not #define, to ease debugging.
19489 Adjust all the code.
19490
19491 2001-01-18 Akim Demaille <akim@epita.fr>
19492
19493 * src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
19494 * src/lex.c (maxtoken, grow_token_buffer): Static.
19495
19496 2001-01-18 Akim Demaille <akim@epita.fr>
19497
19498 Since we now use obstacks, more % directives can be enabled.
19499
19500 * src/lex.c (percent_table): Also accept `%yacc',
19501 `%fixed_output_files', `%defines', `%no_parser', `%verbose', and
19502 `%debug'.
19503 Handle the actions for `%semantic_parser' and `%pure_parser' here,
19504 instead of returning a token.
19505 * src/lex.h (SEMANTIC_PARSER, PURE_PARSER): Remove, unused.
19506 * src/reader.c (read_declarations): Adjust.
19507 * src/files.c (open_files): Don't call `compute_base_names', don't
19508 compute `attrsfile' since they depend upon data which might be
19509 *in* the input file now.
19510 (output_files): Do it here.
19511 * src/output.c (output_headers): Document the fact that this patch
19512 introduces a guaranteed SEGV for semantic parsers.
19513 * doc/bison.texinfo: Document them.
19514 * tests/suite.at: Exercise these %options.
19515
19516 2000-12-20 Akim Demaille <akim@epita.fr>
19517
19518 Also handle the output file (--verbose) with obstacks.
19519
19520 * files.c (foutput): Remove.
19521 (output_obstack): New.
19522 Adjust all dependencies.
19523 * src/conflicts.c: Return a string.
19524 * src/system.h (obstack_grow_string): Rename as...
19525 (obstack_sgrow): this. Be ready to work with non literals.
19526 (obstack_fgrow4): New.
19527
19528 2000-12-20 Akim Demaille <akim@epita.fr>
19529
19530 * src/files.c (open_files): Fix the computation of short_base_name
19531 in the case of `-o foo.tab.c'.
19532
19533 2000-12-20 Akim Demaille <akim@epita.fr>
19534
19535 * src/reader.c (copy_string, copy_comment, copy_comment2, copy_at)
19536 (copy_dollar): Now that everything uses obstacks, get rid of the
19537 FILE * parameters.
19538
19539 2000-12-20 Akim Demaille <akim@epita.fr>
19540
19541 * src/files.c (open_files): Actually the `.output' file is based
19542 on the short_base_name, not base_name.
19543 * tests/suite.at (Checking output file names): Adjust.
19544
19545 2000-12-20 Akim Demaille <akim@epita.fr>
19546
19547 * src/bison.s1: Remove, we now use directly...
19548 * src/bison.simple: this.
19549 * src/Makefile.am: Use pkgdata instead of data.
19550
19551 2000-12-20 Akim Demaille <akim@epita.fr>
19552
19553 * src/files.c (guard_obstack): New.
19554 (open_files): Initialize it.
19555 (output_files): Dump it...
19556 * src/files.h: Export it.
19557 * src/reader.c (copy_guard): Use it.
19558
19559 2000-12-19 Akim Demaille <akim@epita.fr>
19560
19561 * src/files.c (outfile, defsfile, actfile): Removed as global
19562 vars.
19563 (open_files): Don't compute them.
19564 (output_files): Adjust.
19565 (base_name, short_base_name): Be global.
19566 Adjust dependencies.
19567
19568 2000-12-19 Akim Demaille <akim@epita.fr>
19569
19570 * src/files.c (strsuffix): New.
19571 (stringappend): Be just like strcat but allocate.
19572 (base_names): Eve out from open_files.
19573 Try to simplify the rather hairy computation of base_name and
19574 short_base_name.
19575 (open_files): Use it.
19576 * tests/suite.at (Checking output file names): New test.
19577
19578 2000-12-19 Akim Demaille <akim@epita.fr>
19579
19580 * src/system.h (obstack_grow_literal_string): Rename as...
19581 (obstack_grow_string): this.
19582 * src/output.c (output_parser): Recognize `%% actions' instead of
19583 `$'.
19584 * src/bison.s1: s/$/%% actions/.
19585 * src/bison.hairy: Likewise.
19586
19587 2000-12-19 Akim Demaille <akim@epita.fr>
19588
19589 * src/output.c (output_parser): Compute the `#line' lines when
19590 there are.
19591 * src/Makefile.am (bison.simple): Be a simple copy of bison.s1.
19592 Suggested by Hans Aberg.
19593
19594 2000-12-19 Akim Demaille <akim@epita.fr>
19595
19596 Let the handling of the skeleton files be local to the procedures
19597 that use it.
19598
19599 * src/files.c (xfopen, xfclose, skeleton_find, guardfile): No
19600 longer static.
19601 (fparser, open_extra_files): Remove.
19602 (open_files, output_files): Don't take care of fparser.
19603 * src/files.h: Adjust.
19604 * src/output.c (output_parser): Open and close the file to the
19605 skeleton.
19606 * src/reader.c (read_declarations): When %semantic_parser, open
19607 fguard.
19608
19609 2000-12-19 Akim Demaille <akim@epita.fr>
19610
19611 * src/file.h (BISON_SIMPLE, BISON_HAIRY): Move from here...
19612 * src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
19613
19614 2000-12-19 Akim Demaille <akim@epita.fr>
19615
19616 * src/files.c (open_files): Yipee! We no longer need all the code
19617 looking for `/tmp' since we have no tmp file.
19618
19619 2000-12-19 Akim Demaille <akim@epita.fr>
19620
19621 * src/system.h (EXT_TAB, EXT_OUTPUT, EXT_STYPE_H, EXT_GUARD_C):
19622 New macros.
19623 * src/files.c (open_files): Less dependency on MSDOS etc.
19624
19625 2000-12-14 Akim Demaille <akim@epita.fr>
19626
19627 * src/bison.s1 (YYLLOC_DEFAULT): New macro.
19628 Provide a default definition.
19629 Use it when executing the default @ action.
19630 * src/reader.c (reader_output_yylsp): No longer include
19631 `timestamp' and `text' in the default YYLTYPE.
19632
19633 2000-12-12 Akim Demaille <akim@epita.fr>
19634
19635 * src/reader.c (copy_definition, parse_union_decl, copy_action)
19636 (copy_guard): Quote the file names.
19637 Reported by Laurent Mascherpa.
19638
19639 2000-12-12 Akim Demaille <akim@epita.fr>
19640
19641 * src/output.c (output_headers, output_program, output): Be sure
19642 to escape special characters when outputting filenames.
19643 (ACTSTR_PROLOGUE, ACTSTR_EPILOGUE): Remove.
19644 (output_headers): Don't depend on them, Use ACTSTR.
19645
19646 2000-11-17 Akim Demaille <akim@epita.fr>
19647
19648 * lib/obstack.h: Formatting changes.
19649 (obstack_grow, obstack_grow0): Don't cast WHERE at all: it
19650 prevents type checking.
19651 (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
19652 cast the value to (void *): assigning a `foo *' to a `void *'
19653 variable is valid.
19654 (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
19655 * src/reader.c (parse_union_decl): Typo: use obstack_1grow to
19656 append characters.
19657
19658 2000-11-17 Akim Demaille <akim@epita.fr>
19659
19660 * tests/Makefile.am (suite.m4, regression.m4, calc.m4): Rename
19661 as...
19662 (suite.m4, regression.m4, calc.m4): these.
19663 * tests/atgeneral.m4: Update from CVS Autoconf.
19664
19665 2000-11-17 Akim Demaille <akim@epita.fr>
19666
19667 * tests/regression.m4 (%union and --defines): New test,
19668 demonstrating a current bug in the obstack implementation.
19669
19670 2000-11-17 Akim Demaille <akim@epita.fr>
19671
19672 * src/bison.s1 (_YY_DECL_VARIABLES, YY_DECL_VARIABLES): New
19673 macros.
19674 Use them to declare the variables which are global or local to
19675 `yyparse'.
19676
19677 2000-11-17 Akim Demaille <akim@epita.fr>
19678
19679 * acconfig.h: Remove, no longer used.
19680
19681 2000-11-07 Akim Demaille <akim@epita.fr>
19682
19683 * src: s/Copyright (C)/Copyright/g.
19684
19685 2000-11-07 Akim Demaille <akim@epita.fr>
19686
19687 * src/reader.c (reader): #define YYLSP_NEEDED to 1 instead of just
19688 defining.
19689 * src/bison.s1: s/#ifdef YYLSP_NEEDED/#if YYLSP_NEEDED/.
19690
19691 2000-11-07 Akim Demaille <akim@epita.fr>
19692
19693 * src/bison.s1 (YYLEX): Use #if instead of #ifdef.
19694 Merge in a single CPP if/else.
19695
19696 2000-11-07 Akim Demaille <akim@epita.fr>
19697
19698 * src/output.c (output): Remove useless variables.
19699 * lib/obstack.c (obstack_grow, obstack_grow0): Rename the second
19700 argument `data' for consistency with the prototypes.
19701 Qualify it `const'.
19702 (obstack_copy, obstack_copy0): Rename the second argument as
19703 `address' for consistency. Qualify it `const'.
19704 * lib/obstack.h (obstack_copy, obstack_copy0, obstack_grow)
19705 (obstack_grow0, obstack_ptr_grow, obstack_ptr_grow_fast): Qualify
19706 `const' their input argument (`data' or `address').
19707 Adjust the corresponding macros to include `const' in casts.
19708
19709 2000-11-03 Akim Demaille <akim@epita.fr>
19710
19711 * src/Makefile.am (INCLUDES): s/PFILE/BISON_SIMPLE/.
19712 s/PFILE1/BISON_HAIRY/.
19713 Adjust dependencies.
19714
19715 2000-11-03 Akim Demaille <akim@epita.fr>
19716
19717 For some reason, this was not applied.
19718
19719 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
19720 `unlink': it's no longer used.
19721
19722 2000-11-03 Akim Demaille <akim@epita.fr>
19723
19724 * src/files.c (skeleton_find): New function, eved out of...
19725 (open_files, open_extra_files): here.
19726
19727 2000-11-03 Akim Demaille <akim@epita.fr>
19728
19729 Don't use `atexit'.
19730
19731 * src/files.c (obstack_save): New function.
19732 (done): Rename as...
19733 (output_files): this.
19734 Use `obstack_save'.
19735 * src/main.c (main): Don't use `atexit' to register `done', since
19736 it no longer has to remove tmp files, just call `output_files'
19737 when there are no errors.
19738
19739 2000-11-02 Akim Demaille <akim@epita.fr>
19740
19741 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
19742 `unlink': it's no longer used.
19743 * src/files.h: Formatting changes.
19744
19745 2000-11-02 Akim Demaille <akim@epita.fr>
19746
19747 Remove the last uses of mktemp and unlink/delete.
19748
19749 * src/files.c (fdefines, ftable): Removed.
19750 (defines_ostack, table_obstack): New.
19751 Adjust dependencies of the former into uses of the latter.
19752 * src/output.c (output_short_or_char_table, output_short_table):
19753 Convert to using obstacks.
19754 * src/reader.c (copy_comment2): Accept one FILE * and two
19755 obstacks.
19756 (output_token_defines, reader_output_yylsp): Use obstacks.
19757 * src/system.h (obstack_fgrow3): New.
19758 * po/POTFILES.in: Adjust.
19759
19760 2000-11-01 Akim Demaille <akim@epita.fr>
19761
19762 Change each use of `fattrs' into a use of `attrs_obstack'.
19763
19764 * src/reader.c (copy_at): Typo: s/yylloc/yyloc/.
19765 * src/files.c (fattrs): Remove.
19766 (attrs_obstack): New.
19767 Adjust all dependencies.
19768 (done): If SEMANTIC_PARSER, dump attrs_obstack into attrsfile.
19769
19770 2000-11-01 Akim Demaille <akim@epita.fr>
19771
19772 Introduce obstacks.
19773 Change each use of `faction' into a use of `action_obstack'.
19774
19775 * lib/obstack.h, lib/obstack.c: New files.
19776 * src/files.c (faction): Remove.
19777 (action_obstack): New.
19778 Adjust all dependencies.
19779
19780 2000-10-20 Akim Demaille <akim@epita.fr>
19781
19782 * lib/quote.h (PARAMS): New macro. Use it.
19783
19784 2000-10-16 Akim Demaille <akim@epita.fr>
19785
19786 * src/output.c (output_short_or_char_table): New function.
19787 (output_short_table, output_token_translations): Use it.
19788 (goto_actions): Use output_short_table.
19789
19790 2000-10-16 Akim Demaille <akim@epita.fr>
19791
19792 * src/symtab.c (bucket_new): New function.
19793 (getsym): Use it.
19794
19795 * src/output.c (output_short_table): New argument to display the
19796 comment associated with the table.
19797 Adjust dependencies.
19798 (output_gram): Use it.
19799 (output_rule_data): Nicer output layout for YYTNAME.
19800
19801 2000-10-16 Akim Demaille <akim@epita.fr>
19802
19803 * src/lex.c (read_typename): New function.
19804 (lex): Use it.
19805 * src/reader.c (copy_dollar): Likewise.
19806
19807 2000-10-16 Akim Demaille <akim@epita.fr>
19808
19809 * src/reader.c (copy_comment2): Expect the input stream to be on
19810 the `/' which is suspected to open a comment, instead of being
19811 called after `//' or `/*' was read.
19812 (copy_comment, copy_definition, parse_union_decl, copy_action)
19813 (copy_guard): Adjust.
19814
19815 2000-10-16 Akim Demaille <akim@epita.fr>
19816
19817 * src/reader.c (parse_expect_decl): Use `skip_white_space' and
19818 `read_signed_integer'.
19819
19820 2000-10-16 Akim Demaille <akim@epita.fr>
19821
19822 * src/reader.c (copy_dollar): New function.
19823 (copy_guard, copy_action): Use it.
19824
19825 2000-10-16 Akim Demaille <akim@epita.fr>
19826
19827 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
19828 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
19829 New files, from Fileutils 4.0.27.
19830 * src/main.c (printable_version): Remove.
19831 * src/lex.c, src/reader.c: Use `quote'.
19832
19833 2000-10-04 Akim Demaille <akim@epita.fr>
19834
19835 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
19836
19837 2000-10-04 Akim Demaille <akim@epita.fr>
19838
19839 * doc/bison.texinfo: Various typos spotted by Neil Booth.
19840
19841 2000-10-04 Akim Demaille <akim@epita.fr>
19842
19843 When a literal string is used to define two different tokens,
19844 `bison -v' segfaults.
19845 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
19846
19847 * tests/regression.m4: New file.
19848 Include the core of the sample provided by Piotr Gackiewicz.
19849 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
19850 properly.
19851
19852 2000-10-04 Akim Demaille <akim@epita.fr>
19853
19854 * src/reader.c (parse_expect_decl): Keep `count' within the size
19855 of `buffer'.
19856 From Neil Booth.
19857
19858 2000-10-02 Paul Eggert <eggert@twinsun.com>
19859
19860 * bison.s1 (yyparse): Assign the default value
19861 unconditionally, to avoid a GCC warning and make the parser a
19862 tad smaller.
19863
19864 2000-10-02 Akim Demaille <akim@epita.fr>
19865
19866 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
19867 options.
19868
19869 2000-10-02 Akim Demaille <akim@epita.fr>
19870
19871 * src/derives.c, src/print.c, src/reduce.c: To ease the
19872 translation, move some `\n' out of the translated strings.
19873
19874 2000-10-02 Akim Demaille <akim@epita.fr>
19875
19876 The location tracking mechanism is precious for parse error
19877 messages. Nevertheless, it is enabled only when `@n' is used in
19878 the grammar, which is a different issue (you can use it in error
19879 message, but not in the grammar per se). Therefore, there should
19880 be another means to enable it.
19881
19882 * src/getargs.c (getargs): Support `--locations'.
19883 (usage): Report it.
19884 * src/getargs.h (locationsflag): Export it.
19885 * src/lex.c (percent_table): Support `%locations'.
19886 * src/reader.c (yylsp_needed): Remove this variable, now replaced
19887 with `locationsflag'.
19888 * doc/bison.texinfo: Document `--locations' and `%locations'.
19889 Sort the options.
19890 * tests/calc.m4: Test it.
19891
19892 For regularity of the names, replace each
19893 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
19894 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
19895 In addition replace each `flag' with `_flag'.
19896
19897 2000-10-02 Akim Demaille <akim@epita.fr>
19898
19899 Also test parse error messages, including with YYERROR_VERBOSE.
19900
19901 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
19902 associative).
19903 Use it to check the computations.
19904 Use it to check `nonassoc' is honored.
19905 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
19906 `--yyerror-verbose'.
19907 (_AT_CHECK_CALC): Adjust to this option.
19908 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
19909
19910 2000-10-02 Akim Demaille <akim@epita.fr>
19911
19912 Test also `--verbose', `--defines' and `--name-prefix'. Testing
19913 the latter demonstrates a flaw in the handling of non debugging
19914 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
19915 was used in order to simplify:
19916
19917 #if YYDEBUG
19918 if (yydebug)
19919 {
19920 ...
19921 }
19922 #endif
19923
19924 into
19925
19926 if (yydebug)
19927 {
19928 ...
19929 }
19930
19931 unfortunately this leads to a CPP conflict when
19932 `--name-prefix=foo' is used since it produces `#define yydebug
19933 foodebug'.
19934
19935 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
19936 (YYDPRINTF): New macro.
19937 Spread its use.
19938 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
19939 the bison options.
19940 Also test `--verbose', `--defines' and `--name-prefix'.
19941
19942 2000-10-02 Akim Demaille <akim@epita.fr>
19943
19944 Improve the readability of the produced parsers.
19945
19946 * src/bison.s1: Formatting changes.
19947 Improve the comment related to the `$' mark.
19948 (yydefault): Don't fall through to `yyresume': `goto' there.
19949 * src/output.c (output_parser): When the `$' is met, skip the end
19950 of its line.
19951 New variable, `number_of_dollar_signs', to check there's exactly
19952 one `$' in the parser skeleton.
19953
19954 2000-10-02 Akim Demaille <akim@epita.fr>
19955
19956 * lib/xstrdup.c: New file, from the fileutils.
19957 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
19958 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
19959 instead of strlen + xmalloc + strcpy.
19960 * src/symtab.c (copys): Remove, use xstrdup instead.
19961
19962 2000-10-02 Akim Demaille <akim@epita.fr>
19963
19964 * src/gram.h (associativity): New enum type which replaces the
19965 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
19966 `right_assoc', `left_assoc' and `non_assoc'.
19967 Adjust all dependencies.
19968 * src/reader.c: Formatting changes.
19969 (LTYPESTR): Don't define it, use it as a literal in
19970 `reader_output_yylsp'.
19971 * src/symtab.h (symbol_class): New enum type which replaces the
19972 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
19973 `sunknown', `stoken and `snterm'.
19974
19975 2000-10-02 Akim Demaille <akim@epita.fr>
19976
19977 * src/getargs.c (fixed_outfiles): Rename as...
19978 (yaccflag): for consistency and accuracy.
19979 Adjust dependencies.
19980
19981 2000-10-02 Akim Demaille <akim@epita.fr>
19982
19983 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
19984 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
19985 difficult and introduced a lot of core dump. It turns out that
19986 Bison used an implementation of `xmalloc' based on `calloc', and
19987 at various places it does depend upon the initialization to 0. I
19988 have not tried to isolate the pertinent places, and all the former
19989 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
19990 someone should address this issue.
19991
19992 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
19993 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
19994 files.
19995 Adjust dependencies.
19996 * src/warshall.h: New file.
19997 Propagate.
19998
19999 2000-10-02 Akim Demaille <akim@epita.fr>
20000
20001 Various anti-`extern in *.c' changes.
20002
20003 * src/system.h: Include `assert.h'.
20004
20005 2000-10-02 Akim Demaille <akim@epita.fr>
20006
20007 * src/state.h (nstates, final_state, first_state, first_shift)
20008 (first_reduction): Move their exportation from here...
20009 * src/LR0.h: to here.
20010 Adjust dependencies.
20011 * src/getargs.c (statisticsflag): New variable.
20012 Add support for `--statistics'.
20013 Adjust dependencies.
20014
20015 Remove a lot of now useless `extern' statements in most files.
20016
20017 2000-10-02 Akim Demaille <akim@epita.fr>
20018
20019 * src/LR0.h: New file.
20020 Propagate its use.
20021
20022 2000-10-02 Akim Demaille <akim@epita.fr>
20023
20024 * src/print.h: New file.
20025 Propagate its use.
20026 * src/print.c: Formatting and ordering changes.
20027 (verbose, terse): Replace with...
20028 (print_results): this new function.
20029 Adjust dependencies.
20030
20031 2000-10-02 Akim Demaille <akim@epita.fr>
20032
20033 * src/conflicts.c (conflict_report): New function.
20034 (conflict_log, verbose_conflict_log): Replace with...
20035 (print_conflicts): this function.
20036 Adjust dependencies.
20037 * src/conflicts.h: New file.
20038 Propagate its inclusion.
20039
20040 2000-10-02 Akim Demaille <akim@epita.fr>
20041
20042 * src/nullable.h: New file.
20043 Propagate its inclusion.
20044 * src/nullable.c: Formatting changes.
20045
20046 2000-10-02 Akim Demaille <akim@epita.fr>
20047
20048 * src/reduce.h: New file.
20049 Propagate its inclusion.
20050 * src/reduce.c: Topological sort and other formatting changes.
20051 (bool, TRUE, FALSE): Move their definition to...
20052 * src/system.h: here.
20053
20054 2000-10-02 Akim Demaille <akim@epita.fr>
20055
20056 * src/files.c: Formatting changes.
20057 (tryopen, tryclose, openfiles): Rename as...
20058 (xfopen, xfclose, open_files): this.
20059 (stringappend): static.
20060 * src/files.h: Complete the list of exported symbols.
20061 Propagate its use.
20062
20063 2000-10-02 Akim Demaille <akim@epita.fr>
20064
20065 * src/reader.h: New file.
20066 Propagate its use instead of tedious list of `extern' and
20067 prototypes.
20068 * src/reader.c: Formatting changes, topological sort,
20069 s/register//.
20070
20071 2000-10-02 Akim Demaille <akim@epita.fr>
20072
20073 * src/lex.h: Prototype `lex.c' exported functions.
20074 * src/reader.c: Adjust.
20075 * src/lex.c: Formatting changes.
20076 (safegetc): Rename as...
20077 (xgetc): this.
20078
20079 2000-10-02 Akim Demaille <akim@epita.fr>
20080
20081 * src/lalr.h: New file.
20082 Propagate its inclusion instead of prototypes and `extern'.
20083 * src/lalr.c: Formatting changes, topological sorting etc.
20084
20085 2000-10-02 Akim Demaille <akim@epita.fr>
20086
20087 * src/output.c (token_actions): Introduce a temporary array,
20088 YYDEFACT, that makes it possible for this function to use
20089 output_short_table.
20090
20091 2000-10-02 Akim Demaille <akim@epita.fr>
20092
20093 `user_toknums' is output as a `short[]' in `output.c', while it is
20094 defined as a `int[]' in `reader.c'. For consistency with the
20095 other output tables, `user_toknums' is now defined as a table of
20096 shorts.
20097
20098 * src/reader.c (user_toknums): Be a short table instead of an int
20099 table.
20100 Adjust dependencies.
20101
20102 Factor the short table outputs.
20103
20104 * src/output.c (output_short_table): New function.
20105 * src/output.c (output_gram, output_stos, output_rule_data)
20106 (output_base, output_table, output_check): Use it.
20107
20108 2000-10-02 Akim Demaille <akim@epita.fr>
20109
20110 * src/output.c (output): Topological sort of the functions, in
20111 order to get rid of the `static' prototypes.
20112 No longer use `register'.
20113 * src/output.h: New file.
20114 Propagate its inclusion in files explicitly prototyping functions
20115 from output.c.
20116
20117 2000-09-21 Akim Demaille <akim@epita.fr>
20118
20119 * src/atgeneral.m4: Update from Autoconf.
20120
20121 2000-09-21 Akim Demaille <akim@epita.fr>
20122
20123 * src/closure.h: New file.
20124 * src/closure.c: Formatting changes, topological sort over the
20125 functions, use of closure.h.
20126 (initialize_closure, finalize_closure): Rename as...
20127 (new_closure, free_closure): these. Adjust dependencies.
20128 * src/LR0.c: Formatting changes, topological sort, use of
20129 cloture.h.
20130 (initialize_states): Rename as...
20131 (new_states): this.
20132 * src/Makefile.am (noinst_HEADERS): Adjust.
20133
20134 2000-09-20 Akim Demaille <akim@epita.fr>
20135
20136 * src/acconfig.h: Don't protect config.h against multiple
20137 inclusion.
20138 Don't define PARAMS.
20139 * src/system.h: Define PARAMS.
20140 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
20141 purpose of config.h. system.h must not try to fix wrong
20142 definitions in config.h.
20143
20144 2000-09-20 Akim Demaille <akim@epita.fr>
20145
20146 * src/derives.h: New file.
20147 * src/main.c, src/derives.h: Use it.
20148 Formatting changes.
20149 * src/Makefile.am (noinst_HEADERS): Adjust.
20150
20151 2000-09-20 Akim Demaille <akim@epita.fr>
20152
20153 * tests/atgeneral.m4: Update from Autoconf.
20154 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
20155 (AT_CHECK_CALC): New macros.
20156 Use these macros to test bison with options `', `--raw',
20157 `--debug', `--yacc', `--yacc --debug'.
20158
20159 2000-09-19 Akim Demaille <akim@epita.fr>
20160
20161 * src/output.c: Formatting changes.
20162 * src/machine.h: Remove, leaving its contents in...
20163 * src/system.h: here.
20164 Include stdio.h.
20165 Adjust all dependencies on stdio.h and machine.h.
20166 * src/getargs.h: New file.
20167 Let all `extern' declarations about getargs.c be replaced with
20168 inclusion of `getargs.h'.
20169 * src/Makefile.am (noinst_HEADERS): Adjust.
20170
20171 * tests/calc.m4 (yyin): Be initialized in main, not on the global
20172 scope.
20173 (yyerror): Returns void, not int.
20174 * doc/bison.texinfo: Formatting changes.
20175
20176 2000-09-19 Akim Demaille <akim@epita.fr>
20177
20178 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
20179 portable.
20180
20181 2000-09-18 Akim Demaille <akim@epita.fr>
20182
20183 * configure.in: Append WARNING_CFLAGS to CFLAGS.
20184 * src/Makefile.am (INCLUDES): Don't.
20185 Be ready to fetch headers in lib/.
20186
20187 2000-09-18 Akim Demaille <akim@epita.fr>
20188
20189 * doc/bison.texinfo: Update the copyright.
20190 ANSIfy and GNUify the examples.
20191 Remove the old menu.
20192
20193 2000-09-18 Akim Demaille <akim@epita.fr>
20194
20195 First set of tests: use the `calc' example from the documentation.
20196
20197 * src/bison.s1 (yyparse): Condition the code using `yytname' which
20198 is defined only when YYDEBUG is.
20199 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
20200 * src/files.c (tryopen, tryclose): Formatting changes.
20201 Move to the top and be static.
20202 * src/reader.c (read_signed_integer): Likewise.
20203 * tests/calc.m4: New file.
20204 * Makefile.am, suite.m4: Adjust.
20205 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
20206
20207 2000-09-18 Akim Demaille <akim@epita.fr>
20208
20209 Add support for an Autotest test suite for Bison.
20210
20211 * m4/m4.m4, m4/atconfig.m4: New files.
20212 * m4/Makefile.am (EXTRA_DIST): Adjust.
20213 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
20214 files.
20215 * src/getargs.c: Display a more standard --version message.
20216 * src/reader.c (reader): Formatting changes.
20217 No longer depend upon VERSION_STRING.
20218 * configure.in: No longer use `dnl'.
20219 Set up the test suite and the new directory `tests/.
20220 (VERSION_STRING): Remove.
20221
20222 2000-04-14 Akim Demaille <akim@epita.fr>
20223
20224 * src/reader.c (copy_comment2): New function, same as former
20225 `copy_comment', but outputs into two FILE *.
20226 (copy_comment): Use it.
20227 (parse_union_decl): Use it.
20228 (get_type, parse_start_decl): Use the same `invalid' message.
20229 (parse_start_decl, parse_union_decl): Use the same `multiple'
20230 message.
20231 (parse_union_decl, copy_guard, copy_action): Use the same
20232 `unmatched' message.
20233 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
20234
20235 2000-03-31 Akim Demaille <akim@epita.fr>
20236
20237 * src/files.c (tryopen, tryclose): Move to the top.
20238 Be static.
20239
20240 2000-03-31 Akim Demaille <akim@epita.fr>
20241
20242 * src/main.c (main): Don't call `done', exit does it.
20243
20244 2000-03-31 Akim Demaille <akim@epita.fr>
20245
20246 * allocate.c: s/return (foo)/return foo/.
20247 * lalr.c: Likewise.
20248 * LR0.c: Likewise.
20249 * output.c: Likewise.
20250 * reader.c: Likewise.
20251 * symtab.c: Likewise.
20252 * vmsgetargs.c: Likewise.
20253
20254 2000-03-31 Akim Demaille <akim@epita.fr>
20255
20256 Clean up the error reporting functions.
20257
20258 * src/report.c: New file.
20259 * src/report.h: Likewise.
20260 * src/Makefile.am: Adjust.
20261 * m4/error.m4: New file.
20262 * m4/Makefile.am: Adjust.
20263 * configure.in (jm_PREREQ_ERROR): Call it.
20264 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
20265 Remove.
20266 (fatal, fatals): Remove. All callers use complain.c::fatal.
20267 (warn, warni, warns, warnss, warnss): Remove. All callers use
20268 complain.c::complain.
20269 (toomany): Remove, use fatal instead.
20270 * src/files.c (done): No argument, use complain_message_count.
20271 * src/main.c (main): Register `done' to `atexit'.
20272
20273 * src/getargs.c (usage): More `fputs', less `fprintf'.
20274
20275 2000-03-28 Akim Demaille <akim@epita.fr>
20276
20277 * lib/: New directory.
20278 * Makefile.am (SUBDIRS): Adjust.
20279 * configure.in: Adjust.
20280 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
20281 useless.
20282 * src/alloca.c: Moved to lib/.
20283 * src/getopt.c: Likewise.
20284 * src/getopt1.c: Likewise.
20285 * src/getopt.h: Likewise.
20286 * src/ansi2knr.c: Likewise.
20287 * src/ansi2knr.1: Likewise.
20288 * src/Makefile.am: Adjust.
20289 * lib/Makefile.am: New file.
20290
20291 2000-03-28 Akim Demaille <akim@epita.fr>
20292
20293 * src/getargs.c (usage): Refresh the help message.
20294
20295 2000-03-17 Akim Demaille <akim@epita.fr>
20296
20297 * src/getopt1.c: Updated from textutils 2.0e
20298 * src/getopt.c: Likewise.
20299 * src/getopt.h: Likewise.
20300
20301 2000-03-17 Akim Demaille <akim@epita.fr>
20302
20303 * src/Makefile.am (bison.simple): Fix the awk program: quote only
20304 the file name, not the whole `#line LINE FILE'.
20305
20306 2000-03-17 Akim Demaille <akim@epita.fr>
20307
20308 On syntax errors, report the token on which we choked.
20309
20310 * src/bison.s1 (yyparse): In the label yyerrlab, when
20311 YYERROR_VERBOSE, add yychar in msg.
20312
20313 2000-03-17 Akim Demaille <akim@epita.fr>
20314
20315 * src/reader.c (copy_at): New function.
20316 (copy_guard): Use it.
20317 (copy_action): Use it.
20318
20319 2000-03-17 Akim Demaille <akim@epita.fr>
20320
20321 Be kind to translators, save some useless translations.
20322
20323 * src/main.c (banner): New function.
20324 (fatal_banner): Use it.
20325 (warn_banner): Use it.
20326
20327 2000-03-17 Akim Demaille <akim@epita.fr>
20328
20329 * src/reader.c (copy_definition): Use copy_string and
20330 copy_comment. Removed now unused `match', `ended',
20331 `cplus_comment'.
20332 (copy_comment, copy_string): Moved, to be visible from
20333 copy_definition.
20334
20335 2000-03-17 Akim Demaille <akim@epita.fr>
20336
20337 * src/reader.c (copy_string): Declare `static inline'. No
20338 problems with inline, since it is checked by configure.
20339 (copy_comment): Likewise.
20340
20341 2000-03-17 Akim Demaille <akim@epita.fr>
20342
20343 * src/reader.c (packsymbols): Formatting changes.
20344
20345 2000-03-17 Akim Demaille <akim@epita.fr>
20346
20347 * src/reader.c (copy_comment): New function, factored out from:
20348 (copy_action): Use it. Removed now unused `match', `ended',
20349 `cplus_comment'.
20350 (copy_guard): Likewise.
20351
20352 2000-03-17 Akim Demaille <akim@epita.fr>
20353
20354 * src/reader.c (copy_string): New function, factored out from:
20355 (copy_action): Use it.
20356 (copy_guard): Likewise.
20357
20358 2000-03-17 Akim Demaille <akim@epita.fr>
20359
20360 Change the handling of @s so that they behave exactly like $s.
20361 There is now a pseudo variable @$ (readble and writable), location
20362 of the lhs of the rule (by default ranging from the location of
20363 the first symbol of the rhs, to the location of the last symbol,
20364 or, if the rhs is empty, YYLLOC).
20365
20366 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
20367 yyval.
20368 (yyparse): When providing a default semantic action, provide a
20369 default location action.
20370 (after the $): No longer change `*YYLSP', just stack YYLOC the
20371 same way you stack YYVAL.
20372 * src/reader.c (read_declarations): Use warns.
20373 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
20374 (copy_action, case '@'): Likewise.
20375 Use a standard error message, to save useless work from
20376 translators.
20377
20378 2000-03-17 Akim Demaille <akim@epita.fr>
20379
20380 * src/bison.s1: Formatting and cosmetics changes.
20381 * src/reader.c: Likewise.
20382 Update the Copyright notice.
20383
20384 2000-03-17 Akim Demaille <akim@epita.fr>
20385
20386 * src/bison.s1 (#line): All set to `#line' only, since the
20387 Makefile now handles them.
20388
20389 2000-03-16 Akim Demaille <akim@epita.fr>
20390
20391 * src/output.c (output_rule_data): Output the documentation of
20392 some of the tables.
20393 (Copyright notice): Update.
20394 Formatting changes.
20395
20396 2000-03-16 Akim Demaille <akim@epita.fr>
20397
20398 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
20399 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
20400 One `#if YYDEBUG' remains, since it uses variables which are
20401 defined only if `YYDEBUG != 0'.
20402
20403 2000-03-16 Akim Demaille <akim@epita.fr>
20404
20405 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
20406 and related variables so that the similarities are highlighted.
20407
20408 2000-03-16 Akim Demaille <akim@epita.fr>
20409
20410 * src/bison.s1: Properly indent CPP directives.
20411
20412 2000-03-16 Akim Demaille <akim@epita.fr>
20413
20414 * src/bison.s1: Properly indent the `alloca' CPP section.
20415
20416 2000-03-16 Akim Demaille <akim@epita.fr>
20417
20418 Do not hard code values of directories in `configure.in'.
20419 Update the `configure' tool chain.
20420
20421 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
20422 src/makefile.am.
20423 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
20424 (AC_OUTPUT): Add m4/Makefile.
20425 Bump to bison 1.28a, 1.29 has never been released.
20426 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
20427 handled via src/Makefile.am.
20428 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
20429 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
20430 autoheader.
20431 * Makefile.am (SUBDIRS): Add m4.
20432 (ACLOCAL_AM_FLAGS): New variable.
20433 (AUTOMAKE_OPTIONS): Add check-news.
20434 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
20435 the proper line number and file name.
20436 (DEFS): Propagate the location of bison library files and of the
20437 locale files.
20438 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
20439 builddir.
20440 * acinclude.m4: Remove, replaced by the directory m4.
20441 * m4/Makefile.am (EXTRA_DIST): New variable.
20442 * m4/gettext.m4: New file, from the fileutils.
20443 * m4/lcmessage.m4: Likewise
20444 * m4/progtest.m4: Likewise.
20445 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
20446
20447 2000-03-10 Akim Demaille <akim@epita.fr>
20448
20449 * src/closure.c:
20450 Formatting changes of various comments.
20451 Respect the GNU coding standards at various places.
20452 Don't use `_()' when no translation is needed.
20453
20454 1999-12-13 Jesse Thilo <jthilo@gnu.org>
20455
20456 * src/files.c:
20457 OS/2 honors TMPDIR environment variable.
20458
20459 1999-12-13 Jesse Thilo <jthilo@gnu.org>
20460
20461 * doc/bison.texinfo: Tweaked spelling and grammar.
20462 Updated ISBN.
20463 Removed reference to price of printed copy.
20464 Mention BISON_SIMPLE and BISON_HAIRY.
20465
20466 1999-12-13 Jesse Thilo <jthilo@gnu.org>
20467
20468 * configure.in, NEWS:
20469 Bison 1.29 released.
20470
20471 1999-10-27 Jesse Thilo <jthilo@gnu.org>
20472
20473 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
20474 Added reference card.
20475
20476 1999-07-26 Jesse Thilo <jthilo@gnu.org>
20477
20478 * po/ru.po: Added Russian translation.
20479
20480 1999-07-26 Jesse Thilo <jthilo@gnu.org>
20481
20482 * configure.in: Added Russian translation.
20483
20484 1999-07-06 Jesse Thilo <jthilo@gnu.org>
20485
20486 * configure.in, NEWS, README:
20487 Released version 1.28.
20488
20489 1999-06-14 Jesse Thilo <jthilo@gnu.org>
20490
20491 * src/system.h:
20492 Squashed redefinition warning on some systems.
20493
20494 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
20495 Have configure build version string instead of relying on ANSI string
20496 concatentation.
20497
20498 1999-06-14 Jesse Thilo <jthilo@gnu.org>
20499
20500 * po/POTFILES.in: Got rid of version.c.
20501
20502 1999-06-14 Jesse Thilo <jthilo@gnu.org>
20503
20504 * acconfig.h, configure.in:
20505 Have configure build version string instead of relying on ANSI string
20506 concatentation.
20507
20508 1999-06-08 Jesse Thilo <jthilo@gnu.org>
20509
20510 * doc/bison.1:
20511 Dropped mention of `+' for long-named options.
20512
20513 1999-05-30 Jesse Thilo <jthilo@gnu.org>
20514
20515 * src/files.c: Added <unistd.h> for unlink().
20516
20517 * src/Makefile.am, src/system.h:
20518 I18n fixes.
20519
20520 1999-05-30 Jesse Thilo <jthilo@gnu.org>
20521
20522 * README: Added a FAQ list.
20523
20524 * configure.in, acconfig.h:
20525 I18n fixes.
20526
20527 1999-05-30 Jesse Thilo <jthilo@gnu.org>
20528
20529 * doc/FAQ, doc/Makefile.am:
20530 Added a FAQ list.
20531
20532 1999-05-19 Jesse Thilo <jthilo@gnu.org>
20533
20534 * src/alloc.h, src/symtab.h, src/version.c:
20535 Protected inclusion of "config.h" with HAVE_CONFIG_H.
20536
20537 1999-04-18 Jesse Thilo <jthilo@gnu.org>
20538
20539 * src/.cvsignore, src/Makefile.am:
20540 Reorganized: sources in `src', documentation in `doc'.
20541
20542 * src/lex.c (literalchar):
20543 fixed the code for escaping double quotes (thanks
20544 Jonathan Czisny.)
20545
20546 1999-04-18 Jesse Thilo <jthilo@gnu.org>
20547
20548 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
20549 Adjusted paths to reflect directory reorganization.
20550
20551 1999-04-18 Jesse Thilo <jthilo@gnu.org>
20552
20553 * doc/.cvsignore, doc/Makefile.am:
20554 Reorganized: sources in `src', documentation in `doc'.
20555
20556 1999-04-18 Jesse Thilo <jthilo@gnu.org>
20557
20558 * configure.in:
20559 Updated AC_INIT file to reflect directory reorganization.
20560
20561 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
20562 Reorganized: sources in `src', documentation in `doc'.
20563
20564 1999-04-13 Jesse Thilo <jthilo@gnu.org>
20565
20566 * src/allocate.c:
20567 Don't declare calloc() and realloc() if not necessary.
20568
20569 1999-04-13 Jesse Thilo <jthilo@gnu.org>
20570
20571 * configure.in, acconfig.h, acinclude.m4:
20572 Don't declare calloc() and realloc() if not necessary.
20573
20574 1999-03-23 Jesse Thilo <jthilo@gnu.org>
20575
20576 * po/.cvsignore: Added i18n support.
20577
20578 1999-03-23 Jesse Thilo <jthilo@gnu.org>
20579
20580 * acconfig.h, configure.in, Makefile.am:
20581 Added i18n support.
20582
20583 1999-03-22 Jesse Thilo <jthilo@gnu.org>
20584
20585 * src/bison.s1: Fixed #line numbers.
20586
20587 1999-03-15 Jesse Thilo <jthilo@gnu.org>
20588
20589 * po/es.po, po/fr.po, po/nl.po, po/de.po:
20590 Added PO files from Translation Project.
20591
20592 1999-03-03 Jesse Thilo <jthilo@gnu.org>
20593
20594 * Makefile.am:
20595 Added support for non-ANSI compilers (ansi2knr).
20596
20597 1999-02-16 Jesse Thilo <jthilo@gnu.org>
20598
20599 * configure.in: Bumped version number to 1.27.
20600
20601 * Makefile.am:
20602 Added `bison.simple' to list of files removed by `make distclean'.
20603
20604 1999-02-12 Jesse Thilo <jthilo@gnu.org>
20605
20606 * src/files.c, src/files.h:
20607 Defined locations of parser files in config.h instead of Makefile.
20608
20609 1999-02-12 Jesse Thilo <jthilo@gnu.org>
20610
20611 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
20612 Defined locations of parser files in config.h instead of Makefile.
20613
20614 1999-02-09 Jesse Thilo <jthilo@gnu.org>
20615
20616 * Makefile.am:
20617 Removed inappropriate use of $< macro.
20618
20619 1999-02-05 Jesse Thilo <jthilo@gnu.org>
20620
20621 * po/Makefile.in.in, po/POTFILES.in:
20622 Add `po' directory skeleton.
20623
20624 1999-01-27 Jesse Thilo <jthilo@gnu.org>
20625
20626 * README: Document help-bison list.
20627
20628 * configure.in: Add check for mkstemp().
20629
20630 1999-01-20 Jesse Thilo <jthilo@gnu.org>
20631
20632 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
20633 Hush a few compiler warnings.
20634
20635 * src/files.c:
20636 Add tryclose(), which verifies that fclose was successful.
20637 Hush a couple of compiler warnings.
20638
20639 1999-01-20 Jesse Thilo <jthilo@gnu.org>
20640
20641 * Makefile.am, OChangeLog:
20642 ChangeLog is now automatically generated. Include the old version as
20643 OChangeLog.
20644
20645 1999-01-14 Jesse Thilo <jthilo@gnu.org>
20646
20647 * 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:
20648 Update FSF address.
20649
20650 1999-01-14 Jesse Thilo <jthilo@gnu.org>
20651
20652 * doc/bison.texinfo: Fix formatting glitch.
20653
20654 * doc/bison.texinfo: Update FSF address.
20655
20656 1999-01-14 Jesse Thilo <jthilo@gnu.org>
20657
20658 * acconfig.h: Update FSF address.
20659
20660 1999-01-08 Jesse Thilo <jthilo@gnu.org>
20661
20662 * src/system.h:
20663 Don't define PACKAGE here, since config.h defines it.
20664
20665 1998-12-30 Jesse Thilo <jthilo@gnu.org>
20666
20667 * src/reader.c: Update copyright date.
20668
20669 * src/main.c:
20670 Ditch sprintf to statically-sized buffers in fatal/warn functions in
20671 favor of output directly to stderr (avoids buffer overruns).
20672
20673 * src/reader.c: Some checks for premature EOF.
20674
20675 * 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:
20676 Use prototypes if the compiler understands them.
20677
20678 * src/files.c: Honor TMPDIR on Unix hosts.
20679 Use prototypes if the compiler understands them.
20680
20681 * src/reader.c:
20682 Fix a couple of buffer overrun bugs.
20683 Use prototypes if the compiler understands them.
20684
20685 * src/system.h: Include unistd.h and ctype.h.
20686 Use #ifdef instead of #if for NLS symbols.
20687
20688 1998-12-30 Jesse Thilo <jthilo@gnu.org>
20689
20690 * doc/bison.texinfo:
20691 Delete comment "consider using @set for edition number, etc..." since
20692 we now are doing so.
20693
20694 1998-12-30 Jesse Thilo <jthilo@gnu.org>
20695
20696 * configure.in:
20697 Use prototypes if the compiler understands them.
20698
20699 * NEWS: Document 1.26 highlights.
20700
20701 * Makefile.am: Require Automake 1.3 or later.
20702
20703 * acconfig.h:
20704 Use prototypes if the compiler understands them.
20705
20706 1998-12-29 Jesse Thilo <jthilo@gnu.org>
20707
20708 * src/version.c:
20709 Use VERSION symbol from automake for version number.
20710
20711 1998-12-29 Jesse Thilo <jthilo@gnu.org>
20712
20713 * acconfig.h, configure.in, version.cin:
20714 Use VERSION symbol from automake for version number.
20715
20716 1998-11-28 Jesse Thilo <jthilo@gnu.org>
20717
20718 * Makefile.am:
20719 Distribute original version of simple parser (bison.s1), not built
20720 version (bison.simple).
20721
20722 1998-11-28 Jesse Thilo <jthilo@gnu.org>
20723
20724 * doc/bison.texinfo: Add info dir entry.
20725
20726 * doc/bison.texinfo:
20727 Let automake put version number into documentation.
20728
20729 1998-11-26 Jesse Thilo <jthilo@gnu.org>
20730
20731 * src/bison.cld, src/build.com, src/vmshlp.mar:
20732 Add non-RCS files from /gd/gnu/bison.
20733
20734 1998-11-26 Jesse Thilo <jthilo@gnu.org>
20735
20736 * doc/bison.1:
20737 Document the BISON_HAIRY and BISON_SIMPLE variables.
20738
20739 1998-11-25 Jesse Thilo <jthilo@gnu.org>
20740
20741 * src/version.c: Build version.c automatically.
20742
20743 * src/reader.c:
20744 Fix token numbering (used to start at 258, not 257).
20745
20746 * src/system.h: Include config.h.
20747
20748 * src/getargs.c: Update bug report address.
20749
20750 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
20751 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
20752
20753 1998-11-25 Jesse Thilo <jthilo@gnu.org>
20754
20755 * Makefile.am:
20756 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
20757
20758 * configure.in, version.cin:
20759 Build version.c automatically.
20760
20761 * AUTHORS: Add AUTHORS file.
20762
20763 * README: Update bug report address.
20764
20765 * bison.simple:
20766 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
20767
20768 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
20769 Add automake stuff.
20770
20771 1998-11-25 Jesse Thilo <jthilo@gnu.org>
20772
20773 * doc/bison.texinfo: Clean up some formatting.
20774
20775 1998-05-05 Richard Stallman <rms@gnu.org>
20776
20777 * doc/bison.texinfo:
20778 Explain better why to make a pure parser.
20779
20780 1998-01-05 Richard Stallman <rms@gnu.org>
20781
20782 * src/files.c (openfiles):
20783 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
20784 find a temporary directory, if possible. Do not unlink files while
20785 they are open.
20786
20787 1997-08-25 Richard Stallman <rms@gnu.org>
20788
20789 * src/reader.c (stack_offset;):
20790 Change some warni to warns.
20791
20792 * src/lex.c (literalchar): Use warns, not warni.
20793
20794 1997-06-28 Richard Stallman <rms@gnu.org>
20795
20796 * src/bison.s1: Add a Bison version comment.
20797
20798 * src/main.c (fatal, warn, berror):
20799 Use program_name.
20800
20801 1997-06-28 Richard Stallman <rms@gnu.org>
20802
20803 * Makefile.in (bison_version): New variable.
20804 (dist): Use that variable.
20805 (bison.s1): Substitute the Bison version into bison.simple.
20806
20807 * bison.simple: Add a Bison version comment.
20808
20809 1997-06-18 Richard Stallman <rms@gnu.org>
20810
20811 * src/main.c (fatal, warn, berror):
20812 Make error messages standard.
20813 (toomany): Improve error message text.
20814
20815 * 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:
20816 new.h renamed to alloc.h.
20817
20818 1997-06-18 Richard Stallman <rms@gnu.org>
20819
20820 * Makefile.in: new.h renamed to alloc.h.
20821
20822 1997-05-24 Richard Stallman <rms@gnu.org>
20823
20824 * src/lex.c (literalchar):
20825 Fix the code for escaping \, " and '.
20826
20827 (lex): Avoid trouble when there are many chars
20828 to discard in a char literal with just several chars in it.
20829
20830 1997-05-17 Richard Stallman <rms@gnu.org>
20831
20832 * src/bison.s1:
20833 Use malloc, if using alloca is troublesome.
20834 (YYSTACK_USE_ALLOCA): New flag macro.
20835 Define it for some systems and compilers.
20836 (YYSTACK_ALLOC): New macro.
20837 (yyparse): Use YYSTACK_ALLOC to allocate stack.
20838 If it was malloc'd, free it.
20839
20840 1997-05-17 Richard Stallman <rms@gnu.org>
20841
20842 * bison.simple:
20843 Use malloc, if using alloca is troublesome.
20844 (YYSTACK_USE_ALLOCA): New flag macro.
20845 Define it for some systems and compilers.
20846 (YYSTACK_ALLOC): New macro.
20847 (yyparse): Use YYSTACK_ALLOC to allocate stack.
20848 If it was malloc'd, free it.
20849
20850 1997-04-23 Richard Stallman <rms@gnu.org>
20851
20852 * src/bison.s1:
20853 (alloca) [__hpux]: Always define as __builtin_alloca.
20854
20855 1997-04-23 Richard Stallman <rms@gnu.org>
20856
20857 * bison.simple:
20858 (alloca) [__hpux]: Always define as __builtin_alloca.
20859
20860 1997-04-22 Richard Stallman <rms@gnu.org>
20861
20862 * src/bison.s1:
20863 [__hpux]: Include alloca.h (right for HPUX 10)
20864 instead of declaring alloca (right for HPUX 9).
20865
20866 * src/bison.s1 (__yy_memcpy):
20867 Declare arg `count' as unsigned int.
20868 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
20869
20870 1997-04-22 Richard Stallman <rms@gnu.org>
20871
20872 * bison.simple:
20873 [__hpux]: Include alloca.h (right for HPUX 10)
20874 instead of declaring alloca (right for HPUX 9).
20875
20876 * bison.simple (__yy_memcpy):
20877 Declare arg `count' as unsigned int.
20878 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
20879
20880 1997-01-03 Richard Stallman <rms@gnu.org>
20881
20882 * src/allocate.c: [__STDC__ or _MSC_VER]:
20883 Declare calloc and realloc to return void *.
20884
20885 1997-01-02 Richard Stallman <rms@gnu.org>
20886
20887 * src/system.h:
20888 [_MSC_VER]: Include stdlib.h and process.h.
20889 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
20890
20891 * src/main.c (main): Return FAILURE as a value.
20892 (printable_version): Declare arg as int, not char.
20893
20894 1997-01-02 Richard Stallman <rms@gnu.org>
20895
20896 * Makefile.in (dist):
20897 Explicitly check for symlinks, and copy them.
20898
20899 1996-12-19 Richard Stallman <rms@gnu.org>
20900
20901 * src/files.c:
20902 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
20903
20904 1996-12-18 Paul Eggert <eggert@gnu.org>
20905
20906 * src/bison.s1 (yyparse):
20907 If __GNUC__ and YYPARSE_PARAM are both defined,
20908 declare yyparse to have a void * argument.
20909
20910 1996-12-18 Paul Eggert <eggert@gnu.org>
20911
20912 * bison.simple (yyparse):
20913 If __GNUC__ and YYPARSE_PARAM are both defined,
20914 declare yyparse to have a void * argument.
20915
20916 1996-12-17 Richard Stallman <rms@gnu.org>
20917
20918 * src/reduce.c (nbits): Add some casts.
20919
20920 1996-08-12 Richard Stallman <rms@gnu.org>
20921
20922 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
20923
20924 1996-08-12 Richard Stallman <rms@gnu.org>
20925
20926 * bison.simple: Test _MSDOS as well as _MSDOS_.
20927
20928 1996-07-31 Richard Stallman <rms@gnu.org>
20929
20930 * src/bison.s1:
20931 [__sun && __i386]: Include alloca.h.
20932
20933 1996-07-31 Richard Stallman <rms@gnu.org>
20934
20935 * bison.simple:
20936 [__sun && __i386]: Include alloca.h.
20937
20938 1996-07-30 Richard Stallman <rms@gnu.org>
20939
20940 * src/bison.s1: Comment change.
20941
20942 * src/bison.s1: Test _MSDOS_, not MSDOS.
20943
20944 1996-07-30 Richard Stallman <rms@gnu.org>
20945
20946 * bison.simple: Comment change.
20947
20948 * bison.simple: Test _MSDOS_, not MSDOS.
20949
20950 1996-06-01 Richard Stallman <rms@gnu.org>
20951
20952 * 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:
20953 Insert `_' macro around many string constants.
20954
20955 * src/main.c:
20956 Insert `_' macro around many string constants.
20957
20958 (main): Call setlocale, bindtextdomain and textdomain.
20959
20960 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
20961 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
20962 [ENABLE_NLS]: Include libintl.h.
20963 [ENABLE_NLS] (gettext): Define.
20964 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
20965 (N_, PACKAGE, LOCALEDIR): New macros.
20966
20967 1996-06-01 Richard Stallman <rms@gnu.org>
20968
20969 * POTFILES.in: New file.
20970
20971 * Makefile.in (allocate.o):
20972 Define target explicitly.
20973
20974 * Makefile.in (CFLAGS): Set to @CFLAGS@.
20975 (LDFLAGS): Set to @LDFLAGS@.
20976 (configure): Run autoconf only if preceding `cd' succeeds.
20977 (bison.s1): Redirect output to temporary file then move the
20978 temporary to the target, rather than redirecting directly to bison.s1.
20979 (clean): Remove config.status and config.log.
20980 (distclean): Don't remove config.status here.
20981
20982 1996-05-12 Richard Stallman <rms@gnu.org>
20983
20984 * src/bison.s1:
20985 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
20986
20987 1996-05-12 Richard Stallman <rms@gnu.org>
20988
20989 * bison.simple:
20990 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
20991
20992 1996-05-11 Richard Stallman <rms@gnu.org>
20993
20994 * src/bison.s1 (__yy_memcpy):
20995 Really reorder the args, as was supposedly done on Feb 14 1995.
20996 (yyparse): Calls changed accordingly.
20997
20998 1996-05-11 Richard Stallman <rms@gnu.org>
20999
21000 * Makefile.in (dist): Don't use $(srcdir).
21001
21002 * bison.simple (__yy_memcpy):
21003 Really reorder the args, as was supposedly done on Feb 14 1995.
21004 (yyparse): Calls changed accordingly.
21005
21006 1996-01-27 Richard Stallman <rms@gnu.org>
21007
21008 * src/output.c (output_rule_data):
21009 Test YYERROR_VERBOSE in the conditional
21010 around the definition of ttyname.
21011
21012 1995-12-29 Richard Stallman <rms@gnu.org>
21013
21014 * src/bison.s1:
21015 Fix line numbers in #line commands.
21016
21017 1995-12-29 Richard Stallman <rms@gnu.org>
21018
21019 * bison.simple:
21020 Fix line numbers in #line commands.
21021
21022 1995-12-27 Richard Stallman <rms@gnu.org>
21023
21024 * src/bison.s1 (YYPARSE_PARAM_DECL):
21025 In C++, make it always null.
21026 (YYPARSE_PARAM_ARG): New macro.
21027 (yyparse): Use YYPARSE_PARAM_ARG.
21028
21029 1995-12-27 Richard Stallman <rms@gnu.org>
21030
21031 * bison.simple (YYPARSE_PARAM_DECL):
21032 In C++, make it always null.
21033 (YYPARSE_PARAM_ARG): New macro.
21034 (yyparse): Use YYPARSE_PARAM_ARG.
21035
21036 1995-11-29 Richard Stallman <rms@gnu.org>
21037
21038 * doc/bison.texinfo:
21039 Describe literal string tokens, %raw, %no_lines, %token_table.
21040
21041 1995-11-29 Daniel Hagerty <hag@gnu.org>
21042
21043 * doc/bison.texinfo: Fixed update date
21044
21045 1995-10-16 Richard Stallman <rms@gnu.org>
21046
21047 * src/version.c: Version 1.25.
21048
21049 1995-10-16 Richard Stallman <rms@gnu.org>
21050
21051 * NEWS: *** empty log message ***
21052
21053 1995-10-16 Richard Stallman <rms@gnu.org>
21054
21055 * doc/bison.1, doc/bison.rnh:
21056 Add new options.
21057
21058 1995-10-15 Richard Stallman <rms@gnu.org>
21059
21060 * src/vmsgetargs.c, src/getargs.c:
21061 Added -n, -k, and -raw switches.
21062 (noparserflag, toknumflag, rawtoknumflag): New variables.
21063
21064 * src/symtab.h (SALIAS):
21065 New #define for adding aliases to %token.
21066 (struct bucket): Added `alias' field.
21067
21068 * src/reduce.c (reduce_grammar):
21069 Revise error message.
21070 (print_notices): Remove final `.' from error message.
21071
21072 * src/reader.c (reader_output_yylsp):
21073 New function.
21074 (readgram): Use `#if 0' around code that accepted %command
21075 inside grammar rules: The documentation doesn't allow it,
21076 and it will fail since the %command processors scan for the next %.
21077 (parse_token_decl): Extended the %token
21078 declaration to allow a multi-character symbol as an alias.
21079 (parse_thong_decl): New function.
21080 (read_declarations): Added %thong declarations.
21081 (read_declarations): Handle NOOP to deal with allowing
21082 % declarations as another means to specify the flags.
21083 (readgram): Allow %prec prior to semantics embedded in a rule.
21084 (skip_to_char, read_declarations, copy_definition)
21085 (parse_token_decl, parse_start_decl, parse_type_decl)
21086 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
21087 (get_type_name, copy_guard, copy_action, readgram)
21088 (get_type, packsymbols): Revised most error messages.
21089 Changed `fatal' to `warnxxx' to avoid aborting for error.
21090 Revised and use multiple warnxxx functions to avoid using VARARGS1.
21091 (read_declarations): Improve the error message for
21092 an invalid character. Do not abort.
21093 (read_declarations, copy_guard, copy_action): Use
21094 printable_version to avoid unprintable characters in printed output.
21095 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
21096 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
21097 Allow the type of a non-terminal can be given
21098 more than once, as long as all specifications give the same type.
21099
21100 * src/output.c:
21101 (output_headers, output_trailers, output, output_gram)
21102 (output_rule_data): Implement noparserflag variable.
21103 Implement toknumflag variable.
21104 (output): Call reader_output_yylsp to output LTYPESTR.
21105
21106 * src/main.c (main):
21107 If reader sees an error, don't process the grammar.
21108 (fatals): Updated to not use VARARGS1.
21109 (printable_version, int_to_string, warn, warni, warns, warnss)
21110 (warnsss): New error reporting functions. Avoid abort for error.
21111
21112 * src/lex.h:
21113 Added THONG and NOOP for alias processing.
21114 Added SETOPT for the new code that allows setting options with %flags.
21115
21116 * src/lex.c:
21117 Include getopt.h. Add some extern decls.
21118 (safegetc): New function to deal with EOF gracefully.
21119 (literalchar); new function to deal with reading \ escapes.
21120 (lex): Use literalchar.
21121 (lex): Implemented "..." tokens.
21122 (literalchar, lex, parse_percent_token): Made tokenbuffer
21123 always contain the token. This includes growing the token
21124 buffer while reading an integer.
21125 (parse_percent_token): Replaced if-else statement with percent_table.
21126 (parse_percent_token): Added % declarations as another
21127 way to specify the flags -n, -l, and -r. Also added hooks for
21128 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
21129 major changes to files.c.
21130 (lex) Retain in the incoming stream a character following
21131 an incorrect '/'.
21132 (skip_white_space, lex): Revised most error messages
21133 and changed fatal to warn to avoid aborting.
21134 (percent_table): Added %thong declarations.
21135
21136 * src/gram.h: Comment changes.
21137
21138 * src/files.c (openfiles, open_extra_files, done):
21139 Add faction flag
21140 and actfile file. Handle noparserflag. Both for -n switch.
21141
21142 * src/conflicts.c (resolve_sr_conflict):
21143 Remove use of alloca.
21144
21145 1995-06-01 Jim Meyering <meyering@gnu.org>
21146
21147 * doc/bison.texinfo: *** empty log message ***
21148
21149 1995-05-06 Richard Stallman <rms@gnu.org>
21150
21151 * src/bison.s1: Comment change.
21152
21153 1995-05-06 Richard Stallman <rms@gnu.org>
21154
21155 * bison.simple: Comment change.
21156
21157 1995-05-03 Richard Stallman <rms@gnu.org>
21158
21159 * src/version.c: Version now 1.24.
21160
21161 * src/bison.s1: Change distribution terms.
21162
21163 * src/version.c: Version now 1.23.
21164
21165 1995-05-03 Richard Stallman <rms@gnu.org>
21166
21167 * doc/bison.texinfo:
21168 Rewrite "Conditions for Using Bison".
21169 Update version to 1.24.
21170
21171 1995-05-03 Richard Stallman <rms@gnu.org>
21172
21173 * bison.simple: Change distribution terms.
21174
21175 1995-02-23 Richard Stallman <rms@gnu.org>
21176
21177 * src/files.c: Test __VMS_POSIX as well as VMS.
21178
21179 1995-02-14 Jim Meyering <meyering@gnu.org>
21180
21181 * src/bison.s1 (__yy_memcpy):
21182 Renamed from __yy_bcopy to avoid
21183 confusion. Reverse FROM and TO arguments to be consistent with
21184 those of memcpy.
21185
21186 1995-02-14 Jim Meyering <meyering@gnu.org>
21187
21188 * bison.simple (__yy_memcpy):
21189 Renamed from __yy_bcopy to avoid
21190 confusion. Reverse FROM and TO arguments to be consistent with
21191 those of memcpy.
21192
21193 1994-11-10 David J. MacKenzie <djm@gnu.org>
21194
21195 * NEWS: reformat
21196
21197 * NEWS: New file.
21198
21199 * Makefile.in (DISTFILES): Include NEWS.
21200
21201 * Makefile.in (DISTFILES):
21202 Include install-sh, not install.sh.
21203
21204 * configure.in: Update to Autoconf v2 macro names.
21205
21206 1994-10-05 David J. MacKenzie <djm@gnu.org>
21207
21208 * Makefile.in: fix typo
21209
21210 * Makefile.in (prefix, exec_prefix):
21211 Let configure set them.
21212
21213 1994-09-28 David J. MacKenzie <djm@gnu.org>
21214
21215 * Makefile.in: Set datadir to $(prefix)/share.
21216
21217 1994-09-15 Richard Stallman <rms@gnu.org>
21218
21219 * src/bison.s1:
21220 Update copyright notice and GPL version.
21221
21222 1994-09-15 Richard Stallman <rms@gnu.org>
21223
21224 * bison.simple:
21225 Update copyright notice and GPL version.
21226
21227 1994-07-12 Richard Stallman <rms@gnu.org>
21228
21229 * src/reduce.c, src/reader.c:
21230 entered into RCS
21231
21232 1994-05-05 David J. MacKenzie <djm@gnu.org>
21233
21234 * Makefile.in: entered into RCS
21235
21236 1994-03-26 Richard Stallman <rms@gnu.org>
21237
21238 * src/bison.s1: entered into RCS
21239
21240 1994-03-26 Richard Stallman <rms@gnu.org>
21241
21242 * bison.simple: entered into RCS
21243
21244 1994-03-25 Richard Stallman <rms@gnu.org>
21245
21246 * src/main.c: entered into RCS
21247
21248 1994-03-24 Richard Stallman <rms@gnu.org>
21249
21250 * src/conflicts.c: entered into RCS
21251
21252 1994-01-02 Richard Stallman <rms@gnu.org>
21253
21254 * Makefile.in: *** empty log message ***
21255
21256 1993-11-21 Richard Stallman <rms@gnu.org>
21257
21258 * src/bison.s1: *** empty log message ***
21259
21260 1993-11-21 Richard Stallman <rms@gnu.org>
21261
21262 * doc/bison.texinfo: entered into RCS
21263
21264 * doc/bison.texinfo: *** empty log message ***
21265
21266 1993-11-21 Richard Stallman <rms@gnu.org>
21267
21268 * bison.simple: *** empty log message ***
21269
21270 1993-10-25 David J. MacKenzie <djm@gnu.org>
21271
21272 * doc/bison.texinfo: *** empty log message ***
21273
21274 1993-10-19 Richard Stallman <rms@gnu.org>
21275
21276 * src/bison.s1: *** empty log message ***
21277
21278 1993-10-19 Richard Stallman <rms@gnu.org>
21279
21280 * bison.simple: *** empty log message ***
21281
21282 1993-10-14 Richard Stallman <rms@gnu.org>
21283
21284 * src/bison.s1: *** empty log message ***
21285
21286 1993-10-14 Richard Stallman <rms@gnu.org>
21287
21288 * bison.simple: *** empty log message ***
21289
21290 1993-09-14 David J. MacKenzie <djm@gnu.org>
21291
21292 * doc/bison.texinfo: *** empty log message ***
21293
21294 1993-09-13 Noah Friedman <friedman@gnu.org>
21295
21296 * Makefile.in: *** empty log message ***
21297
21298 1993-09-10 Richard Stallman <rms@gnu.org>
21299
21300 * src/conflicts.c: *** empty log message ***
21301
21302 * src/system.h: entered into RCS
21303
21304 1993-09-10 Richard Stallman <rms@gnu.org>
21305
21306 * doc/bison.1: entered into RCS
21307
21308 1993-09-06 Noah Friedman <friedman@gnu.org>
21309
21310 * src/version.c: entered into RCS
21311
21312 1993-09-06 Noah Friedman <friedman@gnu.org>
21313
21314 * Makefile.in: *** empty log message ***
21315
21316 1993-07-30 David J. MacKenzie <djm@gnu.org>
21317
21318 * Makefile.in: *** empty log message ***
21319
21320 1993-07-24 Richard Stallman <rms@gnu.org>
21321
21322 * src/bison.s1: *** empty log message ***
21323
21324 1993-07-24 Richard Stallman <rms@gnu.org>
21325
21326 * bison.simple: *** empty log message ***
21327
21328 1993-07-08 David J. MacKenzie <djm@gnu.org>
21329
21330 * Makefile.in: *** empty log message ***
21331
21332 1993-07-04 Richard Stallman <rms@gnu.org>
21333
21334 * src/bison.s1: *** empty log message ***
21335
21336 1993-07-04 Richard Stallman <rms@gnu.org>
21337
21338 * bison.simple: *** empty log message ***
21339
21340 1993-06-26 David J. MacKenzie <djm@gnu.org>
21341
21342 * src/getargs.c: entered into RCS
21343
21344 1993-06-26 David J. MacKenzie <djm@gnu.org>
21345
21346 * doc/bison.texinfo: *** empty log message ***
21347
21348 * doc/bison.1: New file.
21349
21350 1993-06-25 Richard Stallman <rms@gnu.org>
21351
21352 * src/getargs.c: New file.
21353
21354 1993-06-16 Richard Stallman <rms@gnu.org>
21355
21356 * src/bison.s1: *** empty log message ***
21357
21358 1993-06-16 Richard Stallman <rms@gnu.org>
21359
21360 * bison.simple: *** empty log message ***
21361
21362 1993-06-03 Richard Stallman <rms@gnu.org>
21363
21364 * src/bison.s1: New file.
21365
21366 1993-06-03 Richard Stallman <rms@gnu.org>
21367
21368 * doc/bison.texinfo: *** empty log message ***
21369
21370 1993-06-03 Richard Stallman <rms@gnu.org>
21371
21372 * bison.simple: New file.
21373
21374 1993-05-19 Richard Stallman <rms@gnu.org>
21375
21376 * doc/bison.texinfo: New file.
21377
21378 1993-05-07 Noah Friedman <friedman@gnu.org>
21379
21380 * Makefile.in: *** empty log message ***
21381
21382 1993-04-28 Noah Friedman <friedman@gnu.org>
21383
21384 * src/reader.c: *** empty log message ***
21385
21386 1993-04-23 Noah Friedman <friedman@gnu.org>
21387
21388 * src/alloc.h: entered into RCS
21389
21390 1993-04-20 David J. MacKenzie <djm@gnu.org>
21391
21392 * src/version.c: *** empty log message ***
21393
21394 * src/files.c, src/allocate.c:
21395 entered into RCS
21396
21397 * src/reader.c: *** empty log message ***
21398
21399 * src/lex.c: entered into RCS
21400
21401 * src/conflicts.c: New file.
21402
21403 * src/symtab.c: entered into RCS
21404
21405 * src/alloc.h: New file.
21406
21407 * src/LR0.c: entered into RCS
21408
21409 1993-04-18 Noah Friedman <friedman@gnu.org>
21410
21411 * src/reader.c: New file.
21412
21413 * src/version.c: *** empty log message ***
21414
21415 1993-04-18 Noah Friedman <friedman@gnu.org>
21416
21417 * Makefile.in: *** empty log message ***
21418
21419 1993-04-17 Noah Friedman <friedman@gnu.org>
21420
21421 * Makefile.in: *** empty log message ***
21422
21423 1993-04-15 Richard Stallman <rms@gnu.org>
21424
21425 * src/main.c, src/files.c:
21426 New file.
21427
21428 1993-04-15 Noah Friedman <friedman@gnu.org>
21429
21430 * configure.in: entered into RCS
21431
21432 * configure.in: *** empty log message ***
21433
21434 * configure.in: New file.
21435
21436 1993-04-14 Richard Stallman <rms@gnu.org>
21437
21438 * Makefile.in: New file.
21439
21440 1993-04-13 Richard Stallman <rms@gnu.org>
21441
21442 * src/version.c: New file.
21443
21444 1993-03-25 Richard Stallman <rms@gnu.org>
21445
21446 * src/output.c: entered into RCS
21447
21448 1992-09-25 Richard Stallman <rms@gnu.org>
21449
21450 * configure.bat: entered into RCS
21451
21452 1992-06-22 Richard Stallman <rms@gnu.org>
21453
21454 * src/vmsgetargs.c: entered into RCS
21455
21456 1992-06-22 Richard Stallman <rms@gnu.org>
21457
21458 * doc/bison.rnh: entered into RCS
21459
21460 1992-04-20 David J. MacKenzie <djm@gnu.org>
21461
21462 * README: entered into RCS
21463
21464 1992-01-22 Richard Stallman <rms@gnu.org>
21465
21466 * src/machine.h: entered into RCS
21467
21468 1991-12-21 Richard Stallman <rms@gnu.org>
21469
21470 * src/lalr.c, src/closure.c:
21471 entered into RCS
21472
21473 1991-12-20 Richard Stallman <rms@gnu.org>
21474
21475 * src/state.h: entered into RCS
21476
21477 1991-12-18 Richard Stallman <rms@gnu.org>
21478
21479 * src/print.c, src/nullable.c, src/derives.c:
21480 entered into RCS
21481
21482 1991-11-03 David J. MacKenzie <djm@gnu.org>
21483
21484 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
21485 entered into RCS
21486
21487 1988-09-09 Richard Stallman <rms@gnu.org>
21488
21489 * src/bison.hairy: entered into RCS
21490
21491 1987-12-16 Richard Stallman <rms@gnu.org>
21492
21493 * REFERENCES: entered into RCS
21494
21495
21496 -----
21497
21498 Copyright (C) 1987, 1988, 1991, 1992, 1993, 1994, 1995, 1996,
21499 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
21500 Free Software Foundation, Inc.
21501
21502 Copying and distribution of this file, with or without
21503 modification, are permitted provided the copyright notice and this
21504 notice are preserved.