]> git.saurik.com Git - bison.git/blob - ChangeLog
bootstrap: README-hacking no longer exists
[bison.git] / ChangeLog
1 2009-03-31 Akim Demaille <demaille@gostai.com>
2
3 bootstrap: README-hacking no longer exists
4 * bootstrap (checkout_only_file): Set to HACKING.
5
6 2009-03-26 Akim Demaille <demaille@gostai.com>
7
8 doc: merge HACKING and README-hacking.
9 Two files is confusing.
10 Reported by Alexandre Duret-Lutz.
11
12 * README-hacking: Merge into...
13 * HACKING (Working from the repository): here.
14
15 2009-03-26 Akim Demaille <demaille@gostai.com>
16
17 doc: update README-hacking.
18 * README-hacking: We now use git and git submodules.
19 Reported by Ralf Wildenhues and Alexandre Duret-Lutz.
20
21 2009-03-26 Akim Demaille <demaille@gostai.com>
22
23 lalr1.cc: avoid GCC 4.3 warnings.
24 GCC 4.3 now warns about "a || b && c" and asks for explicit
25 parentheses.
26 Reported by Alexandre Duret-Lutz.
27 * data/location.cc: Update copyright years.
28 (Position::operator==): Use parens to make precedence explicit.
29 Compare lines and columns first, as they are more likely to be
30 different, and they are faster to compare.
31
32 2009-03-26 Akim Demaille <demaille@gostai.com>
33
34 gnulib: update.
35 * gnulib: Update to latest.
36 * src/local.mk (AM_CFLAGS): Move to...
37 * Makefile.am: here.
38 * etc/prefix-gnulib-mk (prefix_assignment): Also transform
39 AM_CFLAGS.
40
41 2009-03-02 Akim Demaille <demaille@gostai.com>
42
43 Comment changes.
44
45 2009-03-02 Akim Demaille <demaille@gostai.com>
46
47 Share b4_yytranslate_define.
48 * data/lalr1.cc (b4_yytranslate_define): Move to...
49 * data/c++.m4: here.
50
51 2009-03-02 Akim Demaille <demaille@gostai.com>
52
53 Use locations in the variant example.
54 Yes, this obfuscates the point of this example, variants only.
55 But glr.cc cannot work (yet?) without locations. This change
56 makes it easier to use this example with glr.cc.
57
58 * examples/variant.yy (assert): %define it.
59 (locations): Request them.
60 (yylex): Bind the location to the stage.
61
62 2009-03-02 Akim Demaille <demaille@gostai.com>
63
64 Dub make_TOKEN as a public type interface.
65 * data/c++.m4 (b4_symbol_constructor_declare)
66 (b4_symbol_constructor_define): New empty stubs.
67 (b4_public_types_declare, b4_public_types_define): Use them.
68 * data/lalr1.cc (b4_symbol_constructor_declare)
69 (b4_symbol_constructor_declare_)
70 (b4_symbol_constructor_define_, b4_symbol_constructor_define):
71 Move to...
72 * data/variant.hh: here.
73 Remove the "b4_variant_if" parts, as variant.hh is loaded only if
74 needed.
75 * data/lalr1.cc: No longer invoke b4_symbol_constructor_define and
76 b4_symbol_constructor_declare, as it is now done by
77 b4_public_types_define and b4_public_types_declare.
78
79 2009-03-02 Akim Demaille <demaille@gostai.com>
80
81 Coding style changes.
82 * data/lalr1.cc (b4_symbol_constructor_declaration_)
83 (b4_symbol_constructor_declarations)
84 (b4_symbol_constructor_definition_)
85 (b4_symbol_constructor_definitions)
86 (b4_yytranslate_definition): Rename as...
87 (b4_symbol_constructor_declare_)
88 (b4_symbol_constructor_declare)
89 (b4_symbol_constructor_define_)
90 (b4_symbol_constructor_define)
91 (b4_yytranslate_define): these.
92 * data/variant.hh (b4_variant_definition): Rename as...
93 (b4_variant_define): this.
94
95 2009-03-02 Akim Demaille <demaille@gostai.com>
96
97 Factor b4_assert_if, b4_lex_symbol_if, and b4_variant_if.
98 * data/bison.m4 (b4_percent_define_if_define): New.
99 * data/c++.m4 (b4_variant_if): Move to...
100 * data/bison.m4: Here, using b4_percent_define_if_define.
101 * data/lalr1.cc (b4_assert_if, b4_lex_symbol_if): Move to...
102 * data/bison.m4: Here, using b4_percent_define_if_define.
103
104 2009-03-02 Akim Demaille <demaille@gostai.com>
105
106 Dub symbol_type_base as a public type.
107 * data/c++.m4 (b4_public_types_declare): Now define
108 symbol_type_base and symbol_type.
109 (b4_public_types_define): New.
110 In both cases, the definitions are taken verbatim from lalr1.cc.
111 * data/lalr1.cc: Adjust.
112
113 2009-03-02 Akim Demaille <demaille@gostai.com>
114
115 b4_public_types_declare.
116 * data/c++.m4 (b4_public_types_declare): New.
117 * data/glr.cc, data/lalr1.cc: Use it.
118
119 2009-03-02 Akim Demaille <demaille@gostai.com>
120
121 b4_semantic_type_declare.
122 * data/c++.m4 (b4_semantic_type_declare): New.
123 Factors and generalizes what was in glr.cc and lalr1.cc.
124 * data/variant.hh (b4_semantic_type_declare): Redefine it for
125 variants.
126 * data/lalr1.cc, data/glr.cc: Use it.
127
128 2009-02-26 Akim Demaille <demaille@gostai.com>
129
130 Upgrade gnulib.
131 * gnulib: Upgrade from master.
132 * lib/.cvsignore, lib/.gitignore, m4/.cvsignore, m4/.gitignore:
133 Regen.
134
135 2009-02-25 Akim Demaille <demaille@gostai.com>
136
137 Remove useless arguments.
138 * data/glr.c (yy_reduce_print): $$ and @$ are not used and not
139 relevant.
140
141 2009-02-25 Akim Demaille <demaille@gostai.com>
142
143 Comment changes.
144 * data/lalr1.cc: here.
145
146 2009-02-25 Akim Demaille <demaille@gostai.com>
147
148 Fix glr.cc's debug level handling.
149 * data/glr.cc (yydebug_): Remove, as it is actually yydebug from
150 glr.c which is used.
151 (debug_level, set_debug_level): Adjust.
152
153 2009-02-25 Akim Demaille <demaille@gostai.com>
154
155 Copyright years.
156 * data/glr.c: Add 2007 and 2008 here, consistenly with the comments.
157
158 2009-02-25 Akim Demaille <demaille@gostai.com>
159
160 Style changes.
161 * etc/bench.pl.in (generate_grammar_list): Consitently use
162 location_type, not yy::location.
163
164 2009-02-25 Akim Demaille <demaille@gostai.com>
165
166 Comment change.
167 * data/lalr1.cc: here.
168
169 2009-02-19 Akim Demaille <demaille@gostai.com>
170
171 Make yyparser::error public.
172 * data/lalr1.cc: here.
173 There is no good reason to keep it private (and it is convenient
174 to use it from the scanner for instance). It is already public in
175 glr.cc.
176
177 2009-02-19 Akim Demaille <demaille@gostai.com>
178
179 Comment changes.
180 * data/glr.cc: here.
181
182 2009-02-19 Akim Demaille <demaille@gostai.com>
183
184 Remove trailing blanks.
185 The epilogue has its own ending \n, no need to add another.
186
187 * data/glr.c, data/lalr1.java, data/yacc.c: dnl when outputing the
188 epilogue.
189 * data/glr.cc: dnl when extending the epilogue.
190 Remove stray "private:".
191
192 2009-02-19 Akim Demaille <demaille@gostai.com>
193
194 Use b4_c_modern.
195 * data/c.m4 (b4_c_function_decl): Here.
196
197 2009-02-19 Akim Demaille <demaille@gostai.com>
198
199 Comment changes.
200 * data/lalr1.cc: here.
201
202 2009-02-19 Akim Demaille <demaille@gostai.com>
203
204 Extract variant.hh
205 * data/variant.hh: New, extracted from...
206 * data/lalr1.cc: here.
207 Adjust.
208 * data/local.mk: Adjust.
209
210 2009-02-19 Akim Demaille <demaille@gostai.com>
211
212 Extract stack.hh from lalr1.cc.
213 * data/stack.hh: New.
214 * data/lalr1.cc: Extract from here.
215 * data/local.mk: Adjust.
216
217 2009-02-03 Joel E. Denny <jdenny@ces.clemson.edu>
218
219 Add reminder about uploading public key to keys.gnupg.net.
220 * HACKING (Release Procedure): Here.
221
222 2009-01-28 Akim Demaille <demaille@gostai.com>
223
224 * NEWS: Update information about 2.4.1 and 2.4.2.
225
226 2008-11-04 Akim Demaille <demaille@gostai.com>
227
228 Reformat NEWS.
229 * NEWS: Use more outline-mode markup.
230 Suggested by Jim Meyering.
231
232 2009-01-08 Akim Demaille <demaille@gostai.com>
233
234 Fix grep portability issues.
235 Grep on Solaris does not support -q.
236 Reported by Summum Bonum.
237
238 * NEWS: Add a stub for 2.4.2.
239 * THANKS: Add Summum Bonum.
240 * tests/atlocal.in (EGREP): New.
241 (CC, CXX, XSLTPROC): Make it possible to override them via
242 envvars.
243 * tests/java.at: Use $EGREP instead of egrep.
244 Use AT_CHECK's ignore instead of grep's -q.
245
246 2008-12-11 Akim Demaille <demaille@gostai.com>
247
248 Pass the token type to yysyntax_error.
249 * data/yacc.c (yysyntax_error): Take the transated token instead
250 of the raw number.
251 Adjust callers.
252 * TODO: Update.
253
254 2008-12-11 Akim Demaille <demaille@gostai.com>
255
256 Formatting changes.
257 * data/glr.c: Formatting changes.
258
259 2008-12-11 Akim Demaille <demaille@gostai.com>
260
261 Propagate i18n changes into glr.c.
262 * TODO: Update.
263 * data/glr.c (yyreportSyntaxError): Use "switch" instead of
264 building the error message format dynamically.
265 * data/lalr1.java: Formatting changes.
266
267 2008-12-11 Akim Demaille <demaille@gostai.com>
268
269 Use testsuite -C.
270 * tests/local.mk: Replace "cd && testsuite" by "testsuite -C".
271 Solves problems when top_srcdir is an absolute path.
272 Suggested by Eric Blake.
273 * configure.ac: Require Autoconf 2.62.
274
275 2008-12-11 Akim Demaille <demaille@gostai.com>
276
277 Simplify the i18n of the error messages.
278 * data/lalr1.cc: Comment changes.
279 * data/yacc.c (yysyntax_error): Rewrite, using a switch as in
280 lalr1.cc instead of building dynamically the format string.
281
282 2008-12-08 Akim Demaille <demaille@gostai.com>
283
284 Fix portability issue in the test suite.
285 * tests/local.at (AT_MATCHES_CHECK): New.
286 Based on Perl instead of Sed. Sed has too many portability
287 pitfalls, not ever Sed is GNU Sed.
288 * tests/actions.at (Fix user actions without a trailing semicolon):
289 Use it.
290
291 2008-12-08 Akim Demaille <demaille@gostai.com>
292
293 Update data/README.
294 * data/README: Document glr.cc, lalr1.java, m4sugar and xslt.
295
296 2008-12-08 Akim Demaille <demaille@gostai.com>
297
298 Install autoconf as a submodule to get m4sugar.
299 * .gitmodules: Add submodules/autoconf.
300 * data/m4sugar/foreach.m4, data/m4sugar/m4sugar.m4: Now links into
301 submodules/autoconf.
302
303 2008-12-08 Akim Demaille <demaille@gostai.com>
304
305 Test token.prefix in all the skeletons.
306 * data/java.m4 (b4_token_enum): Use the token.prefix.
307 * tests/local.at (AT_BISON_OPTION_PUSHDEFS): Define AT_TOKEN_PREFIX.
308 * tests/calc.at (_AT_DATA_CALC_Y): Use it.
309 Add checks for yacc.c, glr.c, lalr1.cc and glr.cc.
310 * tests/java.at: Comment changes.
311 (AT_CHECK_JAVA_MINIMAL): Define the END token.
312 (Java parser class and package names): Add token.prefix check.
313
314 2008-12-08 Akim Demaille <demaille@gostai.com>
315
316 Fix regeneration of atconfig.
317 * tests/local.mk (tests/atconfig): The rule was incorrect, but
318 remove it: now that there is no tests/Makefile.am, the top-level
319 Makefile properly updates atconfig when needed.
320
321 2008-12-07 Di-an Jan <dianj@freeshell.org>
322
323 Implement the FIXME that ends an user action with a semicolon
324 if it seems necessary.
325 * src/scan-code.l (flex rules section): Flag cpp directive from
326 any `#' to the first unescaped end-of-line. Semicolon is not
327 needed after `;', `{', '}', or cpp directives and is needed after
328 any other token (whitespaces and comments have no effect).
329 * tests/actions.at (Fix user actions without a trailing semicolon):
330 New test.
331 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add semicolons to
332 to make user actions complete statements.
333 Adjust column numbers in error messages.
334 * tests/regression.at (Fix user actions without a trailing semicolon):
335 Remove. Covered by new test.
336
337 2008-12-07 Akim Demaille <demaille@gostai.com>
338
339 Update gnulib.
340 * gnulib: Update from master.
341
342 2008-12-05 Eric Blake <ebb9@byu.net>
343
344 Avoid compiler warning.
345 * src/output.c (muscle_insert_item_number_table): Delete unused
346 function.
347
348 2008-12-02 Eric Blake <ebb9@byu.net>
349
350 Build testsuite with newer autoconf.
351 * tests/output.at (m4_expand): Don't override in newer autoconf,
352 where the underlying implementation changed.
353 * tests/cxx-type.at (_AT_RESOLVED_GLR_OUTPUT)
354 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT)
355 (_AT_AMBIG_GLR_OUTPUT_WITH_LOC, _AT_GLR_STDERR)
356 (_AT_VERBOSE_GLR_STDERR): Expand to double-quoted strings,
357 since some of them contain unbalanced ')'.
358
359 2008-12-01 Akim Demaille <demaille@gostai.com>
360
361 Use b4_symbol for printers and destructors everywhere.
362 * data/bison.m4 (b4_symbol_action_location): New.
363 * data/c.m4 (b4_symbol_actions): Remove.
364 Adjust all callers to use by b4_symbol_foreach and the corresponding
365 b4_symbol_printer/destructor macro.
366 * data/glr.cc: Adjust.
367 * data/lalr1.java: Adjust the %destructor sanity check.
368 * src/output.c (symbol_code_props_output): Remove, we no longer
369 need the b4_symbol_printers/destructors tables.
370
371 2008-12-01 Akim Demaille <demaille@gostai.com>
372
373 Use b4_symbol_case_.
374 * data/lalr1.cc, data/bison.m4 (b4_symbol_action): Use
375 b4_symbol_case_.
376
377 2008-12-01 Akim Demaille <demaille@gostai.com>
378
379 Move b4_symbol based macro to bison.m4.
380 * data/lalr1.cc (b4_symbol_, b4_symbol, b4_symbol_if)
381 (b4_symbol_action, b4_symbol_destructor, b4_symbol_printer)
382 (b4_symbol_case_, b4_symbol_foreach, b4_type_action_)
383 (b4_type_foreach): Move to...
384 * data/bison.m4: Here.
385 * data/lalr1.cc (b4_symbol_action): Specialize for C++: use
386 b4_symbol_value_template instead of b4_symbol_value.
387
388 2008-12-01 Akim Demaille <demaille@gostai.com>
389
390 b4_symbol/type_foreach.
391 * data/lalr1.cc (b4_symbol_foreach, b4_type_foreach): New.
392 Use them.
393
394 2008-12-01 Akim Demaille <demaille@gostai.com>
395
396 Use the symbol properties to output the printer/destructor for lalr1.cc.
397 Instead of defining complex list of tuples to define various
398 properties of the symbols, we now prefer to define symbols as
399 "structs" in m4: using the symbol key (its number), and the
400 property name, b4_symbol gives it value. Use this to handle
401 destructors and printers.
402
403 * src/output.c (CODE_PROP): New.
404 (prepare_symbol_definitions): Use it to define the printer and
405 destructor related attributes of the symbols.
406 * data/lalr1.cc (b4_symbol_actions): Rename as...
407 (b4_symbol_action): this.
408 Use b4_symbol instead of 6 arguments.
409 (b4_symbol_printer, b4_symbol_destructor): New.
410 Use them instead of b4_symbol_actions.
411
412 2008-12-01 Akim Demaille <demaille@gostai.com>
413
414 Avoid capturing variables too easily.
415 * src/muscle_tab.h (MUSCLE_INSERT_BOOL, MUSCLE_OBSTACK_SGROW): Use
416 v__ and p__ instead of v and p.
417
418 2008-12-01 Akim Demaille <demaille@gostai.com>
419
420 Remove spurious empty line before syncline.
421 * data/bison.m4 (b4_syncline): Don't output an empty line before
422 the output.
423
424 2008-11-26 Akim Demaille <demaille@gostai.com>
425
426 Convert lib/Makefile.am into lib/local.mk.
427 The real problem is rather gnulib.mk, which itself is extracted
428 from a Makefile.am that gnulib expects to the "recursive". The
429 tool prefix-gnulib-mk converts such a gnulib.mk to be
430 non-recursive. Also, some AC_SUBST variables need to be adjusted.
431
432 * etc/prefix-gnulib-mk: New.
433 * bootstrap (slurp): Use it to convert further gnulib.mk.
434 No longer try to avoid re-creation of lib/gnulib.mk as the changes
435 are deeper.
436 * lib/Makefile.am: Rename as...
437 * lib/local.mk: this.
438 Adjust to be prefixed.
439 * Makefile.am, configure.ac: Adjust.
440 * src/local.mk (AM_CPPFLAGS): Extend it, don't define it.
441
442 2008-11-26 Akim Demaille <demaille@gostai.com>
443
444 s/_FLAGS/FLAGS/.
445 * tests/local.mk (TESTSUITE_FLAGS, AUTOTEST_FLAGS): Rename as...
446 (TESTSUITEFLAGS, AUTOTESTFLAGS): these to compy with the GCS.
447 Reported by Eric Blake.
448
449 2008-11-26 Akim Demaille <demaille@gostai.com>
450
451 Use b4_parser_tables_define in glr.cc.
452 * data/glr.c: Use b4_parser_tables_define instead of defining the
453 (deterministic integral) tables by hand.
454
455 2008-11-26 Akim Demaille <demaille@gostai.com>
456
457 Use b4_parser_tables_define in Java.
458 * data/java.m4 (b4_typed_parser_table): Rename as...
459 (b4_typed_parser_table_define): this, for consistency.
460 Accept a comment as $4.
461 Move $2 into yy*_.
462 (b4_integral_parser_table): Rename as...
463 (b4_integral_parser_table_define): this.
464 * data/lalr1.java: Adjust all uses.
465 Use b4_parser_tables_define instead of generation by hand.
466
467 2008-11-26 Akim Demaille <demaille@gostai.com>
468
469 Prepare the convergence bw C style and Java table generation.
470 * data/bison.m4 (b4_tables_map, b4_tables_declare)
471 (b4_tables_define): Rename as...
472 (b4_integral_parser_tables_map, b4_parser_tables_declare)
473 (b4_parser_tables_define): these.
474 * data/c.m4 (b4_table_define): Rename as...
475 (b4_integral_parser_table_define): this.
476 * data/lalr1.cc: Adjust.
477 (b4_table_define, b4_table_declare): Rename as...
478 (b4_integral_parser_table_define)
479 (b4_integral_parser_table_declare): these.
480 (yyrline_): Move the comment where it is actually used.
481 * data/yacc.c: Adjust.
482 (yyrline): Use b4_integral_parser_table_define.
483
484 2008-11-26 Akim Demaille <demaille@gostai.com>
485
486 Regen.
487 * src/parse-gram.h, src/parse-gram.c: Regen.
488
489 2008-11-26 Akim Demaille <demaille@gostai.com>
490
491 Factor the generation of the (integral) tables bw yacc.c and lalr1.cc.
492 * data/lalr1.cc (b4_tables_map): Move to...
493 * data/bison.m4: here.
494 Update the comment for yytable during the flight.
495 (b4_tables_declare, b4_tables_define): New.
496 * data/lalr1.cc: Use them.
497 * data/c.m4 (b4_table_define): New.
498 * data/yacc.c: Use b4_tables_define instead of output the tables
499 by hand.
500 * tests/regression.at (Web2c Actions): Adjust the expected output,
501 the order of the tables changed.
502
503 2008-11-26 Akim Demaille <demaille@gostai.com>
504
505 Get rid of (yy)rhs and (yy)prhs.
506 These tables are no longer needed in the parsers, and they don't seem to
507 be useful. They are not documented either.
508
509 * src/output.c (prepare_rules): Get rid of rhs and prhs.
510 Adjust the computation of (yy)r2.
511
512 2008-11-26 Akim Demaille <demaille@gostai.com>
513
514 Rule length is unsigned.
515 * src/gram.h, src/gram.c (rule_rhs_length): Return a size_t.
516
517 2008-11-26 Akim Demaille <demaille@gostai.com>
518
519 Get rid of lalr1-split.cc.
520 It was no longer maintainer.
521
522 * data/lalr1-split.cc: Remove.
523 * etc/bench.pl.in (bench_fusion_parser): Remove.
524 Adjust.
525
526 2008-11-26 Akim Demaille <demaille@gostai.com>
527
528 Use yy* consistently.
529 * data/glr.c: Now that yyrhs no longer exists as a global
530 variable, rename local "rhs" variables into "yyrhs" for
531 consistency.
532
533 2008-11-25 Akim Demaille <demaille@gostai.com>
534
535 Get rid of yyrhs and yyprhs in glr.c.
536 * data/glr.c (yyrhs, yyprhs): Remove.
537 Instead, use the state stack and yystos.
538
539 2008-11-25 Akim Demaille <demaille@gostai.com>
540
541 Flag glr tests.
542 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): If glr, declare it
543 as an Autotest keyword.
544
545 2008-11-25 Akim Demaille <demaille@gostai.com>
546
547 Prefer TESTSUITE_FLAGS.
548 TESTSUITEFLAGS is barely readable.
549
550 * tests/local.mk (TESTSUITE_FLAGS): Default to $(TESTSUITEFLAGS)
551 for backward compatibility.
552 Use the former instead of the latter.
553
554 2008-11-25 Akim Demaille <demaille@gostai.com>
555
556 Get rid of yyrhs and yyprhs in larl1.java.
557 * data/lalr1.java (yyrhs_, yyprhs_): Remove.
558 (yy_reduce_print): Rather, use yystos_ and the state stack.
559
560 2008-11-25 Akim Demaille <demaille@gostai.com>
561
562 Formatting changes.
563
564 2008-11-25 Akim Demaille <demaille@gostai.com>
565
566 Get rid of yyrhs and yyprhs in yacc.c.
567 They were used to get the symbol types, given a rule number, when
568 displaying the top of the stack before a reduction. But the
569 symbol type is available from the state stack. This has two be
570 benefits: two tables less in the parser (making it smaller), and a
571 more consistent use of the three stacks which will help to fuse
572 them.
573
574 * data/yacc.c (yyprhs, yyrhs): Remove.
575 (YY_REDUCE_PRINT): Pass yyssp to yy_reduce_print.
576 (yy_reduce_print): Take yyssp as argument.
577 Use it, together with yystos, to get the symbol type.
578 * tests/regression.at (Web2c Report): Remove these tables from the
579 expected output.
580
581 2008-11-25 Akim Demaille <demaille@gostai.com>
582
583 b4_tables_map.
584 The point is to factor the generation of the tables across skeletons.
585 This is language dependant.
586
587 * data/c.m4 (b4_comment_): New.
588 Should be usable to define how to generate tables independently of
589 the language.
590 (b4_c_comment): New.
591 (b4_comment): Bounce to b4_c_comment.
592 Now support $2 = [PREFIX] for indentation.
593 * data/lalr1.cc (b4_table_declare): Don't output a comment if
594 there is no comment.
595 Indent it properly when there is one.
596 Output the ending semicolon.
597 (b4_table_define): Space changes.
598 Output the ending semicolon.
599 (b4_tables_map): New.
600 Use it twice instead of declaring and defining the (integral)
601 tables by hand.
602
603 2008-11-25 Akim Demaille <demaille@gostai.com>
604
605 b4_table_declare.
606 * data/lalr1.cc (b4_table_declare): New.
607 Use it to declare the tables defined with b4_table_define.
608 (b4_table_define): Declare a third arg to match b4_table_declare
609 signature.
610 Move all the comments around invocations of b4_table_define into
611 the invocations itselves.
612 Move things around to have the order for declarations and
613 definitions.
614
615 2008-11-25 Akim Demaille <demaille@gostai.com>
616
617 Formatting changes.
618 * data/lalr1.java: here.
619
620 2008-11-25 Akim Demaille <demaille@gostai.com>
621
622 b4_args is more general than only C++.
623 * data/lalr1.cc (b4_args, _b4_args): Move to...
624 * data/bison.m4: here.
625
626 2008-11-21 Di-an Jan <dianj@freeshell.org>
627
628 Implement no-XXX arguments for --warnings, --report, --trace.
629 * src/getargs.c (flags_argmatch): Handles no-XXX.
630 Fix typo in doxygen comment.
631
632 2008-11-21 Akim Demaille <demaille@gostai.com>
633
634 Display the changes in cross-options.texi.
635 * build-aux/cross-options.pl ($sep): New, to separate items.
636 * doc/local.mk ($(CROSS_OPTIONS_TEXI)): Use diff to display the
637 changes.
638
639 2008-11-20 Di-an Jan <dianj@freeshell.org>
640
641 Improves options in the manual.
642 * doc/bison.texinfo (-g, -x): Add space before argument.
643 (Option Cross Key): Implement FIXME: listing directives also.
644 * build-aux/cross-options.pl: Read from <STDIN> rather than <>.
645 (Short Option): Special case -d. Put arguments inside @option.
646 (Bison Directive): Add column, automatically extracted from
647 src/scan-gram.l (actual name passed as the first argument)
648 with special case for %define.
649 * doc/local.mk (doc/cross-options.texi): Pass src/scan-gram.l
650 to build-aux/cross-options.pl.
651 * src/getargs.c (usage): Document limitations of cross-options.pl.
652 * src/scan-gram.l: Likewise.
653
654 2008-11-18 Joel E. Denny <jdenny@ces.clemson.edu>
655
656 Fix unexpanded macros in GLR defines file.
657 Reported by Csaba Raduly at
658 <http://lists.gnu.org/archive/html/bug-bison/2008-11/msg00048.html>.
659 * THANKS (Csaba Raduly): Add.
660 * data/glr.c: Fix overquoting on b4_prefix for yylval and yylloc.
661 * tests/calc.at (_AT_DATA_CALC_Y): If %defines is specified, generate
662 lexer in a separate module that includes the defines file.
663 (AT_CHECK_CALC): From AT_FULL_COMPILE, request compilation of lexer
664 source.
665 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_DEFINES_IF.
666 Adjust AT_LOC and AT_VAL to use AT_NAME_PREFIX.
667 (AT_BISON_OPTION_POPDEFS): Pop AT_DEFINES_IF.
668 (AT_DATA_SOURCE_PROLOGUE): New.
669 (AT_DATA_GRAMMAR_PROLOGUE): Use AT_DATA_SOURCE_PROLOGUE.
670 (AT_DATA_SOURCE): New.
671 (AT_FULL_COMPILE): Extend to support an additional source file.
672
673 2008-11-18 Akim Demaille <demaille@gostai.com>
674
675 More TODO.
676 * TODO: More short term issues.
677
678 2008-11-18 Akim Demaille <demaille@gostai.com>
679
680 Regen.
681 * src/parse-gram.h, src/parse-gram.c: Regen.
682
683 2008-11-18 Akim Demaille <demaille@gostai.com>
684
685 Use b4_subtract where possible.
686 * data/lalr1.cc (b4_subtract): Move to...
687 * data/bison.m4: here.
688 * data/glr.c (b4_rhs_data): Use it.
689 * data/yacc.c (b4_rhs_value, b4_rhs_location): Use it.
690
691 2008-11-18 Akim Demaille <demaille@gostai.com>
692
693 Remove incorrect mode specification.
694 * data/glr.cc: Don't pretend it's C code.
695
696 2008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
697
698 Simplify last patch slightly.
699 * src/getargs.c (getargs): Here.
700
701 2008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
702
703 Fix last warning from --enable-gcc-warnings.
704 * src/getargs.c (getargs): Don't assign const address to non-const
705 pointer.
706
707 2008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
708
709 Don't let maintainer-*-check targets force a version update.
710 * cfg.mk (_is-dist-target): Implement. maintainer-check* was already
711 handled.
712
713 2008-11-17 Di-an Jan <dianj@freeshell.org>
714
715 * doc/bison.texinfo: Synchronize ``Detail Node Listing''.
716 Align menus. Adjust word wrapping. Use node names for menu names.
717 (Examples): Don't abbreviate node names.
718 (LocalWords): Remove abbreviations.
719 (Copying): Make description a sentence.
720 (Java Action Features): Remove period to match the rest of menu.
721
722 2008-11-17 Di-an Jan <dianj@freeshell.org>
723
724 Handles several --enable-gcc-warnings.
725 * src/getargs.c (command_line_location): Set parameters to void.
726 * src/output.c (symbol_type_name_cmp): Make static.
727 (symbols_by_type_name): Set parameters to void.
728 (symbol_definitions_output): Remove unused parameter. Rename as...
729 (prepare_symbol_definitions): this.
730 (muscles_output): Move symbol_definitions_output to...
731 (output): here as prepare_symbol_definitions.
732 * tests/c++.at (AT_CHECK_VARIANTS): Remove unused parameters of main.
733 (AT_CHECK_NAMESPACE): Make unused parameter lloc unnamed.
734
735 2008-11-17 Di-an Jan <dianj@freeshell.org>
736
737 * tests/c++.at (AT_CHECK_VARIANTS): Fixes tests 198-202.
738 Use AT_DATA_GRAMMAR instead of AT_DATA for compiled tests.
739
740 2008-11-16 Akim Demaille <demaille@gostai.com>
741
742 Add missing $(EXEEXT).
743 * doc/local.mk ($(CROSS_OPTIONS_TEXI)): The target is
744 "src/bison$(EXEEXT)".
745 Reported by Di-an Jan.
746
747 2008-11-15 Akim Demaille <demaille@gostai.com>
748
749 * TODO: Update.
750
751 2008-11-15 Akim Demaille <demaille@gostai.com>
752
753 Formatting changes.
754 * tests/input.at: here.
755
756 2008-11-15 Akim Demaille <demaille@gostai.com>
757
758 Remove duplicate header inclusion.
759 * src/LR0.c: here.
760
761 2008-11-15 Akim Demaille <demaille@gostai.com>
762
763 * src/parse-gram.h, src/parse-gram.c: Regen.
764
765 2008-11-15 Akim Demaille <demaille@gostai.com>
766
767 Support parametric types.
768
769 There are two issues to handle: first scanning nested angle
770 bracket pairs to support types such as std::pair< std::string,
771 std::list<std::string> > >.
772
773 Another issue is to address idiosyncracies of C++: do not glue two
774 closing angle brackets together (otherwise it's operator>>), and
775 avoid sticking blindly a TYPE to the opening <, as it can result
776 in '<:' which is a digraph for '['.
777
778 * src/scan-gram.l (brace_level): Rename as...
779 (nesting): this.
780 (SC_TAG): New.
781 Implement support for complex tags.
782 (tag): Accept
783 , but not <.
784 * data/lalr1.cc (b4_symbol_value, b4_symbol_value_template)
785 (b4_symbol_variant): Leave space around types as parameters.
786 * examples/variant.yy: Use nested template types and leading ::.
787 * src/parse-gram.y (TYPE, TYPE_TAG_ANY, TYPE_TAG_NONE, type.opt):
788 Rename as...
789 (TAG, TAG_ANY, TAG_NONE, tag.opt): these.
790 * tests/c++.at: Test parametric types.
791
792 2008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
793
794 Test token.prefix.
795 This is not sufficient, but we test at least that the make_SYMBOL
796 interface is not affected by token.prefix. A more general test
797 will be implemented when the support of token.prefix is generalized
798 to more skeletons.
799
800 * tests/c++.at: One more variant test, using token.prefix.
801
802 2008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
803
804 Test the make_TOKEN interface.
805 * tests/c++.at (AT_CHECK_VARIANTS): Require and use locations.
806 Factor the common code in yylex.
807 Use it to test "%define lex_symbol".
808
809 2008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
810
811 Formatting change.
812
813 2008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
814
815 Simplify code for variants bench marks.
816 * etc/bench.pl.in (&generate_grammar_list): Define and use
817 location_type.
818 Factor the common code in yylex.
819
820 2008-11-15 Akim Demaille <demaille@gostai.com>
821
822 Better error message.
823 * bootstrap (find_tool): Fix the error message.
824
825 2008-11-15 Akim Demaille <demaille@gostai.com>
826
827 Update variant.yy to newest interface.
828 * examples/variant.yy: Define lex_symbol.
829 Adjust.
830
831 2008-11-15 Akim Demaille <demaille@gostai.com>
832
833 Don't use locations in variant.yy.
834 * examples/variant.yy: Adjust to not using locations.
835
836 2008-11-15 Akim Demaille <demaille@gostai.com>
837
838 Comment changes.
839 * data/local.mk, etc/local.mk, examples/local.mk: Use Automake
840 comments for the license.
841
842 2008-11-15 Akim Demaille <demaille@gostai.com>
843
844 Remove tests/Makefile.am.
845 * tests/Makefile.am: Rename as...
846 * tests/local.mk: this.
847 * Makefile.am, configure.ac: Adjust.
848 * Makefile.am (DISTCLEANFILES): Define.
849 (maintainer-check, maintainer-xml-check, maintainer-push-check):
850 Remove, we no longer need to bounce to the real targets.
851
852 2008-11-15 Akim Demaille <demaille@gostai.com>
853
854 Comment changes.
855
856 2008-11-15 Akim Demaille <demaille@gostai.com>
857
858 djgpp/local.mk.
859 * Makefile.am (EXTRA_DIST): Move djgpp related part to...
860 * djgpp/local.mk: this new file.
861
862 2008-11-15 Akim Demaille <demaille@gostai.com>
863
864 Remove doc/Makefile.am.
865 * doc/Makefile.am: Rename as...
866 * doc/local.mk: this.
867 Adjust paths
868 * Makefile.am, configure.ac: Adjust.
869 * Makefile.am (MOSTLYCLEANFILES): New.
870 * src/local.mk: Adjust.
871
872 2008-11-15 Akim Demaille <demaille@gostai.com>
873
874 Move sc_tight_scope into maint.mk.
875 It does not work, and I don't know how it was supposed to work: it
876 seems to be looking for sources in the build tree. I just moved
877 it at a better place, fixing it is still required.
878
879 * src/local.mk (echo): Remove.
880 (sc_tight_scope): Move to...
881 * maint.mk: here.
882
883 2008-11-15 Akim Demaille <demaille@gostai.com>
884
885 Regen.
886 * src/parse-gram.h, src/parse-gram.h: Regen.
887
888 2008-11-15 Akim Demaille <demaille@gostai.com>
889
890 Remove src/Makefile.am.
891 * src/Makefile.am: Rename as...
892 * src/local.mk: this.
893 Prefix all the paths with src/.
894 (AUTOMAKE_OPTIONS): Build object files in the sub dirs.
895 (AM_CPPFLAGS): Find find in builddir/src.
896 (YACC): Move the flags into...
897 (AM_YFLAGS): here.
898 * maint.mk (sc_tight_scope): Disable.
899 It used to bounce to the version in src/Makefile.am which is now
900 part of this very Makefile.
901 * Makefile.am, configure.ac: Adjust.
902 * src/scan-code-c.c, src/scan-code.l: We can no longer rely on
903 include "..." to find files "here": we are no longer in src/, so
904 qualify the includes with src/.
905 * doc/Makefile.am (PREPATH): No longer include the top_builddir
906 prefix.
907 (.x.1): Adjust to be able to create src/foo from the top level
908 Makefile, instead of going bounce to src/Makefile the creation of
909 foo.
910
911 2008-11-15 Akim Demaille <demaille@gostai.com>
912
913 Remove useless variable.
914 * doc/Makefile.am (srcsrcdir): Remove.
915
916 2008-11-15 Akim Demaille <demaille@gostai.com>
917
918 Remove data/Makefile.am.
919 * data/Makefile.am: Rename as...
920 * data/local.mk: this.
921 Adjust paths.
922 * Makefile.am, configure.ac: Adjust.
923
924 2008-11-15 Akim Demaille <demaille@gostai.com>
925
926 Remove etc/Makefile.am.
927 * etc/Makefile.am: Rename as...
928 * etc/local.mk: this.
929 Adjust.
930 * Makefile.am, configure.ac: Adjust.
931
932 2008-11-15 Akim Demaille <demaille@gostai.com>
933
934 Remove examples/local.mk.
935 examples/calc++/Makefile.am might be interesting to keep as is, since
936 it is an example in itself.
937
938 * examples/Makefile.am: Rename as...
939 * examples/local.mk: this.
940 Adjust.
941 * Makefile.am, configure.ac: Adjust.
942
943 2008-11-15 Akim Demaille <demaille@gostai.com>
944
945 Remove build-aux/Makefile.am.
946 Recursive Makefiles are really way too slow, let's get rid of some of
947 them.
948
949 * build-aux/Makefile.am: Rename as...
950 * build-aux/local.mk: this.
951 Adjust paths.
952 * Makefile.am, configure.ac: Adjust.
953
954 2008-11-15 Akim Demaille <demaille@gostai.com>
955
956 Provide convenience constructors for locations and positions.
957 * data/location.cc (position::position): Accept file, line and
958 column as arguments with default values.
959 Always qualify initial line and column literals as unsigned.
960 (location::location): Provide convenience constructors.
961
962 2008-11-15 Akim Demaille <demaille@gostai.com>
963
964 Instead of using make_symbol<TOK_FOO>, generate make_FOO for each
965 token type.
966 Using template buys us nothing, and makes it uselessly complex to
967 construct a symbol. Besides, it could not be generalized to other
968 languages, while make_FOO would work in C/Java etc.
969
970 * data/lalr1.cc (b4_symbol_): New.
971 (b4_symbol): Use it.
972 (b4_symbol_constructor_declaration_)
973 (b4_symbol_constructor_definition_): Instead of generating
974 specializations of an overloaded template function, just generate
975 several functions whose names are forged from the token names
976 without the token.prefix.
977 (b4_symbol_constructor_declarations): Generate them for all the
978 symbols, not just by class of symbol type, now that instead of
979 specializing a function template by the token, we generate a
980 function named after the token.
981 (b4_symbol_constructor_specialization_)
982 (b4_symbol_constructor_specializations): Remove.
983 * etc/bench.pl.in: Adjust to this new API.
984
985 2008-11-13 Akim Demaille <demaille@gostai.com>
986
987 %define token.prefix.
988 Provide a means to add a prefix to the name of the tokens as
989 output in the generated files. Because of name clashes, it is
990 good to have such a prefix such as TOK_ that protects from names
991 such as EOF, FILE etc. But it clutters the grammar itself.
992
993 * data/bison.m4 (token.prefix): Empty by default.
994 * data/c.m4 (b4_token_enum, b4_token_define): Use it.
995 * data/lalr1.cc (b4_symbol): Ditto.
996
997 2008-11-13 Akim Demaille <demaille@gostai.com>
998
999 Compute at M4 time some of the subtractions.
1000 * data/lalr1.cc (b4_subtract): New.
1001 (b4_rhs_data): Use it.
1002
1003 2008-11-13 Akim Demaille <demaille@gostai.com>
1004
1005 symbol::token.
1006 This allows the user to get the type of a token returned by yylex.
1007
1008 * data/lalr1.cc (symbol::token): New.
1009 (yytoknum_): Define when %define lex_symbol, independently of
1010 %debug.
1011 (yytoken_number_): Move into...
1012 (symbol::token): here, since that's the only use.
1013 The other one is YYPRINT which was not officially supported
1014 by lalr1.cc, and anyway it did not work since YYPRINT uses this
1015 array under a different name (yytoknum).
1016
1017 2008-11-13 Akim Demaille <demaille@gostai.com>
1018
1019 YYERRCODE.
1020 * TODO (YYERRCODE): Mention the case of $undef.
1021
1022 2008-11-13 Akim Demaille <demaille@gostai.com>
1023
1024 TODO: YYPRINT.
1025 * TODO (YYPRINT): New.
1026
1027 2008-11-13 Akim Demaille <demaille@gostai.com>
1028
1029 Comment changes.
1030 * data/lalr1.cc, data/yacc.c: Fix the description of the
1031 yytranslate and yytoknum tables.
1032
1033 2008-11-13 Akim Demaille <demaille@gostai.com>
1034
1035 Define make_symbol in the header.
1036 To reach good performances these functions should be inlined (yet
1037 this is to measure precisely). To this end they must be available
1038 to the caller.
1039
1040 * data/lalr1.cc (b4_symbol_constructor_definition_): Qualify
1041 location_type with the class name.
1042 Since will now be output in the header, declare "inline".
1043 No longer use b4_symbol_constructor_specializations, but
1044 b4_symbol_constructor_definitions in the header.
1045 Don't call it in the *.cc file.
1046
1047 2008-11-13 Akim Demaille <demaille@gostai.com>
1048
1049 Define yytranslate in the header for lex_symbol.
1050 * data/lalr1.cc: Move the invocation of b4_yytranslate_definition
1051 into the header file when using %define lex_symbol.
1052 (yytranslate_): Declare inline.
1053
1054 2008-11-13 Akim Demaille <demaille@gostai.com>
1055
1056 Define the constructors of symbol_type in
1057 b4_symbol_constructor_definitions.
1058 The constructors are called by the make_symbol functions, which a
1059 forthcoming patch will move elsewhere. Hence the interest of
1060 putting them together.
1061
1062 The stack_symbol_type does not need to be moved, it is used only
1063 by the parser.
1064
1065 * data/lalr1.cc: Move symbol_type and symbol_base_type
1066 constructors into...
1067 (b4_symbol_constructor_definitions): here.
1068 Adjust.
1069
1070 2008-11-13 Akim Demaille <demaille@gostai.com>
1071
1072 Make it easier to move the definition of yytranslate_.
1073 Forthcoming changes will make it possible to use yytranslate_
1074 from outside the parser implementation file.
1075
1076 * data/lalr1.cc (b4_yytranslate_definition): New.
1077 Use it.
1078
1079 2008-11-13 Akim Demaille <demaille@gostai.com>
1080
1081 Remove useless class specification.
1082 * data/lalr1.cc (b4_symbol_constructor_specialization_): No need
1083 to refer to the class name to use a type defined by the class for
1084 arguments of member functions.
1085
1086 2008-11-13 Akim Demaille <demaille@gostai.com>
1087
1088 Finer input type for yytranslate.
1089 This patch is debatable: the tradition expects yylex to return an int
1090 which happens to correspond to token_number (which is an enum). This
1091 allows for instance to return characters (such as '*' etc.). But this
1092 goes against the stronger typing I am trying to have with the new
1093 lex interface which return a symbol_type. So in this case, feed
1094 yytranslate_ with a token_type.
1095
1096 * data/lalr1.cc (yytranslate_): When in %define lex-symbol,
1097 expect a token_type.
1098
1099 2008-11-13 Akim Demaille <demaille@gostai.com>
1100
1101 Honor lex-params in %define lex_symbol mode.
1102 * data/lalr1.cc: Use b4_lex_param.
1103
1104 2008-11-13 Akim Demaille <demaille@gostai.com>
1105
1106 Simplify names.
1107 * src/output.c (symbol_definitions_output): Rename symbol
1108 attributes type_name and has_type_name as type and has_type.
1109 * data/lalr1.cc: Adjust uses.
1110
1111 2008-11-13 Akim Demaille <demaille@gostai.com>
1112
1113 Use b4_type_names for the union type.
1114 The union used to compute the size of the variant used to iterate
1115 over the type of all the symbols, with a lot of redundancy. Now
1116 iterate over the lists of symbols having the same type-name.
1117
1118 * data/lalr1.cc (b4_char_sizeof_): New.
1119 (b4_char_sizeof): Use it.
1120 Adjust to be called with a list of numbers instead of a single
1121 number.
1122 Adjust its caller for new-line issues.
1123
1124 2008-11-13 Akim Demaille <demaille@gostai.com>
1125
1126 Define the "identifier" of a symbol.
1127 Symbols may have several string representations, for instance if
1128 they have an alias. What I call its "id" is a string that can be
1129 used as an identifier. May not exist.
1130
1131 Currently the symbols which have the "tag_is_id" flag set are
1132 those that don't have an alias. Look harder for the id.
1133
1134 * src/output.c (is_identifier): Move to...
1135 * src/symtab.c (is_identifier): here.
1136 * src/symtab.h, src/symtab.c (symbol_id_get): New.
1137 * src/output.c (symbol_definitions_output): Use it to define "id"
1138 and "has_id".
1139 Remove the definition of "tag_is_id".
1140 * data/lalr1.cc: Use the "id" and "has_id" whereever "tag" and
1141 "tag_is_id" were used to produce code.
1142 We still use "tag" for documentation.
1143
1144 2008-11-11 Akim Demaille <demaille@gostai.com>
1145
1146 Locations are no longer required by lalr1.cc.
1147 * data/lalr1.cc (_b4_args, b4_args): New.
1148 Adjust all uses of locations to make them optional.
1149 * tests/c++.at (AT_CHECK_VARIANTS): No longer use the locations.
1150 (AT_CHECK_NAMESPACE): Check the use of locations.
1151 * tests/calc.at (_AT_DATA_CALC_Y): Adjust to be usable with or
1152 without locations with lalr1.cc.
1153 Test these cases.
1154 * tests/output.at: Check lalr1.cc with and without location
1155 support.
1156 * tests/regression.at (_AT_DATA_EXPECT2_Y, _AT_DATA_DANCER_Y):
1157 Don't use locations.
1158
1159 2008-11-11 Akim Demaille <demaille@gostai.com>
1160
1161 AT_FULL_COMPILE.
1162 * tests/local.at (AT_FULL_COMPILE): New.
1163 * tests/actions.at, tests/calc.at, tests/regression.at: Use it.
1164
1165 2008-11-11 Akim Demaille <demaille@gostai.com>
1166
1167 Support parens in calc++.
1168 * doc/bison.texinfo (Calc++ Scanner, Calc++ Parser): Support parens.
1169 * examples/calc++/test (run): Check the expected output.
1170 Adjust callers.
1171 Check parens too.
1172
1173 2008-11-11 Akim Demaille <demaille@gostai.com>
1174
1175 Simplify lalr1.cc since %defines is mandatory.
1176 * data/lalr1.cc: Remove useless calls to b4_defines_if.
1177
1178 2008-11-11 Akim Demaille <demaille@gostai.com>
1179
1180 TODO: yyfmt.
1181 * TODO (yysyntax_error): New item.
1182
1183 2008-11-11 Akim Demaille <demaille@gostai.com>
1184
1185 Prefer M4 to CPP.
1186 * data/lalr1.cc: Use b4_error_verbose_if instead of #if
1187 YYERROR_VERBOSE.
1188
1189 2008-11-11 Akim Demaille <demaille@gostai.com>
1190
1191 Support i18n of the parse error messages.
1192 * TODO (lalr1.cc/I18n): Remove.
1193 * data/lalr1.cc (yysyntax_error_): Support the translation of the
1194 error messages, as done in yacc.c.
1195 Stay within the yy* pseudo namespace.
1196
1197 2008-11-11 Akim Demaille <demaille@gostai.com>
1198
1199 More TODO.
1200 * TODO (single stack, yysyntax_error): New.
1201
1202 2008-11-11 Akim Demaille <demaille@gostai.com>
1203
1204 Make it possible to return a symbol_type from yylex.
1205 * data/lalr1.cc (b4_lex_symbol_if): New.
1206 (parse): When lex_symbol is defined, expected yylex to return the
1207 complete lookahead.
1208 * etc/bench.pl.in (generate_grammar_list): Extend to support this
1209 yylex interface.
1210 (bench_variant_parser): Exercise it.
1211
1212 2008-11-11 Akim Demaille <demaille@gostai.com>
1213
1214 Remove useless bench case.
1215 * etc/bench.pl.in (bench_variant_parser): VARIANT_DESTROY is
1216 no longer used.
1217
1218 2008-11-11 Akim Demaille <demaille@gostai.com>
1219
1220 Improve display of directives.
1221 * etc/bench.pl.in (parse_term): Don't add useless eol.
1222
1223 2008-11-11 Akim Demaille <demaille@gostai.com>
1224
1225 Use string_cast in the bench.
1226 * etc/bench.pl.in (generate_grammar_list): Define and use
1227 string_cast.
1228
1229 2008-11-11 Akim Demaille <demaille@gostai.com>
1230
1231 Replace yychar with a Boolean.
1232 * data/lalr1.cc (parse::yychar): Replace by...
1233 (parse::yyempty): this.
1234
1235 2008-11-11 Akim Demaille <demaille@gostai.com>
1236
1237 Factor the tables.
1238 * TODO: New item.
1239
1240 2008-11-11 Akim Demaille <demaille@gostai.com>
1241
1242 Let yytranslate handle the eof case.
1243 * data/lalr1.cc (yytranslate_): Handle the EOF case.
1244 Adjust callers.
1245 No longer expect yychar to be equal to yyeof_, rather, test the
1246 lookahead's (translated) kind.
1247
1248 2008-11-11 Akim Demaille <demaille@gostai.com>
1249
1250 yychar cannot be empty in yyerrlab.
1251 * TODO (yychar == yyempty_): New.
1252 * data/lalr1.cc: Remove the handling of this case.
1253 This eases forthcoming changes related to yychar and yytranslate.
1254
1255 2008-11-11 Akim Demaille <demaille@gostai.com>
1256
1257 Bench: syntactic sugar for %define/#define.
1258 * etc/bench.pl.in (parse_dirs): Support %d and #d with arguments.
1259 (&bench_push_parser, bench_variant_parser): Use this feature.
1260 (&eat): New.
1261 Use it.
1262
1263 2008-11-11 Akim Demaille <demaille@gostai.com>
1264
1265 Less memory pressure on the "list" bench.
1266 * etc/bench.pl.in (generate_grammar_list): Do not accumulate all
1267 the values, to limit memory pressure.
1268
1269 2008-11-11 Akim Demaille <demaille@gostai.com>
1270
1271 Introduce make_symbol.
1272 make_symbol provides a means to construct a full symbol (kind,
1273 value, location) in a single shot. It is meant to be a Symbol
1274 constructor, parameterized by the symbol kind so that overloading
1275 would prevent incorrect kind/value pairs. Unfortunately
1276 parameterized constructors do not work well in C++ (unless the
1277 parameter also appears as an argument, which is not acceptable),
1278 hence the use of a function instead of a constructor.
1279
1280 * data/lalr1.cc (b4_symbol_constructor_declaration_)
1281 (b4_symbol_constructor_declarations)
1282 (b4_symbol_constructor_specialization_)
1283 (b4_symbol_constructor_specializations)
1284 (b4_symbol_constructor_definition_)
1285 (b4_symbol_constructor_definitions): New.
1286 Use them where appropriate to generate declaration, declaration of
1287 the specializations, and implementations of the templated
1288 overloaded function "make_symbol".
1289 (variant::variant): Always define a default ctor.
1290 Also provide a copy ctor.
1291 (symbol_base_type, symbol_type): New ctor overloads for value-less
1292 symbols.
1293 (symbol_type): Now public, so that functions such as yylex can use
1294 it.
1295
1296 2008-11-11 Akim Demaille <demaille@gostai.com>
1297
1298 Inform m4 whether a tag is a valid id.
1299 * src/output.c (is_identifier): New.
1300 (symbol_definitions_output): Use it to define tag_is_id.
1301 But maybe this should be done at m4 level?
1302
1303 2008-11-11 Akim Demaille <demaille@gostai.com>
1304
1305 Test 214 was failing: it greps with a pattern containing [ ]*
1306 which obviously meant to catch spaces and tabs, but contained only
1307 spaces. Tabulations in sources are a nuisance, so to simplify the
1308 matter, get rid of all the tabulations in the Java sources. The
1309 other skeletons will be treated equally later.
1310
1311 * data/java.m4, data/lalr1.java: Untabify.
1312 * tests/java.at: Simplify AT_CHECK_JAVA_GREP invocations:
1313 tabulations are no longer generated.
1314
1315 2008-11-11 Paolo Bonzini <bonzini@gnu.org>
1316
1317 * bootstrap.conf: Replace m4/warning.m4 with warnings module.
1318 * configure.ac: Adjust usage.
1319 * lib/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
1320 * src/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
1321 * tests/atlocal.in: Replace $(WARNING_*FLAGS) with $(WARN_*FLAGS).
1322
1323 2008-11-10 Di-an Jan <dianj@freeshell.org>
1324
1325 Workaround Java's ``code too large'' problem for parser tables
1326 in most cases, by using one function per initialization.
1327 * data/java.m4 (b4_typed_parser_table, b4_integral_parser_table): New.
1328 * data/lalr1.java (yypact_, yydefact_, yypgoto_, yydefgoto_,
1329 yytable_, yycheck_, yystos_, yytoken_number_, yyr1_, yyr2_, yyrhs_
1330 yyprhs_, yyrline_, yytranslate_table_): Use b4_integral_parser_table.
1331 (yytname_): Use b4_typed_parser_table.
1332 * doc/bison.texinfo (Java Bison Interface): Add note on Java's
1333 ``code too large'' error.
1334
1335 2008-11-10 Di-an Jan <dianj@freeshell.org>
1336
1337 * NEWS: Document them.
1338
1339 General Java skeleton improvements.
1340 * configure.ac (gt_JAVACOMP): Request target of 1.4, which allows
1341 using gcj < 4.3 in the testsuite, according to comments in
1342 gnulib/m4/javacomp.m4.
1343 * data/java.m4 (stype, parser_class_name, lex_throws, throws,
1344 location_type, position_type): Remove extraneous brackets from
1345 b4_percent_define_default.
1346 (b4_lex_param, b4_parse_param): Remove extraneous brackets from
1347 m4_define and m4_define_default.
1348 * data/lalr1.java (b4_pre_prologue): Change to b4_user_post_prologue,
1349 which marks the end of user code with appropriate syncline, like all
1350 the other skeletons.
1351 (b4_user_post_prologue): Add. Don't silently drop.
1352 (yylex): Remove.
1353 (parse): Inline yylex.
1354 * doc/bison.texinfo (bisonVersion, bisonSkeleton): Document.
1355 (%{...%}): Fix typo of %code imports.
1356 * tests/java.at (AT_JAVA_COMPILE): Add "java" keyword.
1357
1358 Support annotations on parser class with %define annotations.
1359 * data/lalr1.java (annotations): Add to parser class modifier.
1360 * doc/bison.texinfo (Java Parser Interface): Document
1361 %define annotations.
1362 (Java Declarations Summary): Document %define annotations.
1363 * tests/java.at (Java parser class modifiers): Test annotations.
1364
1365 Do not generate code for %error-verbose unless requested.
1366 * data/lalr1.java (errorVerbose): Rename to yyErrorVerbose.
1367 Make private. Make conditional on %error-verbose.
1368 (getErrorVerbose, setErrorVerbose): New.
1369 (yytnamerr_): Make conditional on %error-verbose.
1370 (yysyntax_error): Make some code conditional on %error-verbose.
1371 * doc/bison.texinfo (Java Bison Interface): Remove the parts
1372 about %error-verbose having no effect.
1373 (getErrorVerbose, setErrorVerbose): Document.
1374
1375 Move constants for token names to Lexer interface.
1376 * data/lalr1.java (Lexer): Move EOF, b4_token_enums(b4_tokens) here.
1377 * data/java.m4 (b4_token_enum): Indent for move to Lexer interface.
1378 (parse): Qualify EOF to Lexer.EOF.
1379 * doc/bison.texinfo (Java Parser Interface): Move documentation of
1380 EOF and token names to Java Lexer Interface.
1381 * tests/java.at (_AT_DATA_JAVA_CALC_Y): Remove Calc qualifier.
1382
1383 Make yyerror public.
1384 * data/lalr1.java (Lexer.yyerror): Use longer parameter name.
1385 (yyerror): Change to public. Add Javadoc comments. Use longer
1386 parameter names. Make the body rather than the declarator
1387 conditional on %locations.
1388 * doc/bison.texinfo (yyerror): Document. Don't mark as protected.
1389
1390 Allow user to add code to the constructor with %code init.
1391 * data/java.m4 (b4_init_throws): New, for %define init_throws.
1392 * data/lalr1.java (YYParser.YYParser): Add b4_init_throws.
1393 Add %code init to the front of the constructor body.
1394 * doc/bison.texinfo (YYParser.YYParser): Document %code init
1395 and %define init_throws.
1396 (Java Declarations Summary): Document %code init and
1397 %define init_throws.
1398 * tests/java.at (Java %parse-param and %lex-param): Adjust grep.
1399 (Java constructor init and init_throws): Add tests.
1400
1401 2008-11-10 Akim Demaille <demaille@gostai.com>
1402
1403 Update TODO.
1404 * TODO (-D): is implemented.
1405 (associativity): Same precedence must have the same associativity.
1406 For instance, how can a * b / c be parsed if * is %left and / is
1407 %right?
1408 (YYERRORCODE, YYFAIL, YYBACKUP): New.
1409
1410 2008-11-10 Akim Demaille <demaille@gostai.com>
1411
1412 Formatting changes.
1413
1414 2008-11-10 Akim Demaille <demaille@gostai.com>
1415
1416 More information about the symbols.
1417 * src/output.c (type_names_output): Document all the symbols,
1418 including those that don't have a type-name.
1419 (symbol_definitions_output): Define "is_token" and
1420 "has_type_name".
1421 * data/lalr1.cc (b4_type_action_): Skip symbols that have an empty
1422 type-name, now that they are defined too in b4_type_names.
1423
1424 2008-11-10 Akim Demaille <demaille@gostai.com>
1425
1426 Regen.
1427
1428 2008-11-10 Akim Demaille <demaille@gostai.com>
1429
1430 Make parser::yytranslate static.
1431 Small speedup (1%) on the list grammar. And makes yytranslate_
1432 available in non member functions.
1433
1434 * data/lalr1.cc (yytranslate_): Does not need to be a instance
1435 function.
1436
1437 2008-11-10 Akim Demaille <demaille@gostai.com>
1438
1439 Avoid trailing spaces.
1440 * data/c.m4: b4_comment(TEXT): Don't indent empty lines.
1441 * data/lalr1.cc: Don't indent before rule and symbol actions, as
1442 they can be empty, and anyway this incorrectly indents the first
1443 action.
1444
1445 2008-11-10 Akim Demaille <demaille@gostai.com>
1446
1447 Comment changes.
1448
1449 2008-11-10 Akim Demaille <demaille@gostai.com>
1450
1451 Use "enum" for integral constants.
1452 This is just nicer to read, I observed no speedup.
1453
1454 * data/lalr1.cc (yyeof_, yylast_, yynnts_, yyempty_, yyfinal_)
1455 (yterror_, yyerrcode_, yyntokens_): Define as members of an enum.
1456 (yyuser_token_number_max_, yyundef_token_): Move into...
1457 (yytranslate_): here.
1458
1459 2008-11-10 Akim Demaille <demaille@gostai.com>
1460
1461 Shortcuts in bench directives.
1462 * etc/bench.pl.in (parse_dirs): New.
1463 Use it.
1464 (bench_variant_parser, bench_fusion_parser): Use %s and %d.
1465 Create the benches in "benches/".
1466
1467 2008-11-10 Akim Demaille <demaille@gostai.com>
1468
1469 Formatting changes.
1470 * data/lalr1.cc: here.
1471
1472 2008-11-10 Akim Demaille <demaille@gostai.com>
1473
1474 Adjust verbose message to using emacs.
1475 * etc/bench.pl.in: Inform compilation-mode when we change the
1476 directory.
1477 (generate_grammar_list): Recognize %define "variant" in addition
1478 to %define variant.
1479
1480 2008-11-10 Akim Demaille <demaille@gostai.com>
1481
1482 Classify symbols by type-name.
1483 * src/uniqstr.h (UNIQSTR_CMP): New.
1484 * src/output.c (symbol_type_name_cmp, symbols_by_type_name)
1485 (type_names_output): New.
1486 (muscles_output): Use it.
1487 * data/lalr1.cc (b4_symbol_action_): Remove.
1488 (b4_symbol_case_, b4_type_action_): New.
1489 Adjust uses of b4_symbol_action_ to use b4_type_action_.
1490
1491 2008-11-10 Akim Demaille <demaille@gostai.com>
1492
1493 Change the handling of the symbols in the skeletons.
1494 Before we were using tables which lines were the symbols and which
1495 columns were things like number, tag, type-name etc. It is was
1496 difficult to extend: each time a column was added, all the numbers had
1497 to be updated (you asked for colon $2, not for "tag"). Also, it was
1498 hard to filter these tables when only a subset of the symbols (say the
1499 tokens, or the nterms, or the tokens that have and external number
1500 *and* a type-name) was of interest.
1501
1502 Now instead of monolithic tables, we define one macro per cell. For
1503 instance "b4_symbol(0, tag)" is a macro name which contents is
1504 self-decriptive. The macro "b4_symbol" provides easier access to
1505 these cells.
1506
1507 * src/output.c (type_names_output): Remove.
1508 (symbol_numbers_output, symbol_definitions_output): New.
1509 (muscles_output): Call them.
1510 (prepare_symbols): Define b4_symbols_number.
1511
1512 2008-11-10 Akim Demaille <demaille@gostai.com>
1513
1514 --trace=muscles
1515 * src/getargs.h, src/getargs.c (trace_muscle): New.
1516 (trace_types, trace_args): Support it.
1517 * src/output.c (output_skeleton): Use it.
1518
1519 2008-11-10 Akim Demaille <demaille@gostai.com>
1520
1521 muscles_output.
1522 * src/output.c (muscles_output): New, extracted from...
1523 (output_skeleton): here.
1524 Adjust.
1525
1526 2008-11-10 Akim Demaille <demaille@gostai.com>
1527
1528 Formatting changes.
1529
1530 2008-11-10 Akim Demaille <demaille@gostai.com>
1531
1532 Update the variant example.
1533 * examples/variant.yy: Formatting changes.
1534 One stage build.
1535
1536 2008-11-10 Akim Demaille <demaille@gostai.com>
1537
1538 Support constructor with an argument.
1539 This improves the "list" bench by 2%.
1540
1541 * data/lalr1.cc (variant::build): Add an overloaded version with
1542 an argument.
1543 * tests/c++.at (AT_CHECK_VARIANT): Check it.
1544
1545 2008-11-10 Akim Demaille <demaille@gostai.com>
1546
1547 Test variants.
1548 * tests/c++.at (AT_CHECK_VARIANTS): New.
1549 Use it with and without %define assert.
1550
1551 2008-11-10 Akim Demaille <demaille@gostai.com>
1552
1553 Add %precedence support.
1554 Unfortunately it is not possible to reuse the %prec directive. This
1555 is because to please POSIX, we do not require to end the rules with a
1556 semicolon. As a result,
1557
1558 foo: bar %prec baz
1559
1560 is ambiguous: either a rule which precedence is that of baz, or a rule,
1561 and then a declaration of the precedence of the token baz.
1562
1563 * doc/bison.texinfo: Document %precedence.
1564 (Precedence Only): New.
1565 * src/assoc.h, src/assoc.c (precedence_assoc): New.
1566 * src/conflicts.c (resolve_sr_conflict): Support it.
1567 * src/scan-gram.l, src/parse-gram.y (%precedence): New token.
1568 Parse it.
1569 * tests/calc.at: Use %precedence for NEG.
1570 * tests/conflicts.at (%precedence does not suffice)
1571 (%precedence suffices): New tests.
1572
1573 2008-11-09 Akim Demaille <demaille@gostai.com>
1574
1575 Make benches in a sub dirs.
1576 * etc/bench.pl.in ($dir): New.
1577 Use it.
1578 Check the use of constructors with an argument.
1579 (bench_variant_parser): Fix.
1580
1581 2008-11-09 Akim Demaille <demaille@gostai.com>
1582
1583 fix eof condition
1584
1585 2008-11-09 Akim Demaille <demaille@gostai.com>
1586
1587 Fix --help.
1588
1589 2008-11-09 Akim Demaille <demaille@gostai.com>
1590
1591 Require the generation of parse-gram.output.
1592 * src/Makefile.am (YACC): Pass --report=all.
1593
1594 2008-11-09 Akim Demaille <demaille@gostai.com>
1595
1596 Formatting changes.
1597
1598 2008-11-09 Akim Demaille <demaille@gostai.com>
1599
1600 Update TODO.
1601 * TODO: Remove obsolete items.
1602 Update others.
1603
1604 2008-11-09 Akim Demaille <demaille@gostai.com>
1605
1606 Enhance bench.pl.
1607 * etc/bench.pl.in (parse, parse_expr, parse_term, parse_fact)
1608 (@token, $grammar, $bench): New.
1609 (generate_grammar_variant): Rename as...
1610 (generate_grammar_list): this.
1611 (generate_grammar): Adjust.
1612 (bench_grammar): Rename as...
1613 (bench): this.
1614 Use it in the various bench-marking routines.
1615 (-b, -g): New options.
1616
1617 2008-11-09 Akim Demaille <demaille@gostai.com>
1618
1619 Use a static hierarchy for symbols in the C++ parser.
1620 * data/lalr1.cc (symbol_base_type, symbol_type)
1621 (stack_symbol_type): Make it a static hierarchy.
1622 Adjust dependencies.
1623
1624 2008-11-09 Akim Demaille <demaille@gostai.com>
1625
1626 bench.pl -d, --directive.
1627 * etc/bench.pl.in (@directive): New.
1628 (&bench_grammar): Use it.
1629 (&bench_list_grammar): New, to provide access to the "variant"
1630 grammar.
1631 Use it.
1632 (getopts): Support -d, --directive.
1633
1634 2008-11-09 Akim Demaille <demaille@gostai.com>
1635
1636 Use inline for small operations.
1637 * data/lalr1.cc (symbol_base_type, symbol_type)
1638 (stack_symbol_type): Declare constructor and other operations as
1639 inline.
1640 (yy_destroy_): Inline.
1641
1642 2008-11-09 Akim Demaille <demaille@gostai.com>
1643
1644 Introduce a hierarchy for symbols.
1645 * data/lalr1.cc (symbol_base_type, symbol_type): New.
1646 (data_type): Rename as...
1647 (stack_symbol_type): this.
1648 Derive from symbol_base_type.
1649 (yy_symbol_value_print_): Merge into...
1650 (yy_symbol_print_): this.
1651 Rename as...
1652 (yy_print_): this.
1653 (yydestruct_): Rename as...
1654 (yy_destroy_): this.
1655 (b4_symbols_actions, YY_SYMBOL_PRINT): Adjust.
1656 (parser::parse): yyla is now of symbol_type.
1657 Use its type member instead of yytoken.
1658
1659 2008-11-09 Akim Demaille <demaille@gostai.com>
1660
1661 Rename data_type and stack_symbol_type.
1662 * data/lalr1.cc (data_type): Rename as...
1663 (stack_symbol_type): this.
1664
1665 2008-11-09 Akim Demaille <demaille@gostai.com>
1666
1667 Handle semantic value and location together.
1668 * data/lalr1.cc (b4_symbol_actions): Bounce $$ and @$ to
1669 yydata.value and yydata.location.
1670 (yy_symbol_value_print_, yy_symbol_print_, yydestruct_)
1671 (YY_SYMBOL_PRINT): Now take semantic value and location as a
1672 single arg.
1673 Adjust all callers.
1674 (yydestruct_): New overload for a stack symbol.
1675
1676 2008-11-09 Akim Demaille <demaille@gostai.com>
1677
1678 Push a complete symbol, not connected parts.
1679 * data/lalr1.cc (yypush_): Take a data_type&, not disconnected
1680 state, value and location.
1681 Adjust callers.
1682
1683 2008-11-09 Akim Demaille <demaille@gostai.com>
1684
1685 Agregate yylval and yylloc.
1686 * data/lalr1.cc (parser::yylval, parser::yylloc): Replace by...
1687 (parser::yyla): this.
1688
1689 2008-11-09 Akim Demaille <demaille@gostai.com>
1690
1691 Rely on the state stack to display reduction traces.
1692 To display rhs symbols before a reduction, we used information
1693 about the rule reduced, which required the tables yyrhs and
1694 yyprhs. Now use rely only on the state stack to get the same
1695 information.
1696
1697 * data/lalr1.cc (b4_rhs_data, b4_rhs_state): New.
1698 Use them.
1699 (parser::yyrhs_, parser::yyprhs_): Remove.
1700 (parser::yy_reduce_print_): Use the state stack.
1701
1702 2008-11-09 Akim Demaille <demaille@gostai.com>
1703
1704 Fuse yyval and yyloc into yylhs.
1705 * data/lalr1.cc (b4_lhs_value, b4_lhs_location): Adjust to using
1706 yylhs.
1707 (parse): Replace yyval and yyloc with yylhs.value and
1708 yylhs.location.
1709 After a user action, compute yylhs.state earlier.
1710 (yyerrlab1): Do not play tricks with yylhs.location, rather, use a
1711 fresh error_token.
1712
1713 2008-11-09 Di-an Jan <dianj@freeshell.org>
1714
1715 Remove unused variable.
1716 * src/output.c (type_names_output): Remove unused variable sep.
1717
1718 2008-11-09 Paolo Bonzini <bonzini@gnu.org>
1719
1720 Change tests/output.at quoting.
1721 * tests/output.at (AT_CHECK_OUTPUT): Use conventional m4 quoting when
1722 expanding arguments.
1723
1724 2008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
1725
1726 Don't add a semicolon to actions for %skeleton or %language.
1727 It breaks Java test cases as reported by Akim Demaille.
1728 * src/scan-code.l: Implement.
1729
1730 2008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
1731
1732 Clean up %skeleton and %language priority implementation.
1733 * src/getargs.c (skeleton_prio): Use default_prio rather than 2, and
1734 remove static qualifier because others will soon need to see it.
1735 (language_prio): Likewise.
1736 (getargs): Use command_line_prio rather than 0.
1737 * src/getargs.h (command_line_prio, grammar_prio, default_prio): New
1738 enum fields.
1739 (skeleton_prio): Extern it.
1740 (language_prio): Extern it.
1741 * src/parse-gram.y: Use grammar_prio rather than 1.
1742
1743 2008-11-07 Akim Demaille <demaille@gostai.com>
1744
1745 Moving push traces into yypush_.
1746 * data/lalr1.cc (yypush_): Now takes a optional trace message.
1747 Adjust all uses.
1748
1749 2008-11-07 Akim Demaille <demaille@gostai.com>
1750
1751 The single-stack C++ parser is now the standard one.
1752 * data/lalr1.cc: Rename as...
1753 * data/lalr1-split.cc: this.
1754 * data/lalr1-fusion.cc: Rename as...
1755 * data/lalr1.cc: this.
1756 * etc/bench.pl.in: Adjust.
1757
1758 2008-11-07 Akim Demaille <demaille@gostai.com>
1759
1760 Avoid empty-if warnings.
1761 Reported by Quentin Hocquet.
1762
1763 * data/lalr1-fusion.cc (YY_SYMBOL_PRINT, YY_REDUCE_PRINT)
1764 (YY_STACK_PRINT): Provide some contents even when !YYDEBUG.
1765
1766 2008-11-07 Akim Demaille <demaille@gostai.com>
1767
1768 Pass command line location to skeleton_arg and language_argmatch.
1769 * src/getargs.h, src/getargs.c (skeleton_arg, language_argmatch):
1770 The location argument is now mandatory.
1771 Adjust all dependencies.
1772 (getargs): Use command_line_location.
1773
1774 2008-11-07 Akim Demaille <demaille@gostai.com>
1775
1776 -D, --define.
1777 * src/getargs.c (usage): Document -D.
1778 Fix help string for --locations.
1779 (command_line_location): New.
1780 (short_options, long_options, getargs): Support -D, --define.
1781 (getargs): Move -d support at the right place.
1782 * doc/bison.texinfo (Bison Options): Update.
1783 * tests/input.at (%define, --define): New.
1784
1785 2008-11-07 Akim Demaille <demaille@gostai.com>
1786
1787 Initialize the muscle table before parsing the command line.
1788 * src/getargs.c (quotearg.h, muscle_tab.h): Include.
1789 (getargs): Define file_name.
1790 * src/main.c (main): Initialize muscle_tab before calling
1791 getargs.
1792 * src/muscle_tab.c (muscle_init): No longer define file_name, as
1793 its value is not available yet.
1794
1795 2008-11-07 Akim Demaille <demaille@gostai.com>
1796
1797 Locations without columns for command line arguments.
1798 * src/location.c (location_print): Don't display negative columns.
1799 * src/location.h: Document this.
1800
1801 2008-11-07 Akim Demaille <demaille@gostai.com>
1802
1803 Fix --help.
1804 * src/getargs.c (usage): Fix help string for -W.
1805
1806 2008-11-07 Akim Demaille <demaille@gostai.com>
1807
1808 Handle more general types of option arguments.
1809 * build-aux/cross-options.pl: The argument ends at the first
1810 space, not the first non-symbol character.
1811 Use @var for each word appearing the argument description.
1812
1813 2008-11-07 Akim Demaille <demaille@gostai.com>
1814
1815 Destroy the variants that remain on the stack in case of error.
1816 * data/lalr1-fusion.cc (yydestruct_): Invoke the variant's
1817 destructor.
1818 Display the value only if yymsg is nonnull.
1819 (yyreduce): Invoke yydestruct_ when popping lhs symbols.
1820
1821 2008-11-07 Akim Demaille <demaille@gostai.com>
1822
1823 Add "%define assert" to variants.
1824 This is used to help the user catch cases where some value gets
1825 ovewritten by a new one. This should not happen, as this will
1826 probably leak.
1827
1828 Unfortunately this uncovered a bug in the C++ parser itself: the
1829 lookahead value was not destroyed between two calls to yylex. For
1830 instance if the previous lookahead was a std::string, and then an int,
1831 then the value of the std::string was correctly taken (i.e., the
1832 lookahead was now an empty string), but std::string structure itself
1833 was not reclaimed.
1834
1835 This is now done in variant::build(other&) (which is used to take the
1836 value of the lookahead): other is not only stolen from its value, it
1837 is also destroyed. This incurs a new performance penalty of a few
1838 percent, and union becomes faster again.
1839
1840 * data/lalr1-fusion.cc (variant::build(other&)): Destroy other.
1841 (b4_variant_if): New.
1842 (variant::built): New.
1843 Use it whereever the status of the variant changes.
1844 * etc/bench.pl.in: Check the penalty of %define assert.
1845
1846 2008-11-07 Akim Demaille <demaille@gostai.com>
1847
1848 Use "%define variant" in bench.pl.
1849 * etc/bench.pl.in: No longer use the pseudo directive %variants,
1850 just use %define variants.
1851
1852 2008-11-07 Akim Demaille <demaille@gostai.com>
1853
1854 Regen.
1855 * src/parse-gram.h, src/parse-gram.c: Regen.
1856
1857 2008-11-04 Joel E. Denny <jdenny@ces.clemson.edu>
1858
1859 Fix user actions without a trailing semicolon.
1860 Reported by Sergei Steshenko at
1861 <http://lists.gnu.org/archive/html/bug-bison/2008-11/msg00001.html>.
1862 * THANKS (Sergei Steshenko): Add.
1863 * src/scan-code.l (SC_RULE_ACTION): Fix it.
1864 * tests/regression.at (Fix user actions without a trailing semicolon):
1865 New test case.
1866
1867 2008-11-04 Akim Demaille <demaille@gostai.com>
1868
1869 Use b4_copyright_years.
1870 * data/yacc.c (b4_copyright_years): New.
1871 Fix its value according to the comments in the file.
1872 Use it and undefine it.
1873
1874 2008-11-04 Akim Demaille <demaille@gostai.com>
1875
1876 Formatting changes.
1877 * data/lalr1-fusion.cc, src/parse-gram.y: here.
1878
1879 2008-11-04 Akim Demaille <demaille@gostai.com>
1880
1881 Formatting changes.
1882 * data/lalr1-fusion.cc: here.
1883
1884 2008-11-04 Akim Demaille <demaille@gostai.com>
1885
1886 Use strict on bench.pl.
1887 * etc/bench.pl.in (&run, &generate_grammar): New.
1888 Rename the grammar generating functions for consistency.
1889 Change the interface so that the list of benches to run is passed
1890 as (optionless) arguments.
1891 (&compile): Use &run.
1892
1893 2008-11-04 Akim Demaille <demaille@gostai.com>
1894
1895 Remove spurious initial empty lines.
1896 * data/glr.c, data/glr.cc, data/lalr1.cc, data/lalr1.java,
1897 * data/yacc.c: End the @output lines with an @.
1898
1899 2008-11-04 Akim Demaille <demaille@gostai.com>
1900
1901 Improve the display of sizes.
1902 * etc/bench.p.in: Higher precision.
1903 Sort by decreasing size.
1904
1905 2008-11-04 Akim Demaille <demaille@gostai.com>
1906
1907 Don't memcpy C++ structures.
1908 * data/lalr1-fusion.cc (b4_symbol_variant): Adjust additional
1909 arguments.
1910 (variant::build): New overload for
1911 copy-construction-that-destroys.
1912 (variant::swap): New.
1913 (parser::yypush_): Use it in variant mode.
1914
1915 2008-11-04 Akim Demaille <demaille@gostai.com>
1916
1917 Better defaults for bench.pl.
1918 * etc/bench.pl.in ($verbose, $cflags, $iterations): Change the
1919 default values.
1920 Adjust &verbose uses.
1921 (-q, --quiet): New.
1922
1923 2008-11-04 Akim Demaille <demaille@gostai.com>
1924
1925 Make variant.yy more complex.
1926 std::list cannot be copied via memcpy, they are more demanding than
1927 std::string. Use one std::list to strengthen the test.
1928
1929 * examples/variant.yy: Use lalr1-fusion.cc, not lalr1.cc.
1930 Adjust.
1931 Create a list of strings, instead of a single large string.
1932
1933 2008-11-04 Akim Demaille <demaille@gostai.com>
1934
1935 bench.pl --bench.
1936 * etc/bench.pl.in (--bench, $bench): New.
1937
1938 2008-11-04 Akim Demaille <demaille@gostai.com>
1939
1940 Sort methods.
1941 * data/lalr1-fusion.cc (destroy): Use as() in its definition.
1942 Define it after as().
1943
1944 2008-11-04 Akim Demaille <demaille@gostai.com>
1945
1946 Useless parens.
1947 * data/lalr1-fusion.cc (b4_rhs_location): Remove useless parens.
1948
1949 2008-11-04 Akim Demaille <demaille@gostai.com>
1950
1951 Issue missing synclines after user actions.
1952 * data/c.m4 (b4_case): Issue synclines on the output file.
1953
1954 2008-11-04 Akim Demaille <demaille@gostai.com>
1955
1956 Remove trailing empty line.
1957 * data/lalr1-fusion.cc: Don't add an empty line after the user's
1958 epilogue.
1959
1960 2008-11-04 Akim Demaille <demaille@gostai.com>
1961
1962 Fix output of copyright years.
1963 * data/bison.m4 (b4_copyright): Fix the indentation of the
1964 copyright year paragraph.
1965 Use b4_copyright_years when no years are given.
1966 * data/lalr1.cc, data/lalr1-fusion.cc, data/location.cc
1967 (b4_copyright_years): New.
1968 Use it.
1969
1970 2008-11-04 Akim Demaille <demaille@gostai.com>
1971
1972 Avoid the spurious initial empty line.
1973 * data/lalr1-fusion.cc, data/location.cc: Put a trailing "@" at
1974 the end of @output request to suppress the empty line that
1975 results.
1976
1977 2008-11-04 Akim Demaille <demaille@gostai.com>
1978
1979 Remove parser::rhs_number_type.
1980 * data/lalr1-fusion.cc (rhs_number_type): No longer define it.
1981 (yyrhs_): Use b4_table_define.
1982
1983 2008-11-04 Akim Demaille <demaille@gostai.com>
1984
1985 Fix iteration type.
1986 * data/lalr1-fusion.cc: Use an int to iterate up to an int.
1987
1988 2008-11-04 Akim Demaille <demaille@gostai.com>
1989
1990 Factor the declaration of the integer tables.
1991 * data/lalr1-fusion.cc (b4_table_define): New.
1992 Use it.
1993
1994 2008-11-03 Akim Demaille <demaille@gostai.com>
1995
1996 Fix indentation of tables in lalr1.cc
1997 * data/lalr1-fusion.cc: Fix the indentation.
1998
1999 2008-11-03 Akim Demaille <demaille@gostai.com>
2000
2001 Destroy the lhs symbols after reduction.
2002 * data/lalr1-fusion.cc (parse): After the user action, when in
2003 variant mode, destroy the lhs symbols.
2004
2005 2008-11-03 Akim Demaille <demaille@gostai.com>
2006
2007 Simplify yysyntax_error_ use.
2008 * data/lalr1-fusion.cc (yysyntax_error_): Always pass it the token
2009 type, but make it unnamed in the declaration when it is not used.
2010
2011 2008-11-03 Akim Demaille <demaille@gostai.com>
2012
2013 Let yy::variant::build return an lvalue.
2014 * data/lalr1-fusion.cc (variant::build): Return a reference to the
2015 object.
2016
2017 2008-11-03 Akim Demaille <demaille@gostai.com>
2018
2019 Define yy::variant only when needed.
2020 * data/lalr1-fusion.cc (yy::variant): Define only if variants are
2021 used.
2022
2023 2008-11-03 Akim Demaille <demaille@gostai.com>
2024
2025 Bench the three-stack lalr1.cc.
2026 * etc/bench.pl.in: Bench the three-stack lalr1.cc vs. the
2027 one-stack one.
2028
2029 2008-11-03 Akim Demaille <demaille@gostai.com>
2030
2031 Fail on parse error in calc++.
2032 * doc/bison.texinfo (calc++.cc): Propagate failures to the exit
2033 status.
2034 * examples/calc++/test ($me, $number, $exit, run): New.
2035 Use them to propagate errors to the exit status.
2036
2037 2008-11-03 Akim Demaille <demaille@gostai.com>
2038
2039 Don't specify the skeleton twice in the example.
2040 * examples/calc++/Makefile.am: Don't pass -S to Bison, the grammar
2041 file does what is needed.
2042
2043 2008-11-03 Akim Demaille <demaille@gostai.com>
2044
2045 bench: Improve output.
2046 * etc/bench.pl.in (bench_grammar): Tune the printf format.
2047
2048 2008-11-03 Akim Demaille <demaille@gostai.com>
2049
2050 bench: check impact of %debug on variants.
2051 * etc/bench.pl.in (variant_grammar): Fix the computation of
2052 $variant.
2053 Generate a grammar file that can work with or without %debug.
2054 Do use the @directive.
2055 (bench_variant_parser): Check impact of %debug.
2056 (@directives): Rename all the occurrences to...
2057 (@directive): this, for consistency.
2058
2059 2008-11-03 Akim Demaille <demaille@gostai.com>
2060
2061 bench: report the size too.
2062 * etc/bench.pl.in ($iterations): Defaults to -3.
2063 (&bench_grammar): Require hireswallclock.
2064 Compute and display the size of the result.
2065 More comments.
2066
2067 2008-11-03 Akim Demaille <demaille@gostai.com>
2068
2069 bench: More use of the verbosity level.
2070 * etc/bench.pl.in ($verbose, &verbose): New.
2071 Use them.
2072 More POD documentation.
2073
2074 2008-11-03 Akim Demaille <demaille@gostai.com>
2075
2076 bench.pl: a command line interface
2077 * etc/bench.pl.in: More doc.
2078 Some fixes in the documentation.
2079 ($cflags, $iterations, &help, &getopt): New.
2080 Use them.
2081 (&variant_grammar): Let the number of stages be 10 times what is
2082 specified.
2083
2084 2008-11-03 Akim Demaille <demaille@gostai.com>
2085
2086 Bench the use of Boost.Variants.
2087 * etc/bench.pl.in ($cxx, &variant_grammar, &bench_variant_parser):
2088 New.
2089 (&compile): Be ready to compile C++ parsers.
2090 (&bench_push_parser): Move debug information to the outermost
2091 level.
2092 * THANKS: Add Michiel De Wilde.
2093
2094 2008-11-03 Akim Demaille <demaille@gostai.com>
2095
2096 bench.pl: Pass directives as a list instead of as a string.
2097 * etc/bench.pl.in (&directives): New.
2098 (&triangular_grammar, &calc_grammar): Use it to format the Bison
2099 directives.
2100 (&triangular_grammar): Do use the directives (were ignored).
2101 (&bench_grammar, &bench_push_parser): Adjust to pass lists of
2102 directives.
2103
2104 2008-11-03 Akim Demaille <demaille@gostai.com>
2105
2106 Improve genericity of bench.pl.
2107 * etc/bench.pl.in (&bench_grammar): Take the set of benches as
2108 argument.
2109 (&bench_push_parser): New.
2110 Call it.
2111
2112 2008-11-03 Akim Demaille <demaille@gostai.com>
2113
2114 Add documentation to bench.pl.
2115 * etc/bench.pl.in: Comment changes.
2116
2117 2008-11-03 Akim Demaille <demaille@gostai.com>
2118
2119 Fuse the three stacks into a single one.
2120
2121 In order to make it easy to perform benchmarks to ensure that
2122 there are no performance loss, lalr1.cc is forked into
2123 lalr1-fusion.cc. Eventually, lalr1-fusion.cc will replace
2124 lalr1.cc.
2125
2126 Meanwhile, to make sure that lalr1-fusion.cc is correctly
2127 exercized by the test suite, the user must install a symbolic link
2128 from lalr1.cc to it.
2129
2130 Instead of having three stacks (state, value, location), use a
2131 stack of triples. This considerably simplifies the code (and it
2132 will be easier not to require locations as currently does the C++
2133 parser), and also gives a 10% speedup according to
2134 etc/bench (probably mainly since memory allocation is done once
2135 instead of three times).
2136
2137 Another motivation is to make it easier to destruct properly
2138 semantic values: now that they are bound to their state (hence
2139 symbol type) it will be easier to call the appropriate destructor.
2140
2141 These changes should probably benefit the C parser too.
2142
2143 * data/lalr1.cc: Copy as...
2144 * data/lalr1-fusion.cc: this new file.
2145 (b4_rhs_value, b4_rhs_location): New definitions overriding those
2146 from c++.m4.
2147 (state_stack_type, semantic_stack_type, location_stack_type)
2148 (yystate_stack_, yysemantic_stack_, yylocation_stack_): Remove.
2149 (data_type, stack_type, yystack_): New.
2150 (YYLLOC_DEFAULT, yypush_): Adjust.
2151 (yyerror_range): Now based on data_type, not location_type.
2152
2153 2008-11-03 Akim Demaille <demaille@gostai.com>
2154
2155 Push the state, value, and location at the same time.
2156 This is needed to prepare a forthcoming patch that fuses the three
2157 stacks into one.
2158
2159 * data/lalr1.cc (parser::yypush_): New.
2160 (parser::yynewstate): Change the semantics: instead of arriving to
2161 this label when value and location have been pushed, but yystate
2162 is to be pushed on the state stack, now the three of them must
2163 have been pushed before. yystate still must be the new state.
2164 This allows to use yypush_ everywhere instead of individual
2165 handling of the stacks.
2166
2167 2008-11-03 Akim Demaille <demaille@gostai.com>
2168
2169 Prefer references to pointers.
2170 * data/lalr1.cc (b4_symbol_actions): New, overrides the default C
2171 definition to use references instead of pointers.
2172 (yy_symbol_value_print_, yy_symbol_print_, yydestruct_):
2173 Take the value and location as references.
2174 Adjust callers.
2175
2176 2008-11-03 Akim Demaille <demaille@gostai.com>
2177
2178 stack::size instead of stack::height.
2179 * data/lalr1.cc (stack::height): Rename as...
2180 (stack::size): this.
2181 Fix the output type.
2182 Comment changes.
2183
2184 2008-11-03 Akim Demaille <demaille@gostai.com>
2185
2186 Use variants to support objects as semantic values.
2187 This patch was inspired by work by Michiel De Wilde. But he used
2188 Boost variants which (i) requires Boost on the user side, (ii) is
2189 slow, and (iii) has useless overhead (the parser knows the type of
2190 the semantic value there is no reason to duplicate this
2191 information as Boost.Variants do).
2192
2193 This implementation reserves a buffer large enough to store the
2194 largest objects. yy::variant implements this buffer. It was
2195 implemented with Quentin Hocquet.
2196
2197 * src/output.c (type_names_output): New.
2198 (output_skeleton): Invoke it.
2199 * data/c++.m4 (b4_variant_if): New.
2200 (b4_symbol_value): If needed, provide a definition for variants.
2201 * data/lalr1.cc (b4_symbol_value, b4_symbol_action_)
2202 (b4_symbol_variant, _b4_char_sizeof_counter, _b4_char_sizeof_dummy)
2203 (b4_char_sizeof, yy::variant): New.
2204 (parser::parse): If variants are requested, define
2205 parser::union_type, parser::variant, change the definition of
2206 semantic_type, construct $$ before running the user action instead
2207 of performing a default $$ = $1.
2208 * examples/variant.yy: New.
2209 Based on an example by Michiel De Wilde.
2210
2211 2008-11-03 Akim Demaille <demaille@gostai.com>
2212
2213 Parameterize the extraction of semantic values.
2214 To make future changes easier, no longer rely on ".TYPE" being the
2215 way to get a semantic value.
2216
2217 * data/c.m4 (b4_symbol_value): New.
2218 Use it.
2219 * data/c++.m4, data/yacc.c: Use it.
2220 * data/glr.c: Use b4_symbol_value.
2221 (b4_rhs_data): New.
2222 Use it.
2223
2224 2008-11-03 Akim Demaille <demaille@gostai.com>
2225
2226 Prepare easier M4 changes.
2227 * data/lalr1.cc: Use escaped [] instead of literals to prepare
2228 future changes.
2229
2230 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
2231
2232 Initiate further development.
2233 * NEWS: Create an empty section for new entries.
2234 * gnulib: Update submodule to HEAD.
2235
2236 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
2237
2238 * NEWS: Version 2.4.
2239
2240 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
2241
2242 Prepare for next release.
2243 * NEWS: Briefly mention changes since 2.3b.
2244 * README: Say GNU m4 1.4.6, which we've been requiring in release
2245 announcements already, not 1.4.3, which breaks the build.
2246
2247 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
2248
2249 Say %language is experimental.
2250 We're thinking of extending it's effect on output file naming. See the
2251 thread at
2252 <http://lists.gnu.org/archive/html/bison-patches/2008-10/msg00003.html>.
2253 * NEWS: Say it's experimental.
2254 * doc/bison.texinfo (Decl Summary): Say it's experimental, and so don't
2255 recommend it over %skeleton for now.
2256 (Bison Options): Likewise.
2257 (C++ Bison Interface): Use %skeleton not %language.
2258 (Calc++ Parser): Use %skeleton not %language.
2259 * src/getargs.c (usage): Say it's experimental.
2260
2261 2008-11-01 Di-an Jan <dianj@freeshell.org>
2262 Paolo Bonzini <bonzini@gnu.org>
2263
2264 Support all Java parser class modifiers.
2265 * data/java.m4 (b4_percent_define_get3): New.
2266 (b4_final_if, b4_strictfp_if): New.
2267 * data/lalr1.java (final, strictfp, extends, implements): Support.
2268 * doc/bison.texinfo (final, strictfp, extends, implements): Add
2269 documentation.
2270 * tests/java.at (AT_CHECK_JAVA_MINIMAL): New.
2271 (AT_CHECK_JAVA_MINIMAL_W_LEXER): New.
2272 (AT_CHECK_JAVA_GREP): New.
2273 (Java parser class modifiers): New test.
2274 (Java parser class extends and implements): New test.
2275
2276 Model exception propagation better with throws and lex_throws.
2277 * data/java.m4 (b4_list2): New.
2278 (throws): Change default.
2279 * data/lalr1.java (yyaction): Add throws.
2280 (parse): Add lex_throws in addition to throws.
2281 * doc/bison.texinfo (throws, lex_throws): Add documentation.
2282 * tests/java.at (Java throws specifications): New test.
2283
2284 Improve documentation for Java parsers.
2285 * doc/bison.texinfo (Java Parsers): Add subsections.
2286 Don't quote first argument of %define.
2287 (Java Bison Interface): Document output files. Move documentation
2288 of parser class and merge into Java Parser Interface. Document
2289 features that error out. Document directives with no effect.
2290 Move note about Javadoc higher.
2291 (Java Semantic Values): Explicitly mention stype.
2292 Document that generic types cannot be used.
2293 (Java Location Values): Use @deftypeivar. Document constructors.
2294 Correct return value for toString.
2295 (Java Parser Interface): List undocumented constants/fields.
2296 Move documentation of fields added by %parse-param closer to list
2297 of members. Document that token names are added as fields.
2298 Document constructors accurately. Remove error method.
2299 (Java Scanner Interface): Move note on %pure-parser to Java Bison
2300 Interface. Describe %code lexer and yylex accutately.
2301 Remove documentation that does not match the code.
2302 (Java Action Features): New.
2303 (Java Differences): Add reference. Add item on semantic values.
2304 Add note about @{ ... @}. Clarify %% epilogue placement.
2305 (Java Declarations Summary): New.
2306
2307 Fix Java skeleton.
2308 * data/java.m4 (b4_prefix): Correct quoting for m4_define_default.
2309 (b4_remove_comma): Quote test argument.
2310 (b4_identification): Remove "bison" field.
2311 * tests/java.at (Java parser class and package names): New test.
2312 (Java %parse-param and %lex-param): New test.
2313 (Java stype, position_class and location_class): New test.
2314
2315 2008-10-31 Di-an Jan <dianj@freeshell.org>
2316
2317 * data/lalr1.jave: Update copyright years.
2318 (YYParser): Correct name of "generated from" file in Javadoc:
2319 use b4_file_name instead of @ofile@.
2320 (Location constructor): Correct Javadoc parameter name.
2321 (yylloc): Add missing opening m4 quote after b4_location_if.
2322 This removes a stray [ in the Javadoc of Lexer.getStartPos.
2323 (Lexer.yyerror): Fix incorrect m4 and Javadoc.
2324 (YYParser constructor): Correct Javadoc parameter name.
2325
2326 2008-10-30 Joel E. Denny <jdenny@ces.clemson.edu>
2327
2328 Always put auxiliary code files in the same dir as other output files.
2329 * src/files.c (compute_file_name_parts): When the user specifies
2330 --output but not --file-prefix, extract the directory prefix from the
2331 file prefix not from the grammar file name. This affects the location
2332 of files like location.hh generated by the C++ skeleton. The includes
2333 in the other output files require this fix.
2334 * tests/output.at (AT_CHECK_OUTPUT): Automatically create directories
2335 for expected output files.
2336 (Output files): Add a test for the above.
2337
2338 2008-10-29 Joel E. Denny <jdenny@ces.clemson.edu>
2339
2340 * gnulib: Update submodule to HEAD.
2341
2342 2008-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
2343
2344 Update copyright year.
2345 * src/files.c: Here.
2346
2347 2008-10-28 Di-an Jan <dianj@freeshell.org> (tiny change)
2348
2349 Don't overwrite the input file.
2350 * src/files.c (output_file_name_check): Fatal error if using input file
2351 for output.
2352 * tests/output.at: (AT_CHECK_CONFLICTING_OUTPUT): Add return status
2353 argument.
2354 (Conflicting output files): Add test.
2355
2356 2008-10-28 Akim Demaille <demaille@gostai.com>
2357
2358 Space changes.
2359 * data/lalr1.cc: Formatting changes.
2360
2361 2008-10-28 Akim Demaille <demaille@gostai.com>
2362
2363 Don't define debugging functions when !YYDEBUG.
2364 * data/lalr1.cc (debug_stream, set_debug_stream)
2365 (debug_level_type, debug_level, set_debug_level): Don't
2366 declare them when YYDEBUG is not defined.
2367 The implementation are already YYDEBUG-aware.
2368
2369 2008-10-28 Akim Demaille <demaille@gostai.com>
2370
2371 Prefer "continue" for empty loop bodies.
2372 * etc/bench.pl.in: Use "continue" instead of {}.
2373
2374 2008-10-28 Akim Demaille <demaille@gostai.com>
2375
2376 Space and comments changes.
2377 * data/c++.m4, data/glr.c, data/lalr1.cc: Copyright year changes.
2378 * data/c.m4, data/lalr1.cc: Space changes.
2379
2380 2008-10-28 Akim Demaille <demaille@gostai.com>
2381
2382 Make gnulib a submodule.
2383 * gnulib: New.
2384 * .gitmodules (gnulib): New.
2385
2386 2008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
2387
2388 Fix yyerror_range for user-defined location type in C++. Reported by
2389 Georg Sauthoff at
2390 <http://lists.gnu.org/archive/html/bug-bison/2008-08/msg00008.html>.
2391 * data/lalr1.cc (parse): Change type of yyerror_range to location_type.
2392 * THANKS (Georg Sauthoff): Add.
2393
2394 2008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
2395
2396 Update several administrative files mainly to facilitate releasing.
2397 * HACKING (Administrivia): Make the git-merge-changelog notes more
2398 helpful.
2399 (Test suite): Don't say lalr1.cc is not exercised in the test suite.
2400 (Release Procedure): Update for git and add numerous details that were
2401 previously missing.
2402 * Makefile.am (EXTRA_DIST): Remove Makefile.cfg and Makefile.maint.
2403 * maint.mk (announcement): Don't list bison as a bootstrap tool so
2404 that announcements don't claim we bootstrapped with whatever bison
2405 happened to be in PATH. Add flex as a bootstrap tool.
2406 * Makefile.maint: Remove, previously replaced by maint.mk.
2407 * Makefile.cfg: Remove, and migrate settings to...
2408 * cfg.mk: ... here for the sake of `make announcement'.
2409 * bootstrap.conf (gnulib_modules): Add announce-gen.
2410 * README: Say GNU Bison instead of just Bison. Suggested by Karl
2411 Berry.
2412
2413 2008-10-08 Di-an Jan <dianj@freeshell.org> (tiny change)
2414
2415 Small but important bugfixes for the Java skeleton.
2416 * data/lalr1.java (yyerror): Change Location to b4_location_type.
2417 (yy_symbol_print): Call toString on yyvaluep.
2418
2419 2008-08-29 Akim Demaille <demaille@gostai.com>
2420
2421 Clarify UPDATED use.
2422 * doc/bison.texinfo: It refers to the last edition of this file,
2423 not to the release date of Bison.
2424 Reported by Joel E. Denny.
2425
2426 2008-08-29 Akim Demaille <demaille@gostai.com>
2427
2428 * README: Update FAQ pointer.
2429 Reported by Joel E. Denny.
2430
2431 2008-08-27 Eric Blake <ebb9@byu.net>
2432
2433 Resync m4sugar from autoconf.
2434 * data/m4sugar/m4sugar.m4 (m4_defn, m4_popdef, m4_undefine)
2435 (m4_init): Adjust to latest m4.git changes.
2436 (m4_mapall_sep, _m4_list_cmp, m4_version_compare): Reduce side
2437 effects.
2438 * data/m4sugar/foreach.m4 (_m4_shiftn): Fix off-by-one bug.
2439 (_m4_list_cmp): Reduce side effects.
2440
2441 2008-08-27 Akim Demaille <demaille@gostai.com>
2442
2443 Check yyerrok in calc.at.
2444 * tests/calc.at (calc.y): Use yyerrok on "( error )".
2445 (AT_CHECK_CALC): Add a check that ensures that yyerrok works as
2446 expected.
2447
2448 2008-08-27 Akim Demaille <demaille@gostai.com>
2449
2450 Support yyerrok in lalr1.cc.
2451 YYBACKUP is still to import back into lalr1.cc.
2452 * data/lalr1.cc (yyerrork, yyclearin, YYRECOVERING): Define.
2453
2454 2008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
2455
2456 For maintainer-check*, don't recompile for a $(VERSION) update.
2457 * cfg.mk: New file.
2458 (_is-dist-target): Override the one in GNUmakefile.
2459 * Makefile.am (EXTRA_DIST): Add cfg.mk.
2460
2461 2008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
2462
2463 Update for recent change to gnulib.
2464 * src/parse-gram.y: Don't include strverscmp.h. It comes from
2465 string.h now.
2466
2467 2008-08-15 Eric Blake <ebb9@byu.net>
2468
2469 Remaining m4sugar merge from autoconf.
2470 * data/m4sugar/m4sugar.m4: Copy entire file from autoconf.
2471 * data/m4sugar/foreach.m4: New file, copied from autoconf.
2472 * data/Makefile.am (dist_m4sugar_DATA): Distribute it.
2473 * src/output.c (output_skeleton): Tell m4 how to find it.
2474
2475 Partial m4sugar merge from autoconf: m4_map.
2476 * data/m4sugar/m4sugar.m4 (m4_fst): Delete.
2477 (m4_map, m4_map_sep, _m4_map): Rewrite more efficiently.
2478 (m4_apply, _m4_apply, m4_mapall, m4_mapall_sep): New macros.
2479 * data/java.m4 (b4_token_enums): Use more efficient short-circuit
2480 for empty list.
2481 * data/c.m4 (b4_token_defines, b4_token_enums, b4_c_ansi_formals):
2482 Likewise.
2483 (b4_parse_param_for): Avoid m4_fst, now that autoconf no longer
2484 declares it.
2485
2486 2008-08-07 Joel E. Denny <jdenny@ces.clemson.edu>
2487
2488 Keep .version and PACKAGE_VERSION in sync.
2489 * Makefile.am ($(top_srcdir)/.version): Declare configure as a
2490 dependency, and add comments justifying this in more detail. Discussed
2491 starting at
2492 <http://lists.gnu.org/archive/html/bison-patches/2008-07/msg00022.html>.
2493
2494 2008-08-06 Eric Blake <ebb9@byu.net>
2495
2496 Partial m4sugar merge from autoconf: m4_shiftn.
2497 * data/m4sugar/m4sugar.m4 (m4_shiftn): Faster implementation.
2498 (m4_shift2, m4_shift3): New macros.
2499 (m4_case, m4_bmatch, m4_bpatsubsts, m4_join): Adjust clients.
2500 * data/c.m4 (b4_c_function_def, b4_c_ansi_function_def)
2501 (b4_c_ansi_function_decl, b4_c_function_call): Likewise.
2502 * data/java.m4 (b4_remove_comma): Likewise.
2503
2504 Partial m4sugar merge from autoconf: m4_wrap vs. m4 1.6.
2505 * data/m4sugar/m4sugar.m4 (m4_unquote, m4_wrap_lifo): New macros.
2506 (m4_wrap): Guarantee FIFO order, in spite of m4 1.6.
2507 (m4_init): Consolidate wrapped text into single m4_wrap.
2508 * data/bison.m4 (b4_check_user_names_wrap): Stick with LIFO order
2509 in wrapped text.
2510
2511 2008-08-05 Eric Blake <ebb9@byu.net>
2512
2513 Partial m4sugar merge from autoconf: builtins, version.m4.
2514 * data/m4sugar/m4sugar.m4 (changeword): Nuke.
2515 (m4_prepend): Remove, as it is unused and inherently quadratic,
2516 whereas m4_append is linear in newer m4.
2517 (m4_mkstemp): New builtin.
2518 (m4_symbols): Make rename conditional.
2519 (m4_version_prereq): Ensure fatal error if used in bison, which
2520 intentionally lacks version.m4.
2521
2522 Fix comments in m4sugar.
2523 * data/m4sugar/m4sugar.m4: Comment changes, borrowed from autoconf.
2524
2525 2008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
2526
2527 Update for recent .gitignore fix in Gnulib.
2528 * bootstrap: Back out 2008-07-18 hack now that gnulib-tool creates
2529 anchored .gitignore entries.
2530
2531 2008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
2532
2533 Set gnu or gnits strictness.
2534 * configure.ac (AM_INIT_AUTOMAKE): Set gnu strictness during
2535 development and gnits strictness for releases. Based on Eric Blake's
2536 suggestion at
2537 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00019.html>.
2538
2539 2008-07-31 Paolo Bonzini <bonzini@gnu.org>
2540
2541 * NEWS: Clarify documentation of %language.
2542
2543 2008-07-31 Paolo Bonzini <bonzini@gnu.org>
2544
2545 Support usage of git-merge-changelog.
2546 * .gitattributes: New.
2547 * HACKING: Document usage of git-merge-changelog.
2548 * bootstrap: Install git-merge-changelog entries in .git/config
2549 if appropriate.
2550
2551 2008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
2552
2553 Remove remaining dependence on CVS Id keyword.
2554 * ChangeLog: For the sake of people still using CVS, don't use dollars
2555 when mentioning Id.
2556 * data/xslt/bison.xsl: Remove Id from header comments, where it was
2557 unusual anyway.
2558 * data/xslt/xml2dot.xsl: Likewise.
2559 * data/xslt/xml2text.xsl: Likewise.
2560 * data/xslt/xml2xhtml.xsl: Likewise.
2561 * doc/Doxyfile.in (PROJECT_NUMBER): Don't use ID.
2562 * doc/Makefile.am (neutralize): Remove, no longer needed.
2563 (.x.1): Don't use neutralize.
2564 (edit): Don't substitute for ID.
2565 (Doxyfile): Don't define Id, and thus don't depend on ChangeLog.
2566
2567 2008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
2568
2569 Fix dependence on computed configure variables.
2570 * doc/Makefile.am (common_dep): Depend on $(top_srcdir)/configure not
2571 $(top_srcdir)/configure.ac so that changes to computed variables, such
2572 as PACKAGE_VERSION, are seen.
2573 * tests/Makefile.am ($(srcdir)/package.m4): Likewise.
2574
2575 2008-07-20 Joel E. Denny <jdenny@ces.clemson.edu>
2576
2577 Update copyright dates for recent changes.
2578 * Makefile.am: Here.
2579 * src/Makefile.am: Here.
2580 * src/reduce.c: Here.
2581 * tests/reduce.at: Here.
2582
2583 2008-07-18 Joel E. Denny <jdenny@ces.clemson.edu>
2584
2585 Use git-version-gen for version names between releases.
2586 * .cvsignore (.tarball-version, GNUmakefile, *~): Add.
2587 * .gitignore (/.tarball-version, /GNUmakefile, /*~): Add.
2588 * .prev-version: New.
2589 * .version.in: Remove.
2590 * ChangeLog: Remove the Id previously used for capturing the CVS
2591 revision.
2592 * GNUmakefile: Remove, now copied from Gnulib.
2593 * Makefile.am: Add code suggested by comments in
2594 build-aux/git-version-gen.
2595 (EXTRA_DIST): Remove GNUmakefile, handled by Gnulib. Add maint.mk,
2596 .prev-version, and .version.
2597 * NEWS (2.3b+): Rename to...
2598 (?.?): ... this because we're dropping the "+" version naming scheme,
2599 but, in general, we still can't be sure of our next release name.
2600 * bootstrap: Add a quick hack to remove from .gitignore the
2601 GNUmakefile entry that gnulib adds. We already have a /GNUmakefile
2602 entry. This should really be fixed in gnulib instead.
2603 * bootstrap.conf (gnulib_modules): Add gnumakefile.
2604 * configure.ac (AC_INIT): Set version name by invoking
2605 build-aux/git-version-gen.
2606 (AC_CONFIG_FILES): Remove .version, now generated by
2607 build-aux/git-version-gen.
2608 * maint.mk: New, copied from coreutils.
2609 * doc/.cvsignore (bison.1): Add.
2610 * doc/.gitignore (/bison.1): Add.
2611 * doc/bison.1: Remove, generated.
2612 * src/.cvsignore (revision.c): Remove.
2613 * src/.gitignore (/revision.c): Remove.
2614 * src/Makefile.am (bison_SOURCES): Remove revision.c and revision.h.
2615 (BUILT_SOURCES): Remove revision.c.
2616 (revision.c): Remove.
2617 * src/getargs.c (version): Don't print revision after the VERSION.
2618 * src/revision.h: Remove.
2619
2620 2008-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
2621
2622 Fix untranslatable composition of sentences. Reported by Goran
2623 Uddeborg at
2624 <http://lists.gnu.org/archive/html/bug-bison/2008-06/msg00000.html>.
2625 * THANKS (Goran Uddeborg): Add.
2626 * src/reduce.c (reduce_print): Report the number of nonterminals and
2627 rules useless in the grammar in separate sentences.
2628 * tests/reduce.at (Useless Rules): Update output.
2629 (Reduced Automaton): Likewise.
2630 (Underivable Rules): Likewise.
2631 (Empty Language): Likewise.
2632
2633 2008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
2634
2635 Fix some .gitignore and .cvsignore problems.
2636 * bootstrap (insert_sorted_if_absent): Replace all uses with...
2637 (insert_vc_ignore): ... this new function, which prepends `/' to all
2638 .gitignore entries before passing them to insert_sorted_if_absent.
2639 * bootstrap.conf (vc_ignore): Set to '.cvsignore .gitignore' so that
2640 .cvsignore files are maintained even though Bison developers run
2641 bootstrap while using Git.
2642 * .cvsignore (*.patch *.log log patches applied): Remove, apparently
2643 unneeded by Bison.
2644 (gnulib): Add.
2645 * .gitignore (/*.patch *.log log patches applied): Remove, broken and
2646 unneeded. Reported by Eric Blake.
2647 * lib/.gitignore (/*~): Add.
2648 * po/.cvsignore, runtime-po/.cvsignore: Sync with .gitignore.
2649 * examples/calc++/.gitignore (/calc++.exe): Add. Reported by Eric
2650 Blake.
2651 * src/.gitignore (/bison.exe): Add. Reported by Eric Blake.
2652
2653 2008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
2654
2655 Improve forward-compatibility with GNU M4. Reported by Eric Blake at
2656 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00000.html>.
2657 * bootstrap.conf (gnulib_modules): Add unsetenv.
2658 * lib/.gitignore, lib/.cvsignore (/unsetenv.c): Add.
2659 * m4/.gitignore, m4/.cvsignore (/environ.m4): Add.
2660 (/setenv.m4): Add.
2661 * src/output.c (output_skeleton): For the m4 invocation, pass -dV as
2662 the first argument because it may become position-dependent, and unset
2663 POSIXLY_CORRECT so Bison's skeletons have access to GNU M4 extensions.
2664 Add comments explaining these issues in more detail.
2665
2666 2008-07-14 Joel E. Denny <jdenny@ces.clemson.edu>
2667
2668 Add .gitignore everywhere based on .cvsignore.
2669 * .gitignore: New.
2670 * build-aux/.gitignore: New.
2671 * data/.gitignore: New.
2672 * doc/.gitignore: New.
2673 * etc/.gitignore: New.
2674 * examples/.gitignore: New.
2675 * examples/calc++/.gitignore: New.
2676 * lib/.gitignore: New.
2677 * m4/.gitignore: New.
2678 * po/.gitignore: New.
2679 * runtime-po/.gitignore: New.
2680 * src/.gitignore: New.
2681 * tests/.gitignore: New.
2682
2683 2008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
2684
2685 * NEWS (2.3b+): New section, empty for now.
2686 * configure.ac (AC_INIT): 2.3b -> 2.3b+.
2687
2688 2008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
2689
2690 * NEWS (2.3b): Update release date since there has been a delay in
2691 getting the announcements and tarballs out.
2692
2693 2008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
2694
2695 * NEWS: Version 2.3b.
2696 * configure.ac (AC_INIT): Likewise.
2697 (PACKAGE_COPYRIGHT_YEAR): Update to 2008.
2698
2699 2008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
2700
2701 * HACKING: Don't say don't mention HACKING in the ChangeLog. We've
2702 been doing it for years.
2703 (Test suite): Mention maintainer-push-check and maintainer-xml-check.
2704 (Release Procedure): Add FIXME about make alpha being unmaintained.
2705
2706 2008-05-13 Joel E. Denny <jdenny@ces.clemson.edu>
2707
2708 * data/yacc.c: Reformat m4 a little for readability.
2709 * src/lalr.c (build_relations): Correct comment.
2710
2711 2008-05-12 Juan Manuel Guerrero <juan.guerrero@gmx.de>
2712
2713 DJGPP specific issue.
2714 * djgpp/config.sed: Fixes required to run configure scripts generated
2715 by autoconf 2.62.
2716
2717 2008-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
2718
2719 * HACKING (Release Procedure): translation@iro.umontreal.ca is now
2720 coordinator@translationproject.org.
2721
2722 2008-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
2723
2724 * THANKS: Add Eric Blake.
2725
2726 2008-04-23 Eric Blake <ebb9@byu.net>
2727
2728 Revert prior patch, by working around autoconf regression.
2729 * tests/output.at (m4_expand): Add workaround for autoconf 2.62.
2730 ("Output file name: ("): Uncomment test.
2731 ("Output file name: )"): Likewise.
2732 Based on an idea from Noah Misch.
2733
2734 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
2735
2736 Work-around an Autoconf 2.62 AT_SETUP bug that was not present in
2737 2.61. Reported by Juan Manuel Guerrero at
2738 <http://lists.gnu.org/archive/html/bug-bison/2008-04/msg00011.html>.
2739 * tests/output.at ("Output file name: ("): Comment out test case for
2740 now.
2741 ("Output file name: )"): Likewise.
2742
2743 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
2744
2745 * GNUmakefile: Update git-version-gen invocation so make dist
2746 succeeds.
2747
2748 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
2749
2750 Update to the current gnulib CVS repository, and fix trigraph handling
2751 in Bison.
2752 * bootstrap: Update gnulib CVS repository URL.
2753 (symlink_to_dir): Encapsulate the code that guarantees the destination
2754 directory exists into...
2755 (check_dst_dir): ... this new function, and...
2756 (cp_mark_as_generated): ... reuse it here so that bootstrap doesn't
2757 fail when copying files into lib/uniwidth/.
2758 * src/output.c (prepare_symbols): When writing yytname muscles, where
2759 symbol names will be encoded in C-string literals, tell quotearg to
2760 escape trigraphs. This used to be the default in gnulib.
2761 * tests/regression.at (Token definitions): Because of the change in
2762 gnulib's quotearg behavior, string_as_id in parse-gram.y no longer
2763 escapes trigraphs in symbol names. Thus, yytname no longer has
2764 trigraphs unnecessarily doubly escaped. Update test case output.
2765 Extend test case to be sure Bison's own error messages will no longer
2766 have trigraphs in symbol names unnecessarily escaped once.
2767
2768 2008-04-20 Joel E. Denny <jdenny@ces.clemson.edu>
2769
2770 Fix make dist infinite loop reported by Juan Manuel Guerrero at
2771 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00009.html>.
2772 * .cvsignore: Add .version.
2773 * .version.in: New.
2774 * bootstrap.conf (gnulib_modules): Add git-version-gen.
2775 * configure.ac (AC_CONFIG_FILES): Add .version.
2776 * build-aux/.cvsignore: Add git-version-gen.
2777
2778 2008-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
2779
2780 * NEWS (2.3a+): Mention that -g now takes an argument.
2781 * doc/bison.texinfo (Bison Options): Reword -W entry a little for
2782 consistency. Update the -g and -x entries now that they take
2783 arguments. Use brackets to indicate optional arguments.
2784 * src/getargs.c (usage): Explain the relationship between arguments of
2785 long and short options more completely. Document --defines and -d
2786 separately since the former takes an argument but, for POSIX Yacc, the
2787 latter does not.
2788 (short_options): Let -W take an optional argument like --warnings.
2789 (getargs): Sort cases.
2790
2791 2008-02-28 Akim Demaille <demaille@gostai.com>
2792
2793 * doc/bison.texinfo: Fix a few typos.
2794
2795 2008-02-28 Akim Demaille <akim@epita.fr>
2796
2797 * doc/bison.texinfo (Bison Options): Document -W.
2798 Based on Joel E. Denny's NEWS entry, and Automake's documentation.
2799
2800 2008-02-28 Akim Demaille <akim@epita.fr>
2801
2802 * src/getargs.c (short_options): Split and sort for readability.
2803 -g and -x take optional arguments, just like their long options.
2804 * build-aux/cross-options.pl: Use /x to make the regexp easier to
2805 understand.
2806 Fix the handling of $opt which resulted in all the argument to be
2807 considered as optional.
2808
2809 2008-02-22 Joel E. Denny <jdenny@ces.clemson.edu>
2810
2811 * NEWS (2.3a+): Don't say %language is experimental. Mention Java and
2812 say its interface is experimental.
2813 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
2814 Java.
2815 (Bison Options): In the -L and --language entry, mention Java.
2816 (Java Bison Interface): Say the interface is experimental.
2817 * src/getargs.c (usage): Mention -L and --language.
2818
2819 * NEWS (2.3a+): Say the push parsing interface is experimental.
2820 * doc/bison.texinfo (Push Decl): Likewise.
2821 (Decl Summary): Likewise in the "%define api.push_pull" entry.
2822 (Push Parser Function): Likewise.
2823 (Pull Parser Function): Likewise.
2824 (Parser Create Function): Likewise.
2825 (Parser Delete Function): Likewise.
2826 (Table of Symbols): Likewise in the yypstate_delete, yypstate_new,
2827 yypull_parse, and yypush_parse entries.
2828
2829 * NEWS (2.3a+): Mention XML support, and say the schema is
2830 experimental.
2831 * doc/bison.texinfo (Bison Options): Mention -x and --xml.
2832 * src/getargs.c (usage): Say the XML schema is experimental.
2833
2834 * NEWS (2.3a+): Say option instead of flag.
2835
2836 2008-02-21 Wojciech Polak <polak@gnu.org>
2837
2838 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Change footer
2839 text.
2840
2841 2008-02-20 Joel E. Denny <jdenny@ces.clemson.edu>
2842
2843 Fix impure push parser compile error reported by Bob Rossi at
2844 <http://lists.gnu.org/archive/html/help-bison/2008-02/msg00023.html>.
2845 * data/yacc.c: Clean up whitespace in the output a little.
2846 (yypstate_allocated): Define for impure push parsers regardless of
2847 whether the pull interface is also requested.
2848 * tests/push.at (Push Parsing: Multiple impure instances): Extend to
2849 check impure push parsers without the pull interface.
2850
2851 * data/yacc.c (yypstate_new): Don't try to invoke yyerror since
2852 yyerror takes arguments specified by %parse-param while yypstate_new
2853 does not.
2854 * doc/bison.texinfo (Parser Create Function): Document that
2855 yypstate_new returns 0 for multiple impure parser instances.
2856 * tests/push.at (Push Parsing: Multiple impure instances): Update
2857 expected stderr output.
2858
2859 2008-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
2860
2861 * runtime-po/POTFILES.in (push.c): Remove.
2862
2863 2008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
2864
2865 * data/Makefile.am (dist_pkgdata_DATA): Remove push.c.
2866 * data/push.c: Rename to...
2867 * data/yacc.c: ... this, overwriting it.
2868 * etc/bench.pl.in (bench_grammar): `%pure-parser'-> `%define api.pure'.
2869 `%push-pull-parser' -> `%define api.push_pull "both"'.
2870 Remove old yacc.c tests, and update push.c tests to yacc.c.
2871
2872 2008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
2873
2874 * data/bison.m4 (b4_percent_code_get): Output %code block comments like
2875 `"%code top" blocks' instead of `%code "top" blocks'.
2876 * data/push.c: Import yacc.c changes from 2008-01-09 and 2007-08-03.
2877 Clean up whitespace in the output a little.
2878
2879 2008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
2880
2881 Fix documentation problems reported by Tim Josling at
2882 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00013.html>.
2883 * NEWS (2.3a+): Mention removal of --no-parser, -n, and %no-parser.
2884 * doc/bison.texinfo (Token Decl): Token numbers are *nonnegative*
2885 integers. Explain the effect of literal string aliases on error
2886 messages. Copy token 0 documentation from the C++ skeleton
2887 documentation.
2888
2889 2008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
2890
2891 Accept a token number in a %left, %right, or %nonassoc for POSIX
2892 conformance. Reported by Tim Josling at
2893 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00010.html>.
2894 * NEWS (2.3a+): Mention.
2895 * doc/bison.texinfo (Precedence Decl): Describe how literal strings
2896 and code numbers are treated by precedence declarations.
2897 * src/parse-gram.y (precedence_declaration): Use symbols.prec instead
2898 of symbols.1.
2899 (symbols.prec): New, just like symbols.1 but uses symbol.prec instead
2900 of symbol.
2901 (symbol.prec): New, just like symbol but allows INT.
2902 * src/symtab.c (symbol_user_token_number_set): Remove an aver that no
2903 longer holds.
2904 * tests/regression.at (Token number in precedence declaration): New
2905 test case.
2906
2907 2008-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
2908
2909 DJGPP specific issues.
2910 * djgpp/config.bat: Add filenames that are not 8.3 clean and that must
2911 be changed. Copyright timestamp adjusted.
2912 * djgpp/config.sed: Add filenames that are not 8.3 clean and that must
2913 be changed. Copyright timestamp adjusted.
2914 * djgpp/config.site: Copyright timestamp adjusted.
2915 * djgpp/config_h.sed: Copyright timestamp adjusted.
2916 * djgpp/djunpack.bat: Copyright timestamp adjusted.
2917 * djgpp/fnchnage.lst: Add filenames that are not 8.3 clean to the
2918 filename translation list.
2919 * djgpp/subpipe.c (init_subpipe): Check the environment variables
2920 TMPDIR, TMP and TEMP, in that order, to determinate where the temp
2921 files shall be created. Before trying to use the temp dir where the
2922 environment variable points to check that the dir really exists. If
2923 not default to the cwd as temp dir. Copyright timestamp adjusted.
2924 * djgpp/subpipe.h: Copyright timestamp adjusted.
2925 * djgpp/testsuite.sed: Copyright timestamp adjusted.
2926
2927 2008-01-30 Paul Eggert <eggert@cs.ucla.edu>
2928
2929 * doc/bison.texinfo: Update Back-Cover text to reflect new GNU wording.
2930
2931 2008-01-09 Paul Eggert <eggert@cs.ucla.edu>
2932
2933 * data/yacc.c (yyparse): Correct the comment when locations aren't used.
2934 Problem reported by Claudio Saavedra in
2935 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00003.html>.
2936
2937 2008-01-05 Wojciech Polak <polak@gnu.org>
2938
2939 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Precede an XHTML
2940 document's title with the input grammar file name.
2941
2942 2007-12-22 Joel E. Denny <jdenny@ces.clemson.edu>
2943
2944 Automate regression testing of the XML/XSLT implementation. Discussed
2945 starting at
2946 <http://lists.gnu.org/archive/html/bison-patches/2007-11/msg00021.html>.
2947 * configure.ac (XSLTPROC): New substitution.
2948 * Makefile.am (maintainer-xml-check): New phony target invoking...
2949 * tests/Makefile.am (maintainer-xml-check): ... this new phony target
2950 invoking make maintainer-check with BISON_TEST_XML=1.
2951 * tests/atlocal.in (XSLTPROC): New.
2952 * tests/local.at (AT_BISON_CHECK): New macro to (1) instruct Valgrind
2953 not to report reachable memory when Bison is expected to have a
2954 non-zero exit status and (2) to compare XML/XSLT output with --graph
2955 and --report=all output for every working grammar when
2956 BISON_TEST_XML=1.
2957 (AT_BISON_CHECK_NO_XML): Likewise, but skip XML checks.
2958 (AT_BISON_CHECK_XML): New.
2959 (AT_QUELL_VALGRIND): New.
2960 * tests/testsuite.at (ORIGINAL_AT_CHECK): Remove this and...
2961 (AT_CHECK): ... don't redefine this since this was the old way to
2962 quell Valgrind.
2963 * tests/actions.at: Rewrite all AT_CHECK invocations for bison as
2964 AT_BISON_CHECK invocations.
2965 * tests/c++.at: Likewise.
2966 * tests/calc.at: Likewise.
2967 * tests/conflicts.at: Likewise.
2968 * tests/cxx-type.at: Likewise.
2969 * tests/existing.at: Likewise.
2970 * tests/glr-regression.at: Likewise.
2971 * tests/headers.at: Likewise.
2972 * tests/input.at: Likewise.
2973 * tests/java.at: Likewise.
2974 * tests/output.at: Likewise.
2975 * tests/push.at: Likewise.
2976 * tests/reduce.at: Likewise.
2977 * tests/regression.at: Likewise.
2978 * tests/sets.at: Likewise.
2979 * tests/skeletons.at: Likewise.
2980 * tests/synclines.at: Likewise.
2981 * tests/torture.at: Likewise.
2982 (Big triangle): Use AT_BISON_CHECK_NO_XML instead since this grammar
2983 tends to hang xsltproc.
2984 (Big horizontal): Likewise.
2985
2986 2007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
2987
2988 In XML output, remove redundant class attribute on symbol element.
2989 * data/xslt/bison.xsl (xsl:key name="bison:symbolByName"): New.
2990 * data/xslt/xml2xhtml.xsl (xsl:template match="symbol"): Use it to
2991 look up a symbol to determine whether it's a nonterminal or terminal.
2992 * src/gram.c (rule_rhs_print_xml): Remove class attribute.
2993 * src/state.c (state_rule_lookahead_tokens_print_xml): Likewise.
2994
2995 Add prec/assoc information to XML output.
2996 * src/gram.c (grammar_rules_print_xml): For each rule that has a
2997 %prec, add a percent_prec attribute.
2998 * src/print-xml.c (print_grammar): For each terminal that has a
2999 precedence or associativity, add a prec or assoc attribute.
3000 (xml_indent): New.
3001 (xml_puts): Use xml_indent.
3002 (xml_printf): Use xml_indent.
3003 * src/print-xml.h (xml_indent): Prototype.
3004
3005 * tests/existing.at (GNU pic Grammar): Fix a rule miscopied from
3006 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
3007
3008 2007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
3009
3010 * data/xslt/bison.xsl (bison:ruleNumber): Rename to...
3011 (bison:ruleByNumber): ... this for clarity.
3012 * data/xslt/xml2dot.xsl (xsl:template match="item"): Update.
3013 * data/xslt/xml2text.xsl (xsl:template match="item"): Update.
3014 (xsl:template match="reduction"): Update.
3015 (xsl:template match="item"): Update.
3016 (xsl:template match="reduction"): Update.
3017
3018 In the XML output, don't print the list of rules where symbols appear.
3019 Compute it in XSLT instead. Discussed at
3020 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00024.html>.
3021 * data/xslt/bison.xsl (bison:ruleByLhs): New.
3022 (bison:ruleByRhs): New.
3023 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Use
3024 bison:ruleByRhs.
3025 (xsl:template match="terminal/rule"): Remove.
3026 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
3027 bison:ruleByRhs.
3028 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
3029 Remove.
3030 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Use
3031 bison:ruleByRhs and mode="number-link" for rule template.
3032 (xsl:template match="terminal/rule"): Remove.
3033 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
3034 bison:ruleByRhs and mode="number-link" for rule template.
3035 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
3036 Rewrite as...
3037 (xsl:template match="rule" mode="number-link"): ... this.
3038 * src/print-xml.c (print_grammar): Don't print the list of rules.
3039
3040 2007-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
3041
3042 Don't let --report affect XML output; always print all information.
3043 Discussed at
3044 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00020.html>.
3045 * src/conflicts.c (log_resolution): Implement.
3046 * src/print-xml.c (print_core): Implement.
3047 (print_state): Implement.
3048 (print_xml): Implement.
3049
3050 * NEWS (2.3a+): Fix quotes.
3051 * src/parse-gram.y (prologue_declaration): For consistency with -v,
3052 don't let %verbose clear the list specified by --report.
3053
3054 2007-11-26 Akim Demaille <akim@epita.fr>
3055
3056 * data/Makefile.am (dist_pkgdata_DATA): Ship and install bison.xsl.
3057
3058 2007-11-24 Joel E. Denny <jdenny@ces.clemson.edu>
3059
3060 In the XML output, list useless and unused symbols and rules with the
3061 useful ones and add a "usefulness" attribute. Discussed starting at
3062 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00017.html>.
3063 * src/gram.c (grammar_rules_partial_print_xml): Remove.
3064 (grammar_rules_print_xml): Print all rules instead of just those
3065 useful in the grammar, and add a "usefulness" attribute.
3066 * src/gram.h (grammar_rules_partial_print_xml): Remove prototype.
3067 * src/print-xml.c (print_rules_useless_in_parser): Remove.
3068 (print_grammar): Print all nonterminals instead of just useful ones,
3069 and add a "usefulness" attribute to nonterminals and terminals.
3070 (print_xml): Don't print a separate "reductions" or
3071 "rules-useless-in-parser" element.
3072 * src/reduce.c (reduce_output): Use reduce_token_unused_in_grammar.
3073 (reduce_xml): Remove.
3074 (reduce_token_unused_in_grammar): New.
3075 (reduce_nonterminal_useless_in_grammar): New.
3076 * src/reduce.h (reduce_xml): Remove prototype.
3077 (reduce_token_unused_in_grammar): Add prototype.
3078 (reduce_nonterminal_useless_in_grammar): Add prototype.
3079 * data/xslt/xml2text.xsl: Update for XML changes.
3080 * data/xslt/xml2xhtml.xsl: Update for XML changes.
3081 * tests/reduce.at (Useless Terminals): Update output.
3082 (Useless Rules): Update output.
3083 (Reduced Automaton): Update output.
3084
3085 Say "Terminals unused in grammar" instead of "Unused terminals".
3086 * NEWS (2.3a+): Update.
3087 * doc/bison.texinfo (Understanding): Update example output.
3088 * src/reduce.c (reduce_output): Implement.
3089 * data/xslt/xml2text.xsl: Implement.
3090 * data/xslt/xml2xhtml.xsl: Implement.
3091
3092 2007-11-18 Joel E. Denny <jdenny@ces.clemson.edu>
3093
3094 Accept --report-file=FILE to override the default `.output' filename.
3095 * NEWS (2.3a+): Mention.
3096 * doc/bison.texinfo (Bison Options): Add an entry.
3097 * src/files.c (compute_output_file_names): Don't override
3098 spec_verbose_file if already set.
3099 * src/getargs.c (usage): Document --report-file.
3100 (REPORT_FILE_OPTION): New anonymous enum member.
3101 (long_options): Add entry for it.
3102 (getargs): Add case for it setting spec_verbose_file.
3103
3104 * build-aux/cross-options.pl: Don't record a short option just because
3105 there's an arg.
3106 * doc/.cvsignore: Add yacc.1.
3107
3108 2007-11-14 Akim Demaille <akim@epita.fr>
3109
3110 * doc/yacc.1.in: New.
3111 * configure.ac, doc/Makefile.am: Adjust.
3112 * configure.ac (PACKAGE_COPYRIGHT_YEAR): New substitution, and new
3113 config.h symbol.
3114 Use AC_SUBST for assignments too.
3115 * src/getargs.c (version): Use PACKAGE_COPYRIGHT_YEAR.
3116
3117 2007-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
3118
3119 * src/gram.c: Remove comments that duplicate comments in gram.h.
3120
3121 When reporting useless rules and nonterminals, say "useless in grammar"
3122 instead of "useless", and say "useless in parser" instead of "never
3123 reduced". Discussed starting at
3124 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00033.html>.
3125 * NEWS (2.3a+): Mention this change.
3126 * data/xslt/xml2text.xsl: Update output text and expected input XML
3127 element names to match changes below.
3128 * data/xslt/xml2xhtml.xsl: Likewise.
3129 (xsl:template match="bison-xml-report"): Add missing entry in Table of
3130 Contents: "Rules useless in parser due to conflicts".
3131 * doc/bison.texinfo (Decl Summary): Reword a little.
3132 (Understanding): Update example output for changes below.
3133 * src/gram.c: (rule_useful_p): Rename to...
3134 (rule_useful_in_grammar_p): ... this.
3135 (rule_useless_p): Rename to...
3136 (rule_useless_in_grammar_p): ... this.
3137 (rule_never_reduced_p): Rename to...
3138 (rule_useless_in_parser_p): ... this.
3139 (grammar_rules_print): Update for renames.
3140 (grammar_rules_print_xml): Update for renames.
3141 (grammar_rules_never_reduced_report): Rename to...
3142 (grammar_rules_useless_report): ... this since it is used for either
3143 kind of useless rule.
3144 * src/gram.h: Reword comments and update function names in prototypes.
3145 * src/main.c (main): Say "rule useless in parser due to conflicts".
3146 * src/print-xml.c (print_rules_never_reduced): Rename to...
3147 (print_rules_useless_in_parser): ... this, and rename output XML
3148 element "rules-never-reduced" to "rules-useless-in-parser".
3149 (print_xml): Update for rename.
3150 * src/print.c (print_results): Say "Rules useless in parser due to
3151 conflicts".
3152 * src/reduce.c (reduce_grammar_tables): Say "rule useless in grammar".
3153 (nonterminals_reduce): Say "nonterminal useless in grammar".
3154 (reduce_output): Say "Nonterminals useless in grammar".
3155 Say "Rules useless in grammar".
3156 (reduce_xml): Rename output XML element "useless" to
3157 "useless-in-grammar".
3158 (reduce_print): Don't report the count of grammatically useless rules
3159 as "rules never reduced" just because %yacc is specified.
3160 In the correct report of this count, say nonterminal(s) and rule(s)
3161 "useless in grammar".
3162 * tests/conflicts.at (S/R in initial): Update expected output.
3163 (Defaulted Conflicted Reduction): Likewise.
3164 (Unreachable States After Conflict Resolution): Likewise.
3165 * tests/existing.at (GNU pic Grammar): Likewise.
3166 * tests/reduce.at (Useless Nonterminals): Likewise.
3167 (Useless Rules): Likewise.
3168 (Reduced Automaton): Likewise.
3169 (Underivable Rules): Likewise.
3170 (Empty Language): Likewise.
3171
3172 2007-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
3173
3174 * data/bison.m4 (b4_cat): Put a newline after the end delimiter of the
3175 here document and before the EOF so that BSD's implementation of Bourne
3176 shell doesn't parse the delimiter as part of the here document.
3177 * doc/.cvsignore: Add cross-options.texi.
3178 * src/getargs.c (usage): Add a blank line after the warning categories.
3179
3180 2007-11-08 Paolo Bonzini <bonzini@gnu.org>
3181
3182 * data/lalr1.java (Lexer): Remove usage of b4_pure_if.
3183
3184 2007-11-05 Akim Demaille <akim@epita.fr>
3185
3186 Remove Id: from bison.1.
3187 * doc/Makefile.am (remove_time_stamp): Include the sed invocation.
3188 (perl -0777 -pi -e 's/\.PP\nId): New.
3189 (.x.1): Use it to ignore the version control revision.
3190
3191 2007-11-05 Akim Demaille <demaille@gostai.com>
3192
3193 * build-aux/Makefile.am: Ship cross-options.pl.
3194 * doc/Makefile.am: Always refer to cross-options.texi with
3195 $(srcdir).
3196 (MAINTAINERCLEANFILES): Add it.
3197
3198 2007-11-04 Akim Demaille <demaille@gostai.com>
3199
3200 Generate the long/short option cross-table.
3201 * build-aux/cross-options.pl: New.
3202 * doc/Makefile.am (cross-options.texi): New.
3203 * doc/bison.texinfo: Use it.
3204
3205 2007-11-04 Akim Demaille <demaille@gostai.com>
3206
3207 Generate bison.1 using help2man.
3208 * doc/common.x, doc/bison.x: New.
3209 * doc/Makefile.am (bison.1, .x.1): New.
3210 The code is taken from autoconf-2.61/man/Makefile.am.
3211 * configure.ac: Look for help2man.
3212
3213 2007-11-04 Akim Demaille <demaille@gostai.com>
3214
3215 Complete --help.
3216 * src/getargs.c (usage): Document -W, make it clear that -d,
3217 -g and -x have optional arguments.
3218
3219 2007-11-04 Akim Demaille <demaille@gostai.com>
3220
3221 Find sha1sum when named gsha1sum.
3222 * bootstrap (find_tool): New.
3223 ($SHA1SUM): New.
3224
3225 2007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
3226
3227 Deprecate %pure-parser and add `%define api.pure'. Discussed starting
3228 at
3229 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00006.html>.
3230 * NEWS (2.3a+): Mention.
3231 * data/bison.m4 (b4_pure_if): Don't define it here.
3232 * data/c.m4 (b4_identification): Depend on individual skeletons to
3233 define b4_pure_flag, b4_push_flag, or b4_pull_flag if they use the
3234 values of the %define variables api.pure or api.push_pull. Define
3235 YYPURE, YYPUSH, and YYPULL accordingly.
3236 * data/glr.c: Define b4_pure_if based on `%define api.pure' unless
3237 glr.cc has already defined b4_pure_flag.
3238 * data/push.c: Define b4_pure_if based on `%define api.pure'.
3239 Remove YYPUSH and YYPULL since they're back in b4_identification again.
3240 * data/yacc.c: Define b4_pure_if based on `%define api.pure'.
3241 * doc/bison.texinfo (Pure Decl): Update.
3242 (Push Decl): Update.
3243 (Decl Summary): Add api.pure to %define entry.
3244 In %pure-parser entry, say it's deprecated and reference %define.
3245 (Pure Calling): Update.
3246 (Error Reporting): Update.
3247 (C++ Scanner Interface): Update.
3248 (How Can I Reset the Parser): Update.
3249 (Table of Symbols): In %pure-parser entry, say it's deprecated and
3250 reference %define.
3251 * src/getargs.c (pure_parser): Remove global variable.
3252 * src/getargs.h (pure_parser): Remove extern.
3253 * src/output.c (prepare): Don't define pure_flag muscle.
3254 * src/parse-gram.y (prologue_declaration): Implement %pure-parser as a
3255 wrapper around `%define api.pure'.
3256 * tests/calc.at (Simple LALR Calculator): Update.
3257 (Simple GLR Calculator): Update.
3258 * tests/cxx-type.at (GLR: Resolve ambiguity, pure, no locations):
3259 Update.
3260 (GLR: Resolve ambiguity, pure, locations): Update.
3261 (GLR: Merge conflicting parses, pure, no locations): Update.
3262 (GLR: Merge conflicting parses, pure, locations): Update.
3263 * tests/glr-regression.at (Uninitialized location when reporting
3264 ambiguity): Update
3265 * tests/input.at (Unused %define api.pure): New test case.
3266 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Update definition for
3267 AT_PURE_IF and AT_PURE_AND_LOC_IF.
3268 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
3269
3270 2007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
3271
3272 %define push_pull -> %define api.push_pull. Discussed starting at
3273 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00005.html>.
3274 * data/push.c: Expect the new name.
3275 * data/yacc.c: Likewise.
3276 * doc/bison.texinfo (Push Decl): Update.
3277 (Decl Summary): Update %define entry.
3278 (Push Parser Function): Update.
3279 (Pull Parser Function): Update.
3280 (Parser Create Function): Update.
3281 (Parser Delete Function): Update.
3282 * tests/calc.at (Simple LALR Calculator): Update.
3283 * tests/input.at (%define enum variables): Update.
3284 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
3285 (Push Parsing: Multiple impure instances): Update.
3286 (Push Parsing: Unsupported Skeletons): Update.
3287 * tests/torture.at (Exploding the Stack Size with Alloca): Update.
3288 (Exploding the Stack Size with Malloc): Update.
3289
3290 * NEWS (2.3a+): Add an entry for the push parser, and clean up the
3291 other entries some.
3292
3293 2007-10-27 Joel E. Denny <jdenny@ces.clemson.edu>
3294
3295 For the XML output's terminal element, rename @number to @token-number,
3296 and add @symbol-number. In the nonterminal element, rename @number to
3297 @symbol-number. Discussed starting at
3298 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00040.html>.
3299 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Update for
3300 renames.
3301 (xsl:template match="nonterminal"): Likewise.
3302 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Likewise.
3303 (xsl:template match="nonterminal"): Likewise.
3304 * src/print-xml.c (print_grammar): Implement.
3305
3306 2007-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
3307
3308 * data/xslt/xml2dot.xsl (xsl:template match="automaton/state"): After
3309 2007-10-11 change, the child elements here are items not rules.
3310 (xsl:template match="item"): New.
3311 (xsl:template match="rule"): Update for new reduced itemset.
3312 (xsl:template match="point"): Remove.
3313 (xsl:template match="empty"): For consistency with --graph, don't
3314 output "/* empty */".
3315 * data/xslt/xml2text.xsl (xsl:template match="terminal"): When invoking
3316 line-wrap, don't pass a negative value as first-line-length since this
3317 won't work with the following changes.
3318 (xsl:template name="line-wrap"): Simplify slightly.
3319 (xsl:template name="ws-search"): Eliminate recursion.
3320 * src/print_graph.c (print_core): Don't print a reduction's lookahead
3321 set next to an item whose dot is not at the end of the RHS even if it
3322 happens to be associated with the same rule.
3323
3324 2007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
3325
3326 Add %define lr.keep_unreachable_states.
3327 * NEWS (2.3a+): Mention it in the entry for unreachable state removal.
3328 * doc/bison.texinfo (Decl Summary): Mention it in the %define entry.
3329 * src/main.c (main): Implement it.
3330 * tests/conflicts.at (Unreachable States After Conflict Resolution):
3331 Extend to test it, and fix a typo.
3332
3333 2007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
3334
3335 * NEWS (2.3a+): Add entry for recent .output file lookahead set fix.
3336 * doc/bison.texinfo (Understanding): Remove a bogus lookahead set in
3337 the example .output text.
3338 * tests/regression.at (Extra lookahead sets in report): Improve wording
3339 of comments.
3340
3341 2007-10-17 Wojciech Polak <polak@gnu.org>
3342
3343 * src/print-xml.c (print_grammar): Renamed
3344 <terminal> and <nonterminal> attributes:
3345 "type" to "number" and "symbol" to "name".
3346 * data/xslt/xml2text.xsl (xsl:template match="terminal"):
3347 Use new attribute names.
3348 (xsl:template match="nonterminal"): Likewise.
3349 * data/xslt/xml2xhtml.xsl: Likewise.
3350
3351 2007-10-17 Joel E. Denny <jdenny@ces.clemson.edu>
3352
3353 * doc/bison.texinfo (Bison Options): Add entry for --print-datadir.
3354 (Option Cross Key): Likewise.
3355
3356 * src/print-xml.c (print_core): Don't print a reduction's lookahead set
3357 next to an item whose dot is not at the end of the RHS even if it
3358 happens to be associated with the same rule.
3359 * src/print.c (print_core): Likewise.
3360 * tests/conflicts.at (Unresolved SR Conflicts): Update output.
3361 (Resolved SR Conflicts): Update output.
3362 * tests/regression.at (Extra lookahead sets in report): New test case.
3363
3364 2007-10-11 Wojciech Polak <polak@gnu.org>
3365
3366 * src/print-xml.c (print_core): Remove item set
3367 redundancy.
3368 * data/xslt/bison.xsl (bison:ruleNumber): New key.
3369 Improve processing time. Suggested by Joel E. Denny.
3370 * data/xslt/xml2dot.xsl (xsl:template name="escape"):
3371 Write xsl:param "required" attribute as comment.
3372 * data/xslt/xml2text.xsl (xsl:template match="item"): New.
3373 (xsl:template match="rule"): Support new reduced itemset.
3374 (xsl:template match="point"): Remove.
3375 * data/xslt/xml2xhtml.xsl: Likewise.
3376
3377 2007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
3378
3379 * src/getargs.c (version): Update copyright year.
3380
3381 2007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
3382
3383 Make xml2dot.xsl and --graph produce the same output.
3384 * data/xslt/xml2dot.xsl (xsl:template match="rule"): Use a `&#10;'
3385 instead of a `\n'. That is, don't add escapes yet or they'll be doubly
3386 escaped later.
3387 (xsl:template name="output-node"): Use the new escape template instead
3388 of the string-replace template directly.
3389 (xsl:template name="output-edge"): Likewise.
3390 (xsl:template name="escape"): New, escapes backslashes and newlines in
3391 addition to quotation marks.
3392 * src/graphviz.c (start_graph, output_node, output_edge): Add
3393 whitespace to output for legibility.
3394
3395 Make xml2text.xsl and --report produce the same output, and remove the
3396 XML "conflicts" element since a conflict summary is easily extracted
3397 from the automaton.
3398 * data/xslt/bison.xsl: New.
3399 (xsl:template match="state" mode="bison:count-conflicts): New.
3400 * data/xslt/xml2text.xsl: Import bison.xsl.
3401 (xsl:template match="bison-xml-report"): Instead of styling the
3402 "conflicts" element, style the "automaton" element with mode
3403 "conflicts". Unlike the former, the latter lists S/R and R/R
3404 conflicts for a state on the same line.
3405 (xsl:template match="conflicts"): Remove.
3406 (xsl:template match="conflict"): Remove.
3407 (xsl:template match="terminal"): Line-wrap the list of rules in which
3408 the terminal is used.
3409 (xsl:template match="nonterminal"): Likewise for nonterminals.
3410 (xsl:template match="automaton" mode="conflicts"): New.
3411 (xsl:template match="state" mode="conflicts"): New.
3412 (xsl:template name="line-wrap"): New.
3413 (xsl:template name="ws-search"): New.
3414 * data/xslt/xml2xhtml.xsl: Import bison.xsl.
3415 (xsl:template match="bison-xml-report"): Instead of styling the
3416 "conflicts" element, style the "automaton" element with mode
3417 "conflicts."
3418 (xsl:template match="conflicts"): Remove.
3419 (xsl:template match="conflict"): Remove.
3420 (xsl:template match="automaton" mode="conflicts"): New.
3421 (xsl:template match="state" mode="conflicts): New.
3422 * src/conflicts.c (conflicts_output_xml): Remove.
3423 * src/conflicts.h (conflicts_output_xml): Remove prototype.
3424 * src/print-xml.c (print_xml): Don't invoke conflicts_output_xml.
3425 * src/print.c (print_grammar): Consistently wrap at the 66th column so
3426 the corresponding XSLT is easier. Also, never wrap between a word and
3427 the comma that follows it.
3428
3429 2007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
3430
3431 Improve C++ namespace support. Discussed starting at
3432 <http://lists.gnu.org/archive/html/help-bison/2007-09/msg00016.html>.
3433 * data/c++.m4: (b4_namespace_ref, b4_namespace_open,
3434 b4_namespace_close): New macros that interpret the %define variable
3435 "namespace" so its value can contain "::" to indicate nested
3436 namespaces.
3437 * data/glr.cc (b4_namespace): Don't define, and replace all uses with
3438 the above macros.
3439 * data/lalr1.cc (b4_namespace): Likewise.
3440 * data/location.cc (b4_namespace): Likewise.
3441 * doc/bison.texinfo (Decl Summary): Move `%define push_pull' entry
3442 inside a new table in the general %define entry. Document `%define
3443 namespace' there as well. Point the %name-prefix entry to it since it
3444 explains it more completely in the case of C++.
3445 (C++ Bison Interface): Mention `%define namespace' instead of
3446 %name-prefix.
3447 (Table of Symbols): Remove the `%define push_pull' entry. The %define
3448 entry suffices.
3449 * tests/c++.at (Relative namespace references): New test case.
3450 (Absolute namespace references): New test case.
3451 (Syntactically invalid namespace references): New test case.
3452 * tests/input.at (C++ namespace reference errors): New test case.
3453
3454 2007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
3455
3456 Add syncline support and location accessor to internal %define
3457 interfaces.
3458 * data/bison.m4 (b4_percent_define_get_loc): New.
3459 (b4_percent_define_get_syncline): New.
3460 (b4_percent_define_flag_if): Use b4_percent_define_get_loc.
3461 (b4_percent_define_default): Record defining location as line 1 rather
3462 than 0 for the sake of synchronizing #line's, and define
3463 b4_percent_define_syncline(VARIABLE).
3464 (b4_percent_define_check_values): Use b4_percent_define_get_loc.
3465 * src/muscle_tab.c (muscle_syncline_grow): New.
3466 (muscle_code_grow): Use muscle_syncline_grow.
3467 (muscle_percent_define_insert): Use muscle_percent_define_get_loc, and
3468 define b4_percent_define_syncline(VARIABLE).
3469 (muscle_percent_define_get_loc): New.
3470 (muscle_percent_define_get_syncline): New.
3471 (muscle_percent_define_flag_if): Use muscle_percent_define_get_loc, and
3472 remove some unused variables.
3473 (muscle_percent_define_default): Record defining location as line 1
3474 rather than 0 for the sake of synchronizing #line's, and define
3475 b4_percent_define_syncline(VARIABLE).
3476 (muscle_percent_define_check_values): Use
3477 muscle_percent_define_get_loc.
3478 * src/muscle_tab.h (muscle_percent_define_get_loc): Prototype.
3479 (muscle_percent_define_get_syncline): Prototype.
3480 * tests/skeletons.at (%define Boolean variables: invalid skeleton
3481 defaults): Update output for location change.
3482 (Complaining during macro argument expansion): Extend to test
3483 b4_percent_define_get_loc and b4_percent_define_get_syncline errors.
3484
3485 2007-10-07 Joel E. Denny <jdenny@ces.clemson.edu>
3486
3487 Fix some error-reporting macro bugs.
3488 * data/bison.m4 (b4_cat): New.
3489 (b4_error, b4_error_at): Use b4_cat to send error directives directly
3490 to stdout so they don't become arguments to other macros. Update
3491 comments and add examples.
3492 (b4_warn, b4_warn_at, b4_complain, b4_complain_at): Update comments and
3493 add examples.
3494 (b4_fatal, b4_fatal_at): Likewise, and invoke m4_exit(1) immediately
3495 after printing the error directive so that M4 doesn't report subsequent
3496 problems that are induced by this problem.
3497 * src/scan-skel.l: Recognize @` digraph outside of directive arguments
3498 instead of just in them. Recognize @\n in both places. Both expand to
3499 the empty string. Needed by b4_cat.
3500 * tests/skeletons.at (Complaining during macro argument expansion):
3501 New test case.
3502 (Fatal errors make M4 exit immediately): New test case.
3503
3504 2007-10-04 Joel E. Denny <jdenny@ces.clemson.edu>
3505
3506 Implement --print-datadir.
3507 * src/getargs.c (usage): Mention.
3508 (PRINT_DATADIR_OPTION): New anonymous enum member.
3509 (long_options): Add entry for it.
3510 (getargs): Add case for it calling compute_pkgdatadir.
3511 * src/output.c (output_skeleton): Encapsulate data directory
3512 computation from here...
3513 (prepare): ... and from here...
3514 (compute_pkgdatadir): ... into this new function.
3515 * src/output.h (compute_pkgdatadir): Prototype.
3516
3517 2007-09-29 Joel E. Denny <jdenny@ces.clemson.edu>
3518
3519 * src/print-xml.c (escape_bufs): New static global variable
3520 replacing...
3521 (xml_escape_n): ... the static local variable buf here.
3522 (print_xml): Free memory for escape_bufs.
3523 * src/reduce.c (reduce_xml): XML-escape terminal symbol tags.
3524
3525 2007-09-25 Joel E. Denny <jdenny@ces.clemson.edu>
3526
3527 Replace `%push-parser' and `%push-pull-parser' with
3528 `%define push_pull "push"' and `%define push_pull "both"'.
3529 `%define push_pull "pull"' is the default.
3530 * doc/bison.texinfo (Push Decl, Push Parser Function,
3531 Pull Parser Function, Parser Create Function, Parser Delete Function):
3532 Update declarations.
3533 (Decl Summary, Table of Symbols): Replace %push-parser and
3534 %push-pull-parser entries with a %define push_pull entry.
3535 * data/bison.m4 (b4_percent_define_check_values): New macro.
3536 (b4_pull_if, b4_push_if, b4_use_push_for_pull_if): Move these
3537 definitions...
3538 * data/c.m4 (b4_identification): ... and the YYPUSH and YYPULL cpp
3539 definitions...
3540 * data/push.c: ... to here and compute them from the value of the
3541 %define variable push_pull.
3542 * data/c-skel.m4: Instead of choosing the push.c skeleton for push
3543 parsing requests here...
3544 * data/yacc.c: ... hack this to switch to push.c any time
3545 b4_use_push_pull_flag or the %define variable push_pull is set. This
3546 will go away when we mv push.c yacc.c.
3547 * data/c++-skel.m4, data/glr.c, data/java-skel.m4: Don't report that
3548 push parsing is not supported since unused %define variables are
3549 reported anyway.
3550 * src/getargs.c, src/getargs.h (pull_parser, push_parser): Remove.
3551 * src/muscle_tab.h (muscle_percent_define_check_values): Update
3552 comments for consistency with b4_percent_define_check_values.
3553 * src/output.c (prepare): Don't insert b4_pull_flag and b4_push_flag
3554 muscles.
3555 * src/parse-gram.y (PERCENT_PUSH_PARSER, PERCENT_PUSH_PULL_PARSER):
3556 Remove.
3557 (prologue_declaration): Remove %push-parser and %push-pull-parser
3558 rules.
3559 * src/scan-gram.l (%push-parser, %push-pull-parser): Remove rules.
3560 * tests/calc.at: Update declarations.
3561 * tests/input.at (%define enum variables): New test case.
3562 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update
3563 declaration.
3564 (Push Parsing: Multiple impure instances): Update declaration.
3565 (Push Parsing: Unsupported Skeletons): New test case.
3566 * tests/torture.at (Exploding the Stack Size with Alloca): Update
3567 declaration.
3568 (Exploding the Stack Size with Malloc): Update declaration.
3569
3570 2007-09-24 Wojciech Polak <polak@gnu.org>
3571
3572 Add XSLT transformations.
3573
3574 * data/xslt/xml2dot.xsl: Transform XML into DOT.
3575 * data/xslt/xml2text.xsl: Transform XML into plain text.
3576 * data/xslt/xml2xhtml.xsl: Transform XML into XHTML.
3577 * data/Makefile.am (xsltdir): New variable.
3578 (dist_xslt_DATA): Add xslt/*.xsl files.
3579
3580 2007-09-23 Paul Eggert <eggert@cs.ucla.edu>
3581
3582 * src/conflicts.c (log_resolution): Fix indenting bugs I introduced.
3583 Problem reported by Wojciech Polak.
3584 * src/print-xml.c (xml_puts): Work even if LEVEL exceeds INT_MAX/2.
3585 (xml_printf): Undo change I made on 21 September; that is,
3586 indent 2 spaces, not 1.
3587
3588 2007-09-23 Joel E. Denny <jdenny@ces.clemson.edu>
3589
3590 Pacify ./configure --enable-gcc-warnings.
3591 * src/print-xml.c, src/print-xml.h (xml_puts): Make third argument
3592 `char const *' instead of `char *'.
3593 * src/state.c (state_rule_lookahead_tokens_print_xml): Remove unused
3594 local variable `sep'.
3595
3596 2007-09-21 Paul Eggert <eggert@cs.ucla.edu>
3597
3598 * src/gram.c (rule_rhs_print_xml): Now static, since it isn't used
3599 elsewhere.
3600 * src/print-xml.c: Prefer "const" after types; that's more consistent.
3601 (xml_printf): Indent just 1 space for level.
3602 (e_char, xlate_char): Remove.
3603 (xml_escape_string): Rewrite to avoid undefined behavior (used
3604 storage that was freed from the stack).
3605 (xml_escape_n): Don't bother checking for subscript error.
3606
3607 2007-09-21 Wojciech Polak <polak@gnu.org>
3608
3609 Add Bison XML Automaton Report.
3610
3611 Add support for an -x option to generate an XML report.
3612 It is not documented yet.
3613 * src/print-xml.c: New file.
3614 * src/print-xml.h: Likewise.
3615 * lib/timevar.def (TV_XML): New var.
3616 * src/Makefile.am (bison_SOURCES): Add print-xml.c, print-xml.h.
3617 * src/conflicts.c: Include print-xml.h.
3618 (solved_conflicts_xml_obstack): New var.
3619 (log_resolution, conflicts_solve, conflicts_free):
3620 Add support for XML report.
3621 (conflicts_output_val): New function.
3622 * src/conflicts.h (conflicts_output_val): New decl.
3623 * src/files.c (spec_xml_file): New var.
3624 (compute_output_file_names, output_file_names_free): Add XML support.
3625 * src/files.h (spec_xml_file): New decl.
3626 * src/getargs.c (xml_flag): New var.
3627 (usage, short_options, long_options, getargs): Add XML support.
3628 * src/getargs.h (xml_flag): New decl.
3629 * src/gram.c: Include print-xml.h.
3630 (rule_lhs_print_xml, rule_rhs_print_xml):
3631 (grammar_rules_partial_print_xml, grammar_rules_print_xml):
3632 New functions.
3633 * src/gram.h: Declare external ones.
3634 * src/main.c: Include print-xml.h.
3635 (main): Add XML support.
3636 * src/reduce.c: Include print-xml.h.
3637 (reduce_xml): New function.
3638 * src/reduce.h: Declare it.
3639 * src/state.c: Include print-xml.h.
3640 (state_new): Add XML support.
3641 (state_rule_lookahead_tokens_print_xml): New function.
3642 * src/state.h: Declare it.
3643 (struct state): New member solved_conflicts_xml.
3644 * src/symtab.c (symbol_class_get_string): New function.
3645 * src/symtab.h: Declare it.
3646
3647 2007-09-21 Paul Eggert <eggert@cs.ucla.edu>
3648
3649 * GNUmakefile: Switch to coreutils's version.
3650 * bootstrap: Likewise.
3651 * Makefile.cfg: Adjust to new GNUmakefile.
3652 * README-hacking: Likewise.
3653
3654 Import from gnulib:
3655
3656 2006-08-18 Paul Eggert <eggert@cs.ucla.edu>
3657 Bruno Haible <bruno@clisp.org>
3658
3659 * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
3660 and is a script that invokes bison. Tighten the code. Add comments.
3661
3662 2007-08-28 Joel E. Denny <jdenny@ces.clemson.edu>
3663
3664 Spell "boolean" as "Boolean". Reported by Akim Demaille.
3665 * data/bison.m4 (b4_percent_define_flag_if): Fix complaint.
3666 * doc/bison.texinfo (Decl Summary): Fix.
3667 * src/muscle_tab.c (muscle_percent_define_flag_if): Fix complaint.
3668 * tests/input.at (Boolean %define variables): Update output.
3669 * tests/skeletons.at (%define boolean variables: invalid skeleton
3670 defaults): Rename to...
3671 (%define Boolean variables: invalid skeleton defaults): ... this and
3672 update output.
3673
3674 2007-08-17 Joel E. Denny <jdenny@ces.clemson.edu>
3675
3676 In impure push mode, don't allow more than one yypstate to be allocated
3677 since multiple impure parsers would corrupt yynerrs.
3678 * data/push.c (yypstate_allocated): New static global variable
3679 initialized to 0.
3680 (yypull_parse): If yypstate_new returns 0, don't report it as memory
3681 exhaustion if yypstate_allocated is 1, but still return 2.
3682 (yypstate_new): Invoke yyerror and return 0 if yypstate_allocated is
3683 already 1. Otherwise, set it to 1.
3684 (yypstate_delete): Set it to 0.
3685 * tests/push.at (Push Parsing: Multiple impure instances): New test
3686 case.
3687
3688 2007-08-17 Bob Rossi <bob@brasko.net>
3689
3690 * doc/bison.texinfo (Push Decl): Document the push parser.
3691 (Table of Symbols): Ditto.
3692 (Pure Decl): Ditto.
3693 (Decl Summary): Ditto.
3694 (Multiple Parsers, Push Parser Function, Pull Parser Function,
3695 Parser Create Function, Parser Delete Function):
3696 Add new push parser symbols.
3697 (Table of Symbols): Document push-parser, push-pull-parser,
3698 yypush_parse, yypull_parse, yypstate_new and yypstate_delete.
3699
3700 2007-08-15 Paul Eggert <eggert@cs.ucla.edu>
3701
3702 Update to GPLv3.
3703 * doc/gpl-3.0.texi: New file.
3704 * doc/gpl.texi: Remove.
3705 * COPYING, GNUmakefile, HACKING, Makefile.am, Makefile.cfg:
3706 * Makefile.maint, NEWS, PACKAGING, README, README-alpha:
3707 * README-hacking, TODO, bootstrap, bootstrap.conf:
3708 * configure.ac, data/Makefile.am, data/README, data/bison.m4:
3709 * data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4:
3710 * data/glr.c, data/glr.cc, data/java-skel.m4, data/java.m4:
3711 * data/lalr1.cc, data/lalr1.java, data/location.cc:
3712 * data/push.c, data/yacc.c, data/m4sugar/m4sugar.m4:
3713 * djgpp/Makefile.maint, djgpp/README.in, djgpp/config.bat:
3714 * djgpp/config.sed, djgpp/config.site, djgpp/config_h.sed:
3715 * djgpp/djunpack.bat, djgpp/subpipe.c, djgpp/subpipe.h:
3716 * djgpp/testsuite.sed, doc/Makefile.am, doc/bison.texinfo:
3717 * doc/fdl.texi, doc/refcard.tex, etc/Makefile.am, etc/README:
3718 * etc/bench.pl.in, examples/Makefile.am, examples/extexi:
3719 * examples/calc++/Makefile.am, lib/Makefile.am, lib/abitset.c:
3720 * lib/abitset.h, lib/bbitset.h, lib/bitset.c, lib/bitset.h:
3721 * lib/bitset_stats.c, lib/bitset_stats.h, lib/bitsetv-print.c:
3722 * lib/bitsetv-print.h, lib/bitsetv.c, lib/bitsetv.h:
3723 * lib/ebitset.c, lib/ebitset.h, lib/get-errno.c:
3724 * lib/get-errno.h, lib/lbitset.c, lib/lbitset.h:
3725 * lib/libiberty.h, lib/main.c, lib/subpipe.c, lib/subpipe.h:
3726 * lib/timevar.c, lib/timevar.def, lib/timevar.h:
3727 * lib/vbitset.c, lib/vbitset.h, lib/yyerror.c:
3728 * m4/c-working.m4, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4:
3729 * m4/timevar.m4, src/LR0.c, src/LR0.h, src/Makefile.am:
3730 * src/assoc.c, src/assoc.h, src/closure.c, src/closure.h:
3731 * src/complain.c, src/complain.h, src/conflicts.c:
3732 * src/conflicts.h, src/derives.c, src/derives.h, src/files.c:
3733 * src/files.h, src/flex-scanner.h, src/getargs.c:
3734 * src/getargs.h, src/gram.c, src/gram.h, src/graphviz.c:
3735 * src/lalr.c, src/lalr.h, src/location.c, src/location.h:
3736 * src/main.c, src/muscle_tab.c, src/muscle_tab.h:
3737 * src/nullable.c, src/nullable.h, src/output.c, src/output.h:
3738 * src/parse-gram.c, src/parse-gram.h, src/parse-gram.y:
3739 * src/print.c, src/print.h, src/print_graph.c:
3740 * src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c:
3741 * src/reduce.h, src/relation.c, src/relation.h:
3742 * src/revision.h, src/scan-code.h, src/scan-code.l:
3743 * src/scan-gram.h, src/scan-gram.l, src/scan-skel.h:
3744 * src/scan-skel.l, src/state.c, src/state.h, src/symlist.c:
3745 * src/symlist.h, src/symtab.c, src/symtab.h, src/system.h:
3746 * src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h:
3747 * tests/Makefile.am, tests/actions.at, tests/c++.at:
3748 * tests/calc.at, tests/conflicts.at, tests/cxx-type.at:
3749 * tests/existing.at, tests/glr-regression.at:
3750 * tests/headers.at, tests/input.at, tests/java.at:
3751 * tests/local.at, tests/output.at, tests/push.at:
3752 * tests/reduce.at, tests/regression.at, tests/sets.at:
3753 * tests/skeletons.at, tests/synclines.at, tests/testsuite.at:
3754 * tests/torture.at:
3755 Update to GPLv3.
3756
3757 2007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
3758
3759 Get rid of broken %no-parser, -n, and --no-parser implementation and
3760 documentation.
3761 * TODO: Don't mention them.
3762 * doc/bison.1: Likewise.
3763 * doc/bison.texinfo (Decl Summary): Likewise.
3764 (Bison Options): Likewise.
3765 (Option Cross Key): Likewise.
3766 * src/getargs.c (no_parser_flag): Remove global variable.
3767 (usage): Don't print description of -n and --no-parser.
3768 (long_options): Remove --no-parser entry here.
3769 (getargs): Remove -n case in the switch here.
3770 * src/getargs.h (no_parser_flag): Remove extern.
3771 * tests/regression.at (Web2c Actions): Remove comment that mentions
3772 --no-parser.
3773
3774 2007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
3775
3776 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Do not
3777 name user variables starting with `yy'. Just pass NULL instead of a
3778 dummy local &yylval to yypush_parse.
3779 * tests/torture.at (AT_DATA_STACK_TORTURE): Do not name user variables
3780 starting with `yy'.
3781
3782 2007-08-03 Joel E. Denny <jdenny@ces.clemson.edu>
3783
3784 * data/yacc.c (yyexhaustedlab): Define it when YYERROR_VERBOSE is
3785 true since it's then always used regardless of whether yyoverflow is
3786 defined. Reported by Christian Burger at
3787 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00031.html>.
3788 * THANKS: Add Christian Burger.
3789
3790 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
3791 node names: say "Decl Summary" not "Bison Declaration Summary".
3792
3793 2007-07-28 Joel E. Denny <jdenny@ces.clemson.edu>
3794
3795 * src/muscle_tab.c (muscle_percent_define_flag_if): In order to
3796 determine whether this function has already complained about an invalid
3797 value for a %define boolean variable, don't check whether Bison has
3798 ever examined the value. As written, the check was a tautology.
3799 Instead, record and check for this complaint using a separate muscle.
3800
3801 2007-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
3802
3803 Fix push parsing memory leak reported by Brandon Lucia at
3804 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00032.html>.
3805 * THANKS: Add Brandon Lucia.
3806 * data/push.c (yypstate_delete): Free the stack if it was reallocated
3807 but the parse never completed and thus freed it.
3808 * tests/Makefile.am (TESTSUITE_AT): Add push.at.
3809 * tests/testsuite.at: Include push.at.
3810 * test/push.at: New.
3811 (Push Parsing: Memory Leak for Early Deletion): New test case.
3812
3813 2007-07-17 Joel E. Denny <jdenny@ces.clemson.edu>
3814
3815 Improve handling of multiple S/R conflicts in the same state and of S/R
3816 conflicts involving multiple reductions.
3817 * src/conflicts.c (resolve_sr_conflict): Don't assign the error action
3818 set for a state here or Bison will abort if it is reassigned on a
3819 later conflicted reduction in the same state.
3820 Similarly, don't finalize and assign the solved conflicts report here
3821 or it will be lost if it is reassigned on a later conflicted reduction
3822 in the same state.
3823 (set_conflicts): Instead, assign them both here after all S/R conflicts
3824 in the state have been fully examined.
3825 * src/print.c (shift_set): Rename to...
3826 (no_reduce_set): ... this.
3827 (print_reductions): Update for rename, and add %nonassoc error action
3828 tokens to no_reduce_set so that, when printing the first remaining
3829 reduction on an error action token, the reduction is enclosed in
3830 brackets.
3831 (print_results): Update for rename.
3832 * tests/conflicts.at (Solved conflicts report for multiple reductions
3833 in a state): New test case.
3834 (%nonassoc error actions for multiple reductions in a state): New test
3835 case.
3836
3837 * src/main.c (main): Don't depend on C99 features.
3838
3839 2007-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
3840
3841 * build-aux/.cvsignore: Add compile.
3842 * lib/.cvsignore: Add charset.alias, ref-add.sed, ref-del.sed, and
3843 uniwidth.
3844
3845 2007-07-10 Joel E. Denny <jdenny@ces.clemson.edu>
3846
3847 * bootstrap (slurp): Create target directories that don't exist.
3848 Specifically, we need lib/uniwidth/ because of recent Gnulib changes.
3849
3850 2007-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
3851
3852 * LR0.c (new_itemsets): Fix wording in comments: say item index rather
3853 than item number.
3854 * closure.c (closure): Likewise.
3855 * state.h (reductions): Comment sorting of rules.
3856 (state): Comment sorting of items.
3857
3858 2007-07-02 Joel E. Denny <jdenny@ces.clemson.edu>
3859
3860 Fix C++ test cases after recent Gnulib changes. Discussed starting at
3861 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00000.html>.
3862 * examples/calc++/Makefile.am (DEFAULT_INCLUDES): Override Automake's
3863 definition in order to avoid Gnulib headers since we don't use config.h
3864 here.
3865 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Use AT_DATA_GRAMMAR
3866 rather than AT_DATA so that config.h is included.
3867
3868 2007-07-01 Joel E. Denny <jdenny@ces.clemson.edu>
3869
3870 * data/glr.c (yy_yypstack, yypstates, yypdumpstack): Use YYFPRINTF
3871 instead of fprintf. Guard these functions with #if YYDEBUG instead of
3872 #ifdef YYDEBUG for consistency with all other uses of YYDEBUG in Bison
3873 and so that YYFPRINTF is guaranteed to be defined here.
3874
3875 2007-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
3876
3877 * src/muscle_tab.c (muscle_percent_define_invalid_value): Replace
3878 with...
3879 (muscle_percent_define_check_values): ... this more helpful function.
3880 Again, it's not used yet, but it will be.
3881 * src/muscle_tab.h: Likewise.
3882
3883 Improve some comments in parser table construction.
3884 * src/LR0.c (new_itemsets): Explain sorting of itemset and kernel_base.
3885 (generate_states): Don't mention ruleset, which is internal to closure.
3886 * src/closure.c (closure): Explain sorting of core and itemset, which
3887 is required for this function to behave correctly.
3888 * src/closure.h (closure): Mention sorting.
3889
3890 2007-05-28 Joel E. Denny <jdenny@ces.clemson.edu>
3891
3892 * src/lalr.c (state_lookahead_tokens_count): For code readability,
3893 move the check for disabled transitions to an aver since conflict
3894 resolution hasn't happened yet.
3895
3896 * src/lalr.c (state_lookahead_tokens_count): Remove the check that
3897 labels a state as inconsistent just because it has error transitions.
3898 The original form of this check appeared in revision 1.1 of lalr.c,
3899 which was committed on 1991-12-21. Now (at least), changing the
3900 consistency label on such a state appears to have no useful effect in
3901 any of the places it is examined, which I enumerate below. The key
3902 point to understanding each item in this enumeration is that a state
3903 with an error transition is labelled consistent in the first place only
3904 if it has no rules, so the check cannot matter for states that have
3905 rules. (1) Labelling a state as inconsistent will cause set_conflicts
3906 to try to identify its conflicts, and a state must have *rules* to have
3907 conflicts. (2) Labelling a state as inconsistent will affect how
3908 action_row sets the default *rule* for the state. (3) Labelling a
3909 state as inconsistent will cause build_relations to add lookback edges
3910 to *rules* in that state.
3911 * src/state.h (struct state): Word the comment for member consistent
3912 more carefully.
3913
3914 2007-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
3915
3916 Don't depend on C99 features.
3917 * src/conflicts.c (conflicts_update_state_numbers): Fix for-loop.
3918 * src/lalr.c (lalr_update_state_numbers): Fix for-loop.
3919 * src/reader.c (check_and_convert_grammar): Fix for-loop.
3920 * src/state.c (state_mark_reachable_states): Fix for-loop.
3921 (state_remove_unreachable_states): Fix for-loop.
3922
3923 Don't widen struct state with member reachable just to temporarily
3924 record reachability. Instead, use a local bitset.
3925 * src/state.h (struct state): Remove member.
3926 * src/state.c (state_new): Don't initialize it.
3927 (state_mark_reachable_states): Rename to...
3928 (state_record_reachable_states): ... this, and use bitset.
3929 (state_remove_unreachable_states): Use bitset.
3930
3931 2007-05-26 Joel E. Denny <jdenny@ces.clemson.edu>
3932
3933 * src/Makefile.am (yacc): Quote target action commands properly so
3934 that the yacc script isn't corrupt. Reported by Hans Aberg at
3935 <http://lists.gnu.org/archive/html/bug-bison/2007-05/msg00003.html>.
3936
3937 * data/glr.c (yylval): As in yacc.c, don't extern in the header for
3938 the case of pure parsers. Reported by Frans Englich at
3939 <http://lists.gnu.org/archive/html/help-bison/2007-05/msg00018.html>.
3940 * THANKS: Add Frans Englich.
3941
3942 * NEWS (2.3a+): In the %code entry, reference section `Bison
3943 Declaration Summary' from the manual now since the %code summary has
3944 moved there.
3945 * doc/bison.texinfo (Prologue Alternatives): Mention that directives
3946 in the rules section must be terminated by semicolons.
3947
3948 2007-05-20 Joel E. Denny <jdenny@ces.clemson.edu>
3949
3950 Extend the front-end API for %define variables to more completely
3951 mirror the back-end. This will be useful in the future.
3952 * data/bison.m4 (b4_percent_define_get, b4_percent_define_ifdef):
3953 Update comments to mention the new front-end counterparts of these
3954 macros.
3955 * src/muscle_tab.c (MUSCLE_COMMON_DECODE): New macro with common code
3956 for muscle_string_decode and muscle_location_decode.
3957 (muscle_string_decode): New static function.
3958 (muscle_location_decode): Use MUSCLE_COMMON_DECODE.
3959 (muscle_percent_define_get, muscle_percent_define_ifdef): New
3960 functions.
3961 (muscle_percent_define_flag_if): Use muscle_percent_define_ifdef and
3962 muscle_percent_define_get to mimic the b4_percent_define_flag_if
3963 implementation more closely.
3964 (muscle_percent_define_invalid_value): New function.
3965 * src/muscle_tab.h (muscle_percent_define_get,
3966 muscle_percent_define_ifdef, muscle_percent_define_invalid_value):
3967 Prototype.
3968
3969 2007-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
3970
3971 * NEWS (2.3a+): Mention yesterday's state-removal change.
3972 (2.3a): Remove the %language entry, which was added after 2.3a.
3973 * src/LR0.c, src/closure.c, src/closure.h, src/conflicts.c,
3974 src/conflicts.h, src/lalr.c, src/lalr.h, src/print.c,
3975 src/print_graph.c, src/state.c, src/state.h, tests/conflicts.at,
3976 tests/existing.at: Update copyright date.
3977
3978 2007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
3979
3980 If conflict resolution makes states unreachable, remove those states,
3981 report rules that are then unused, and don't report conflicts in those
3982 states.
3983 * src/conflicts.c, src/conflicts.h (conflicts_update_state_numbers):
3984 New global function.
3985 * src/lalr.c, src/lalr.h (lalr_update_state_numbers): New global
3986 function.
3987 * src/main.c (main): After conflict resolution, remove the unreachable
3988 states and update all data structures that reference states by number.
3989 * src/state.c (state_new): Initialize each state's reachable member to
3990 false.
3991 (state_mark_reachable_states): New static function.
3992 (state_remove_unreachable_states): New global function.
3993 * src/state.h (struct state): Add member bool reachable.
3994 (state_remove_unreachable_states): Prototype.
3995 * tests/conflicts.at (Unreachable States After Conflict Resolution):
3996 New test case.
3997 * tests/existing.at (GNU pic Grammar): Update test case output now that
3998 an unused rule is discovered.
3999
4000 2007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
4001
4002 Minor code cleanup in parser table construction.
4003 * src/LR0.c (new_itemsets): Use item_number_is_symbol_number.
4004 (new_itemsets, save_reductions): Update for rename to nitemset.
4005 * src/closure.c (nritemset): Rename to...
4006 (nitemset): ... this since the "r" appears to meaningless and isn't
4007 used in the comments.
4008 (closure): Update for rename.
4009 * src/closure.h (nritemset): Update extern to...
4010 (nitemset): ... this.
4011 * src/lalr.c (LA): Fix a typo in comments.
4012 * src/print.c (print_core): Update for rename to nitemset.
4013 * src/print_graph.c (print_graph): Likewise.
4014 * src/state.h: Fix some typos in header comments.
4015
4016 2007-04-04 Paul Eggert <eggert@cs.ucla.edu>
4017
4018 * THANKS: Use ASCII for Sebastien Fricker's name. Bison source
4019 still sticks to ASCII. Sorry!
4020
4021 * README-hacking: New file, taken mostly from coreutils, with changes
4022 for Bison. Contains much of the contents of:
4023 * README-cvs: Remove.
4024 * bootstrap: Sync from gnulib.
4025 * build-aux/.cvsignore: Remove *.t, mkinstalldirs.
4026 * lib/.cvsignore: Add wchar.h, wctype.h. Remove exit.h.
4027
4028 2007-03-10 Joel E. Denny <jdenny@ces.clemson.edu>
4029
4030 * doc/bison.texinfo (Destructor Decl): Fix typo reported by Sebastian
4031 Setzer.
4032 (Java Differences): Fix some typos.
4033 * THANKS: Add Sebastian Setzer.
4034
4035 2007-03-07 Paolo Bonzini <bonzini@gnu.org>
4036
4037 * data/java.m4 (b4_single_class_if): Remove.
4038 (b4_abstract_if): Look at "%define abstract".
4039 (b4_lexer_if): New.
4040 (b4_union_name): Rename...
4041 (b4_yystype): ... to this. Map to "%define stype".
4042 (b4_rhs_value, b4_parse_param_decl, b4_lex_param_decl,
4043 b4_maybe_throws): Fix quoting.
4044 (b4_lex_param_call): Move below to keep b4_*_param_decl close.
4045 * data/lalr1.java (Lexer interface): Always define.
4046 (Lexer interface within parser class): Remove.
4047 (YYLexer class): New, used when "%code lexer" is present.
4048 (constructor): When "%code lexer" is used, pass %lex-param
4049 to the lexer constructor.
4050 (yylex, yyparse): Remove %lex-param from method invocations
4051 (YYStack, yyaction, yyparse): Rename b4_union_name to b4_yystype.
4052
4053 * doc/bison.texinfo (Java Bison Interface): Mention "%define
4054 abstract". Rename "%define union_name" to "%define stype".
4055 Rename method names according to previous patch.
4056 (Java Scanner Interface): Describe "%code lexer" instead of
4057 "%pure-parser" and "%define single_class".
4058 (Java Differences): Mention "%code lexer".
4059
4060 * tests/java.at (_AT_DATA_JAVA_CALC_Y): Remove final argument.
4061 Include scanner here, using macros from tests/local.at.
4062 (AT_DATA_CALC_Y): Remove final argument.
4063 (_AT_CHECK_JAVA_CALC): Likewise.
4064 (AT_CHECK_JAVA_CALC): Likewise. Test all four combinations
4065 of %locations and %error-verbose.
4066 (main): Test with and without %lex-param.
4067 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_LEXPARAM_IF.
4068 (AT_BISON_OPTION_POPDEFS): Pop it.
4069
4070 2007-03-07 Juan Manuel Guerrero <juan.guerrero@gmx.de>
4071
4072 DJGPP spefic issue. Inhibit the use of disallowed characters for
4073 file name genertion on Win98, WinXP, etc. These are |<>":?*\
4074 and concern testsuite case 46.
4075 * Makefile.am: djgpp/testsuite.sed added to EXTRA_DIST
4076 * djgpp/testsuite.sed: Inhibit the use of disallowed characters.
4077 * djgpp/config.bat: Inhibit the use of disallowed characters.
4078
4079 2007-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
4080
4081 Miscellaneous %define and %code cleanup.
4082 * data/bison.m4 (b4_percent_define_flag_if): Correct comments on how
4083 values are interpreted.
4084 * doc/bison.texinfo (Decl Summary): Clean up and extend %define
4085 documentation a little more.
4086 * src/muscle_tab.c (MUSCLE_USER_NAME_CONVERT,
4087 muscle_percent_define_insert, muscle_percent_code_grow): New
4088 functions/macros.
4089 * src/muscle_tab.h (muscle_percent_define_insert,
4090 muscle_percent_code_grow): Prototype.
4091 * src/parse-gram.y (prologue_declaration): Use
4092 muscle_percent_define_insert and muscle_percent_code_grow when parsing
4093 %define and %code directives.
4094
4095 Make it easy to share %define boolean variables between the front-end
4096 and back-end. Though not used yet, this will be useful in the future.
4097 * data/bison.m4 (b4_check_user_names): Rewrite comments to talk about
4098 Bison uses of names rather than just skeleton uses of names.
4099 (b4_percent_define_get, b4_percent_define_ifdef): Rename
4100 b4_percent_define_skeleton_variables(VARIABLE) to
4101 b4_percent_define_bison_variables(VARIABLE).
4102 (b4_percent_code_get, b4_percent_code_ifdef): Rename
4103 b4_percent_code_skeleton_qualifiers(QUALIFIER) to
4104 b4_percent_code_bison_qualifiers(QUALIFIER).
4105 (b4_check_user_names_wrap): Update for renames.
4106 * src/muscle_tab.c, src/muscle_tab.h (muscle_percent_define_flag_if,
4107 muscle_percent_define_default): New functions mimicking
4108 b4_percent_define_flag_if and b4_percent_define_default.
4109
4110 For %define variables, report locations for invalid values and
4111 redefinitions.
4112 * data/bison.m4 (b4_percent_define_flag_if): Read
4113 b4_percent_define_loc(VARIABLE) to report the location of an invalid
4114 value for VARIABLE.
4115 (b4_percent_define_default): Save a special location in
4116 b4_percent_define_loc(VARIABLE) in case the default value for VARIABLE
4117 must later be reported as invalid.
4118 * src/muscle_tab.c (muscle_location_grow, muscle_location_decode): New
4119 functions.
4120 (muscle_percent_define_insert): Record the location of VARIABLE in
4121 muscle percent_define_loc(VARIABLE), and use it to report the previous
4122 location for a redefinition.
4123 (muscle_percent_define_flag_if): Update like b4_percent_define_flag_if.
4124 (muscle_percent_define_default): Update like b4_percent_define_default.
4125 (muscle_grow_user_name_list): Rename to...
4126 (muscle_user_name_list_grow): ... this for consistency and use
4127 muscle_location_grow.
4128 * src/muscle_tab.h (muscle_location_grow): Prototype.
4129 * tests/input.at (%define errors): Update expected output.
4130 * tests/skeletons.at (%define boolean variables: invalid skeleton
4131 defaults): New test case.
4132
4133 2007-02-28 Joel E. Denny <jdenny@ces.clemson.edu>
4134
4135 * src/print.c (lookahead_set, state_default_rule): Remove.
4136 (print_reductions): Replace state_default_rule invocation with
4137 equivalent use of yydefact, which was computed in token_actions in
4138 tables.c.
4139 (print_results): Don't allocate lookahead_set.
4140
4141 2007-02-27 Paolo Bonzini <bonzini@gnu.org>
4142
4143 * data/lalr1.java: Prefix all private members with yy.
4144
4145 2007-02-24 Joel E. Denny <jdenny@ces.clemson.edu>
4146
4147 Use YYFPRINTF instead of fprintf where appropriate. Reported by
4148 Sebastien Fricker at
4149 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00035.html>.
4150 * THANKS: Add Sebastien Fricker.
4151 * data/glr.c, data/push.c, data/yacc.c (yy_reduce_print): Implement.
4152 * doc/bison.texinfo (Tracing): Make it clearer that YYFPRINTF must
4153 accept a variable number of arguments.
4154
4155 2007-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
4156
4157 * bootstrap: Remove occurrences of .#bootmp from lib/Makefile.
4158
4159 2007-02-13 Juan Manuel Guerrero <juan.guerrero@gmx.de>
4160
4161 * djgpp/config.bat: Adjustments concerning the use of autoconf 2.61.
4162 * djgpp/config.sed: Adjustments concerning the use of autoconf 2.61.
4163 * djgpp/config.site: Adjustments concerning the use of autoconf 2.61.
4164
4165 2007-02-11 Paul Eggert <eggert@cs.ucla.edu>
4166
4167 Undo my 2007-02-07 change, switching back to the c-strcase module
4168 introduced in the 2007-02-03 change. Bruno Haible reported that
4169 the 2007-02-07 change would be dangerous in Turkish if we add a
4170 language whose name contains "i", since "i" is not lowercase "I"
4171 in Turkish.
4172 * bootstrap.conf (gnulib_modules): Add c-strcase. Remove strcase.
4173 * lib/.cvsignore: Add c-ctype.c, c-ctype.h, c-strcase.h,
4174 c-strcasecomp.c, c-strncasecmp.c. Remove strcasecmp.c, strncasecmp.c.
4175 * m4/.cvsignore: Remove strcase.m4.
4176 * src/getargs.c: Revert 2007-02-07 change, as follows.
4177 Include c-strcase.h.
4178 (language_argmatch): Use c_strcasecmp rather than strcasecmp.
4179
4180 2007-02-11 Bruno Haible <bruno@clisp.org>
4181
4182 Enable the Java related testsuite tests when the only Java compiler
4183 found is a gcj < 4.3. Discussed at
4184 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00016.html>.
4185 * configure.ac (gt_JAVACOMP): Don't specify a target_version.
4186
4187 2007-02-11 Joel E. Denny <jdenny@ces.clemson.edu>
4188
4189 * data/Makefile.am: Update copyright date.
4190 * data/push.c (yypull_parse): Report memory exhaustion and return 2 if
4191 yypstate_new returns NULL.
4192 (yypstate_new): Return NULL if malloc does.
4193 * src/reader.c (packgram): Move translation of rule actions from the
4194 beginning of packgram to...
4195 (check_and_convert_grammar): ... here right before packgram is invoked
4196 so it's easier to write more complete comments, and remove redundant
4197 code.
4198
4199 2007-02-10 Joel E. Denny <jdenny@ces.clemson.edu>
4200
4201 As in semantic actions, make @$ in %initial-action, %destructor, and
4202 %printer imply %locations.
4203 * src/scan-code.l (SC_SYMBOL_ACTION): Set locations_flag = true when
4204 scanning @$.
4205 * tests/actions.at (AT_CHECK_ACTION_LOCATIONS): New macro supporting...
4206 (@$ in %initial-action implies %locations,
4207 @$ in %destructor implies %locations,
4208 @$ in %printer implies %locations): ... these new test cases.
4209
4210 2007-02-07 Paul Eggert <eggert@cs.ucla.edu>
4211
4212 Undo most of the 2007-02-03 change, switching to the strcase module
4213 now that gnulib strcase has been fixed.
4214 * bootstrap.conf (gnulib_modules): Remove c-strcase. Add strcase.
4215 * lib/.cvsignore: Remove c-ctype.c, c-ctype.h, c-strcase.h,
4216 c-strcasecomp.c, c-strncasecmp.c. Add strcasecmp.c, strncasecmp.c
4217 * m4/.cvsignore: Add strcase.m4.
4218 * src/getargs.c: Revert 2007-02-03 change, as follows.
4219 Don't include c-strcase.h.
4220 (language_argmatch): Use strcasecmp rather than c_strcasecmp.
4221 strcasecmp has "unspecified behavior" outside the POSIX locale,
4222 but it works fine in practice if at least one argument is ASCII,
4223 as is the case in Bison.
4224
4225 2007-02-07 Paolo Bonzini <bonzini@gnu.org>
4226
4227 * tests/java.at: Skip tests if only one of javac/java is present.
4228 Reported by Joel E. Denny.
4229 * tests/atlocal.in: Adjust copyright years.
4230
4231 2007-02-05 Paolo Bonzini <bonzini@gnu.org>
4232
4233 * data/lalr1.java (Stack): Work around old verifiers that disallow
4234 access to the private fields of an inner class, from the outer class.
4235 We can make Stack's fields public because user code doesn't have access
4236 to the instance of Stack used by parse(). Reported by Paul Eggert.
4237
4238 2007-02-03 Paul Eggert <eggert@cs.ucla.edu>
4239
4240 * .cvsignore: Add javacomp.sh, javaexec.sh. Is this really
4241 the right spot for these files?
4242 * bootstrap.conf (gnulib_modules): Add c-strcase.
4243 * lib/.cvsignore: Add c-ctype.c c-ctype.h, c-strcasecomp.c,
4244 c-strncasecmp.c.
4245 * src/getargs.c: Include c-strcase.h.
4246 (language_argmatch): Use c_strcasecmp rather than strcasecmp,
4247 to avoid unspecified behavior.
4248
4249 2007-02-01 Joel E. Denny <jdenny@ces.clemson.edu>
4250
4251 * doc/bison.texinfo (Decl Summary): Correct typo.
4252
4253 2007-01-30 Paolo Bonzini <bonzini@gnu.org>
4254
4255 * data/bison.m4 (b4_percent_define_flag_if): Don't treat 0 as false.
4256 Complain if the value does not match empty, "true" or "false".
4257 * data/c++.m4: Adjust default definitions of %define variables.
4258 * data/java.m4: Adjust default definitions of %define variables.
4259 * doc/bison.texinfo (Decl Summary): Adjust the %define entry according
4260 to above behavior.
4261 * tests/input.at (Boolean %define variables): Test new behavior.
4262
4263 2007-01-29 Paolo Bonzini <bonzini@gnu.org>
4264
4265 * NEWS: Mention java.
4266 * TODO: Remove things that are done.
4267 * bootstrap.conf: Add javacomp-script and javaexec-script.
4268 * configure.ac: Invoke gt_JAVACOMP and gt_JAVAEXEC.
4269
4270 * data/Makefile.am: Add new files.
4271 * data/java-skel.m4: New.
4272 * data/java.m4: New.
4273 * data/lalr1.java: New.
4274
4275 * doc/bison.texinfo: Put "A Complete C++ Example" under
4276 C++ Parsers. Add Java Parsers. Put C++ Parsers and Java Parsers
4277 under Other Languages.
4278
4279 * src/getargs.c (valid_languages): Add Java.
4280 * src/getargs.h (struct bison_language): Update size of string fields.
4281
4282 * tests/Makefile.am: Add java.at.
4283 * tests/atlocal.in: Add CONF_JAVA and CONF_JAVAC.
4284 * tests/java.at: New.
4285 * tests/testsuite.at: Include it.
4286
4287 2007-01-28 Joel E. Denny <jdenny@ces.clemson.edu>
4288
4289 Clean up.
4290 * src/scan-skel.l (at_directive_perform): Add at_directive_argc and
4291 at_directive_argv arguments so these no longer have to be global
4292 variables. Also, update the implementation for the following changes.
4293 (fail_for_at_directive_too_many_args,
4294 fail_for_at_directive_too_few_args): Add at_directive_name argument.
4295 (at_directive_name): Remove as at_directive_argv[0] will be used for
4296 this now.
4297 (AT_DIRECTIVE_ARGC_MAX): Increment to make space in at_directive_argv
4298 for the directive name.
4299 (at_directive_argc, at_directive_argv): Make these local within
4300 skel_lex instead of global.
4301 (INITIAL): Update directive start action for above changes.
4302 (SC_AT_DIRECTIVE_ARG): Rename to...
4303 (SC_AT_DIRECTIVE_ARGS): ... this, and update for above changes.
4304 (SC_AT_DIRECTIVE_SKIP_WS): Update.
4305 (scan_skel): Move yylex_destroy to...
4306 (skel_scanner_free): ... here.
4307 * tests/skeletons.at (installed skeleton file name): Rename to...
4308 (installed skeleton file names): ... this.
4309
4310 2007-01-27 Joel E. Denny <jdenny@ces.clemson.edu>
4311
4312 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
4313 node names: say "Table of Symbols" not "Bison Symbols", and say "Decl
4314 Summary" not "Directives".
4315 * doc/bison.texinfo (Decl Summary, Calc++ Parser): Cross-reference the
4316 %code entry in "Decl Summary" rather than the one in "Table of Symbols"
4317 since the former is now the more complete one.
4318 (Prologue Alternatives): Likewise and do the same for %defines.
4319 (Table of Symbols): Add summary of %code, add summary of %define, and
4320 move full %code documentation to...
4321 (Decl Summary): ... here for consistency with other entries in these
4322 sections.
4323 Move %define entry in order to keep this list alphabetized.
4324 Reword %define entry a little to put less emphasis on the skeleton
4325 concept, which most users shouldn't have to think about.
4326
4327 2007-01-26 Paul Eggert <eggert@cs.ucla.edu>
4328
4329 Adjust to recent gnulib changes.
4330 * lib/.cvsignore: Remove stpcpy.h, strndup.h, strnlen.h.
4331 Add string.h, string_.h, unistd_.h, wchar_.h.
4332 * m4/.cvsignore: Add gnulib-common.m4, string_h.m4, wchar.m4.
4333 * src/system.h: Don't include <stpcpy.h>; this is now done by
4334 <string.h>.
4335
4336 2007-01-23 Paolo Bonzini <bonzini@gnu.org>
4337
4338 Simplify implementation of unqualified %code, implement macros for
4339 uniform treatment of boolean %define flags. Document %define.
4340 * data/bison.m4 (b4_percent_define_ifdef, b4_percent_define_flag_if,
4341 b4_percent_code_ifdef): New.
4342 (b4_percent_code_get): Map unqualified %code to b4_percent_code().
4343 * data/c++.m4: Define default value for global_tokens_and_yystype.
4344 * data/glr.cc: Likewise.
4345 * data/location.cc: Use b4_percent_define_flag_if.
4346
4347 * doc/bison.texinfo (Decl Summary): Document %define.
4348
4349 * src/parse-gram.y (Unqualified %code): Change muscle name to
4350 b4_percent_code().
4351 (content.opt): Default to empty.
4352
4353 2007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
4354
4355 Implement support for relative and absolute skeleton file names.
4356 Discussed starting at
4357 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00071.html>.
4358 * doc/bison.texinfo (Decl Summary): Document in %skeleton entry.
4359 (Bison Options): Document in --skeleton entry.
4360 * src/output.c (output_skeleton): Use strncpy rather than strcpy since
4361 full_skeleton can't necessarily hold all of pkgdatadir.
4362 If the specified skeleton file name contains a `/', don't prepend
4363 pkgdatadir.
4364 * src/parse-gram.y (prologue_declaration): If the specified skeleton
4365 file name contains a `/', prepend the grammar file directory.
4366 * tests/Makefile.am (TESTSUITE_AT): Add skeletons.at.
4367 * skeletons.at: New file.
4368 (relative skeleton file names): New test case.
4369 (installed skeleton file names): New test case.
4370 * tests/testsuite.at: Include skeletons.at.
4371
4372 * bootstrap: Update copyright to 2007.
4373
4374 2007-01-17 Paolo Bonzini <bonzini@gnu.org>
4375
4376 * bootstrap: Remove occurrences of .#bootmp from the files.
4377
4378 2007-01-17 Akim Demaille <akim@epita.fr>
4379
4380 * doc/bison.texinfo (Calc++ Parser): Don't try to alias
4381 nonterminals.
4382 Use per-type %printer.
4383
4384 2007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
4385
4386 * NEWS, data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4,
4387 data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
4388 djgpp/config.site, src/files.c, src/files.h, src/main.c,
4389 src/muscle_tab.c, src/muscle_tab.h, src/parse-gram.y, src/reader.h,
4390 src/scan-skel.h, src/scan-skel.l, tests/actions.at, tests/calc.at,
4391 tests/glr-regression.at, tests/input.at, tests/local.at,
4392 tests/output.at, tests/torture.at: Update copyright to 2007.
4393
4394 2007-01-16 Akim Demaille <akim@epita.fr>
4395
4396 * doc/bison.texinfo (Calc++ Parsing Driver): Let "parse" return an
4397 error code.
4398 (Calc++ Scanner): Exit with failure if we can't open the input
4399 file.
4400 Accept "-" standing for stdin.
4401 (Calc++ Top Level): Print the result only if the parsing was
4402 successful.
4403
4404 2007-01-16 Akim Demaille <akim@epita.fr>
4405
4406 * data/lalr1.cc (yy_reduce_print_): Add a missing end-of-line.
4407
4408 2007-01-15 Paolo Bonzini <bonzini@gnu.org>
4409 and Joel E. Denny <jdenny@ces.clemson.edu>
4410
4411 Clean up %define and %code implementation in M4 some. Most
4412 importantly, rename all related macros to be in the b4_percent_define
4413 and b4_percent_code namespaces. Also, complete support for `.' in
4414 %define variable names and %code qualifiers.
4415 * data/bison.m4 (b4_check_user_names): Check for special
4416 "SKELETON-NAMESPACE(name)" macros instead of using two nested
4417 m4_foreach loops.
4418 (b4_get_percent_define, b4_get_percent_code): Rename to...
4419 (b4_percent_define_get, b4_percent_code_get): ... these.
4420 Extend documentation with examples.
4421 For SKELETON-NAMESPACE (as documented for b4_check_user_names), use
4422 b4_percent_define_skeleton_variables and
4423 b4_percent_code_skeleton_qualifiers.
4424 Expect any value for the %define variable `foo' to be stored in the
4425 macro named `b4_percent_define(foo)'; expect any %code blocks for the
4426 qualifier `foo' to be stored in a macro named `b4_percent_code(foo)';
4427 expect any unqualified %code blocks to be stored in a macro named
4428 `b4_percent_code_unqualified'.
4429 Use m4_indir so that %define variable names and %code qualifiers can
4430 contain `.', which is allowed by the grammar parser.
4431 (b4_percent_define_default): New macro to set a default value for a
4432 %define variable.
4433 (m4_wrap): Update wrapped code, and fix some underquoting.
4434 (b4_check_user_names_wrap): Update and define outside the m4_wrap.
4435 Expect grammar uses of %define variables and %code qualifiers to be
4436 defined in b4_percent_define_user_variables and
4437 b4_percent_code_user_qualifiers.
4438 * data/c++.m4: Use b4_percent_define_default rather than
4439 m4_define_default. Fix some underquoting. Skeleton usage of %define
4440 variable define_location_comparison now implies skeleton usage of
4441 %define variable filename_type.
4442 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
4443 data/push.c, data/yacc.c: Update macro names.
4444 * src/parse-gram.y (prologue_declaration, grammar_declaration): Update
4445 muscle names.
4446
4447 2007-01-14 Juan Manuel Guerrero <juan.guerrero@gmx.de>
4448
4449 DJGPP specific issues.
4450
4451 * djgpp/config.site: Set ac_cv_path_mkdir to a sane DJGPP specific
4452 default. Set gl_cv_absolute_wctype_h to a sane DJGPP specific default.
4453
4454 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
4455
4456 * tests/glr-regression.at: Use AT_PARSER_CHECK rather than AT_CHECK to
4457 run parsers in all tests so that Valgrind is invoked during
4458 maintainer-check-valgrind.
4459 (Duplicate representation of merged trees): Free all semantic values.
4460 (Duplicated user destructor for lookahead): Likewise.
4461
4462 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
4463
4464 * tests/local.at (AT_PARSER_CHECK): Add a PRE argument to specify a
4465 command-line prefix.
4466 * tests/torture.at (Exploding the Stack Size with Alloca): Stderr is
4467 ignored, so use that PRE to set --log-fd=1 in VALGRIND_OPTS so we don't
4468 miss Valgrind messages.
4469 (Exploding the Stack Size with Malloc): Likewise.
4470
4471 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
4472
4473 Ignore YYSTACK_USE_ALLOCA for push parsers since the stacks can't be
4474 locals. Reported by Juan Manuel Guerrero at
4475 <http://lists.gnu.org/archive/html/bug-bison/2007-01/msg00000.html>.
4476 * data/push.c: Enclose the #ifdef YYSTACK_USE_ALLOCA in b4_push_if.
4477 Fix some indentation also.
4478 * tests/torture.at (Exploding the Stack Size with Alloca): Add comment
4479 explaining this issue.
4480
4481 2007-01-09 Paolo Bonzini <bonzini@gnu.org>
4482 and Joel E. Denny <jdenny@ces.clemson.edu>
4483
4484 Simplify union and prologue handling, and escape union and lex/parse
4485 params with digraphs.
4486 * data/bison.m4 (b4_pre_prologue, b4_post_prologue): Set their default
4487 values to the empty string since these are no longer guaranteed
4488 initialized by the front-end.
4489 * data/glr.c, data/glr.cc, data/lalr1.cc, data/push.c, data/yacc.c: Add
4490 braces around b4_user_stype since this is no longer done by the
4491 front-end.
4492 * src/files.c, src/files.h (pre_prologue_obstack,
4493 post_prologue_obstack): Remove.
4494 * src/muscle_tab.c (muscle_pair_list_grow): Don't duplicate header
4495 comments here. Use MUSCLE_OBSTACK_SGROW so that values are escaped
4496 with digraphs. This fixes lex params and parse params.
4497 * src/muscle_tab.h (muscle_pair_list_grow): Update comments.
4498 * src/output.c (prepare): Remove muscle insertion of the prologues.
4499 (output): Remove freeing of pre_prologue_obstack and
4500 post_prologue_obstack.
4501 * src/parse-gram.y (prologue_declaration): Use muscle_code_grow rather
4502 than prologue_augment for prologue parsing so you don't need prologue
4503 obstacks.
4504 (grammar_declaration): For %union RHS, use `braceless' instead of
4505 "{...}" so that braces are already stripped and code is escaped with
4506 digraphs.
4507 * src/reader.c (prologue_augment): Remove.
4508 (reader): Remove initialization of pre_prologue_obstack and
4509 post_prologue_obstack.
4510 * src/reader.h (prologue_augment): Remove.
4511
4512 * data/c.m4: Remove stray parenthesis.
4513
4514 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
4515
4516 Remove quotes from variables names in %define directives and from
4517 qualifiers in %code directives, and restrict the characters that are
4518 allowed in them to M4-friendly ones. For %define, continue to support
4519 the quoted form as a deprecated feature. Discussed starting at
4520 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00023.html>.
4521 * NEWS (2.3a+): Add entry for the change to %define. Update entry for
4522 %code.
4523 * doc/bison.texinfo (Prologue Alternatives): Update.
4524 (Decl Summary): In %defines entry, update mention of `%code requires'
4525 and `%code provides'.
4526 (C++ Location Values): Update %define uses.
4527 (Calc++ Parser Interface): Likewise.
4528 (Calc++ Parser): Likewise, and update `%code requires' uses.
4529 (Table of Symbols): Update %code documentation.
4530 * src/parse-gram.y (prologue_declaration): For %define variables, use
4531 `variable' instead of `STRING'.
4532 (grammar_declaration): For %code qualifiers, use `ID' instead of
4533 `STRING'.
4534 (variable): New nonterminal that takes an `ID' or a `STRING'.
4535 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update %code
4536 and %define uses.
4537 * tests/calc.at (_AT_DATA_CALC_Y): Update %define use.
4538 * tests/input.at (Reject unused %code qualifiers): Update %code uses.
4539 (%define errors): Update %define uses.
4540
4541 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
4542
4543 * src/parse-gram.y (prologue_declaration): Use MUSCLE_INSERT_STRING
4544 instead of muscle_insert for %define values so that M4-special
4545 characters are replaced with digraphs.
4546 * tests/input.at (%define errors): Extend to check weird values.
4547
4548 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
4549
4550 Instead of having skeletons declare all valid %define variables and
4551 %code qualifiers, provide macros that retrieve the associated values
4552 and build these lists automatically. Thus Bison will now warn when a
4553 variable or qualifier is not used by the skeleton in the current
4554 invocation regardless of whether it might sometimes be used by that
4555 skeleton in other invocations. Also, move all %define value macros to
4556 the b4_percent_define_ namespace, and remove the %define "NAME" {CODE}
4557 form, which is replaced by %code.
4558 * data/bison.m4 (b4_check_for_unrecognized_names): Rename to...
4559 (b4_check_user_names): ... this, and change the series of valid name
4560 arguments to a single list argument for names used in the skeleton
4561 similar to the existing list argument for names used in the grammar.
4562 Warn instead of complaining.
4563 (b4_get_percent_define, b4_get_percent_code): New to retrieve %define
4564 values and %code code, to format %code code properly, and to build
4565 lists of all %define variables and %code qualifiers used in the
4566 skeleton: b4_skeleton_percent_define_variables and
4567 b4_skeleton_percent_code_qualifiers.
4568 (b4_check_percent_define_variables, b4_check_percent_code_qualifiers):
4569 Remove, and...
4570 (m4_wrap): ... m4_wrap b4_check_user_names invocations instead so that
4571 the skeleton names lists can finish building first. In place of
4572 b4_used_percent_define_variables and b4_used_percent_code_qualifiers,
4573 expect the lists b4_user_percent_define_variables and
4574 b4_user_percent_code_qualifiers.
4575 * data/c++.m4: Where setting default values for b4_parser_class_name,
4576 b4_location_type, b4_filename_type, b4_namespace, and
4577 b4_define_location_comparison, update their names to the
4578 b4_percent_define_ namespace.
4579 * data/glr.c: Don't use b4_check_percent_define_variables and
4580 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
4581 * data/glr.cc, data/lalr1.cc: Likewise, and use b4_get_percent_define.
4582 (b4_parser_class_name, b4_namespace): Define these using
4583 b4_get_percent_define for parser_class_name and namespace.
4584 * data/location.cc: Use b4_get_percent_define.
4585 * data/push.c: Don't use b4_check_percent_define_variables and
4586 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
4587 * data/yacc.c: Likewise, and don't call m4_exit in
4588 b4_use_push_for_pull_if or m4_wrap code will never execute.
4589 * src/muscle_tab.c, src/muscle_tab.h (muscle_grow_used_name_list):
4590 Rename to...
4591 (muscle_grow_user_name_list): ... this for consistency with the
4592 terminology used in bison.m4.
4593 * src/parse-gram.y (prologue_declaration): Prepend "percent_define_" to
4594 %define variable names, and rename muscle used_percent_define_variables
4595 to user_percent_define_variables.
4596 (grammar_declaration): Rename muscle used_percent_code_qualifiers to
4597 user_percent_code_qualifiers.
4598 (content): Remove.
4599 (content.opt): Replace content RHS with STRING RHS so %define "NAME"
4600 {CODE} form is no longer accepted.
4601 * tests/input.at (Reject bad %code qualifiers): Rename to...
4602 (Reject unused %code qualifiers): ... this, and update test output.
4603 (%define error): Update test output.
4604
4605 2007-01-07 Joel E. Denny <jdenny@ces.clemson.edu>
4606
4607 Check for unrecognized %define variables similar to checking for
4608 unrecognized %code qualifiers. Check for redefined %define variables.
4609 * data/bison.m4 (b4_check_for_unrecognized_names): New macro that
4610 generalizes...
4611 (b4_check_percent_code_qualifiers): ... this, which now wraps it.
4612 (b4_check_percent_define_variables): New, also wraps it.
4613 * data/glr.c: Unless glr.cc is wrapping glr.c, declare no valid %define
4614 variables using b4_check_percent_define_variables.
4615 * data/glr.cc, data/lalr1.cc: Declare the valid %define variables as
4616 all those exercised in the test suite and all those listed in the
4617 `Default values' section of c++.m4. Are there others?
4618 * data/push.c, data/yacc.c: Declare no valid %define variables.
4619 * src/muscle_tab.c, src/muscle_tab.h (muscle_find_const): New function,
4620 similar to muscle_find, but it works even when the muscle stores a
4621 const value.
4622 (muscle_grow_used_name_list): New function for constructing the used
4623 name list muscles that b4_check_for_unrecognized_names requires.
4624 * src/parse-gram.y (prologue_declaration): Warn if a variable is
4625 %define'd more than once. Define the b4_used_percent_define_variables
4626 muscle with muscle_grow_used_name_list.
4627 (grammar_declaration): Abbreviate %code code with
4628 muscle_grow_used_name_list.
4629 * tests/input.at (%define errors): New.
4630
4631 2007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
4632
4633 Provide warn_at, complain_at, and fatal_at function callbacks to the
4634 skeletons, and use this for %code qualifier complaints.
4635 * data/bison.m4 (b4_error_at): New, invoked by...
4636 (b4_warn_at, b4_complain_at, b4_fatal_at): ... these new macros to wrap
4637 the skeleton scanner's new @warn_at(...@), @complain_at(...@), and
4638 @fatal_at(...@) directives.
4639 (b4_check_percent_code_qualifiers): Rewrite to expect locations for
4640 qualifiers in b4_used_percent_code_qualifiers and to use
4641 b4_complain_at.
4642 * src/location.c, src/location.h (boundary_set_from_string): New global
4643 function.
4644 * src/muscle_tab.c, src/muscle_tab.h (muscle_boundary_grow): New global
4645 function.
4646 * src/parse-gram.y (grammar_declaration): Add locations for qualifiers
4647 to b4_used_percent_code_qualifiers.
4648 * src/scan-skel.l (fail_for_at_directive_too_few_args): New static
4649 function.
4650 (AT_DIRECTIVE_ARGC_MAX): Increase for boundary arguments.
4651 (lineno): Rename to...
4652 (out_lineno): ... this so I don't misunderstand it again.
4653 (SC_AT_DIRECTIVE_SKIP_WS): Don't increment out_lineno for newlines
4654 here; these newlines are in the input but not the output file.
4655 (SC_AT_DIRECTIVE_ARG): Likewise. Extract directive execution to...
4656 (at_directive_perform): ... this new static function, and add handling
4657 of new @warn_at(...@), @complain_at(...@), and @fatal_at(...@)
4658 directives.
4659 * tests/input.at (Reject bad %code qualifiers): Update test output with
4660 locations and extend.
4661
4662 * tests/output.at (Output file name: [, Output file name: ]): Remove
4663 bogus comment about these tests failing.
4664
4665 2007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
4666
4667 Clean up b4_check_percent_code_qualifiers a little.
4668 * data/bison.m4 (b4_check_percent_code_qualifiers): Expect qualifiers
4669 in b4_used_percent_code_qualifiers to be double-M4-quoted. Rewrite
4670 documentation and add examples.
4671 * src/parse-gram.y (grammar_declaration): Double-M4-quote those
4672 qualifiers here.
4673
4674 2007-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
4675
4676 Don't use m4_divert since it makes m4_divert_push and m4_divert_pop
4677 unreliable -- especially when they're hidden inside another macro.
4678 * data/bison.m4, data/c++-skel.m4, data/c++.m4, data/c-skel.m4,
4679 data/c.m4: Remove m4_divert(-1).
4680 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
4681 data/push.c, data/yacc.c: Likewise, and replace m4_divert(0) with
4682 m4_divert_push(0) and m4_divert_pop(0).
4683 * src/output.c (output_skeleton): Don't add an m4_divert_push(0) and
4684 an m4_wrap([m4_divert_pop(0)]) to the M4. Diversion -1, which is
4685 pushed and popped by m4sugar, should be first on the stack.
4686
4687 Provide warn, complain, and fatal function callbacks to the skeletons.
4688 This provides more flexibility than m4_fatal, improves the error
4689 message format, and captures messages for translation. Discussed
4690 starting at
4691 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00063.html>.
4692 * data/bison.m4 (b4_error): New, invoked by...
4693 (b4_warn, b4_complain, b4_fatal): ... these new macros to wrap the
4694 skeleton scanner's new @warn(...@), @complain(...@), and @fatal(...@)
4695 directives. Because these M4 macros might be called when the current
4696 diversion is -1 or 0, m4_divert_push and m4_divert_pop is used; thus
4697 the previous removal of uses of m4_divert, which caused trouble.
4698 (b4_check_percent_code_qualifiers): Use b4_complain instead of
4699 m4_fatal to report unrecognized %code qualifiers.
4700 * data/c++-skel.m4: Use b4_complain instead of m4_fatal to report C++
4701 push parser requests.
4702 * data/glr.c: Use b4_complain instead of m4_fatal to report
4703 non-deterministic push parser requests.
4704 Update @output usage to @output(...@) form.
4705 * data/glr.cc, data/lalr1.cc: Use b4_fatal instead of m4_fatal to
4706 report missing %defines. Update @output usage to @output(...@) form.
4707 * data/location.cc, data/push.c, data/yacc.c: Update @output usage to
4708 @output(...@) form.
4709 * src/main.c (main): Invoke skel_scanner_free.
4710 * src/scan-skel.h (skel_scanner_free): Prototype new function.
4711 * src/scan-skel.l (FLEX_NO_OBSTACK): Don't define; we now need the
4712 obstack_for_string from flex-scanner.h.
4713 (YY_DECL): Use to declare skel_lex static.
4714 (decode_at_digraphs): Remove; now handled in the new
4715 SC_AT_DIRECTIVE_ARG start condition.
4716 (fail_for_at_directive_too_many_args, fail_for_invalid_at): New static
4717 functions.
4718 (at_directive_name, AT_DIRECTIVE_ARGC_MAX, at_directive_argc,
4719 at_directive_argv): New static globals.
4720 (INITIAL): Use fail_for_invalid_at.
4721 Don't parse `@output file_name\n' or `@basename(...@)'. Instead,
4722 recognize the start of a generalized `@directive(...@)' form and
4723 start...
4724 (SC_AT_DIRECTIVE_ARG): ... this new start condition to parse the
4725 directive args (using the new obstack_for_string), to decode the
4726 contained @ diagraphs, and to perform the directive. It recognizes
4727 @basename(...@), @warn(...@), @complain(...@), @fatal(...@), and
4728 @output(...@).
4729 (SC_AT_DIRECTIVE_SKIP_WS): New start condition started by
4730 SC_AT_DIRECTIVE_ARG to skip whitespace after the argument delimiter,
4731 `@,'.
4732 (scan_skel): Initialize obstack_for_string on the first call.
4733 (skel_scanner_free): New function to free obstack_for_string.
4734 * tests/input.at (Reject bad %code qualifiers): Update test output.
4735
4736 2007-01-04 Joel E. Denny <jdenny@ces.clemson.edu>
4737
4738 Consolidate the 4 prologue alternative directives (%code, %requires,
4739 %provides, and %code-top) into a single %code directive with an
4740 optional qualifier field. Discussed at
4741 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00012.html>.
4742 * NEWS (2.3a+): Rewrite the existing entry for the prologue
4743 alternatives.
4744 * doc/bison.texinfo (Prologue Alternatives): Update.
4745 (Decl Summary): Update to %code "requires" and %code "provides".
4746 (Calc++ Parser): Update to %code "requires".
4747 (Table of Symbols): Remove entries for %requires, %provides, and
4748 %code-top. Rewrite %code entry, and add a %code "QUALIFIER" entry.
4749 * data/bison.m4 (b4_user_provides, b4_user_requires): Remove as these
4750 are replaced by b4_percent_code_provides and b4_percent_code_requires,
4751 which are skeleton-specific.
4752 (b4_check_percent_code_qualifiers): New. A skeleton can use this to
4753 declare what %code qualifiers it supports and to complain if any other
4754 qualifiers were used in the grammar.
4755 * data/glr.cc: Update to use b4_user_code([b4_percent_code_requires])
4756 and b4_user_code([b4_percent_code_provides]) in place of
4757 b4_user_requires and b4_user_provides.
4758 * data/glr.c, data/lalr1.cc, data/push.c, data/yacc.c: Likewise.
4759 Add b4_user_code([b4_percent_code_top]) and
4760 b4_user_code([b4_percent_code]).
4761 Invoke b4_check_percent_code_qualifiers.
4762 * src/parse-gram.y (PERCENT_CODE_TOP, PERCENT_PROVIDES,
4763 PERCENT_REQUIRES): Remove.
4764 (grammar_declaration): Remove RHS's for %code-top, %provides, and
4765 %requires. Rewrite the %code RHS as the unqualified form defining the
4766 muscle b4_percent_code. Add another RHS for the qualified %code form,
4767 which defines muscles of the form b4_percent_code_QUALIFIER and the
4768 b4_used_percent_code_qualifiers muscle.
4769 * src/scan-gram.l (PERCENT_CODE_TOP, PERCENT_PROVIDES,
4770 PERCENT_REQUIRES): Remove.
4771 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update to use
4772 %code "requires" and %code "provides".
4773 * tests/input.at (Reject bad %code qualifiers): New.
4774
4775 2007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
4776
4777 Use the new code_props interface for destructors and printers.
4778 * src/symtab.h (symbol, semantic_type): Remove destructor_location and
4779 printer_location members, and change the type of the destructor and
4780 printer members to code_props.
4781 (symbol_destructor_set, symbol_destructor_get, symbol_printer_set,
4782 symbol_printer_get, semantic_type_destructor_set,
4783 semantic_type_printer_set, default_tagged_destructor_set,
4784 default_tagless_destructor_set, default_tagged_printer_set,
4785 default_tagless_printer_set): Use code_props in arguments and return
4786 types in place of char const * and location.
4787 (symbol_destructor_location_get, symbol_printer_location_get): Remove
4788 since the locations are now contained in the return of
4789 symbol_destructor_get and symbol_printer_get.
4790 * src/output.c (symbol_destructors_output, symbol_printers_output):
4791 Replace with...
4792 (symbol_code_props_output): ... this to eliminate duplicate code.
4793 (output_skeleton): Update to use symbol_code_props_output.
4794 * src/reader.c (symbol_should_be_used): Update use of
4795 symbol_destructor_get.
4796 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
4797 Update uses of the various _destructor_set and _printer_set functions.
4798 * src/symtab.c: (default_tagged_destructor_location,
4799 default_tagless_destructor_location, default_tagged_printer_location,
4800 default_tagless_printer_location): Remove since we...
4801 (default_tagged_destructor, default_tagless_destructor,
4802 default_tagged_printer, default_tagless_printer): ... change the type
4803 of these to code_props.
4804 (symbol_new, semantic_type_new, symbol_destructor_set,
4805 semantic_type_destructor_set, symbol_destructor_get,
4806 symbol_printer_set, semantic_type_printer_set, symbol_printer_get,
4807 symbol_check_alias_consistency, default_tagged_destructor_set,
4808 default_tagless_destructor_set, default_tagged_printer_set,
4809 default_tagless_printer_set): Update.
4810 (symbol_destructor_location_get, symbol_printer_location_get): Remove.
4811 (SYMBOL_CODE_PRINT): New similar to SYMBOL_ATTR_PRINT but for
4812 code_props members.
4813 (symbol_print): Use SYMBOL_CODE_PRINT.
4814
4815 2007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
4816
4817 Use the new code_props interface for rule actions.
4818 * src/symlist.h (symbol_list): Replace action, action_location, and
4819 used members with a code_props action_props member.
4820 * src/reader.c (symbol_should_be_used, grammar_rule_check,
4821 grammar_midrule_action, grammar_current_rule_merge_set,
4822 grammar_current_rule_symbol_append, packgram): Update.
4823 * src/scan-code.h (translate_rule_action): Remove, no longer used.
4824 * src/scan-code.l (handle_action_dollar): Update.
4825 (translate_rule_action): Remove, no longer used.
4826 * src/symlist.c (symbol_list_sym_new, symbol_list_syms_print): Update.
4827
4828 2007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
4829
4830 Use the new code_props interface in parse-gram.y.
4831 * src/parse-gram.y (prologue_declaration, braceless, epilogue.opt):
4832 Update all uses of translate_* functions to use the new code_props
4833 interface and to use gram_scanner_last_string_free and
4834 code_scanner_last_string_free where possible.
4835 (grammar_declaration): symbol_list_destructor_set and
4836 symbol_list_printer_set now perform the translation, so don't do it
4837 here. Use gram_scanner_last_string_free where possible.
4838 * src/scan-code.h, src/scan-code.l (translate_symbol_action,
4839 translate_code): Remove, no longer used.
4840 * src/symlist.h, src/symlist.c (symbol_list_destructor_set,
4841 symbol_list_printer_set): Perform code translation here rather than
4842 depending on the caller to do so.
4843
4844 * src/symlist.h (struct symbol_list): Correct some documentation typos.
4845 * src/scan-gram.h (gram_last_string): Remove declaration.
4846 * src/scan-gram.l (last_string): Declare it static.
4847
4848 2007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
4849
4850 Encapsulate code properties and related functionality for the various
4851 destructors, printers, and actions into a code_props structure and
4852 interface. This patch merely implements code_props in scan-code.h and
4853 scan-code.l. Future patches will rewrite other modules to use it.
4854 Discussed starting at
4855 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00020.html>.
4856 * src/location.h (EMPTY_LOCATION_INIT): Define so that it's easier to
4857 consistently initialize const structs that have an empty location
4858 field.
4859 * src/location.c (empty_location): Initialize with EMPTY_LOCATION_INIT
4860 to ensure consistency.
4861 * src/scan-code.h (code_props): New structure.
4862 (code_props_none_init, CODE_PROPS_NONE_INIT, code_props_none): New
4863 function, macro, and const global variable for initializing a
4864 code_props with no code.
4865 (code_props_plain_init, code_props_symbol_action_init,
4866 code_props_rule_action_init, code_props_translate_code): The rest of
4867 the new code_props functional interface. Among other things, the init
4868 functions set the code_props kind field so that
4869 code_props_translate_code will know whether to behave like
4870 translate_symbol_action, translate_rule_action, or translate_code.
4871 These old translate functions must remain until all other modules are
4872 updated to use the new code_props interface.
4873 (code_scanner_last_string_free): New function similar to
4874 gram_scanner_last_string_free.
4875 (code_scanner_free): Add documentation.
4876 * src/scan-code.l: Implement the new interface.
4877 (code_lex): Make it static, add a code_props* argument, and remove the
4878 rule argument.
4879 (last_string): New static global similar to the one in scan-gram.l.
4880 (SC_RULE_ACTION): Update to use the code_props* argument to code_lex
4881 instead of rule.
4882 (SC_SYMBOL_ACTION): For $$, set the is_value_used member of the
4883 code_props since Bison may one day use this information for destructors
4884 and printers.
4885 (<*><<EOF>>): Use STRING_FINISH so that last_string is set.
4886 (handle_action_dollar): Use symbol_list_n_get and set used flag
4887 directly since symbol_list_n_used_set is removed.
4888 (translate_action): Add a code_props* argument and remove the rule,
4889 action, and location arguments. Pass the code_props* on to code_lex.
4890 (translate_rule_action, translate_symbol_action, translate_code):
4891 Rewrite as wrappers around the new code_props interface.
4892 * src/symlist.h, src/symlist.c (symbol_list_n_used_set): Remove since
4893 it would eventually need to break the encapsulation of code_props.
4894
4895 2007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
4896
4897 * etc/.cvsignore: New.
4898
4899 2007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
4900
4901 Add maintainer-push-check to run maintainer-check using push parsing in
4902 place of pull parsing where available.
4903 * Makefile.am (maintainer-push-check): New.
4904 * data/bison.m4 (b4_use_push_for_pull_if): New.
4905 * data/push.c: Redefine b4_push_if and b4_use_push_for_pull_if
4906 appropriately based on their existing values.
4907 (yypush_parse): Don't print push-parser-specific diagnostics if push
4908 parsing is being used in place of pull parsing.
4909 * data/yacc.c: If push parsing should replace pull parsing, redirect to
4910 push.c.
4911 * src/output.c (prepare): Check BISON_USE_PUSH_FOR_PULL environment
4912 variable, and insert b4_use_push_for_pull_flag into muscles.
4913 * tests/Makefile.am (maintainer-push-check): New.
4914
4915 2006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
4916
4917 * data/push.c (yypush_parse): Set yynew = 1 at the end of a parse
4918 (whether successful or failed) so that yypush_parse can be invoked
4919 again to start a new parse using the same yypstate.
4920 * tests/torture.at (AT_DATA_STACK_TORTURE): For push mode, extend to
4921 check multiple yypull_parse invocations on the same yypstate. For pull
4922 mode, extend to check multiple yyparse invocations.
4923 (Exploding the Stack Size with Alloca): Extend to try with
4924 %push-pull-parser.
4925 (Exploding the Stack Size with Malloc): Likewise.
4926
4927 * tests/calc.at (Simple LALR Calculator): Don't specify
4928 %skeleton "push.c" since %push-pull-parser implies that now.
4929 * tests/headers.at (export YYLTYPE): Don't check for the push
4930 declarations. Otherwise, this test case can't be used to see if push
4931 mode can truly emulate pull mode.
4932 * tests/input.at (Torturing the Scanner): Likewise.
4933 * tests/local.at (AT_YACC_OR_PUSH_IF, AT_PUSH_IF): Remove.
4934 (AT_YYERROR_SEES_LOC_IF): Rather than AT_YACC_OR_PUSH_IF, use
4935 AT_YACC_IF, which now includes the case of push mode since %skeleton
4936 need not be used for push mode. This will be more intuitive once
4937 push.c is renamed to yacc.c.
4938
4939 2006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
4940
4941 For push mode, convert yyparse from a macro to a function, invoke yylex
4942 instead of passing a yylexp argument to yypull_parse, and don't
4943 generate yypull_parse or yyparse unless %push-pull-parser is declared.
4944 Discussed starting at
4945 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00163.html>.
4946 * data/bison.m4 (b4_pull_if): New.
4947 * data/c.m4 (b4_identification): Define YYPULL similar to YYPUSH.
4948 * data/push.c: Improve M4 quoting a little.
4949 (b4_generate_macro_args, b4_parenthesize): Remove.
4950 (yyparse): If there's a b4_prefix, #define this to b4_prefix[parse]
4951 any time a pull parser is requested.
4952 Don't #define this as a wrapper around yypull_parse. Instead, when
4953 both push and pull are requested, make it a function that does that
4954 same thing.
4955 (yypull_parse): If there's a b4_prefix, #define this to
4956 b4_prefix[pull_parse] when both push and pull are requested.
4957 Don't define this as a function unless both push and pull are
4958 requested.
4959 Remove the yylexp argument and hard-code yylex invocation instead.
4960 * etc/bench.pl.in (bench_grammar): Use %push-pull-parser instead of
4961 %push-parser.
4962 * src/getargs.c (pull_parser): New global initialized to true.
4963 * getargs.h (pull_parser): extern it.
4964 * src/output.c (prepare): Insert pull_flag muscle.
4965 * src/parse-gram.y (PERCENT_PUSH_PULL_PARSER): New token.
4966 (prologue_declaration): Set both push_parser and pull_parser = true for
4967 %push-pull-parser. Set push_parser = true and pull_parser = false for
4968 %push-parser.
4969 * src/scan-gram.l: Don't accept %push_parser as an alternative to
4970 %push-parser since there's no backward-compatibility concern here.
4971 Scan %push-pull-parser.
4972 * tests/calc.at (Simple LALR(1) Calculator): Use %push-pull-parser
4973 instead of %push-parser.
4974 * tests/headers.at (export YYLTYPE): Make yylex static, and don't
4975 prototype it in the module that calls yyparse.
4976 * tests/input.at (Torturing the Scanner): Likewise.
4977 * tests/local.at (AT_PUSH_IF): Check for %push-pull-parser as well.
4978
4979 2006-12-26 Joel E. Denny <jdenny@ces.clemson.edu>
4980
4981 Update etc/bench.pl. Optimize push mode a little (the yyn change
4982 deserves most of the credit).
4983 * Makefile.am (SUBDIRS): Add etc subdirectory.
4984 * configure.ac (AC_CONFIG_FILES): Add etc/bench.pl and etc/Makefile.
4985 * data/push.c (b4_declare_parser_state_variables): Move yyn, yyresult,
4986 yytoken, yyval, and yyloc declarations to...
4987 (yyparse or yypush_parse): ... here to improve performance. For
4988 yypush_parse invocations after the first, be sure to assign yyn its old
4989 value again.
4990 (yypstate_new): Don't bother initializing the yyresult field since the
4991 initial value isn't used.
4992 (yyn, yyresult, yytoken, yyval, yyloc): For each NAME in this list,
4993 remove the #define that, in push mode, set it to yyps->NAME.
4994 * etc/Makefile.am: New.
4995 * etc/bench.pl: Remove and build it instead from...
4996 * etc/bench.pl.in: ... this new file. Use @abs_top_builddir@ to invoke
4997 "tests/bison" from the build directory by default rather than just
4998 invoking "bison" from $PATH.
4999 (calc_grammar): Update push parser code: don't declare yylval globally,
5000 don't define yyparse_wrapper, and don't #define yyparse.
5001 (bench_grammar): Update to check all working combinations of yacc.c,
5002 push.c, impure, pure, pull, and push.
5003
5004 2006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
5005
5006 For push mode, add pull wrappers around yypush_parse.
5007 * data/push.c: (b4_generate_macro_args, b4_parenthesize): New macros.
5008 (yypull_parse): New function wrapping yypush_parse.
5009 (yyparse): New #define wrapping yypull_parse.
5010 * tests/calc.at (_AT_DATA_CALC_Y): Call yyparse even when %push-parser
5011 is declared.
5012 * tests/headers.at (export YYLTYPE): Make yylex global. For push mode,
5013 prototype yylex in the module that calls yyparse, and don't prototype
5014 yyparse there. Otherwise, the yyparse expansion won't compile.
5015 * tests/input.at (Torturing the Scanner): Likewise.
5016
5017 2006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
5018
5019 Enable push parsers to operate in impure mode. Thus, %push-parser no
5020 longer implies %pure-parser. The point of this change is to move
5021 towards being able to test the push parser code by running the entire
5022 test suite as if %push-parser had been declared.
5023 * data/push.c (yypush_parse): For impure mode, remove the
5024 yypushed_char, yypushed_val, and yypushed_loc arguments.
5025 Instead, declare these as local variables initialized to the global
5026 yychar, yylval, and yylloc.
5027 For the first yypush_parse invocation only, restore the initial values
5028 of these global variables when it's time to read a token since they
5029 have been overwritten.
5030 * src/parse-gram.y (prologue_declaration): Don't set pure_parser for
5031 %push-parser.
5032 * tests/calc.at (Simple LALR(1) Calculator): Always declare
5033 %pure-parser along with %push-parser since this test case was designed
5034 for pure push parsers.
5035 * tests/local.at (AT_PURE_OR_PUSH_IF): Remove unused.
5036 (AT_YACC_OR_PUSH_IF): New.
5037 (AT_YYERROR_SEES_LOC_IF): Fix enough that the test suite passes, but
5038 add a note that it's still wrong for some cases (as it has been for a
5039 while).
5040 (AT_PURE_LEX_IF): Use AT_PURE_IF instead of AT_PURE_OR_PUSH_IF since
5041 %push-parser no longer implies %pure-parser.
5042
5043 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
5044
5045 Remove some unnecessary differences between the pull parser code and
5046 the push parser code. This patch enables yynerrs in push mode.
5047 * data/push.c: Reformat M4 a little.
5048 (b4_yyerror_range): Remove and convert all uses to just yyerror_range.
5049 (b4_declare_scanner_communication_variables): Don't omit yynerrs just
5050 because push mode is on. Instead, if pure mode is on, move yynerrs
5051 to...
5052 (b4_declare_parser_state_variables): ... here.
5053 (yynerrs, yyerror_range): For push mode, #define each NAME in this list
5054 to yyps->NAME so it can be used in yypush_parse.
5055 (yypush_parse): Don't omit uses of yynerrs in push mode.
5056
5057 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
5058
5059 Fix bug such that the first pushed token's value and location are
5060 sometimes overwritten (sometimes by %initial-action) before being used.
5061 * data/push.c (yypush_parse): Rename arguments yynchar, yynlval, and
5062 yynlloc to yypushed_char, yypushed_val, and yypushed_loc for clarity.
5063 For the first yypush_parse invocation, initialize yychar to YYEMPTY to
5064 more closely mimic the pull parser logic.
5065 Don't copy the pushed token to yychar, yylval, and yylloc until it's
5066 time to read a token, which is after any initialization of yylval and
5067 yylloc.
5068 (gottoken): Rename label to...
5069 (yyread_pushed_token): ... for clarity and to avoid infringing on the
5070 user namespace.
5071
5072 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
5073
5074 Rearrange initialization of the parser state variables so that the
5075 skeleton doesn't have to have a copy for pull mode and another for push
5076 mode. This patch also fixes at least a bug such that yylloc was not
5077 initialized (with b4_location_initial_line and
5078 b4_location_initial_column) upon calling yypush_parse. However, that
5079 initialization now overwrites the first token's location;
5080 %initial-action assigning @$ already did the same thing, and both bugs
5081 will be fixed in a later patch.
5082 * data/push.c (b4_yyssa): Remove and convert all uses to just yyssa.
5083 (b4_declare_parser_state_variables): Remove initialization of yytoken,
5084 yyss, yyvs, yyls, and yystacksize.
5085 (yypstate_new): Remove initialization of some yypstate fields: yystate,
5086 yyerrstatus, yytoken, yyss, yyvs, yyls, yystacksize, yyssp, yyvsp, and
5087 yylsp.
5088 (yyssa, yyvsa, yylsa): For push mode, #define each NAME in this list to
5089 yyps->NAME so it can be used in yypush_parse.
5090 (yyparse or yypush_parse): For yypush_parse, don't print the
5091 "Starting parse" diagnostic for invocations after the first.
5092 Add initialization of yytoken, yyss, yyvs, yyls, and yystacksize; for
5093 yypush_parse, only do it for the first invocation.
5094 Allow yystate, yyerrstatus, yyssp, yyvsp, yylsp, and yylloc
5095 initialization to occur in yypush_parse but only on the first
5096 invocation.
5097
5098 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
5099
5100 * data/push.c: Add CPP guards around push parser declarations in both
5101 the header and the code file.
5102 In the code file, move the push parser declarations to the same place
5103 they appear in the header file.
5104 Clean up the M4 some, especially the inconsistent underquoting in
5105 some b4_c_function_def and b4_c_function_decl uses.
5106
5107 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
5108
5109 Encapsulate the push parser state variables into an M4 macro so the
5110 push skeleton doesn't have to list them again for pull mode's yyparse.
5111 For push mode, remove yypush_parse's local equivalents of these
5112 variables to eliminate unnecessary copying between the two sets at
5113 run-time. This patch also fixes at least a bug related to multiple
5114 %initial-action invocations in push mode.
5115 * data/push.c (b4_declare_parser_variables): Rename to...
5116 (b4_declare_scanner_communication_variables): ... this for clarity and
5117 update both uses.
5118 (b4_declare_yyparse_variables): Remove and move its contents to the one
5119 spot where it was invoked.
5120 (b4_declare_parser_state_variables): New macro containing the parser
5121 state variables required by push mode.
5122 (struct yypstate): Replace all fields but yynew with
5123 b4_declare_parser_state_variables.
5124 (yystate, yyn, yyresult, yyerrstatus, yytoken, yyss, yyssp, yyvs,
5125 yyvsp, yyls, yylsp, yystacksize, yyval, yyloc): For push mode, #define
5126 each NAME in this list to yyps->NAME so it can be used in yypush_parse.
5127 (yyparse or yypush_parse): For yyparse in pull mode, replace local
5128 parser state variable declarations with
5129 b4_declare_parser_state_variables.
5130 Don't initialize parser state variables when calling yypush_parse since
5131 yypstate_new already does that.
5132 Invoke the user's initial action only upon the first yypush_parse
5133 invocation.
5134 Remove all code that copies between the local parser state variables
5135 and the yypstate.
5136
5137 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
5138
5139 * data/push.c (union yyalloc): Rename yyss, yyvs, and yyls fields to
5140 prevent a name collision in a future patch where these names will
5141 sometimes be #define'd.
5142 (YYSTACK_RELOCATE): Add an argument to select a union yyalloc field
5143 since it no longer has the same name as the existing argument.
5144 (yyparse or yypush_parse): Update all uses of YYSTACK_RELOCATE.
5145
5146 2006-12-19 Paolo Bonzini <bonzini@gnu.org>
5147 and Joel E. Denny <jdenny@ces.clemson.edu>
5148
5149 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
5150 that the argument is case-insensitive, and there's no `=' here.
5151 For the %skeleton entry, mention that %language is better.
5152 (Bison Options): Likewise for --language and --skeleton. Move the
5153 --skeleton entry so that the `Tuning the parser' section is sorted
5154 alphabetically on long options.
5155 (C++ Bison Interface): Don't use the word skeleton. Don't explain the
5156 %language directive in detail here; cross-reference the %language
5157 documentation instead.
5158 (Calc++ Parser): Use `%require "@value{VERSION}"' rather than
5159 `%require "2.3b"' so that the example is always up-to-date.
5160 (Table of Symbols): Add entries for %language and %skeleton.
5161 * examples/extexi (normalize): Instead of replacing every %require
5162 argument with the current Bison version, just substitute for
5163 `@value{VERSION}'. This guarantees that we're testing what actually
5164 appears in the documentation.
5165 * examples/calc++/Makefile.am ($(calc_extracted)): Use `$(VERSION)'
5166 rather than `@VERSION@'.
5167
5168 2006-12-18 Paul Eggert <eggert@cs.ucla.edu>
5169
5170 * NEWS: Reword the %language news a bit, and put it earlier.
5171
5172 * src/getargs.c (skeleton_arg): Last arg is now location const *.
5173 Rewrite to simplify the logic.
5174 (language_argmatch): Likewise.
5175 (program_name): We now own this var.
5176 * src/getargs.h (struct bison_language): Use char[] rather than
5177 const char *.
5178
5179 * doc/bison.texinfo (Decl Summary, Bison Options): Don't claim
5180 Java is supported.
5181 * src/complain.c (program_name): Remove decl; no longer needed.
5182 * src/main.c (program_name): Remove; now belongs to getargs.
5183
5184 2006-12-18 Paolo Bonzini <bonzini@gnu.org>
5185
5186 * NEWS: Document %language.
5187
5188 * data/Makefile.am (dist_pkgdata_DATA): Add c-skel.m4, c++-skel.m4.
5189
5190 * data/c-skel.m4, data/c++-skel.m4: New files.
5191 * data/glr.c: Complain on push parsers.
5192
5193 * doc/bison.texinfo (C++ Parser Interface): Prefer %language
5194 over %skeleton.
5195 (Decl Summary): Document %language and %skeleton.
5196 (Command line): Document -L.
5197
5198 * examples/extexi: Rewrite %require directive.
5199 * examples/calc++/Makefile.am: Pass VERSION to extexi.
5200
5201 * src/files.c (compute_exts_from_gc): Look in language structure
5202 for .y extension.
5203 (compute_file_name_parts): Check whether .tab should be added.
5204 * src/getargs.c (valid_languages, skeleton_prio, language_prio):
5205 (language, skeleton_arg, language_argmatch): New.
5206 (long_options): Add --language.
5207 (getargs): Use skeleton_arg, add -L/--language.
5208 * src/getargs.h: Include location.h.
5209 (struct bison_language, language, skeleton_arg, language_argmatch): New.
5210 * src/output.c (prepare): Pick default skeleton from struct language.
5211 Don't dispatch C skeletons here.
5212 * src/parse-gram.y (PERCENT_LANGUAGE): New.
5213 (prologue_declaration): Add "%language" rule, use skeleton_arg.
5214 * src/scan-gram.l ("%language"): New rule.
5215
5216 * tests/calc.at: Test %skeleton and %language.
5217 * tests/local.at (AT_SKEL_CC_IF): Look for %language.
5218 (AT_GLR_IF): Look for %skeleton "glr.cc".
5219 (AT_LALR1_CC_IF, AT_GLR_CC_IF): Rewrite.
5220 (AT_YACC_IF): Reject %language.
5221
5222 2006-12-18 Paul Eggert <eggert@cs.ucla.edu>
5223
5224 * src/symtab.h (struct semantic_type): Remove the tag 'semantic_type',
5225 since it wasn't used; only the typedef name 'semantic_type' is needed.
5226 Also, omit trailing white space.
5227
5228 * bootstrap: Sync from coreutils.
5229 (gnulib_extra_files): Add build-aux/announce.gen.
5230 (slurp): Adjust .gitignore files like .cvsignore files.
5231 * build-aux/announce-gen: Remove from CVS, since bootstrap
5232 now creates this.
5233
5234 2006-12-16 Joel E. Denny <jdenny@ces.clemson.edu>
5235
5236 Make %push-parser imply %pure-parser. This fixes several bugs; see
5237 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00148.html>.
5238 * src/parse-gram.y (prologue_declaration): For %push-parser, also set
5239 pure_parser = true.
5240 * data/push.c: Don't bother testing b4_push_if when deciding whether
5241 to expand b4_declare_parser_variables globally.
5242 (yypush_parse): Likewise in here.
5243
5244 * data/push.c (yypush_parse): Add b4_parse_param to arguments.
5245 (yy_reduce_print): Reformat M4 for readability.
5246
5247 2006-12-15 Bob Rossi <bob@brasko.net>
5248 and Joel Denny <jdenny@ces.clemson.edu>
5249
5250 * data/push.c (yypstate): Add typedef, and update all uses of
5251 struct yypstate to just yypstate.
5252 * tests/calc.at (_AT_DATA_CALC_Y): Update here as well.
5253
5254 2006-12-14 Bob Rossi <bob@brasko.net>
5255
5256 * data/push.c (yypush_parse): Declare prototype regardless of
5257 %locations option.
5258
5259 2006-12-14 Bob Rossi <bob@brasko.net>
5260
5261 * data/push.c (yyparse): Remove the prototype and the #define when in
5262 push-parser mode.
5263
5264 2006-12-13 Bob Rossi <bob@brasko.net>
5265
5266 * data/push.c (yypstate_init): Rename to...
5267 (yypstate_new): ... this and use b4_c_function_def.
5268 (yypstate_delete): New.
5269 (yypush_parse): Change parameters yynval and yynlloc to be const.
5270 * tests/calc.at (_AT_DATA_CALC_Y): Use new yypstate_new and
5271 yypstate_delete functions.
5272
5273 2006-12-13 Joel E. Denny <jdenny@ces.clemson.edu>
5274
5275 * configure.ac (AC_PREREQ): Require Autoconf 2.61 because of our
5276 strange test case titles. Reported by Bob Rossi.
5277
5278 2006-12-13 Paul Eggert <eggert@cs.ucla.edu>
5279
5280 * TODO: Add pointer to Sylvain Schmitz's work on static detection
5281 of potential ambiguities in GLR grammers.
5282
5283 2006-12-12 Joel E. Denny <jdenny@ces.clemson.edu>
5284
5285 * tests/testsuite.at (AT_CHECK): When checking if $1 starts with
5286 `bison ', use m4_index instead of m4_substr since chopping up a string
5287 containing M4-special characters causes problems here.
5288
5289 Fix a couple of bugs related to special characters in user-specified
5290 file names, and make it easier for skeletons to compute output file
5291 names with the same file name prefix as Bison-computed output file
5292 names.
5293 * data/glr.cc, data/push.c, data/yacc.c: In @output, use
5294 b4_parser_file_name and b4_spec_defines_file instead of
5295 @output_parser_name@ and @output_header_name@, which are now redundant.
5296 * data/glr.c, data/lalr1.cc: Likewise. Also, in header #include's, use
5297 b4_parser_file_name, b4_spec_defines_file, and the new
5298 @basename(FILENAME@) instead of @output_parser_name@ and
5299 @output_header_name@, which inappropriately escaped the file names as
5300 C string literals.
5301 * src/files.c (all_but_ext): Remove static qualifier.
5302 (compute_output_file_names): Move `free (all_but_ext)' to...
5303 (output_file_names_free): ... here since all_but_ext is needed later.
5304 * src/files.h (all_but_ext): Extern.
5305 * src/muscle_tab.h (MUSCLE_INSERT_STRING_RAW): New macro that does
5306 exactly what MUSCLE_INSERT_STRING used to do.
5307 (MUSCLE_INSERT_STRING): Use MUSCLE_OBSTACK_SGROW so that M4-special
5308 characters are escaped properly.
5309 * src/output.c (prepare): Define muscle file_name_all_but_ext as
5310 all_but_ext.
5311 For pkgdatadir muscle, maintain previous functionality by using
5312 MUSCLE_INSERT_STRING_RAW instead of MUSCLE_INSERT_STRING. The problem
5313 is that b4_pkgdatadir is used inside m4_include in the skeletons, so
5314 digraphs would never be expanded. Hopefully no one has M4-special
5315 characters in his Bison installation path.
5316 * src/scan-skel.l: Don't parse @output_header_name@ and
5317 @output_parser_name@ anymore since they're now redundant.
5318 In @output, use decode_at_digraphs.
5319 Parse a new @basename command that invokes last_component.
5320 (decode_at_digraphs): New.
5321 (BASE_QPUTS): Remove unused.
5322 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): New macro.
5323 (Output file name): New tests.
5324
5325 2006-12-09 Joel E. Denny <jdenny@ces.clemson.edu>
5326
5327 Warn about output files that are generated by the skeletons and that
5328 conflict with other output files.
5329 * data/glr.c: Don't generate the header file here when glr.cc does.
5330 * src/files.c (file_names, file_names_count): New static globals.
5331 (compute_output_file_names): Invoke output_file_name_check for files
5332 not generated by the skeletons and remove existing checks.
5333 (output_file_name_check): New function that warns about conflicting
5334 output file names.
5335 (output_file_names_free): Free file_names.
5336 * src/files.h (output_file_name_check): Declare.
5337 * src/scan-skel.l: Invoke output_file_name_check for files generated by
5338 the skeletons.
5339 * tests/output.at (AT_CHECK_CONFLICTING_OUTPUT): New.
5340 (Conflicting output files): New tests.
5341
5342 2006-12-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
5343
5344 * doc/bison.texinfo: Fix a couple of typos.
5345
5346 2006-12-08 Bob Rossi <bob@brasko.net>
5347
5348 * data/push.c: (yypvarsinit, yypvars, struct yypvars, yypushparse):
5349 Rename to...
5350 (yypstate_init, yypstate, struct yypstate, yypush_parse): ... these and
5351 update all uses.
5352 (b4_yyssa, b4_yyerror_range, yypstate_init): Rename pv to yyps.
5353 (yypush_parse): Rename yypvars argument to yyps and remove redundant
5354 local pv.
5355 (yypstate_init, yypush_parse): Declare in Bison-generated header file.
5356 * tests/calc.at (_AT_DATA_CALC_Y): Use newly named functions.
5357
5358 2006-12-07 Bob Rossi <bob@brasko.net>
5359 and Joel Denny <jdenny@ces.clemson.edu>
5360
5361 * data/push.c (yypvarsinit): Change return type from void* to struct
5362 yypvars*. No longer cast to void* on return.
5363 (struct yypvars): Remove yylen since it need not be remembered between
5364 yypushparse invocations.
5365 (yypushparse): Don't copy between yylen and pv->yylen.
5366
5367 2006-12-05 Bob Rossi <bob@brasko.net>
5368
5369 * data/push.c (yychar_set, yylval_set, yylloc_set): Delete.
5370 (yypushparse): Add yynchar, yynlval, yynlloc parameters.
5371 (b4_declare_parser_variables): Do not declare yynerrs for push mode.
5372 (struct yypvars): Remove b4_declare_parser_variables.
5373 (yypvarsinit): Remove init code for removed variables.
5374 (global scope): Do not declare b4_declare_parser_variables if
5375 push or pure mode.
5376 (yypushparse): Add b4_declare_parser_variables.
5377 Init new local variables, and remove init code for removed
5378 yypvars variables.
5379 (yyparse): Delete.
5380 * tests/calc.at (_AT_DATA_CALC_Y): Call yypushparse for push mode
5381 and yyparse for other modes.
5382 (AT_CHECK_CALC_LALR): Added '%skeleton "push.c"' for push tests.
5383 * tests/local.at (AT_PUSH_IF, AT_PURE_OR_PUSH_IF): Added.
5384 (AT_YYERROR_SEES_LOC_IF): push-parser makes this false.
5385 (AT_PURE_LEX_IF): True if pure or push parser.
5386
5387 2006-12-05 Joel E. Denny <jdenny@ces.clemson.edu>
5388
5389 Document Yacc prologue alternatives and default %destructor's and
5390 %printer's as experimental. Don't mention Java yet. Discussed at
5391 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00002.html>.
5392 * NEWS (2.3a+): Say they're experimental. Remove any mention of Java.
5393 (2.3a): Annotate this entry to say the old forms of these features were
5394 also experimental.
5395 * doc/bison.texinfo (Prologue Alternatives, Freeing Discarded Symbols,
5396 Table of Symbols): Say they're experimental. Comment out any mention
5397 of Java (we'll want this back eventually).
5398
5399 2006-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
5400
5401 Support a file name argument to %defines. Deprecate `=' in
5402 %file-prefix, %name-prefix, and %output. Discussed at
5403 <http://lists.gnu.org/archive/html/help-bison/2006-09/msg00001.html>.
5404 * NEWS (2.3a+): Mention.
5405 * doc/bison.texinfo (Decl Summary, Table of Symbols): Add entry for new
5406 form of %defines, and remove `=' from entries for %file-prefix,
5407 %name-prefix, and %output.
5408 * src/parse-gram.y (prologue_declaration): Implement.
5409 * tests/calc.at (Simple LALR Calculator, Simple GLR Calculator, Simple
5410 LALR1 C++ Calculator, Simple GLR C++ Calculator): Remove the `=' from
5411 all but one occurrence of %name-prefix.
5412 * tests/headers.at (export YYLTYPE): Remove the `=' from %name-prefix.
5413 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Likewise.
5414 * tests/output.at (AT_CHECK_OUTPUT): Remove the `=' from all but one
5415 occurrence of each of %file-prefix and %output. Add check for %defines
5416 with argument.
5417 * tests/reduce.at (Useless Terminals, Useless Nonterminals,
5418 Useless Rules, Reduced Automaton, Underivable Rules, Empty Language):
5419 Remove the `=' from %output.
5420
5421 2006-11-21 Joel E. Denny <jdenny@ces.clemson.edu>
5422
5423 Don't escape $ in test case titles since Autoconf 2.61 now does that
5424 correctly.
5425 * tests/actions.at (Default %printer and %destructor are not for error
5426 or $undefined): Here.
5427 (Default %printer and %destructor are not for $accept): Here.
5428 * tests/input.at (Invalid $n and @n): Here.
5429
5430 2006-11-20 Joel E. Denny <jdenny@ces.clemson.edu>
5431
5432 Rename <!> to <>. Discussed starting at
5433 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00039.html>.
5434 * NEWS (2.3a+): Update.
5435 * doc/bison.texinfo (Freeing Discarded Symbols, Table of Symbols):
5436 Update.
5437 * src/parse-gram.y (TYPE_TAG_NONE, generic_symlist_item): Implement.
5438 * src/scan-gram.l (INITIAL): Implement.
5439 * src/symlist.c (symbol_list_default_tagless_new): Update comment.
5440 * src/symlist.h (symbol_list, symbol_list_default_tagless_new): Update
5441 comment.
5442 * tests/actions.at (Default tagless %printer and %destructor,
5443 Default tagged and per-type %printer and %destructor,
5444 Default %printer and %destructor are not for error or $undefined,
5445 Default %printer and %destructor are not for $accept,
5446 Default %printer and %destructor for mid-rule values): Update.
5447 * tests/input.at (Default %printer and %destructor redeclared,
5448 Unused values with default %destructor): Update.
5449
5450 2006-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
5451
5452 Don't let %prec take a nonterminal.
5453 * src/reader.c (grammar_current_rule_prec_set): Make the %prec symbol a
5454 token.
5455 * tests/input.at (%prec takes a token): New test checking that %prec
5456 won't take a nonterminal.
5457
5458 2006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
5459
5460 * tests/testsuite.at (AT_CHECK): Don't miss an exit value of 0 because
5461 it was double-quoted.
5462 * src/Makefile.am (YACC): Use --warnings=all,error so that Bison's own
5463 grammar is maintained with Bison's highest standards.
5464 * src/getargs.c: Fix some typos in Doxygen comments.
5465
5466 2006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
5467
5468 Fix memory leaks in scanners generated by at least Flex 2.5.9 and
5469 later. Reported by Paul Eggert in
5470 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00014.html>.
5471 * src/flex-scanner.h (yylex_destroy): Define for Flex before 2.5.9.
5472 * src/scan-code.l (translate_action): Don't bother invoking
5473 yy_delete_buffer (YY_CURRENT_BUFFER) before creating the first buffer.
5474 (code_scanner_free): Instead of invoking
5475 yy_delete_buffer (YY_CURRENT_BUFFER) directly, invoke yylex_destroy,
5476 which frees more.
5477 * src/scan-gram.l (gram_scanner_free): Likewise.
5478 * src/scan-skel.l (scan_skel): Likewise.
5479
5480 2006-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
5481
5482 * src/files.c (tr): Change return type to void.
5483 * src/muscle_tab.c (muscle_insert): Free storage in case muscle_grow
5484 has been called previously for the same key.
5485 (muscle_find): Return storage instead of value so that
5486 --enable-gcc-warnings doesn't produce warnings that the return discards
5487 const. aver that the value and storage are the same since storage
5488 could potentially be NULL when value is not.
5489 * tests/testsuite.at (AT_CHECK): Treat an unspecified exit value the
5490 same as 0.
5491
5492 2006-11-08 Paul Eggert <eggert@cs.ucla.edu>
5493
5494 * bootstrap.conf (excluded_files): Exclude m4/codeset.m4 (undoing
5495 the earlier change today), m4/intl.m4, m4/intldir.m4. This gives
5496 us a slightly cleaner distribution, and also works.
5497 * m4/.cvsignore: Add inline.m4, wint_t.m4 to accommodate recent
5498 gnulib changes.
5499
5500 2006-11-08 Joel E. Denny <jdenny@ces.clemson.edu>
5501 and Paul Eggert <eggert@cs.ucla.edu>
5502
5503 Don't let Bison leak memory except when it complains.
5504 * src/files.h (parser_file_name, spec_verbose_file, spec_graph_file):
5505 (spec_defines_file, dir_prefix): Now char *, not const char *,
5506 since they are freed.
5507 * src/files.c: Likewise.
5508 (all_but_ext, all_but_tab_ext, src_extension, header_extension):
5509 Likewise.
5510 (tr): Now operates in-place. All uses changed.
5511 (compute_exts_from_gf, compute_exts_from_src): Don't leak temporary
5512 values.
5513 (compute_file_name_parts, compute_output_file_names): Don't store
5514 read-only data in variables that will be freed.
5515 (compute_output_file_names): Free all_but_ext, all_but_tab_ext,
5516 src_extension, and header_extension.
5517 (output_file_names_free): New public function to free
5518 spec_verbose_file, spec_graph_file, spec_defines_file,
5519 parser_file_name, and dir_prefix.
5520 * src/getargs.c (getargs): Don't store read-only data in variables that
5521 will be freed.
5522 * src/main.c (main): Invoke output_file_names_free, code_scanner_free
5523 (which previously existed but was unused), and quotearg_free.
5524 * src/muscle_tab.h (muscle_insert): value arg is now a `char const *'.
5525 * src/muscle_tab.c: Likewise.
5526 (muscle_entry): Make the value char const *,
5527 and add a new storage member that is char * and can be freed.
5528 (muscle_entry_free): New private function.
5529 (muscle_init): Use it instead of free.
5530 (muscle_insert, muscle_grow): Update and use new storage member.
5531 (muscle_code_grow): Free the string passed to muscle_grow
5532 since it's not needed anymore.
5533 * src/parse-gram.y (%union): Make `chars' member a `char const *', and
5534 add a new `char *code' member.
5535 ("{...}"): Declare semantic type as code.
5536 * src/scan-code.h (translate_rule_action):
5537 (translate_symbol_action, translate_code, translate_action): Return
5538 `char const *' rather than `char *' since external code should not free
5539 these strings.
5540 * src/scan-code.l: Likewise.
5541 * src/scan-gram.l (<SC_BRACED_CODE>): Use val->code for BRACED_CODE,
5542 which is "{...}" in the parser.
5543 * tests/Makefile.am (maintainer-check-valgrind): Set
5544 VALGRIND_OPTS='--leak-check=full --show-reacheable=yes' before invoking
5545 Valgrind.
5546 * tests/calc.at (_AT_DATA_CALC_Y): fclose the FILE* so Valgrind doesn't
5547 complain.
5548 * tests/testsuite.at (AT_CHECK): Redefine so that running Bison and
5549 expecting a non-zero exit status sets --leak-check=summary and
5550 --show-reachable=no for Valgrind. Bison unabashedly leaks memory in
5551 this case, and we don't want to hear about it.
5552
5553 2006-11-08 Paul Eggert <eggert@cs.ucla.edu>
5554
5555 * bootstrap (runtime-po/Makevars): Derive from po/Makevars
5556 instead of from the template, to simplify configuration a bit.
5557 * bootstrap.conf (excluded_files): Don't exclude m4/codeset.m4
5558 and m4/wint_t.m4, as they are needed with the latest gnulib.
5559
5560 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
5561
5562 Disable unset/unused mid-rule value warnings by default, and recognize
5563 --warnings=midrule-values to enable them. Discussed starting at
5564 <http://lists.gnu.org/archive/html/help-bison/2006-10/msg00030.html>.
5565 * NEWS (2.3a+): Mention.
5566 * src/getargs.c, src/getargs.h (warnings_args, warnings_types, enum
5567 warnings): Add entry for midrule-values subargument.
5568 * src/reader.c (symbol_should_be_used): Don't return true just because
5569 the value is a set/used mid-rule value unless
5570 --warnings=midrule-values was specified.
5571 * tests/input.at (Unused values, Unused values before symbol
5572 declarations): Run tests with and without --warnings=midrule-values.
5573
5574 * src/reader.c (check_and_convert_grammar): Use symbol_list_free rather
5575 than LIST_FREE directly.
5576
5577 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
5578
5579 Finish implementing --warnings=error, which should not be implied by
5580 --warnings=all (or by its synonyms -W and --warnings without
5581 subarguments).
5582 * src/complain.c (set_warning_issued): New function to report that
5583 warnings are being treated as errors and to record an error if so.
5584 Invoke...
5585 (warn_at, warn): ... here.
5586 * src/getargs.c (warnings_args, warnings_types): Reorder so that
5587 "error - warnings are errors" does not appear above "all - all of the
5588 above".
5589 (getargs): For -W and --warnings without subarguments, don't let
5590 FLAGS_ARGMATCH set warnings_error in warnings_flag.
5591 * src/getargs.h (enum warnings): Unset warnings_error in warnings_all.
5592
5593 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
5594
5595 * src/getargs.c (flags_argmatch): Don't cause segmentation fault for
5596 empty subargument list. For example: `bison --warnings= parser.y'.
5597
5598 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
5599
5600 * data/push.c, data/yacc.c: Make sure there's a newline at the end of
5601 the parser header file so that gcc doesn't warn.
5602
5603 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
5604
5605 Split the default %destructor/%printer into two kinds: <*> and <!>.
5606 Discussed starting at
5607 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00060.html>.
5608 * NEWS (2.3a+): Mention.
5609 * doc/bison.texinfo (Freeing Discarded Symbols): Document this and the
5610 previous change today related to mid-rules.
5611 (Table of Symbols): Remove %symbol-default and add <*> and <!>.
5612 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): Remove.
5613 (TYPE_TAG_ANY): Add as <*>.
5614 (TYPE_TAG_NONE): Add as <!>.
5615 (generic_symlist_item): Remove RHS for %symbol-default and add RHS's
5616 for <*> and <!>.
5617 * src/scan-gram.l (PERCENT_SYMBOL_DEFAULT): Remove.
5618 (TYPE_TAG_ANY, TYPE_TAG_NONE): Add.
5619 * src/symlist.c (symbol_list_default_new): Split into tagged and
5620 tagless versions.
5621 (symbol_list_destructor_set, symbol_list_printer_set): Split
5622 SYMLIST_DEFAULT case into SYMLIST_DEFAULT_TAGGED and
5623 SYMLIST_DEFAULT_TAGLESS.
5624 * src/symlist.h: Update symbol_list_default*_new prototypes.
5625 (symbol_list.content_type): Split enum value SYMLIST_DEFAULT into
5626 SYMLIST_DEFAULT_TAGGED and SYMLIST_DEFAULT_TAGLESS.
5627 * src/symtab.c (default_destructor, default_destructor_location,
5628 default_printer, default_printer_location): Split each into tagged and
5629 tagless versions.
5630 (symbol_destructor_get, symbol_destructor_location_get,
5631 symbol_printer_get, symbol_printer_location_get): Implement tagged
5632 default and tagless default cases.
5633 (default_destructor_set, default_printer_set): Split each into tagged
5634 and tagless versions.
5635 * src/symtab.h: Update prototypes.
5636 * tests/actions.at (Default %printer and %destructor): Rename to...
5637 (Default tagless %printer and %destructor): ... this, and extend.
5638 (Per-type %printer and %destructor): Rename to...
5639 (Default tagged and per-type %printer and %destructor): ... this, and
5640 extend.
5641 (Default %printer and %destructor for user-defined end token): Extend.
5642 (Default %printer and %destructor are not for error or $undefined):
5643 Update.
5644 (Default %printer and %destructor are not for $accept): Update.
5645 (Default %printer and %destructor for mid-rule values): Extend.
5646 * tests/input.at (Default %printer and %destructor redeclared): Extend.
5647 (Unused values with default %destructor): Extend.
5648
5649 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
5650
5651 Don't apply the default %destructor/%printer to an unreferenced midrule
5652 value. Mentioned at
5653 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00104.html>.
5654 * src/symtab.c (dummy_symbol_get): Name all dummy symbols initially
5655 like $@n instead of just @n so that the default %destructor/%printer
5656 logic doesn't see them as user-defined symbols.
5657 (symbol_is_dummy): Check for both forms of the name.
5658 * src/reader.c (packgram): Remove the `$' from each midrule symbol
5659 name for which the midrule value is referenced in any action.
5660 * tests/actions.at (Default %printer and %destructor for mid-rule
5661 values): New test.
5662 * tests/regression.at (Rule Line Numbers, Web2c Report): Update output
5663 for change to dummy symbol names.
5664
5665 2006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
5666
5667 Warn about unset midrule $$ if the corresponding $n is used.
5668 * src/reader.c (symbol_should_be_used): Check midrule parent rule for
5669 $n usage.
5670 (packgram): Before invoking grammar_rule_check on any rule, make sure
5671 all actions have already been scanned in order to set `used' flags.
5672 Otherwise, checking that a midrule's $$ is set will not always work
5673 properly because the midrule check must forward-reference the midrule's
5674 parent rule.
5675 * tests/input.at (AT_CHECK_UNUSED_VALUES): Extend to check the new
5676 warning.
5677
5678 2006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
5679
5680 More improvements to the documentation of the prologue alternatives:
5681 * NEWS (2.3a+): Mention the new `Prologue Alternatives' section in the
5682 Bison manual.
5683 * doc/bison.texinfo (Prologue Alternatives): Correct some errors. Add
5684 some text to clarify the relative importance of the new directives and
5685 to show how these directives may be viewed as code labels.
5686
5687 2006-10-16 Joel E. Denny <jdenny@ces.clemson.edu>
5688
5689 Similar to the recently removed %before-header, add %code-top as the
5690 alternative to the pre-prologue. Mentioned at
5691 <http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00063.html>.
5692 Also, let the prologue alternatives appear in the grammar section.
5693 * src/parse-gram.y (PERCENT_CODE_TOP): New token.
5694 (prologue_declaration): Move the existing prologue alternatives to...
5695 (grammar_declaration): ... here and add %code-top.
5696 * src/scan-gram.l (PERCENT_CODE_TOP): New token.
5697
5698 Clean up and extend documentation for the prologue alternatives.
5699 * NEWS (2.3a+): Describe prologue alternatives.
5700 * doc/bison.texinfo (Prologue): Move discussion of prologue
5701 alternatives to...
5702 (Prologue Alternatives): ... this new section, and extend it to discuss
5703 all 4 directives in detail.
5704 (Table of Symbols): Clean up discussion of prologue alternatives and
5705 add %code-top.
5706
5707 2006-10-16 Juan Manuel Guerrero <juan.guerrero@gmx.de>
5708
5709 DJGPP specific issues.
5710
5711 * djgpp/config.bat: config.hin has been moved to lib. Adjust
5712 config.bat accordingly.
5713 * djgpp/config.sed: Adjust config.sed for the use of autoconf 2.60.
5714 * djgpp/config.site: Likewise.
5715
5716 2006-10-16 Paolo Bonzini <bonzini@gnu.org>
5717
5718 Replace %*-header with %provides, %requires, %code. See discussion at
5719 http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00002.html
5720
5721 * data/bison.m4 (b4_user_requires, b4_user_provides): New.
5722 (b4_user_start_header): Remove.
5723 * data/glr.c: Use new macros instead of b4_*start_header
5724 and b4_*end_header.
5725 * data/glr.cc: Likewise.
5726 * data/lalr1.cc: Likewise.
5727 * data/push.c: Likewise.
5728 * data/yacc.c: Likewise.
5729
5730 * doc/bison.texinfo: Remove %before-header, rename
5731 %{start,end,after}-header to %requires, %provides, %code.
5732
5733 * src/parse-gram.y: Likewise (also rename token names accordingly).
5734 * src/scan-gram.l: Likewise.
5735 * tests/actions.at: Likewise.
5736
5737 2006-10-14 Paul Eggert <eggert@cs.ucla.edu>
5738
5739 * lib/Makefile.am (AM_CFLAGS): Remove $(WERROR_CFLAGS).
5740 Problem reported by Joel E. Denny.
5741
5742 2006-10-14 Jim Meyering <jim@meyering.net>
5743
5744 (Sync from coreutils.)
5745 Work also when the working directory (with e.g. coreutils sources)
5746 is version controlled with git, rather than CVS.
5747 * bootstrap (CVS_only_file): Test for the existence of README-cvs,
5748 rather than CVS.
5749 In messages and comments, say e.g., "checked-out sources",
5750 rather than "CVS sources".
5751 (version_controlled_file): New function. Work for git as well as
5752 for CVS. Don't use grep's -q option.
5753 (slurp): Call it here, in place of CVS-specific code.
5754
5755 2006-10-14 Joel E. Denny <jdenny@ces.clemson.edu>
5756
5757 Fix testsuite for ./configure --enable-gcc-warnings:
5758 * configure.ac (gcc-warnings): Move -Wall before -Wno-sign-compare.
5759 Otherwise, gcc 4.1.0 (at least) warns about sign comparisons in
5760 __AT_CHECK_PRINTER_AND_DESTRUCTOR in tests/actions.at.
5761 * test/input.at (Torturing the Scanner): #include <stdlib.h> for abort.
5762 * test/regression.at (Diagnostic that expects two alternatives):
5763 Likewise.
5764
5765 2006-10-12 Paul Eggert <eggert@cs.ucla.edu>
5766
5767 * bootstrap.conf (gnulib_modules): Add config-h.
5768 * djgpp/subpipe.c: Include <config.h> unconditionally; don't
5769 worry about HAVE_CONFIG_H.
5770 * lib/abitset.c: Likewise.
5771 * lib/bitset.c: Likewise.
5772 * lib/bitset_stats.c: Likewise.
5773 * lib/bitsetv-print.c: Likewise.
5774 * lib/bitsetv.c: Likewise.
5775 * lib/ebitset.c: Likewise.
5776 * lib/get-errno.c: Likewise.
5777 * lib/lbitset.c: Likewise.
5778 * lib/subpipe.c: Likewise.
5779 * lib/timevar.c: Likewise.
5780 * lib/vbitset.c: Likewise.
5781 * lib/bitset.c: Include "bitset.h" first, to test interface.
5782 * lib/bitset_stats.c: Include "bitset_stats.h" first.
5783 * lib/bitsetv-print.c: Include "bitsetv-print.h" first.
5784 * lib/bitsetv.c: Include "bitsetv.h" first.
5785 * lib/get-errno.c: Include "get-errno.h" first.
5786 * m4/.cvsignore: Add config-h.m4.
5787 * tests/actions.at (Default %printer and %destructor for ...):
5788 Adjust expected line numbers in output to reflect removal of #if
5789 HAVE_CONFIG_H lines.
5790 * tests/glr-regression.at (Missed %merge type warnings when ...):
5791 Likewise.
5792 * tests/regression.at (Braced code in declaration in rules section):
5793 Likewise.
5794 * tests/atlocal.in (CPPFLAGS): Don't define HAVE_CONFIG_H.
5795 * tests/local.at (AT_DATA_GRAMMAR_PROLOGUE):
5796 Include <config.h> unconditionally.
5797
5798 * bootstrap: Sync from coreutils, as follows:
5799
5800 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
5801
5802 * bootstrap (symlink_to_gnulib): Fix bug: the dot_dots shell
5803 variable was sometimes used without being initialized. This
5804 messed up the installation of the INSTALL file in some cases.
5805
5806 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
5807
5808 * bootstrap (usage, main program, symlink_to_gnulib): Add option
5809 --copy. Inspired by a suggestion from Bruno Haible.
5810
5811 2006-10-03 Jim Meyering <jim@meyering.net>
5812
5813 * bootstrap: Undo last change to this file, since now gnulib-tool
5814 sticks with the automake default in generating dependencies.
5815
5816 2006-10-12 Paul Eggert <eggert@cs.ucla.edu>
5817
5818 * configure.ac: Use AC_PROG_CC_STDC; this is more modern than
5819 the old AC_PROG_CC / AM_PROG_CC_STDC combination.
5820
5821 * doc/bison.1: Add copyright notice.
5822
5823 * data/glr.c: Don't include <stdarg.h>; not used.
5824
5825 * NEWS: The -g and --graph options now output graphs in Graphviz
5826 DOT format, not VCG format.
5827 * doc/bison.1: Likewise.
5828 * doc/bison.texinfo (Understanding, Bison Options): Likewise.
5829 * THANKS: Add Satya Kiran Popuri, who proposed the initial version
5830 of this change in
5831 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00158.html>.
5832 * TODO: Remove Graphviz entry.
5833 * src/Makefile.am (bison_SOURCES): Add graphviz.c and graphviz.h;
5834 remove vcg.c, vcg.h, vcg_defaults.h.
5835 * src/vcg.c, src/vcg.h, src/vcg_defaults.h: Remove.
5836 * src/graphviz.c, src/graphviz.h: New files.
5837 * src/files.c (compute_output_file_names): Output .dot, not .vcg.
5838 * src/files.h: Make comment more generic.
5839 * src/main.c (main): Likewise.
5840 * src/print_graph.h: Likewise.
5841 * src/getargs.c (usage): Make usage description more generic.
5842 * src/print_graph.c: Include graphviz.h rather than vcg.h.
5843 (static_graph, fgraph): Remove. All uses changed to pass
5844 arguments instead of sharing a static var.
5845 (print_core, print_actions, print_state, print_graph):
5846 Output graphviz format rather than VCG format.
5847 * tests/.cvsignore: Remove *.vcg; add *.dot.
5848 * tests/output.at: Expect *.dot files, not *.vcg files.
5849
5850 * data/Makefile.am (dist_pkgdata_DATA): Add bison.m4; this
5851 accommodates the 2006-10-08 change.
5852
5853 2006-10-11 Bob Rossi <bob@brasko.net>
5854
5855 * data/push.c (yypushparse, yypvarsinit, yypvars): Wrap in b4_push_if.
5856 (b4_yyssa, b4_yyerror_range): New macros.
5857 (struct yypvars): Remove yyssa_ptr and yyerror_range_ptr fields.
5858 (yypvarsinit): Remove init of removed fields.
5859 (yypushparse): Remove use of removed fields; use new macros instead.
5860
5861 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
5862
5863 * data/push.c (yypushparse): Fix memory leak if yymsg is malloced
5864 in a push parser. Reindent slightly to match yacc.c better.
5865
5866 2006-10-11 Bob Rossi <bob@brasko.net>
5867
5868 * data/push.c (struct yypvars): Remove yymsgbuf, yymsgbuf_ptr, yymsg,
5869 yymsg_alloc fields.
5870 (yypvarsinit, yypushparse): Remove init of removed fields.
5871 (yypushparse): Use yymsgbuf instead of yymsgbuf_ptr.
5872
5873 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
5874
5875 * THANKS: Add Paolo Bonzini and Bob Rossi.
5876
5877 2006-10-08 Paolo Bonzini <bonzini@gnu.org>
5878
5879 * data/c.m4 (b4_copyright, b4_epilogue, b4_location_initial_column,
5880 b4_location_initial_line, p4_parse_param, b4_ints_in, b4_flag_if,
5881 b4_define_flag_if and uses, b4_basename, b4_syncline, b4_user_code,
5882 b4_define_user_cde and uses): Remove.
5883 (b4_comment, b4_prefix, b4_sync_start): New.
5884 * data/bison.m4: New file, with most of the content removed from c.m4.
5885 * src/muscle_tab.h: Use "do {...} while(0)" throughout.
5886 * src/output.c (output_skeleton): Pass bison.m4.
5887 (prepare): Pass glr_flag and nondeterministic_flag. Pass prefix
5888 only if specified.
5889
5890 2006-10-05 Paul Eggert <eggert@cs.ucla.edu>
5891
5892 Fix test failure reported by Tom Lane in
5893 <http://lists.gnu.org/archive/html/bug-bison/2006-10/msg00000.html>
5894 and try to make such failures easier to catch in the future.
5895 * data/glr.c (YYTRANSLATE): Don't check for nonpositive arg;
5896 that's now the caller's responsibility.
5897 (yyprocessOneStack, yyrecoverSyntaxError, yyparse):
5898 Set yychar = YYEOF if it's negative.
5899 * tests/actions.at (yylex): Abort if asked to read past EOF.
5900 * tests/conflicts.at (yylex): Likewise.
5901 * tests/cxx-type.at (yylex): Likewise.
5902 * tests/glr-regression.at (yylex): Likewise.
5903 * tests/input.at (yylex): Likewise.
5904 * tests/regression.at (yylex): Likewise.
5905 * tests/torture.at (yylex): Likewise.
5906
5907 2006-10-01 Paul Eggert <eggert@cs.ucla.edu>
5908
5909 Fix problems with translating English-language diagnostics.
5910 * bootstrap: Fix bug introduced in recent bootstrap changes, with
5911 respect to bison-runtime pot generation. The YY_ stuff
5912 wasn't being captured.
5913 * bootstrap.conf (XGETTEXT_OPTIONS_RUNTIME): New var.
5914 * po/POTFILES.in: Add src/location.c, src/scan-code.l.
5915 * runtime-po/POTFILES.in: Add data/push.c.
5916
5917 2006-09-29 Paul Eggert <eggert@cs.ucla.edu>
5918
5919 Merge bootstrap changes from coreutils.
5920
5921 2006-09-28 Jim Meyering <jim@meyering.net>
5922
5923 Automatically generated dependencies are important even
5924 when all of the sources in a directory come from gnulib.
5925 * bootstrap (gnulib_tool): Remove the "no-dependencies" automake
5926 option that gnulib-tool adds to what becomes our lib/gnulib.mk.
5927
5928 2006-09-23 Jim Meyering <jim@meyering.net>
5929
5930 * bootstrap (gnulib_tool_options): Add "--local-dir gl".
5931
5932 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
5933
5934 * bootstrap: Add support for --force.
5935 (usage): New function. Describe usage less tersely.
5936 (CVS_only_file): New var.
5937
5938 2006-09-21 Paul Eggert <eggert@cs.ucla.edu>
5939
5940 * data/push.c (YYPUSH_MORE): Make it an enum instead.
5941 (yypushparse): Use YYPUSH_MORE instead of the mystery constant.
5942 Adjust white space and comments to match GNU style better.
5943
5944 2006-09-20 Bob Rossi <bob@brasko.net>
5945
5946 * data/push.c (yyresult_get): Remove function.
5947 (YYPUSH_MORE): Add #define.
5948 (yypushparse): Modify return value.
5949
5950 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
5951
5952 * stamp-h.in: Remove; no longer needed.
5953 * .cvsignore: Replace autom4te.cache and config.cache with *.cache.
5954 Remove config.h, config.hin, intl (no longer created).
5955 * lib/.cvsignore: Add config.h, config.hin, configmake.h, inttypes.h,
5956 stamp-h1.
5957
5958 Sync bootstrap from coreutils, as follows:
5959
5960 2006-09-18 Paul Eggert <eggert@cs.ucla.edu>
5961
5962 * bootstrap (symlink_to_gnulib): New function.
5963 (cp_mark_as_generated): Use it, to prefer symlinks-to-gnulib
5964 to copies-of-gnulib.
5965 (cp_mark_as_generated, slurp, gnulib_files):
5966 Avoid making a copy if it's the same as the old version.
5967 (gnulib_files): Add support for this variable (used by Bison).
5968
5969 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
5970
5971 * src/getargs.c (usage): Rework to use conventions similar to
5972 coreutils, to make translation a bit easier and the code a bit
5973 smaller. Problem reported by Tim Van Holder.
5974
5975 2006-09-15 Paul Eggert <eggert@cs.ucla.edu>
5976
5977 Use some of gnulib's new modules, taken from coreutils.
5978
5979 * bootstrap: Sync from coreutils, except add support for gnulib_files.
5980 * bootstrap.conf: New file.
5981 (gnulib_modules): Add configmake, inttypes, unistd.
5982 (XGETTEXT_OPTIONS): Add complain, complain_at,
5983 fatal, fatal_at, warn, warn_at, unexpected_end.
5984 * configure.ac (AC_CONFIG_HEADERS): config.h is now in lib, not here.
5985 (gl_USE_SYSTEM_EXTENSIONS): Remove; gl_EARLY now does this.
5986 (gl_EARLY): Add.
5987 (AM_STDBOOL_H): Remove; gl_INIT now dows this.
5988 (gl_INIT): Add
5989 (GNULIB_AUTOCONF_SNIPPET): Remove.
5990 (AM_GNU_GETTEXT): Add; require formatstring macros since that's
5991 the pickiest.
5992 * lib/.cvsignore: Add inttypes_.h.
5993 * lib/Makefile.am: Include gnulib.mk first so we can append to it.
5994 (AM_CFLAGS): Add WERROR_CFLAGS, to be more like coreutils.
5995 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES): Remove
5996 no-longer-necessary initializations.
5997 (lib_SOURCES): Remove, replacing by libbison_a_SOURCES.
5998 * lib/subpipe.c: Include <unistd.h> unconditionally, now that we
5999 use the unistd module.
6000 * src/system.h: Likewise.
6001 * m4/.cvsignore: Remove *_gl.m4, gnulib.m4, inttypes_h.m4, uintmax_t.m4,
6002 ulonglong.m4. Add gettext.m4, gnulib-cache.m4, gnulib-comp.m4,
6003 gnulib-tool.m4, inttypes-h.m4, inttypes-pri.m4, inttypes.m4.
6004 * src/Makefile.am (DEFS): Remove, since configmake does this for us.
6005 (AM_CPPFLAGS): Remove -I../lib, since Automake does that for us.
6006 * src/system.h: Include inttypes.h unconditionally, now that we
6007 use the inttypes module. Don't bother to include stdint.h, since
6008 inttypes.h now does that for us.
6009 (LOCALEDIR): Remove, now that we use the configmake module.
6010 * src/getargs.c: Include configmake.h.
6011 * src/main.c: Likewise.
6012 * src/output.c: Likewise.
6013 * tests/atlocal.in (CPPFLAGS): Include from $abs_top_builddir/lib,
6014 not from $abs_top_builddir, since config.h moved.
6015
6016
6017 Port to GCC 2.95. First two problems reported by Michael Deutschmann in
6018 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00018.html>.
6019
6020 * src/parse-gram.y (symbol_declaration): Don't put statements
6021 before declarations; it's not portable to C89.
6022 * src/scan-code.l (handle_action_at): Likewise.
6023
6024 * src/scan-code.l: Always initialize braces_level; the old code
6025 left it uninitialized and therefore had undefined behavior.
6026
6027 Don't attempt to redefine 'assert', since it runs afoul of
6028 systems where standard headers (mistakenly) include <assert.h>.
6029 Instead, define and use our own alternative, called 'aver'.
6030 * src/reader.c: Don't include assert.h, since we no longer
6031 use assert.
6032 * src/scan-code.l: Likewise.
6033 * src/system.h (assert): Remove, replacing with....
6034 (aver): New function, taking a bool arg. All uses changed.
6035 * src/tables.c (pack_vector): Ensure that aver arg is bool,
6036 not merely an integer.
6037
6038 2006-09-15 Bob Rossi <bob@brasko.net>
6039
6040 * data/Makefile.am (dist_pkgdata_DATA): Add push.c.
6041 * data/c.m4 (YYPUSH): New.
6042 (b4_push_if): New macro. Use it instead of #ifdef YYPUSH.
6043 * src/getargs.c (push_parser): New var.
6044 * src/getargs.h (push_parser): New declaration.
6045 * src/output.c (prepare): Add macro insertion of `push_flag'.
6046 * src/parse-gram.y (PERCENT_PUSH_PARSER): New token.
6047 (prologue_declaration): Parse %push-parser.
6048 * src/scan-gram.l: Scan new PERCENT_PUSH_PARSER token.
6049 * tests/calc.at (_AT_CHECK_CALC_ERROR): Add "Return" and "Now" to
6050 list of removed lines from the traces observed.
6051 (AT_CHECK_CALC_LALR): Added push parser tests.
6052
6053 2006-09-13 Paul Eggert <eggert@cs.ucla.edu>
6054
6055 * NEWS: Version 2.3a.
6056 * configure.ac (AC_INIT): Likewise.
6057
6058 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Remove
6059 "#define YYSTYPE int" that caused "make maintainer-check" to fail
6060 due to header ordering dependencies. I don't know why the #define
6061 was there.
6062
6063 Fix glr.cc and lalr1.cc's use of YYDEBUG so that there's zero
6064 runtime cost when YYDEBUG is not defined, and so that some tests
6065 that used to fail now work. Problem and initial suggestion by
6066 Paolo Bonzini.
6067 * data/c++.m4 (b4_parse_param_cons): Omit leading ','.
6068 * data/glr.cc (b4_parser_class_name):
6069 Initialize yycdebug_ only if YYDEBUG. Also, initialize yydebug_.
6070 (debug_level, set_debug_level): Affect yydebug_, not ::yydebug.
6071 (yydebug_) [YYDEBUG]: New member.
6072 (yycdebug_): Now defined only if YYDEBUG.
6073 * data/lalr1.cc (yydebug_, yycdebug_): Now defined only if YYDEBUG.
6074 (YYCDEBUG) [!YYDEBUG]: Don't use yydebug_ and yycdebug_.
6075 (b4_parser_class_name): Initialize yydebug_ and yycdebug_ only
6076 if YYYDEBUG.
6077 (debug_stream, set_debug_stream, debug_level, set_debug_level):
6078 Define only if YYDEBUG.
6079 * tests/calc.at (_AT_DATA_CALC_Y) [!YYDEBUG]: Omit call to
6080 set_debug_level.
6081 * tests/regression.at (_AT_DATA_DANCER_Y) [!YYDEBUG]: Likewise.
6082 * tests/calc.at (AT_CHECK_CALC_GLR_CC): Uncomment calls to
6083 AT_CHECK_CALC_GLR_CC that are working now.
6084
6085 2006-09-12 Paul Eggert <eggert@cs.ucla.edu>
6086
6087 * data/glr.cc (YYERROR_VERBOSE, YYTOKEN_TABLE): Remove.
6088 We don't need them in glr.cc, and glr.c defines them.
6089 Defining YYERROR_VERBOSE to 0 here breaks glr.c, since glr.c
6090 assumes that defining it to anything is the same as defining
6091 it to 1. Problem reported by Paolo Bonzini.
6092
6093 2006-09-12 Paolo Bonzini <bonzini@gnu.org> (tiny change)
6094
6095 * data/c.m4 (b4_null, b4_case): Define.
6096 * src/output.c (prepare_symbols): Use b4_null.
6097 (user_actions_output): Use b4_case.
6098
6099 2006-09-11 Paul Eggert <eggert@cs.ucla.edu>
6100
6101 * data/glr.c (b4_shared_declarations): Put start-header first,
6102 before any #includes that we generate, so that feature-test
6103 macros work. Problem reported by Michael Deutschmann in
6104 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00004.html>.
6105 * data/lalr1.cc: Likewise.
6106 * doc/bison.texinfo (Prologue): Document that feature-test macros
6107 should be defined before any Bison declarations.
6108 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Put defns
6109 that depend on location.hh after, not before, Bison decls, since
6110 we now include location.hh after the first user prologue.
6111
6112 * doc/bison.texinfo (Calc++ Parser): Fix memory leak reported by
6113 Sander Brandenburg in
6114 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00002.html>.
6115 Also, fix minor white space and comment issues.
6116 (Prologue): Mention that it's better to define feature-test macros
6117 before Bison declarations. Problem reported by Michael Deutschmann.
6118
6119 * README-cvs: Fix typo: "&" should be "&&". Problem reported
6120 by Jim Meyering.
6121 * m4/.cvsignore: Add argmatch.m4. Remove obstack.m4, strerror_r.m4.
6122 This adjusts to recent gnulib changes.
6123
6124 2006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
6125
6126 Finish implementation of per-type %destructor/%printer. Discussed
6127 starting at
6128 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>
6129 and
6130 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>.
6131 * NEWS (2.3+): Add a description of this feature to the default
6132 %destructor/%printer description.
6133 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise.
6134 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
6135 Invoke semantic_type_destructor_set or semantic_type_printer_set when a
6136 list node contains a semantic type.
6137 * src/symtab.c, src/symtab.h: Extend with a table that associates
6138 semantic types with their %destructor's and %printer's.
6139 (semantic_type_from_uniqstr, semantic_type_get,
6140 semantic_type_destructor_set, semantic_type_printer_set): New functions
6141 composing the public interface of that table.
6142 (symbol_destructor_get, symbol_destructor_location_get,
6143 symbol_printer_get, symbol_printer_location_get): If there's no
6144 per-symbol %destructor/%printer, look up the per-type before trying
6145 the default.
6146 * tests/actions.at (Per-type %printer and %destructor): New test case.
6147 * tests/input.at (Default %printer and %destructor redeclared):
6148 Extend to check that multiple occurrences of %symbol-default in a
6149 single %destructor/%printer declaration is an error.
6150 (Per-type %printer and %destructor redeclared, Unused values with
6151 per-type %destructor): New test cases.
6152
6153 2006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
6154
6155 Require default %destructor/%printer to be declared using
6156 %symbol-default instead of an empty symbol list, and start working on
6157 new per-type %destructor/%printer. Discussed at
6158 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00007.html>.
6159 * NEWS (2.3+): Add %symbol-default to example.
6160 * bison.texinfo (Freeing Discarded Symbols): Likewise.
6161 (Table of Symbols): Add entry for %symbol-default.
6162 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): New token.
6163 (generic_symlist, generic_symlist_item): New nonterminals for creating
6164 a list in which each item is a symbol, semantic type, or
6165 %symbol-default.
6166 (grammar_declaration): Use generic_symlist in %destructor and %printer
6167 declarations instead of symbols.1 or an empty list.
6168 (symbol_declaration, precedence_declaration, symbols.1): Update actions
6169 for changes to symbol_list.
6170 * src/reader.c: Update for changes to symbol_list.
6171 * src/scan-code.l: Likewise.
6172 * src/scan-gram.l: Scan new PERCENT_SYMBOL_DEFAULT token.
6173 * src/symlist.c, src/symlist.h: Extend such that a list node may
6174 represent a semantic type or a %symbol-default in addition to just an
6175 ordinary symbol. Add switched functions for setting %destructor's and
6176 %printer's.
6177 * tests/actions.at, tests/input.at: Add %symbol-default to all default
6178 %destructor/%printer declarations.
6179
6180 2006-08-23 Joel E. Denny <jdenny@ces.clemson.edu>
6181
6182 Whether the default %destructor/%printer applies to a particular symbol
6183 isn't a question of whether the user *declares* that symbol (in %token,
6184 for example). It's a question of whether the user by any means
6185 *defines* the symbol at all (by simply using a char token, for
6186 example). $end is defined by Bison whereas any other token with token
6187 number 0 is defined by the user. The error token is always defined by
6188 Bison regardless of whether the user declares it with %token, but we
6189 may one day let the user define error as a nonterminal instead.
6190 * NEWS (2.3+): Say "user-defined" instead of "user-declared".
6191 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise, and document
6192 the meaning of "user-defined".
6193 * tests/actions.at (Default %printer and %destructor for user-declared
6194 end token): Rename to...
6195 (Default %printer and %destructor for user-defined end token): ...
6196 this.
6197
6198 * src/symtab.c (symbol_destructor_get, symbol_printer_get): In the
6199 computation of whether to apply the default, don't maintain a list of
6200 every Bison-defined symbol. Instead, just check for a first character
6201 of '$', which a user symbol cannot have, and check for the error token.
6202
6203 2006-08-21 Joel E. Denny <jdenny@ces.clemson.edu>
6204
6205 Don't apply the default %destructor or %printer to the error token,
6206 $undefined, or $accept. This change fits the general rule that the
6207 default %destructor and %printer are only for user-declared symbols,
6208 and it solves several difficulties that are described in the new test
6209 cases listed below.
6210 * src/symtab.c (symbol_destructor_get, symbol_printer_get): Implement.
6211 * tests/actions.at (Default %printer and %destructor are not for error
6212 or $undefined, Default %printer and %destructor are not for $accept):
6213 New test cases.
6214
6215 2006-08-19 Joel E. Denny <jdenny@ces.clemson.edu>
6216
6217 Allow %start after the first rule.
6218 * src/reader.c (grammar_current_rule_begin): Don't set the start symbol
6219 when parsing the first rule.
6220 (check_and_convert_grammar): Search for it here after all grammar
6221 declarations have been parsed. Skip midrules, which have dummy LHS
6222 nonterminals.
6223 * src/symtab.c (symbol_is_dummy): New function.
6224 * src/symtab.h (symbol_is_dummy): Declare it.
6225 * tests/input.at (%start after first rule): New test.
6226
6227 2006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
6228
6229 Redo some of the previous commit: add back the ability to use
6230 non-aliased/undeclared string literals since it might be useful to
6231 those declaring %token-table.
6232 * src/reader.c (check_and_convert_grammar): Undo changes in previous
6233 commit: don't worry about complaints from symbols_pack.
6234 * src/symtab.c (symbol_new, symbol_class_set,
6235 symbol_check_alias_consistency): Undo changes in previous commit: count
6236 each string literal as a new symbol and token, assign it a symbol
6237 number, and don't complain about non-aliased string literals.
6238 (symbols_pack): Since symbol_make_alias still does not decrement symbol
6239 and token counts but does still set aliased tokens to the same number,
6240 symbol_pack_processor now leaves empty slots in the symbols array.
6241 Remove those slots.
6242 * tests/regression.at (Undeclared string literal): Remove test case
6243 added in previous commit since non-aliased string literals are allowed
6244 again.
6245 (Characters Escapes, Web2c Actions): Undo changes in previous commit:
6246 remove unnecessary string literal declarations.
6247 * tests/sets.at (Firsts): Likewise.
6248
6249 2006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
6250
6251 Don't allow an undeclared string literal, but allow a string literal to
6252 be used before its declaration.
6253 * src/reader.c (check_and_convert_grammar): Don't invoke packgram if
6254 symbols_pack complained.
6255 * src/symtab.c (symbol_new): Don't count a string literal as a new
6256 symbol.
6257 (symbol_class_set): Don't count a string literal as a new token, and
6258 don't assign it a symbol number since symbol_make_alias does that.
6259 (symbol_make_alias): It's not necessary to decrement the symbol and
6260 token counts anymore. Don't assume that an alias declaration occurs
6261 before any uses of the identifier or string, and thus don't assert that
6262 one of them has the highest symbol number so far.
6263 (symbol_check_alias_consistency): Complain if there's a string literal
6264 that wasn't declared as an alias.
6265 (symbols_pack): Bail if symbol_check_alias_consistency failed since
6266 symbol_pack asserts that every token has been assigned a symbol number
6267 although undeclared string literals have not.
6268 * tests/regression.at (String alias declared after use, Undeclared
6269 string literal): New test cases.
6270 (Characters Escapes, Web2c Actions): Declare string literals as
6271 aliases.
6272 * tests/sets.at (Firsts): Likewise.
6273
6274 2006-08-14 Joel E. Denny <jdenny@ces.clemson.edu>
6275
6276 In the grammar scanner, STRING_FINISH unclosed constructs and return
6277 them to the parser in order to improve error messages.
6278 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER,
6279 SC_BRACED_CODE, SC_PROLOGUE): Implement.
6280 * tests/input.at (Unclosed constructs): New test case.
6281 * tests/regression.at (Invalid inputs): Update now that unclosed %{ is
6282 seen.
6283
6284 * src/scan-gram.h, src/scan-gram.l (gram_last_braced_code_loc): Remove
6285 unused global.
6286
6287 2006-08-13 Joel E. Denny <jdenny@ces.clemson.edu>
6288
6289 Handle string aliases for character tokens correctly.
6290 * src/symtab.c (symbol_user_token_number_set): If the token has an
6291 alias, check and set its alias's user token number instead of its own,
6292 which is set to indicate the alias. Previously, every occurrence of
6293 the character token in the grammar overwrote that alias indicator with
6294 the character code.
6295 * tests/input.at (String aliases for character tokens): New test.
6296
6297 2006-08-12 Joel E. Denny <jdenny@ces.clemson.edu>
6298
6299 * src/parse-gram.y: Add `%expect 0' so we don't overlook conflicts.
6300
6301 2006-08-11 Paul Eggert <eggert@cs.ucla.edu>
6302
6303 * bootstrap: Put in need-ngettext argument to AM_GNU_GETTEXT,
6304 to prevent failures when building on older platforms.
6305 Check for autopoint failure.
6306 Set XGETTEXT_OPTIONS to values that check for C format strings,
6307 so that translators are warned about them (this also helps
6308 prevent core dumps).
6309
6310 * lib/subpipe.c (create_subpipe): Use new gnulib pipe_safer
6311 function, since it simplifies our code a bit.
6312
6313 * configure.ac (AC_ARG_ENABLE): Use -Wextra -Wno-sign-compare
6314 rather than -W, so we don't get bogus warnings about sign comparisons.
6315 Add -Wpointer-arith, since that warning is useful (it reports code
6316 that does not conform to C89 and that some compilers reject).
6317 * data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c: Undo latest change,
6318 since it's no longer needed.
6319
6320 2006-08-10 Joel E. Denny <jdenny@ces.clemson.edu>
6321
6322 Clean up scanners a bit.
6323 * src/flex-scanner.h (FLEX_NO_OBSTACK): New macro that blocks obstack
6324 definitions so gcc won't warn when obstack_for_string is unused.
6325 * src/scan-code.l: config.h and system.h are already #include'd by
6326 scan-code-c.c, so get rid of them here.
6327 * src/scan-gram.l: Likewise.
6328 * src/scan-skel.l: Likewise, and use flex-scanner.h without obstack
6329 definitions rather than duplicating the rest of it.
6330 * src/scan-gram-c.c, scan-skel-c.c: #include "system.h".
6331
6332 2006-08-09 Joel E. Denny <jdenny@ces.clemson.edu>
6333
6334 Suppress signed/unsigned comparison warnings for yycheck.
6335 * data/c.m4 (b4_safest_int_type): New macro.
6336 * data/glr.c, data/lalr1.cc: Wherever you compare yycheck[i] against
6337 a signed int type, cast it to b4_safest_int_type first.
6338 * data/yacc.c: Likewise.
6339 (b4_safest_int_type): Overwrite the one from c.m4 since b4_int_type is
6340 also overwritten.
6341
6342 2006-08-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> (tiny change)
6343
6344 * doc/bison.texinfo: Fix some typos.
6345
6346 2006-08-02 Paul Eggert <eggert@cs.ucla.edu>
6347
6348 * m4/.cvsignore: Add inttypes_h.m4,lib-ld.m4, lib-prefix.m4,
6349 po.m4, stdint_h.m4, uintmax_t.m4, ulonglong.m4, warning.m4.
6350
6351 * bootstrap (gnulib_tool): Stop using --assume-autoconf;
6352 the latest gnulib does this a different way.
6353 (get_translations): Sharuzzaman Ahmat Raslan reported that the ms
6354 translation was patched, so stop omitting it.
6355
6356 2006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
6357
6358 Enable declaration of default %printer/%destructor. Make the parser
6359 use these for all user-declared grammar symbols for which the user does
6360 not declare a specific %printer/%destructor. Thus, the parser uses it
6361 for token 0 if the user declares it but not if Bison generates it as
6362 $end. Discussed starting at
6363 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>,
6364 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>,
6365 and
6366 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>.
6367 * NEWS (2.3+): Mention.
6368 * doc/bison.texinfo (Actions in Mid-Rule): It's no longer impossible to
6369 declare a %destructor for a mid-rule's semantic value. It's just
6370 impossible to declare one specific to it.
6371 (Freeing Discarded Symbols): Mention that @$ can be used in %destructor
6372 code. Describe default %destructor form.
6373 * src/parse-gram.y (grammar_declaration): Parse default
6374 %printer/%destructor declarations.
6375 * src/output.c (symbol_destructors_output): Use symbol_destructor_get
6376 and symbol_destructor_location_get rather than accessing the destructor
6377 and destructor_location members of struct symbol.
6378 (symbol_printers_output): Likewise but for %printer's.
6379 * src/reader.c (symbol_should_be_used): Likewise but for %destructor's
6380 again.
6381 * src/symtab.c (default_destructor, default_destructor_location,
6382 default_printer, default_printer_location): New static global
6383 variables to record the default %destructor and %printer.
6384 (symbol_destructor_get, symbol_destructor_location_get,
6385 symbol_printer_get, symbol_printer_location_get): New functions to
6386 compute the appropriate %destructor and %printer for a symbol.
6387 (default_destructor_set, default_printer_set): New functions to set the
6388 default %destructor and %printer.
6389 * src/symtab.h: Prototype all those new functions.
6390 * tests/actions.at (Default %printer and %destructor): New test to
6391 check that the right %printer and %destructor are called, that they're
6392 not called for $end, and that $$ and @$ work correctly.
6393 (Default %printer and %destructor for user-declared end token): New
6394 test to check that the default %printer and %destructor are called for
6395 a user-declared end token.
6396 * tests/input.at (Default %printer and %destructor redeclared, Unused
6397 values with default %destructor): New tests to check related grammar
6398 warnings and errors.
6399
6400 2006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
6401
6402 Clean up handling of %destructor for the end token (token 0).
6403 Discussed starting at
6404 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>
6405 and
6406 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00013.html>.
6407
6408 Make the skeletons consistent in how they pop the end token and invoke
6409 its %destructor.
6410 * data/glr.c (yyrecoverSyntaxError, yyparse): Don't pop the start
6411 state, which has token number 0, since this would invoke the
6412 %destructor for the end token.
6413 * data/lalr1.cc (yy::parser::parse): Don't check for the final state
6414 until after shifting the end token, or else it won't be popped.
6415 * data/yacc.c (yyparse): Likewise.
6416
6417 * data/glr.c (yyparse): Clear the lookahead after shifting it even when
6418 it's the end token. Upon termination, destroy an unshifted lookahead
6419 even when it's the end token.
6420 * data/lalr1.cc (yy::parser::parse): Likewise.
6421 * data/yacc.c (yyparse): Likewise.
6422
6423 * src/reader.c (packgram): Don't check rule 0. This suppresses unused
6424 value warnings for the end token when the user gives the end token a
6425 %destructor.
6426
6427 * tests/actions.at (Printers and Destructors): Test all the above.
6428
6429 2006-07-24 Paul Eggert <eggert@cs.ucla.edu>
6430
6431 Update to latest gnulib and gettext versions.
6432 * bootstrap (gnulib-modules): Remove hard-locale, stdio-safer.
6433 Add fopen-safer.
6434 (gnulib_files): Add m4/warning.m4. Don't worry about files
6435 overwritten by autopoint.
6436 Replace gt_INTL_SUBDIR_CORE with an empty body in m4/gettext_gl.m4.
6437 Suppress "id", "ms", "tr" translations for now, since gettext 0.15
6438 rejects them.
6439 Don't use autoreconf; instead, invoke autopoint etc. by hand,
6440 so that we can remove the intl files at a better time.
6441 (intl_files_to_remove): Remove aclocal.m4, since it gets
6442 rebuilt anyway. Remove m4/inttypes_h.m4, m4/inttypes.m4,
6443 m4/isc-posix.m4, m4/lib-ld.m4, m4/lib-prefix.m4, m4/po.m4,
6444 m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
6445 Add m4/inttypes-h.m4, m4/lock.m4, m4/visibility.m4.
6446 Remove datarootdir hack; no longer needed.
6447 * configure.ac: Use gl_WARNING_CFLAGS rather than BISON_WARNING.
6448 (AM_GNU_GETTEXT_VERSION): Bump from 0.12 to 0.15.
6449 * lib/.cvsignore: Remove hard-locale.c, hard-locale.h, strdup.c,
6450 strdup.h.
6451 * m4/.cvsignore: Remove hard-locale.m4, strdup.m4.
6452 * m4/warning.m4: Remove from CVS, since we now use gnulib's version.
6453
6454 2006-07-20 Paul Eggert <eggert@cs.ucla.edu>
6455
6456 * bootstrap: Adjust to today's change to gnulib-tool by invoking
6457 it with --assume-autoconf='latest-stable'.
6458
6459 2006-07-13 Joel E. Denny <jdenny@ces.clemson.edu>
6460
6461 * src/parse-gram.y (grammar_declaration): Don't confuse Doxygen (at
6462 least 1.4.7 and 1.4.4) by putting a #line between `typedef union
6463 YYSTYPE' and `{'.
6464 * src/muscle_tab.h (muscle_grow): Replace the header comments with
6465 those from muscle_tab.c since the old ones are misleading.
6466
6467 2006-07-13 Akim Demaille <akim@epita.fr>
6468
6469 Support %define "KEY" {VALUE}.
6470 * src/scan-code.h, src/scan-code.l (translate_action)
6471 (translate_rule_action, translate_symbol_action, translate_code):
6472 Return char *, not const char *.
6473 * src/parse-gram.y (declaration): Rename as...
6474 (prologue_declaration): this.
6475 (string_content): Remove this nonterminal, use STRING.
6476 (braceless, content, content.opt): New nonterminal.
6477 Use them.
6478 (%define): Now accept content.opt, i.e., accept also BRACED_CODE
6479 as value.
6480 * src/scan-gram.l (getargs.h): Don't include it.
6481
6482 2006-07-12 Paul Eggert <eggert@cs.ucla.edu>
6483
6484 * data/lalr1.cc (YYCDEBUG): Use 'if (yydebug_) (*yycdebug_)'
6485 rather than a for-loop that declares a local bool variable. This
6486 should work around a compatibility problem with a Cray x1e C++
6487 compiler reported by Hung Nguyen in
6488 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00022.html>.
6489 The for-loop was introduced in the 2004-11-17 change but I don't
6490 know why it was needed.
6491
6492 2006-07-12 Akim Demaille <akim@epita.fr>
6493
6494 * data/c.m4: Comment changes.
6495
6496 2006-07-10 Akim Demaille <akim@lrde.epita.fr>
6497
6498 * src/complain.c (error_message, ERROR_MESSAGE): New.
6499 To factor...
6500 (fatal_at, fatal, warn_at, warn, complain_at, complain): these.
6501 * src/complain.h, src/complain.c (warning_issued): Remove, unused.
6502
6503 2006-07-09 Paul Eggert <eggert@cs.ucla.edu>
6504
6505 * NEWS: Instead of %union, you can define and use your own union type
6506 YYSTYPE if your grammar contains at least one <type> tag.
6507 Your YYSTYPE need not be a macro; it can be a typedef.
6508 * doc/bison.texinfo (Value Type, Multiple Types, Location Type):
6509 (Union Decl, Decl Summary): Document this.
6510 * data/glr.c (YYSTYPE): Implement this.
6511 * data/glr.cc (YYSTYPE): Likewise.
6512 * data/lalr1.cc (YYSTYPE): Likewise.
6513 * data/yacc.c (YYSTYPE): Likewise.
6514 * src/output.c (prepare): Output tag_seen_flag.
6515 * src/parse-gram.y (declaration, grammar_declaration):
6516 Use 'union_seen' rather than 'typed' to determine whether
6517 %union has been seen, since grammars can now be typed without
6518 %union.
6519 (symbol_declaration, type.opt, symbol_def):
6520 Keep track of whether a tag has been seen.
6521 * src/reader.c (union_seen, tag_seen): New vars.
6522 (typed): remove.
6523 * src/reader.h (union_seen, tag_seen, typed): Likewise.
6524 * src/scan-code.l (untyped_var_seen): New variable.
6525 (handle_action_dollar): Adjust to above changes.
6526 (handle_action_dollar, handle_action_at):
6527 Improve overflow checking for outlandish numbers.
6528 * tests/input.at (AT_CHECK_UNUSED_VALUES): Redo test to
6529 avoid new diagnostics generated by above changes.
6530 * tests/regression.at (YYSTYPE typedef): Add test to check
6531 for type tags without %union.
6532
6533 * src/symlist.c (symbol_list_length): Return int, not unsigned
6534 int, since callers expect int. This may need to get revisited
6535 once we have proper integer overflow checking.
6536
6537 * src/scan-gram.h (gram_scanner_cursor): Remove decl, since this
6538 object is now static.
6539
6540 * src/getargs.c (flags_argmatch): Return void, not int,
6541 to pacify ./configure --enable-gcc-warnings.
6542
6543 * src/flex-scanner.h (STRING_FREE): Don't use FLEX_PREFIX (last_string)
6544 since last_string is already defined to FLEX_PREFIX (last_string).
6545
6546 2006-07-09 Akim Demaille <akim@lrde.epita.fr>
6547
6548 Implement --warnings/-W.
6549 * src/getargs.c (report_argmatch, trace_argmatch): Remove,
6550 replaced by...
6551 (flags_argmatch, FLAGS_ARGMATCH): this new function and macro.
6552 Adjust callers.
6553 * src/getargs.h, src/getargs.c (warnings, warnings_flags)
6554 (warnings_args, warnings_types): New.
6555 (getargs, short_options, long_options): Accept -W/--warnings.
6556 Sort the options by alphabetical order, upper case letter right
6557 before its lower case.
6558
6559 2006-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
6560
6561 Change %merge result type clash warnings to errors. Discussed at
6562 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00026.html>.
6563 * src/reader.c (record_merge_function_type): Use complain_at.
6564 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
6565 declared later): Update test case results.
6566
6567 2006-07-09 Akim Demaille <akim@lrde.epita.fr>
6568
6569 * src/getargs.h, src/getargs.c: Swap --report and --trace handling
6570 to be in alphabetical order.
6571 (trace_args): Spelling fixes.
6572
6573 2006-07-09 Paul Eggert <eggert@cs.ucla.edu>
6574
6575 * data/yacc.c (YYID, yy_stack_print): Prefix local vars with "yy"
6576 so they don't collide with user-defined macros.
6577 (yy_stack_print): Don't assume that yytype_int16 promotes to int;
6578 this was never guaranteed, and now that we're using gnulib stdint,
6579 which defines int_fast16_t to long int, the problem is exposed.
6580
6581 2006-07-08 Paul Eggert <eggert@cs.ucla.edu>
6582
6583 * data/c.m4 (b4_basename): Simplify a bit, since we don't
6584 need the full POSIX semantics (and weren't implementing them
6585 anyway).
6586
6587 Adjust to Autoconf 2.60 and today's gnulib.
6588 * bootstrap (gnulib_modules): Add stdint.
6589 Remove special case for m4/onceonly_2_57.m4, since gnulib-tool
6590 no longer copies it.
6591 (intl_files_to_remove): Remove m4/longlong.m4 and m4/wchar_t.m4,
6592 since stdint needs the former and wcwidth (which is now required
6593 by mbswidth) needs the latter.
6594 Append 'datarootdir = @datarootdir@' to po/Makefile.in.in, to
6595 work around a compatibility glitch between gettext 0.14.6 and
6596 Autoconf 2.60.
6597 * configure.ac (AC_PREREQ): Require Autoconf 2.60.
6598 Do not check for uintptr_t, since new stdint module does the right
6599 thing.
6600 * lib/.cvsignore: Remove alloca.c, alloca.h, alloca_.h.
6601 Add stdint.h, stdint_.h, wcwidth.h.
6602 * m4/.cvsignore: Remove alloca.m4, onceonly.m4.
6603 Add absolute-header.m4, double-slash-root.m4, longlong.m4,
6604 stdint.m4, wchar_t.m4, wcwidth.m4.
6605 * src/files.c: Include <dirname.h> and <stdio-safer.h> in the
6606 usual order for ../lib/*.h files.
6607 (file_name_split): Use last_component, not base_name, to adjust
6608 to gnulib changes.
6609 * src/parse-gram.h: Include <strverscmp.h> in the usual order
6610 for ../lib/*.h files.
6611 (YYTYPE_INT16, YYTYPE_INT8, YYTYPE_UINT16, YYTYPE_UINT8):
6612 Define unconditionally, since we now assume the stdint module.
6613 * src/scan-skel.l: Include <dirname.h>.
6614 (BASE_QPUTS): Use last_component, not base_name.
6615 * src/system.h: Include <unlocked-io.h> in the usual order
6616 for ../lib/*.h files. Include <stdint.h> unconditionally,
6617 since we now use the stdint module.
6618 (uintptr_t): Declare if UINTPTR_MAX is not defined, not
6619 HAVE_UINTPTR_T, since we now use the stdint module.
6620 (base_name): Remove decl, since files now include <dirname.h>
6621 to get the decl.
6622
6623 2006-07-08 Akim Demaille <akim@lrde.epita.fr>
6624
6625 * data/c.m4 (b4_location_initial_column, b4_location_initial_line):
6626 New, default to 1.
6627 * data/yacc.c, data/glr.c, data/location.cc: Use them.
6628 * NEWS, doc/bison.texinfo: The initial column and line are 1 by
6629 default.
6630 * tests/calc.at: Adjust.
6631
6632 2006-07-08 Akim Demaille <akim@lrde.epita.fr>
6633
6634 * data/c.m4 (b4_basename): New.
6635 (b4_syncline): Also output the location of its invocation (from
6636 the skeleton).
6637 (b4_user_action, b4_define_user_action, b4_user_actions)
6638 (b4_user_initial_action, b4_user_post_prologue, b4_user_start_header)
6639 (b4_user_stype): New.
6640 * data/yacc.c, data/glr.c, data/lalr1.cc, data/glr.cc: Use them.
6641
6642 2006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
6643
6644 In the grammar file, the first column is 1 not 0 on the first line as
6645 on every other line.
6646 * src/parse-gram.y (%initial-action): Initialize @$ correctly.
6647 * tests/input.at (Torturing the Scanner): Update output.
6648
6649 * src/scan-gram.l (scanner_cursor): Declare it static.
6650
6651 2006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
6652
6653 In warnings, say "previous declaration" rather than "first
6654 declaration".
6655 * src/symtab.c (redeclaration): Do that here.
6656 * src/reader.c (record_merge_function_type): In the case of a result
6657 type clash, report the previous declaration rather than the very first
6658 one in the grammar file.
6659 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
6660 declared later): Add a third declaration to check this behavior.
6661 * tests/input.at (Incompatible Aliases): Update output.
6662
6663 2006-06-27 Akim Demaille <akim@epita.fr>
6664
6665 * doc/Doxyfile.in: New.
6666 * doc/Makefile.am: Use it.
6667 * src/lalr.h, src/symtab.h: Initial doxygenation.
6668
6669 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
6670
6671 Don't miss %merge result type warnings just because the LHS types are
6672 declared after the %merge. This continues the effort of the previous
6673 patch.
6674 * src/reader.c (get_merge_function): Don't set the merger type yet.
6675 (record_merge_function_type): New function for setting the merger type
6676 and checking for clashes.
6677 (grammar_current_rule_merge_set): Set the location of the %merge for
6678 the current rule.
6679 (packgram): Invoke record_merge_function_type for each rule now that
6680 all symbol type declarations have been parsed.
6681 * src/reader.h (merger_list.type_declaration_location): New member
6682 storing the location of the first %merge from which the type for this
6683 merging function was derived.
6684 * src/symlist.h (symbol_list.merger_declaration_location): New member
6685 storing the location of a rule's %merge, if any.
6686 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
6687 declared later): New test to catch the error fixed by the above patch.
6688
6689 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
6690
6691 Get action warnings (grammar_rule_check) right even when symbol
6692 declarations appear after the rules. Discussed at
6693 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00108.html>
6694 and
6695 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00151.html>.
6696 Don't mistake the type of $$ in a midrule to be that of its parent
6697 rule's $$.
6698 * src/reader.c (grammar_current_rule_end): Don't invoke
6699 grammar_rule_check yet since not all symbol declarations may have been
6700 parsed yet.
6701 (grammar_midrule_action): Likewise.
6702 Don't record whether the midrule's $$ has been used yet since actions
6703 haven't been translated yet.
6704 Record the midrule's parent rule and its RHS index within the parent
6705 rule.
6706 (grammar_current_rule_action_append): Don't translate the action yet
6707 since not all symbol declarations may have been parsed yet and, thus,
6708 warnings about types for $$, $n, @$, and @n can't be reported yet.
6709 (packgram): Translate the action and invoke grammar_rule_check now that
6710 all symbol declarations have been parsed.
6711 * src/scan-code.l (handle_action_dollar): Now that this is invoked
6712 after parsing the entire grammar file, the symbol list here in the case
6713 of a midrule is actually the midrule's empty RHS, so reference its
6714 parent rule's RHS where necessary.
6715 On the other hand, now that you can already know it's a midrule, you
6716 aren't forced to think $$ has the same type as its parent rule's $$.
6717 (handle_action_at): In the case of a midrule, reference the parent rule
6718 where necessary.
6719 * src/symlist.c (symbol_list_new): Initialize new midrule-related
6720 members.
6721 (symbol_list_length): Now that this is invoked after all rules have
6722 been parsed, a NULL symbol (rather than a NULL symbol list node)
6723 terminates a rule. symbol_list_print already does this correctly.
6724 * src/symlist.h (symbol_list.midrule_parent_rule,
6725 symbol_list.midrule_parent_rhs_index): New members so that midrules can
6726 remember their relationships with their parents.
6727 * tests/input.at (Type Clashes): Extend to catch the midrule $$ error
6728 fixed by the above patch.
6729 (_AT_UNUSED_VALUES_DECLARATIONS, AT_CHECK_UNUSED_VALUES): New m4 macros
6730 implementing...
6731 (Unused values): ... this old test case and...
6732 (Unused values before symbol declarations): ... this new test case.
6733 This one is the same as `Unused values' except that all symbol
6734 declarations appear after the rules in order to catch the rest of the
6735 errors fixed by the above patch.
6736
6737 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
6738
6739 More cleanup.
6740 * src/reader.c (current_rule): Declare it static since it's no longer
6741 used outside this file.
6742 (grammar_current_rule_action_append): Remove redundant arguments from
6743 translate_rule_action invocation.
6744 * src/reader.h (current_rule): Remove this unused extern.
6745 * src/scan-code.h (translate_rule_action): Remove redundant arguments.
6746 * src/scan-code.l (translate_rule_action): Likewise.
6747
6748 2006-06-25 Joel E. Denny <jdenny@ces.clemson.edu>
6749
6750 Clean up yesterday's patch.
6751 * parse-gram.y (rhs): Move grammar_midrule_action invocation from here
6752 to...
6753 * src/reader.c (grammar_current_rule_action_append): ... here for
6754 consistency with grammar_current_rule_symbol_append.
6755 * tests/regression.at (Braced code in declaration in rules section):
6756 Make yyerror and yylex static as usual.
6757
6758 2006-06-24 Joel E. Denny <jdenny@ces.clemson.edu>
6759
6760 Fix bug that mistakes braced code in a declaration in the rules section
6761 to be a rule action. Mentioned at
6762 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00105.html>.
6763 * src/scan-gram.l: Move midrule action detection from the start of the
6764 scanning of any braced code to...
6765 * src/parse-gram.y (rhs): ... the parsing of braced code as a rule
6766 action. For readability, use $2 and @2 rather than the equivalent
6767 global variables.
6768 * tests/regression.at (Braced code in declaration in rules section):
6769 New test to catch the error fixed by the above patch.
6770
6771 Work on code readability some.
6772 * src/scan-code.l (current_rule): Get rid of this misleading and
6773 redundant declaration: it's actually extern'ed in reader.h.
6774 (YY_DECL, code_lex, handle_action_dollar, handle_action_at,
6775 translate_action): Add a rule argument and use it instead of the global
6776 current_rule.
6777 (translate_rule_action): This already receives current_rule through an
6778 argument, so pass it on to translate_action instead of assigning
6779 current_rule to current_rule.
6780 (translate_symbol_action, translate_code): Pass rule = NULL to
6781 translate_action.
6782
6783 2006-06-23 Joel E. Denny <jdenny@ces.clemson.edu>
6784
6785 Rename %before-definitions to %start-header and %after-definitions to
6786 %end-header. Don't use these declarations to separate pre-prologue
6787 blocks from post-prologue blocks. Add new order-independent
6788 declarations %before-header and %after-header as alternatives to the
6789 traditional Yacc pre-prologue and post-prologue blocks. Discussed at
6790 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00110.html>.
6791 * NEWS (2.3+): Update for these changes.
6792 * data/glr.c (b4_before_definitions): Update to...
6793 (b4_start_header): ... this.
6794 (b4_after_definitions): Update to...
6795 (b4_end_header): ... this.
6796 * data/glr.cc: Likewise.
6797 * data/lalr1.cc: Likewise.
6798 * data/yacc.c: Likewise.
6799 * doc/bison.texinfo (The prologue): Update names, and replace remaining
6800 prologue blocks with %*-header declarations.
6801 (Calc++ Parser): Likewise.
6802 (Decl Summary): Update names.
6803 (Table of Symbols): Update description.
6804 * src/parse-gram.y (PERCENT_AFTER_DEFINITIONS): Update to...
6805 (PERCENT_END_HEADER): ... this.
6806 (PERCENT_BEFORE_DEFINITIONS): Update to...
6807 (PERCENT_START_HEADER): ... this.
6808 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
6809 (declaration): Update token names and m4 macro names.
6810 When parsing %end-header and %start-header, invoke translate_code
6811 before muscle_code_grow, and no longer set global booleans to remember
6812 whether these declarations have been seen.
6813 Parse new %after-header and %before-header.
6814 * src/reader.c (before_definitions, after_definitions): Remove.
6815 (prologue_augment): Accept a new bool argument to specify whether to
6816 augment the pre-prologue or post-prologue.
6817 * src/reader.h (before_definitions, after_definitions): Remove these
6818 extern's.
6819 (prologue_augment): Add new bool argument.
6820 * src/scan-gram.l (PERCENT_AFTER_DEFINITIONS): Update to...
6821 (PERCENT_END_HEADER): ... this.
6822 (PERCENT_BEFORE_DEFINITIONS): Update to...
6823 (PERCENT_START_HEADER): ... this.
6824 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
6825 * tests/actions.at (Printers and Destructors): Update names.
6826
6827 2006-06-22 Joel E. Denny <jdenny@ces.clemson.edu>
6828
6829 Add comparison operators for C++ location classes. Discussed at
6830 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00092.html>.
6831 * data/c++.m4 (b4_define_location_comparison): New boolean %define
6832 declaration indicating whether filename_type has an operator==. If
6833 filename_type is `std::string', it defaults to `1', `0' otherwise.
6834 * data/location.cc: Iff b4_define_location_comparison is `1', add
6835 operator== and operator!= for class position and for class location.
6836
6837 Some minor fixes.
6838 * src/scan-action.l: Remove unused file.
6839 * src/symtab.c (symbol_printer_set): Use printer_location not
6840 destructor_location.
6841 * src/symtab.h (struct symbol): Replace incorrect source comment for
6842 printer members.
6843 * tests/input.at (Incompatible Aliases): Update output with correct
6844 printer location.
6845
6846 2006-06-20 Joel E. Denny <jdenny@ces.clemson.edu>
6847
6848 Don't put the pre-prologue in the header file. For the yacc.c code
6849 file and the glr.c header and code files, move the pre-prologue before
6850 the token definitions. Add new %before-definitions and
6851 %after-definitions to declare code that will go in both the header file
6852 and code file. Discussed at
6853 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00000.html>,
6854 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00016.html>,
6855 and
6856 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00055.html>.
6857 * NEWS (2.3+): Describe these changes.
6858 * data/glr.c (b4_pre_prologue): Move from within to before...
6859 (b4_shared_declarations): ... this.
6860 Add new b4_before_definitions before b4_token_enums.
6861 Add new b4_after_definitions at the end.
6862 * data/glr.cc (b4_pre_prologue): Replace with...
6863 (b4_before_definitions): ... this in the header file.
6864 (b4_after_definitions): New near the end of the header file.
6865 * data/lalr1.cc (b4_pre_prologue): Move from the header file to the
6866 code file right before including the header file.
6867 (b4_before_definitions): New in the previous position of
6868 b4_pre_prologue in the header file.
6869 (b4_after_definitions): New near the end of the header file.
6870 * data/yacc.c: Clean up some m4 quoting especially in the header file.
6871 (b4_token_enums_defines): In the code file, move to right before
6872 YYSTYPE for consistency with the header file.
6873 (b4_before_definitions): New right before b4_token_enums_defines in
6874 both the header and code file.
6875 (b4_after_definitions): New right after YYLTYPE and yylloc in both the
6876 header and code file.
6877 * doc/bison.texinfo (Prologue): Show use of %before-definitions instead
6878 of prologues for %union dependencies.
6879 (Decl Summary): In %defines description, mention the effect of
6880 %before-definitions and %after-definitions on the header file.
6881 (Calc++ Parser): Forward declare driver in a %before-definitions rather
6882 than in the pre-prologue so that make check succeeds.
6883 (Table of Symbols): Add entries for %before-definitions and
6884 %after-definitions.
6885 * src/parse-gram.y (PERCENT_BEFORE_DEFINITIONS): New token for
6886 %before-definitions.
6887 (PERCENT_AFTER_DEFINITIONS): New token for %after-definitions.
6888 (declaration): Parse those declarations and append to
6889 b4_before_definitions and b4_after_definitions, respectively.
6890 * src/reader.c (before_definitions, after_definitions): New bools to
6891 track whether those declarations have been seen.
6892 (prologue_augment): Add to the post-prologue if %union,
6893 %before-definitions, or %after-definitions has been seen.
6894 * src/reader.h (before_definitions, after_definitions): New extern's.
6895 * src/scan-gram.l: Scan the new declarations.
6896 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Place the second
6897 prologue block in a %before-definitions or a %after-definitions based
6898 on whether the %union is declared.
6899 * tests/regression.at (Early token definitions with --yacc, Early token
6900 definitions without --yacc): Move tests for token definitions into the
6901 post-prologue since token names are no longer defined in the
6902 pre-prologue.
6903
6904 2006-06-20 Akim Demaille <akim@epita.fr>
6905
6906 * src/symtab.h, src/symtab.c (symbol_from_uniqstr): New.
6907 (symbol_get): Use it.
6908 * src/parse-gram.y: Use it.
6909
6910 2006-06-19 Joel E. Denny <jdenny@ces.clemson.edu>
6911
6912 * src/scan-gram.l: Remove unused declaration of last_string_1 so the
6913 build succeeds when configured with --enable-gcc-warnings.
6914
6915 2006-06-19 Paul Eggert <eggert@cs.ucla.edu>
6916
6917 * src/parse-gram.y (char_name): New function.
6918 (CHAR, STRING, string_content): For %printer, properly escape.
6919 (ID): Prefer fputs to fprintf.
6920 (id): Reindent to be consistent with other rules.
6921 Properly quote char.
6922
6923 The Translation Project changed its way of publishing translations
6924 to maintainers. I haven't received any responses to my request
6925 for supporting the old way, or for documenting the new way. I
6926 have modified 'bootstrap' to use screen scraping
6927 (in this case, HTML scraping). This is unreliable and inelegant,
6928 but I don't see any better way. Yuck.
6929 * bootstrap (TP_URL, WGET_COMMAND): New vars.
6930 (get_translations): New function, which uses HTML scraping to
6931 deduce locations of latest translations.
6932 Use this function to grab both bison and bison-runtime .po files.
6933 Don't bother priming the pump for the runtime-po domain any more,
6934 as it's now translated better than bison is.
6935
6936 2006-06-19 Akim Demaille <akim@epita.fr>
6937
6938 * src/scan-gram.l: No longer "parse" things after `%union' until
6939 `{'. Rather, return a single "%union" token.
6940 No longer make symbols: return strings, and leave the conversion
6941 to symbols to the parser.
6942 (SC_PRE_CODE, token_type): Remove.
6943 * src/parse-gram.y (%union): New field `character'.
6944 Sort tokens.
6945 (CHAR): New token.
6946 (ID, ID_COLON): Now that the scanner no longer makes them
6947 identifiers, adjust all uses to invoke symbol_get.
6948 (id_colon): New, wraps the conversion from string to symbol.
6949 (%union): Accept a possible union_name.
6950 (symbol): Now can be a char.
6951 * data/c.m4 (b4_union_name): Leave a default value.
6952 * data/glr.c, data/yacc.c: Use it.
6953
6954 2006-06-11 Joel E. Denny <jdenny@ces.clemson.edu>
6955
6956 For associating token numbers with token names for "yacc.c", don't use
6957 #define statements unless `--yacc' is specified; always use enum
6958 yytokentype. Most important discussions start at:
6959 <http://lists.gnu.org/archive/html/bison-patches/2005-09/msg00053.html>,
6960 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00052.html>,
6961 and
6962 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00043.html>.
6963 * NEWS (2.3+): Mention.
6964 * data/c.m4 (b4_yacc_if): New.
6965 (b4_token_enums_defines): Use b4_yacc_if to decide whether to add the
6966 token #define's.
6967 * doc/bison.texinfo (Bison Options): Describe the effect of `--yacc'
6968 on token name definitions.
6969 * src/getargs.c (usage): Capitalize `Yacc' in English.
6970 * src/output.c (prepare): Define b4_yacc_flag.
6971 * tests/regression.at (Early token definitions): Test that tokens names
6972 are defined before the pre-prologue not just before the post-prologue.
6973 Remove this test case and copy to...
6974 (Early token definitions with --yacc): ... this to test #define's.
6975 (Early token definitions without --yacc): ... and this to test enums.
6976
6977 2006-06-11 Paul Eggert <eggert@cs.ucla.edu>
6978
6979 * NEWS: Reword the post-2.3 change to not be so optimistic about
6980 removing the old "look-ahead" spelling.
6981 Update previous look-ahead/lookahead change reports.
6982 * REFERENCES: look-ahead -> lookahead (since that's
6983 what he actually wrote).
6984 * doc/refcard.tex: look ahead -> lookahead,
6985 look-ahead -> lookahead
6986
6987 2006-06-09 Joel E. Denny <jdenny@ces.clemson.edu>
6988
6989 For consistency, use `lookahead' instead of `look-ahead' or
6990 `look_ahead'. Discussed starting at
6991 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00049.html>
6992 and then at
6993 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00017.html>.
6994 * NEWS: For the next release, note the change to `--report'.
6995 * TODO, doc/bison.1: Update English.
6996 * doc/bison.texinfo: Update English.
6997 (Understanding Your Parser, Bison Options): Document as
6998 `--report=lookahead' rather than `--report=look-ahead'.
6999 * src/conflicts.c: Update English in comments.
7000 (lookahead_set): Rename from look_ahead_set.
7001 (flush_reduce): Rename argument look_ahead_tokens to lookahead_tokens.
7002 (resolve_sr_conflict): Rename local look_ahead_tokens to
7003 lookahead_tokens, and update other uses.
7004 (flush_shift, set_conflicts, conflicts_solve, count_sr_conflicts,
7005 count_rr_conflicts, conflicts_free): Update uses.
7006 * src/getargs.c (report_args): Move "lookahead" before alternate
7007 spellings.
7008 (report_types): Update uses.
7009 (usage): For `--report' usage description, state `lookahead' spelling
7010 rather than `look-ahead'.
7011 * src/getargs.h (report.report_lookahead_tokens): Rename from
7012 report_look_ahead_tokens.
7013 * src/lalr.c: Update English in comments.
7014 (compute_lookahead_tokens): Rename from compute_look_ahead_tokens.
7015 (state_lookahead_tokens_count): Rename from
7016 state_look_ahead_tokens_count.
7017 Rename local n_look_ahead_tokens to n_lookahead_tokens.
7018 (lookahead_tokens_print): Rename from look_ahead_tokens_print.
7019 Rename local n_look_ahead_tokens to n_lookahead_tokens.
7020 Update other uses.
7021 Update English in output.
7022 (add_lookback_edge, initialize_LA, lalr, lalr_free): Update uses.
7023 * src/print.c: Update English in comments.
7024 (lookahead_set): Rename from look_ahead_set.
7025 (print_reduction): Rename argument lookahead_token from
7026 look_ahead_token.
7027 (print_core, state_default_rule, print_reductions, print_results):
7028 Update uses.
7029 * src/print_graph.c: Update English in comments.
7030 (print_core): Update uses.
7031 * src/state.c: Update English in comments.
7032 (reductions_new): Update uses.
7033 (state_rule_lookahead_tokens_print): Rename from
7034 state_rule_look_ahead_tokens_print, and update other uses.
7035 * src/state.h: Update English in comments.
7036 (reductions.lookahead_tokens): Rename from look_ahead_tokens.
7037 (state_rule_lookahead_tokens_print): Rename from
7038 state_rule_look_ahead_tokens_print.
7039 * src/tables.c: Update English in comments.
7040 (conflict_row, action_row): Update uses.
7041 * tests/glr-regression.at
7042 (Incorrect lookahead during deterministic GLR,
7043 Incorrect lookahead during nondeterministic GLR): Rename
7044 print_look_ahead to print_lookahead.
7045 * tests/torture.at: Update English in comments.
7046 (AT_DATA_LOOKAHEAD_TOKENS_GRAMMAR): Rename from
7047 AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR.
7048 (Many lookahead tokens): Update uses.
7049 * data/glr.c: Update English in comments.
7050 * lalr1.cc: Likewise.
7051 * yacc.c: Likewise.
7052 * src/conflicts.h: Likewise.
7053 * src/lalr.h: Likewise.
7054 * src/main.c: Likewise.
7055 * src/output.c: Likewise.
7056 * src/parse-gram.c: Likewise.
7057 * src/tables.h: Likewise.
7058 * tests/calc.at: Likewise.
7059
7060 2006-06-08 Joel E. Denny <jdenny@ces.clemson.edu>
7061
7062 * src/flex-scanner.h (yytext): Remove stray `*/' in #define.
7063
7064 2006-06-07 Paul Eggert <eggert@cs.ucla.edu>
7065
7066 * TODO: Add request from Nelson H. F. Beebe to be able to install
7067 Bison without installing the yacc script.
7068
7069 2006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
7070
7071 * src/flex-scanner.h: For the sake of Flex 2.5.4, don't #define yyleng
7072 and yytext if they're already #define'd.
7073 * src/flex-scanner.h, src/location.h: Move #include "system.h" to...
7074 * src/scan-code-c.c: ... here.
7075 * src/scan-code.l, src/scan-gram.l: ... and here. Also #include
7076 <config.h>.
7077
7078 2006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
7079
7080 Get Bison to build again when configured with --enable-gcc-warnings.
7081 * src/location.c, src/location.h, src/main.c, src/scan-code.l: Add some
7082 missing #include's.
7083 * src/scan-code.l (handle_action_dollar, handle_action_at): Rename
7084 loc argument as it shadows a global.
7085 * src/scan-gram.l: Remove stray comma that prevents boundary_set
7086 invocation.
7087
7088 * src/.cvsignore: Add scan-code.c.
7089
7090 2006-06-07 Akim Demaille <akim@epita.fr>
7091
7092 * src/scan-gram.l: Move the "add a trailing ; to actions" code
7093 to...
7094 * src/scan-code.l: here.
7095 * tests/input.at (Torturing the Scanner): Fix another location
7096 error.
7097
7098 2006-06-07 Akim Demaille <akim@epita.fr>
7099
7100 * src/Makefile.am (BUILT_SOURCES): Fix the trailing backslash.
7101
7102 2006-06-06 Akim Demaille <akim@epita.fr>
7103
7104 Extract the parsing of user actions from the grammar scanner.
7105 As a consequence, the relation between the grammar scanner and
7106 parser is much simpler. We can also split "composite tokens" back
7107 into simple tokens.
7108 * src/gram.h (ITEM_NUMBER_MAX, RULE_NUMBER_MAX): New.
7109 * src/scan-gram.l (add_column_width, adjust_location): Move to and
7110 rename as...
7111 * src/location.h, src/location.c (add_column_width)
7112 (location_compute): these.
7113 Fix the column count: the initial column is 0.
7114 (location_print): Be robust to ending column being 0.
7115 * src/location.h (boundary_set): New.
7116 * src/main.c: Adjust to scanner_free being renamed as
7117 gram_scanner_free.
7118 * src/output.c: Include scan-code.h.
7119 * src/parse-gram.y: Include scan-gram.h and scan-code.h.
7120 Use boundary_set.
7121 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_INITIAL_ACTION)
7122 (PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Remove the {...} part,
7123 which is now, again, a separate token.
7124 Adjust all dependencies.
7125 Whereever actions with $ and @ are used, use translate_code.
7126 (action): Remove this nonterminal which is now useless.
7127 * src/reader.c: Include assert.h, scan-gram.h and scan-code.h.
7128 (grammar_current_rule_action_append): Use translate_code.
7129 (packgram): Bound check ruleno, itemno, and rule_length.
7130 * src/reader.h (gram_in, gram__flex_debug, scanner_cursor)
7131 (last_string, last_braced_code_loc, max_left_semantic_context)
7132 (scanner_initialize, scanner_free, scanner_last_string_free)
7133 (gram_out, gram_lineno, YY_DECL_): Move to...
7134 * src/scan-gram.h: this new file.
7135 (YY_DECL): Rename as...
7136 (GRAM_DECL): this.
7137 * src/scan-code.h, src/scan-code.l, src/scan-code-c.c: New.
7138 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
7139 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
7140 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
7141 Move these declarations, and...
7142 (obstack_for_string, STRING_GROW, STRING_FINISH, STRING_FREE):
7143 these to...
7144 * src/flex-scanner.h: this new file.
7145 * src/scan-gram.l (rule_length, rule_length_overflow)
7146 (increment_rule_length): Remove.
7147 (last_braced_code_loc): Rename as...
7148 (gram_last_braced_code_loc): this.
7149 Adjust to the changes of the parser.
7150 Move all the handling of $ and @ into...
7151 * src/scan-code.l: here.
7152 * src/scan-gram.l (handle_dollar, handle_at): Remove.
7153 (handle_action_dollar, handle_action_at): Move to...
7154 * src/scan-code.l: here.
7155 * src/Makefile.am (bison_SOURCES): Add flex-scanner.h,
7156 scan-code.h, scan-code-c.c, scan-gram.h.
7157 (EXTRA_bison_SOURCES): Add scan-code.l.
7158 (BUILT_SOURCES): Add scan-code.c.
7159 (yacc): Be robust to white spaces.
7160
7161 * tests/conflicts.at, tests/input.at, tests/reduce.at,
7162 * tests/regression.at: Adjust the column numbers.
7163 * tests/regression.at: Adjust the error message.
7164
7165 2006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
7166
7167 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
7168 Use Akim's wording from
7169 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00056.html>.
7170
7171 2006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
7172
7173 Between Bison releases, manually append `+' to the previous Bison
7174 release number, and use that as a signal to automatically print the
7175 ChangeLog's CVS Id keyword from --version. Discussed starting at
7176 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00028.html>.
7177 * ChangeLog: Add Id header.
7178 * configure.ac (AC_INIT): Append `+' to `2.3'.
7179 * src/.cvsignore: Add revision.c.
7180 * src/Makefile.am (bison_SOURCES): Add revision.c and revision.h.
7181 (BUILT_SOURCES): Add revision.c.
7182 (revision.c): New target rule. This file defines a new global variable
7183 named revision. It initializes it with either the Id from ChangeLog
7184 or, if VERSION doesn't contain `+', with the empty string.
7185 * src/getargs.c (version): Print the value of revision.
7186 * src/revision.h: Extern revision.
7187
7188 2006-06-05 Paul Eggert <eggert@cs.ucla.edu>
7189
7190 * NEWS: Version 2.3.
7191 * configure.ac (AC_INIT): Likewise.
7192
7193 2006-05-30 Paul Eggert <eggert@cs.ucla.edu>
7194
7195 * data/glr.c (YYRECOVERING): Define to be a function-like macro
7196 with no arguments, not as an object-like macro. This is for
7197 compatibility with data/yacc.c. Problem reported by John P. Hartmann in
7198 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00059.html>.
7199 * doc/bison.texinfo (Action Features, Error Recovery, Table of Symbols):
7200 Document this.
7201
7202 2006-05-30 Joel E. Denny <jdenny@ces.clemson.edu>
7203
7204 * src/getargs.c (usage): Back out yesterday's modification of the
7205 --help output so that we don't have to wait for translation before
7206 releasing 2.3.
7207
7208 2006-05-29 Paul Eggert <eggert@cs.ucla.edu>
7209
7210 * doc/bison.texinfo (Introduction): Don't say "GLR grammar".
7211 Problem reported by Akim Demaille.
7212
7213 2006-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
7214
7215 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
7216
7217 2006-05-26 Paul Eggert <eggert@cs.ucla.edu>
7218
7219 * data/yacc.c (yy_reduce_print): Omit trailing white space in
7220 generated source code. Problem reported by Frans Englich in
7221 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00049.html>.
7222
7223 2006-05-22 Paul Eggert <eggert@cs.ucla.edu>
7224
7225 * Makefile.maint (gzip_rsyncable, GZIP_ENV): Compute within the
7226 shell, not within 'make', so that 'make' by an ordinary builder
7227 (using GNU make) does not worry about configuring gzip. This also
7228 works around a bug reported independently by Keith Thompson and by
7229 Georg Schwarz, whereby gzip 1.2.4 --help would output usage on
7230 stderr rather than stdout, messing up the build logs.
7231
7232 2006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
7233
7234 * data/yacc.c (yyparse): Wrap the final return from yyparse inside YYID
7235 to make sure that YYID will never be unused. This fixes a 'make
7236 maintainer-check' failure caused by the recent changes to the 'Trivial
7237 grammars' test case, which caused g++ 4.1.0 to complain that YYID was
7238 not used.
7239 * data/glr.c (yyparse): Wrap yyparse's return inside YYID just in case.
7240
7241 2006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
7242
7243 * data/glr.c (yyresolveLocations): Remove bogus YYASSERT that the
7244 state before an empty RHS is always resolved here. Only the location
7245 of that state is guaranteed to be resolved, and that's enough. This
7246 fixes the remaining bug reported by Derek M. Jones in
7247 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
7248 * tests/glr-regression.at (Uninitialized location when reporting
7249 ambiguity): Test the above case.
7250 Also, the embedded comments in this test case claim it checks the case
7251 of an empty RHS that has inherited the initial location. However, the
7252 corresponding LHS was already resolved, so yyresolveLocations didn't
7253 actually have reason to modify it. Fix this by forcing
7254 nondeterministic operation at the beginning of the parse.
7255
7256 2006-05-20 Paul Eggert <eggert@cs.ucla.edu>
7257
7258 * data/c.m4 (b4_yy_symbol_print_generate):
7259 (b4_yy_symbol_print_generate): Use 'YYSTYPE const' rather than
7260 'const YYSTYPE', and similarly for YYLTYPE. This fixes one
7261 of the bugs reported today by Derek M Jones in
7262 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
7263 * doc/bison.texinfo (Value Type): Document that YYSTYPE must be
7264 defined to be a type name without parens or brackets.
7265 (Location Type): Similarly for YYLTYPE.
7266 * tests/regression.at (Trivial grammars): Put in a test for this
7267 bug that will be caught by 'make maintainer-check' (though not,
7268 alas, by 'make check' unless your compiler is picky).
7269
7270 2006-05-19 Paul Eggert <eggert@cs.ucla.edu>
7271
7272 * NEWS: Version 2.2.
7273 * configure.ac (AC_INIT): Likewise.
7274
7275 2006-05-17 Joel E. Denny <jdenny@ces.clemson.edu>
7276
7277 * data/glr.c (yyreportTree): Make room in yystates for the state
7278 preceding the RHS. This fixes the segmentation fault reported by Derek
7279 M. Jones in
7280 <http://lists.gnu.org/archive/html/help-bison/2006-05/msg00035.html>.
7281 (yyreportTree, yypdumpstack): Subtract 1 from yyrule before printing
7282 to the user. Reported for yyreportTree by Derek M. Jones later in the
7283 same thread.
7284 * THANKS: Add Derek M. Jones.
7285 Update my email address.
7286 Fix typo in Steve Murphy's name.
7287
7288 2006-05-14 Paul Eggert <eggert@cs.ucla.edu>
7289
7290 * data/glr.c (yyreportSyntaxError): Fix off-by-one error in
7291 checking against YYLAST that caused the parser to miss a potential
7292 alternative in its diagnostic.
7293 Problem reported by Maria Jose Moron Fernandez in
7294 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00024.html>.
7295 * data/lalr1.cc (yysyntax_error_): Likewise.
7296 * data/yacc.c (yysyntax_error): Likewise.
7297 * tests/regression.at (_AT_DATA_DANCER_Y): Use static array for
7298 tokens, in case we run into an older C compiler.
7299 (_AT_DATA_EXPECT2_Y, AT_CHECK_EXPECT2): New macros.
7300 Use them to check for the off-by-one error fixed above.
7301
7302 * data/yacc.c (yytnamerr): Fix typo: local var should be of type
7303 YYSIZE_T, not size_t.
7304 * tests/regression.at (Trivial grammars): New test, to catch
7305 the error fixed by the above patch.
7306
7307 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
7308
7309 * doc/bison.texinfo (C++ Bison Interface): Clarify the naming
7310 scheme.
7311 Reported by Steve Murphy.
7312
7313 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
7314
7315 * data/glr.cc, data/lalr1.cc: Using %defines is mandatory.
7316 * data/glr.cc: b4_location_flag is now b4_locations_flag.
7317
7318 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
7319
7320 Implement --trace=m4.
7321 * src/getargs.c (trace_types, trace_args): Accept trace_m4.
7322 * src/output.c (output_skeleton): When set, pass -dV to m4.
7323
7324 Factor the handling of flags in m4.
7325 * src/output.c (prepare): Rename the muscle names debug, defines,
7326 error_verbose to debug_flag, defines_flag, error_verbose_flag.
7327 * data/c.m4: Adjust.
7328 (_b4_define_flag_if, b4_define_flag_if, b4_defines_if): New.
7329 Use b4_define_flag_if to define other b4_FLAG_if macros.
7330 (b4_location_if): As a consequence, rename as...
7331 (b4_locations_if): this, for consistency.
7332 Adjust all the skeletons.
7333
7334 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
7335
7336 * etc/bench.pm: Shorten bench names.
7337
7338 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
7339
7340 * src/output.h, src/output.c (error_verbose): Move to...
7341 * src/getargs.h, src/getargs.c: here.
7342 Sort the flags.
7343 Adjust dependencies.
7344
7345 2006-05-13 Paul Eggert <eggert@cs.ucla.edu>
7346
7347 * data/c.m4 (b4_copyright): Put the special exception for Bison
7348 skeletons here, so we don't have to put it in each skeleton. All
7349 uses changed. Suggested by Akim Demaille. Also, wrap the
7350 copyright notice, in case it is longer than 80 columns. Replace
7351 comma by newline after title.
7352
7353 2006-05-11 Paul Eggert <eggert@cs.ucla.edu>
7354
7355 * doc/bison.texinfo (Calc++ Scanner): The flex behavior is an
7356 incompatibility, not a bug. Mention that it wasn't fixed as of
7357 flex 2.5.33.
7358
7359 2006-05-11 Akim Demaille <akim@lrde.epita.fr>
7360
7361 * examples/extexi: Enforce the precedence of concatenation over
7362 >>.
7363 Reported by Tommy Nordgren.
7364
7365 2006-05-11 Akim Demaille <akim@lrde.epita.fr>
7366
7367 * data/lalr1.cc (yytranslate_): Rename token as t to avoid clashes
7368 with the member "token".
7369 Reported by Martin Nylin.
7370
7371 2006-05-08 Paul Eggert <eggert@cs.ucla.edu>
7372
7373 * data/glr.c: Switch to Bison 2.2 special-exception language in
7374 the copyright notice. Use more-regular format for titles and
7375 copyright notices.
7376 * data/glr.cc: Likewise.
7377 * data/location.cc: Likewise.
7378 * data/yacc.cc: Likewise.
7379 * doc/bison.texinfo (Conditions): Document this.
7380 * NEWS: likewise. Upgrade version to 2.2.
7381
7382 2006-04-27 Akim Demaille <akim@lrde.epita.fr>
7383
7384 * data/glr.cc: Remove dead code.
7385
7386 2006-04-25 Paul Eggert <eggert@cs.ucla.edu>
7387
7388 * bootstrap: Comment out the AM_CPPFLAGS line, since we don't use
7389 that variable and the line breaks the bootstrap. Problem reported
7390 by Juan M. Guerrero.
7391
7392 2006-04-24 Akim Demaille <akim@lrde.epita.fr>
7393
7394 * doc/bison.texinfo (Multiple start-symbols): New.
7395
7396 2006-04-24 Akim Demaille <akim@lrde.epita.fr>
7397
7398 * etc/README, etc/bench.pl: New.
7399
7400 2006-04-03 Akim Demaille <akim@lrde.epita.fr>
7401
7402 * src/scan-gram.l: Be robust to BRACED_CODE appearing before any
7403 rule.
7404 Reported by Mickael Labau.
7405 * tests/input.at (Torturing the Scanner): Test it.
7406
7407 2006-03-16 Paul Eggert <eggert@cs.ucla.edu>
7408
7409 * doc/bison.texinfo (Decl Summary): Don't mention yylloc twice.
7410 Problem reported by Bob Rossi.
7411
7412 2006-03-13 Paul Eggert <eggert@cs.ucla.edu>
7413
7414 * doc/bison.texinfo: Remove @shorttitlepage stuff; it wasn't used
7415 and didn't really work.
7416 For the index, use @ifnotinfo, not @iftex.
7417 Minor cleanups of spacing and terminology.
7418
7419 2006-03-12 Akim Demaille <akim@lrde.epita.fr>
7420
7421 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Fix the definition
7422 of AT_NAME_PREFIX when %name-prefix is not used.
7423
7424 2006-03-12 Akim Demaille <akim@lrde.epita.fr>
7425
7426 Apply --prefix to C++ skeletons too: they change the namespace.
7427 The test suite already exercize these cases.
7428 * data/c++.m4 (b4_namespace): New.
7429 * data/lalr1.cc, data/glr.cc, data/location.cc: Use it instead of `yy'.
7430 * data/lalr1.cc (yytnameerr_): Move its definition into the namespace.
7431 * data/yacc.c, data/glr.c: Remove a useless `[]'.
7432 * doc/bison.texinfo: Document it.
7433 (Option Cross Key): Use @multitable in all formats. It looks
7434 nicer, even in TeX outputs.
7435 (Rules): Use the same code whatever the output type is.
7436 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS)
7437 (_AT_BISON_OPTION_POPDEFS): Support AT_NAME_PREFIX.
7438 * tests/calc.at: Use it, instead of hard coding `yy'.
7439
7440 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
7441
7442 * TODO: Remove dead items.
7443
7444 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
7445
7446 * doc/FAQ: Remove, merged into...
7447 * doc/bison.texinfo (FAQ): this.
7448 * doc/Makefile.am (EXTRA_DIST): Adjust.
7449
7450 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
7451
7452 * data/c.m4 (b4_token_enum): Always define the enum of tokens,
7453 even if empty.
7454 * data/lalrl1.cc, data/glr.cc (parser::token_type): New.
7455 * doc/bison.texinfo (Calc++ Scanner): Use it.
7456
7457 2006-03-09 Paul Eggert <eggert@cs.ucla.edu>
7458
7459 Fix two nits reported by twlevo, plus one more that I discovered.
7460
7461 * src/assoc.h (assoc_to_string): Give a name to the arg, as
7462 this is the usual Bison style.
7463 * src/location.h (location_print): Likewise.
7464
7465 * src/reader.h (token_name): Likewise.
7466
7467 2006-03-08 Paul Eggert <eggert@cs.ucla.edu>
7468
7469 Fix some nits reported by twlevo.
7470 * doc/FAQ: Remove ancient Y2K FAQ, replacing it with "secure"
7471 and "POSIX". Use more-modern syntax for URLs. Mention C++
7472 and ask for Java. Don't hardwire OS version numbers. Add
7473 copyright notice.
7474 * m4/.cvsignore: Add unistd_h.m4, for latest gnulib.
7475 * src/conflicts.c (solved_conflicts_obstack): Now static.
7476
7477 2006-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
7478
7479 * doc/bison.texinfo (Introduction): Mention GLR and C++ as on the web
7480 page. Say "you can use it" not "you may use it" as on the web page;
7481 we're describing capabilities not granting permission.
7482
7483 2006-03-06 Paul Eggert <eggert@cs.ucla.edu>
7484
7485 * data/glr.c (yyresolveLocations): Rename local variables to avoid
7486 shadowing warnings. Use usual patter for iterating through RHS.
7487 * tests/glr-regression.at
7488 (Uninitialized location when reporting ambiguity):
7489 Modify yylex so that it uses its argument, rather than trying
7490 to rely on ARGSUSED (which doesn't work for gcc with warnings).
7491 const char -> char const.
7492
7493 * tests/Makefile.am ($(srcdir)/package.m4, maintainer-check-valgrind):
7494 Don't use tabs inside commands; it messes up 'ps'.
7495 Problem reported by twlevo.
7496
7497 2006-03-06 Joel E. Denny <jdenny@ces.clemson.edu>
7498
7499 * tests/glr-regression.at (Uninitialized location when reporting
7500 ambiguity): New test case.
7501 * data/glr.c (yyresolveLocations): New function, which uses
7502 YYLLOC_DEFAULT.
7503 (yyresolveValue): Invoke yyresolveLocations before reporting an
7504 ambiguity.
7505 * doc/bison.texinfo (Default Action for Locations): Note
7506 YYLLOC_DEFAULT's usage for ambiguity locations.
7507 (GLR Semantic Actions): Cross-reference those notes.
7508
7509 2006-03-04 Joel E. Denny <jdenny@ces.clemson.edu>
7510
7511 * tests/glr-regression.at (Leaked semantic values when reporting
7512 ambiguity): Remove unnecessary union and type declarations.
7513 (Leaked lookahead after nondeterministic parse syntax error): New test
7514 case.
7515 * data/glr.c (yyparse): Check for zero stacks remaining before
7516 attempting to shift the lookahead so that you don't lose it.
7517
7518 2006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
7519
7520 Avoid memory leaks by not invoking longjmp in yyreportAmbiguity.
7521 * tests/glr-regression.at (Leaked semantic values when reporting
7522 ambiguity): New test case.
7523 * data/glr.c (yyreportAmbiguity): Invoke yyyerror directly and return
7524 yyabort rather than invoking yyFail, which invokes longjmp. Remove the
7525 now unnecessary yystackp parameter.
7526 (yyresolveValue): Return yyreportAmbiguity's result. Now the necessary
7527 destructors can be called.
7528
7529 * tests/glr-regression.at: Don't invoke bison with `-t' unnecessarily
7530 in existing testcases.
7531
7532 2006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
7533
7534 Don't leak semantic values for parent RHS when a user action cuts the
7535 parser, and clean up related code a bit.
7536 * tests/glr-regression.at (Leaked merged semantic value if user action
7537 cuts parse): Rename to...
7538 (Leaked semantic values if user action cuts parse): ... this. Add check
7539 for leaked parent RHS values.
7540 * data/glr.c (yydestroyGLRState): In debugging output, distinguish
7541 between an unresolved state (non-empty chain of semantic options) and
7542 an incomplete one (signaled by an empty chain).
7543 (yyresolveStates): Document the interface. Move all manipulation of a
7544 successfully or unsuccessfully resolved yyGLRState to...
7545 (yyresolveValue): ... here so that yyresolveValue always leaves a
7546 yyGLRState with consistent data and thus is easier to understand.
7547 Remove the yyvalp and yylocp parameters since they are always just
7548 taken from the yys parameter. When reporting a discarded merged value
7549 in debugging output, note that it is incompletely merged. Document the
7550 interface.
7551 (yyresolveAction): If resolving any of the RHS states fails, destroy
7552 them all rather than leaking them. Thus, as long as user actions are
7553 written to clean up the RHS correctly, yyresolveAction always cleans up
7554 the RHS of a semantic option. Document the interface.
7555
7556 2006-02-27 Paul Eggert <eggert@cs.ucla.edu>
7557
7558 * data/glr.c (yyexpandGLRStack): Catch an off-by-one error that
7559 led to a segmentation fault in GNU Pascal. Problem reported
7560 by Waldek Hebisch.
7561
7562 2006-02-21 Joel E. Denny <jdenny@ces.clemson.edu>
7563
7564 * doc/bison.texinfo (Mid-Rule Actions): Explain how to bury a
7565 mid-rule action inside a nonterminal symbol in order to declare a
7566 destructor for its semantic value.
7567
7568 2006-02-16 Paul Eggert <eggert@cs.ucla.edu>
7569
7570 * data/yacc.c [(! defined yyoverflow || YYERROR_VERBOSE) && !
7571 YYSTACK_USE_ALLOCA && ! defined YYSTACK_ALLOC && defined
7572 __cplusplus && ! defined _STDLIB_H && !
7573 ((defined YYMALLOC || defined malloc) && (defined YYFREE ||
7574 defined free))]: Include <stdlib.h> rather than rolling our own
7575 declarations of malloc and free, to avoid problems with
7576 incompatible declarations (using 'throw') C++'s stdlib.h. This
7577 should fix Debian bug 340012
7578 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=340012>,
7579 reported by Guillaume Melquiond.
7580
7581 2006-02-13 Paul Eggert <eggert@cs.ucla.edu>
7582
7583 * NEWS: Clarify symbols versus types in unused-value warnings.
7584
7585 * configure.ac (AC_INIT): Bump version number.
7586
7587 2006-02-13 Paul Eggert <eggert@cs.ucla.edu>
7588
7589 * NEWS: Version 2.1a.
7590 * tests/headers.at (AT_TEST_CPP_GUARD_H): Declare yyerror and yylex,
7591 since C99 requires this.
7592
7593 2006-02-11 Paul Eggert <eggert@cs.ucla.edu>
7594
7595 * m4/c-working.m4: New file.
7596 * configure.ac (BISON_TEST_FOR_WORKING_C_COMPILER): Use it.
7597
7598 2006-02-10 Paul Eggert <eggert@cs.ucla.edu>
7599
7600 * Makefile.maint: Merge from coreutils.
7601
7602 2006-02-09 Paul Eggert <eggert@cs.ucla.edu>
7603
7604 More portability fixes for problems summarized by Nelson H. F. Beebe.
7605
7606 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Catch a
7607 configuration screwup "./configure CC=/opt/SUNWspro/bin/c89
7608 CFLAGS="-xarch=generic64" CXX=/opt/SUNWspro/bin/CC
7609 LDFLAGS="-xarch=generic64" with Sun C 5.7 on Solaris 10; this
7610 messes up because C++ code is compiled in 32-bit mode but linked
7611 in 64-bit mode.
7612
7613 2006-02-08 Paul Eggert <eggert@cs.ucla.edu>
7614
7615 More portability fixes for problems summarized by Nelson H. F. Beebe.
7616
7617 * doc/bison.texinfo (Calc++ Scanner): Work around a bug in flex
7618 2.5.31. This resembles the 2005-10-10 patch to src/scan-skel.l.
7619
7620 * examples/calc++/Makefile.am (check_PROGRAMS): Renamed from
7621 nodist_PROGRAMS, since we don't need to actually compile the
7622 example if we're just doing a plain 'make'. This avoids bothering
7623 the installer unnecessarily about problems due to weird C++
7624 compilers.
7625
7626 2006-02-06 Paul Eggert <eggert@cs.ucla.edu>
7627
7628 More portability fixes for problems summarized by Nelson H. F. Beebe.
7629
7630 * tests/headers.at (AT_TEST_CPP_GUARD_H): Use #include <...> rather
7631 than #include "...", and compile with -I'.'. The old method was
7632 not portable, according to Posix and the C standard, and it does
7633 not work with Sun C 5.7, where previous #line directives affect
7634 the working directory used in later #include "..." directives.
7635
7636 2006-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
7637
7638 Various DJGGP specific issues in /djgpp
7639
7640 2006-02-02 Paul Eggert <eggert@cs.ucla.edu>
7641
7642 More portability fixes for problems summarized by Nelson H. F. Beebe.
7643
7644 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check that
7645 '#include <map>' works and that you can apply ++ to iterators.
7646
7647 2006-02-01 Paul Eggert <eggert@cs.ucla.edu>
7648
7649 Work around portability problems summarized by Nelson H. F. Beebe in
7650 <http://lists.gnu.org/archive/html/bug-bison/2005-09/msg00021.html>.
7651
7652 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
7653 that '#include <string>' works.
7654
7655 * data/lalr1.cc (yytranslate_): No longer inline, to work around a
7656 porting problem to g++ 3.4.3 on Darwin 7.9.0, where g++ complained
7657 "warning: sorry: semantics of inline function static data `const
7658 unsigned char translate_table[262]' are wrong (you'll wind up with
7659 multiple copies)".
7660
7661 * lib/bbitset.h (struct bitset_vtable): Rename members not, and,
7662 or, xor to not_, and_, or_, and xor_, respectively. This works
7663 around a bug in GCC 3.4.3 on Irix 6.5, which apparently has a
7664 random system header somewhere that includes the equivalent of
7665 <iso646.h>.
7666
7667 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that "$CC
7668 -E" works; it apparently doesn't work with PathScale EKO Compiler
7669 Suite Version 2.0.
7670
7671 2006-01-30 Joel E. Denny <jdenny@ces.clemson.edu>
7672
7673 During deterministic GLR operation, user actions should be able to
7674 influence the parse by changing yychar. To make this easier to fix and
7675 to make glr.c easier to evolve in general, don't maintain yytoken in
7676 parallel with yychar; just compute yytoken when needed.
7677 * tests/glr-regression.at (Incorrect lookahead during deterministic
7678 GLR): Check that setting yychar in a user action has the intended
7679 effect.
7680 * data/glr.c (yyGLRStack): Remove yytokenp member.
7681 (yyclearin): Don't set *yytokenp.
7682 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Examine
7683 yychar rather than *yytokenp to determine the current lookahead.
7684 Compute yytoken locally when needed.
7685 (yyparse): Likewise. Remove the local yytoken that yytokenp used to
7686 point to.
7687
7688 * doc/bison.texinfo (Bison Options): Remove stray sentence fragment
7689 after `--report' documentation.
7690
7691 2006-01-30 Paul Eggert <eggert@cs.ucla.edu>
7692
7693 * src/parse-gram.y (grammar_declaration): Location of printer
7694 symbol is @1, not list->location. Bug reported by twlevo.
7695 * tests/input.at (Incompatible Aliases): Adjust to above change.
7696
7697 2006-01-29 Paul Eggert <eggert@cs.ucla.edu>
7698
7699 * tests/input.at (AT_CHECK_UNUSED_VALUES): Remove. Instead, do
7700 all the test at once. This makes the output easier to read in the
7701 normal case.
7702
7703 Fix a longstanding bug uncovered by bro-0.9a9/src/parse.y, which I
7704 got from <http://bro-ids.org/download.html>. The bug is that
7705 when two actions appeared in succession, the second one was
7706 scanned before the first one was added to the grammar rule
7707 as a midrule action. Bison then output the incorrect warning
7708 "parse.y:905.17-906.36: warning: unused value: $3".
7709 * src/parse-gram.y (BRACED_CODE, action): These are no longer
7710 associated with a value.
7711 (rhs): Don't invoke grammar_current_rule_action_append.
7712 (action): Invoke it here instead.
7713 * src/reader.c (grammar_midrule_action): Now extern.
7714 (grammar_current_rule_action_append): Don't invoke
7715 grammar_midrule_action; that is now the scanner's job.
7716 * src/reader.h (last_string, last_braced_code_loc):
7717 (grammar_midrule_action): New decls.
7718 * src/scan-gram.l (last_string): Now extern, sigh.
7719 (last_braced_code_loc): New extern variable.
7720 (<INITIAL>"{"): Invoke grammar_midrule_action if the current
7721 rule already has an action.
7722 (<SC_BRACED_CODE>"}"): Set last_braced_code_loc before returning.
7723 * tests/input.at (AT_CHECK_UNUSED_VALUES):
7724 Add some tests to check that the above changes fixed the bug.
7725
7726 2006-01-27 Paul Eggert <eggert@cs.ucla.edu>
7727
7728 * src/reader.c (symbol_should_be_used): Renamed from symbol_typed_p.
7729 All used changed. Check whether the symbol has a destructor,
7730 not whether it is typed.
7731 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add a destructor, so
7732 that the values are still reported as unused. All line numbers
7733 adjusted.
7734
7735 2006-01-23 Paul Eggert <eggert@cs.ucla.edu>
7736
7737 Work around a bug in bro 0.8, which underparenthesizes its
7738 definition of YYLLOC_DEFAULT.
7739 * data/glr.c: Change all uses of YYLLOC_DEFAULT to parenthesize
7740 their arguments.
7741 * data/lalr1.cc: Likewise.
7742 * data/yacc.cc: Likewise.
7743
7744 2006-01-22 Paul Eggert <eggert@cs.ucla.edu>
7745
7746 Work around a bug in Pike 7.0, and give the Pike folks a
7747 better way to override the usual int widths.
7748 * data/yacc.c (b4_int_type): Use yytype_uint8, etc., so that the
7749 user can override the types.
7750 (short): #undef, to work around a bug in Pike 7.0.
7751 (yytype_uint8, yytype_int8, yytype_uint16, yytype_int16): New types.
7752 (union yyalloc.yyss): Use yytype_int16 rather than short.
7753 All uses changed.
7754 (yysigned_char): Remove.
7755 * src/parse-gram.y (YYTYPE_UINT8, YYTYPE_INT8, YYTYPE_UINT16):
7756 (YYTYPE_INT16): New macros, to test the new facility in yacc.c.
7757 * tests/regression.at (Web2c Actions): Adjust to above changes.
7758
7759 * src/reader.c (check_and_convert_grammar): New function.
7760 (reader): Close the input file even if something went wrong during
7761 parsing. Minor file descriptor leak reported by twlevo.
7762
7763 * src/assoc.c (assoc_to_string): Use a default: abort (); case
7764 to pacify gcc -Wswitch-default.
7765 * src/scan-gram.l (adjust_location): Use a default: break; case
7766 to pacify gcc -Wswitch-default.
7767 * src/scan-skel.h (skel_get_lineno, skel_get_in, skel_get_out):
7768 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
7769 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
7770 Move these decls to scan-skel.l, since they don't need to be
7771 visible elsewhere.
7772 * src/scan-skel.l: Accept the above decls.
7773 (skel_lex): New decl, to pacify GCC when unpatched flex 2.5.31
7774 is used.
7775
7776 2006-01-21 Paul Eggert <eggert@cs.ucla.edu>
7777
7778 * Makefile.cfg (local-checks-to-skip): Add changelog-check,
7779 since we don't want to insist on a version number at the start
7780 of the changelog every time.
7781 * Makefile.maint: Sync from coreutils a bit better.
7782 (sc_trailing_blank): Renamed from sc_trailing_space.
7783 All uses changed.
7784 (sc_no_if_have_config_h, sc_require_config_h):
7785 (sc_prohibit_assert_without_use): New rules.
7786 (sc_obsolete_symbols): Don't catch Makefile.maint itself.
7787 (sc_dd_max_sym_length): Fix leading spaces in rule.
7788 (sc_system_h_headers): Prefix with @.
7789 (sc_useless_cpp_parens, m4-check): Output line numbers.
7790 (changelog-check): Allow version only in head.
7791 * data/c.m4: Use "defined FOO" instead of "defined (FOO)", to
7792 satisfy new Makefile.maint rule.
7793 * data/glr.c: Likewise.
7794 * data/glr.cc: Likewise.
7795 * data/lalr1.cc: Likewise.
7796 * data/yacc.c: Likewise.
7797 * lib/ebitsetv.c: Likewise.
7798 * lib/lbitset.c: Likewise.
7799 * lib/subpipe.c: Likewise.
7800 * lib/timevar.c: Likewise.
7801 * src/system.h: Likewise.
7802 * data/yacc.c (YYSTYPE): Don't generate trailing spaces in output.
7803 * djgpp/Makefile.maint: Add copyright notice.
7804 * djgpp/README.in: Likewise.
7805 * djgpp/config.bat: Likewise.
7806 * djgpp/config.site: Likewise.
7807 * djgpp/config_h.sed: Likewise.
7808 * djgpp/djunpack.bat: Likewise.
7809 * djgpp/config.sed: Fix copyright notice to match standard format.
7810 * djgpp/subpipe.h: Likewise.
7811 * lib/bitsetv-print.c: Likewise.
7812 * lib/bitsetv.c: Likewise.
7813 * lib/subpipe.h: Likewise.
7814 * lib/timevar.c: Likewise.
7815 * lib/timevar.h: Likewise.
7816 * djgpp/subpipe.c: Use standard recipe for config.h.
7817 * lib/abitset.c: Likewise.
7818 * lib/bitset.c: Likewise.
7819 * lib/bitset_stats.c: Likewise.
7820 * lib/bitsetv-print.c: Likewise.
7821 * lib/bitsetv.c: Likewise.
7822 * lib/ebitsetv.c: Likewise.
7823 * lib/get-errno.c: Likewise.
7824 * lib/lbitset.c: Likewise.
7825 * lib/subpipe.c: Likewise.
7826 * lib/timevar.c: Likewise.
7827 * lib/vbitset.c: Likewise.
7828 * tests/local.at: Likewise.
7829 * src/scan-gram.l: Don't include verify.h, since system.h does
7830 that for us.
7831 * .x-sc_require_config_h: New file.
7832 * .x-sc_unmarked_diagnostics: New file.
7833
7834 2006-01-20 Paul Eggert <eggert@cs.ucla.edu>
7835
7836 Be a bit more systematic about using 'abort'.
7837 * lib/abitset.c (abitset_test): Remove ATTRIBUTE_UNUSED; not needed.
7838 * lib/bitset.c (bitset_bytes, bitset_init, bitset_op4_cmp):
7839 Put 'default: abort ();' before some other case, to satisfy older
7840 pedantic compilers.
7841 * lib/bitset_stats.c (bitset_stats_init): Likewise.
7842 * lib/ebitset.c (ebitset_elt_find, ebitset_op3_cmp): Likewise.
7843 * lib/lbitset.c (lbitset_elt_find, lbitset_op3_cmp): Likewise.
7844 * src/conflicts.c (resolve_sr_conflict): Likewise.
7845 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str):
7846 (get_decision_str, get_orientation_str, get_node_alignment_str):
7847 (get_arrow_mode_str, get_crossing_type_str, get_view_str):
7848 (get_linestyle_str, get_arrowstyle_str): Likewise.
7849 * src/conflicts.c (resolve_sr_conflict):
7850 Use a default case rather than one for the one remaining enum
7851 value, to catch invalid enum values as well.
7852 * src/lalr.c (set_goto_map, map_goto):
7853 Prefer "assert (FOO);" to "if (!FOO) abort ();".
7854 * src/nullable.c (nullable_compute, token_definitions_output):
7855 Likewise.
7856 * src/reader.c (packgram, reader): Likewise.
7857 * src/state.c (transitions_to, state_new, state_reduction_find):
7858 Likewise.
7859 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias):
7860 (symbol_pack): Likewise.
7861 * src/tables.c (conflict_row, pack_vector): Likewise.
7862 * src/scan-skel.l (QPUTS): Remove unnecessary parens.
7863 (BASE_QPUTS, "@output ".*\n): Remove unnecessary asserts.
7864 * src/system.h: Don't include <assert.h>.
7865 (assert): New macro.
7866
7867 * doc/bison.texinfo (Prologue, Rules, Actions, Union Decl, Action Decl):
7868 (Destructor Decl, Parser Function, Pure Calling):
7869 Describe rules for braces inside C code more carefully.
7870
7871 2006-01-19 Paul Eggert <eggert@cs.ucla.edu>
7872
7873 Fix some porting glitches found by Nelson H. F. Beebe.
7874 * lib/abitset.c (abitset_resize): Rewrite to avoid warnings from
7875 compilers that don't understand that abort () does not return.
7876 * src/state.c (transitions_to): Likewise.
7877 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
7878 that '#include <cstdlib>' works.
7879 * src/system.h (INT8_MIN, INT16_MIN, INT32_MIN, INT8_MAX):
7880 (INT16_MAX, UINT8_MAX, INT32_MAX, UINT16_MAX, UINT32_MAX):
7881 #undef if ! defined __STDC_VERSION__ || __STDC_VERSION__ < 199901,
7882 for the benefit of some pre-C99 compilers.
7883
7884 * bootstrap: Undo changes to gnulib files that autoreconf made.
7885
7886 Minor fixups to get 'make maintainer-check' to work.
7887 * configure.ac: Don't use -Wnested-externs, as it's incompatible
7888 with the new verify.h implementation.
7889 * data/c.m4 (b4_yy_symbol_print_generate): YYUSE (yyoutput).
7890 * data/glr.c (YYUSE): Depend on __GNUC__ as well.
7891 * data/yacc.c (YYUSE): Likewise.
7892 * data/lalr1.cc (yysyntax_error_): YYUSE (yystate).
7893 * lib/subpipe.c (end_of_output_subpipe): The args are unused.
7894 * src/parse-gram.y (declaration): Don't pass a string constant
7895 to a function that expects char *, since GCC might complain
7896 about the constant value.
7897 * src/reader.c (symbol_typed_p): Add parens to pacify GCC.
7898 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): #undef yylloc and yylval
7899 before #defining them.
7900 * tests/glr-regression.at
7901 (Incorrectly initialized location for empty right-hand side in GLR):
7902 In yyerror, use the msg arg.
7903 (Corrupted semantic options if user action cuts parse):
7904 (Incorrect lookahead during deterministic GLR):
7905 (Incorrect lookahead during nondeterministic GLR):
7906 Don't name a local var 'index'; it shadows string.h's 'index'.
7907
7908 2006-01-19 Akim Demaille <akim@epita.fr>
7909
7910 * tests/calc.at (_AT_DATA_CALC_Y): Initialize the whole initial
7911 location, not just parts of it.
7912
7913 2006-01-18 Paul Eggert <eggert@cs.ucla.edu>
7914
7915 * NEWS: Document the fact that multiple %unions are now allowed.
7916 * doc/bison.texinfo (Union Decl): Likewise.
7917 * TODO: This feature is now implemented, so remove it from
7918 the wishlist.
7919
7920 * Makefile.maint: Merge with coreutils Makefile.maint.
7921 (CVS_LIST): Use build-aux version if available.
7922 (VERSION_REGEXP): New macro.
7923 (syntax-check-rules): Add sc_no_if_have_config_h,
7924 sc_prohibit_assert_without_use, sc_require_config_h,
7925 sc_useless_cpp_parens.
7926 (sc_obsolete_symbols): Check for O_NDELAY.
7927 (sc_dd_max_sym_length): Track coreutils.
7928 (sc_unmarked_diagnostics): Look in all files, not just *.c.
7929 (sc_useless_cpp_parens): New rule.
7930 (news-date-check): Look for version or today's date.
7931 (changelog-check): Don't require version number near head.
7932 (copyright-check): Use current year instead of hardwiring 2005.
7933 (my-distcheck): Depend on $(release_archive_dir)/$(prev-tgz).
7934 (announcement): Add --gpg-key-ID.
7935
7936 * djgpp/config.sed: Add copyright notice, and replace "filesystem"
7937 with "file system".
7938
7939 Avoid undefined behavior that addressed just before the start of an
7940 array. Problem reported by twlevo.
7941 * src/reader.c (packgram): Prepend a new sentinel before ritem.
7942 * src/lalr.c (build_relations): Rely on new sentinel.
7943 * src/gram.c (gram_free): Adjust to new sentinel.
7944
7945 2006-01-12 Joel E. Denny <jdenny@ces.clemson.edu>
7946
7947 * data/glr.c (yyGLRStateSet): Rename yylookaheadStatuses to
7948 yylookaheadNeeds. All uses updated.
7949 (yysplitStack): Rename local yynewLookaheadStatuses to
7950 yynewLookaheadNeeds.
7951 * data/glr-regression.at (Incorrect lookahead during nondeterministic
7952 GLR): In comments, change `lookahead status' to `lookahead need'.
7953
7954 2006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
7955
7956 * data/glr.c (yysplitStack): A little stylistic rewrite.
7957
7958 2006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
7959
7960 * data/glr.c (yyaddDeferredAction): Flesh out the comment.
7961
7962 2006-01-11 Joel E. Denny <jdenny@ces.clemson.edu>
7963
7964 * doc/bison.texinfo: Fix some typos.
7965 (GLR Semantic Actions): New subsection discussing special
7966 considerations because GLR semantic actions might be deferred.
7967 (Actions): Mention look-ahead usage of yylval.
7968 (Actions and Locations): Mention look-ahead usage of yylloc.
7969 (Special Features for Use in Actions): Add YYEOF entry and mention it
7970 in the yychar entry.
7971 In the yychar entry, remove mention of the local yychar case (pure
7972 parser) since this is irrelevant information when writing semantic
7973 actions and since it's already discussed in `Table of Symbols' where
7974 yychar is otherwise described as an external variable.
7975 In the yychar entry, don't call it the `current' look-ahead since it
7976 isn't when semantic actions are deferred.
7977 In the yychar and yyclearin entries, add note about deferred semantic
7978 actions.
7979 Add yylloc and yylval entries discussing look-ahead usage.
7980 (Look-Ahead Tokens): When discussing yychar, don't call it the
7981 `current' look-ahead, and do mention yylval and yylloc.
7982 (Error Recovery): Cross-reference `Action Features' when mentioning
7983 yyclearin.
7984 (Table of Symbols): In the yychar entry, don't call it the `current'
7985 look-ahead.
7986 In the yylloc and yylval entries, mention look-ahead usage.
7987
7988 2006-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
7989
7990 * tests/glr-regression.at: Update copyright year to 2006.
7991
7992 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
7993
7994 * data/glr.c (yyGLRStateSet): Add yybool* yylookaheadStatuses member to
7995 use during nondeterministic operation to track which stacks have
7996 actually needed the current lookahead.
7997 (yyinitStateSet, yyfreeStateSet, yyremoveDeletes, yysplitStack):
7998 Allocate, deallocate, resize, and otherwise shuffle space for
7999 yylookaheadStatuses in parallel with yystates member of yyGLRStateSet.
8000 (yysplitStack, yyprocessOneStack, yyparse): Set lookahead status
8001 appropriately during nondeterministic operation.
8002 (yySemanticOption): Add int yyrawchar, YYSTYPE yyval, and YYLTYPE yyloc
8003 members to store the current lookahead to be used by the deferred
8004 user action.
8005 (yyaddDeferredAction): Add size_t yyk parameter specifying the stack
8006 from which the RHS is taken. Set the lookahead members of the new
8007 yySemanticOption according to the lookahead status for stack yyk.
8008 (yyglrShiftDefer, yyglrReduce): Pass yyk parameter on to
8009 yyaddDeferredAction.
8010 (yyresolveAction): Set yychar, yylval, and yylloc to the lookahead
8011 members of yySemanticOption before invoking yyuserAction, and then set
8012 them back to their current values afterward.
8013 (yyparse): Set yychar = YYEMPTY where yytoken = YYEMPTY.
8014 (yyreportAmbiguity): Add /*ARGSUSED*/ to pacify lint.
8015 * tests/glr-regression.at: Remove `.' from the ends of recent test case
8016 titles for consistency.
8017 (Leaked merged semantic value if user action cuts parse): In order to
8018 suppress lint warnings, use arguments in merge function, and assign
8019 char value < 128 in main.
8020 (Incorrect lookahead during deterministic GLR): New test case.
8021 (Incorrect lookahead during nondeterministic GLR): New test case.
8022
8023 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
8024
8025 * data/c.m4 (b4_yy_symbol_print_generate): In yy_symbol_print, accept
8026 !yyvaluep as signal that no semantic value is available to print.
8027 * data/glr.c (yydestroyGLRState): If state is not resolved, don't try
8028 to print a semantic value.
8029
8030 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
8031
8032 * tests/glr-regression.at: For consistency with my newer test cases,
8033 don't thank myself.
8034
8035 2006-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
8036
8037 * data/glr.c (yyresolveValue): When merging semantic options, if at
8038 least one user action succeeds but a later one cuts the parse, then
8039 destroy the semantic value before returning rather than leaking it.
8040 (yyresolveStates): If a user action cuts the parse and thus
8041 yyresolveValue fails, ignore the (unset) semantic value rather than
8042 corrupting the yyGLRState, and empty the semantic options list since
8043 the user actions should have called all necessary destructors.
8044 Simplify code with YYCHK.
8045 * tests/glr-regression.at (Corrupted semantic options if user action
8046 cuts parse): New test case.
8047 (Undesirable destructors if user action cuts parse): New test case.
8048 Before applying any of this patch, this test case never actually failed
8049 for me... but only because the corrupted semantic options usually
8050 masked this bug.
8051 (Leaked merged semantic value if user action cuts parse): New test
8052 case.
8053
8054 2006-01-05 Akim Demaille <akim@epita.fr>
8055
8056 * src/reader.c, src/symlist.h, src/symlist.c: s/mid_rule/midrule/.
8057
8058 2006-01-04 Paul Eggert <eggert@cs.ucla.edu>
8059
8060 * data/c.m4 (b4_c_modern): New macro, with a new provision for
8061 _MSC_VER. Problem reported by Cenzato Marco.
8062 (b4_c_function_def): Use it.
8063 * data/yacc.c (YYMODERN_C): Remove. All uses replaced by
8064 b4_c_modern.
8065 (yystrlen, yystpcpy, yyparse): Use b4_c_function... macros rather
8066 than rolling our own.
8067
8068 2006-01-04 Akim Demaille <akim@epita.fr>
8069
8070 Also warn about non-used mid-rule values.
8071 * src/symlist.h, src/symlist.c (symbol_list): Add a mid_rule
8072 member.
8073 (symbol_list_new): Adjust.
8074 * src/reader.c (symbol_typed_p): New.
8075 (grammar_rule_check): Use it.
8076 (grammar_midrule_action): Bind a mid-rule LHS to its rule.
8077 Check its rule.
8078 * tests/input.at (AT_CHECK_UNUSED_VALUES): New.
8079 Use it.
8080 * tests/actions.at (Exotic Dollars): Adjust.
8081
8082 2006-01-04 Akim Demaille <akim@epita.fr>
8083
8084 * src/reader.c (grammar_midrule_action): If $$ is set in a
8085 mid-rule, move the `used' bit to its lhs.
8086 * tests/input.at (Unused values): New.
8087 * tests/actions.at (Exotic Dollars): Adjust: exp is not typed.
8088
8089 2006-01-03 Paul Eggert <eggert@cs.ucla.edu>
8090
8091 * doc/bison.texinfo (Bison Options): Say more accurately what
8092 --yacc does.
8093 * src/parse-gram.y (rules_or_grammar_declaration): Don't complain
8094 about declarations in the grammar when in Yacc mode, as POSIX does
8095 not require a diagnostic when the grammar uses extensions.
8096
8097 * src/reduce.c (reduce_grammar): Remove unnecessary cast to bool.
8098
8099 Warn about dubious constructions like "%token T T".
8100 Reported by twlevo.
8101 * src/symtab.h (struct symbol.declared): New member.
8102 * src/symtab.c (symbol_new): Initialize it to false.
8103 (symbol_class_set): New arg DECLARING, specifying whether
8104 this is a declaration that we want to warn about, if there
8105 is more than one of them. All uses changed.
8106
8107 * data/glr.c, data/glr.cc, data/lalr1.cc, data/yacc.c:
8108 Allow multiple %union directives, whose contents concatenate.
8109 * src/parse-gram.y (grammar_declaration): Likewise.
8110 Use muscle_code_grow, so that we don't need stype_line any more.
8111 All uses changed.
8112
8113 * src/muscle_tab.c (muscle_grow): Fix comment.
8114
8115 * ChangeLog, data/c.m4, data/glr.c, data/glr.cc, data/location.cc:
8116 * data/yacc.c, src/getargs.c, src/output.c, tests/cxx-type.at:
8117 Update copyright year to 2006.
8118
8119 2006-01-03 Akim Demaille <akim@epita.fr>
8120
8121 Have glr.cc pass (some of) the calc.at tests.
8122 * data/glr.cc (b4_parse_param_orig): New.
8123 (b4_parse_param): Improve its definition, and bound it more
8124 clearly in the skeleton.
8125 (b4_epilogue): Append, instead of prepending, in order to keep
8126 #line consistency.
8127 Simplify the generation of auxiliary functions: locations and
8128 purity are mandated.
8129 (b4_global_tokens_and_yystype): Honor it.
8130 * data/location.cc (c++.m4): Don't include it.
8131 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Define AT_GLR_CC_IF
8132 and AT_SKEL_CC_IF.
8133 * tests/calc.at (AT_CHECK_CALC): Rely on AT_SKEL_CC_IF instead of
8134 AT_LALR1_CC_IF.
8135 Be sure to initialize the first position's filename.
8136 (AT_CHECK_CALC_LALR1_CC): Add %location and %defines, they are
8137 mandated anyway.
8138 (AT_CHECK_CALC_GLR_CC): New.
8139 Use it to exercise glr.cc as a lalr1.cc drop-in replacement.
8140
8141 2006-01-02 Akim Demaille <akim@epita.fr>
8142
8143 * src/output.c (output_skeleton): Don't hard wire the inclusion of
8144 c.m4.
8145 * data/c++.m4, data/glr.c, data/yacc.c: Include c.m4.
8146 * data/glr.cc: Do not include stack.hh.
8147
8148 2006-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
8149
8150 * data/glr.c: Reformat whitespace with tabs.
8151 (b4_lpure_formals): Remove this unused m4 macro.
8152 * tests/cxx-type.at: Reformat whitespace with tabs.
8153 (_AT_TEST_GLR_CXXTYPES): In union Node, rename node_info to nodeInfo
8154 since it's a member. Rename type to isNterm for clarity.
8155
8156 2005-12-29 Akim <akim@sulaco.local>
8157
8158 Let glr.cc catch up with symbol_value_print.
8159 * data/glr.cc (b4_yysymprint_generate): Replace by...
8160 (b4_yy_symbol_print_generate): this.
8161 (yy_symbol_print, yy_symbol_value_print): Declare them.
8162
8163 2005-12-28 Paul Eggert <eggert@cs.ucla.edu>
8164
8165 * src/location.h (boundary): Note that a line or column equal
8166 to INT_MAX indicates an overflow.
8167 * src/scan-gram.l: Include verify.h. Don't include get-errno.h.
8168 (rule_length_overflow, increment_rule_length, add_column_width):
8169 New functions.
8170 (<INITIAL>{id}, <SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'"):
8171 (<SC_BRACED_CODE>"}"):
8172 Use increment_rule_length rather than incrementing it by hand.
8173 (adjust_location, handle_syncline): Diagnose overflow.
8174 (handle_action_dollar, handle_action_at):
8175 Fix bug with monstrosities like $-2147483648.
8176 Remove now-unnecessary checks.
8177 (scan_integer): Verify assumptions and remove now-unnecessary checks.
8178 (convert_ucn_to_byte): Verify assumptions.
8179 (handle_syncline): New arg LOC. All callers changed.
8180 Don't store through a value derived from char const * pointer.
8181
8182 * src/reader.c (grammar_rule_check): Rewrite slightly to avoid
8183 GCC warnings.
8184
8185 2005-12-27 Paul Eggert <eggert@cs.ucla.edu>
8186
8187 * src/reader.c (grammar_midrule_action, grammar_symbol_append):
8188 Remove unnecessary forward static decls.
8189
8190 2005-12-27 Akim Demaille <akim@epita.fr>
8191
8192 * src/reader.c (grammar_current_rule_check): Also check that $$
8193 is used.
8194 Take the rule to check as argument, hence rename as...
8195 (grammar_rule_check): this.
8196 * src/reader.h, src/reader.c (grammar_rule_begin, grammar_rule_end):
8197 Rename as...
8198 (grammar_rule_begin, grammar_rule_end): these, for consistency.
8199 (grammar_midrule_action, grammar_symbol_append): Now static.
8200 * tests/torture.at (input): Don't rely on the default action
8201 being always performed.
8202 * tests/calc.at: "Set" $$ even when the action is "cut" with
8203 YYERROR or other.
8204 * tests/actions.at (Exotic Dollars): Instead of using unused
8205 values, check that the warning is issued.
8206
8207 2005-12-22 Paul Eggert <eggert@cs.ucla.edu>
8208
8209 * NEWS: Improve wording for unused-value warnings.
8210
8211 2005-12-22 Akim Demaille <akim@epita.fr>
8212
8213 * data/lalr1.cc, data/yacc.c, data/glr.c, data/c.m4
8214 (b4_yysymprint_generate): Rename as...
8215 (b4_yy_symbol_print_generate): this.
8216 Generate yy_symbol_print instead of yysymprint.
8217 Generate also yy_symbol_value_print, and use it.
8218
8219 2005-12-22 Akim Demaille <akim@epita.fr>
8220
8221 * NEWS: Warn about unused values.
8222 * src/symlist.h, src/symlist.c (symbol_list, symbol_list_new): Add
8223 a `used' member.
8224 (symbol_list_n_get, symbol_list_n_used_set): New.
8225 (symbol_list_n_type_name_get): Use symbol_list_n_get.
8226 * src/scan-gram.l (handle_action_dollar): Flag used symbols.
8227 * src/reader.c (grammar_current_rule_check): Check that values are
8228 used.
8229 * src/symtab.c (symbol_print): Accept 0.
8230 * tests/existing.at: Remove the type information.
8231 Empty the actions.
8232 Remove useless actions (beware of mid-rule actions: perl -000
8233 -pi -e 's/\s*\{\}(?=[\n\s]*[|;])//g').
8234 * tests/actions.at (Exotic Dollars): Use unused values.
8235 * tests/calc.at: Likewise.
8236 * tests/glr-regression.at (No users destructors if stack 0 deleted):
8237 Likewise.
8238
8239 * src/gram.c (rule_useful_p, rule_never_reduced_p): Use
8240 rule_useful_p.
8241
8242 2005-12-21 Paul Eggert <eggert@cs.ucla.edu>
8243
8244 Undo 2005-12-01 tentative license wording change. The wording is
8245 still being reviewed by the lawyers, and we don't want to wait for
8246 them before publishing a test release. For now, revert to the
8247 previous wording.
8248 * NEWS: Undo 2005-12-01 change.
8249 * data/glr.c: Revert to previous license wording.
8250 * data/glr.cc: Likewise.
8251 * data/lalr1.cc: Likewise.
8252 * data/location.cc: Likewise.
8253 * data/yacc.c: Likewise.
8254
8255 * NEWS: Reword %destructor vs YYABORT etc.
8256 * data/glr.c: Use American spacing, for consistency.
8257 * data/glr.cc: Likewise.
8258 * data/lalr1.cc: Likewise.
8259 * data/yacc.c: Likewise.
8260 * data/yacc.c: Reformat comments slightly.
8261 * doc/bison.texinfo: Replace "non-" with "non" when that makes sense,
8262 for consistency. Fix some spelling errors and reword recently-included
8263 text slightly.
8264 * tests/cxx-type.at: Cast results of malloc, for C++.
8265
8266 2005-12-21 Joel E. Denny <address@hidden>
8267
8268 * tests/cxx-type.at: Construct a tree, count the parents of shared
8269 nodes, and free each node once and only once. Previously, the memory
8270 for semantic values was leaked instead.
8271
8272 2005-12-21 Joel E. Denny <address@hidden>
8273
8274 * data/glr.c (struct yyGLRStack): If pure, add yyval and yyloc members.
8275 (yylval, yylloc): If pure, #define to yystackp->yyval and
8276 yystackp->yyloc similar to yychar and yynerrs.
8277 (yyparse): If pure, remove local yylval and yylloc. Add local
8278 yystackp to accommodate pure definitions of yylval and yylloc.
8279 (b4_lex_param, b4_lyyerror_args, b4_lpure_args): If pure, change
8280 yylvalp and yyllocp to &yylval and &yylloc.
8281 (nerrs, char, lval, lloc): If pure, add #define's for b4_prefix[]
8282 namespace. Previously, nerrs and char were missing, but lval and lloc
8283 weren't necessary.
8284 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Remove
8285 yylvalp and yyllocp parameters since, if pure, these are now always
8286 accessible through yystackp. If not pure, they are still accessible
8287 globally.
8288 * data/glr.c, data/yacc.c (YYLLOC_DEFAULT): Change `if (N)' to
8289 `if (YYID (N))' to pacify lint.
8290
8291 2005-12-21 Akim Demaille <akim@epita.fr>
8292
8293 YYACCEPT, YYERROR, and YYABORT, as user actions, should not
8294 destroy the RHS symbols of a rule.
8295 * data/yacc.c (yylen): Initialize to 0.
8296 Keep its value to the number of items to possibly shift.
8297 In particular, a regular successful parse that ends on YYFINAL by
8298 a (internal) YYACCEPT must not have yylen != 0.
8299 (yyerrorlab, yyreturn): Pop the RHS.
8300 Reorder a bit to emphasize the `shifting' bits of code.
8301 (YYPOPSTACK): Now accept a number of items to pop.
8302 * data/lalr1.cc: Likewise.
8303 * data/glr.c: Formatting changes.
8304 Use goto instead of fall through.
8305 * doc/bison.texinfo (Destructor Decl): Complete.
8306
8307 2005-12-20 Juan Manuel Guerrero <juan.guerrero@gmx.de>
8308
8309 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
8310 * djgpp/Makefile.maint: Fix PACKAGE variable computation.
8311 * djgpp/config.bat: Replace every occurence of the file name
8312 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
8313 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
8314 * djgpp/config.sed: Replace every occurence of the file name
8315 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
8316 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
8317 * djgpp/djunpack.bat: DJGPP specific file.
8318 * djgpp/fnchange.lst: DJGPP specific file.
8319 * djgpp/README.in: Add new information about how to unpack the bison
8320 source on MSDOS and other systems which have 8.3 file name restrictions
8321 using djunpack.bat and fnchange.lst.
8322
8323 2005-12-12 Paul Eggert <eggert@cs.ucla.edu>
8324
8325 * bootstrap (build_cvs_prefix): Remove; unused.
8326 (CVS_PREFIX): Adjust to yesterday's Savannah reorganization
8327 when getting gnulib.
8328
8329 2005-12-12 "Joel E. Denny" <jdenny@ces.clemson.edu>
8330
8331 * data/glr.c: Reorder typedef declarations for structs to match order
8332 of struct declarations.
8333 Rename yystack everywhere to yystackp except in yyparse where it's not
8334 a pointer.
8335 (yyglrShift): Change parameter YYSTYPE yysval to YYSTYPE* yyvalp for
8336 consistency.
8337 (yyis_table_ninf): Change 0 to YYID (0) to pacify lint.
8338 (yyreportSyntaxError): Add /*ARGSUSED*/ to pacify lint.
8339 (yyparse): Change while (yytrue) to while ( YYID (yytrue)) to pacify
8340 lint.
8341
8342 2005-12-09 Paul Eggert <eggert@cs.ucla.edu>
8343
8344 * tests/sets.at (Accept): Fix typos in regular expression used to
8345 sed out the final state number.
8346
8347 Work around portability problem on Solaris 10: flex-generated
8348 files include <stdio.h> before <config.h>, which messes up
8349 because the latter defines __EXTENSIONS__. Address the problem
8350 by creating two new little files that include <config.h> first,
8351 then include the flex-generated files. Rewrite everyone else
8352 to include <config.h> first, as well.
8353 * lib/timevar.c: Always include "config.h".
8354 * src/Makefile.am (bison_SOURCES): Replace scan-gram.l with
8355 scan-gram-c.c, and scan-skel.l with scan-skel-c.c.
8356 (EXTRA_bison_SOURCES): New macro.
8357 * src/scan-gram-c.c, src/scan-skel-c.c: New files.
8358 * src/system.h: Don't include config.h.
8359 * src/LR0.c: Include <config.h> first.
8360 * src/assoc.c: Likewise.
8361 * src/closure.c: Likewise.
8362 * src/complain.c: Likewise.
8363 * src/conflicts.c: Likewise.
8364 * src/derives.c: Likewise.
8365 * src/files.c: Likewise.
8366 * src/getargs.c: Likewise.
8367 * src/gram.c: Likewise.
8368 * src/lalr.c: Likewise.
8369 * src/location.c: Likewise.
8370 * src/main.c: Likewise.
8371 * src/muscle_tab.c: Likewise.
8372 * src/nullable.c: Likewise.
8373 * src/output.c: Likewise.
8374 * src/parse-gram.y: Likewise.
8375 * src/print.c: Likewise.
8376 * src/print_graph.c: Likewise.
8377 * src/reader.c: Likewise.
8378 * src/reduce.c: Likewise.
8379 * src/relation.c: Likewise.
8380 * src/state.c: Likewise.
8381 * src/symlist.c: Likewise.
8382 * src/symtab.c: Likewise.
8383 * src/tables.c: Likewise.
8384 * src/uniqstr.c: Likewise.
8385 * src/vcg.c: Likewise.
8386
8387 * src/parse-gram.y: Fix minor problems uncovered by lint.
8388 (current_lhs, current_lhs_location): Now static.
8389 (current_assoc): Remove unused variable.
8390
8391 Cleanups so that Bison-generated parsers have less lint.
8392 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate):
8393 Prepend /*ARGSUSED*/, for lint's sake.
8394 * data/glr.c (YYUSE): Properly parenthesize, and use an alternate
8395 definition if 'lint' is defined.
8396 (YYID): New macro (or function, if lint).
8397 All uses of /*CONSTCOND*/0 replaced by YYID(0).
8398 * data/yacc.c: Likewise.
8399 * data/glr.c (yyuserAction, yyuserMerge, yy_reduce_print):
8400 (yyrecoverSyntaxError): Prepend /*ARGSUSED*/.
8401 * data/glr.cc (YYLLOC_DEFAULT): Omit /*CONSTCOND*/ since this code
8402 is C++ only.
8403 * data/lalr1.cc (YYUSE): Just use a cast, since this code is C++ only.
8404 * data/yacc.c (YYSTACK_FREE) [defined YYSTACK_ALLOC]:
8405 Use YYID(0) rather than 0, for lint.
8406 (yystrlen): Rewrite to avoid lint warning about ptrdiff_t overflow.
8407 (yysyntax_error): Rewrite to avoid lint warnings about parenthesization.
8408
8409 2005-12-07 Paul Eggert <eggert@cs.ucla.edu>
8410
8411 * tests/glr-regression.at
8412 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
8413 Close memory leak reported by twlevo.
8414
8415 2005-12-06 "Joel E. Denny" <jdenny@ces.clemson.edu>
8416
8417 * data/glr.c (yyprocessOneStack, yyparse): Synchronize the shift for
8418 all stacks.
8419 (yyparse): Iterate another stack in order to call user destructors.
8420 * tests/glr-regression.at (No users destructors if stack 0 deleted):
8421 New test case.
8422 (Duplicated user destructor for lookahead): This test now is expected
8423 to succeed.
8424
8425 2005-12-01 Paul Eggert <eggert@cs.ucla.edu>
8426
8427 * NEWS: Document the following change.
8428 * data/yacc.c: Say "parser skeleton" rather than "file", since
8429 it's no longer just a file.
8430 * data/glr.c: Grant a special exception for C GLR parsers, that
8431 reads like the already-existing exception for C LALR(1) parsers.
8432 * data/glr.cc: Likewise.
8433 * data/lalr1.cc: Likewise.
8434 * data/location.cc: Likewise.
8435 * data/yacc.c: Reword the "written by" statement to clarify that
8436 it was the parser skeleton, not the entire output file.
8437 * data/glr.c: Written by Paul Hilfinger.
8438 * data/glr.cc: Written by Akim Demaille.
8439 * data/lalr1.cc: Likewise.
8440
8441 2005-11-18 Paul Eggert <eggert@cs.ucla.edu>
8442
8443 * data/yacc.c (yy_reduce_print, YY_REDUCE_PRINT):
8444 Fix typos in previous change that broke 'make check'.
8445 YY_REDUCE_PRINT cannot be a pseudo-varargs macro; that isn't
8446 supported in C.
8447 * tests/calc.at (_AT_CHECK_CALC,_AT_CHECK_CALC_ERROR):
8448 Don't check NUM-STDERR-LINES, since the output format is fluctuating.
8449 We can revert this once things settle down.
8450
8451 * src/conflicts.c (conflicts_print): Don't print file name twice
8452 when %expect fails because there were no conflicts.
8453 * doc/bison.texinfo (Expect Decl): Tighten up wording in previous
8454 change.
8455 * tests/conflicts.at (%expect not enough, %expect too much):
8456 (%expect with reduce conflicts): Adjust to new behavior.
8457
8458 2005-11-18 Akim Demaille <akim@epita.fr>
8459
8460 * src/conflicts.c (conflicts_print): Unsatisfied %expectation are
8461 errors.
8462 * NEWS: Document this.
8463 * doc/bison.texinfo (Expect Decl): Likewise.
8464
8465 2005-11-16 Akim Demaille <akim@epita.fr>
8466
8467 Generalize the display of semantic values and locations in traces.
8468 * data/glr.c (yy_reduce_print): Fix indices (again).
8469 * data/c++.m4 (b4_rhs_value, b4_rhs_location): Don't expect
8470 literal integers.
8471 * data/lalr1.cc (yyreduce_print): Rename as...
8472 (yy_reduce_print): this.
8473 Display values and locations.
8474 * data/yacc.c (yy_reduce_print): Likewise.
8475 (YY_REDUCE_PRINT): Adjust to pass the required arguments.
8476 (yysymprint): Move higher to be visible from yy_reduce_print).
8477 (yyparse): Adjust.
8478 * tests/calc.at: Adjust the expected length of the traces.
8479
8480 2005-11-14 Akim Demaille <akim@epita.fr>
8481
8482 * data/glr.c (yy_reduce_print): The loop was quite wrong: type are
8483 from 1 to N, while values and location start at 0.
8484 (b4_rhs_location, b4_rhs_value): Add parens around $1 and $2.
8485
8486 2005-11-14 Akim Demaille <akim@epita.fr>
8487
8488 * data/glr.c (yy_reduce_print): Fix the $ number.
8489
8490 2005-11-14 Akim Demaille <akim@epita.fr>
8491
8492 "Use" parse parameters.
8493 * data/c.m4 (b4_parse_param_for, b4_parse_param_use): New.
8494 * data/glr.c, data/glr.cc: Use them.
8495 * data/glr.c (YYUSE): Have a C++ definition that supports
8496 non-pointer types.
8497
8498 2005-11-14 Akim Demaille <akim@epita.fr>
8499
8500 * data/glr.c (yyexpandGLRStack): Declare only if defined.
8501
8502 2005-11-14 Akim Demaille <akim@epita.fr>
8503
8504 * data/glr.cc: New.
8505 * data/m4sugar/m4sugar.m4 (m4_prepend): New.
8506
8507 2005-11-12 Akim Demaille <akim@epita.fr>
8508
8509 Let position and location be PODs.
8510 * data/location.cc (position::initialize, location::initialize): New.
8511 (position::position, location::location): Define only if
8512 b4_location_constructors is defined.
8513 * data/lalr1.cc (b4_location_constructors): Define it for backward
8514 compatibility.
8515 * doc/bison.texinfo (Initial Action Decl): Use initialize.
8516
8517 2005-11-12 Akim Demaille <akim@epita.fr>
8518
8519 * data/lalr1.cc: Move the body of the ctor and dtor into the
8520 parser file (instead of the header).
8521 Wrap the implementations in a "namespace yy".
8522
8523 2005-11-12 Akim Demaille <akim@epita.fr>
8524
8525 Have glr.c include its header file when created.
8526 * data/glr.c (b4_shared_declarations): New.
8527 Output them verbatim in the parser if !%defines, otherwise
8528 output then in the header file, and include it instead.
8529
8530 2005-11-11 Akim Demaille <akim@epita.fr>
8531
8532 * data/glr.c: Comment changes.
8533
8534 2005-11-11 Akim Demaille <akim@epita.fr>
8535
8536 When yydebug, report semantic and location values for reductions.
8537 * data/glr.c (yy_reduce_print): Report the semantic values and the
8538 locations.
8539 (YY_REDUCE_PRINT): Adjust.
8540 (yyglrReduce): Use them.
8541 (b4_rhs_value, b4_rhs_location): Remove m4_eval invocations.
8542 * data/c.m4 (b4_yysymprint_generate): Specify the const arguments.
8543 * tests/calc.at (_AT_CHECK_CALC_ERROR): Remove the reduction
8544 traces.
8545
8546 2005-11-10 Akim Demaille <akim@epita.fr>
8547
8548 * data/glr.c (yynewGLRStackItem, YY_RESERVE_GLRSTACK): New.
8549 (yyaddDeferredAction, yyglrShift, yyglrShiftDefer): Use them.
8550 (yyexpandGLRStack, YYRELOC): Define only when YYSTACKEXPANDABLE.
8551
8552 2005-11-09 Albert Chin-A-Young <china@thewrittenword.com>
8553
8554 * m4/cxx.m4, examples/Makefile.am: Don't build
8555 examples/calc++ if no C++ compiler is available. (trivial change)
8556
8557 2005-11-09 Akim Demaille <akim@epita.fr>
8558
8559 * src/scan-skel.l: Use a couple of asserts.
8560
8561 2005-11-03 Akim Demaille <akim@epita.fr>
8562
8563 In some (weird) cases, the final state number is incorrect.
8564 Reported by Alexandre Duret-Lutz.
8565 * src/LR0.c (state_list_append): Remove the computation of
8566 final_state.
8567 (save_reductions): Do it here.
8568 (get_state): Alpha conversion.
8569 (generate_states): Use a for loop.
8570 * src/gram.h (item_number_is_rule_number)
8571 (item_number_is_symbol_number): New.
8572 * src/state.c: Use assert.
8573 * src/system.h: Include assert.h.
8574 * tests/sets.at (Accept): New.
8575
8576 2005-10-30 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
8577
8578 * data/glr.c (yyfill): Adjust comment.
8579 (yyresolveAction): Initialize default location properly
8580 for empty right-hand sides.
8581 (yydoAction): Ditto.
8582 Add comment explaining apparently dead code.
8583 * tests/glr-regression.at
8584 (Incorrectly initialized location for empty right-hand side in GLR):
8585 New test.
8586
8587 2005-10-30 Paul Eggert <eggert@cs.ucla.edu>
8588
8589 * bootstrap (cleanup_gnulib): New function. Use it to clean up
8590 gnulib when interrupted. This fixes some race conditions and
8591 works around some portability problems (one noted by Paul
8592 Hilfinger).
8593
8594 2005-10-22 Akim <akim@epita.fr>
8595
8596 * Makefile.cfg: Adjust to config -> build-aux.
8597 Reported by twledo.
8598
8599 2005-10-21 Akim Demaille <akim@epita.fr>
8600
8601 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Pass
8602 the %parse-params.
8603 * data/glr.c (YY_SYMBOL_PRINT, yydestroyGLRState): Adjust.
8604 * data/yacc.c (b4_Pure_if): Rename as...
8605 (b4_yacc_pure_if): this.
8606 (YY_SYMBOL_PRINT, yyparse): Adjust.
8607 * doc/bison.texinfo: Formatting changes.
8608
8609 2005-10-21 Akim Demaille <akim@epita.fr>
8610
8611 Finish the transition config -> build-aux.
8612 * configure.ac, Makefile.am: Use build-aux.
8613 * config/prev-version, config/announce-gen, config/Makefile.am:
8614 Move to...
8615 * build-aux/prev-version, build-aux/announce-gen,
8616 * build-aux/Makefile.am: here.
8617
8618 2005-10-14 Akim Demaille <akim@epita.fr>
8619
8620 * examples/calc++/test: Use set -x only when VERBOSE.
8621
8622 2005-10-13 Paul Eggert <eggert@cs.ucla.edu>
8623
8624 * NEWS: Bison now warns if it finds a stray `$' or `@' in an action.
8625 * src/scan-gram.l (<SC_BRACED_CODE>[$@]): Implement this.
8626
8627 2005-10-13 Akim Demaille <akim@epita.fr>
8628
8629 * src/scan-skel.l: Output the base name parts of the parser and
8630 header file names.
8631 * tests/output.at (AT_CHECK_OUTPUT): Support subdirectories, and
8632 additional checks.
8633 Use this to exercise C++ outputs in subdirs.
8634 Reported by Oleg Smolsky.
8635
8636 2005-10-12 Paul Eggert <eggert@cs.ucla.edu>
8637
8638 * data/c.m4 (b4_c_function_def): Look at __C99_FUNC__, not at
8639 __STDC_VERSION__, as IBM cc 7.0 doesn't define the latter either.
8640 Problem reported by John P. Hartmann.
8641 * data/yacc.c (YYMODERN_C): Likewise. Don't define if the user has
8642 already defined it.
8643
8644 2005-10-12 Akim Demaille <akim@epita.fr>
8645
8646 * src/parse-gram.y (version_check): Exit 63 to please missing
8647 (stands for "version mismatch).
8648 * tests/input.at, doc/bison.texinfo: Adjust.
8649
8650 2005-10-10 Paul Eggert <eggert@cs.ucla.edu>
8651
8652 Work around portability problems with Visual Age C compiler
8653 (xlc and xlC_r) reported by John P. Hartmann.
8654 * data/location.cc (initial_column, initial_line): Remove.
8655 All uses replaced by 0 and 1.
8656 * src/scan-gram.l (gram_wrap): Redefine to avoid bug in flex 2.5.31
8657 that xlc complains about.
8658 * src/scan-skel.l (skel_wrap): Likewise.
8659 * data/c.m4 (b4_c_function_def): Look at __STDC_VERSION__ as well
8660 as __STDC__.
8661 * data/yacc.c (YYMODERN_C): New macro, which also looks at
8662 __STDC_VERSION__. Use it everywhere instead of looking at
8663 __STDC__ and __cplusplus.
8664
8665 2005-10-10 Akim Demaille <akim@epita.fr>
8666
8667 * examples/calc++/test: Be quiet unless VERBOSE.
8668
8669 2005-10-05 Paul Eggert <eggert@cs.ucla.edu>
8670
8671 * data/c.m4 (yydestruct, yysymprint):
8672 Use YYUSE instead of casting to void.
8673 * data/glr.c (YYUSE): New macro.
8674 (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
8675 Use it instead of rolling our own.
8676 (YYLLOC_DEFAULT, YYCHK, YYDPRINTF, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
8677 (YYCHK1):
8678 Use /*CONSTCOND*/ to suppress lint warnings.
8679 * data/lalr1.cc (YYLLOC_DEFAULT, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
8680 (YY_STACK_PRINT): Use 'false' not '0'.
8681 (YYUSE): New macro.
8682 (yysymprint_, yydestruct_): Use it instead of rolling our own.
8683 * data/yacc.c (YYUSE): New macro.
8684 (YYCOPY, YYSTACK_RELOCATE, YYBACKUP, YYLLOC_DEFAULT):
8685 (YYDPRINTF, YY_SYMBOL_PRINT, YY_STACK_PRINT, YY_REDUCE_PRINT):
8686 (yyerrorlab): Use /*CONSTCOND*/ to suppress lint warnings.
8687
8688
8689 * data/m4sugar/m4sugar.m4 (_m4_map): New macro.
8690 (m4_map, m4_map_sep): Use it. Handle the empty list correctly.
8691
8692 2005-10-04 Paul Eggert <eggert@cs.ucla.edu>
8693
8694 Undo the parts of the unlocked-I/O change that substituted
8695 putc or puts for printf. This might hurt performance a bit,
8696 but some people prefer the printf style.
8697 * data/c.m4 (yysymprint): Prefer printf to puts and putc.
8698 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): Remove.
8699 All uses replaced by YYFPRINTF and YYDPRINTF.
8700 * data/yacc.c: Likewise.
8701 * lib/bitset.c (bitset_print): Likewise.
8702 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer printf to
8703 putc and puts.
8704 * lib/lbitset.c (debug_lbitset): Likewise.
8705 * src/closure.c (print_firsts, print_fderives): Likewise.
8706 * src/gram.c (grammar_dump): Likewise.
8707 * src/lalr.c (look_ahead_tokens_print): Likewise.
8708 * src/output.c (escaped_output): Likewise.
8709 (user_actions_output): Break apart two printfs.
8710 * src/parse-gram.y (%printer): Prefer printf to putc and puts.
8711 * src/reduce.c (reduce_print): Likewise.
8712 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
8713 * src/system.h: Include unlocked-io.h rathe than stdio.h.
8714
8715 * data/glr.c (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
8716 Use assignments rather than casts-to-void to suppress
8717 unused-variable warnings. This pacifies 'lint'.
8718 * data/lalr1.cc (yysymprint_, yydestruct_): Use a call to suppress
8719 unused-variable warnings.
8720
8721 2005-10-03 Juan Manuel Guerrero <juan.guerrero@gmx.de>
8722
8723 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
8724
8725 2005-10-02 Paul Eggert <eggert@cs.ucla.edu>
8726
8727 Use unlocked I/O for a minor performance improvement on hosts like
8728 GNU/Linux and Solaris that support unlocked I/O. The basic idea
8729 is to use the gnlib unlocked-io module, and to prefer putc and
8730 puts to printf when either will work (since the latter doesn't
8731 come in an unlocked flavor).
8732 * bootstrap (gnulib_modules): Add unlocked-io.
8733 * data/c.m4 (yysymprint): Prefer puts and putc to printf.
8734 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): New macros.
8735 Prefer them to YYFPRINTF and YYDPRINTF if either will do,
8736 and similarly for puts and putc and printf.
8737 * data/yacc.c: Likewise.
8738 * lib/bitset.c (bitset_print): Likewise.
8739 * lib/bitset.h [USE_UNLOCKED_IO]: Include unlocked-io.h.
8740 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer putc and puts
8741 to printf.
8742 * lib/lbitset.c (debug_lbitset): Likewise.
8743 * src/closure.c (print_firsts, print_fderives): Likewise.
8744 * src/gram.c (grammar_dump): Likewise.
8745 * src/lalr.c (look_ahead_tokens_print): Likewise.
8746 * src/output.c (escaped_output): Likewise.
8747 (user_actions_output): Coalesce two printfs.
8748 * src/parse-gram.y (%printer): Prefer putc and puts to printf.
8749 * src/reduce.c (reduce_print): Likewise.
8750 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
8751 * src/system.h: Include unlocked-io.h rather than stdio.h.
8752
8753 * data/lalr1.cc: Don't put an unmatched ' in a dnl comment, as
8754 this confuses xgettext.
8755
8756 2005-10-02 Akim Demaille <akim@epita.fr>
8757
8758 * bootstrap (gnulib_modules): Add strverscmp.
8759 * lib/.cvsignore: Add strverscmp.c, strverscmp.h.
8760 * m4/.cvsignore: Add strverscmp.m4.
8761 * src/parse-gram.y (%require): New token, new rule.
8762 (version_check): New.
8763 * src/scan-gram.l (%require): Adjust.
8764 * tests/input.at (AT_REQUIRE): New.
8765 Use it.
8766 * doc/bison.texinfo (Require Decl): New.
8767 (Calc++ Parser): Use %require.
8768
8769 2005-10-02 Akim Demaille <akim@epita.fr>
8770
8771 * data/location.cc: New.
8772
8773 2005-10-02 Paul Eggert <eggert@cs.ucla.edu>,
8774 Akim Demaille <akim@epita.fr>
8775
8776 Make sure -odir/foo.cc creates dir/location.hh etc.
8777 * src/files.h (spec_outfile, parser_file_name, spec_name_prefix)
8778 (spec_file_prefix, spec_verbose_file, spec_graph_file)
8779 (spec_defines_file): Now const.
8780 (dir_prefix): New.
8781 (short_base_name): Remove.
8782 * src/files.c: Adjust.
8783 (dirname.h): Include.
8784 (base_name): Don't prototype it.
8785 (finput): Remove, duplicates gram_in.
8786 (full_base_name, short_base_name): Replace by...
8787 (all_but_ext, all_but_tab_ext): these.
8788 (compute_base_names): Rename as...
8789 (compute_file_name_parts): this.
8790 Update to compute the new variables, including dir_prefix.
8791 Adjust dependencies.
8792 * src/output.c (prepare): Output them.
8793 * src/reader.c: Adjust to use gram_in, not finput.
8794 * src/scan-skel.l (@dir_prefix@): New.
8795
8796 2005-10-02 Juan Manuel Guerrero <juan.guerrero@gmx.de>
8797
8798 * lib/subpipe.c: New function end_of_output_subpipe() added
8799 to allow support for non-posix systems. This is a no-op function
8800 for posix systems.
8801
8802 * lib/subpipe.h: New function end_of_output_subpipe() added
8803 to allow support for non-posix systems. This is a no-op function
8804 for posix systems.
8805
8806 * src/output.c (output_skeleton): Use end_of_output_subpipe() to
8807 handle the lack of pipe/fork functionality on non-posix systems.
8808
8809 * djgpp/Makefile.maint: DJGPP specific file.
8810
8811 * djgpp/README.in: DJGPP specific file.
8812
8813 * djgpp/config.bat: DJGPP specific configuration file.
8814
8815 * djgpp/config.sed: DJGPP specific configuration file.
8816
8817 * djgpp/config.site: DJGPP specific configuration file.
8818
8819 * djgpp/config_h.sed: DJGPP specific configuration file.
8820
8821 * djgpp/subpipe.c: DJGPP specific replacement file for lib/subpipe.c.
8822
8823 * djgpp/subpipe.h: DJGPP specific replacement file for lib/subpipe.h.
8824
8825 2005-10-02 Akim Demaille <akim@epita.fr>
8826
8827 * data/location.cc: New, extract from...
8828 * data/lalr1.cc: here.
8829 (location.hh): Include it after the user prologue, in case the
8830 filename type is defined by the user.
8831 Forward declation location and position before the pre-prologue.
8832 (yyresult_): Rename as...
8833 (yyresult): this, it's a local variable, not an attribute.
8834 * data/Makefile.am (dist_pkgdata_DATA): Adjust.
8835
8836 2005-10-01 Akim Demaille <akim@epita.fr>
8837
8838 * examples/extexi: Restore the #line generation.
8839
8840 2005-09-30 Akim Demaille <akim@epita.fr>,
8841 Alexandre Duret-Lutz <adl@gnu.org>
8842
8843 Move the token type and YYSTYPE in the parser class.
8844 * data/lalr1.cc (stack.hh, location.hh): Include earlier.
8845 (parser::token): New, from the moved free definition of tokens.
8846 (parser::semantic_value): Now a full definition instead of an
8847 indirection to YYSTYPE.
8848 (b4_post_prologue): No longer included in the header file, but
8849 in the implementation file.
8850 * doc/bison.texi (C+ Language Interface): Update.
8851 * src/parse-gram.y: Support unary %define.
8852 * tests/actions.at: Define global_tokens_and_yystype for backward
8853 compatibility until we update the tests.
8854 * tests/calc.at: Idem.
8855 (first_line, first_column, last_line, last_column): Define for lalr1.cc
8856 to simplify the code.
8857
8858 2005-09-29 Paul Eggert <eggert@cs.ucla.edu>
8859
8860 Port to SunOS 4.1.4, which lacks strtoul and strerror.
8861 Ah, the good old days! Problem reported by Peter Klein.
8862 * bootstrap (gnulib_modules): Add strerror, strtoul.
8863 * lib/.cvsignore: Add strerror.c, strtol.c, strtoul.c
8864 * m4/.cvsignore: Add strerror.m4, strtol.m4, strtoul.m4.
8865
8866 2005-09-29 Akim Demaille <akim@epita.fr>
8867
8868 * data/c.m4 (b4_error_verbose_if): New.
8869 * data/lalr1.cc: Use it.
8870 (YYERROR_VERBOSE_IF): Remove.
8871 (yyn_, yylen_, yystate_, yynerrs_, yyerrstatus_): Remove as
8872 parser members, replaced by...
8873 (yyn, yylen, yystate, yynerss, yyerrstatus): these parser::parse
8874 local variables.
8875 (yysyntax_error_): Takes the state number as argument.
8876 (yyreduce_print_): Use the argument yyrule, not the former
8877 attribute yyn_.
8878
8879 2005-09-26 Paul Eggert <eggert@cs.ucla.edu>
8880
8881 * bootstrap (gnulib_modules): Add verify.
8882 * lib/.cvsignore: Add verify.h.
8883 * src/getargs.c: Use ARGMATCH_VERIFY rather than verify.
8884 * src/system.h (verify): Remove.
8885 Include verify.h instead.
8886 * src/tables.c (tables_generate): Use new API for 'verify'.
8887
8888 2005-09-21 Paul Eggert <eggert@cs.ucla.edu>
8889
8890 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Do not use
8891 local variables whose names begin with 'yy'.
8892 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
8893 Trivial changes from Joel E. Denny.
8894
8895 * bootstrap (gnulib_modules): Remove alloca. Bison doesn't need
8896 it itself.
8897 * src/main.c (main) [C_ALLOCA]: Don't flush alloca'ed memory; we
8898 don't use alloca any more.
8899
8900 * data/yacc.c [YYSTACK_USE_ALLOCA && !defined __GNUC__ && ! defined
8901 __BUILTIN_VA_ARG_INCR && ! defined _AIX && ! defined _MSC_VER &&
8902 defined _ALLOCA_H]: Don't include <stdlib.h>; not needed in this case.
8903 * tests/torture.at (Exploding the Stack Size with Alloca): Adjust
8904 to match yacc.c, to test more hosts.
8905
8906 2005-09-20 Paul Eggert <eggert@cs.ucla.edu>
8907
8908 * data/yacc.c (YYSIZE_T): Reindent to make it clearer. This
8909 doesn't affect behavior.
8910 (YYSTACK_ALLOC) [YYSTACK_USE_ALLOCA]: Improve support for
8911 Solaris, AIX, MSC.
8912 (_STDLIB_H): Renamed from YYINCLUDED_STDLIB_H. All uses changed.
8913 This works a bit better with glibc, if user code has already included
8914 stdlib.h.
8915 * doc/bison.texinfo (Bison Parser): Document that users can't
8916 arbitrarily use malloc and free for other purposes. Document
8917 that <alloca.h> and <malloc.h> might be included.
8918 (Table of Symbols): Under YYSTACK_USE_ALLOCA, Don't claim that the
8919 user must declare alloca.
8920
8921 * HACKING (release): Forwarn the Translation Project about
8922 stable releses.
8923
8924 2005-09-20 Akim Demaille <akim@epita.fr>
8925
8926 * data/glr.c: Use b4_token_enums, not b4_token_enums_defines.
8927
8928 2005-09-19 Paul Eggert <eggert@cs.ucla.edu>
8929
8930 * data/yacc.c (YYSIZE_MAXIMUM): New macro.
8931 (YYSTACK_ALLOC_MAXIMUM): Use it.
8932 (yysyntax_error): New function.
8933 (yyparse) [YYERROR_VERBOSE]: Don't leak memory indefinitely if
8934 multiple syntax errors are reported, and alloca is being used.
8935 Instead, reallocate buffers twice as big each time, so that
8936 we waste at most half the allocated memory. Start with a small
8937 (128-byte) buffer that will suffice in most cases anyway.
8938 Use yysyntax_error to do most of the work.
8939
8940 * doc/bison.texinfo (Error Reporting, Table of Symbols):
8941 yynerrs is the number of errors reported, not the number of
8942 errors encountered.
8943
8944 * tests/glr-regression.at (Duplicated user destructor for lookahead):
8945 Mark it as expected to fail.
8946 Cast result of malloc; problem reported by twlevo@xs4all.nl.
8947 * tests/actions.at, tests/calc.at, tests/glr-regression.at:
8948 Don't start user-code symbols with "yy", to avoid name space problems.
8949
8950 2005-09-19 Akim Demaille <akim@epita.fr>
8951
8952 Remove the traits, failed experiment.
8953 It never proved useful, and anyway because of the current
8954 definition, it was not possible to have several specialization of
8955 this traits, making it useless.
8956 * data/lalr1.cc (yy:traits): Remove.
8957 Inline its definitions in the parser class.
8958
8959 2005-09-19 Akim Demaille <akim@epita.fr>
8960
8961 * tests/atlocal.in (LIBS): Pass INTLLIBS to address failures on at
8962 least Mac OSX with a /usr/local install of gettext.
8963
8964 2005-09-19 Akim Demaille <akim@epita.fr>
8965
8966 * data/lalr1.cc (yyparse): Rename yylooka and yyilooka as yychar
8967 and yytoken for similarity with the other skeletons.
8968
8969 2005-09-19 Akim Demaille <akim@epita.fr>
8970
8971 * NEWS, configure.ac: update version number to 2.1a.
8972
8973 2005-09-16 Paul Eggert <eggert@cs.ucla.edu>
8974
8975 * NEWS: Version 2.1.
8976
8977 * NEWS: Remove notice of yytname change, since it was never in an
8978 official release.
8979 * data/glr.c (yydestroyGLRState): Rename local var to avoid shadowing
8980 diagnostic.
8981 * src/output.c (prepare): Likewise.
8982 * data/lalr1.cc (YYERROR_VERBOSE_IF): New macro.
8983 (yysyntax_error_): Use it to avoid GCC warning when YYERROR_VERBOSE
8984 is not defined. This is an awful hack, but it's enough for now.
8985 All callers changed.
8986 * tests/glr-regression-at (make_value): Args are const pointers now,
8987 to avoid GCC warning.
8988 (Duplicated user destructor for lookahead): New test. Currently
8989 skipped. It fails on my host but I'm not sure it'll always fail.
8990
8991 2005-09-16 Akim Demaille <akim@epita.fr>
8992
8993 * src/symtab.h (struct symbol): Declare the printer and destructor
8994 as const, to avoid accidental calls to free.
8995 (symbol_destructor_set, symbol_printer_set): Adjust.
8996 * src/symtab.c: Adjust.
8997
8998 2005-09-16 Akim Demaille <akim@epita.fr>
8999
9000 * data/c.m4 (b4_token_enums): New.
9001 (b4_token_defines): Rename as...
9002 (b4_token_enums_defines): this.
9003 (b4_token_defines): New, output only the #defines.
9004 * data/yacc.c, data/glr.c: Adjust.
9005 * data/lalr1.cc: Use b4_token_enums instead of b4_token_enums_defines.
9006 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Define
9007 as default values.
9008
9009 2005-09-16 Akim Demaille <akim@epita.fr>
9010
9011 * data/lalr1.cc (yylex_): Remove, inline its code.
9012 (yyreport_syntax_error_): Remove, replaced by...
9013 (yysyntax_error_): this which returns a string and leaves to the
9014 caller the call to the users' error function.
9015 (yylooka_, yyilooka_, yylval, yylloc, yyerror_range_, yyval, yyloc):
9016 Move from members of the parser object...
9017 (yylooka, yyilooka, yylval, yylloc, yyerror_range, yyval, yyloc):
9018 to local variables of the parse function.
9019
9020 2005-09-16 Akim Demaille <akim@epita.fr>
9021
9022 * doc/bison.texinfo (Calc++ Parser): Don't promote defining YYEOF
9023 since it's in Bison's name space.
9024
9025 2005-09-15 Paul Eggert <eggert@cs.ucla.edu>
9026
9027 * data/glr.c (yyresolveValue): Add default case to pacify
9028 gcc -Wswitch-default. Problem reported by twlevo@xs4all.nl.
9029
9030 * NEWS: Document when yyparse started to return 2.
9031 * doc/bison.texinfo (Parser Function): Document when yyparse
9032 returns 2.
9033
9034 * data/lalr1.cc: Revert part of previous change, as it's incompatible.
9035 (b4_filename_type): Renamed back from b4_file_name_type. All uses
9036 changed.
9037 (class position): file_name -> filename (reverting). All uses changed.
9038
9039 2005-09-14 Paul Eggert <eggert@cs.ucla.edu>
9040
9041 * examples/calc++/Makefile.am ($(calc_sources_generated)): Don't
9042 do anything if $@ exists. This reverts part of the 2005-07-07
9043 patch.
9044
9045 2005-09-11 Paul Eggert <eggert@cs.ucla.edu>
9046
9047 * Makefile.am (EXTRA_DIST): Do not distribute REFERENCES; it
9048 contains obsolete information and isn't worth distributing as a
9049 separate file anyway.
9050 * data/glr.c [defined YYSETJMP]: Don't include <setjmp.h>.
9051 (YYJMP_BUF, YYSETJMP, YYLONGJMP) [!defined YYSETJMP]: New macros.
9052 All uses of jmp_buf, setjmp, longjmp changed to use these instead.
9053 (yyparse): Abort if user code uses longjmp to throw an unexpected
9054 value.
9055
9056 2005-09-09 Paul Eggert <eggert@cs.ucla.edu>
9057
9058 * data/c.m4 (b4_identification): Define YYBISON_VERSION.
9059 Suggested by twlevo@xs4all.nl.
9060
9061 * data/glr.c (YYCHK1): Do not assume YYE is in range.
9062 This avoids a diagnostic from gcc -Wswitch-enum.
9063 Problem reported by twlevo@xs4all.nl.
9064
9065 * doc/bison.texinfo: Don't use "filename", as per GNU coding
9066 standards. Use "file name" or "file" or "name", depending on
9067 the context.
9068 (Invocation): The output of "bison hack/foo.y" goes to foo.tab.c,
9069 not to hack/foo.tab.c.
9070 (Calc++ Top Level): 2nd arg of main is not const.
9071 * data/glr.c: b4_filename -> b4_file_name.
9072 * data/lalr1.cc: Likewise. Also, b4_filename_type -> b4_file_name_type.
9073 All uses changed.
9074 (class position): filename -> file_name. All uses changed.
9075 * data/yacc.c: b4_filename -> b4_file_name.
9076 * lib/bitset.h: filename -> file_name in local vars.
9077 * lib/bitset_stats.c: Likewise.
9078 * src/files.c: Likewise.
9079 * src/scan-skel.l ("@output ".*\n): Likewise.
9080 * src/files.c (file_name_split): Renamed from filename_split.
9081 * src/muscle_tab.c (muscle_init): Output b4_file_name, not b4_filename.
9082
9083 2005-09-08 Paul Eggert <eggert@cs.ucla.edu>
9084
9085 * lib/.cvsignore: Add pipe-safer.c, stdio--.h, unistd--.h,
9086 to accommodate latest gnulib.
9087
9088 * tests/glr-regression.at (Duplicate representation of merged trees):
9089 Add casts to pacify g++. Problem reported by twlevo@xs4all.nl.
9090
9091 * bootstrap: Add comment as to why the AM_LANGINFO_CODESET hack is
9092 needed.
9093
9094 2005-08-26 Paul Eggert <eggert@cs.ucla.edu>
9095
9096 * data/glr.c (yydestroyGLRState): Renamed from yydestroyStackItem.
9097 All uses changed. Invoke user destructor after an error during a
9098 split parse (trivial change from Joel E. Denny).
9099
9100 * tests/glr-regression.at
9101 (User destructor after an error during a split parse): New test case.
9102 Problem reported by Joel E. Denny in:
9103 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00029.html
9104
9105 2005-08-25 Paul Eggert <eggert@cs.ucla.edu>
9106
9107 * README-cvs: Give URLs for recommended tools.
9108 Mention Gzip version problem, and bootstrapping issues.
9109 Remove troubleshooting section, as it's somewhat obsolete.
9110
9111 * bootstrap (no_cache): New var, to accommodate different wget
9112 variants. Use it instead of '-C off'. Problem reported by
9113 twlevo@xs4all.nl.
9114
9115 * data/glr.c (yydestroyStackItem): New function.
9116 (yyrecoverSyntaxError, yyreturn): Use it to improve quality of
9117 debugging information. Problem reported by Joel E. Denny.
9118
9119 2005-08-25 Akim Demaille <akim@epita.fr>
9120
9121 * tests/local.at (AT_COMPILE_CXX): Pass $LINKS too.
9122
9123 2005-08-24 Paul Eggert <eggert@cs.ucla.edu>
9124
9125 * data/glr.c (yyrecoverSyntaxError, yyreturn):
9126 Don't invoke destructor on unresolved entries.
9127 * tests/glr-regression.at
9128 (User destructor for unresolved GLR semantic value): New test case.
9129 Problem reported by Joel E. Denny in:
9130 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00016.html
9131
9132 2005-08-21 Paul Eggert <eggert@cs.ucla.edu>
9133
9134 * lib/.cvsignore: Remove realloc.c, strncasecmp.c, xstrdup.c.
9135 Add strnlen.c.
9136 * m4/.cvsignore: Remove codeset.m4, gettext.m4, lib-ld.m4,
9137 lib-prefix.m4, po.m4.
9138
9139 * data/glr.c (yyreturn): Use "Cleanup:" rather than "Error:"
9140 in yydestruct diagnostic, since it might not be an error.
9141 Problem reported by Joel Denny near end of
9142 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
9143 * data/lalr1.cc (yyerturn): Likewise.
9144 * data/yacc.c (yyreturn): Likewise.
9145 * tests/calc.at (_AT_CHECK_CALC_ERROR): Adjust to the above change.
9146
9147 * src/files.c: Remove obsolete FIXME comment.
9148
9149 * data/glr.c (YY_SYMBOL_PRINT): Append a newline, for consistency
9150 with the other templates, and to fix bogus run-on messages such
9151 as the one reported at the end of
9152 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
9153 All callers changed to avoid the newline.
9154 (yyprocessOneStack): Output two lines rather than one, to accommodate
9155 the above change. This changes the debug output format slightly.
9156
9157 * data/glr.c (yyresolveValue): Fix redundant parse tree problem
9158 reported by Joel E. Denny in
9159 <http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00004.html>
9160 (trivial change).
9161 * tests/glr-regression.at (Duplicate representation of merged trees):
9162 New test, from Joel E. Denny in:
9163 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00013.html>.
9164 * THANKS: Add Joel E. Denny.
9165
9166 * configure.ac (AC_INIT): Bump to 2.0c.
9167
9168 2005-07-24 Paul Eggert <eggert@cs.ucla.edu>
9169
9170 * NEWS: Version 2.0b.
9171
9172 * Makefile.am (SUBDIRS): Put examples before tests, so that
9173 "make check" doesn't finish with "All 1 tests passed".
9174
9175 * tests/regression.at (Token definitions): Don't rely on
9176 AT_PARSER_CHECK for data that contains backslashes. It currently
9177 uses 'echo', and 'echo' isn't portable if its argument contains
9178 backslashes. Problem found on OpenBSD 3.4. Also, do not assume
9179 that the byte '\0xff' is not printable in the C locale; it is,
9180 under OpenBSD 3.4 (!). Luckily, '\0x80' through '\0x9e' are
9181 not printable, so use '\0x81' to test.
9182
9183 * data/glr.c (YYOPTIONAL_LOC): Define even if it's not a recent
9184 version of GCC, since the macro is used with non-GCC compilers.
9185
9186 Fix core dump reported by Pablo De Napoli in
9187 <http://lists.gnu.org/archive/html/bug-bison/2005-07/msg00053.html>.
9188 * tests/regression.at (Invalid inputs with {}): New test.
9189 * src/parse-gram.y (token_name): Translate type before using
9190 it as an index.
9191
9192 * data/glr.c (ATTRIBUTE_UNUSED): Remove, since it infringes on
9193 the user's name space. All uses changed to __attribute__
9194 ((__unused__)).
9195 (yyFail, yyMemoryExhausted, yyreportAmbiguity):
9196 Add __attribute__ ((__noreturn__)).
9197
9198 * etc/clcommit: Remove. We weren't using it, and it failed
9199 "make maintainer-distcheck".
9200 * Makefile.maint: Merge from coreutils.
9201 (CVS_LIST, CVS_LIST_EXCEPT): New macros.
9202 (syntax-check-rules): Change list of rules as described below.
9203 (sc_cast_of_alloca_return_value, sc_dd_max_sym_length):
9204 (sc_file_system, sc_obsolete_symbols, sc_prohibit_atoi_atof):
9205 (sc_prohibit_jm_in_m4, sc_root_tests, sc_tight_scope):
9206 (sc_trailing_space): New rules.
9207 (sc_xalloc_h_in_src): Remove.
9208 (sc_cast_of_argument_to_free, sc_cast_of_x_alloc_return_value):
9209 (sc_space_tab, sc_error_exit_success, sc_changelog):
9210 (sc_system_h_headers, sc_sun_os_names, sc_unmarked_diagnostics):
9211 (makefile-check, po-check, author_mark_check):
9212 (makefile_path_separator_check, copyright-check):
9213 Use grep -n, to make it easier to find violations.
9214 Use CVS_LIST and CVS_LIST_EXCEPT.
9215 (header_regexp, h_re): Remove.
9216 (dd_c): New macro.
9217 (sc_dd_max_sym_length, .re-list, news-date-check): New rules.
9218 (my-distcheck): Use more-modern GCC flags.
9219 (signatures, %.asc): Remove.
9220 (rel-files, announcement): Remove signatures.
9221 Restore old updating code, even though we don't use it, so
9222 that we're the same as coreutils.
9223 (alpha, beta, major): Depend on news-date-check.
9224 Make the upload commands.
9225
9226 * data/c.m4, data/lalr1.cc, data/yacc.c: Normalize white space.
9227 * lib/abitset.h, lib/bbitset.h, lib/bitset.h: Likewise.
9228 * lib/bitset_stats.c, lib/ebitset.h, lib/lbitset.c: Likewise.
9229 * lib/libitset.h, lib/timevar.c, lib/vbitset.h: Likewise.
9230 * src/Makefile.am, src/gram.c, src/muscle_tab.h: Likewise.
9231 * src/parse-gram.y, src/system.h, src/tables.c, src/vcg.c: Likewise.
9232 * src/vcg_defaults.h, tests/cxx-type.at, tests/existing.at: Likewise.
9233 * tests/sets.at: Likewise.
9234
9235 * data/m4sugar/m4sugar.m4: Sync from Autoconf, except that
9236 we comment out the Autoconf version number.
9237 * doc/bison.texinfo (Calc++ Scanner): Don't use atoi, as
9238 it's error-prone and "make maintainer-distcheck" rejects it.
9239
9240 * lib/subpipe.c: Include <fcntl.h> without checking for HAVE_FCNTL_H.
9241 Indent calls to "error" to pacify "make maintainer-distcheck",
9242 when the calls are not intended to be translated.
9243 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't check for fcntl.h.
9244
9245 * src/Makefile.am (DEFS): Use +=, to pacify
9246 "make maintainer-distcheck".
9247 (bison_SOURCES): Add scan-skel.h.
9248 (sc_tight_scope): New rule, from coreutils.
9249
9250 * src/files.c (src_extension, header_extension):
9251 Now static, not extern.
9252 * src/getargs.c (short_options): Likewise.
9253 * src/muscle_tab.c (muscle_table): Likewise.
9254 * src/parse-gram.y (current_class, current_type, current_prec):
9255 Likewise.
9256 * src/reader.c (grammar_end, previous_rule_end): Likewise.
9257 * src/getargs.h: Redo comments to pacify "make maintainer-distcheck".
9258 * src/main.c (main): Cast bindtextdomain and textdomain calls to
9259 void, to avoid warning when NLS is disabled.
9260 * src/output.c: Include scan-skel.h.
9261 (scan_skel): Remove decl, since scan-skel.h does this.
9262 (output_skeleton):
9263 Indent calls to "error" to pacify "make maintainer-distcheck".
9264 * src/print_graph.c: Don't include <obstack.h>, as system.h does this.
9265 * src/reader.h (gram_end, gram_lineno): New decls to pacify
9266 "make maintainer-distcheck".
9267 * src/scan-skel.l (skel_lex, skel_get_lineno, skel_get_in):
9268 (skel_get_out, skel_get_leng, skel_get_text, skel_set_lineno):
9269 (skel_set_in, skel_set_out, skel_get_debug, skel_set_debug):
9270 (skel_lex_destroy, scan_skel): Move these decls to...
9271 * src/scan-skel.h: New file.
9272 * src/uniqstr.c (uniqstr_assert):
9273 Indent calls to "error" to pacify "make maintainer-distcheck".
9274
9275 * tests/Makefile.am ($(srcdir)/package.m4): Use $(VAR),
9276 not @VAR@.
9277
9278 * tests/torture.at: Revamp to avoid misuse of atoi that
9279 "make maintainer-distcheck" complained about.
9280
9281 * examples/extexi (message): Don't print a message more than once,
9282 and omit line-number decoration that makes Emacs compile think
9283 that informative messages are worth worrying about.
9284
9285 2005-07-22 Paul Eggert <eggert@cs.ucla.edu>
9286
9287 * configure.ac: Update version number.
9288
9289 * Makefile.am (SUBDIRS): Add examples; somehow this got removed
9290 accidentally.
9291 * examples/calc++/calc++-parser.yy: Remove from CVS, as it's
9292 autogenerated by the maintainer.
9293 * examples/calc++/.cvsignore: Add *.yy.
9294
9295 * lib/bitset.c (bitset_alloc): Don't cast xcalloc result.
9296 * lib/bitset_stats.c (bitset_stats_init): Likewise.
9297 * lib/bitsetv.c (bitsetv_alloc): Likewise.
9298
9299 * po/POTFILES.in: Add lib/xalloc-die.c; remove lib/xmalloc.c.
9300
9301 * src/relation.c (relation_transpose): Rewrite to avoid bogus complaint
9302 from maintainer-distcheck about casting the argument of 'free'.
9303
9304 * NEWS: Mention recent yytname changes.
9305 * THANKS: Add Anthony Heading, twlevo@xs4all.nl.
9306
9307 * bootstrap: For translations that have not yet been upgraded to
9308 the new runtime-po domain, prime the pump by extracting the
9309 relevant strings from the obsolete translations. This code can be
9310 removed once the bison-runtime domain has been translated by each
9311 team.
9312
9313 * src/scan-gram.l (<SC_PRE_CODE>.): Don't double-quote token names,
9314 now that token names are already quoted.
9315
9316 Fix problem reported by Anthony Heading.
9317 * data/glr.c (YYTOKEN_TABLE): New macro.
9318 (yytname): Define if YYTOKEN_TABLE.
9319 * data/yacc.c (YYTOKEN_TABLE, yytname): Likewise.
9320 * data/lalr1.cc (YYTOKEN_TABLE, yytname_): Likewise.
9321 (YYERROR_VERBOSE): Define the same way the other skeletons do.
9322 * src/output.c (prepare_symbols): Output token_table_flag.
9323
9324 2005-07-21 Paul Eggert <eggert@cs.ucla.edu>
9325
9326 * data/glr.c (yyinitGLRStack, yyreturn): Don't call malloc
9327 again if the first call fails.
9328
9329 * data/glr.c (yytnamerr): New function.
9330 (yyreportSyntaxError): Use it to dequote most string literals.
9331 * data/lalr1.c (yytname_): Renamed from yyname_, for compatibility
9332 with other skeletons. All uses changed.
9333 (yytnameerr_): New function.
9334 (yyreport_syntax_error): Use it to dequote most string literals.
9335 * data/yacc.c (yytnamerr): New function.
9336 (yyerrlab): Use it to decode most string literals.
9337 * doc/bison.texinfo (Decl Summary, Calling Convention):
9338 Clarify quoting convention of yytname.
9339 * src/output.c (prepare_symbols): Quote all names. This undoes
9340 the 2005-04-17 change, which is now accomplished (mostly) via
9341 changes in the parsers as described above.
9342 * tests/regression.at (Token definitions, Web2c Actions):
9343 Undo most 2005-04-17 change here, too.
9344
9345 2005-07-20 Paul Eggert <eggert@cs.ucla.edu>
9346
9347 Fix more problems reported by twlevo@xs4all.nl.
9348 * tests/cxx-type.at: Don't pipe output of ./types through sed to
9349 remove trailing spaces. This loses the exit status of ./types,
9350 and isn't needed since ./types shouldn't be emitting trailing
9351 spaces.
9352 * data/glr.c (yyreturn): Don't pop stack if yyinitStateSet failed,
9353 as the stack isn't valid in that case.
9354
9355 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
9356 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
9357 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
9358 Add declarations to pacify "gcc -Wmissing-prototypes" when flex 2.5.31
9359 is used.
9360 * src/scan-skel.l (skel_get_lineno, skel_get_in, skel_get_out):
9361 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
9362 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
9363 Likewise.
9364
9365 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Work even with
9366 overly-picky compilers that reject 'char *foo = "bar";'.
9367
9368 * src/symtab.c (SYMBOL_ATTR_PRINT, symbol_print): Direct output
9369 to FILE * parameter, not to stderr. This fixes a typo introduced
9370 in the 2005-07-12 change.
9371
9372 * lib/subpipe.c (create_subpipe): Rewrite slightly to avoid
9373 warnings from GCC 4.
9374
9375 * data/glr.c (yyexpandGLRStack, yyaddDeferredAction, yyexpandGLRStack):
9376 (yyglrShiftDefer, yysplitStack):
9377 Remove unused parameters b4_pure_formals. All uses changed.
9378 (yyglrShift): Remove unused parameters b4_user_formals.
9379 All uses changed.
9380 (yyglrReduce): Removed unused parameter yylocp. All uses changed.
9381
9382 2005-07-18 Paul Eggert <eggert@cs.ucla.edu>
9383
9384 Destructor cleanups and regularization among the three skeletons.
9385 * NEWS: Document the behavior changes.
9386 * data/glr.c (yyrecoverSyntaxError): Don't bother to pop the
9387 stack before failing, as the cleanup code will do it for us now.
9388 * data/lalr1.cc (yyerrlab): Likewise.
9389 * data/glr.c (yyparse): Pop everything off the stack before
9390 freeing it, so that destructors get called properly.
9391 * data/lalr1.cc (yyreturn): Likewise.
9392 * data/yacc.c (yyreturn): Pop and destroy the start symbol, too.
9393 This is more consistent.
9394 * doc/bison.texinfo (Destructor Decl): Mention more reasons
9395 why destructors might be called. 1.875 -> 2.1.
9396 (Destructor Decl, Decl Summary, Table of Symbols):
9397 Some English-language cleanups for %destructor.
9398 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
9399 Add output line for destructor of start symbol.
9400 * tests/calc.at (AT_CHECK_CALC): Add one to line counts,
9401 because of that same extra output line.
9402
9403 * NEWS: Document minor wording changes in diagnostics of
9404 Bison-generated parsers.
9405 * data/glr.c (yyMemoryExhausted): Renamed from yyStackOverflow.
9406 Remove unused formals. All uses changed.
9407 (yyreportAmbiguity): "ambiguity detected" -> "syntax is ambiguous".
9408 (yyparse): Rename yyoverflowlab to yyexhaustedlab.
9409 * data/yacc.c (yyparse): "parser stack overflow" -> "memory exhausted".
9410 Rename yyoverflowab to yyexhaustedlab.
9411 When memory exhaustion occurs during syntax-error reporting,
9412 report it separately rather than in a single diagnostic; this
9413 eases translation.
9414 * doc/bison.texinfo (Memory Management): Renamed from Stack Overflow.
9415 (Memory Exhausted): Renamed from Parser Stack Overflow.
9416 Revamp wording slightly to prefer "memory exhaustion".
9417 * tests/actions.at: "parser stack overflow" -> "memory exhausted".
9418
9419 * data/c.m4 (b4_yysymprint_generate): Use YYFPRINTF, not fprintf.
9420
9421 Add i18n support to the GLR skeleton. Partially fix the C++
9422 skeleton; a C++ expert needs to finish this. Remove debugging
9423 msgids; there's little point to having them translated, since they
9424 can be understood only by someone who can read the
9425 (English-language) source code.
9426
9427 Generate runtime-po/bison-runtime.pot automatically, so that we
9428 don't have to worry about garbage getting in that file. We'll
9429 make sure after the next official release that old msgids don't
9430 get lost. See
9431 <http://lists.gnu.org/archive/html/bison-patches/2005-07/msg00119.html>.
9432
9433 * runtime-po/Makefile.in.in, runtime-po/bison-runtime.pot: Remove.
9434 Now auto-generated.
9435 * PACKAGING: Don't claim that Gawk, GCC, Perl use this method yet.
9436 Fix typos in explanations of the runtime file.
9437 * bootstrap: Change gettext keyword from YYI18N to YY_.
9438 Use standard Makefile.in.in in runtime-po, since we'll arrange
9439 for backward-compatible bison-runtime.po files in a different way.
9440 * data/glr.c (YY_): New macro, from yacc.c.
9441 (yyuserAction, yyreportAmbiguity, yyreportSyntaxError, yyparse):
9442 Translate messages intended for users.
9443 (yyreportSyntaxError): Change "virtual memory" to "memory" to match
9444 the wording in the other skeletons. We don't know that the memory
9445 is virtual.
9446 * data/lalr1.cc (YY_): Renamed from _. All uses changed.
9447 Use same method that yacc.c uses.
9448 Don't translate debugging messages.
9449 (yy::yyreport_syntax_error): Put in a FIXME for the i18n stuff;
9450 it doesn't work (yet), and requires C++ expertise to fix.
9451 * data/yacc.c (YY_): Renamed from YY18N. All uses changed.
9452 Move defn to a more logical place, to be consistent with other
9453 skeletons.
9454 Don't translate debugging messages.
9455 Don't assume line numbers fit in unsigned int; use unsigned long fmts.
9456 * doc/bison.texinfo: Mention <libintl.h>. Change glibc cross reference
9457 to gettext cross reference. Add indexing terms. Mention YYENABLE_NLS.
9458 * runtime-po/POTFILES.in: Add data/glr.c, data/lalr1.cc.
9459
9460 Fix yyerror / yylex test glitches noted by twlevo@xs4all.nl.
9461 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Have yyerror return
9462 void, not int.
9463 * tests/glr-regression.at (Badly Collapsed GLR States):
9464 Likewise.
9465 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
9466 yylex should return 0 at EOF rather than aborting.
9467
9468 Improve tests for stack overflow in GLR parser.
9469 Problem reported by twlevo@xs4all.nl.
9470 * data/glr.c (struct yyGLRStack): Remove yyerrflag member.
9471 All uses removed.
9472 (yyStackOverflow): Just longjmp, but with value 2 so that caller
9473 can handle the problem.
9474 (YYCHK1): Use goto (a la yacc.c) rather than setting a flag.
9475 (yyparse): New local variable yyresult to record the result.
9476 Use result of setjmp to set it, rather than storing itinto
9477 struct.
9478 (yyDone): Remove label.
9479 (yyacceptlab, yyabortlab, yyoverflowlab, yyreturn): New labels,
9480 to mimic yacc.c. Do not discard lookahead if it's EOF (possible
9481 if YYABORT is used).
9482 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Exit with
9483 yyparse status; put status > 1 into diagnostic.
9484 Check that status==2 works.
9485 * tests/calc.at, tests/cxx-type.at, tests/glr-regression.at:
9486 Use exit status 3 for failure to open (which shouldn't happen).
9487
9488 2005-07-17 Paul Eggert <eggert@cs.ucla.edu>
9489
9490 * tests/conflicts.at (%nonassoc and eof): Don't exit with status
9491 1 on syntax error; just let yyparse do its thing.
9492 * tests/glr-regression.at (Badly Collapsed GLR States): Likewise.
9493 * tests/torture.at (AT_DATA_STACK_TORTURE): Likewise.
9494 (Exploding the Stack Size with Alloca):
9495 (Exploding the Stack Size with Malloc):
9496 Expect exit status 2, not 1, since the parser is supposed to blow
9497 its stack. Problem reported by twlevo@xs4all.nl.
9498
9499 * data/glr.c (yyparse): Don't assume that the initial calls
9500 to YYMALLOC succeed; in that case, yyparse incorrectly returned 0.
9501 Print a stack-overflow message and fail instead.
9502 Initialize the line-number information before creating the stack,
9503 so that the stack-overflow message can report line zero safely.
9504
9505 2005-07-14 Paul Eggert <eggert@cs.ucla.edu>
9506
9507 Fix problems reported by twlevo@xs4all.nl.
9508 * data/glr.c (YYSTACKEXPANDABLE): Don't define if already defined.
9509 (yyuserMerge): Provide a default case if b4_mergers is empty.
9510 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Define YYSTACKEXPANDABLE.
9511 * tests/glr-regression.at
9512 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
9513 Add casts to pacify C++ compilers.
9514 * tests/glr-regression.at (Improper merging of GLR delayed action
9515 sets): Declare yylex before using it.
9516 * tests/Makefile.am (maintainer-check-g++): Fix a stray
9517 $(GXX) that escaped the renaming of GXX to CXX. Remove bogus
9518 test for valgrind; valgrind is independent of g++.
9519 (maintainer-check-posix): Add _POSIX2_VERSION=200112, to check
9520 for compatibility with POSIX 1003.1-2001 (if running coreutils).
9521 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Port to stricter C++.
9522 Use a destructor, so that we can expand the stack. Change
9523 YYSTYPE to char * so that we can free it. Cast result of malloc.
9524
9525 2005-07-13 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
9526
9527 * data/glr.c (yyuserAction): Fix uninitialized variable that caused
9528 a valgrind failure. Problem reported by twlevo@xs4all.nl.
9529
9530 2005-07-13 Paul Eggert <eggert@cs.ucla.edu>
9531
9532 * PACKAGING: New file, suggested by Bruno Haible and taken from
9533 similar wording in gettext's PACKAGING file.
9534 * NEWS: Mention PACKAGING.
9535 * Makefile.am (EXTRA_DIST): Add PACKAGING.
9536
9537 2005-07-12 Paul Eggert <eggert@cs.ucla.edu>
9538
9539 * NEWS: Document recent i18n improvements.
9540 * bootstrap: Get runtime translations into runtime-po.
9541 Create runtime-po files automatically, if possible.
9542 * configure.ac: Invoke BISON_I18N, so that we eat our own dog food.
9543 * data/yacc.c: Rewrite inclusion of <libintl.h> so that ENABLE_NLS
9544 does not infringe on the user's name space.
9545 (YYENABLE_NLS): Renamed from ENABLE_BISON_NLS.
9546 * doc/bison.texinfo (Internationalization): Revamp the English
9547 and Texinfo syntax a bit, to try to make it clearer.
9548 (Bison Options, Option Cross Key): Mention --print-localedir.
9549 * m4/bison-i18n.m4 (BISON_I18N): Rename ENABLE_BISON_NLS to
9550 YYENABLE_NLS. Quote a bit more.
9551 * runtime-po/.cvsignore: New file.
9552 * runtime-po/Makefile.in.in (mostlyclean): Remove *.old.pot.
9553 * runtime-po/Rules-quot: Remove; now created by bootstrap.
9554 * runtime-po/quot.sed: Likewise.
9555 * runtime-po/boldquot.sed: Likewise.
9556 * runtime-po/en@quot.header: Likewise.
9557 * runtime-po/en@boldquot.header: Likewise.
9558 * runtime-po/insert-header.sin: Likewise.
9559 * runtime-po/remove-potcdate.sin: Likewise.
9560 * runtime-po/Makevars: Likewise.
9561 * runtime-po/LINGUAS: Likewise.
9562 * runtime-po/de.po: Likewise; we will rely on the translation project
9563 to maintain this, so "bootstrap" should get it.
9564 * src/getarg.c (PRINT_LOCALEDIR_OPTION): Let the C compiler determine
9565 its value.
9566 * src/main.c (main): Bind the bison-runtime domain, too.
9567
9568 2005-07-12 Bruno Haible <bruno@clisp.org>
9569
9570 * data/yacc.c: Include <libintl.h> when NLS is enabled.
9571 (YYI18N): Renamed from _. Use dgettext when NLS is enabled.
9572 * po/POTFILES.in: Remove autogenerated file src/parse-gram.c.
9573 * runtime-po: New directory.
9574 * runtime-po/Makefile.in.in: New file, copied from po/, with modified
9575 $(DOMAIN).pot-update rule, so that old messages are never dropped.
9576 * runtime-po/Rules-quot: New file, copied from po/.
9577 * runtime-po/quot.sed: Likewise.
9578 * runtime-po/boldquot.sed: Likewise.
9579 * runtime-po/en@quot.header: Likewise.
9580 * runtime-po/en@boldquot.header: Likewise.
9581 * runtime-po/insert-header.sin: Likewise.
9582 * runtime-po/remove-potcdate.sin: Likewise.
9583 * runtime-po/Makevars: New file.
9584 * runtime-po/POTFILES.in: New file.
9585 * runtime-po/LINGUAS: New file.
9586 * runtime-po/bison-runtime.pot: New file.
9587 * runtime-po/de.po: New file.
9588 * m4/bison.m4: New file.
9589 * Makefile.am (SUBDIRS): Add runtime-po.
9590 (aclocaldir, aclocal_DATA): New variables.
9591 * configure.ac: Add AC_CONFIG_FILES of runtime-po/Makefile.in.
9592 Define aclocaldir.
9593 * src/getargs.c (usage): Document --print-localedir option.
9594 (PRINT_LOCALEDIR_OPTION): New enum item.
9595 (long_options): Add --print-localedir option.
9596 (getargs): Handle --print-localedir option.
9597 * doc/bison.texinfo (Bison Parser): Remove paragraph about _().
9598 (Internationalization): New section.
9599
9600 2005-07-12 Akim Demaille <akim@epita.fr>
9601
9602 * src/symtab.h, src/symtab.c (symbol_print): Swap the arguments,
9603 for consistency with the rest of the code.
9604 * src/symlist.h, src/symlist.c (symbol_list_print): Ditto.
9605 Add separators.
9606
9607 2005-07-12 Akim Demaille <akim@epita.fr>
9608
9609 * src/parse-gram.y: Use %printer instead of YYPRINT.
9610
9611 2005-07-12 Akim Demaille <akim@epita.fr>
9612
9613 * src/symtab.h, src/symtab.c (symbol_print): New.
9614 * src/symlist.h, src/symlist.c (symbol_list_print): New.
9615 * src/symlist.c (symbol_list_n_type_name_get): Report the culprit.
9616
9617 2005-07-12 Akim Demaille <akim@epita.fr>
9618
9619 * data/glr.c (b4_syncline): Fix (swap) the definitions of
9620 b4_at_dollar and b4_dollar_dollar.
9621
9622 2005-07-11 Paul Eggert <eggert@cs.ucla.edu>
9623
9624 * doc/bison.texinfo (Mystery Conflicts): Add reference to DeRemer
9625 and Pennello's paper.
9626
9627 2005-07-09 Paul Eggert <eggert@cs.ucla.edu>
9628
9629 * data/yacc.c (yyparse): Undo previous patch. Instead,
9630 set yylsp[0] and yyvsp[0] only if the initial action
9631 sets yylloc and yylval, respectively.
9632
9633 * data/yacc.c (yyparse): In the initial action, set
9634 yylsp[0] and yyvsp[0] rather than yylloc and yylval.
9635 This avoids the use of undefined variables if the initial
9636 action does not set yylloc and/or yylval.
9637
9638 2005-07-07 Paul Eggert <eggert@cs.ucla.edu>
9639
9640 * examples/calc++/calc++-driver.cc, examples/calc++/calc++-driver.hh:
9641 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc:
9642 Remove from CVS. These files are automatically generated.
9643 * examples/extexi: Clarify that this file is now part of Bison,
9644 not GNU M4, and that it works with any POSIX-compatible Awk.
9645 * examples/calc++/Makefile.am (run_extexi): Remove; not used.
9646 ($(calc_extracted)): Renamed from $(calc_sources_extracted),
9647 so that we also get calc++-parser.yy. Geneate it.
9648 Use $(AWK), not gawk, since any conforming Awk will do.
9649 Put comment before action, since older 'make' can't handle comment
9650 in action.
9651 $(BUILT_SOURCES): List all built sources, not just some of them.
9652 $(MAINTAINERCLEANFILES): Remove *.stamp, and all built sources.
9653 $($(srcdir)/calc++-parser.stamp): Work even if POSIXLY_CORRECT.
9654 $($(calc_sources_generated)): Remove unnecessary test for existence
9655 of target. (This had a shell syntax error anyway; a stray "x".)
9656 (calc_extracted): List $(srcdir)/calc++-parser.yy, not
9657 calc++-parser.yy.
9658 * examples/.cvsignore, examples/calc++/.cvsignore: New files.
9659
9660 * bootstrap (gnulib_modules): Add gettext, now that it's no longer
9661 implied by the other modules.
9662
9663 2005-07-06 Akim Demaille <akim@epita.fr>
9664
9665 Bind examples/calc++ to the package.
9666 * examples/calc++/Makefile: Remove, replaced by...
9667 * examples/calc++/Makefile.am: ... this new file.
9668 * examples/calc++/test: Remove input.
9669 * examples/calc++/compile: Remove.
9670 * examples/Makefile.am: New.
9671 * configure.ac, Makefile.am: Adjust.
9672 * doc/Makefile.am (clean-local): New, for more recent texi2dvis.
9673
9674 2005-07-05 Paul Eggert <eggert@cs.ucla.edu>
9675
9676 * data/glr.c (yyFail): Drastically simplify; since the format argument
9677 never had any % directives, we can simply pass it to yyerror.
9678 (yyparse): Use "t a; a=b;" rather than "t a = b;" when a will
9679 be modified later, as that is the usual style in glr.c.
9680 Problems reported by Paul Hilfinger.
9681
9682 Rewrite GLR parser to catch more buffer overrun, storage exhaustion,
9683 and size overflow errors.
9684 * data/glr.c: Include <stdio.h> etc. after user prolog, not before,
9685 in case the user prolog sets feature-test macros like _GNU_SOURCE.
9686 (YYSIZEMAX): New macro.
9687 (yystpcpy): New function, taken from yacc.c.
9688 (struct yyGLRStack.yyspaceLeft): Now size_t, not int.
9689 (yyinitGLRStack, yyfreeGLRstack): Remove unnecessary forward decls,
9690 so that we don't have to maintain their signatures.
9691 (yyFail): Check for buffer overflow, by using vsnprintf rather
9692 than vsprintf. Allocate a bigger buffer if possible.
9693 Report an error if buffer allocation fails.
9694 (yyStackOverflow): New function.
9695 (yyinitStateSet, yyinitGLRStack): Return a boolean indicating whether
9696 the initialization was successful. It might fail if storage was
9697 exhausted.
9698 (yyexpandGLRStack): Add more checks for storage allocation failure.
9699 Use yyStackOverflow to report failures.
9700 (yymarkStackDeleted, yyglrShift, yyglrShiftDefer, yydoAction):
9701 (yysplitStack, yyprocessOneStack, yyparse, yypstack):
9702 Don't assume stack number fits in int.
9703 (yysplitStack): Check for storage allocation failure.
9704 (yysplitStack, yyprocessOneStack): Add pure_formals, so that we
9705 can print diagnostics on storage allocation failure. All callers
9706 changed.
9707 (yyresolveValue): Use yybool for boolean.
9708 (yyreportSyntaxError): Check for size-calculation overflow.
9709 This code is taken from yacc.c.
9710 (yyparse): Check for storage allocation errors when allocating
9711 the initial stack.
9712
9713 2005-07-05 Akim Demaille <akim@epita.fr>
9714
9715 Extract calc++ from the documentation.
9716 * doc/bison.texinfo (Calc++): Add the extraction marks.
9717 * examples/extexi: New, from the aborted GNU Programming 2E.
9718 Separate the different paragraph of a file with empty lines.
9719 * examples/Makefile: Use it to extract the whole calc++ example.
9720
9721 2005-06-24 Akim Demaille <akim@epita.fr>
9722
9723 * doc/bison.texinfo (C++ Parser Interface): Use defcv to define
9724 class typedefs.
9725
9726 2005-06-22 Akim Demaille <akim@epita.fr>
9727
9728 * doc/bison.texinfo (C++ Language Interface): First stab.
9729 (C++ Parsers): Remove.
9730
9731 2005-06-22 Akim Demaille <akim@epita.fr>
9732
9733 * data/lalr1.cc (yylex_): Honor %lex-param.
9734
9735 2005-06-22 Akim Demaille <akim@epita.fr>
9736
9737 Start a set of simple examples.
9738 * examples/calc++/Makefile, examples/calc++/calc++-driver.cc,
9739 * examples/calc++/calc++-driver.hh,
9740 * examples/calc++/calc++-parser.yy,
9741 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc,
9742 * examples/calc++/compile, examples/calc++/test: New.
9743
9744 2005-06-09 Paul Eggert <eggert@cs.ucla.edu>
9745
9746 * data/yacc.c (malloc, free) [defined __cplusplus]: Wrap inside
9747 extern "C" {}. This fixes a problem reported by Paul Hilfinger,
9748 which stems from the 2005-05-27 patch.
9749
9750 2005-06-06 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
9751
9752 * data/glr.c: Modify treatment of unused parameters to permit use
9753 of g++ (which doesn't allow __attribute__ ((unused)) for parameters).
9754
9755 2005-05-30 Paul Eggert <eggert@cs.ucla.edu>
9756
9757 Fix infringement on user name space reported by Janos Zoltan Szabo.
9758 * data/yacc.c (yyparse): strlen -> yystrlen.
9759
9760 2005-05-30 Akim Demaille <akim@epita.fr>
9761
9762 * data/lalr1.cc (_): New.
9763 Translate the various messages.
9764
9765 2005-05-27 Paul Eggert <eggert@cs.ucla.edu>
9766
9767 Fix infringement on user name space reported by Bruno Haible.
9768 * data/yacc.c (YYSIZE_T): Define first, so that later decls can use it.
9769 Prefer GCC's __SIZE_TYPE__ if available, so that we don't infringe on
9770 the user's name space.
9771 (alloca): Include <stdlib.h> to get it, if it's not built in.
9772 (YYMALLOC, YYFREE): Define only if needed.
9773 (malloc, free): Declare, but only if needed, as this infringes on
9774 the user name space.
9775
9776 2005-05-25 Paul Eggert <eggert@cs.ucla.edu>
9777
9778 Fix BeOS, FreeBSD, MacOS porting problems reported by Bruno Haible.
9779 * lib/bitset.c (bitset_print): Don't assume size_t can be printed
9780 with %d format.
9781 * lib/ebitset.c (min, max): Undef before defining.
9782 * lib/vbitset.c (min, max): Likewise.
9783 * lib/subpipe.c (create_subpipe): Save local variables in case
9784 vfork clobbers them.
9785
9786 2005-05-24 Bruno Haible <bruno@clisp.org>
9787
9788 * tests/synclines.at (AT_SYNCLINES_COMPILE): Add support for the
9789 error message syntax used by gcc-4.0.
9790
9791 2005-05-23 Paul Eggert <eggert@cs.ucla.edu>
9792
9793 * README: Mention m4 1.4.3. Remove obsolete advice about
9794 Sun Forte Developer 6 update 2, VMS, and MS-DOS.
9795
9796 * bootstrap: Remove workaround for problem I encountered with
9797 gettext 0.14.1; it seems to be fixed now.
9798
9799 2005-05-22 Paul Eggert <eggert@cs.ucla.edu>
9800
9801 * NEWS: Version 2.0a.
9802
9803 * src/files.c: Include "stdio-safer.h"; this fixes a typo in
9804 the previous change.
9805
9806 Various maintainer cleanups.
9807 * .cvsignore: Add a.exe, a.out, b.out,, conf[0-9]*, confdefs*,
9808 conftest*, for benefit of CVS commands run at the same time as
9809 "configure". Add build-aux, since "bootstrap" now creates it and
9810 its subfiles.
9811 * Makefile.cfg (move_if_change): Remove.
9812 * Makefile.maint: Remove the update stuff; we now use "bootstrap".
9813 (ftp-gnu, www-gnu, move_if_change, local_updates, update):
9814 (po_repo, do-po-update, po-update, wget_files, get-targets):
9815 (config.guess-url_prefix, config.sub-url_prefix):
9816 (ansi2knr.c-url_prefix, texinfo.tex-url_prefix):
9817 (standards.texi-url_prefix, make-stds.texi-url_prefix, taget, url):
9818 ($(get-targets), cvs-files, automake_repo, wget-update, cvs-update):
9819 Remove.
9820 * configure.ac (AC_CONFIG_AUX_DIR): Change from config to build-aux;
9821 this is now the recommended name.
9822 * config/.cvsignore: Remove config.guess, config.rpath, config.sub,
9823 depcomp, install-sh, mdate-sh, missing, mkinstalldirs, texinfo.tex,
9824 ylwrap. These files now go into build-aux.
9825 * config/move-if-change: Remove.
9826 * config/prev-version.txt: Bump from 1.75 to 2.0.
9827
9828 * bootstrap: Add stdio-safer, unistd-safer modules.
9829 Remove m4/glibc2.m4 (introduced by latest gnulib, but
9830 we don't need it).
9831 * lib/.cvsignore: Add dup-safer.c, fd-safer.c,
9832 fopen-safer.c, stdio-safer.h, unistd-safer.h.
9833 * lib/subpipe.c: Include "unistd-safer.h".
9834 (create_subpipe): Make sure all the newly-created
9835 file descriptors are > 2, so that diagnostics don't
9836 get sent down them (which might cause Bison to hang, in theory).
9837 * m4/.cvsignore: Add stdio-safer.m4, unistd-safer.m4.
9838 * src/files.c (xfopen): Use fopen_safer, not fopen.
9839
9840 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Port
9841 yesterday's yacc.c fix.
9842
9843 2005-05-21 Paul Eggert <eggert@cs.ucla.edu>
9844
9845 * data/glr.c, data/lalr1.cc: Update copyright date.
9846
9847 Fix a destructor bug reported by Wolfgang Spraul in
9848 <http://lists.gnu.org/archive/html/bug-bison/2005-05/msg00042.html>.
9849 * data/yacc.c (yyabortlab): Don't call destructor, and
9850 don't set yychar to EMPTY.
9851 (yyoverflowlab): Don't call destructor.
9852 (yyreturn): Call destructor, if yychar is neither YYEOF nor YYEMPTY.
9853 * tests/calc.at (AT_CHECK_CALC): Expect one fewer output lines,
9854 since we no longer output the message "discarding lookahead token
9855 end of input ()".
9856
9857 2005-05-20 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
9858
9859 * data/glr.c (YY_SYMBOL_PRINT): Don't print newline at end to
9860 fix a small glitch in debugging output.
9861 (yyprocessOneStack, yyrecoverSyntaxError, yyparse): Print newline
9862 after YY_SYMBOL_PRINT where needed.
9863
9864 (struct yyGLRState): Add some comments.
9865 (struct yySemanticOption): Add some comments.
9866 (union yyGLRStackItem): Add comment.
9867
9868 (yymergeOptionSets): Correct this to properly perform the union,
9869 avoiding infinite reported by Michael Rosien.
9870 Update comment.
9871
9872 * tests/glr-regression.at: Add test for GLR merging error reported
9873 by M. Rosien.
9874
9875 2005-05-13 Paul Eggert <eggert@cs.ucla.edu>
9876
9877 * COPYING, ChangeLog, GNUmakefile, HACKING, Makefile.am,
9878 Makefile.cfg, Makefile.maint, NEWS, README, README-alpha,
9879 README-cvs, TODO, bootstrap, configure.ac, data/Makefile.am,
9880 data/README, data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c,
9881 data/m4sugar/m4sugar.m4, doc/Makefile.am, doc/bison.texinfo,
9882 doc/fdl.texi, doc/gpl.texi, doc/refcard.tex, lib/Makefile.am,
9883 lib/abitset.c, lib/abitset.h, lib/bbitset.h, lib/bitset.c,
9884 lib/bitset.h, lib/bitset_stats.c, lib/bitset_stats.h,
9885 lib/bitsetv-print.c, lib/bitsetv-print.h, lib/bitsetv.c,
9886 lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/get-errno.c,
9887 lib/get-errno.h, lib/lbitset.c, lib/lbitset.h, lib/libiberty.h,
9888 lib/main.c, lib/subpipe.c, lib/subpipe.h, lib/timevar.c,
9889 lib/timevar.def, lib/timevar.h, lib/vbitset.c, lib/vbitset.h,
9890 lib/yyerror.c, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4, m4/timevar.m4,
9891 m4/warning.m4, src/LR0.c, src/LR0.h, src/Makefile.am, src/assoc.c,
9892 src/assoc.h, src/closure.c, src/closure.h, src/complain.c,
9893 src/complain.h, src/conflicts.c, src/conflicts.h, src/derives.c,
9894 src/derives.h, src/files.c, src/files.h, src/getargs.c,
9895 src/getargs.h, src/gram.c, src/gram.h, src/lalr.c, src/lalr.h,
9896 src/location.c, src/location.h, src/main.c, src/muscle_tab.c,
9897 src/muscle_tab.h, src/nullable.c, src/nullable.h, src/output.c,
9898 src/output.h, src/parse-gram.c, src/parse-gram.h,
9899 src/parse-gram.y, src/print.c, src/print.h, src/print_graph.c,
9900 src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c,
9901 src/reduce.h, src/relation.c, src/relation.h, src/scan-gram.l,
9902 src/scan-skel.l, src/state.c, src/state.h, src/symlist.c,
9903 src/symlist.h, src/symtab.c, src/symtab.h, src/system.h,
9904 src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h,
9905 src/vcg.c, src/vcg.h, src/vcg_defaults.h, tests/Makefile.am,
9906 tests/actions.at, tests/c++.at, tests/calc.at, tests/conflicts.at,
9907 tests/cxx-type.at, tests/existing.at, tests/glr-regression.at,
9908 tests/headers.at, tests/input.at, tests/local.at, tests/output.at,
9909 tests/reduce.at, tests/regression.at, tests/sets.at,
9910 tests/synclines.at, tests/testsuite.at, tests/torture.at:
9911 Update FSF postal mail address.
9912
9913 2005-05-11 Paul Eggert <eggert@cs.ucla.edu>
9914
9915 * tests/local.at (AT_COMPILE_CXX): Treat LDFLAGS like AT_COMPILE does.
9916 Problem reported by Ralf Menzel.
9917
9918 2005-05-01 Paul Eggert <eggert@cs.ucla.edu>
9919
9920 * tests/actions.at: Test that stack overflow invokes destructors.
9921 From Marcus Holland-Moritz.
9922 * data/yacc.c (yyerrlab): Move the code that destroys the stack
9923 from here....
9924 (yyreturn): to here. That way, destructors are called properly
9925 even if the stack overflows, or the user calls YYACCEPT or
9926 YYABORT. Stack-overflow problem reported by Marcus Holland-Moritz.
9927 (yyoverflowlab): Destroy the lookahead.
9928
9929 2005-04-24 Paul Eggert <eggert@cs.ucla.edu>
9930
9931 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): Add more-descriptive comment.
9932
9933 2005-04-17 Paul Eggert <eggert@cs.ucla.edu>
9934
9935 * NEWS: Bison-generated C parsers no longer quote literal strings
9936 associated with tokens.
9937 * src/output.c (prepare_symbols): Don't escape strings,
9938 since users don't want to see C escapes.
9939 * tests/calc.at (AT_CHECK_CALC): Adjust to lack of quotes
9940 in diagnostics.
9941 * tests/input.at (Torturing the Scanner): Likewise.
9942 * tests/regression.at (Token definitions, Web2c Actions): Likewise.
9943
9944 2005-04-16 Paul Eggert <eggert@cs.ucla.edu>
9945
9946 * tests/torture.at (AT_INCREASE_DATA_SIZE): Skip the test if
9947 the data size is known to be too small and we can't increase it.
9948 This works around an HP-UX 11.00 glitch reported by Andrew Benham.
9949
9950 2005-04-15 Paul Eggert <eggert@cs.ucla.edu>
9951
9952 * src/parse-gram.y: Include quotearg.h.
9953 (string_as_id): Quote $1 before using it as a key, since the
9954 lexer no longer quotes it for us.
9955 (string_content): Don't strip quotes, since lexer no longer
9956 quotes it for us.
9957 * src/scan-gram.l: Include quotearg.h.
9958 ("\""): Omit quote.
9959 ("'"<SC_ESCAPED_CHARACTER>): Quote symbol before using it as
9960 a key, since the rest of the lexer doesn't quote it.
9961 * src/symtab.c (symbol_get): Don't quote symbol; caller does it now.
9962 * tests/regression.at (Token definitions): Check for backslashes
9963 in token strings.
9964
9965 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): New macro.
9966 (YYSIZE_T): Define to unsigned long int when using an older compiler.
9967 (yyparse): Revamp code to generate long syntax error message, to
9968 make it easier to translate, and to avoid problems with arithmetic
9969 overflow. Change "virtual memory" to "memory" in diagnostic, since
9970 we don't know whether the memory is virtual.
9971
9972 2005-04-13 Paul Eggert <eggert@cs.ucla.edu>
9973
9974 * NEWS: Bison-generated C parsers now use the _ macro to
9975 translate strings.
9976 * data/yacc.c (_) [!defined _]: New macro.
9977 All English strings wrapped inside this macro.
9978 * doc/bison.texinfo (Bison Parser): Document _.
9979 * po/POTFILES.in: Include src/parse-gram.c, since it now
9980 includes translateable strings that parse-gram.y doesn't.
9981
9982 2005-04-12 Paul Eggert <eggert@cs.ucla.edu>
9983
9984 * src/symtab.c (symbol_make_alias): Call symbol_type_set,
9985 reverting the 2004-10-11 change to this function.
9986 (symbol_check_alias_consistency): Don't call symbol_type_set
9987 if the type name is already correct.
9988 * tests/input.at (Typed symbol aliases): New test, from Tim Van Holder.
9989
9990 2005-03-25 Paul Eggert <eggert@cs.ucla.edu>
9991
9992 * tests/regression.at (Token definitions): Don't use a token named
9993 c, as that generates a "#define c ..." that runs afoul of buggy
9994 stdlib.h that uses the identifier c as a member of struct
9995 drand48_data. Problem reported by Horst Wente.
9996
9997 2005-03-21 Paul Eggert <eggert@cs.ucla.edu>
9998
9999 * bootstrap: Change translation URL from
10000 http://www2.iro.umontreal.ca/~gnutra/po/maint/bison/ to
10001 http://www.iro.umontreal.ca/translation/maint/bison/ to avoid
10002 redirection glitches. Problem reported by twlevo@xs4all.nl.
10003
10004 2005-03-20 Paul Eggert <eggert@cs.ucla.edu>
10005
10006 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Don't put options
10007 after operands; POSIX says this isn't portable for the c99 command.
10008
10009 2005-03-18 Paul Eggert <eggert@cs.ucla.edu>
10010
10011 * tests/glr-regression.at (glr-regr2a.y): Try to dump core
10012 immediately if a data overrun has occurred; this may help us track
10013 down what may be a spurious failure on MacOS.
10014
10015 2005-03-17 Paul Eggert <eggert@cs.ucla.edu>
10016
10017 Respond to problems reported by twlevo@xs4all.nl.
10018
10019 * bootstrap: Use "trap - 0" rather than the unportable "trap 0".
10020
10021 * src/vcg.h: Comment fix.
10022 * src/vcg_defaults.h: Parenthesize macro bodies to make them safe.
10023 (G_CMAX): Change to -1 instead of INT_MAX.
10024
10025 * data/yacc.c (yyparse): Omit spaces before #line.
10026
10027 2005-03-15 Paul Eggert <eggert@cs.ucla.edu>
10028
10029 * src/tables.c (state_number_to_vector_number): Put it inside an
10030 "#if 0", since it's not currently used. Problem reported by
10031 Roland McGrath.
10032
10033 2005-03-06 Paul Eggert <eggert@cs.ucla.edu>
10034
10035 * src/output.c (escaped_output): Renamed from
10036 escaped_file_name_output, since we now use it for symbol tags as
10037 well. All uses changed.
10038 (symbol_destructors_output, symbol_printers_output):
10039 Escape symbol tags too.
10040 Problem reported by Matyas Forstner in
10041 <http://lists.gnu.org/archive/html/bug-bison/2005-03/msg00009.html>.
10042
10043 * src/muscle_tab.c (muscle_code_grow): Don't quote numbers; it's
10044 not needed.
10045 * src/output.c (user_actions_output, token_definitions_output,
10046 symbol_destructors_output, symbol_printers_output): Likewise.
10047 * src/reader.c (prologue_augment): Likewise.
10048 * src/scan-gram.l (handle_action_dollar, handle_action_at): Likewise.
10049
10050 * src/vcg.c (output_edge): Don't quote linestyle arg.
10051 Problem reported by twlevo@xs4all.nl.
10052
10053 2005-02-28 Paul Eggert <eggert@cs.ucla.edu>
10054
10055 * doc/bison.texinfo (Semantic Tokens): Fix scoping problem in
10056 example, reported by Derek M Jones. Also, make the example even
10057 more outrageous, to better illustrate how bad the problem is.
10058
10059 2005-02-24 Paul Eggert <eggert@cs.ucla.edu>
10060
10061 * doc/bison.texinfo (Mfcalc Symtab): Correct the prototype for
10062 putsym. Typo reported by Sebastian Piping.
10063
10064 2005-02-23 Paul Eggert <eggert@cs.ucla.edu>
10065
10066 * doc/bison.texinfo (Language and Grammar): some -> same
10067 (Epilogue): int he -> in the
10068 Typos reported by Sebastian Piping via Justin Pence.
10069
10070 2005-02-07 Paul Eggert <eggert@cs.ucla.edu>
10071
10072 * tests/glr-regression.at (Improper handling of embedded actions
10073 and dollar(-N) in GLR parsers): Renamed from "Improper handling of
10074 embedded actions and $-N in GLR parsers", work around an Autoconf bug
10075 with dollar signs in test names.
10076 * tests/input.at (Invalid dollar-n): Renamed from "Invalid \$n",
10077 for a similar reason.
10078
10079 2005-01-28 Paul Eggert <eggert@cs.ucla.edu>
10080
10081 * src/vcg.c (output_graph): G_VIEW -> normal_view in case someone
10082 wants to redefine G_VIEW.
10083
10084 2005-01-27 Paul Eggert <eggert@cs.ucla.edu>
10085
10086 * src/vcg.c (get_view_str): Remove case for normal_view.
10087 Problem reported by twlevo@xs4all.nl.
10088
10089 2005-01-24 Paul Eggert <eggert@cs.ucla.edu>
10090
10091 * configure.ac (O0CFLAGS, O0CXXFLAGS): Fix quoting bug.
10092 Problem reported by twlevo@xs4all.nl.
10093
10094 * doc/bison.texinfo: Change @dircategory from "GNU programming
10095 tools" to "Software development". Requested by Richard Stallman
10096 via Karl Berry.
10097
10098 2005-01-23 Paul Eggert <eggert@cs.ucla.edu>
10099
10100 * tests/c++.at (AT_CHECK_DOXYGEN): Don't use options after operands.
10101 Problem reported by twlevo@xs4all.nl.
10102
10103 2005-01-21 Paul Eggert <eggert@cs.ucla.edu>
10104
10105 * data/yacc.c (YYCOPY, yystpcpy, yyparse): Remove "register"
10106 keyword; it's not needed with modern compilers, and it doesn't
10107 affect correctness with older compilers. Suggested by
10108 twlevo@xs4all.nl.
10109
10110 2005-01-17 Paul Eggert <eggert@cs.ucla.edu>
10111
10112 * data/glr.c (yyuserAction): Add "default: break;" case to pacify
10113 gcc -Wswitch-default.
10114 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
10115 * data/yacc.c (yyparse): Likewise.
10116
10117 2005-01-12 Paul Eggert <eggert@cs.ucla.edu>
10118
10119 * src/system.h (OUTPUT_EXT, TAB_EXT): Define only if not defined
10120 already. Let config.h define any nonstandard values.
10121
10122 2005-01-10 Paul Eggert <eggert@cs.ucla.edu>
10123
10124 * tests/calc.at (_AT_DATA_CALC_Y): Use alarm (100), not alarm (10),
10125 for the benefit of slower hosts. Problem reported by
10126 Nelson H. F. Beebe.
10127
10128 2005-01-07 Paul Eggert <eggert@cs.ucla.edu>
10129
10130 * data/yacc.c (yyparse): Pacify non-GCC compilers about yyerrorlab
10131 being defined and not used.
10132 * data/lalr1.cc (yyparse): Likewise.
10133 Use "if (false)" rather than "if (0)".
10134
10135 2005-01-05 Paul Eggert <eggert@cs.ucla.edu>
10136
10137 * TODO: Mention that we should allow NUL bytes in tokens.
10138
10139 2005-01-02 Paul Eggert <eggert@cs.ucla.edu>
10140
10141 * src/scan-skel.l (<<EOF>>): Don't close standard output.
10142 Problem reported by Hans Aberg.
10143
10144 2005-01-01 Paul Eggert <eggert@cs.ucla.edu>
10145
10146 * src/getargs.c (version): Happy new year; update overall
10147 program copyright date from 2004 to 2005.
10148
10149 * src/scan-skel.l ("@output ".*\n): Don't close standard output.
10150 Problem reported by Hans Aberg.
10151 * tests/output.at (AT_CHECK_OUTPUT): New arg SHELLIO.
10152 (Output file names.): Add a test for the case when standard output
10153 is closed.
10154
10155 2004-12-26 Paul Eggert <eggert@cs.ucla.edu>
10156
10157 * doc/bison.texinfo (@copying): Update FDL version number to 1.2,
10158 to fix an oversight in the Bison 2.0 manual.
10159
10160 2004-12-25 Paul Eggert <eggert@cs.ucla.edu>
10161
10162 * NEWS: Version 2.0. Reformat the existing news items since
10163 1.875, so that related items are grouped together.
10164 * configure.ac (AC_INIT): Bump version to 2.0.
10165 * src/parse-gram.c, src/parse-gram.h: Regenerate with 2.0.
10166
10167 * tests/torture.at (Exploding the Stack Size with Alloca): Set
10168 YYSTACK_USE_ALLOCA to 1 if __GNUC__ or alloca are defined;
10169 otherwise, we're not testing alloca. Unfortunately there's no
10170 simple way to consult HAVE_ALLOCA here.
10171
10172 * data/lalr1.cc (yydestruct_): Pacify unused variable warning
10173 for yymsg, too.
10174
10175 * src/LR0.c (new_itemsets): Use memset rather than zeroing by
10176 hand. This avoids a warning about comparing int to size_t when
10177 GCC warnings are enabled.
10178
10179 2004-12-22 Paul Eggert <eggert@cs.ucla.edu>
10180
10181 * NEWS: Bison-generated parsers no longer default to using the
10182 alloca function (when available) to extend the parser stack, due
10183 to widespread problems in unchecked stack-overflow detection.
10184 * data/glr.c (YYMAXDEPTH): Remove undef when zero. It's the user's
10185 responsibility to set it to a positive value. This lets the user
10186 specify a value that is not a preprocessor constant.
10187 * data/yacc.c (YYMAXDEPTH): Likewise.
10188 (YYSTACK_ALLOC): Define only if YYSTACK_USE_ALLOCA is nonzero.
10189 * doc/bison.texinfo (Stack Overflow): YYMAXDEPTH no longer needs
10190 to be a compile-time constant. However, explain the constraints on it.
10191 Also, explain the constraints on YYINITDEPTH.
10192 (Table of Symbols): Explain that alloca is no longer the default.
10193 Explain the user's responsibility if they define YYSTACK_USE_ALLOCA
10194 to 1.
10195
10196 * doc/bison.texinfo (Location Default Action): Mention that n must
10197 be zero when k is zero. Suggested by Frank Heckenbach.
10198
10199 2004-12-22 Akim Demaille <akim@epita.fr>
10200
10201 * data/lalr1.cc (parser::token_number_type, parser::rhs_number_type)
10202 (parser::state_type, parser::semantic_type, parser::location_type):
10203 Private, not public.
10204 (parser::parse): Return ints, not bool.
10205 Returning a bool introduces a problem: 0 corresponds to false, and
10206 it seems weird to return false on success. Returning true changes
10207 the conventions for yyparse.
10208 Alternatively we could return void and send an exception.
10209 There is no clear consensus (yet?).
10210 (state_stack, semantic_stack, location_stack): Rename as...
10211 (state_stack_type, semantic_stack_type, location_stack_type): these.
10212 Private, not public.
10213 * tests/c++.at: New.
10214 * tests/testsuite.at, tests/Makefile.am: Adjust.
10215
10216 2004-12-21 Akim Demaille <akim@epita.fr>
10217
10218 * data/lalr1.cc (parser::parse): Return a bool instead of an int.
10219
10220 2004-12-21 Akim Demaille <akim@epita.fr>
10221
10222 Don't impose std::string for filenames.
10223
10224 * data/lalr1.cc (b4_filename_type): New.
10225 (position::filename): Use it.
10226 (parser.hh): Move the inclusion of stack.hh and location.hh below
10227 the user code, so that needed headers for the filename type can be
10228 included first.
10229 Forward declare them before the user code.
10230 * tests/Makefile.am (check-local, installcheck-local): Pass
10231 TESTSUITEFLAGS to the TESTSUITE.
10232
10233 2004-12-20 Akim Demaille <akim@epita.fr>
10234
10235 Use more STL like names: my_class instead of MyClass.
10236
10237 * data/lalr1.cc (LocationStack, LocationType, RhsNumberType)
10238 (SemanticStack, SemanticType, StateStack, StateType)
10239 (TokenNumberType, Stack, Slice, Traits, Parser::location)
10240 (Parser::value): Rename as...
10241 (location_stack, location_type, rhs_number_type, semantic_stack)
10242 (semantic_type, state_stack, state_type, token_number_type, stack)
10243 (slice, traits, parser::yylloc, parser::yylval): these.
10244
10245 * tests/calc.at, tests/regression.at, tests/actions.at: Adjust.
10246
10247 2004-12-19 Paul Eggert <eggert@cs.ucla.edu>
10248
10249 * data/glr.c (YYLLOC_DEFAULT): Use GNU spacing conventions.
10250 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
10251
10252 2004-12-17 Paul Eggert <eggert@cs.ucla.edu>
10253
10254 Remove uses of 'short int' and 'unsigned short int'. This raises
10255 some arbitrary limits. It uses more memory but nowadays that's
10256 not much of an issue.
10257
10258 This change does not affect the generated parsers; that's a different
10259 task, as some users will want to conserve memory there.
10260
10261 Ideally we should use size_t to represent all object counts, and
10262 something like ptrdiff_t to represent signed differences of object
10263 counts; but that will require more code-cleanup than I have the
10264 time to do right now.
10265
10266 * src/LR0.c (allocate_itemsets, new_itemsets, save_reductions):
10267 Use size_t, not int or short int, to count objects.
10268 * src/closure.c (nritemset, closure): Likewise.
10269 * src/closure.h (nritemset, closure): Likewise.
10270 * src/nullable.c (nullable_compute): Likewise.
10271 * src/print.c (print_core): Likewise.
10272 * src/print_graph.c (print_core): Likewise.
10273 * src/state.c (state_compare, state_hash): Likewise.
10274 * src/state.h (struct state): Likewise.
10275 * src/tables.c (default_goto, goto_actions): Likewise.
10276
10277 * src/gram.h (rule_number, rule): Use int, not short int.
10278 * src/output.c (prepare_rules): Likewise.
10279 * src/state.h (state_number, STATE_NUMBER_MAXIMUM, transitions,
10280 errs, reductions): Likewise.
10281 * src/symtab.h (symbol_number, SYMBOL_NUMBER_MAXIMUM, struct symbol):
10282 Likewise.
10283 * src/tables.c (vector_number, tally, action_number,
10284 ACTION_NUMBER_MINIMUM): Likewise.
10285 * src/output.c (muscle_insert_short_int_table): Remove.
10286
10287 2004-12-17 Akim Demaille <akim@epita.fr>
10288
10289 * data/lalr1.cc: Extensive Doxygenation.
10290 (error_): Rename as...
10291 (error): this, since it is visible to the user.
10292 Adjust callers.
10293 (Parser::message): Now an automatic variable from...
10294 (Parser::yyreport_syntax_error_): here.
10295 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust to
10296 Parser::error.
10297 * tests/input.at: Escape $.
10298
10299 2004-12-16 Paul Eggert <eggert@cs.ucla.edu>
10300
10301 * data/glr.c (b4_lhs_value, b4_rhs_value, b4_rhs-location):
10302 Parenthesize rhs to avoid obscure problems with mistakes like
10303 "foo$$bar = foo$1bar;". Problem reported by twlevo at xs4all.
10304 * data/lalr1.cc (b4_lhs_value, b4_rhs_value, b4_lhs_location,
10305 b4_rhs_location): Likewise.
10306 * data/yacc.c (b4_lhs_value, b4_rhs_value, b4_lhs_location,
10307 b4_rhs_location): Likewise.
10308
10309 2004-12-16 Akim Demaille <akim@epita.fr>
10310
10311 * data/lalr1.cc (yyreport_syntax_error_): Catch up with glr.c and
10312 yacc.c: be sure to stay within yycheck_.
10313 * tests/actions.at: Re-enable C++ tests.
10314
10315 2004-12-16 Akim Demaille <akim@epita.fr>
10316
10317 * src/print_graph.c (print_graph): Remove layoutalgorithm uses for
10318 real.
10319
10320 2004-12-16 Akim Demaille <akim@epita.fr>
10321
10322 Use #define to handle the %name-prefix.
10323
10324 * data/glr.c, data/yacc.c: Comment changes.
10325 * data/lalr1.cc (yylex): Use #define to select the name of yylex,
10326 so that one can refer to yylex in the parser file, and have it
10327 renamed, as is the case with other skeletons.
10328
10329 2004-12-16 Akim Demaille <akim@epita.fr>
10330
10331 Move lalr1.cc internals into yy*.
10332
10333 * data/lalr1.cc (semantic_stack_, location_stack_, state_stack_)
10334 (semantic_stack_, location_stack_, pact_, pact_ninf_, defact_)
10335 (pgoto_, defgoto_, table_, table_ninf_, check_, stos_, r1_, r2_)
10336 (name_, rhs_, prhs_, rline_, token_number_, eof_, last_, nnts_)
10337 (empty_, final_, terror_, errcode_, ntokens_)
10338 (user_token_number_max_, undef_token_, n_, len_, state_, nerrs_)
10339 (looka_, ilooka_, error_range_, nerrs_):
10340 Rename as...
10341 (yysemantic_stack_, yylocation_stack_, yystate_stack_)
10342 (yysemantic_stack_, yylocation_stack_, yypact_, yypact_ninf_)
10343 (yydefact_, yypgoto_, yydefgoto_, yytable_, yytable_ninf_)
10344 (yycheck_, yystos_, yyr1_, yyr2_, yyname_, yyrhs_, yyprhs_)
10345 (yyrline_, yytoken_number_, yyeof_, yylast_, yynnts_, yyempty_)
10346 (yyfinal_, yyterror_, yyerrcode_, yyntokens_)
10347 (yyuser_token_number_max_, yyundef_token_, yyn_, yylen_, yystate_)
10348 (yynerrs_, yylooka_, yyilooka_, yyerror_range_, yynerrs_):
10349 these.
10350
10351 2004-12-15 Paul Eggert <eggert@cs.ucla.edu>
10352
10353 Fix some problems reported by twlevo at xs4all.
10354 * src/symtab.c (symbol_new): Report an error if the input grammar
10355 contains too many symbols. This is better than calling abort() later.
10356 * src/vcg.h (enum layoutalgorithm): Remove. All uses removed.
10357 (struct node, struct graph):
10358 Rename member expand to stretch. All uses changed.
10359 (struct graph): Remove member layoutalgorithm. All uses removed.
10360 * src/vcg.c (get_layoutalgorithm_str): Remove. All uses removed.
10361 * src/vcg_defaults.h (G_STRETCH): Renamed from G_EXPAND.
10362 All uses changed.
10363 (N_STRETCH): Rename from N_EXPAND. All uses changed.
10364
10365 2004-12-15 Akim Demaille <akim@epita.fr>
10366
10367 * data/lalr1.cc: Normalize /** \brief ... */ to ///.
10368 Add more Doxygen comments.
10369 (symprint_, stack_print_, reduce_print_, destruct_, pop)
10370 (report_syntax_error_, translate_): Rename as...
10371 (yysymprint_, yystack_print_, yyreduce_print_, yydestruct_)
10372 (yypop_, yyreport_syntax_error_, yytranslate_): this.
10373
10374 2004-12-15 Akim Demaille <akim@epita.fr>
10375
10376 * data/lalr1.cc (lex_): Rename as...
10377 (yylex_): this.
10378 Move the trace here.
10379 Take the %name-prefix into account.
10380 Reported by Alexandre Duret-Lutz.
10381
10382 2004-12-15 Akim Demaille <akim@epita.fr>
10383
10384 Simplify the C++ parser constructor.
10385
10386 * data/lalr1.cc (debug_): Rename as...
10387 (yydebug_): so that the parser's internals are always in the yy*
10388 pseudo namespace.
10389 Adjust uses.
10390 (b4_parse_param_decl): Remove the leading comma as it is now only
10391 called as unique argument list.
10392 (Parser::Parser): Remove the constructor accepting a location and
10393 an initial debugging level.
10394 Remove from the other ctor the argument for the debugging level.
10395 (debug_level_type, debug_level, set_debug_level): New.
10396
10397 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust
10398 constructor calls.
10399
10400 2004-12-15 Akim Demaille <akim@epita.fr>
10401
10402 Remove b4_root related material: failure experiment
10403 (which goal was to allow to derive from a class).
10404
10405 * data/lalr1.cc (b4_root, b4_param, b4_constructor): Remove
10406 definitions and uses.
10407
10408 2004-12-14 Paul Eggert <eggert@cs.ucla.edu>
10409
10410 * data/glr.c (struct yyGLRStack): yyerror_range now has 3 items,
10411 not 2, since it's not portable to subtract 1 from the start of an
10412 array. The new item 0 is never set or used. All uses changed.
10413
10414 (yyrecoverSyntaxError): Use YYLLOC_DEFAULT instead of assuming
10415 the default definition of YYLLOC_DEFAULT. Problem reported
10416 by Frank Heckenbach.
10417
10418 2004-12-12 Paul Eggert <eggert@cs.ucla.edu>
10419
10420 * data/glr.c (YYRHSLOC): Don't have two definitions, one for
10421 the normal case and one for the error case. Just use the
10422 first one uniformly. Problem reported by Frank Heckenbach.
10423 (YYLLOC_DEFAULT): Use the conventions of yacc.c, so we can
10424 use exactly the same macro in both places.
10425 (yyerror_range): Now of type yyGLRStackItem, not YYLTYPE,
10426 so that the normal-case YYRHSLOC works for the error case too.
10427 All uses changed.
10428 * data/yacc.c (YYRHSLOC): New macro, taken from glr.c.
10429 (YYLLOC_DEFAULT): Use the same macro as glr.c.
10430 * doc/bison.texinfo (Location Default Action): Don't claim that
10431 we have an array of locations. Use the same macro for both glr
10432 and lalr parsers. Mention YYRHSLOC. Mention what happens when
10433 the index is 0.
10434
10435 2004-12-10 Paul Eggert <eggert@cs.ucla.edu>
10436
10437 * HACKING: Update email addresses to send announcements to.
10438
10439 * configure.ac (AC_INIT): Bump version to 1.875f.
10440
10441 2004-12-10 Paul Eggert <eggert@cs.ucla.edu>
10442
10443 * NEWS: Version 1.875e.
10444 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875e.
10445
10446 * src/scan-skel.l: Include "complain.h", for "fatal".
10447
10448 * src/relation.h (relation_print, relation_digraph):
10449 Relation sizes are of type relation_node, not size_t (this is
10450 merely a doc fix, since the two types are equivalent).
10451 (relation_transpose): Relation sizes are of type relation_node,
10452 not int.
10453 * src/relation.c: Likewise.
10454 (top, infinity): Now of type relation_node, not int.
10455 (traverse, relation_transpose): Use relation_node, not int.
10456
10457 * data/glr.c (yyuserAction, yyrecoverSyntaxError): Mark args
10458 with ATTRIBUTE_UNUSED if they're not used, to avoid GCC warning.
10459 (yyparse): Remove unused local introduced in 2004-10-25 patch.
10460
10461 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): New arg
10462 specifying whether the test should be skipped. Use it tp
10463 specify that the [%defines %skeleton "lalr1.cc"] tests currently
10464 fail on some hosts, and should be skipped.
10465
10466 2004-12-08 Paul Eggert <eggert@cs.ucla.edu>
10467
10468 * src/system.h (CALLOC, MALLOC, REALLOC): Remove. All callers
10469 changed to use xcalloc, xnmalloc, xnrealloc, respectively,
10470 unless otherwise specified below.
10471
10472 * src/LR0.c (allocate_itemsets): Use xnmalloc, not xcalloc,
10473 to allocate kernel_base, kernel_items, kernel_size, since
10474 they needn't be initialized to 0.
10475 (allocate_storgae): Likewise, for shiftset, redset, shift_symbol.
10476 * src/closure.c (new_closure): Likewise, for itemset.
10477 * src/derives.c (derives_compute): Likewise, for delts, derives, q.
10478 * src/lalr.c (set_goto_map): Likewise, for temp_map.
10479 (initialize_F): Likewise, for reads, edge, reads[i], includes[i].
10480 (build_relations): Likewise for edge, states1, includes.
10481 * src/nullable.c (nullable_compute): Likewise, for squeue, relts.
10482 * src/reader.c (packgram): Likewise, for ritem, rules.
10483 * src/reduce.c (nonterminals_reduce): Likewise for nontermmap.
10484 * src/relation.c (relation_digraph): Likewise for VERTICES.
10485 (relation_transpose): Likewise for new_R, end_R.
10486 * src/symtab.c (symbols_token_translations_init): Likewise for
10487 token_translations.
10488 * src/tables.c (save_row): Likewise for froms, tos, conflict_tos.
10489 (token_actions): Likewise for yydefact, actrow, conflrow,
10490 conflict_list.
10491 (save_column): Likewise for froms[symno], tos[symno].
10492 (goto_actions): Likewise for state_count.
10493 (pack_table): Likewise for base, pos, check.
10494 (tables_generate): Likewise for width.
10495
10496 * src/LR0.c (set_states): Don't reuse kernel_size and kernel_base
10497 for initial core. Just have a separate core, so we needn't worry
10498 about whether kernel_size and kernel_base are initialized.
10499
10500 * src/LR0.c (shift_symbol, redset, shiftset, kernel_base,
10501 kernel_size, kernel_items): Remove unnecessary initialization.
10502 * src/conflicts.c (conflicts): Likewise.
10503 * src/derives.c (derives): Likewise.
10504 * src/muscle_tablc (muscle_insert): Likewise.
10505 * src/relation.c (relation_digraph): Likewise.
10506 * src/tables.c (froms, tos, conflict_tos, tally, width, actrow, order,
10507 conflrow, conflict_table, conflict_list, table, check):
10508 Likewise.
10509
10510 * src/closure.c (new_closure): Arg is of type unsigned int, not int.
10511 This is because all callers pass unsigned int.
10512 * src/closure.h (new_closure): Likewise.
10513
10514 * src/lalr.c (initialize_F): Initialize reads[i] in all cases.
10515 (build_relations): Initialize includes[i] in all cases.
10516 * src/reader.c (packgram): Always initialize rules[ruleno].prec
10517 and rules[ruleno].precsym. Initialize members in order.
10518 * src/relation.c (relation_transpose): Always initialize new_R[i]
10519 and end_R[i].
10520 * src/table.c (conflict_row): Initialize 0 at end of conflict_list.
10521
10522 * src/output.c (prepare_actions): Pass 0 instead of conflict_list[0];
10523 conflict_list[0] was always 0, but now it isn't initialized.
10524
10525 * src/table.c (table_grow): When conflict_table grew, the grown
10526 area wasn't cleared. Fix this.
10527
10528 * lib/.cvsignore: Add strdup.c, strdup.h.
10529 * m4/.cvsignore: Add strdup.m4.
10530
10531 2004-12-07 Paul Eggert <eggert@cs.ucla.edu>
10532
10533 * src/lalr.h (GOTO_NUMBER_MAXIMUM): New macro.
10534 * src/lalr.c (set_goto_map): Don't allow ngotos to equal
10535 GOTO_NUMBER_MAXIMUM, since we occasionally compute
10536 ngotos + 1 without checking for overflow.
10537 (build_relations): Use END_NODE, not -1, to denote end of edges.
10538 * src/lalr.c (set_goto_map, map_goto, initialize_F, add_loopback_edge,
10539 build_relations): Use goto_number, not int, for goto numbers.
10540 * src/tables.c (save_column, default_goto): Likewise.
10541
10542 2004-11-23 Akim Demaille <akim@epita.fr>
10543
10544 * data/lalr1.cc (YYSTYPE): Define it as is done for C, instead
10545 of #defining from yystype.
10546 Don't typedef yystype, C++ does not need it.
10547 This lets it possible to forward declare it as union.
10548
10549 2004-11-23 Paul Eggert <eggert@cs.ucla.edu>
10550
10551 * bootstrap (gnulib_modules): Add extensions.
10552 Problem reported by Jim Meyering.
10553
10554 2004-11-22 Paul Eggert <eggert@cs.ucla.edu>
10555
10556 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c,
10557 src/lalr.c, src/nullable.c, src/relation.c, src/scan-skel.l,
10558 src/system.h, src/tables.c: XFREE -> free, to accommodate
10559 recent change to gnulib xalloc.h.
10560 Problem reported by Jim Meyering.
10561
10562 2004-11-17 Akim Demaille <akim@epita.fr>
10563
10564 * data/lalr1.cc (symprint_): Use cdebug_ to avoid warnings.
10565
10566 2004-11-17 Akim Demaille <akim@epita.fr>,
10567 Alexandre Duret-Lutz <adl@gnu.org>
10568
10569 * data/lalr1.cc (Parser::yycdebug_): New, a pointer, to allow
10570 changes.
10571 (YYCDEBUG): Adjust.
10572 Use it instead of cdebug_.
10573 (Parser::debug_stream, Parser::set_debug_stream): New.
10574 (Parser::symprint_): Define cdebug_ for temporary backward
10575 compatibility.
10576 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use
10577 debug_stream ().
10578
10579 2004-11-17 Akim Demaille <akim@epita.fr>
10580
10581 * data/lalr1.cc (Parser:print_): Remove, use %printer instead.
10582 * tests/regression.at (_AT_DATA_DANCER_Y): Adjust.
10583 * tests/calc.at (_AT_DATA_CALC_Y): Ditto.
10584 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
10585
10586 2004-10-27 Paul Eggert <eggert@cs.ucla.edu>
10587
10588 * data/glr.c (yyloc_default): Remove; not used.
10589 Problem reported by Frank Heckenbach.
10590
10591 2004-10-25 Akim Demaille <akim@epita.fr>
10592
10593 * data/glr.c (YYRHSLOC): Move its definition next to its uses.
10594 Introduce another definition to address simple location arrays.
10595 (yyGLRStack): New member: yyerror_range.
10596 (yyrecoverSyntaxError, yyparse): Update it.
10597 (yyrecoverSyntaxError): Use it when shifting the error token to
10598 have an accurate range, equivalent to the one computed by both
10599 yacc.c and lalr1.cc.
10600 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Change its yylex so
10601 that column numbers start at column 0, as per GNU Coding
10602 Standards, the others tests, and the doc.
10603 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT_WITH_LOC):
10604 Adjust to the above change (first column is 0).
10605 And adjust the location of the "<error>", now covering the whole
10606 line.
10607
10608 2004-10-22 Akim Demaille <akim@epita.fr>
10609 and Paul Eggert <eggert@cs.ucla.edu>
10610
10611 Remove some arbitrary limits on goto numbers and relations.
10612 * src/lalr.c (goto_map, ngotos, from_state, to_state): Omit
10613 initial values, since they're never used.
10614 (set_goto_map): ngotos is now unsigned, so test for overflow
10615 by seeing whether it wraps around to zero.
10616 * src/lalr.h (goto_number): Now size_t, not short int.
10617 (GOTO_NUMBER_MAXIMUM): Remove.
10618 * src/relation.c (relation_print, traverse, relation_transpose):
10619 Check for END_NODE rather than looking at sign.
10620 * src/relation.h (END_NODE): New macro.
10621 (relation_node): Now size_t, not short int.
10622
10623 2004-10-22 Paul Eggert <eggert@cs.ucla.edu>
10624
10625 * doc/bison.texinfo (Language and Grammar): In example, "int" is a
10626 keyword, not an identifier. Problem reported by Baron Schwartz in
10627 <http://lists.gnu.org/archive/html/bug-bison/2004-10/msg00017.html>.
10628
10629 2004-10-11 Akim Demaille <akim@epita.fr>
10630
10631 * src/symtab.c (symbol_check_alias_consistency): Also check
10632 type names, destructors, and printers.
10633 Reported by Alexandre Duret-Lutz.
10634 Recode the handling of associativity and precedence in terms
10635 of symbol_precedence_set.
10636 Accept no redeclaration at all, not even equal to the previous
10637 value.
10638 (redeclaration): New.
10639 Use it to factor redeclaration complaints.
10640 (symbol_make_alias): Don't set the type of the alias, let
10641 symbol_check_alias_consistency do it as for other features.
10642 * src/symtab.h (symbol): Add new member prec_location, and
10643 type_location.
10644 * src/symtab.c (symbol_precedence_set, symbol_type_set): Set them.
10645 * tests/input.at (Incompatible Aliases): New.
10646
10647 2004-10-09 Paul Eggert <eggert@cs.ucla.edu>
10648
10649 .cvsignore fixes to accommodate gnulib changes,
10650 and the practice of naming build directories "_build".
10651 * .cvsignore: Add "_*". Sort.
10652 * lib/.cvsignore: Add getopt_.h, xalloc-die.c.
10653 * m4/.cvsignore: Add "*_gl.m4".
10654
10655 2004-10-06 Akim Demaille <akim@epita.fr>
10656
10657 * src/parse-gram.y (add_param): Fix the truncation of trailing
10658 spaces.
10659
10660 2004-10-05 Akim Demaille <akim@epita.fr>
10661
10662 In Bison 1.875's yacc.c, YYLLOC_DEFAULT was called regardless
10663 whether the reducion was empty or not. This leaves room to
10664 improve the use of YYLLOC_DEFAULT in such a case.
10665 lalr1.cc is still experimental, so changing this is acceptable.
10666 And finally, there are probably not many users who changed the
10667 handling of locations in GLR, so changing is admissible too.
10668
10669 * data/glr.c, data/lalr1.cc, data/yacc.c (YYLLOC_DEFAULT): On an
10670 empty reduction, set @$ to an empty location ending the previously
10671 stacked symbol.
10672 Adjust uses to make sure the code is triggered on empty
10673 reductions.
10674 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust the
10675 expected output: empty reductions have empty locations.
10676
10677 2004-09-29 Akim Demaille <akim@epita.fr>
10678
10679 * data/lalr1.cc: Move towards a more standard C++ coding style
10680 for templates: Class < T > -> Class<T>.
10681
10682 2004-09-29 Akim Demaille <akim@epita.fr>
10683
10684 * data/lalr1.cc: Reinstall the former ctor, for sake of
10685 compatibility, but warn it will be removed.
10686 Move towards a more standard C++ coding style (i.e., type *var ->
10687 type* var).
10688
10689 2004-09-27 Paul Eggert <eggert@cs.ucla.edu>
10690
10691 * src/parse-gram.y (add_param): Rewrite to avoid strchr,
10692 since it's less likely to work if NULs are involved in the future.
10693
10694 2004-09-27 Akim Demaille <akim@epita.fr>
10695
10696 * data/yacc.c (YY_LOCATION_PRINT): Fix its default declaration.
10697
10698 2004-09-27 Akim Demaille <akim@epita.fr>
10699
10700 * data/lalr1.cc (b4_parse_param_decl_1): New.
10701 (b4_parse_param_decl): Use it to have different names between attribute
10702 and argument names.
10703 (b4_cc_constructor_call): Likewise.
10704
10705 2004-09-24 Akim Demaille <akim@epita.fr>
10706
10707 * src/parse-gram.y (add_param): Strip the leading and trailing
10708 blanks from a formal argument declaration.
10709 (YY_LOCATION_PRINT): New.
10710
10711 2004-09-24 Akim Demaille <akim@epita.fr>
10712
10713 * data/c.m4 (b4_yysymprint_generate): Move the YYINPUT invocation
10714 after the location.
10715
10716 2004-09-24 Akim Demaille <akim@epita.fr>
10717
10718 * doc/bison.texinfo (Table of Symbols): Sort.
10719
10720 2004-09-21 Akim Demaille <akim@epita.fr>
10721
10722 * data/yacc.c, data/glr.c (b4_at_dollar, b4_dollar_dollar): Remove
10723 the useless parentheses.
10724 Suggested by Paul Eggert.
10725
10726 2004-09-20 Akim Demaille <akim@epita.fr>
10727
10728 Let the initial-action act on the look-ahead, and use it for the
10729 "initial push" (corresponding to an hypothetical beginning-of-file).
10730 And let lalr1.cc honor %initial-action.
10731
10732 * doc/bison.texinfo (Initial Action Decl): Clarify, and add an
10733 example.
10734 * data/lalr1.cc (Parser::initlocation_): Remove, bad experiment.
10735 (Parser::Parser): Remove the ctor that used to initialize it.
10736 (Parser::parse): Like in the other skeletons, issue the "starting
10737 parse" message before any action.
10738 Honor %initial-action.
10739 Initialize the stacks with the lookahead.
10740 * data/yacc.c: Let $$ and @$ in %initial-action designate the
10741 look-ahead.
10742 Push them in the stacks.
10743 * tests/actions.at, tests/calc.at: Adjust the C++ ctor invocations.
10744
10745 2004-09-20 Akim Demaille <akim@epita.fr>
10746
10747 * doc/bison.texinfo (Initial Action Decl): New.
10748
10749 2004-09-20 Akim Demaille <akim@epita.fr>
10750
10751 * data/yacc.c (YY_LOCATION_PRINT): Use YYLTYPE_IS_TRIVIAL as a
10752 clearer criterion to define it.
10753 (parse): Initialize the initial location when YYLTYPE_IS_TRIVIAL.
10754 When reducing on an empty RHS, use the latest stacked location as
10755 location.
10756 yylloc is not always available.
10757 * data/glr.c: Likewise.
10758 Also, honor initial-actions.
10759
10760 2004-09-20 Akim Demaille <akim@epita.fr>
10761
10762 * data/yacc.c (YY_LOCATION_PRINT): New.
10763 Define when we know YYLTYPE's structure, i.e., when the default
10764 YYLLOC_DEFAULT is used.
10765 * data/c.m4 (b4_yysymprint_generate): Use it.
10766 * data/lalr1.cc (YYLLOC_DEFAULT): Stop relying on the initial
10767 value of the result.
10768 (error_start_): Replace with...
10769 (error_range_): this location array.
10770 This allows to replace code relying on the implementation of
10771 locations by portable code.
10772 * data/yacc.c (yylerrsp): Replace with...
10773 (yyerror_range): this.
10774 Every time a token is popped, update yyerror_range[0], to have an
10775 accurate location for the error token.
10776 * data/glr.c (YY_LOCATION_PRINT): New.
10777 (yyprocessOneStack): Fix an invocation of YY_SYMBOL_PRINT:
10778 deference a pointer.
10779 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): No longer
10780 report the location in %printers.
10781
10782 * src/scan-skel.l: Instead of abort, report error messages to ease
10783 understanding skeleton scanning failures.
10784
10785 2004-09-16 Akim Demaille <akim@epita.fr>
10786
10787 * data/lalr1.cc (Stack::Iterator, Stack::ConstIterator): Rename as...
10788 (iterator, const_iterator): these, to be more in the C++ spirit.
10789 Also, return reverse iterators so that when displaying the stack
10790 we display its bottom first.
10791 (Parser::stack_print_, Parser::reduce_print_): Match the messages
10792 from yacc.c.
10793 We should probably use vector here though.
10794
10795 2004-09-16 Akim Demaille <akim@epita.fr>
10796
10797 Have more complete shift traces.
10798
10799 * data/yacc.c, data/lalr1.c, data/glr.c: Use YY_SYMBOL_PRINT
10800 to report Shifts instead of ad hoc YYDPRINTF invocations,
10801 including for the error token.
10802 * data/lalr1.cc (symprint_): Output the location.
10803 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): In C++, don't
10804 output the location within the %printer.
10805 Activate GLR tests, at least to make sure they compile properly.
10806 They still don't pass though.
10807 * tests/calc.at: Adjust expect verbose output, since now "Entering
10808 state..." is on a different line than the "Shifting" message.
10809
10810 2004-09-08 Akim Demaille <akim@epita.fr>
10811
10812 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Move the
10813 Bison directive from the Bison file to the invocation of this
10814 macro, so that these directives are passed to
10815 AT_BISON_OPTION_PUSHDEFS to get correct help macros.
10816 Use these helping macros (e.g., AT_LOC, AT_VAL and so forth).
10817 Move the AT_SETUP/AT_CLEANUP outside, to report as test title
10818 the extra Bison directives instead of the whole series.
10819 Change the grammar so that there are recoverable errors, and
10820 unrecoverable errors. Now we can have the parser give up before
10821 consuming the whole input. As a result we now can observe that
10822 the lookahead is freed when needed.
10823 Change the parser source to parse argv[1] instead of a hard coded
10824 string.
10825 Simplify yylex, and give a value and location to EOF.
10826 Simplify some invocations of AT_CHECK_PRINTER_AND_DESTRUCTOR that
10827 passed directives already coded in the file.
10828 Add some tests to check the location of "error".
10829 For some tests, the C++ parser is correct, and not yacc.c.
10830 For other tests, they provide different, but unsatisfying, values,
10831 so keep the C++ value so that at least one parser is "correct"
10832 according to the test suite.
10833 (Actions after errors): Remove, this is subsumed by the
10834 AT_CHECK_PRINTER_AND_DESTRUCTOR series.
10835
10836 2004-09-06 Akim Demaille <akim@epita.fr>
10837
10838 * data/lalr1.cc: Adjust the indentation of the labels.
10839 (Parser::pop): New.
10840 Use it.
10841
10842 2004-09-06 Akim Demaille <akim@epita.fr>
10843
10844 * data/yacc.cc, data/glr.cc (yydestruct): Accept an additional
10845 argument, an informative message.
10846 Call YY_SYMBOL_PRINT.
10847 Adjust all callers: integrate the associated YY_SYMBOL_PRINT.
10848 * data/lalr1.cc (destruct_): Likewise.
10849 In addition, no longer depend on b4_yysymprint_generate and
10850 b4_yydestruct_generate to generate these functions, do it "by
10851 hand".
10852
10853 2004-09-03 Akim Demaille <akim@epita.fr>
10854
10855 * data/glr.c, data/lalr1.cc, data/yacc.c: When YYABORT was
10856 invoked, yydestruct the lookahead.
10857 * tests/calc.at (Calculator $1): Update the expected lengths of
10858 traces: there is an added line for the discarded lookahead.
10859 * doc/bison.texinfo (Destructor Decl): Some rewording.
10860 Define "discarded" symbols.
10861
10862 2004-09-02 Akim Demaille <akim@epita.fr>
10863
10864 * data/lalr1.cc (translate_, destruct_): No reason to be static.
10865
10866 2004-09-02 Akim Demaille <akim@epita.fr>
10867
10868 * data/glr.c, yacc.c (YYDSYMPRINT): Remove, not used.
10869 (YYDSYMPRINTF): Rename as...
10870 (YY_SYMBOL_PRINT): this.
10871 * data/lalr1.cc (YY_SYMBOL_PRINT): New, modeled after the previous
10872 two.
10873 Use it instead of direct symprint_ calls.
10874 (yybackup): Tweak the "Now at end of input" case to match yacc.c's
10875 one.
10876
10877 2004-09-02 Akim Demaille <akim@epita.fr>
10878
10879 * data/lalr1.cc (b4_yysymprint_generate): New.
10880 (symprint_): New member function, defined when YYDEBUG.
10881 Use it consistently instead of token/nterm debugging output by
10882 hand.
10883 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust
10884 %printer calls to use cdebug_ when using lalr1.cc.
10885
10886 2004-08-30 Florian Krohm <florian@edamail.fishkill.ibm.com>
10887
10888 * data/glr.c: Guard the declarations of yypstack and yypdumpstack
10889 with #ifdef YYDEBUG.
10890
10891 2004-08-26 Akim Demaille <akim@epita.fr>
10892
10893 * doc/bison.texinfo (Implementing Loops): Rename as...
10894 (Implementing Gotos/Loops): this.
10895
10896 2004-08-13 Paul Eggert <eggert@cs.ucla.edu>
10897
10898 Adjust to latest gnulib.
10899 * bootstrap (gnulib_modules): Add xalloc-die.
10900 Set LC_ALL=C so that file names sort consistently.
10901 Prefer the gnulib copies of gettext.m4, glibc21.m4,
10902 inttypes_h.m4, lib-ld.m4, lib-prefix.m4, po.m4, stdint_h.m4,
10903 uintmax_t.m4, ulonglong.m4.
10904 (intl_files_to_remove): Add gettext.m4, lib-ld.m4, lib-prefix.m4,
10905 po.m4 since we are now using _gl.m4 instead.
10906
10907 2004-08-10 Florian Krohm <florian@edamail.fishkill.ibm.com>
10908
10909 * src/scan-action.l: Remove. Scanning of semantic actions is
10910 handled in scan-gram.l.
10911
10912 2004-08-07 Florian Krohm <florian@edamail.fishkill.ibm.com>
10913
10914 * src/scan-gram.l (handle_syncline): Use uniqstr_new not xstrdup.
10915
10916 * src/location.h (struct): The file member is a uniqstr.
10917 (equal_boundaries): Use UNIQSTR_EQ for comparison.
10918
10919 2004-07-22 Paul Eggert <eggert@cs.ucla.edu>
10920
10921 Fix bug with non-%union parsers that have printers or destructors,
10922 which led to a Bison core dump. Reported by Peter Fales in
10923 <http://lists.gnu.org/archive/html/bug-bison/2004-07/msg00014.html>.
10924
10925 * data/c.m4 (b4_symbol_actions): Don't assume %union was used.
10926 * data/lalr1.cc (yystype) [defined YYSTYPE]: Define to YYSTYPE,
10927 not to our own type.
10928 * src/output.c (symbol_destructors_output, symbol_printers_output):
10929 Don't assume %union.
10930 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR,
10931 AT_CHECK_PRINTER_AND_DESTRUCTOR): New argument
10932 UNION-FLAG. All callers changed.
10933 (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't assume %union.
10934 Use type char, not unsigned int, when declaring an array of char;
10935 this lets us remove a cast.
10936 (Printers and Destructors): Add non-%union test cases.
10937
10938 2004-06-21 Paul Eggert <eggert@cs.ucla.edu>
10939
10940 * doc/bison.texinfo: Minor editorial changes, mostly to the new
10941 GLR writeups. E.g., avoid frenchspacing and the future tense,
10942 change "lookahead" to "look-ahead", and change "wrt" to "with
10943 respect to".
10944
10945 2004-06-21 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
10946
10947 * doc/bison.texinfo (Merging GLR Parses, Compiler Requirements):
10948 New sections, split off from the GLR Parsers section. Put the new
10949 Simple GLR Parser near the start of the GLR section, for clarity.
10950 Rewrite connective text.
10951
10952 2004-06-21 Frank Heckenbach <frank@g-n-u.de>
10953
10954 * doc/bison.texinfo (Simple GLR Parsers): New section.
10955
10956 2004-06-21 Paul Eggert <eggert@cs.ucla.edu>
10957
10958 * NEWS, TODO, doc/bison.texinfo:
10959 Use "look-ahead" instead of "lookahead", to be consistent.
10960 * REFERENCES: Fix incorrect reference to DeRemer and Pennello,
10961 while we're fixing "look-ahead".
10962 * src/conflicts.c (shift_set): Renamed from shiftset.
10963 (look_ahead_set): Renamed from lookaheadset.
10964 * src/print.c: Likewise.
10965 * src/getargs.c (report_args): Add "look-ahead" as the new canonical
10966 name for "lookahead".
10967 (report_types, usage): Likewise.
10968 * src/getargs.h (report_look_ahead_tokens): Renamed from
10969 report_lookaheads.
10970 * src/lalr.c (compute_look_ahead_tokens): Renamed from
10971 compute_lookaheads.
10972 (state_look_ahead_tokens_count): Renamed from state_lookaheads_count.
10973 (look_ahead_tokens_print): Renamed from lookaheads_print.
10974 * src/state.c (state_rule_look_ahead_tokens_print): Renamed from
10975 state_rule_lookaheads_print.
10976 * src/state.h: Likewise.
10977 (reductions.look_ahead_tokens): Renamed from lookaheads.
10978 * tests/torture.at (AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR): Renamed from
10979 AT_DATA_LOOKAHEADS_GRAMMAR.
10980
10981 2004-06-03 Paul Eggert <eggert@cs.ucla.edu>
10982
10983 * README: Update location of patched M4 distribution.
10984
10985 2004-05-30 Albert Chin-A-Young <china@thewrittenword.com>
10986
10987 Don't assume the C++ compiler takes the same arguments as the C compiler
10988 (trivial change).
10989 * configure.ac (O0CXXFLAGS): New var.
10990 * tests/atlocal.in (CXXFLAGS): Use it.
10991
10992 2004-05-29 Paul Eggert <eggert@cs.ucla.edu>
10993
10994 Fix some "make check" problems with C++ reported by
10995 Albert Chin-A-Young for Tru64 C++ in this thread:
10996 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00049.html
10997
10998 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check for std::cerr.
10999 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
11000 Output to a .cc file for C++, not to a .c file.
11001 * tests/calc.at (AT_CHECK_CALC): Likewise.
11002 * tests/regression.at (AT_CHECK_DANCER): Likewise.
11003 * tests/local.at (AT_COMPILE_CXX): Default to OUTPUT.cc, not OUTPUT.c.
11004
11005 2004-05-28 Albert Chin-A-Young <china@thewrittenword.com>
11006
11007 * tests/calc.at, tests/actions.at: Workaround for SGI
11008 C++ compiler. (trivial change)
11009
11010 2004-05-27 Paul Eggert <eggert@cs.ucla.edu>
11011
11012 Spent a few hours checking out which prerequisite versions the
11013 current sources actually require. I went all the way back to
11014 Gettext 0.10.40, Automake 1.4, and Autoconf 2.57 and investigated
11015 a seemingly endless set of combinations of versions more recent
11016 than that. The bottom line is that the current sources require
11017 fairly recent versions of the build tools, and it'll be some work
11018 to change this.
11019 * configure.ac (AC_PREREQ): Increase from 2.58 to 2.59.
11020 (AM_INIT_AUTOMAKE): Increase from 1.7 to 1.8.
11021 (AM_GNU_GETTEXT_VERSION): Increase from 0.11.5 to 0.12.
11022 Add comments explaining why those particular versions are
11023 currently needed.
11024
11025 * src/parse-gram.y (lloc_default): Rewrite to avoid compiler bug
11026 in SGI MIPSpro 7.4.1m. Problem reported by Albert Chin-A-Young in
11027 <http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00037.html>.
11028
11029 * configure.ac (AC_PREREQ): Bump to 2.58, since 2.57 doesn't work
11030 (it fails with a Autoconf-without-aclocal-m4 diagnostic).
11031
11032 2004-05-26 Paul Eggert <eggert@cs.ucla.edu>
11033
11034 * configure.ac (AM_GNU_GETTEXT_VERSION): Lower it from 0.14.1 to
11035 0.11.5. Suggested by Bruno Haible.
11036 * bootstrap: Remove gettext version checking.
11037
11038 * doc/bison.texinfo (Decl Summary): Also mention that %union
11039 can depend on prerequisite types. Problem reported by Tim
11040 Van Holder.
11041
11042 2004-05-25 Paul Eggert <eggert@cs.ucla.edu>
11043
11044 * README: Mention GNU m4 1.4 bugs and Akim's patched version.
11045 * README-alpha: Don't tell people not to package this.
11046
11047 * bootstrap: Don't assume $(...) works; use `...` instead.
11048 Problem reported by Paul Hilfinger. Also, diagnose non-GNU
11049 gettext better.
11050
11051 * doc/bison.texinfo (Decl Summary, Bison Options): Clarify what's
11052 put into the -d output file, and mention what to do if YYSTYPE is
11053 defined as a macro.
11054
11055 2004-05-24 Paul Eggert <eggert@cs.ucla.edu>
11056
11057 Undo change made earlier today: it caused autopoint to not bring
11058 in ABOUT-NLS. Ouch. Instead, substitute our own diagnostic for
11059 autopoint's.
11060
11061 * bootstrap: Check that gettext version matches what's in
11062 configure.ac. Warn users to ignore robots.txt ERROR 404.
11063 * bootstrap: Undo today's earlier change (logged below).
11064 * configure.ac (AM_GNU_GETTEXT_VERSION): Likewise.
11065
11066 The gettext version checking is causing more trouble than it's
11067 curing; remove it. Problem reported by Paul Hilfinger.
11068
11069 * bootstrap: Issue a warning that one can expect a message
11070 'AM_GNU_GETTEXT is used, but not AM_GNU_GETTEXT_VERSION'.
11071 * configure.ac (AM_GNU_GETTEXT_VERSION): Remove.
11072
11073 2004-05-23 Paul Eggert <eggert@cs.ucla.edu>
11074
11075 Ensure that the C++ compiler used for testing actually works on a
11076 simple test program; if not, skip the C++-related tests. Problem
11077 reported by Vin Shelton in:
11078 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00026.html
11079
11080 * m4/cxx.m4: New file.
11081 * configure.ac (BISON_TEST_FOR_WORKING_CXX_COMPILER): Add.
11082 * tests/atlocal.in (BISON_CXX_WORKS): Add.
11083 * tests/local.at (AT_COMPILE_CXX): Use it.
11084
11085 2004-05-21 Paul Eggert <eggert@cs.ucla.edu>
11086
11087 * data/glr.c (yylloc): Output this macro even if locations are not
11088 being generated, as the GLR parser needs it even in that case.
11089 Problem reported by Troy A. Johnson
11090 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=195946>.
11091
11092 * configure.ac (AC_INIT): Update to 1.875e.
11093
11094 2004-05-21 Paul Eggert <eggert@cs.ucla.edu>
11095
11096 * NEWS: Version 1.875d.
11097 * configure.ac (AC_INIT): Likewise.
11098 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875d.
11099
11100 * configure.ac (--enable-gcc-warnings): Do not enable -Wshadow,
11101 -Wmissing-prototypes, or -Wstrict-prototypes for C++. The current
11102 lalr1.cc runs afoul of the first, and the last two are no longer
11103 supported by GCC 3.4.0.
11104 * README: Mention GNU m4 1.4 or later; mention m4 patches.
11105 * HACKING: Use ./bootstrap, not "make update" to import foreign files.
11106
11107 2004-05-06 Paul Eggert <eggert@cs.ucla.edu>
11108
11109 * src/muscle_tab.c (hash_muscle): Accept and return size_t, not
11110 unsigned int, for compatibility with latest gnulib hash module.
11111 * src/state.c (state_hash, state_hasher): Likewise.
11112 * src/symtab.c (hash_symbol, hash_symbol_hasher): Likewise.
11113 * src/uniqstr.c (hash_uniqstr): Likewise.
11114
11115 2004-05-03 Paul Eggert <eggert@cs.ucla.edu>
11116
11117 * NEWS: Unescaped newlines are no longer allowed in char & strings.
11118
11119 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER,
11120 SC_CHARACTER,SC_STRING>): Reject unescaped newlines in
11121 character and string literals.
11122 (unexpected_end): New function.
11123 (unexpected_eof): Use it.
11124 (unexpected_newline): New function.
11125 (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>): Coalesce duplicate
11126 actions.
11127
11128 * NEWS: Document %expect-rr.
11129
11130 * bootstrap (--gnulib-srcdir=*, --cvs-user=*):
11131 Fix typo by replacing $1 with $option.
11132 Remove more 'intl'-related files.
11133 Don't DEFUN AM_INTL_SUBDIR twice.
11134
11135 * lib/.cvsignore: Add strndup.h. Remove memchr.c, memcmp.c,
11136 memrchr.c, strcasecmp.c, strchr.c, strrchr.c, strspn.c, strtol.c,
11137 strtoul.c.
11138 * m4/.cvsignore: Add exitfail.m4, extensions.m4, gnulib.m4,
11139 hard-locale.m4, mbstate_t.m4, strerror_r.m4, strndup.m4,
11140 xstrndup.m4. Remove glibc21.m4, intdiv0.m4, inttypes-pri.m4,
11141 inttypes.m4, inttypes_h.m4, isc-posix.m4, lcmessage.m4,
11142 stdint_h.m4, uintmax_t.m4, ulonglong.m4.
11143 * src/.cvsignore: Add *.output.
11144
11145 * src/parse-gram.y: Put copyright notice inside %{ %} so it
11146 gets copied to the output file.
11147
11148 2004-04-28 Paul Eggert <eggert@twinsun.com>
11149
11150 Get files from the gnulib and po repositories, instead of relying
11151 on them being in our CVS. Upgrade to latest versions of gnulib
11152 and Automake.
11153
11154 * Makefile.am (SUBDIRS): Remove m4; Automake now does m4.
11155 * bootstrap: Bootstrap from gnulib and po repositories.
11156 Much of this code was stolen from GNU diff and GNU tar's bootstrap.
11157 * README-cvs: Document these changes. Remove version numbers from
11158 mentions of build tools, since they change so often. Mention Flex.
11159
11160 * configure.ac (AC_CONFIG_MACRO_DIR): Add, with m4 as arg.
11161 (gl_USE_SYSTEM_EXTENSIONS): Add.
11162 (AC_GNU_SOURCE, AC_AIX, AC_MINIX):
11163 Remove; no longer needed, as gl_USE_SYSTEM_EXTENSIONS
11164 does this for us.
11165 (AC_ISC_POSIX): Remove; we no longer support this
11166 ancient OS, as it gets in the way of latest Autoconf & gnulib.
11167 (AC_HEADER_STDC): Remove: we now assume C89 or better.
11168 (AC_CHECK_HEADERS_ONCE): Use instead of AC_CHECK_HEADERS.
11169 Do not check for C89 headers, except for locale.h which is used
11170 by the Yacc library and must port to K&R hosts.
11171 (AC_CHECK_FUNCS_ONCE): Use instead of AC_CHECK_FUNCS.
11172 Do not check for C89 functions, except for setlocale which is
11173 used by the Yacc library.
11174 (AC_CHECK_DECLS, AC_REPLACE_FUNCS): Remove; no longer needed.
11175 (gl_DIRNAME, gl_ERROR, gl_FUNC_ALLOCA, gl_FUNC_MEMCHR,
11176 gl_FUNC_MEMRCHR, gl_FUNC_STPCPY, gl_FUNC_STRNLEN, gl_FUNC_STRTOL,
11177 gl_GETOPT, gl_HASH, gl_MBSWIDTH, gl_OBSTACK, gl_QUOTE,
11178 gl_QUOTEARG, gl_XALLOC, jm_FUNC_GLIBC_UNLOCKED_IO, jm_FUNC_MALLOC,
11179 AM_GNU_GETTEXT): Remove; now done by:
11180 (GNULIB_AUTOCONF_SNIPPET): Add. "bootstrap" builds this for us.
11181 (AC_CONFIG_FILES): Remove m4/Makefile, as Automake now does this
11182 for us.
11183
11184 * lib/Makefile.am: Include gnulib.mk, built for us by "bootstrap".
11185 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES):
11186 Define to empty, as gnulib.mk will do the rest for us.
11187 ($(libbison_a_OBJECTS), stdbool.h): Remove, as gnulib.mk does this
11188 for us.
11189 (libbison_a_SOURCES): Define to $(lib_SOURCES) now.
11190 (lib_SOURCES): New symbol, containing only the non-gnulib libs.
11191
11192 * src/files.c: Include gnulib's xstrndup.h.
11193
11194 * src/system.h (MALLOC): Use xnmalloc, for better overflow checking.
11195 (REALLOC): Use xnrealloc, for likewise.
11196 (xstrndup, stpcpy): Remove decls, as gnulib does this for us now.
11197 (strnlen, memrchr): Remove decls; functions no longer used.
11198 Include <stpcpy.h>.
11199
11200 * config/depcomp, config/install-sh, lib/alloca.c, lib/argmatch.c,
11201 lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
11202 lib/error.c, lib/error.h, lib/getopt.c, lib/getopt.h,
11203 lib/getopt1.c, lib/gettext.h, lib/hash.c, lib/hash.h,
11204 lib/malloc.c, lib/mbswidth.c, lib/mbswidth.h, lib/memchr.c,
11205 lib/memcmp.c, lib/memrchr.c, lib/obstack.c, lib/obstack.h,
11206 lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h,
11207 lib/realloc.c, lib/stdbool_.h, lib/stpcpy.c, lib/strcasecmp.c,
11208 lib/strchr.c, lib/strncasecmp.c, lib/strnlen.c, lib/strrchr.c,
11209 lib/strspn.c, lib/strtol.c, lib/strtoul.c, lib/unlocked-io.h,
11210 lib/xalloc.h, lib/xmalloc.c, lib/xstrdup.c, lib/xstrndup.c,
11211 m4/Makefile.am, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
11212 m4/error.m4, m4/getopt.m4, m4/hash.m4, m4/malloc.m4,
11213 m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4, m4/memcmp.m4,
11214 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/prereq.m4,
11215 m4/quote.m4, m4/quotearg.m4, m4/realloc.m4, m4/stdbool.m4,
11216 m4/stpcpy.m4, m4/strnlen.m4, m4/strtol.m4, m4/strtoul.m4,
11217 m4/unlocked-io.m4, m4/xalloc.m4, po/LINGUAS, po/Makefile.in.in,
11218 po/Makevars, po/da.po, po/de.po, po/es.po, po/et.po, po/fr.po,
11219 po/hr.po, po/id.po, po/it.po, po/ja.po, po/ms.po, po/nl.po,
11220 po/pt_BR.po, po/ro.po, po/ru.po, po/sv.po, po/tr.po:
11221 Remove, as these files are now generated automatically
11222 by bootstrap or automake.
11223
11224 * po/ChangeLog: Remove: all but one entry was a duplicate
11225 of this file, and I moved that 2000-11-02 entry here.
11226
11227 * config/.cvsignore: Add Makefile, depcomp, install-sh.
11228 * lib/.cvsignore: Add alloca.c, alloca.h, alloca_.h, argmatch.c,
11229 argmatch.h, basename.c, dirname.c, dirname.h, error.c, error.h,
11230 exit.h, exitfail.c, exitfail.h, getopt.c, getopt.h, getopt1.c,
11231 getopt_int.h, gettext.h, gnulib.mk, hard-locale.c, hard-locale.h,
11232 hash.c, hash.h, malloc.c, mbswidth.c, mbswidth.h, memchr.c,
11233 memcmp.c, memrchr.c, obstack.c, obstack.h, quote.c, quote.h,
11234 quotearg.c, quotearg.h, realloc.c, stdbool_.h, stpcpy.c, stpcpy.h,
11235 strcasecmp.c, strchr.c, stripslash.c, strncasecmp.c, strndup.c,
11236 strnlen.c, strrchr.c, strspn.c, strtol.c, strtoul.c,
11237 unlocked-io.h, xalloc.h, xmalloc.c, xstrdup.c, xstrndup.c,
11238 xstrndup.h.
11239 * m4/.cvsignore: Remove Makefile, Makefile.in. Add alloca.m4,
11240 dirname.m4, dos.m4, error.m4, getopt.m4, hash.m4, mbrtowc.m4,
11241 mbswidth.m4, obstack.m4, onceonly.m4, quote.m4, quotearg.m4,
11242 stdbool.m4, stpcpy.m4, strnlen.m4, unlocked-io.m4, xalloc.m4.
11243 * po/.cvsignore: Add *.po, LINGUAS, Makefile.in.in, Makevars.
11244 * src/.cvsignore: Remove *_.c.
11245
11246
11247 * Makefile.maint (GZIP_ENV): Don't use --rsyncable if gzip doesn't
11248 support it. (The latest stable gzip doesn't.)
11249
11250 2004-04-27 Paul Eggert <eggert@twinsun.com>
11251
11252 * data/lalr1.cc (Parser::stos_) [! YYDEBUG]: Define even in this
11253 case, as stos_ is now used by destructors due to the 2004-02-09
11254 change.
11255
11256 Remove more K&R C support.
11257 * lib/libiberty.y (PARAMS): Remove. All uses removed.
11258 * lib/subpipe.c (errno): Remove decl.
11259 Include <stdlib.h> unconditionally.
11260 (EXIT_FAILURE): Remove macro.
11261 * src/complain.c (vfprintf, strerror): Remove.
11262 * src/system.h: Include limits.h, stdlib.h, string.h, locale.h
11263 unconditionally.
11264 (EXIT_FAILURE, EXIT_SUCCESS, setlocale): Remove defns.
11265 Use latest Autoconf recommendations for including inttypes.h, stdint.h.
11266 (strchr, strspn, memchr): Remove decls.
11267 * tests/calc.at (_AT_DATA_CALC_Y): Include stdlib.h, string.h
11268 unconditionally. Do not declare perror.
11269 * tests/conflicts.at (%nonassoc and eof): Include stdlib.h
11270 unconditionally.
11271
11272 * src/complain.c (_): Remove useless defn, as system.h defines this.
11273
11274 * lib/bitset.h (__INT_TO_PTR): Remove; workaround no longer needed
11275 with latest obstack.h.
11276 * lib/ebitset.c (ebitset_elt_alloc): Don't bother to cast args
11277 to procedure types, as obstack.h now does that for us.
11278 * lib/lbitset.c (lbitset_elt_alloc): Likewise.
11279
11280 * lib/subpipe.h [HAVE_SYS_TYPES_H]: Include <sys/types.h>,
11281 so that this include file can stand alone.
11282 * lib/subpipe.c: Do not include <sys/types.h>, as subpipe.h
11283 does this now. Include subpipe.h first after config.h, to
11284 test whether it can stand alone.
11285
11286 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't
11287 declare yyerror when using lalr.cc, as GCC 3.4.0 warns about the
11288 unused declaration.
11289
11290 * tests/synclines.at (%union synch line): Put a dummy member in
11291 the union, because empty unions aren't allowed in C. Caught
11292 by GCC 3.4.0.
11293
11294 2004-04-13 Jim Meyering <jim@meyering.net>
11295
11296 * src/conflicts.c (conflicts_print): Correct format string typo:
11297 use `%%' to produce literal `%'. (trivial change)
11298
11299 2004-03-30 Paul Eggert <eggert@twinsun.com>
11300
11301 * src/getargs.c (version): Update copyright year to 2004.
11302
11303 * data/c.m4 (b4_int_type): Use 'short int' rather than
11304 'short', and similarly for 'long', 'unsigned', etc.
11305 * data/glr.c (YYTRANSLATE, yyconfl, yySymbol, yyItemNum,
11306 yygetLRActions, yyprocessOneStack, yyrecoverSyntaxError,
11307 yy_yypstack, yydumpstack): Likewise.
11308 * data/lalr1.cc (user_token_number_max_, user_token_number_max_,
11309 translate_, seq_, [], pop, Slice, range_, operator+, operator+=):
11310 Likewise.
11311 * data/yacc.c (b4_int_type, yyss, YYSTACK_BYTES, yysigned_char,
11312 yy_stack_print, yyparse): Likewise.
11313 * doc/bison.texinfo (Prologue, Multiple Types): Likewise.
11314 * lib/bbitset.h (bitset_word, BITSET_WORD_BITS): Likewise.
11315 * lib/bitset.c (bitset_print): Likewise.
11316 * lib/bitset_stats.c (bitste_log_histogram_print): Likewise.
11317 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
11318 * lib/bitsetv.c (bitsetv_dump): Likewise.
11319 * lib/ebitset.c (EBITSET_ELT_BITS, ebitset_elt_alloc): Likewise.
11320 * lib/lbitset.c (LBITSET_ELT_BITS, lbitset_elt_alloc, debug_lbitset):
11321 Likewise.
11322 * src/LR0.c (allocate_itemsets): Likewise.
11323 * src/gram.h (rule_number, rule): Likewise.
11324 * src/lalr.h (goto_number): Likewise.
11325 * src/nullable.c (nullable_compute): Likewise.
11326 * src/output.c (prepare_rules): Likewise.
11327 * src/relation.c (relation_print, relation_digraph): Likewise.
11328 * src/relation.h (relation_node): Likewise.
11329 * src/state.h (state_number, transitions, errs, reductions,
11330 struct state): Likewise.
11331 * src/symtab.h (symbol_number, struct symbol): Likewise.
11332 * src/tables.c (vector_number, tally, action_number,
11333 default_goto, goto_actions): Likewise.
11334 * tests/existing.at (GNU Cim Grammar): Likewise.
11335 * tests/regression.at (Web2c Actions): Likewise.
11336
11337 * src/output.c (muscle_insert_short_int_table): Renamed from
11338 muscle_insert_short_table. All uses changed.
11339
11340 2004-03-25 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
11341
11342 * src/parse-gram.y: Define PERCENT_EXPECT_RR.
11343 (declaration): Replace expected_conflicts with expected_sr_conflicts.
11344 Add %expect-rr rule.
11345
11346 * src/scan-gram.l: Recognize %expect-rr.
11347
11348 * src/conflicts.h (expected_sr_conflicts): Rename from
11349 expected_conflicts.
11350 (expected_rr_conflicts): Declare.
11351
11352 * src/conflicts.c (expected_sr_conflicts): Rename from
11353 expected_conflicts.
11354 (expected_rr_conflicts): Define.
11355 (conflicts_print): Check r/r conflicts against expected_rr_conflicts
11356 for GLR parsers.
11357 Use expected_sr_conflicts in place of expected_conflicts.
11358 Warn if expected_rr_conflicts used in non-GLR parser.
11359
11360 * doc/bison.texinfo: Add documentation for %expect-rr.
11361
11362 2004-03-08 Paul Eggert <eggert@gnu.org>
11363
11364 Add support for hex token numbers. Suggested by Odd Arild Olsen in
11365 <http://lists.gnu.org/archive/html/bison-patches/2004-03/msg00000.html>.
11366
11367 * NEWS: Document hexadecimal tokens, no NUL bytes, %destructor
11368 in lalr1.cc.
11369 * doc/bison.texinfo (Token Decl): Add hexadecimal token numbers.
11370 * src/scan-gram.l (scan_integer): New function.
11371 ({int}): Use it.
11372 (0[xX][0-9abcdefABCDEF]+): New pattern, to support hex numbers.
11373 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>, \\x[0-9abcdefABCDEF]+,
11374 handle_action_dollar, handle_action_at, convert_ucn_to_byte):
11375 Say "long int", not "long", for uniformity with GNU style.
11376
11377 2004-02-25 Paul Eggert <eggert@twinsun.com>
11378
11379 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Ignore stdout from
11380 compilers. This fixes a problem with Intel's C++ compiler being
11381 chatty, reported by Guido Trentalancia in
11382 <http://lists.gnu.org/archive/html/bug-bison/2004-02/msg00030.html>.
11383
11384 2004-02-09 Alexandre Duret-Lutz <adl@gnu.org>
11385
11386 Support %destructor and merge error locations in lalr1.cc.
11387
11388 * data/lalr1.cc (b4_cxx_destruct_def): New macro.
11389 (Parser::stos_): Define unconditionally.
11390 (Parser::destruct_): New method. Generate its body with
11391 b4_yydestruct_generate.
11392 (Parser::error_start_): New attribute.
11393 (Parser::parse) <yyerrlab, yyerrlab1>: Call destruct_ on erroneous
11394 token which are discarded.
11395 (Parser::parse) <yyerrlab, yyerrorlab, yyerrlab1>: Update
11396 error_start_ when erroneous token are discarded.
11397 (Parser::parse) <yyerrlab1>: Compute the location of the error
11398 token so that it covers all the discarded tokens.
11399 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust so
11400 it can be called with `%skeleton "lalr1.cc"', and do that.
11401
11402 2004-02-02 Paul Eggert <eggert@twinsun.com>
11403
11404 * src/Makefile.am (AM_CPPFLAGS): New macro. It mentions
11405 $(top_srcdir)/lib and ../lib. This fixes a bug reported
11406 by Paul Hilfinger; the old INCLUDES value didn't mention ../lib.
11407 There's no need to mention top_builddir since Automake does that
11408 for us.
11409 (INCLUDES): Remove, as Automake says it's obsolescent.
11410 Contents migrated into AM_CPPFLAGS as described above.
11411 * lib/Makefile.am (INCLUDES): Remove; obsolescent.
11412
11413 2004-01-14 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
11414
11415 * data/glr.c (yytokenName): Bullet-proof against YYEMPTY token.
11416 (yyreportSyntaxError): Handle case where lookahead token is
11417 YYEMPTY.
11418
11419 2004-01-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
11420
11421 * data/glr.c: Put casts on uses of YYREALLOC and YYMALLOC so that
11422 resulting parsers are compilable with C++.
11423
11424 2003-12-23 Paul Eggert <eggert@twinsun.com>
11425
11426 * config/depcomp, config/install-sh: Sync with Automake 1.8.
11427 * src/output.c (output_skeleton): Rename local var.
11428 * tests/input.at (Torturing the Scanner): Don't use \x0 or \0 in
11429 Bison tokens, as this runs afoul of the 2003-10-07 change that
11430 disallowed NUL bytes in character constants or string literals.
11431
11432 * tests/local.at: Require Autoconf 2.59's Autotest.
11433 * tests/testsuite.at: Don't include local.at, since we now assume
11434 Autoconf 2.59 or later. Autoconf 2.59 had some problems with
11435 including it.
11436 * tests/Makefile.am ($(TESTSUITE)): Remove warning about ignoring
11437 multiple inclusion warnings.
11438
11439 2003-12-02 Akim Demaille <akim@epita.fr>
11440
11441 * doc/bison.texinfo (How Can I Reset the Parser): More about start
11442 conditions.
11443 From Bruno Haible.
11444
11445 2003-11-18 Alexandre Duret-Lutz <adl@gnu.org>
11446
11447 * doc/bison.texinfo (Bison Options): Escape `@' in `$@'.
11448
11449 2003-10-07 Paul Eggert <eggert@twinsun.com>
11450
11451 * tests/Makefile.am (clean-local): Don't run 'testsuite --clean'
11452 if testsuite doesn't exist.
11453
11454 * doc/bison.texinfo (Symbols): NUL bytes are not allowed in string
11455 literals, unfortunately.
11456 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
11457 Complain about NUL bytes in character constants or string literals.
11458
11459 2003-10-05 Paul Eggert <eggert@twinsun.com>
11460
11461 * NEWS: Don't document %no-default-prec, as it's still
11462 too experimental.
11463 * doc/bison.texinfo: Document %no-default-prec only if
11464 the defaultprec flag is set. Normally it's not.
11465
11466 2003-10-04 Paul Eggert <eggert@twinsun.com>
11467
11468 * data/glr.c (b4_rhs_value, b4_rhs_location): Yield a
11469 non-modifiable lvalue, instead of a modifiable one.
11470 * doc/bison.texinfo (Actions): Document that $$ can
11471 be assigned to. Do not claim that $$ and $N are
11472 array element references: user code should not rely on this.
11473
11474 2003-10-01 Paul Eggert <eggert@twinsun.com>
11475
11476 * src/parse-gram.h (PERCENT_NO_DEFAULT_PREC): New token.
11477 (grammar_declaration): Use it.
11478 * src/scan-gram.l: New token %no-default-prec.
11479 * tests/conflicts.at: Revamp tests to use %no-default-prec.
11480 * NEWS, doc/bison.texinfo: Document the above.
11481
11482 2003-10-01 Akim Demaille <akim@epita.fr>
11483
11484 VCG no longer supports long_straight_phase.
11485
11486 * src/vcg.c, src/vcg.h: Remove the handling of long_straight_phase.
11487 * src/print_graph.c (print_graph): Adjust.
11488
11489 2003-09-30 Frank Heckenbach <frank@g-n-u.de>
11490 and Paul Eggert <eggert@twinsun.com>
11491
11492 * doc/bison.texinfo (Decl Summary, Contextual Precedence,
11493 Table of Symbols): Document %default-prec.
11494 * src/parse-gram.y (PERCENT_DEFAULT_PREC): New token.
11495 (grammar_declaration): Set default_prec on %default-prec.
11496 * src/scan-gram.l (%default-prec): New token.
11497 * src/reader.h (default_prec): New flag.
11498 * src/reader.c: Likewise.
11499 (packgram): Handle it.
11500 * tests/conflicts.at (%default-prec without %prec,
11501 %default-prec with %prec, %default-prec 1): New tests.
11502
11503 2003-09-30 Paul Eggert <eggert@twinsun.com>
11504
11505 * tests/testsuite.at: Include local.at, not input.at, fixing
11506 a typo in the 2003-08-25 patch.
11507
11508 2003-08-27 Akim Demaille <akim@epita.fr>
11509
11510 * data/lalr1.cc (yyparse) [__GNUC__]: "Use" yyerrorlab to pacify
11511 GCC warnings.
11512
11513 2003-08-26 Akim Demaille <akim@epita.fr>
11514
11515 * config/announce-gen (print_changelog_deltas): Neutralize "<#" as
11516 "<\#" to avoid magic from Gnus when posting parts of this script.
11517
11518 2003-08-26 Akim Demaille <akim@epita.fr>
11519
11520 * data/lalr1.cc (Parser::report_syntax_error_): New, extracted from
11521 (Parser::parse): here.
11522 Adjust: nerrs and errstatus is now replaced by...
11523 (Parser::nerrs_, Parser::errstatus_): New.
11524
11525 2003-08-25 Akim Demaille <akim@epita.fr>
11526
11527 * config/announce-gen, Makefile.cfg: New.
11528 * Makefile.am: Adjust.
11529 * GNUmakefile, Makefile.maint: Update from CVS Autoconf, but
11530 keeping local WGET and WGETFLAGS modifications from Paul Eggert.
11531
11532 2003-08-25 Akim Demaille <akim@epita.fr>
11533
11534 When reducing initial empty rules, Bison parser read an initial
11535 location that is not defined. This results in garbage, and that
11536 affects Bison's own parser. Therefore we need (i) to extend Bison
11537 to support a means to initialize this location, and (ii) to use
11538 this CVS Bison to fix CVS Bison's parser.
11539
11540 * src/reader.h, reader.c (epilogue_augment): Remove, replace
11541 with...
11542 * src/muscle_tab.h, src/muscle_tab.c (muscle_code_grow): this.
11543 * src/parse-gram.y: Adjust.
11544 (%initial-action): New.
11545 (%error-verbose): Since we require CVS Bison, there is no reason
11546 not to use it.
11547 * src/scan-gram.l: Adjust.
11548 * src/Makefile.am (YACC): New, to make sure we use our own parser.
11549 * data/yacc.c (yyparse): Use b4_initial_action.
11550
11551 2003-08-25 Akim Demaille <akim@epita.fr>
11552
11553 * doc/bison.texinfo: Don't promote stdout for error messages.
11554
11555 2003-08-25 Akim Demaille <akim@epita.fr>
11556
11557 * data/lalr1.cc (Parser::reduce_print_): Remove unused yyi.
11558 From Alexandre Duret-Lutz.
11559
11560 2003-08-25 Akim Demaille <akim@epita.fr>
11561
11562 Version 1.875c.
11563
11564 2003-08-25 Akim Demaille <akim@epita.fr>
11565
11566 * data/lalr1.cc (Parser::stack_print_, YY_STACK_PRINT): New.
11567 Use them.
11568
11569 2003-08-25 Akim Demaille <akim@epita.fr>
11570
11571 * data/lalr1.cc (Parser::reduce_print_): New.
11572 Use it.
11573
11574 2003-08-25 Akim Demaille <akim@epita.fr>
11575
11576 Have lalr1.cc catch with Paul Eggert's patch to fix the infinite
11577 error recovery loops. This patch is based on
11578 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00000.html>.
11579 Also, augment the similarity between lalr1.cc and yacc.c.
11580 Note: the locations of error recovery rules are not correct yet.
11581
11582 * data/lalr1.cc: Comment changes to augment the similarity between
11583 lalr1.cc and yacc.c.
11584 (YYERROR): Goto to yyerrorlab, not yyerrlab1.
11585 (yyerrlab1): Remove, but where it used to be (now the bottom part of
11586 yyerrlab), when hitting EOF, pop the whole stack here instead of
11587 merely falling thru the default error handling mechanism.
11588 (yyerrorlab): New label, with the old contents of YYERROR,
11589 plus the following change: pop the stack of rhs corresponding
11590 to the production that invoked YYERROR. That is how Yacc
11591 behaves (required by POSIX).
11592 * tests/calc.at (AT_CHECK_CALC_LALR1_CC): No longer expected to
11593 fail.
11594
11595 2003-08-25 Akim Demaille <akim@epita.fr>
11596
11597 Tune local.at so that people can "autom4te -l autotest calc.at -o
11598 calc" for instance, to extract a sub test suite.
11599
11600 * tests/testsuite.at: Move the initialization, Autotest version
11601 requirement, and AT_TESTED invocation into...
11602 * tests/local.at: here.
11603 * tests/testsuite.at: Include it for compatibility with Autoconf
11604 2.57.
11605 * tests/Makefile.am ($(TESTSUITE)): Report that the warning should
11606 be ignore.
11607
11608 2003-08-04 Paul Eggert <eggert@twinsun.com>
11609
11610 Rework code slightly to avoid gcc -Wtraditional warnings.
11611 * data/glr.c (yyuserMerge): Return void, not YYSTYPE.
11612 The returned value is now stored in *YY0. All callers changed.
11613 * src/output.c (merge_output): Adjust to the above change.
11614
11615 2003-07-26 Paul Eggert <eggert@twinsun.com>
11616
11617 * data/glr.c (YYASSERT): New macro.
11618 (yyfillin, yydoAction, yyglrReduce, yysplitStack,
11619 yyresolveStates, yyprocessOneStack):
11620 Use `YYASSERT (FOO);' rather than `if (! (FOO)) abort ();'.
11621 Derived from a suggestion by Frank Heckenbach.
11622
11623 2003-07-25 Paul Eggert <eggert@twinsun.com>
11624
11625 * data/glr.c (yyglrReduce): Don't use C89 string concatenation,
11626 for portability to K&R C (after ansi2knr, presumably). See
11627 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>
11628 by Frank Heckenbach, though I have omitted the structure-initialization
11629 part of his glr-knr.diff patch since I recall that the Portable
11630 C Compiler didn't require that change.
11631
11632 Let the user specify how to allocate and free memory.
11633 Derived from a suggestion by Frank Heckenbach in
11634 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>.
11635 * data/glr.c (YYFREE, YYMALLOC, YYREALLOC): New macros.
11636 All uses of free, malloc, realloc changed to use these macros,
11637 and unnecessary casts removed.
11638 * data/yacc.c (YYFREE, YYMALLOC): Likewise.
11639
11640 2003-07-06 Matthias Mann <MatthiasMann@gmx.de>
11641
11642 * data/lalr1.cc (operator<<(std::ostream&, const Position&)):
11643 use s.empty() rather than s == "" to test for empty string; see
11644 <http://lists.gnu.org/archive/html/bison-patches/2003-07/msg00003.html>
11645 (trivial change)
11646
11647 2003-06-25 Akim Demaille <akim@epita.fr>
11648
11649 * config/depcomp, config/install-sh: Update from masters.
11650
11651 2003-06-20 Paul Eggert <eggert@twinsun.com>
11652
11653 * data/glr.c (YYLLOC_DEFAULT): Parenthesize arguments as needed,
11654 and return properly parenthesized result.
11655 * data/lalar1.cc (YYLLOC_DEFAULT): Likewise.
11656 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
11657 Remove unnecessary parentheses from uses.
11658 * doc/bison.texinfo (Location Default Action): Describe the
11659 conventions for parentheses.
11660
11661 2003-06-19 Paul Eggert <eggert@twinsun.com>
11662
11663 * data/glr.c (yyremoveDeletes, yy_reduce_print, yyglrReduce,
11664 yyreportTree): Do not assume that size_t is the same width as int,
11665 when printing sizes. Print sizes using an unsigned format.
11666 Problem reported by Frank Heckenbach in
11667 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00035.html>.
11668
11669 Port to Forte Developer 7 C compiler.
11670 * data/glr.c (struct YYLTYPE): If locations are not being used,
11671 declare a single dummy member, as empty structs do not conform
11672 to the C standard.
11673 (YYERROR, YYBACKUP): Do not use "do { ...; return foo; } while (0)";
11674 the Forte Developer 7 C compiler complains that end-of-loop
11675 code is not reached.
11676
11677 2003-06-17 Paul Eggert <eggert@twinsun.com>
11678
11679 * lib/libiberty.h (PARAMS): Spell argument as Args, not as X, to
11680 avoid warnings from picky compilers about redefinition of PARAMS.
11681
11682 2003-06-17 Paul Eggert <eggert@twinsun.com>
11683
11684 Version 1.875b.
11685
11686 * NEWS: Document 1.875b.
11687
11688 * lib/bbitset.h: Do not include config.h; that's the includer's job.
11689 Do not include <sys/types.h>; shouldn't be needed on a C89 host.
11690 * lib/bitset.h (bitset_compatible_p): Indent as per GNU standard.
11691 Don't use 'index' in comments, as it's a builtin fn on some hosts.
11692 * lib/bitset_stats.c: Include gettext.h unconditionally, as
11693 per recent gettext manual's suggestion.
11694 * lib/ebitset.c (ebitset_resize, ebitset_unused_clear):
11695 Use prototypes, not old-style definitions.
11696 * lib/lbitset.c (lbitset_unused_clear): Likewise.
11697 * lib/vbitset.c (vbitset_resize, vbitset_ones, vbitset_zero,
11698 vbitset_empty_p, vbitset_copy1, vbitset_not, vbitset_equal_p,
11699 vbitset_subset_p, vbitset_disjoint_p, vbitset_and, vbitset_and_cmp,
11700 vbitset_andn, vbitset_andn_cmp, vbitset_or, vbitset_or_cmp,
11701 vbitset_xor, vbitset_xor_cmp, vbitset_and_or, vbitset_and_or_cmp,
11702 vbitset_andn_or, vbitset_andn_or_cmp, vbitset_or_and,
11703 vbitset_or_and_cmp, vbitset_copy): Likewise.
11704
11705 * lib/libiberty.h: Do not include config.h; that's the includer's job.
11706 Do not include <stdlib.h>.
11707 (PARAMS): Define unconditionally for C89.
11708 (ATTRIBUTE_NORETURN): Remove.
11709 (ATTRIBUTE_UNUSED): Define unconditionally.
11710
11711 Upgrade to 2003-06-08 libbitset, submitted by Michael Hayes in:
11712 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00005.html>
11713 * lib/Makefile.am (bitsets_sources): Add vbitset.c, vbitset.h.
11714 * lib/vbitset.c, lib/vbitset.h: New files.
11715 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
11716 lib/bitset_stats.c, lib/ebitset.c, lib/lbitset.c: Import
11717 from libbitset.
11718
11719 * doc/bison.texinfo (How Can I Reset the Parser): Renamed from
11720 `How Can I Reset @code{yyparse}', since texinfo does not allow
11721 arbitrary @ in node names.
11722
11723 * m4/Makefile.am (EXTRA_DIST): Add the following files, which
11724 shouldn't be needed according to the gettext 0.12.1 documentation
11725 but which seem to be needed anyway: codeset.m4 glibc21.m4
11726 intdiv0.m4 inttypes-pri.m4 inttypes.m4 inttypes_h.m4 isc-posix.m4
11727 lcmessage.m4 nls.m4 po.m4 stdint_h.m4 uintmax_t.m4 ulonglong.m4.
11728 * po/Makefile.in.in: Upgrade to gettext 0.12.1 version.
11729
11730 * lib/.cvsignore: Add stdbool.h.
11731 * m4/.cvsignore: Add nls.m4, po.m4.
11732
11733 Upgrade to CVS gnulib.
11734 * stdbool_.h: File renamed from stdbool.h.in.
11735 * configure.ac (AM_STDBOOL_H): Invoke this instead of
11736 AC_HEADER_STDBOOL.
11737 (AM_GNU_GETTEXT): Put brackets around args, as latest manual suggests.
11738 (AM_GNU_GETTEXT_VERSION): Update to 0.12.1.
11739 * lib/Makefile.am (EXTRA_DIST): Add stdbool_.h.
11740 (MOSTLYCLEANFILES): New var.
11741 ($(libbison_a_OBJECTS)): Depend on $(STDBOOL_H).
11742 (stdbool.h): New rule.
11743 * lib/dirname.c, lib/dirname.h, lib/hash.c, lib/hash.h,
11744 lib/malloc.c, lib/obstack.h, lib/quote.c, lib/realloc.c,
11745 lib/strcasecmp.c, lib/xalloc.h, m4/alloca.m4, m4/onceonly.m4,
11746 m4/quote.m4: Upgrade to today's gnulib.
11747
11748 * tests/calc.at (AT_CHECK_CALC): New option EXPECTED-TO-FAIL.
11749 (AT_CHECK_CALC_LALR1_CC): Use it, since the C++ LALR parser fails
11750 the tests right now.
11751 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Ensure yylex and
11752 yyerror are declared before use; C99 requires this.
11753
11754 2003-06-09 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
11755
11756 * data/glr.c (YYERROR): Update definition to reset yyerrState to 0
11757 first.
11758 (yyrecoverSyntaxError): Correct the logic for setting and testing
11759 yyerrState.
11760 Correct comment on handling EOF.
11761 Allow states with only a default reduction, rather than failing
11762 (I can't quite reconstruct why these were not allowed before).
11763
11764 Fixes to avoid problem that $-N rules in GLR parsers can cause
11765 buffer overruns, corrupting state.
11766
11767 * src/output.c (prepare_rules): Output max_left_semantic_context
11768 definition.
11769 * src/reader.h (max_left_semantic_context): New variable declaration.
11770 * src/scan-gram.l (max_left_semantic_context): Define.
11771 (handle_action_dollar): Update max_left_semantic_context.
11772 * data/glr.c (YYMAXLEFT): New definition.
11773 (yydoAction): Increase size of yyrhsVals by YYMAXLEFT.
11774 (yyresolveAction): Ditto.
11775
11776 Fixes to problems with location handling in GLR parsers reported by
11777 Frank Heckenbach (2003/06/05).
11778
11779 * data/glr.c (YYLTYPE): Make trivial if locations not used.
11780 (YYRHSLOC): Add parentheses, and define only if locations used.
11781 (YYLLOC_DEFAULT): Add parentheses, and give trivial definition if
11782 locations not used.
11783 (yyuserAction): Use YYLLOC_DEFAULT to set *yylocp.
11784 (yydoAction): Remove redundant initialization of *yyvalp and *yylocp.
11785
11786 * tests/cxx-type.at: Exercise location information; update tests
11787 to differentiate output with and without locations.
11788 Remove forward declarations of yylex and yyerror---caused errors
11789 because default YYLTYPE not yet defined.
11790 Change semantic actions to compute strings, rather than printing
11791 them directly (to test proper passing of semantics values). Change
11792 output to prefix notation and update test data and expected results.
11793 (yylex): Track locations.
11794 (stmtMerge): Return value rather than printing, and include arguments
11795 in value.
11796
11797 2003-06-03 Paul Eggert <eggert@twinsun.com>
11798
11799 Avoid warnings generated by GCC 2.95.4 when Bison is
11800 configured with --enable-gcc-warnings.
11801 * data/lalr1.cc (yy::]b4_parser_class_name[::parse,
11802 yy::]b4_parser_class_name[::translate_,
11803 yy::Stack::operator[] (unsigned),
11804 yy::Stack::operator[] (unsigned) const,
11805 yy::Slice::operator[] (unsigned),
11806 yy::Slice::operator[] (unsigned) const):
11807 Rename local vars to avoid warnings.
11808 * tests/glr-regression.at (Improper handling of embedded actions
11809 and $-N in GLR parsers): Remove unused local variable from yylex.
11810 * tests/regression.at (_AT_DATA_DANCER_Y): Declare yylex to take
11811 (void) as arg when not pure, since we now assume C89 when building
11812 Bison. Pacify GCC by using parameter.
11813
11814 2003-06-02 Paul Eggert <eggert@twinsun.com>
11815
11816 * data/lalr1.cc (yy::Position::lines, yy::Position::columns,
11817 yy::Location::lines, yy::Location::columns): Rename arguments
11818 to avoid shadowing; this removes a warning generated by GCC 3.3.
11819
11820 2003-06-01 Paul Eggert <eggert@twinsun.com>
11821
11822 Don't pass C-only warning optins (e.g., -Wmissing-declarations)
11823 to g++, as GCC 3.3 complains if you do it.
11824 * configure.ac (WARNING_CXXFLAGS): New subst. Set it to
11825 everything that WARNING_CFLAGS has, except omit warnings
11826 not suitable for C++.
11827 (AC_PROG_CXX): Use this instead of AC_CHECK_PROGS([CXX], [g++]).
11828 * tests/atlocal.in (CXXFLAGS): New var.
11829 * tests/local.at (AT_COMPILE_CXX): Use it instead of CFLAGS.
11830
11831 Fix a GLR parser bug I reported in February; see
11832 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00008.html>.
11833 The problem was that GLR parsers did not conform to the C standard,
11834 because actions like { $1 = $2 + $3; } expanded to expressions
11835 that invoked YYFILL in separate subexpressions, and YYFILL assigned
11836 to a local variable. The C standard says that expressions
11837 like (var = f ()) + (var = f ()) have undefined behavior.
11838 Another problem was that GCC sometimes issues warnings that
11839 yyfill and its parameters are unused.
11840
11841 * data/glr.c (yyfillin): Renamed from the old yyfill. Mark
11842 as possibly unused.
11843 (yyfill): New function.
11844 (YYFILL): Use it.
11845 (yyuserAction): Change type of yynormal to bool, so that it matches
11846 the new yyfill signature. Mark it as possibly unused.
11847
11848
11849 Follow up on a bug I reported in February, where a Bison-generated
11850 parser can loop. Provide a test case and a fix for yacc.c. I
11851 don't have a fix for lalr1.cc or for glr.c, unfortunately.
11852 The original bug report is in:
11853 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00044.html>
11854
11855 * data/yacc.c (YYERROR): Now just 'goto yyerrorlab', since the
11856 macro's size was becoming unwieldy.
11857 (yyerrlab): Do not discard an empty lookahead symbol, as this
11858 might destroy garbage.
11859 (yyerrorlab): New label, with the old contents of YYERROR,
11860 plus the following change: pop the stack of rhs corresponding
11861 to the production that invoked YYERROR. That is how Yacc
11862 behaves, and POSIX requires this behavior.
11863 (yyerrlab1): Use YYPOPSTACK instead of its definiens.
11864 * tests/calc.at (_AT_DATA_CALC_Y): Include unistd.h if available.
11865 Define 'alarm' to do nothing if unistd.h is not available.
11866 Add a new rule "exp: '-' error;" to test the above change to
11867 data/yacc.c. Use 'alarm' to abort any test taking longer than
11868 10 seconds, as it's probably looping.
11869 (AT_CHECK_CALC): Test recovery from error in new grammar rule.
11870 Also, the new yacc.c generates two fewer diagnostics for an
11871 existing test.
11872
11873 2003-05-24 Paul Eggert <eggert@twinsun.com>
11874
11875 * data/glr.c (YYSTACKEXPANDABLE): Do not evaluate
11876 YYSTYPE_IS_TRIVIAL or YYSTYPE_IS_TRIVIAL unless they are defined.
11877 This fixes a problem reported by John Bowman when the Compaq/HP
11878 Alpha cxx compiler happy (e.g. using cxx -D__USE_STD_IOSTREAM
11879 -ansi -Wall -gall).
11880 * data/yacc.c (union yyalloc): Likewise.
11881 (YYCOPY): Do not evaluate __GNUC__ unless it is defined.
11882
11883 Switch from 'int' to 'bool' where that makes sense.
11884
11885 * lib/abitset.c (abitset_test, abitset_empty_p, abitset_equal_p,
11886 abitset_subset_p, abitset_disjoint_p, abitset_and_cmp,
11887 abitset_andn_cmp, abitset_or_cmp, abitset_xor_cmp, abitset_and_or,
11888 abitset_and_or_cmp, abitset_andn_or_cmp, abitset_or_and_cmp):
11889 Return or accept bool, not int. All callers changed.
11890 * lib/bbitset.h: (bitset_toggle_, bitset_copy_, bitset_and_or_cmp_,
11891 bitset_andn_or_cmp_, bitset_or_and_cmp_): Likewise.
11892 * lib/bitset.c (bitset_only_set_p, bitset_print, bitset_toggle_,
11893 bitset_copy_, bitset_op4_cmp, bitset_and_or_cmp_, bitset_andn_or_cmp_,
11894 bitset_or_and_cmp_): Likewise.
11895 * lib/bitset.h (bitset_test, bitset_only_set_p): Likewise.
11896 * lib/bitset_stats.c (bitset_stats_print, bitset_stats_toggle,
11897 bitset_stats_test, bitset_stats_empty_p, bitset_stats_disjoint_p,
11898 bitset_stats_equal_p, bitset_stats_subset_p, bitset_stats_and_cmp,
11899 bitset_stats_andn_cmp, bitset_stats_or_cmp, bitset_stats_xor_cmp,
11900 bitset_stats_and_or_cmp, bitset_stats_andn_or_cmp,
11901 bitset_stats_or_and_cmp): Likewise.
11902 * lib/ebitset.c (ebitset_elt_zero_p, ebitset_equal_p, ebitset_copy_cmp,
11903 ebitset_test, ebitset_empty_p, ebitset_subset_p, ebitset_disjoint_p,
11904 ebitset_op3_cmp, ebitset_and_cmp, ebitset_andn_cmp, ebitset_or_cmp,
11905 ebitset_xor_cmp): Likewise.
11906 * lib/lbitset.c (lbitset_elt_zero_p, lbitset_equal_p, lbitset_copy_cmp,
11907 lbitset_test, lbitset_empty_p, lbitset_subset_p, lbitset_disjoint_p,
11908 lbitset_op3_cmp, lbitset_and_cmp, lbitset_andn_cmp, lbitset_or_cmp,
11909 lbitset_xor_cmp): Likewise.
11910 * lib/bbitset.h: Include <stdbool.h>.
11911 (struct bitset_vtable): The following members now return bool, not
11912 int: toggle, test, empty_p, disjoint_p, equal_p, subset_p,
11913 and_cmp, andn_cmp, or_cmp, xor_cmp, and_or_cmp, andn_or_cmp,
11914 or_and_cmp).
11915 * src/conflicts.c (count_rr_conflicts): Likewise.
11916 * lib/bitset_stats.h (bitset_stats_enabled): Now bool, not int.
11917 All uses changed.
11918 * lib/ebitset.c (ebitset_obstack_init): Likewise.
11919 * lib/lbitset.c (lbitset_obstack_init): Likewise.
11920 * src/getargs.c (debug_flag, defines_flag, locations_flag,
11921 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
11922 graph_flag): Likewise.
11923 * src/getargs.h (debug_flag, defines_flag, locations_flag,
11924 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
11925 graph_flag): Likewise.
11926 * src/output.c (error_verbose): Likewise.
11927 * src/output.h (error_verbose): Likewise.
11928 * src/reader.c (start_flag, typed): Likewise.
11929 * src/reader.h (typed): Likewise.
11930 * src/getargs.c (LOCATIONS_OPTION): New constant.
11931 (long_options, getargs): Use it.
11932 * src/lalr.c (build_relations): Use bool, not int.
11933 * src/nullable.c (nullable_compute): Likewise.
11934 * src/print.c (print_reductions): Likewise.
11935 * src/tables.c (action_row, pack_vector): Likewise.
11936 * src/muscle_tab.h (MUSCLE_INSERT_BOOL): New macro.
11937 * src/output.c (prepare): Use it.
11938 * src/output.c (token_definitions_output,
11939 symbol_destructors_output, symbol_destructors_output): Use string,
11940 not boolean integer, to keep track of whether to output separator.
11941 * src/print_graph.c (print_core): Likewise.
11942 * src/state.c (state_rule_lookaheads_print): Likewise.
11943
11944 * config/install-sh: Sync from automake 1.7.5.
11945
11946 2003-05-14 Paul Eggert <eggert@twinsun.com>
11947
11948 * src/parse-gram.y (rules_or_grammar_declaration): Require a
11949 semicolon after a grammar declaration, in the interest of possible
11950 future changes to the Bison input language.
11951 Do not allow a stray semicolon at the start of the grammar.
11952 (rhses.1): Allow one or more semicolons after any rule, including
11953 just before "|" as required by POSIX.
11954 * tests/input.at (Torturing the Scanner): Add tests for ";|" in a
11955 grammar.
11956
11957 2003-05-14 Alexandre Duret-Lutz <adl@gnu.org>
11958
11959 %parse-param support for lalr1.cc.
11960
11961 * data/lalr1.cc (b4_parse_param_decl, b4_parse_param_cons,
11962 b4_cc_constructor_calls, b4_cc_constructor_call,
11963 b4_parse_param_vars, b4_cc_var_decls, b4_cc_var_decl): New m4
11964 definitions.
11965 (yy::b4_parser_class_name::b4_parser_class_name): Take extra
11966 parse-param arguments.
11967 (yy::b4_parser_class_name): Declare instance variables to
11968 hold parse-param arguments.
11969 * tests/calc.at: s/value/semantic_value/ because value clashes
11970 with a member of yy::b4_parser_class_name. Adjust C++ code
11971 to handle %parse-param. Enable %parse-param test in C++.
11972
11973 2003-05-12 Paul Eggert <eggert@twinsun.com>
11974
11975 * doc/bison.texinfo (How Can I Reset @code{yyparse}): Reword the
11976 English a bit. Fix fclose typo. Change "const char" to "char
11977 const", and use ANSI C rather than K&R for "main". Suggest
11978 YY_FLUSH_BUFFER over yyrestart (as that is what Flex recommends)
11979 and suggest yy_switch_to_buffer.
11980
11981 2003-05-05 Paul Eggert <eggert@twinsun.com>
11982
11983 * lib/bitset.h (__INT_TO_PTR): Define to a value that presumes
11984 C89. This avoids a diagnostic on compilers that define __STDC__
11985 to 0, fixing a problem with Tru64 cc reported by Martin Mokrejs in
11986 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
11987
11988 2003-05-03 Paul Eggert <eggert@twinsun.com>
11989
11990 * lib/bitset.h (BITSET_FOR_EACH, BITSET_FOR_EACH_REVERSE):
11991 Do not overrun array bounds.
11992 This should fix a bug reported today by Olatunji Oluwabukunmi in
11993 <http://lists.gnu.org/archive/html/bug-bison/2003-05/msg00004.html>.
11994
11995 2003-04-29 Akim Demaille <akim@epita.fr>
11996
11997 * src/gram.h, src/gram.c (pure_parser, glr_parser): Move to...
11998 * src/getargs.c, src/getargs.h: here, as bool, not int.
11999 (nondeterministic_parser): New.
12000 * src/parse-gram.y, src/scan-gram.l: Support
12001 %nondeterministic-parser.
12002 * src/output.c (prepare): Use nondeterministic_parser instead
12003 of glr_parser where appropriate.
12004 * src/tables.c (conflict_row, action_row, save_row)
12005 (token_actions, token_actions, pack_vector): Ditto.
12006
12007 2003-04-29 Akim Demaille <akim@epita.fr>
12008
12009 * doc/bison.texinfo (C++ Parsers, Implementing Loops): New.
12010
12011 2003-04-29 Akim Demaille <akim@epita.fr>
12012
12013 * tests/calc.at: Also test yacc.c and glr.c (but not lalr1.cc yet)
12014 with %pure-parser and %locations to exercise the patch from Yakov
12015 Markovitch below.
12016
12017 2003-04-28 Tim Van Holder <tim.van.holder@pandora.be>
12018
12019 * data/yacc.c: (b4_lex_param): Corrected for the case where
12020 %lex-param is provided and %pure-parser isn't.
12021
12022 2003-04-27 Paul Eggert <eggert@twinsun.com>
12023
12024 Avoid gcc -Wundef warnings reported by Gerald Pfeifer in
12025 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00044.html>.
12026 * data/yacc.c (YYSTACK_ALLOC): Don't evaluate YYSTACK_USE_ALLOCA
12027 if it is not defined.
12028 (YYMAXDEPTH): Don't evaluate YYMAXDEPTH if it is not defined.
12029
12030 2003-04-26 Paul Eggert <eggert@twinsun.com>
12031
12032 * data/lalr1.cc (yy::Parser::pact_ninf_, yy::Parser::table_ninf_):
12033 Declare to be of type suitable for the ninf value itself, not of
12034 type suitable for the corresponding table, since the latter might
12035 be unsigned but the ninf value might be negative. This fixes a
12036 bug reported by Alexandre Duret-Lutz in
12037 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00017.html>.
12038
12039 * configure.ac (AC_FUNC_ERROR_AT_LINE): Remove, since gl_ERROR
12040 invokes it. We shouldn't invoke it twice because it will attempt
12041 to put error.o in the archive twice. This fixes a glitch reported
12042 by Martin Mokrejs in
12043 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
12044
12045 2003-04-21 Paul Eggert <eggert@twinsun.com>
12046
12047 * m4/error.m4: Update from Bruno Haible's 2003-04-14 patch
12048 to gnulib.
12049
12050 2003-04-21 Yakov Markovitch <Markovitch@iso.ru>
12051
12052 * data/glr.c (yyexpandGLRStack) [!YYSTACKEXPANDABLE]:
12053 Fix obvious typo that results in uncompilable GLR parsers
12054 when both %pure-parser and %locations are used. (trivial change)
12055
12056 2003-04-17 Paul Eggert <eggert@twinsun.com>
12057
12058 * src/scan-gram.l: Add %option nounput, since we no longer use unput.
12059 (unexpected_eof): Renamed from unexpected_end_of_file, for brevity.
12060 Do not insert the expected token via unput, as this runs afoul
12061 of a POSIX-compatibility bug in flex 2.5.31.
12062 All uses changed to BEGIN the parent state,
12063 since we no longer insert the expected token via unput.
12064 * tests/regression.at (Invalid inputs): Remove cascaded diagnostic
12065 that is no longer emitted after the above change.
12066
12067 * src/conflicts.c (set_conflicts): Resolve all conflicts, not just
12068 the first one. This change is from Paul Hilfinger, and it fixes
12069 regression reported by Werner Lemberg in
12070 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
12071
12072 (resolve_sr_conflict): Don't invoke state_errs_set
12073 unless one or more tokens have been explicitly made errors.
12074 Otherwise, the above change causes Bison to abort.
12075
12076 * tests/existing.at (GNU pic Grammar): New test case, taken from
12077 Lemberg's email.
12078
12079 2003-03-31 Akim Demaille <akim@epita.fr>
12080
12081 * doc/Makefile.am (AM_MAKEINFOFLAGS): Don't split the info file.
12082
12083 2003-03-31 Akim Demaille <akim@epita.fr>
12084
12085 * src/output.c (prepare_symbols): Avoid trailing spaces in the
12086 output.
12087
12088 2003-03-31 Akim Demaille <akim@epita.fr>
12089
12090 * doc/bison.texinfo (Strings are Destroyed): s/losses/loses/.
12091 From Paul Hilfinger.
12092
12093 2003-03-29 Akim Demaille <akim@epita.fr>
12094
12095 * m4/error.m4: Do not put under dynamic conditions some code which
12096 expansion is under static control.
12097
12098 2003-03-29 Akim Demaille <akim@epita.fr>
12099
12100 * doc/bison.texinfo (How Can I Reset @code{yyparse}): New.
12101
12102 2003-03-29 Akim Demaille <akim@epita.fr>
12103
12104 * doc/bison.texinfo (Strings are Destroyed): New.
12105
12106 2003-03-13 Paul Eggert <eggert@twinsun.com>
12107
12108 * .cvsignore: Add configure.lineno.
12109 * src/.cvsignore: Add yacc.
12110 * tests/.cvsignore: Add testsuite.log.
12111 * doc/fdl.texi: Sync with latest FSF version.
12112
12113 2003-03-12 Paul Eggert <eggert@twinsun.com>
12114
12115 * scan-gram.l (YY_USER_INIT): Initialize code_start, too.
12116 (<INITIAL><<EOF>>, <SC_PRE_CODE><<EOF>>): Set *loc to the scanner
12117 cursor, instead of leaving it undefined. This fixes a bug
12118 reported by Tim Van Holder in
12119 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00023.html>.
12120 * tests/input.at (Torturing the Scanner): Test the scanner on
12121 an empty input file, which was Tim Van Holder's test case.
12122
12123 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): When checking whether
12124 <sys/resource.h> can be included, include sys/time.h and
12125 sys/times.h first, if available. This works around the SunOS
12126 4.1.4 porting bug reported by Bruce Becker in
12127 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00018.html>.
12128
12129 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't
12130 AC_CHECK_HEADERS([sys/wait.h]), as this interferes with
12131 AC_HEADER_SYS_WAIT.
12132
12133 Merge changes from gnulib. This was prompted because the CVS
12134 snapshot didn't build on Solaris 7 due to strnlen problems.
12135
12136 These changes need to be merged back into gnulib:
12137 * lib/hash.c: Include <stdbool.h> unconditionally.
12138 * m4/onceonly.m4 (m4_quote): New macro.
12139 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
12140 Quote AC_FOREACH variable-expansions properly.
12141 The 2003-01-03 obstack.h change also needs merging.
12142 {end of changes requiring merging}
12143
12144 * lib/stdbool.h.in, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
12145 m4/getopt.m4, m4/hash.m4, m4/malloc.m4, m4/memchr.m4,
12146 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/quote.m4,
12147 m4/quotearg.m4, m4/realloc.m4, m4/stpcpy.m4, m4/strnlen.m4,
12148 m4/strtol.m4, m4/strtoul.m4, m4/unlocked-io.m4, m4/xalloc.m4:
12149 New files, imported from gnulib.
12150 * m4/Makefile.am (EXTRA_DIST): Add the new m4/*.m4 files mentioned
12151 above.
12152
12153 * lib/mbswidth.c, m4/error.m4, m4/mbrtowc.m4, m4/mbswidth.m4,
12154 m4/memcmp.m4, m4/prereq.m4, m4/stdbool.m4: Update to current
12155 gnulib sources.
12156
12157 * configure.ac (gl_DIRNAME, gl_GETOPT, gl_HASH, gl_QUOTE, gl_XALLOC):
12158 Add.
12159 (gl_ERROR): New, replacing jm_PREREQ_ERROR.
12160 (gl_FUNC_ALLOCA): New, replacing AC_FUNC_ALLOCA.
12161 (gl_FUNC_STPCPY): New, replacing AC_REPLACE_FUNCS(stpcpy).
12162 (gl_FUNC_STRNLEN): New, replacing AC_FUNC_STRNLEN.
12163 (gl_MBSWIDTH): New, replacing jm_PREREQ_MBSWIDTH.
12164 (gl_OBSTACK): New, replacing AC_FUNC_OBSTACK.
12165 (gl_QUOTEARG): New, replacing jm_PREREQ_QUOTEARG.
12166 (jm_FUNC_GLIBC_UNLOCKED_IO, gl_FUNC_STPCPY, gl_FUNC_STRTOL): New.
12167 (jm_FUNC_MALLOC): New, replacing AC_FUNC_MALLOC.
12168 (jm_FUNC_REALLOC): New, replacing AC_FUNC_REALLOC.
12169 (jm_PREREQ_ARGMATCH): Remove.
12170 (AC_REPLACE_FUNCS): Remove memchr, memrchr, stpcpy, strtol, strtoul.
12171 * lib/Makefile.am (libbison_a_SOURCES): Add argmatch.c, argmatch.h.
12172
12173 * src/system.h: Include <stdbool.h> unconditionally.
12174
12175 * lib/bbitset.h: Include <limits.h> unconditionally. We have been
12176 assuming at least C89 in the bitset code for some time now.
12177
12178 2003-03-03 Akim Demaille <akim@epita.fr>
12179
12180 * ro.po: New.
12181
12182 2003-03-02 Akim Demaille <akim@epita.fr>
12183
12184 * doc/bison.texinfo (Table of Symbols): Reactivate the
12185 documentation for %lex-param, and %parse-param.
12186
12187 2003-03-02 Akim Demaille <akim@epita.fr>
12188
12189 * data/yacc.c, data/glr.c, data/lal1.cc: Use similar code to
12190 generate verbose error messages.
12191 Use the number of tokens as an upper bound in yytname, as it
12192 cannot be a non terminal.
12193
12194 2003-03-02 Akim Demaille <akim@epita.fr>
12195
12196 * tests/regression.at (_AT_DATA_DANCER_Y): Fix the expected error
12197 message.
12198
12199 2003-03-02 Akim Demaille <akim@epita.fr>
12200
12201 * tests/regression.at (_AT_DATA_DANCER_Y, AT_CHECK_DANCER): New.
12202 Use them to exercise yycheck overrun.
12203 Based on Andrew Suffield's grammar.
12204
12205 2003-03-02 Akim Demaille <akim@epita.fr>
12206
12207 Create tests/local.at for Bison generic testing macros.
12208
12209 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Move to...
12210 * tests/local.at (AT_BISON_OPTION_PUSHDEFS, AT_BISON_OPTION_POPDEFS):
12211 This new file.
12212 * tests/calc.at (AT_CHECK_CALC): Adjust.
12213 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR)
12214 (AT_COMPILE, AT_COMPILE_CXX, AT_PARSER_CHECK): Move to...
12215 * tests/local.at: here.
12216 (AT_COMPILE_CXX): Tags the tests using it as c++.
12217 Ignore the test if CXX is not functional.
12218
12219 2003-03-01 Paul Eggert <eggert@twinsun.com>
12220
12221 * src/scan-gram.l (code_start): Initialize it to scanner_cursor,
12222 not loc->end, since loc->end might contain garbage and this leads
12223 to undefined behavior on some platforms.
12224 (id_loc, token_start): Use (IF_LINTed) initial values that do not
12225 depend on *loc, so that the reader doesn't give the the false
12226 impression that *loc is initialized.
12227 (<INITIAL>"%%"): Do not bother setting code_start, since its value
12228 does not survive the return.
12229
12230 2003-03-01 Akim Demaille <akim@epita.fr>
12231
12232 * src/scan-gram.l (code_start): Always initialize it when entering
12233 into yylex, as SC_EPILOGUE is activated *before* the corresponding
12234 yylex invocation. An alternative would be making it static, but
12235 then it starts with the second %%'s beginning, instead of its end.
12236
12237 2003-02-28 Paul Eggert <eggert@twinsun.com>
12238
12239 * lib/mbswidth.c: Include <wchar.h> before "mbswidth.h", to work
12240 around a UnixWare 7.1.1 porting bug reported by John Hughes in
12241 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00030.html>.
12242
12243 2003-02-26 Paul Eggert <eggert@twinsun.com>
12244
12245 * README: Mention compiler bug in Sun Forte Developer 6 update 2.
12246 Remove Sequent/Pyramid discussion (nobody uses them any more).
12247 Merge VMS and MS-DOS discussion; these ports may well be dead
12248 but let's keep mentioning them for now. Put <> around email
12249 addresses. Add copyright notice.
12250
12251 2003-02-24 Paul Eggert <eggert@twinsun.com>
12252
12253 * data/glr.c (yy_reduce_print): yylineno -> yylno,
12254 to avoid collision with flex use of yylineno.
12255 Problem reported by Bruce Lilly in
12256 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00016.html>.
12257 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
12258 * data/yacc.c (yy_reduce_print): Likewise.
12259
12260 * config/depcomp: Sync with Automake 1.7.3.
12261
12262 2003-02-21 Akim Demaille <akim@epita.fr>
12263
12264 * data/lalr1.cc: Use temporary variables instead of casts to
12265 change integer types.
12266 Suggested by Paul Eggert.
12267
12268 2003-02-21 Akim Demaille <akim@epita.fr>
12269
12270 * doc/bison.texinfo: Use "location" consistently to refer to @n,
12271 to avoid confusions with lalr1.cc's notion of Position.
12272 Suggested by Paul Eggert.
12273
12274 2003-02-20 Akim Demaille <akim@epita.fr>
12275
12276 * data/lalr1.cc (position.hh): Make sure "columns" never pushes
12277 before initial_columns.
12278 (location.hh): Use consistent variable names when defining the
12279 operator<<.
12280 Use "last" so that we subtract from Positions, not from unsigned.
12281
12282 2003-02-20 Akim Demaille <akim@epita.fr>
12283
12284 * data/lalr1.cc (position.hh): New subfile, including the extended
12285 and Doxygen'ed documentation of class Position.
12286 (location.hh): Use it.
12287 Document a` la Doxygen.
12288 With the help of Benoit Perrot.
12289
12290 2003-02-20 Akim Demaille <akim@epita.fr>
12291
12292 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Define
12293 AT_YACC_IF.
12294 Redefine AT_YYERROR_SEES_LOC_IF using it.
12295 (_AT_DATA_CALC_Y): Don't declare yyerror when lalr1.cc, as it is
12296 not defined.
12297 Don't use the location in yy::Parser::error_ and
12298 yy::Parser::print_ when not %locations.
12299 Activate more lalr1.cc tests.
12300
12301 2003-02-19 Akim Demaille <akim@epita.fr>
12302
12303 * data/lalr1.cc: When displaying a line number, be sure to make it
12304 an int.
12305
12306 2003-02-19 Akim Demaille <akim@epita.fr>
12307
12308 * data/lalr1.cc (b4_stack_depth_init, yy::Parser::initdepth_):
12309 Remove, useless.
12310 (YYABORT, YYACCEPT, YYERROR): New.
12311 * tests/calc.at: Renable the lalr1.cc test.
12312
12313 2003-02-19 Akim Demaille <akim@epita.fr>
12314
12315 * tests/calc.at (AT_CHECK_CALC): Check different scenarios of
12316 error recovery, mixing with/without pops and discarding of the
12317 lookahead.
12318 Exercise YYERROR.
12319 Disable the lalr1.cc tests as currently it doesn't support YYERROR.
12320
12321 2003-02-17 Paul Eggert <eggert@twinsun.com>
12322
12323 * tests/atlocal.in (LDFLAGS, LIBS): New vars.
12324 * tests/testsuite.at (AT_COMPILE): Use them.
12325 This fixes the testsuite problem reported by Robert Lentz in
12326 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00011.html>.
12327
12328 2003-02-12 Paul Eggert <eggert@twinsun.com>
12329
12330 * data/yacc.c (yyerrlab) [YYERROR_VERBOSE]:
12331 Avoid subscript error in yycheck. Bug reported by Andrew Suffield in
12332 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00003.html>.
12333 * data/glr.c (yyreportSyntaxError) [YYERROR_VERBOSE]: Likewise.
12334 Check for malloc failure, for consistency with yacc.c.
12335 (yytname_size): Remove, for consistency with yacc.c.
12336
12337 The bug still remains in data/lalr1.cc, as I didn't have time
12338 to fix it there.
12339
12340 2003-02-06 Akim Demaille <akim@epita.fr>
12341
12342 * configure.ac (GXX): Rename as...
12343 (CXX): this, to keep the original Autoconf semantics.
12344 Require 2.57.
12345 * data/lalr1.cc: Fix b4_copyright invocations.
12346 If YYDEBUG is not defined, don't depend upon name_ being defined.
12347 (location.hh): Include string and iostream.
12348 (Position::filename): New member.
12349 (Position::Position ()): New.
12350 (operator<< (Position)): New.
12351 (operator- (Position, int)): New.
12352 (Location::first, Location::last): Rename as...
12353 (Location::begin, Location::end): these, to mock the conventional
12354 iterator names.
12355 (operator<< (Location)): New.
12356 * tests/atlocal.in (CXX): New.
12357 * tests/testsuite.at (AT_COMPILE_CXX): New.
12358 * tests/calc.at (_AT_DATA_CALC_Y): Adjust yyerror to report the
12359 locations in a more synthetic way.
12360 (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF is positive if
12361 lalr1.cc is used.
12362 Adjust the C locations to match those from Emacs: first column is
12363 column 0.
12364 Change all the expected results.
12365 Conform to the GCS: simplify the locations when applicable.
12366 (LOC, VAL, YYLLOC_FORMAL, YYLLOC_ARG, USE_YYLLOC, LEX_FORMALS)
12367 (LEX_ARGS, USE_LEX_ARGS, LEX_PRE_FORMALS, LEX_PRE_ARGS): Replace
12368 these CPP macros with the m4 macros new defined by...
12369 (AT_CHECK_PUSHDEFS): this, i.e.:
12370 (AT_LALR1_CC_IF, AT_PURE_LEX_IF, AT_LOC, AT_VAL, AT_LEX_FORMALS)
12371 (AT_LEX_ARGS, AT_USE_LEX_ARGS, AT_LEX_PRE_FORMALS, AT_LEX_PRE_ARGS)
12372 New macros.
12373 (AT_CHECK_POPDEFS): Undefine them.
12374 (AT_CHECK_CALC_LALR1_CC): New.
12375 Use it for the first lalr1.cc test.
12376
12377 2003-02-04 Akim Demaille <akim@epita.fr>
12378
12379 * data/lalr1.cc (YYLLOC_DEFAULT): Fix its definition: be based on
12380 Location as is defined.
12381
12382 2003-02-04 Akim Demaille <akim@epita.fr>
12383
12384 * data/lalr1.cc: If YYDEBUG is not defined, don't depend upon
12385 name_ being defined.
12386
12387 2003-02-03 Paul Eggert <eggert@twinsun.com>
12388
12389 * src/gram.h (start_symbol): Remove unused decl.
12390
12391 Use more-consistent naming conventions for local vars.
12392
12393 * src/derives.c (derives_compute): Change type of local var from
12394 int to rule_number.
12395 * src/gram.c (grammar_rules_partial_print): Likewise.
12396 * src/print.c (print_core): Likewise.
12397 * src/reduce.c (reduce_grammar_tables): Likewise.
12398
12399 * src/gram.c (grammar_dump): Change name of item_number *
12400 local var from r to rp.
12401 * src/nullable.c (nullable_compute): Likewise.
12402
12403 * src/gram.h (ISTOKEN, ISVAR): Use i, not s, for int var.
12404
12405 * src/gram.h (symbol_number_as_item_number): Use sym, not s,
12406 for symbol or symbol_number var.
12407 * src/reader.c (grammar_start_symbol_set): Likewise.
12408 * src/reader.h (grammar_start_symbol_set, grammar_symbol_append):
12409 Likewise.
12410 * src/state.c (transitions_to): Likewise.
12411 * src/state.h: Likewise.
12412 * src/tables.c (symbol_number_to_vector_number): Likewise.
12413
12414 * src/muscle_tab.h (MUSCLE_OBSTACK_SGROW): Use p, not s, for
12415 char * var.
12416
12417 * src/parse-gram.y (lloc_default): Use loc, not r, for YYLTYPE
12418 var.
12419
12420 * src/scan-gram.l (no_cr_read): Use bytes_read, not s, for size
12421 var.
12422
12423 * src/system.h (xstrndup, strchr, strspn, strnlen, memchr, memrchr):
12424 Use str, not s, for char * var. Use ch, not c, for character var.
12425 Use size for size var.
12426
12427 * src/uniqstr.c (uniqstr_new, uniqstr_assert): Use str, not s, for
12428 char * var.
12429 (uniqstr_print, uniqst_print_processor): Use ustr, not s, for
12430 uniqstr var.
12431 * src/uniqstr.h: Likewise.
12432
12433 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
12434 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
12435 get_node_alignment_str, get_arrow_mode_str, get_crossing_type_str,
12436 get_view_str, get_linestyle_str, get_arrowstyle_str): Rename
12437 param to have same name as that of enum, so that we don't use
12438 "s" to stand for a non-state.
12439
12440 2003-02-02 Akim Demaille <akim@epita.fr>
12441
12442 * src/scan-skel.l: Scan more than one inert character per yylex
12443 invocation.
12444
12445 2003-02-01 Paul Eggert <eggert@twinsun.com>
12446
12447 Version 1.875a.
12448
12449 * po/LINGUAS: Add ms.
12450
12451 2003-01-30 Akim Demaille <akim@epita.fr>
12452
12453 * doc/Makefile.am (CLEANFILES): Add bison.fns for distcheck.
12454
12455 2003-01-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
12456
12457 * tests/cxx-type.at: Correct apparent typo in Bison input: $$ instead
12458 of $1.
12459
12460 Changes in response to error report by S. Eken: GLR mode does not
12461 handle negative $ indices or $ indices in embedded rules correctly.
12462 See <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00076.html>.
12463
12464 * data/glr.c (b4_rhs_value): Change to use YYFILL macro.
12465 (b4_rhs_location): Ditto.
12466 (yyfill): New function to copy from stack tree into array
12467 incrementally.
12468 (yyuserAction): Modify to allow incremental move of semantic values
12469 to rhs array when in GLR mode.
12470 Define YYFILL to use in user-defined actions to fill semantic array
12471 as needed.
12472 Remove dummy use of yystack, as there is now a guaranteed use.
12473 (yydoAction): Modify to allow incremental move of semantic values
12474 to rhs array when in GLR mode.
12475 (yyresolveAction): Ditto.
12476 (yyglrShiftDefer): Update comment.
12477 (yyresolveStates): Use X == NULL for pointers, not !X.
12478 (yyglrReduce): Ditto.
12479 (yydoAction): Ditto
12480
12481 * tests/glr-regr1.at: Rename to ...
12482 * tests/glr-regression.at: Add new regression test for the problems
12483 described above (adapted from S. Eken).
12484 Update copyright notice.
12485 * tests/testsuite.at: Rename glr-regr1.at to glr-regression.at.
12486 * tests/Makefile.am: Ditto.
12487
12488 2003-01-28 Paul Eggert <eggert@twinsun.com>
12489
12490 * data/lalr1.cc: Do not use @output_header_name@ unless
12491 b4_defines_flag is set. This fixes two bugs reported by
12492 Tim Van Holder in
12493 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00071.html>
12494 and <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00073.html>.
12495
12496 2003-01-21 Paul Eggert <eggert@twinsun.com>
12497
12498 * data/yacc.c (YYERROR): Move code from yyerrlab1 to here, so that
12499 we don't need to worry about yyerrlab1 being reported as an
12500 "unused label" by non-GCC C compilers. The downside is that if
12501 locations are used then a couple of statements are duplicated each
12502 time YYERROR is invoked, but the upside is that the warnings
12503 should vanish.
12504 (yyerrlab1): Move code to YERROR.
12505 (yyerrlab2): Remove. Change uses back to yyerrlab1.
12506 This reverts some of the 2002-12-27 change.
12507
12508 2003-01-17 Paul Eggert <eggert@twinsun.com>
12509
12510 * src/output.c (symbol_printers_output): Fix typo that led
12511 to core dump. Problem reported by Antonio Rus in
12512 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00058.html>.
12513
12514 2003-01-13 Akim Demaille <akim@epita.fr>,
12515 Quoc Peyrot <chojin@lrde.epita.fr>,
12516 Robert Anisko <anisko_r@lrde.epita.fr>
12517
12518 * data/lalr1.cc (parse::yyerrlab1): When popping the stack, stop
12519 when the stacks contain one element, as the loop would otherwise
12520 free the last state, and then use the top state (the one we just
12521 popped). This means that the initial elements will not be freed
12522 explicitly, as is the case in yacc.c; it is not a problem, as
12523 these elements have fake values.
12524
12525 2003-01-11 Paul Eggert <eggert@twinsun.com>
12526
12527 * NEWS: %expect-violations are now just warnings, reverting
12528 to Bison 1.30 and 1.75 behavior. This fixes the GCC 3.2
12529 bootstrapping problem reported by Matthias Klose; see
12530 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00053.html>.
12531 * src/conflicts.c (conflicts_print): Likewise.
12532 * tests/conflicts.at (%expect not enough, %expect too much,
12533 %expect with reduce conflicts): Likewise.
12534 * doc/bison.texinfo (Expect Decl): Document this. Also mention
12535 that the warning is enabled if the number of conflicts changes
12536 (not necessarily increases).
12537
12538 * src/getargs.c (version): Update copyright year.
12539
12540 2003-01-09 Akim Demaille <akim@epita.fr>
12541
12542 * src/Makefile.am, lib/Makefile.am: Use $(VAR) instead of @VAR@.
12543
12544 2003-01-08 Paul Eggert <eggert@twinsun.com>
12545
12546 * Makefile.maint (WGETFLAGS):
12547 New macro, containing "-C off" to disable proxy caches.
12548 All uses of $(WGET) changed to $(WGET) $(WGETFLAGS).
12549 (rel-check): Use $(WGET) instead of wget.
12550
12551 2003-01-06 Paul Eggert <eggert@twinsun.com>
12552
12553 * doc/bison.texinfo (Generalized LR Parsing): Add a reference to
12554 the GLR paper of Scott, Johnstone and Hussain.
12555
12556 2003-01-04 Paul Eggert <eggert@twinsun.com>
12557
12558 * configure.ac (AC_ARG_ENABLE): Add --disable-yacc.
12559 (YACC_SCRIPT, YACC_LIBRARY): New vars to AC_SUBST.
12560 * lib/Makefile.am (lib_LIBRARIES): liby.a -> @YACC_LIBRARY@.
12561 (EXTRA_LIBRARIES): New var, for liby.a.
12562 * src/Makefile.am (bin_SCRIPTS): yacc -> @YACC_SCRIPT@.
12563 (EXTRA_SCRIPTS): New var, for yacc.
12564
12565 * data/yacc.c (yyerrlab1): Omit attribute if __cplusplus is defined,
12566 since GNU C++ (as of 3.2.1) does not allow attributes on labels.
12567 Problem reported by Nelson H. F. Beebe.
12568
12569 2003-01-03 Paul Eggert <eggert@twinsun.com>
12570
12571 * lib/obstack.h (__INT_TO_PTR) [__STDC__]: Cast result to
12572 (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
12573 when compiling Bison 1.875's `bitset bset = obstack_alloc
12574 (bobstack, bytes);'. Problem reported by Nelson H. F. Beebe.
12575
12576 * src/scan-skel.l (QPUTS): Omit redundant `;' from macro definition.
12577 ([^@\n]): Renamed from [^@\n]+ so that the token buffer does not
12578 grow to a huge size with typical invocation.
12579
12580 * lib/hash.c (_Bool, bool, false, true, __bool_true_false_are_defined):
12581 Use the pattern recommended by Autoconf 2.57, except also protect
12582 against double-definition.
12583 * src/system.h: Likewise.
12584 Portability issues reported by Nelson H. F. Beebe.
12585
12586 * data/glr.c (yybool): Renamed from bool, to avoid collisions in C.
12587 All uses changed. Provide a definition in both C and C++.
12588 (yytrue, yyfalse): Define even if defined (__cplusplus).
12589
12590 * lib/bitset_stats.c (bitset_stats_list): Remove unused var.
12591 Reported by Nelson H. F. Beebe.
12592
12593 * src/scan-skel.l ("@oline@"): Output lineno+1, not lineno.
12594
12595 2003-01-02 Paul Eggert <eggert@twinsun.com>
12596
12597 * data/yacc.c (yyerrlab1): Append `;' after attribute, to
12598 pacify the buggy "smart preprocessor" in MacOS 10.2.3.
12599 Bug reported by Nelson H. F. Beebe.
12600
12601 2003-01-01 Paul Eggert <eggert@twinsun.com>
12602
12603 * Version 1.875.
12604
12605 2002-12-30 Paul Eggert <eggert@twinsun.com>
12606
12607 * src/scan-gram.l (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>","):
12608 Moved here from...
12609 (<INITIAL>","): Here. This causes stray "," to be treated
12610 more uniformly.
12611
12612 * src/scan-gram.l (<SC_BRACED_CODE>"}"): Output ";" before the
12613 last brace in braced code when not in Yacc mode, for compatibility
12614 with Bison 1.35. This resurrects the 2001-12-15 patch to
12615 src/reader.c.
12616
12617 * src/reader.h (YYDECL): Use YYSTYPE, not its deprecated alias
12618 yystype. This follows up the 2002-12-24 YYSTYPE bug fix.
12619
12620 2002-12-28 Paul Eggert <eggert@twinsun.com>
12621
12622 * src/symtab.c (symbol_make_alias): Set type of SYMVAL to be
12623 that of SYM's type. This fixes Debian bug 168069, reported by
12624 Thomas Olsson.
12625
12626 2002-12-28 Paul Eggert <eggert@twinsun.com>
12627
12628 Version 1.75f.
12629
12630 Switch back to the Yacc style of conflict reports, undoing some
12631 of the 2002-07-30 change.
12632 * doc/bison.texinfo (Understanding): Use Yacc style for
12633 conflict reports. Also, use new way of locating rules.
12634 * src/conflicts.c (conflict_report):
12635 Renamed from conflict_report_yacc, removing the old
12636 'conflict_report'. Translate the entire conflict report at once,
12637 so that we don't assume that "," has the same interpretation in
12638 all languages.
12639 (conflicts_output): Use Yacc-style conflict report for each state,
12640 instead of our more-complicated style.
12641 (conflicts_print): Use Yacc-style conflict report, except print
12642 the input file name when not emulating Yacc.
12643 * tests/conflicts.at (Unresolved SR Conflicts, Defaulted
12644 Conflicted Reduction, %expect not enough, %expect too much,
12645 %expect with reduce conflicts): Switch to Yacc-style conflict reports.
12646 * tests/existing.at (GNU Cim Grammar): Likewise.
12647 * tests/glr-regr1.at (Badly Collapsed GLR States): Likewise.
12648
12649 * src/complain.c (warn_at, warn, complain_at, complain, fatal_at,
12650 fatal): Don't invoke fflush; it's not needed and it might even be
12651 harmful for stdout, as stdout might not be open.
12652 * src/reduce.c (reduce_print): Likewise.
12653
12654 2002-12-27 Paul Eggert <eggert@twinsun.com>
12655
12656 Fix a bug where error locations were not being recorded correctly.
12657 This problem was originally reported by Paul Hilfinger in
12658 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00086.html>.
12659
12660 * data/yacc.c (yyparse): New local var yylerrsp, to record the
12661 top of the location stack's error locations.
12662 (yyerrlab): Set it. When discarding a token, push its location
12663 onto yylerrsp so that we don't lose track of the error's end.
12664 (yyerrlab1): Now is only the target of YYERROR, so that we can
12665 properly record the location of the action that failed. For GCC
12666 2.93 and later, insert an __attribute__ ((__unused__)) to avoid
12667 GCC warning about yyerrlab1 being unused if YYERROR is unused.
12668 (yyerrlab2): New label, which yyerrlab now falls through to.
12669 Compute the error's location by applying YYLLOC_DEFAULT to
12670 the locations of all the symbols that went into the error.
12671 * doc/bison.texinfo (Location Default Action): Mention that
12672 YYLLOC_DEFAULT is also invoked for syntax errors.
12673 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
12674 Error locations include the locations of all the tokens that were
12675 discarded, not just the last token.
12676
12677 2002-12-26 Paul Eggert <eggert@twinsun.com>
12678
12679 * src/files.c: Include quote.h.
12680 (compute_output_file_names): Warn if we detect conflicting
12681 outputs to the same file. This should catch the misunderstanding
12682 exemplified by Debian Bug 165349, reported by Bruce Stephens..
12683
12684 * src/conflicts.c (conflicts_print): If the user specifies
12685 "%expect N", report an error if there are any reduce/reduce
12686 conflicts. This is what the manual says should happen.
12687 This fixes Debian bug 130890, reported by Anthony DeRobertis.
12688 * tests/conflicts.at (%expect with reduce conflicts): New test.
12689
12690 Don't use m4_include on relative file names, as it doesn't work as
12691 desired if there happens to be a file with that name under ".".
12692
12693 * m4sugar/version.m4: Remove; it was included but it wasn't used.
12694 * data/Makefile.am (dist_m4sugar_DATA): Remove m4sugar/version.m4.
12695 * data/m4sugar/m4sugar.m4: Don't include m4sugar/version.m4.
12696 * data/glr.c, data/lalr1.cc, data/yacc.c: Don't include c.m4.
12697 * src/output.c (output_skeleton): Use full path names when
12698 specifying a file to include; don't rely on include path, as
12699 it's unreliable when the working file contains a file with
12700 that name.
12701
12702 2002-12-25 Paul Eggert <eggert@twinsun.com>
12703
12704 Remove obsolete references to bison.simple and bison.hairy.
12705 Problem mentioned by Aubin Mahe in
12706 <http://lists.gnu.org/archive/html/help-bison/2002-12/msg00010.html>.
12707 * data/glr.c: Comment fix.
12708 * doc/bison.1: Remove references. Also, mention "yacc".
12709
12710 * src/getargs.c (getargs) [MSDOS]: Don't assume optarg != NULL
12711 with -g option.
12712
12713 * src/parse-gram.y (declaration): Use enum "report_states" rather
12714 than its numeric value 1.
12715
12716 * src/scan-skel.l ("@output ".*\n): Close any old yyout before
12717 opening a new one. This fixes Debian bug 165349, reported by
12718 Bruce Stephens.
12719
12720 2002-12-24 Paul Eggert <eggert@twinsun.com>
12721
12722 Version 1.75e.
12723
12724 * Makefile.maint (cvs-update): Don't assume that the shell
12725 supports $(...), as Solaris sh doesn't.
12726
12727 * src/parse-gram.y (lloc_default): Remove test for empty
12728 nonterminals at the end, since it didn't change the result.
12729
12730 2002-12-24 Paul Eggert <eggert@twinsun.com>
12731
12732 If the user does not define YYSTYPE as a macro, Bison now declares it
12733 using typedef instead of defining it as a macro. POSIX requires this.
12734 For consistency, YYLTYPE is also declared instead of defined.
12735
12736 %union directives can now have a tag before the `{', e.g., the
12737 directive `%union foo {...}' now generates the C code
12738 `typedef union foo { ... } YYSTYPE;'; this is for Yacc compatibility.
12739 The default union tag is `YYSTYPE', for compatibility with Solaris 9
12740 Yacc. For consistency, YYLTYPE's struct tag is now `YYLTYPE'
12741 instead of `yyltype'.
12742
12743 `yystype' and `yyltype' are now obsolescent macros instead of being
12744 typedefs or tags; they are no longer documented and will be
12745 withdrawn in a future release.
12746
12747 * data/glr.c (b4_location_type): Remove.
12748 (YYSTYPE): Renamed from yystype.
12749 (YYSTYPE_IS_DECLARED): New macro, used to prevent double-typedef.
12750 (struct YYLTYPE): Renamed from struct yyltype.
12751 (YYLTYPE): Renamed from yyltype.
12752 (yyltype, yystype): New (and obsolescent) macros,
12753 for backward compatibility.
12754 * data/yacc.c: Likewise.
12755
12756 * data/yacc.c (YYSTYPE): Declare as union YYSTYPE if the user
12757 does not specify a union tag. This is for compatibility with
12758 Solaris 9 yacc.
12759
12760 * src/parse-gram.y (add_param): 2nd arg is now char * not char
12761 const *, since it is now modified by stripping surrounding { }.
12762 (current_braced_code): Remove.
12763 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_UNION,
12764 PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Change names to include
12765 trailing " {...}". Now of type <chars>.
12766 (grammar_declaration): Adjust to bundled tokens.
12767 (code_content): Remove; stripping is now done by add_param.
12768 (print_token_value): Print contents of bundled tokens.
12769 (token_name): New function.
12770
12771 * src/reader.h (braced_code, current_braced_code): Remove.
12772 (token_name): New decl.
12773
12774 * src/scan-gram.l (handle_dollar, handle_at): Now takes int
12775 token_type, not braced_code code_kind. All uses changed.
12776 (SC_PRE_CODE): New state, for scanning after a keyword that
12777 has (or usually has) an immediately-following braced code.
12778 (token_type): New local var, to keep track of which token type
12779 to return when scanning braced code.
12780 (<INITIAL>"%destructor", <INITIAL>"%lex-param",
12781 <INITIAL>"%parse-param", <INITIAL>"%printer",
12782 <INITIAL>"%union"): Set token type and BEGIN SC_PRE_CODE
12783 instead of returning a token type immediately.
12784 (<INITIAL>"{"): Set token type.
12785 (<SC_BRACED_CODE>"}"): Use it.
12786 (handle_action_dollar, handle_action_at): Now returns bool
12787 indicating success. Fail if ! current_rule; this prevents a core dump.
12788 (handle_symbol_code_dollar, handle_symbol_code_at):
12789 Remove; merge body into caller.
12790 (handle_dollar, handle_at): Complain in invalid contexts.
12791
12792 * NEWS, doc/bison.texinfo: Document the above.
12793 * NEWS: Fix years and program names in copyright notice.
12794
12795 2002-12-17 Paul Eggert <eggert@twinsun.com>
12796
12797 * NEWS, doc/bison.texinfo (Parser Function, Pure Calling, Error
12798 Reporting, Table of Symbols): Omit mentions of %lex-param and
12799 %parse-param from the documentation for now.
12800
12801 2002-12-15 Paul Eggert <eggert@twinsun.com>
12802
12803 Undo most of the 2002-11-12 yychar -> yytoken patch, as it broke
12804 GCC 3.2.1 (which depends on yychar == YYEMPTY when there is no
12805 lookahead symbol, and which sets yychar in parser actions) and it
12806 disagreed with the Bison documentation. Bug
12807 reported by Andrew Walrond.
12808
12809 * data/yacc.c (YYTRANSLATE): Don't check for negative argument,
12810 as the caller now does that.
12811 (yyclearin, YYBACKUP, yyparse): Use yychar, not yytoken.
12812 (YYEMPTY): Parenthesize right hand side, since others use it.
12813 (yyparse): Don't assume that our generated code is the only code
12814 that sets yychar.
12815
12816 2002-12-13 Paul Eggert <eggert@twinsun.com>
12817
12818 Version 1.75d.
12819
12820 POSIX requires a "yacc" command.
12821 * src/Makefile.am (bin_SCRIPTS): New macro, for yacc.
12822 (MOSTLYCLEANFILES): Add yacc.
12823 (yacc): New rule.
12824 * doc/bison.texinfo (Invocation, Bison Options): Mention yacc
12825 as an alias for bison y.
12826
12827 * po/LINGUAS: Add da.
12828
12829 * src/getargs.c (__GNU_LIBRARY__) [lint]: Define to work around
12830 problem with latest <getopt.h>.
12831 (HACK_FOR___GNU_LIBRARY___PROTOTYPE): New macro.
12832
12833 * doc/fdl.texi: Upgrade to 1.2.
12834 * lib/alloca.c, lib/error.c, lib/getopt.c, lib/getopt.h
12835 lib/getopt1.c, lib/gettext.h, lib/memrchr.c, lib/obstack.c,
12836 lib/obstack.h, lib/strnlen.c, lib/unlocked-io.h: Sync with
12837 gnulib.
12838 * config/install-sh: Sync with autotools.
12839
12840 Fix a bad interaction with flex 2.5.23 reported by Bruce Lilly in
12841 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
12842 * data/yacc.c (YYLTYPE, struct yyltype): Do not define unless
12843 locations are requested.
12844 (union yyalloc): Do not depend on YYLTYPE_IS_TRIVIAL unless
12845 locations are requested.
12846
12847 2002-12-12 Paul Eggert <eggert@twinsun.com>
12848
12849 Remove unportable casts and storage allocation tricks.
12850 While we're at it, remove almost all casts, since they
12851 usually aren't needed and are a sign of trouble.
12852
12853 * configure.ac (AC_CHECK_TYPES): Check for uintptr_t.
12854
12855 * src/derives.c (derives_compute): Do not subtract NTOKENS from
12856 the pointer DSET returned by malloc; this isn't portable.
12857 Instead, always use DSET[i - NTOKENS] rather than DSET[i].
12858 Similarly for DERIVES.
12859 * src/lalr.c (set_goto_map): Likewise, for GOTO_MAP and TEMP_MAP.
12860 * src/nullable.c (nullable_compute): Likewise, for RSETS and NULLABLE.
12861 * src/reduce.c (reduce_grammar_tables): Likewise, for nontermmap
12862
12863 * src/derives.c (derives_compute): Do not bother invoking
12864 int_of_rule_number, since rule numbers are integers.
12865
12866 * src/files.c (concat2, tr, compute_base_name): Use xmalloc (N)
12867 rather than XMALLOC (char, N).
12868
12869 * src/files.c (filename_split): Rewrite to avoid cast.
12870
12871 * src/gram.h (symbol_number_as_item_number,
12872 item_number_as_symbol_number, rule_number_as_item_number,
12873 item_number_as_rule_number):
12874 Now inline functions rather than macros, to avoid casts.
12875 * src/state.h (state_number_as_int): Likewise.
12876 * src/tables.c (state_number_to_vector_number,
12877 symbol_number_to_vector_number): Likewise.
12878
12879 * src/gram.h (int_of_rule_number): Remove; no longer used.
12880
12881 * src/lalr.c (add_lookback_edge): Use malloc rather than calloc,
12882 since the resulting storage is always stored into.
12883
12884 * src/main.c (alloca) [C_ALLOCA]: Add decl here, the only place
12885 where it's needed.
12886
12887 * src/muscle_tab.c (muscle_m4_output):
12888 Now inline. Return bool, not int.
12889 * src/state.c (state_compare): Likewise.
12890 * src/symtab.c (symbol_check_defined,
12891 symbol_check_alias_consistency, symbol_pack, symbol_translation,
12892 hash_compare_symbol, hash_symbol):
12893 Likewise.
12894 * src/uniqstr.c (uniqstr_print): Likewise.
12895 * src/muscle_tab.c (muscle_m4_output_processor):
12896 New function, to avoid casts.
12897 * src/state.c (state_comparator, stage_hasher): Likewise.
12898 * src/symtab.c (symbol_check_defined_processor,
12899 symbol_check_alias_consistency_processor, symbol_pack_processor,
12900 symbol_translation_processor, hash_symbol_comparator,
12901 hash_symbol_hasher): Likewise.
12902 * src/uniqstr.c (uniqstr_print_processor): Likewise.
12903 * src/muscle_tab.c (muscles_m4_output):
12904 Use new functions instead of casting old functions unportably.
12905 * src/state.c (state_hash_new): Likewise.
12906 * src/symtab.c (symbols_new, symbols_do, symbols_check_defined,
12907 symbols_token_translations_init):
12908 Likewise.
12909 * src/uniqstr.c (uniqstrs_new, hash_initialize, uniqstrs_do): Likewise.
12910
12911 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): Use long local
12912 var instead of casting to long, to avoid casts.
12913 (prepare_states): Use MALLOC rather than alloca, so that we don't
12914 have to worry about alloca.
12915 * src/state.c (state_hash_lookup): Likewise.
12916
12917 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>"'"): Use unsigned char
12918 local var instead of casting to unsigned char, to avoid casts.
12919
12920 * src/state.c (TRANSITIONS_ALLOC, ERRS_ALLOC, REDUCTIONS_ALLOC,
12921 STATE_ALLOC): Remove.
12922 (transitions_new, errs_new, reductions_new, state_new): Use malloc
12923 rather than calloc, and use offsetof to avoid allocating slightly
12924 too much storage.
12925 (state_new): Initialize all members.
12926
12927 * src/state.c (state_hash): Use unsigned accumulator, not signed.
12928
12929 * src/symtab.c (symbol_free): Remove; unused.
12930 (symbol_get): Remove cast in lhs of assignment.
12931 (symbols_do): Now static. Accept generic arguments, not
12932 hashing-related ones.
12933
12934 * src/symtab.h: (NUMBER_UNDEFINED): Remove unnecessary cast.
12935 (symbol_processor): Remove.
12936 (symbols_do): Remove decl; now static.
12937
12938 * src/system.h (alloca): Remove; decl no longer needed.
12939 (<stddef.h>): Include, for offsetof.
12940 (<inttypes.>, <stdint.h>): Include if available.
12941 (uintptr_t): New type, if system lacks it.
12942 (CALLOC, MALLOC, REALLOC): New macros.
12943 All uses of XCALLOC, XMALLOC, and XREALLOC changed to use these
12944 new macros.
12945
12946 * src/tables.c (table_size): Now int, to pacify GCC.
12947 (table_grow, table_ninf_remap): Use signed table size.
12948 (save_row): Don't bother initializing locals when not needed.
12949 (default_goto, goto_actions, pack_vector): Remove unnecessary casts.
12950 * src/uniqstr.c (hash_compare_uniqstr): Likewise.
12951
12952 * src/vcg.h: Correct misspellings.
12953
12954 * src/vcg_defaults.h (G_CMAX): Now INT_MAX.
12955
12956
12957 * src/getargs.c (getargs): Don't assume EOF == -1.
12958
12959 2002-12-09 Paul Eggert <eggert@twinsun.com>
12960
12961 Change identifier spellings to avoid collisions with names
12962 that are reserved by POSIX.
12963
12964 Don't use names ending in _t, since POSIX reserves them.
12965 For consistency, remove _e and _s endings -- they're weren't
12966 needed to remove ambiguity. All uses changed.
12967 * src/uniqstr.h (uniqstr): Renamed from uniqstr_t, which in
12968 turn was just renamed from struniq_t.
12969 * src/uniqstr.c (uniqstr_processor): Renamed from struniq_processor,
12970 which in turn was just renamed from struniq_processor_t.
12971 (hash_compare_uniqstr): Renamed from hash_compare_struniq, which
12972 in turn was renamed from hash_compare_struniq_t.
12973 * src/LR0.c (struct state_list): Renamed from struct state_list_s.
12974 (state_list): Renamed from state_list_t.
12975 * src/assoc.h (assoc): Renamed from assoc_t.
12976 * src/conflicts.c (enum conflict_resolution): Renamed from
12977 enum conflict_resolution_e.
12978 * src/derives.c (struct rule_list): Renamed from struct rule_list_s.
12979 (rule_list): Renamed from rule_list_t.
12980 * src/getargs.h (enum trace): Renamed from enum trace_e.
12981 (enum report): Renamed from enum report_e.
12982 * src/gram.h (item_number): Renamed from item_number_t.
12983 (rule_number): Renamed from rule_number_t.
12984 (struct rule_s): Remove the "rule_s" part; not used.
12985 (rule): Renamed from rule_t.
12986 (rule_filter): Renamed from rule_filter_t.
12987 * src/lalr.c (struct goto_list): Renamed from struct goto_list_s.
12988 (goto_list): Renamed from goto_list_t.
12989 * src/lalr.h (goto_number): Renamed from goto_number_t.
12990 * src/location.h (location): Renamed from location_t.
12991 * src/muscle_tab.c (muscle_entry): Renamed from muscle_entry_t,
12992 and moved here from:
12993 * src/muscle_tab.h (muscle_entry_t): here.
12994 * src/nullable.c (struct rule_list): Renamed from struct rule_list_s.
12995 (rule_list): Renamed from rule_list_t.
12996 * src/print_graph.c (static_graph): Renamed from graph.
12997 * src/reader.h (braced_code): Renamed from braced_code_t.
12998 Remove brace_code_e tag.
12999 * src/relation.h (relation_node): Renamed from relation_node_t.
13000 (relation_nodes): Renamed from relation_nodes_t.
13001 (relation): Renamed from relation_t.
13002 * src/state.h (state_number): Renamed from state_number_t.
13003 (struct state): Renamed from struct state_s.
13004 (state): Renamed from state_t.
13005 (transitions): Renamed from transitions_t. Unused (and
13006 misspelled) transtion_s tag removed.
13007 (errs): Renamed from errs_t. Unused errs_s tag removed.
13008 (reductions): Renamed from reductions_t. Unused tag
13009 reductions_s removed.
13010 * src/symlist.h (symbol_list): Renamed from symbol_list_t.
13011 (struct symbol_list): Renamed from struct symbol_list_s.
13012 * src/symtab.h (symbol_number): Renamed from symbol_number_t.
13013 (struct symbol): Renamed from struct symbol_s.
13014 (symbol): Renamed from symbol_t.
13015 * src/tables.c (vector_number): Renamed from vector_number_t.
13016 (action_number): Renamed from action_t.
13017 * src/tables.h (base_number): Renamed from base_t.
13018 * src/vcg.h (enum color): Renamed from enum color_e.
13019 (enum textmode): Renamed from enum textmode_e.
13020 (enum shape): Renamed from enum shape_e.
13021 (struct colorentry): Renamed from struct colorentry_s.
13022 (struct classname): Renamed from struct classname_s.
13023 (struct infoname): Renamed from struct infoname_s.
13024 (enum layoutalgorithm): Renamed from enum layoutalgorithm_e.
13025 (enum decision): Renamed from enum decision_e.
13026 (enum orientation): Renamed from enum orientation_e.
13027 (enum alignment): Renamed from enum alignment_e.
13028 (enum arrow_mode): Renamed from enum arrow_mode_e.
13029 (enum crossing_type): Renamed from enum crossing_type_e.
13030 (enum view): Renamed from enum view_e.
13031 (struct node): Renamed from struct node_s.
13032 (node): Renamed from node_t.
13033 (enum linestyle): Renamed from enum linestyle_e.
13034 (enum arrowstyle): Renamed from enum arrowstyle_e.
13035 (struct edge): Renamed from struct edge.
13036 (edge): Renamed from edge_t.
13037 (struct graph): Renamed from struct graph_s.
13038 (graph): Renamed from graph_t.
13039 * tests/calc.at (_AT_DATA_CALC_Y, Simple LALR Calculator):
13040 Rename value_t -> value.
13041 * tests/input.at (Torturing the Scanner): Rename value_t -> value,
13042 value_t_as_yystype -> value_as_yystype.
13043
13044 Don't include <errno.h> in the mainstream code, since it
13045 reserves E[A-Z0-9]* and we want to use symbols like 'EQUALS'.
13046 * lib/get-errno.c, lib/get-errno.h: New files.
13047 * lib/Makefile.am (libbison_a_SOURCES): Add get-errno.h,
13048 get-errno.c.
13049 * src/files.c (xfopen, xfclose): Use get_errno instead of errno.
13050 * src/output.c (output_skeleton): Likewise.
13051 * src/scan-gram.l (<INITIAL>{int}): Use set_errno and get_errno
13052 instead of errno.
13053 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>\\x[0-9abcdefABCDEF]+):
13054 Likewise.
13055 (handle_action_dollar, handle_action_at): Likewise.
13056 * src/system.h: Do not include <errno.h>.
13057 (TAB_EXT): Renamed from EXT_TAB.
13058 (OUTPUT_EXT): Renamed from EXT_OUTPUT.
13059
13060 Avoid str[a-z]*, since <string.h> reserves that name space.
13061 Change all instances of "struniq" in names to "uniqstr", and
13062 likewise for "STRUNIQ" and "UNIQSTR".
13063 * src/uniqstr.c: Renamed from src/struniq.c.
13064 * src/uniqstr.h: Renamed from src/struniq.h.
13065 * src/Makefile.am (bison_SOURCES): Adjust to these renamings.
13066 * src/files.c (strsuffix): Remove; unused.
13067 (concat2): Renamed from stringappend. Now static.
13068 * src/files.h (strsuffix, stringappend): Remove; unused.
13069 * src/parse-gram.y (<chars>): Renamed from <string>.
13070 (<uniqstr>): Renamed from <struniq>.
13071 * src/scan-gram.l (obstack_for_string): Renamed from string_obstack.
13072 * src/vcg.h (struct node_s.expand): Renamed from struct node_s.stretch.
13073 (struct graph_s.expand): Renamed from struct graph_s.stretch.
13074 * src/vcg_defaults.h (G_EXPAND): Renamed from G_STRETCH.
13075 (G_LONG_STRAIGHT_PHASE): Renamed from G_STRAIGHT_PHASE.
13076 (N_EXPAND): Renamed from N_STRETCH.
13077
13078 Avoid *_MAX and *_MIN, since <limits.h> reserves that name space.
13079 * data/yacc.c (YYSTACK_GAP_MAXIMUM): Renamed from YYSTACK_GAP_MAX.
13080 * src/gram.h (ITEM_NUMBER_MAX, ITEM_NUMBER_MIN, RULE_NUMBER_MAX):
13081 Remove; unused.
13082 * src/lalr.h (GOTO_NUMBER_MAXIMUM): Renamed from GOTO_NUMBER_MAX.
13083 * src/state.h (STATE_NUMBER_MAXIMUM): Renamed from STATE_NUMBER_MAX.
13084 * src/symtab.h (SYMBOL_NUMBER_MAXIMUM): Renamed from SYMBOL_NUMBER_MAX.
13085 * src/tables.c (VECTOR_NUMBER_MAX, VECTOR_NUMBER_MIN): Remove; unused.
13086 (BASE_MAXIMUM): Renamed from BASE_MAX.
13087 (BASE_MINIMUM): Renamed from BASE_MIN.
13088 (ACTION_MAX): Remove; unused.
13089 (ACTION_NUMBER_MINIMUM): Renamed from ACTION_MIN.
13090 Unnecessary casts removed from above defines.
13091
13092
13093 Fix misspelling in names.
13094 * src/vcg.h (enum_alignment_e): Renamed from enum_alignement_e.
13095 * src/vcg_defaults.h (G_NODE_ALIGNMENT): Renamed from
13096 G_NODE_ALIGNEMENT.
13097
13098
13099 * lib/timevar.c (timevar_report): Renamed from time_report,
13100 for consistency with other names.
13101 * lib/timevar.h (timevar_report): New decl.
13102 * src/system.h (time_report): Remove; decl is now in lib/timevar.h.
13103
13104
13105 Sort include-file uses.
13106
13107 Reorder all include files under src to be in the order "system.h".
13108 then the ../lib include files in angle brackets (alphabetized),
13109 then the . include files in double-quotes (alphabetized). Fix
13110 dependency breakages encountered in this process, as follows:
13111 * src/closure.h, src/derives.h, src/state.h: Include "gram.h".
13112 * src/complain.c: Don't include stdlib.h, string.h _LIBC stuff.
13113 * src/state.h: Include "symtab.h".
13114
13115 2002-12-08 Paul Eggert <eggert@twinsun.com>
13116
13117 * data/glr.c, data/lalr1.cc, data/yacc.c: Do not use __file__,
13118 since this causes problems when __file__ contains character
13119 sequences like "@" that are treated specially by src/scan-skel.l.
13120 Instead, just use the file's basename. This fixes the bug
13121 reported by Martin Mokrejs in
13122 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00007.html>.
13123
13124 2002-12-06 Paul Eggert <eggert@twinsun.com>
13125
13126 Add support for rules that do not have trailing semicolons, as
13127 POSIX requires. Improve the quality of locations in Bison
13128 diagnostics.
13129
13130 * src/location.c: Include <quotearg.h>.
13131 (empty_location): Now const.
13132 (location_print): New function. Follow the recommendation of the
13133 GNU Coding Standards for locations that span file boundaries.
13134 * src/location.h: Do not include <quotearg.h>; no longer needed.
13135 (boundary): New type.
13136 (location_t): Use it. This allows locations to span file boundaries.
13137 All member uses changed: file -> start.file or end.file (as needed),
13138 first_line -> start.line, first_column -> start.column,
13139 last_line -> end.line, last_column -> end.column.
13140 (equal_boundaries): New function.
13141 (LOCATION_RESET, LOCATION_STEP): Remove.
13142 (LOCATION_PRINT): Remove. All callers changed to use location_print.
13143 (empty_location): Now const.
13144 (location_print): New decl.
13145 * src/parse-gram.y (lloc_default): New function, which handles
13146 empty locations more accurately.
13147 (YYLLOC_DEFAULT): Use it.
13148 (%token COLON): Remove.
13149 (%token ID_COLON): New token.
13150 (rules): Use it.
13151 (declarations, rules): Remove trailing semicolon.
13152 (declaration, rules_or_grammar_declaration):
13153 Allow empty (";") declaration.
13154 (symbol_def): Remove empty actions; no longer needed.
13155 (rules_or_grammar_declaration): Remove trailing semicolon.
13156 (semi_colon.opt): Remove.
13157 * src/reader.h: Include location.h.
13158 (scanner_cursor): New decl.
13159 * src/reduce.c (nonterminals_reduce): Use warn_at rather than
13160 rolling our own.
13161 * src/scan-gram.l (YY_USER_INIT): Initialize scanner_cursor instead
13162 of *loc.
13163 (STEP): Remove. No longer needed, now that adjust_location does
13164 the work. All uses removed.
13165 (scanner_cursor): New var.
13166 (adjust_location): Renamed from extend_location. It now sets
13167 *loc and adjusts the scanner cursor. All uses changed.
13168 Don't bother testing for CR.
13169 (handle_syncline): Remove location arg; now updates scanner cursor.
13170 All callers changed.
13171 (unexpected_end_of_file): Now accepts start boundary of token or
13172 comment, not location. All callers changed. Update scanner cursor,
13173 not the location.
13174 (SC_AFTER_IDENTIFIER): New state.
13175 (context_state): Renamed from c_context. All uses changed.
13176 (id_loc, code_start, token_start): New local vars.
13177 (<INITIAL,SC_AFTER_IDENTIFIER>): New initial context. Move all
13178 processing of Yacc white space and equivalents here.
13179 (<INITIAL>{id}): Save id_loc. Begin state SC_AFTER_IDENTIFIER
13180 instead of returning ID immediately, since we need to search for
13181 a subsequent colon.
13182 (<INITIAL>"'", "\""): Save token_start.
13183 (<INITIAL>"%{", "{", "%%"): Save code_start.
13184 (<SC_AFTER_IDENTIFIER>): New state, looking for a colon.
13185 (<SC_YACC_COMMENT>, <SC_COMMENT>, <SC_LINE_COMMENT>):
13186 BEGIN context_state at end, not INITIAL.
13187 (<SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'",
13188 <SC_BRACED_CODE>"}", <SC_PROLOGUE>"%}", <SC_EPILOGUE><<EOF>>):
13189 Return correct token start.
13190 (<SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>): Save start boundary when
13191 the start of a character, string or multiline comment is found.
13192 * tests/conflicts.at (S/R in initial, Defaulted Conflicted
13193 Reduction): Adjust reported locations to match the more-precise
13194 results now expected.
13195 * tests/input.at (Invalid $n, Invalid @n, Type Clashes): Likewise.
13196 * tests/reduce.at (Useless Rules, Reduced Automaton,
13197 Underivable Rules): Likewise.
13198 * tests/regression.at (Invalid inputs): No longer `expecting ";"
13199 or "|"' now that so many other tokens are allowed by the new grammar.
13200
13201 * src/complain.h (current_file): Remove duplicate decl;
13202 current_file is now owned by files.h.
13203 * src/complain.c, src/scan-gram.l: Include files.h.
13204
13205 2002-12-06 Paul Eggert <eggert@twinsun.com>
13206
13207 * data/glr.c (yy_reduce_print): Don't assume that yyrline[yyrule]
13208 promotes to int; it might be unsigned int.
13209 * data/yacc.c (yy_reduce_print): Likewise.
13210
13211 * doc/bison.texinfo (Table of Symbols): YYERROR_VERBOSE should
13212 be #defined in the prologue, not in the Bison declarations.
13213 This fixes Debian Bug 102878, reported by Shaul Karl.
13214
13215 2002-12-02 Paul Eggert <eggert@twinsun.com>
13216
13217 * configure.ac (AC_REPLACE_FUNCS): Add strtoul.
13218 * lib/strtoul.c: New file, from gnulib.
13219 This fixes a porting bug reported by Peter Klein in
13220 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00000.html>.
13221
13222 2002-11-30 Paul Eggert <eggert@twinsun.com>
13223
13224 * src/scan-gram.l (no_cr_read, extend_location): Move to epilogue,
13225 and put only a forward declaration in the prologue. This is for
13226 consistency with the other scanner helper functions.
13227
13228 Type clashes now generate warnings, not errors, since it
13229 appears that POSIX may allow some grammars with type clashes.
13230 * src/reader.c (grammar_current_rule_check): Warn about
13231 type clashes instead of complaining.
13232 * tests/input.at (Type Clashes): Expect warnings, not complaints.
13233
13234 Add Yacc library, since POSIX requires it.
13235 * doc/bison.texinfo (Yacc Library): New node. Regenerate top menu.
13236 * lib/Makefile.am (lib_LIBRARIES, liby_a_SOURCES): New macros.
13237 * lib/main.c, lib/yyerror.c: New files.
13238
13239 gram_error can be static; it need not be extern.
13240 * src/reader.h (gram_error): Remove decl.
13241 * src/parse-gram.y (gram_error): Now static. Add static decl.
13242 (print_token_value): Omit parameter names from forward decl,
13243 for consistency.
13244
13245 2002-11-29 Paul Eggert <eggert@twinsun.com>
13246
13247 * doc/bison.texinfo: Emphasize that yylex and yyerror must
13248 be declared before being used. E.g., one should typically
13249 declare them in the prologue. Use GNU coding style in examples.
13250 Put "const" consistently after the type it modifies. Mention
13251 that C99 supports "inline". Mention that yyerror traditionally
13252 returns "int".
13253
13254 %parse-param and %lex-param now take just one argument, the
13255 declaration; the argument name is deduced from the declaration.
13256
13257 * doc/bison.texinfo (Parser Function, Pure Calling, Error
13258 Reporting, Table of Symbols): Document this.
13259 * src/parse-gram.y (add_param): New function.
13260 (COMMA): Remove.
13261 (declaration): Implement new rule for %parse-param and %lex-param.
13262 * src/scan-gram.l: "," now elicits a warning, rather than being
13263 a token; this is more compatible with byacc.
13264 * tests/calc.at (Simple LALR Calculator): Adopt new convention.
13265
13266 2002-11-27 Paul Eggert <eggert@twinsun.com>
13267
13268 Rename identifiers to avoid real and potential collisions.
13269
13270 * data/c.m4 (b4_yysymprint_generate): yyout -> yyoutput,
13271 to avoid collision with lex macro described by Bruce Lilly in
13272 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
13273 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
13274 * doc/bison.texinfo (Prologue, Tracing): yyprint -> print_token_value.
13275 * src/parse-gram.y (print_token_value): Renamed from yyprint.
13276 All uses changed.
13277 (YYPARSE_PARAM, YYLEX_PARAM, yycontrol): Remove. All uses changed.
13278 The name "yycontrol" violates the name space rules, and this stuff
13279 wasn't being used anyway.
13280 (input): Remove action; this stuff wasn't being used.
13281 (gram_error): Rename local variable yylloc -> loc.
13282 * src/reader.h (struct gram_control_s, gram_control_t): Remove.
13283 (YY_DECL): Don't use "yy" at start of local variables.
13284 All uses changed, e.g., yylloc -> loc.
13285 * src/scan-gram.l (STEP): Renamed from YY_STEP. All uses changed.
13286 (STRING_GROW): Renamed from YY_OBS_GROW. All uses changed.
13287 (STRING_FINISH): Renamed from YY_OBS_FINISH. All uses changed.
13288 (STRING_FREE): Renamed from YY_OBS_FREE. All uses changed.
13289
13290 * src/parse-gram.y (gram_error): loc is now const *.
13291 * src/reader.h (gram_error): Likewise.
13292
13293 2002-11-24 Paul Eggert <eggert@twinsun.com>
13294
13295 Version 1.75c.
13296
13297 * tests/actions.at (Actions after errors): Use an output format
13298 more similar to that of the Printers and Destructors test.
13299 Test the position of the ';' token too.
13300 (Printers and Destructors): Likewise.
13301 (Printers and Destructors: %glr-parser): Remove for now, to avoid
13302 unnecessarily alarming people when the test fails.
13303
13304 * data/yacc.c (yyerrlab1): Move this label down, so that the
13305 parser does not discard the lookahead token if the user code
13306 invokes YYERROR. This change is required for POSIX conformance.
13307
13308 * lib/error.c: Sync with gnulib.
13309
13310 2002-11-22 Paul Eggert <eggert@twinsun.com>
13311
13312 * lib/quotearg.c, lib/quotearg.h: Sync with gnulib.
13313 * lib/mbswidth.c, lib/mbswidth.h: Likewise.
13314 * lib/xmalloc.c: Likewise.
13315
13316 2002-11-20 Paul Eggert <eggert@twinsun.com>
13317
13318 * lib/argmatch.c, lib/argmatch.h: Sync with gnulib.
13319
13320 2002-11-20 Paul Eggert <eggert@twinsun.com>
13321
13322 Avoid use of <assert.h>, as the GNU Coding Standards hint that one
13323 should use `if (! x) abort ();' rather than `assert (x);', and
13324 anyway it's one less thing to worry about configuring.
13325
13326 * data/glr.c, lib/hash.c, src/system.h: Do not include <assert.h>.
13327 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise,
13328 and replace all instances of assert with abort.
13329 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
13330 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Likewise.
13331
13332 * data/glr.c (yydoAction, yyglrReduce, yysplitStack, yyresolveStates,
13333 yyresolveAction, yyprocessOneStack): Use abort rather than assert.
13334 * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
13335 hash_find_entry, hash_rehash, hash_insert): Likewise.
13336 * src/conflicts.c (resolve_sr_conflict): Likewise.
13337 * src/lalr.c (set_goto_map, map_goto): Likewise.
13338 * src/nullable.c (nullable_compute): Likewise.
13339 * src/output.c (prepare_rules, token_definitions_output): Likewise.
13340 * src/reader.c (packgram, reader): Likewise.
13341 * src/state.c (state_new, state_free, state_transitions_set,
13342 state_reduction_find): Likewise.
13343 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias,
13344 symbol_pack): Likewise.
13345 * src/tables.c (conflict_row, pack_vector): Likewise.
13346 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
13347 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
13348 get_node_alignement_str, get_arrow_mode_str, get_crossing_type_str,
13349 get_view_str, get_linestyle_str, get_arrowstyle_str): Likewise.
13350
13351 * lib/argmatch.h (ARRAY_CARDINALITY): Do not bother to #undef.
13352 (ARGMATCH_CONSTRAINT): New macro.
13353 (ARGMATCH_ASSERT): Use it.
13354
13355 * src/system.h (verify): New macro.
13356 * src/getargs.c (trace_argmatch, report_argmatch): Use verify
13357 rather than assert.
13358 * src/tables.c (tables_generate): Likewise.
13359
13360 * src/struniq.c (struniq_assert): Now returns void, and aborts
13361 if the assertion is false.
13362 (struniq_assert_p): Remove.
13363 * src/struniq.h: Likewise.
13364
13365 2002-11-18 Paul Eggert <eggert@twinsun.com>
13366
13367 * data/glr.c (yygetLRActions): Replace `yyindex' with
13368 `yytable[yyindex]' to fix typo introduced in my 2002-11-09 patch.
13369 This fixes the regression with Sun ONE Studio 7 cc that I reported in
13370 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00077.html>.
13371
13372 2002-11-18 Akim Demaille <akim@epita.fr>
13373
13374 * doc/bison.texinfo (Tracing): `yyprint' shouldn't prepend a
13375 space.
13376 From Tim Van Holder.
13377
13378 2002-11-17 Paul Eggert <eggert@twinsun.com>
13379
13380 Pacify Sun ONE Studio 7 lint. Also, rename "ParseError"
13381 to "SyntaxError" for consistency with my 2002-11-15 change.
13382
13383 * data/glr.c (YYDPRINTF, YYDSYMPRINT, YYDSYMPRINTF) [!YYDEBUG]: Do
13384 not define to {}, since this breaks the common use of `YYDPRINTF
13385 ((...));' if a single statement is desired (e.g. before `else').
13386 Work around GCC warnings by surrounding corresponding calls with
13387 {} if needed.
13388 (yyhasResolvedValue): Remove unused function.
13389 (yymergeOptionSets, yyresolvStack): Use `continue;' for empty
13390 loop body.
13391 (yyreportSyntaxError): Renamed from yyreportParseError.
13392 (yyrecoverSyntaxError): Renamed from yyrecoverParseError.
13393 All uses changed.
13394 * tests/calc.at (_AT_DATA_CALC_Y): Make vars static instead of
13395 extern when possible. Remove unused initializations.
13396
13397 2002-11-16 Akim Demaille <akim@epita.fr>
13398
13399 Augment the similarity between GLR and LALR traces.
13400
13401 * data/yacc.c (yy_stack_print, YY_STACK_PRINT, yy_reduce_print)
13402 (YY_REDUCE_PRINT): New.
13403 (yyparse): Use them.
13404 * data/glr.c (yy_reduce_print): Use YYFPRINTF, no need for
13405 YYDPRINT here.
13406 (yyglrReduce, yyrecoverParseError, yyparse): Don't report the
13407 state reached after the reduction/recovery, since...
13408 (yyparse, yyprocessOneStack): Report the state we are entering in.
13409
13410 2002-11-16 Akim Demaille <akim@epita.fr>
13411
13412 * src/getargs.h, src/getargs.c (trace_e, trace_args, trace_types):
13413 Add support for --trace=skeleton.
13414 * src/scan-skel.l: %option debug.
13415 Scan strings of non-@ or \n instead of character by character.
13416 (scan_skel): Handle trace_skeleton.
13417 (QPUTS): New.
13418 (@output_parser_name@, @output_header_name@): ``Restore'' their
13419 support (used to be M4 macros).
13420 * data/yacc.c: Quote larger chunks, a la glr.c.
13421 * data/lalr1.cc: Likewise.
13422 The header guards are no longer available, so use some other
13423 string than `YYLSP_NEEDED'.
13424
13425 2002-11-16 Akim Demaille <akim@epita.fr>
13426
13427 Make the ``Printers and Destructors'' test more verbose, taking
13428 `yacc.c''s behavior as (possibly wrong) reference.
13429
13430 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use printf
13431 instead of fprint on stdout.
13432 Set and report the last_line of the symbols.
13433 Consistently display values and locations.
13434
13435 2002-11-16 Paul Eggert <eggert@twinsun.com>
13436
13437 * data/yacc.c: Avoid over-quoting of __line__ and __file__.
13438
13439 2002-11-15 Paul Eggert <eggert@twinsun.com>
13440
13441 * tests/actions.at (Actions after errors): New test case.
13442
13443 * data/glr.c, data/lalr1.cc, data/yacc.cc, doc/bison.texinfo,
13444 src/conflicts.c, src/parse-gram.y, src/tables.c, src/tables.h,
13445 tests/action.at, tests/calc.at, tests/conflicts.at,
13446 tests/cxx-type.at, tests/regression.at:
13447 "parse error" -> "syntax error" for POSIX compatibility.
13448 "parsing stack overflow..." -> "parser stack overflow" so
13449 that code matches Bison documentation.
13450
13451 2002-11-15 Akim Demaille <akim@epita.fr>
13452
13453 * src/parse-gram.y (declaration): Have %parse-param and %lex-param
13454 take two BRACED_CODE, not two string_content.
13455 Free the scanner's obstack when we are done.
13456 (code_content): New.
13457 * tests/calc.at: Adjust.
13458 * doc/bison.texinfo: Adjust.
13459 Also, make sure to include the `,' for these declarations.
13460
13461 2002-11-15 Tim Van Holder <tim.van.holder@pandora.be>
13462
13463 * m4/prereq.m4: Removed the commented jm_PREREQ_HASH
13464 definition; avoids potential autoreconf problems.
13465
13466 2002-11-15 Akim Demaille <akim@epita.fr>
13467
13468 Always check the value returned by yyparse.
13469
13470 * tests/calc.at (_AT_DATA_CALC_Y): Have `main' exit with the value
13471 returned by yyparse.
13472 (_AT_CHECK_CALC_ERROR): Take the expected exit value as argument.
13473 Adjust calls.
13474 * tests/glr-regr1.at (glr-regr1.y): Have `main' exit with the value
13475 returned by yyparse.
13476
13477 2002-11-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13478
13479 * data/glr.c (yyFail): Always set yyerrflag. Corrects regression
13480 on input.at test.
13481
13482 2002-11-14 Paul Eggert <eggert@twinsun.com>
13483
13484 * src/output.c (output_skeleton): Call xfopen instead of
13485 duplicating xfopen's body.
13486
13487 Fix bugs reported by Nelson H. F. Beebe in
13488 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00078.html>.
13489
13490 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that
13491 "$CC -E foo.h" is allowed, as this doesn't work with the Portland
13492 Group compiler. Instead, use "$CC -E bar.c". Include the .h
13493 file twice in the grammar, as an extra check.
13494
13495 * tests/input.at (Torturing the Scanner): Surround the
13496 backslash-newline tests with "#if 0", to make it less likely that
13497 we'll run into compiler bugs. Bring back solitary \ inside
13498 comment, but add a closing comment to work around HP C bug. Don't
13499 test backslash-newline in C character constant.
13500
13501 2002-11-14 Akim Demaille <akim@epita.fr>
13502
13503 * tests/synclines.at (AT_SYNCLINES_COMPILE): Ignore the exit
13504 status of the compiler.
13505 Calling `exit 1' is no longer needed.
13506 Reported by Nelson H. F. Beebe.
13507
13508 2002-11-14 Akim Demaille <akim@epita.fr>
13509
13510 * tests/atlocal.in (CPPFLAGS): We have config.h.
13511 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR):
13512 New.
13513 * tests/actions.at, tests/calc.at, tests/conflicts.at,
13514 * tests/cxx-type.at, tests/glr-regr1.at, tests/headers.at,
13515 * tests/regression.at, tests/torture.at: Use them for all the
13516 grammars that are to be compiled.
13517 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Rename as...
13518 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): this.
13519 * doc/bison.texinfo (GLR Parsers): Document `inline'.
13520
13521 2002-11-14 Akim Demaille <akim@epita.fr>
13522
13523 * doc/bison.texinfo: Various formatting changes (alignments in
13524 samples, additional @group/@end group, GCS in samples.
13525 Use @deffn instead of simple @table to define the directives,
13526 macros, variables etc.
13527
13528 2002-11-13 Paul Eggert <eggert@twinsun.com>
13529
13530 Fix some bugs reported by Albert Chin-A-Young in
13531 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00066.html>.
13532
13533 * tests/input.at (Torturing the Scanner): Don't invoke "cc a.c b.c
13534 -o c"; the HP C compiler chatters during compilation.
13535 Instead, invoke "cc -c a.c -o a.o; cc -c b.c -o b.o; cc a.o b.o -o c".
13536 * tests/headers.at (export YYLTYPE): Likewise.
13537
13538 * tests/input.at (Torturing the Scanner): Remove lines containing
13539 solitary backslashes, as they tickle a bug in the HP C compiler.
13540
13541 * tests/glr-regr1.at (Badly Collapsed GLR States): Avoid //
13542 comments, since they're not portable. Use GNU coding style.
13543
13544 2002-11-13 Akim Demaille <akim@epita.fr>
13545
13546 * data/yacc.c: Leave bigger chunks of quoted text.
13547 (YYDSYMPRINTF): New.
13548 Use it to report symbol activities.
13549 * data/glr.c (YYDSYMPRINTF): New.
13550 Use it.
13551
13552 2002-11-12 Paul Eggert <eggert@twinsun.com>
13553
13554 Version 1.75b.
13555
13556 * data/glr.c (yydoAction): Return YYRESULTTAG, not int.
13557 (yyglrReduce): Return yyok, not 0.
13558 This should avoid the enumerated-type warnings reported
13559 by Nelson H. F. Beebe in
13560 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00057.html>.
13561
13562 * lib/bbitset.h (BITSET_INLINE): Remove.
13563 * lib/bitset.h [! BITSET_INLINE]: Remove.
13564 (bitset_set, bitset_reset, bitset_test): Rename local vars
13565 to avoid shadowing warnings by GCC.
13566
13567 * data/glr.c (inline): Remove #define. It's the user's
13568 responsibility to #define it away, just like 'const'.
13569 This fixes one of the bugs reported by Nelson H. F. Beebe in
13570 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00058.html>.
13571
13572 * Makefile.maint (po-check): Scan .l and .y files instead of the
13573 .c and the .h files that they generate. This fixes the bug
13574 reported by Tim Van Holder in:
13575 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00062.html>
13576 Look for N_ as well as for _. Try to avoid matching #define for
13577 N_ and _.
13578 * po/POTFILES.in: Remove src/parse-gram.c, src/scan-gram.c,
13579 src/system.h. Add src/parse-gram.y, src/scan-gram.l.
13580 * src/scan-gram.l: Revamp regular expressions so that " and '
13581 do not confuse xgettext.
13582
13583 * src/struniq.h (struniq_new): Do not declare the return type
13584 to be 'const'; this violates the C standard.
13585 * src/struniq.c (struniq_new): Likewise.
13586
13587 2002-11-12 Albert Chin-A-Young <china@thewrittenword.com>
13588
13589 * src/Makefile.am (LDADD): Link $(LIBINTL) last to avoid the
13590 duplicate definition of optind on Tru64 UNIX 4.0D with the Compaq
13591 linker.
13592
13593 2002-11-12 Akim Demaille <akim@epita.fr>
13594
13595 * Makefile.maint: Sync with Autoconf:
13596 (local_updates): New.
13597
13598 2002-11-12 Akim Demaille <akim@epita.fr>
13599
13600 * po/POTFILES.in (src/lalr.c, src/state.c): Remove
13601
13602 2002-11-12 Akim Demaille <akim@epita.fr>
13603
13604 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Display the
13605 locations.
13606
13607 2002-11-12 Akim Demaille <akim@epita.fr>
13608
13609 * data/c.m4 (b4_yysymprint_generate): Pass *yyvaluep to YYPRINT,
13610 not yyvalue.
13611
13612 2002-11-12 Akim Demaille <akim@epita.fr>
13613
13614 * tests/actions.at (AT_CHECK_PRINTER_AND_DESTRUCTOR): New.
13615 Use it to test the GLR parser.
13616
13617 2002-11-12 Akim Demaille <akim@epita.fr>
13618
13619 * tests/regression.at (input.y): s/YYEOF/MYEOF/, as the skeleton
13620 defines it.
13621 * data/glr.c (yystos): New.
13622 (b4_yysymprint_generate, b4_yydestruct_generate): Invoke.
13623 (YYDSYMPRINT): New.
13624 (yyval): Don't define it, it is handled via M4.
13625 (yyrecoverParseError): Free verbosely the discarded symbols.
13626 * data/yacc.c (yysymprint): Remove, rather...
13627 (b4_yysymprint_generate): invoke.
13628 * data/c.m4 (b4_yysymprint_generate): New.
13629 Accept pointers as arguments, as opposed to the version from
13630 yacc.c.
13631 (b4_yydestruct_generate): Likewise.
13632 * tests/cations.at (Printers and Destructors): Use Bison directives
13633 instead of CPP macros.
13634 Don't rely on internal details.
13635
13636 2002-11-12 Akim Demaille <akim@epita.fr>
13637
13638 * data/c.m4 (b4_yydestruct_generate, b4_symbol_actions): New.
13639 * data/yacc.c: Rename yychar1 as yytoken, as in glr.c.
13640 Don't work on yychar (i.e., do set it to YYEMPTY, don't match
13641 it against YYEMPTY and so forth), work on yytoken (i.e., set
13642 it to YYEMPTY etc.).
13643 (yydestruct): Replace with a b4_yydestruct_generate invocation.
13644 (b4_symbol_actions): Remove.
13645 * data/glr.c (YYTRANSLATE): As for yacc.c, if negative, it stands
13646 for 0, end-of-input.
13647
13648 2002-11-12 Akim Demaille <akim@epita.fr>
13649
13650 * doc/bison.texinfo (Destructor Decl): New.
13651
13652 2002-11-12 Akim Demaille <akim@epita.fr>
13653
13654 * src/tables.c (tables_generate): Use free for pointers that
13655 cannot be NULL, not XFREE.
13656 (pack_vector): Use assert, not fatal, for bound violations.
13657 * src/state.c (state_new): Likewise.
13658 * src/reader.c (reader): Likewise.
13659 * src/lalr.c (set_goto_map): Likewise.
13660 * src/location.h (LOCATION_PRINT): If first_line is 0, just issue
13661 the file name.
13662
13663 2002-11-12 Akim Demaille <akim@epita.fr>
13664
13665 * src/scan-gram.l, src/reader.h (scanner_last_string_free):
13666 Restore.
13667 * src/scan-gram.l (last_string): Is global to the file, not to
13668 yylex.
13669 * src/parse-gram.y (input): Don't append the epilogue here,
13670 (epilogue.opt): do it here, and free the scanner's obstack.
13671 * src/reader.c (epilogue_set): Rename as...
13672 (epilogue_augment): this.
13673 * data/c.m4 (b4_epilogue): Defaults to empty.
13674
13675 2002-11-12 Akim Demaille <akim@epita.fr>
13676
13677 * src/getargs.c (long_options): Remove duplicates.
13678 * src/vmsgetargs.c, src/build.com, src/bison.cld, src/vmshlp.mar:
13679 Remove.
13680 * doc/bison.rnh: Remove.
13681 * doc/bison.texinfo (VMS Invocation): Remove.
13682
13683 2002-11-12 Akim Demaille <akim@epita.fr>
13684
13685 * src/struniq.h, src/struniq.c (struniq_t): Is const.
13686 (STRUNIQ_EQ, struniq_assert, struniq_assert_p): New.
13687
13688 Use struniq for symbols.
13689
13690 * src/symtab.h (symbol_t): The tag member is a struniq.
13691 (symbol_type_set): Adjust.
13692 * src/symtab.c (symbol_new): Takes a struniq.
13693 (symbol_free): Don't free the tag member.
13694 (hash_compare_symbol_t, hash_symbol_t): Rename as...
13695 (hash_compare_symbol, hash_symbol): these.
13696 Use the fact that tags as struniqs.
13697 (symbol_get): Use struniq_new.
13698 * src/symlist.h, src/symlist.c (symbol_list_n_type_name_get):
13699 Returns a strniq.
13700 * src/reader.h (merger_list, grammar_currentmerge_set): The name
13701 and type members are struniqs.
13702 * src/reader.c (get_merge_function)
13703 (grammar_current_rule_merge_set): Adjust.
13704 (TYPE, current_type): Are struniq.
13705
13706 Use struniq for file names.
13707
13708 * src/files.h, src/files.c (infile): Split into...
13709 (grammar_file, current_file): these.
13710 * src/scan-gram.c (YY_USER_INIT, handle_syncline): Adjust.
13711 * src/reduce.c (reduce_print): Likewise.
13712 * src/getargs.c (getargs): Likewise.
13713 * src/complain.h, src/complain.c: Likewise.
13714 * src/main.c (main): Call struniqs_new early enough to use it for
13715 file names.
13716 Don't free the input file name.
13717
13718 2002-11-12 Akim Demaille <akim@epita.fr>
13719
13720 * src/symtab.c (symbol_free): Remove dead deactivated code:
13721 type_name are properly removed.
13722 Don't use XFREE to free items that cannot be NULL.
13723 * src/struniq.h, src/struniq.c: New.
13724 * src/main.c (main): Initialize/free struniqs.
13725 * src/parse-gram.y (%union): Add astruniq member.
13726 (yyprint): Adjust.
13727 * src/scan-gram.l (<{tag}>): Return a struniq.
13728 Free the obstack bit that used to store it.
13729 * src/symtab.h (symbol_t): The 'type_name' member is a struniq.
13730
13731 2002-11-11 Paul Eggert <eggert@twinsun.com>
13732
13733 Revamp to fix many (but not all) of the C- and M4-related quoting
13734 problems. Among other things, this fixes the Bison bug reported
13735 by Jan Hubicka when processing the Bash grammar; see:
13736 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00039.html>
13737
13738 Use new @ escapes consistently. Represent brackets with @{ and @}
13739 rather than @<:@ and @:>@, since this works a bit better with dumb
13740 editors like vi. Represent @ with @@, since @ is now consistently
13741 an escape. Use @oline@ and @ofile@ rather than __oline__ and
13742 __ofile__, to avoid unexpected expansions. Similarly, use @output
13743 rather than #output.
13744
13745 * data/c.m4 (b4_copyright): Omit file name from comment, since
13746 the file name could contain "*/".
13747 (b4_synclines_flag): Don't quote the 2nd argument; it should already
13748 be quoted. All uses changed.
13749
13750 * data/glr.c: Use new @ escapes consistently.
13751 (b4_input_suffix, b4_output_parser_suffix, b4_output_parser_name,
13752 b4_output_header_suffix, b4_output_header_name, b4_header_guard):
13753 Remove, since they couldn't handle arbitrary characters in file
13754 names.
13755 * data/lalr1.cc: Likewise.
13756 * data/yacc.c: Likewise.
13757
13758 * src/files.c (output_infix): Remove; all uses removed.
13759 * src/files.h: Likewise.
13760
13761 * data/glr.c: Remove use of "#ifdef b4_header_guard", since it
13762 mishandled funny characters in file names, and anyway it isn't
13763 needed any more.
13764 * data/yacc.c: Likewise.
13765 * data/lalr1.cc: Use YYSLP_NEEDED instead of b4_header_guard.
13766
13767 * data/glr.c (YYSTYPE_IS_TRIVIAL): Define when the .h file would.
13768 * data/yacc.c: Likewise.
13769
13770 * src/muscle_tab.c: Include quotearg.h, since we need to quote C
13771 strings now.
13772 (muscle_init): Quote filename as a C string.
13773 * src/muscle_tab.h (MUSCLE_GROW_STRING_PAIR): Remove; unused.
13774 (MUSCLE_OBSTACK_SGROW, MUSCLE_INSERT_C_STRING): New macros.
13775 * src/output.c (escaped_file_name_output): New function.
13776 (prepare_symbols): Quote tokens for M4.
13777 (prepare): Don't insert output_infix, output_prefix,
13778 output_parser_name, output_header_name; this is now down by scan-skel.
13779 Insert skeleton as a C string.
13780
13781 * src/output.c (user_actions_output, symbol_destructors_output,
13782 symbol_printers_output): Quote filenames for C and M4.
13783 * src/reader.c (prologue_augment, epilogue_set): Likewise.
13784
13785 * src/scan-gram.l (<SC_CHARACTER>): Don't worry about any backslash
13786 escapes other than \\ and \'; this simplifies the code.
13787 (<SC_STRING>): Likewise, for \\ and \".
13788 (<SC_COMMENT,SC_LINE_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,
13789 SC_PROLOGUE,SC_EPILOGUE>): Escape $ and @, too.
13790 Use new escapes @{ and @} for [ and ].
13791
13792 * src/scan-skel.l (yylineno, yyoutname): Remove static vars, replacing
13793 them with auto vars.
13794 Switch to new escape scheme, where @ is the escape character uniformly.
13795 Abort if a stray escape character is found. Avoid unbounded input
13796 buffer when parsing non-escaped text.
13797
13798 * tests/input.at (Torturing the Scanner): Add tests that @oline@,
13799 __oline__, #output, $@, and @{ do not have unintended meanings.
13800
13801 2002-11-09 Paul Eggert <eggert@twinsun.com>
13802
13803 Fix the test failure due to GCC warnings described in
13804 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00000.html>.
13805 * data/glr.c (yyis_pact_ninf, yyis_table_ninf): New macros, which
13806 evaluate to 0 if it's impossible for NINF to be in the respective
13807 table.
13808 (yygetLRActions, yyrecoverParseError): Use them.
13809
13810 * src/scan-gram.l (unexpected_end_of_file): Fix bug: columns were
13811 counted in the token inserted at end of file. Now takes
13812 location_t *, not location_t, so that the location can be
13813 adjusted. All uses changed.
13814
13815 * tests/regression.at (Invalid inputs): Adjust wording in
13816 diagnostic to match the new behavior.
13817
13818 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR,
13819 AT_DATA_HORIZONTAL_GRAMMAR, AT_DATA_LOOKAHEADS_GRAMMAR,
13820 AT_DATA_STACK_TORTURE): Replace `assert (x);' with `if (! (x))
13821 abort ();'. This reduces the runtime of the "Many lookaheads"
13822 test from 27.6 to 2.7 minutes on a 440 MHz Ultrasparc III running
13823 GCC 3.2.
13824
13825 2002-11-07 Paul Eggert <eggert@twinsun.com>
13826
13827 * src/parse-gram.y (CHARACTER): Remove unused token.
13828 All uses removed.
13829
13830 * src/scan-gram.l: Remove stack option. We no longer use the
13831 stack, since the stack was never deeper than 1; instead, use the
13832 new auto var c_context to record the stacked value.
13833
13834 Remove nounput option. At an unexpected end of file, we now unput
13835 the minimal input necessary to end cleanly; this simplifies the
13836 code.
13837
13838 Avoid unbounded token sizes where this is easy.
13839
13840 (unexpected_end_of_file): New function.
13841 Use it to systematize the error message on unexpected EOF.
13842 (last-string): Now auto, not static.
13843 (YY_OBS_FREE): Remove unnecessary do while (0) wrapper.
13844 (scanner_last_string_free): Remove; not used.
13845 (percent_percent_count): Move decl to just before use.
13846 (SC_ESCAPED_CHARACTER): Return ID at unexpected end of file,
13847 not the (never otherwised-used) CHARACTER.
13848
13849 2002-11-07 Akim Demaille <akim@epita.fr>
13850
13851 Let yyerror always receive the msg as last argument, so that
13852 yyerror can be variadic.
13853
13854 * data/yacc.c (b4_yyerror_args): New.
13855 Use it when calling yyerror.
13856 * data/glr.c (b4_yyerror_args, b4_lyyerror_args): New.
13857 Use it when calling yyerror.
13858 * doc/bison.texinfo (Error Reporting): Adjust.
13859 * tests/calc.at (_AT_DATA_CALC_Y): Adjust.
13860 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Adjust.
13861
13862 2002-11-06 Akim Demaille <akim@epita.fr>
13863
13864 #line should have quoted strings.
13865 Ideally, this should be done by m4_quotearg.
13866
13867 * src/scan-skel.l: Include quotearg.h.
13868 Quote __ofile__.
13869 * src/output.c (symbol_printers_output)
13870 (symbol_destructors_output): Quote the file name.
13871
13872 2002-11-06 Akim Demaille <akim@epita.fr>
13873
13874 * tests/regression.at (Invalid inputs): Adjust to the recent
13875 messages.
13876
13877 2002-11-06 Akim Demaille <akim@epita.fr>
13878
13879 Restore --no-lines.
13880 Reported by Jim Kent.
13881
13882 * data/c.m4 (b4_syncline): New.
13883 * data/glr.c, data/yacc.c, data/lalr1.cc: Use it.
13884 * src/reader.c (prologue_augment, epilogue_set): Use b4_syncline.
13885 * src/output.c (user_actions_output): Likewise.
13886 (prepare): Define 'b4_synclines_flag'.
13887 * src/muscle_tab.c (muscle_init): Don't define b4_linef.
13888
13889 2002-11-06 Akim Demaille <akim@epita.fr>
13890
13891 * src/main.c (main): Free `infile'.
13892 * src/scan-gram.l (handle_syncline): New.
13893 Recognize `#line'.
13894 * src/output.c (user_actions_output, symbol_destructors_output)
13895 (symbol_printers_output): Use the location's file name, not
13896 infile.
13897 * src/reader.c (prologue_augment, epilogue_set): Likewise.
13898
13899 2002-11-05 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13900
13901 * src/tables.c (matching_state): Don't allow states to match if
13902 either has GLR conflict entries.
13903
13904 2002-11-05 Paul Eggert <eggert@twinsun.com>
13905
13906 * src/scan-gram.l: Use more accurate diagnostics, e.g.
13907 "integer out of range" rather than "invalid value".
13908 * tests/input.at (Invalid $n, Invalid @n): Change expected wording
13909 accordingly.
13910
13911 Scan <% and %> digraphs in C code as POSIX 1003.1-2001 requires.
13912 Also, remove one static variable in the scanner.
13913
13914 * src/scan-gram.l (braces_level): Now auto, not static.
13915 Initialize to zero if the compiler is being picky.
13916 (INITIAL): Clear braces_level instead of incrementing it.
13917 (SC_BRACED_CODE): Treat <% and %> as { and } when inside C code,
13918 as POSIX 1003.1-2001 requires.
13919 * src/system.h (IF_LINT): New macro, taken from coreutils.
13920 * configure.ac: Define "lint" if --enable-gcc-warnings.
13921
13922 2002-11-05 Akim Demaille <akim@epita.fr>
13923
13924 * src/scan-gram.l: When it starts with `%', complain about the
13925 whole directive, not just that `invalid character: %'.
13926
13927 2002-11-04 Akim Demaille <akim@epita.fr>
13928
13929 * Makefile.maint: Update from Autoconf.
13930 (update, cvs-update, po-update, do-po-update): New.
13931
13932 2002-11-04 Akim Demaille <akim@epita.fr>
13933
13934 * tests/glr-regr1.at (Badly Collapsed GLR States): Prototype yylex
13935 and yyerror.
13936 Have yyerror `use' its arguments.
13937 * tests/calc.at (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF
13938 returns true when location & yacc & pure & parse-param.
13939 (_AT_DATA_CALC_Y): Let yyerror ``use'' its arguments.
13940
13941 2002-11-04 Akim Demaille <akim@epita.fr>
13942
13943 * src/location.h (LOCATION_PRINT): Use quotearg slot 3 to avoid
13944 clashes.
13945 * src/scan-gram.l: Use [\'] instead of ['] to pacify
13946 font-lock-mode.
13947 Use complain_at.
13948 Use quote, not quote_n since LOCATION_PRINT no longer uses the
13949 slot 0.
13950
13951 2002-11-03 Paul Eggert <eggert@twinsun.com>
13952
13953 * src/reader.c (get_merge_function, grammar_current_rule_check):
13954 Use consistent diagnostics for reporting type name clashes.
13955 Quote the types with <>, for consistency with Yacc.
13956 * tests/input.at (Type Clashes): Adjust to diagnostic changes.
13957
13958 2002-11-03 Akim Demaille <akim@epita.fr>
13959
13960 * data/c.m4 (b4_identification, b4_user_args, b4_parse_param):
13961 New.
13962 * data/yacc.m4 (b4_pure_args, b4_Pure_args): New.
13963 (b4_parse_param): Remove.
13964 Use b4_identification.
13965 Propagate b4_pure_args where needed to pass them to yyerror.
13966 * data/glr.m4 (b4_parse_param): Remove.
13967 (b4_user_formals, b4_pure_args, b4_pure_formals, b4_lpure_args)
13968 (b4_lpure_formals): New.
13969 Use b4_identification.
13970 (YY_USER_FORMALS, YY_USER_ARGS): Remove, replaced by
13971 b4_user_formals and b4_user_args.
13972 (yyexpandGLRStack, yyFail, yyaddDeferredAction, yyglrShiftDefer)
13973 (yyreportAmbiguity): When using a pure parser, also need
13974 the location, and the parse-params.
13975 Adjust callers.
13976 (yyuserAction, yyglrShift, yyreportParseError, yyrecoverParseError):
13977 When using a pure parser, also need the parse-params.
13978 Adjust callers.
13979 * tests/calc.at: Test pure (%pure-parser) and absolutely pure
13980 (%pure-parser + %parse-param) LALR and GLR parsers.
13981 (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): New, define AT_PARAM_IF,
13982 AT_LOCATION_IF, AT_PURE_IF, AT_GLR_IF, AAT_PURE_AND_LOC_IF,
13983 AT_GLR_OR_PARAM_IF, AT_YYERROR_ARG_LOC_IF, AT_YYERROR_SEES_LOC_IF.
13984 (_AT_DATA_CALC_Y): Equip for purity of yyerror.
13985 (_AT_CHECK_CALC_ERROR): Use AT_YYERROR_SEES_LOC_IF.
13986 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Equip for yyerror purity.
13987 * doc/bison.texinfo: Untabify the whole file.
13988 (Parser Function): Document %parse-param, deprecate YYPARSE_PARAM.
13989 (Pure Calling): Document %lex-param, deprecate YYLEX_PARAM.
13990 (Error Reporting): Adjust to these new directives.
13991 Document %error-verbose, deprecate YYERROR_VERBOSE.
13992
13993 2002-11-03 Akim Demaille <akim@epita.fr>
13994
13995 * tests/calc.at: Change all the AT_CHECK_CALC_LALR and
13996 AT_CHECK_CALC_GLR invocations to use % directives, instead of
13997 command line options.
13998 * tests/cxx-type.at: Formatting changes.
13999
14000 2002-11-03 Paul Eggert <eggert@twinsun.com>
14001
14002 * src/scan-gram.l: Revamp to fix POSIX incompatibilities,
14003 to count columns correctly, and to check for invalid inputs.
14004
14005 Use mbsnwidth to count columns correctly. Account for tabs, too.
14006 Include mbswidth.h.
14007 (YY_USER_ACTION): Invoke extend_location rather than LOCATION_COLUMNS.
14008 (extend_location): New function.
14009 (YY_LINES): Remove.
14010
14011 Handle CRLF in C code rather than in Lex code.
14012 (YY_INPUT): New macro.
14013 (no_cr_read): New function.
14014
14015 Scan UCNs, even though we don't fully handle them yet.
14016 (convert_ucn_to_byte): New function.
14017
14018 Handle backslash-newline correctly in C code.
14019 (SC_LINE_COMMENT, SC_YACC_COMMENT): New states.
14020 (eols, blanks): Remove. YY_USER_ACTION now counts newlines etc.;
14021 all uses changed.
14022 (tag, splice): New EREs. Do not allow NUL or newline in tags.
14023 Use {splice} wherever C allows backslash-newline.
14024 YY_STEP after space, newline, vertical-tab.
14025 ("/*"): BEGIN SC_YACC_COMMENT, not yy_push_state (SC_COMMENT).
14026
14027 (letter, id): Don't assume ASCII; e.g., spell out a-z.
14028
14029 ({int}, handle_action_dollar, handle_action_at): Check for integer
14030 overflow.
14031
14032 (YY_STEP): Omit trailing semicolon, so that it's more like C.
14033
14034 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>): Allow \0 and \00
14035 as well as \000. Check for UCHAR_MAX, not 255.
14036 Allow \x with an arbitrary positive number of digits, as in C.
14037 Check for overflow here.
14038 Allow \? and UCNs, for compatibility with C.
14039
14040 (handle_symbol_code_dollar): Use quote_n slot 1 to avoid collision
14041 with quote slot used by complain_at.
14042
14043 * tests/input.at: Add tests for backslash-newline, m4 quotes
14044 in symbols, long literals, and funny escapes in strings.
14045
14046 * configure.ac (jm_PREREQ_MBSWIDTH): Add.
14047 * lib/Makefile.am (libbison_a_SOURCES): Add mbswidth.h, mbswidth.c.
14048 * lib/mbswidth.h, lib/mbswidth.c: New files, from GNU gettext.
14049 * m4/Makefile.am (EXTRA_DIST): Add mbswidth.m4.
14050 * m4/mbswidth.m4: New file, from GNU coreutils.
14051
14052 * doc/bison.texinfo (Grammar Outline): Document // comments.
14053 (Symbols): Document that trigraphs have no special meaning in Bison,
14054 nor is backslash-newline allowed.
14055 (Actions): Document that trigraphs have no special meaning.
14056
14057 * src/location.h (LOCATION_COLUMNS, LOCATION_LINES): Remove;
14058 no longer used.
14059
14060 2002-11-02 Paul Eggert <eggert@twinsun.com>
14061
14062 * src/reader.c: Don't include quote.h; not needed.
14063 (get_merge_function): Reword warning to be consistent with
14064 type clash diagnostic in grammar_current_rule_check.
14065
14066 * lib/quotearg.c (quotearg_buffer_restyled): Fix off-by-two
14067 bug in trigraph handling.
14068
14069 * src/output.c (prepare_symbols): When printing token names,
14070 escape "[" as "@<:@" and likewise for "]".
14071
14072 * src/system.h (errno): Remove declaration, as we are now
14073 assuming C89 or better, and C89 guarantees errno.
14074
14075 2002-10-30 Paul Eggert <eggert@twinsun.com>
14076
14077 * lib/bitset_stats.c (bitset_stats_read, bitset_stats_write):
14078 Check for close failures.
14079 * src/files.h (xfclose): Return void, not int, since it always
14080 returned zero.
14081 * src/files.c (xfclose): Likewise. Report I/O error if ferror
14082 indicates one.
14083 * src/output.c (output_skeleton): Use xfclose rather than fclose
14084 and ferror. xfclose now checks ferror.
14085
14086 * data/glr.c (YYLEFTMOST_STATE): Remove.
14087 (yyreportTree): Use a stack-based leftmost state. This avoids
14088 our continuing battles with bogus warnings about initializers.
14089
14090 2002-10-30 Akim Demaille <akim@epita.fr>
14091
14092 * src/system.h: Don't use #ifdef/#ifndef on HAVE_ values, only
14093 #if.
14094
14095 2002-10-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14096
14097 * tests/glr-regr1.at: New test for reported regressions.
14098 * tests/testsuite.at: Add glr-regr1.at test.
14099 * tests/Makefile.am: Add glr-regr1.at test.
14100
14101 2002-10-24 Paul Eggert <eggert@twinsun.com>
14102
14103 Version 1.75a.
14104
14105 * tests/calc.at (_AT_DATA_CALC_Y): Remove unused strcat declaration.
14106 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Include stdlib.h, since
14107 we use malloc. Don't assume 'A' through 'Z' are contiguous.
14108 Don't assume strdup exists; POSIX says its an XSI extension.
14109 Check for buffer overflow on input.
14110
14111 2002-10-24 Akim Demaille <akim@epita.fr>
14112
14113 * src/output.c (output_skeleton): Don't disable M4sugar comments
14114 too soon: it results in comments being expanded.
14115 * data/yacc.c, data/glr.c, data/lalr1.cc: Do it right before the
14116 first output.
14117
14118 2002-10-24 Akim Demaille <akim@epita.fr>
14119
14120 * data/yacc.c (m4_int_type): New.
14121 * data/c.m4 (m4_int_type): Don't use yysigned_char, but `signed
14122 char' as only yacc.c wants K&R portability.
14123 * data/glr.c (yysigned_char): Remove.
14124 * data/lalr1.cc: Rename the trailing b4_name as b4_parser_class_name.
14125 Reported by Quoc Peyrot.
14126
14127 2002-10-23 Paul Eggert <eggert@twinsun.com>
14128
14129 * src/main.c (main): With --trace=time, report times even if a
14130 non-fatal error occurs. Formerly, the times were reported in some
14131 such cases but not in others.
14132 * src/reader.c (reader): Just return if a complaint has been issued,
14133 instead of exiting, so that 'main' can report times.
14134
14135 2002-10-22 Akim Demaille <akim@epita.fr>
14136
14137 * src/system.h: Include sys/types.
14138 Reported by Bert Deknuydt.
14139
14140 2002-10-23 Paul Eggert <eggert@twinsun.com>
14141
14142 * configure.ac (AC_PROG_LEX): Use instead of AM_PROG_LEX.
14143 Suggested by Art Haas.
14144
14145 2002-10-22 Paul Eggert <eggert@twinsun.com>
14146
14147 * src/complain.c (exit) [! (STDC_HEADERS || _LIBC)]: Remove exit
14148 decl; not needed any more.
14149 * src/main.c (main): Use return to exit, undoing yesterday's change.
14150 The last OS that we could find where this wouldn't work is
14151 SunOS 3.5, and that's too old to worry about now.
14152
14153 * data/glr.c (struct yyltype): Define members even when not
14154 doing locations. This is more consistent with yacc.c, and it
14155 works around the following bug reports:
14156 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00106.html
14157 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00111.html
14158
14159 * doc/bison.texinfo: Minor spelling and typographical fixes. Use
14160 @acronym consistently. Standardize on "Yacc" instead of "YACC",
14161 "Algol" instead of "ALGOL". Give a bit more history about BNF.
14162
14163 2002-10-22 Akim Demaille <akim@epita.fr>
14164
14165 * data/README: New.
14166
14167 2002-10-21 Paul Eggert <eggert@twinsun.com>
14168
14169 Be consistent about 'bool'; the old code used an enum in one
14170 module and an int in another, and this violates the C standard.
14171 * m4/stdbool.m4: New file, from coreutils 4.5.3.
14172 * configure.ac (AC_HEADER_STDBOOL): Add.
14173 * m4/Makefile.am (EXTRA_DIST): Add stdbool.m4.
14174 * src/muscle_tab.c (hash_compare_muscles): (a ? FALSE : TRUE) -> (! a)
14175 * src/symtab.c (hash_compare_symbol_t): Likewise.
14176 * src/system.h (bool, false, true): Use a definition consistent
14177 with ../lib/hash.c. All uses changed.
14178
14179 * src/complain.c (warning_issued): Renamed from warn_message_count,
14180 so that we needn't worry about integer overflow (!).
14181 Now of type bool. All uses changed.
14182 (complaint_issued): Renamed from complain_message_count; likewise.
14183
14184 * src/main.c (main): Use exit to exit with failure.
14185
14186 * src/complain.c (fatal_at, fatal): Use EXIT_FAILURE and EXIT_SUCCESS
14187 rather than 1 and 0.
14188 * src/main.c (main): Likewise.
14189 * src/getargs.c (getargs): Likewise.
14190 * src/reader.c (reader): Likewise.
14191
14192 * src/getarg.c (getargs): Remove duplicate code for
14193 "Try `bison --help'".
14194
14195 * src/files.c (xfopen, xfclose): Use EXIT_FAILURE rather than 2.
14196 What was that "2" for?
14197
14198 * src/complain.h (fatal, fatal_at): Add __attribute__((__noreturn__)).
14199 * src/getargs.c (usage): Likewise.
14200
14201 * src/getargs.c (getargs): When there are too few operands, report
14202 the last one. When there are too many, report the first extra
14203 one. This is how diffutils does it.
14204
14205 2002-10-20 Paul Eggert <eggert@twinsun.com>
14206
14207 Remove K&R vestiges.
14208 * configure.ac (AC_C_CONST, AM_C_PROTOTYPES): Remove.
14209 * src/complain.c (VA_START): Remove. Assume prototypes.
14210 (vfprintf) [! (HAVE_VPRINTF || defined vfprintf)]: New macro.
14211 (private_strerror, warn_at, warn, complain_at, complain, fatal_at,
14212 fatal): Assume prototypes.
14213 * src/complain.h: Assume prototypes.
14214 * src/system.h (PARAMS): Remove.
14215 Include <limits.h> unconditionally, since it's guaranteeed even
14216 for a freestanding C89 compiler.
14217 (SHRT_MIN, SHRT_MAX): Remove, since C89 guarantees them.
14218 * src/vmsgetargs.c (getargs, cli_present, cli_get_value): Prototype.
14219
14220 2002-10-20 Akim Demaille <akim@epita.fr>
14221
14222 * src/muscle_tab.c (muscle_grow): Remove trailing debugging code.
14223 * data/glr.c (YY_USER_FORMALS, YY_USER_ARGS): New.
14224 (yyuserAction, yydoAction, yyglrReduce, yyresolveValue)
14225 (yyresolveStates, yyresolveAction, yyresolveStack)
14226 (yyprocessOneStack): Use them.
14227 (yy_reduce_print): New.
14228 * tests/calc.at (_AT_DATA_CALC_Y): Exercise %parse-param.
14229
14230 2002-10-20 Akim Demaille <akim@epita.fr>
14231
14232 * data/c.m4 (b4_c_ansi_args): Recognize functions with no
14233 arguments and output `void'.
14234 (b4_c_function): Rename as...
14235 (b4_c_function_def): this.
14236 (b4_c_function_decl, b4_c_ansi_function_def)
14237 (b4_c_ansi_function_decl): New.
14238 Change the interpretation of the arguments: before `int, foo', now
14239 `int foo, foo'.
14240 * data/yacc.c (yyparse): Prototype and define thanks to these.
14241 Adjust b4_c_function_def uses.
14242 * data/glr.c (yyparse): Likewise, but ANSI only.
14243
14244 2002-10-20 Akim Demaille <akim@epita.fr>
14245
14246 * src/output.c (prepare): Move the definition of `tokens_number',
14247 `nterms_number', `undef_token_number', `user_token_number_max'
14248 to...
14249 (prepare_tokens): Here.
14250 (prepare_tokens): Rename as...
14251 (prepare_symbols): this.
14252 (prepare): Move the definition of `rules_number' to...
14253 (prepare_rules): here.
14254 (prepare): Move the definition of `last', `final_state_number',
14255 `states_number' to...
14256 (prepare_states): here.
14257 * data/yacc.c, data/lalr1.cc, data/glr.c: Normalize `>' into `<'.
14258
14259 2002-10-20 Akim Demaille <akim@epita.fr>
14260
14261 * src/tables.h, src/tables.c, src/output.c: Comment changes.
14262
14263 2002-10-20 Akim Demaille <akim@epita.fr>
14264
14265 * data/yacc.c, data/yacc.c (b4_location_if, b4_pure_if): Move to...
14266 * data/c.m4: here.
14267
14268 2002-10-20 Akim Demaille <akim@epita.fr>
14269
14270 * src/output.c (prepare): Use MUSCLE_INSERT_STRING.
14271 * src/muscle_tab.c (muscle_pair_list_grow): Rename `val as
14272 `pair'.
14273 (muscle_init): Move the `b4_ltype', `b4_maxdepth', `b4_initdepth',
14274 `name' to...
14275 * data/glr.c, data/lalr1.cc, data/yacc.c (b4_location_type)
14276 (b4_stack_depth_init, b4_stack_depth_max, b4_parser_class_name):
14277 These.
14278
14279 2002-10-19 Paul Eggert <eggert@twinsun.com>
14280
14281 Do not create a temporary file, as that involves security and
14282 cleanup headaches. Instead, use a pair of pipes.
14283 Derived from a suggestion by Florian Krohm.
14284 * lib/subpipe.c, lib/subpipe.h, m4/subpipe.m4: New files.
14285 * lib/mkstemp.c, lib/readpipe.c, lib/tempname.c, m4/mkstemp.m4: Remove.
14286 * configure.ac (UTILS_FUNC_MKSTEMP, jm_PREREQ_TEMPNAME): Remove.
14287 (BISON_PREREQ_SUBPIPE): Add.
14288 * lib/Makefile.am (libbison_a_SOURCES): Remove readpipe.c.
14289 Add subpipe.h, subpipe.c.
14290 * m4/Makefile.am (EXTRA_DIST): Remove mkstemp.m4. Add subpipe.m4.
14291 * po/POTFILES.in: Add lib/subpipe.c.
14292 * src/output.c: Include "subpipe.h".
14293 (m4_invoke): Remove decl.
14294 (scan_skel): New decl.
14295 (output_skeleton): Use pipe rather than temporary file for m4 input.
14296 Check that m4sugar.m4 is readable, to avoid deadlock.
14297 Check for pipe I/O error.
14298 * src/scan-skel.l (readpipe): Remove decl.
14299 (scan_skel): New function, to be used in place of m4_invoke.
14300 Read from stream rather than file.
14301
14302 * lib/timevar.c (TICKS_TO_MSEC, CLOCKS_TO_MSEC): Do not cast to
14303 float, as this generates a warning on Solaris 8 + GCC 3.2 with
14304 --enable-gcc-warnings. Instead, divide into 1.0 rather than 1;
14305 this generates a more-accurate value anyway.
14306
14307 * lib/timevar.c (timervar_accumulate): Rename locals to
14308 avoid confusion with similarly-named more-global.
14309 * src/muscle_tab.c (muscle_pair_list_grow): Likewise.
14310
14311 * src/output.c (prepare): Use xstrdup to convert char const *
14312 to char *, to avoid GCC warning.
14313
14314 2002-10-19 Akim Demaille <akim@epita.fr>
14315
14316 * tests/calc.at (_AT_DATA_CALC_Y): Define VAL, LOC, LEX_FORMALS,
14317 LEX_PRE_FORMALS, LEX_ARGS, LEX_PRE_ARGS, USE_LEX_ARGS.
14318 Use them to have `calc.y' ready for %pure-parser.
14319 * data/yacc.c (YYLEX): Pass a yylex return type to
14320 b4_c_function_call.
14321
14322 2002-10-19 Akim Demaille <akim@epita.fr>
14323
14324 Prototype support of %lex-param and %parse-param.
14325
14326 * src/parse-gram.y: Add the definition of the %lex-param and
14327 %parse-param tokens, plus their rules.
14328 Drop the `_' version of %glr-parser.
14329 Add the "," token.
14330 * src/scan-gram.l (INITIAL): Scan them.
14331 * src/muscle_tab.c: Comment changes.
14332 (muscle_insert, muscle_find): Rename `pair' as `probe'.
14333 * src/muscle_tab.h (MUSCLE_INSERT_PREFIX): Remove unused.
14334 (muscle_entry_s): The `value' member is no longer const.
14335 Adjust all dependencies.
14336 * src/muscle_tab.c (muscle_init): Adjust: use
14337 MUSCLE_INSERT_STRING.
14338 Initialize the obstack earlier.
14339 * src/muscle_tab.h, src/muscle_tab.c (muscle_grow)
14340 (muscle_pair_list_grow): New.
14341 * data/c.m4 (b4_c_function_call, b4_c_args): New.
14342 * data/yacc.c (YYLEX): Use b4_c_function_call to honor %lex-param.
14343 * tests/calc.at: Use %locations, not --locations.
14344 (AT_CHECK_CALC_GLR): Use %glr-parser, not %glr_parser.
14345
14346 2002-10-19 Akim Demaille <akim@epita.fr>
14347
14348 * src/getargs.c (usage): Take status as argument and exit
14349 accordingly.
14350 Report the traditional `Try ... --help' message when status != 0.
14351 (usage, version): Don't take a FILE * as arg, it is pointless.
14352 (getargs): When there is an incorrect number of arguments, make it
14353 an error, and report it GNUlically thanks to `usage ()'.
14354
14355 2002-10-18 Paul Eggert <eggert@twinsun.com>
14356
14357 * data/glr.c (yyreportParseError): Don't assume that sprintf
14358 yields the length of the printed string, as this is not true
14359 on SunOS 4.1.4. Reported by Peter Klein.
14360
14361 * tests/calc.at (_AT_DATA_CALC_Y): #undef memcmp and realloc.
14362 * tests/conflicts.at (%nonassoc and eof): Likewise.
14363 Fixes SunOS 4.1.4 test failure reported by Peter Klein.
14364
14365 2002-10-17 Akim Demaille <akim@epita.fr>
14366
14367 * src/getargs.h (trace_e): Add trace_scan, and trace_parse.
14368 * src/getargs.c (trace_types, trace_args): Adjust.
14369 * src/reader.c (grammar_current_rule_prec_set)
14370 (grammar_current_rule_dprec_set, grammar_current_rule_merge_set):
14371 Standardize error messages.
14372 And s/@prec/%prec/!
14373 (reader): Use trace_flag to enable scanner/parser debugging,
14374 instead of an adhoc scheme.
14375 * src/scan-gram.l: Remove trailing debugging code.
14376
14377 2002-10-16 Paul Eggert <eggert@twinsun.com>
14378
14379 * src/muscle_tab.h (MUSCLE_TAB_H_): Was misspelled as
14380 MUSCLE_TAB_H.
14381
14382 * NEWS: Officially drop support for building Bison with K&R C,
14383 since it didn't work anyway and it's not worth worrying about.
14384 * Makefile.maint (wget_files): Remove ansi2knr.c.
14385 (ansi2knr.c-url_prefix): Remove.
14386 * lib/.cvsignore: Remove ansi2knr, ansi2knr.*.
14387 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
14388 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
14389
14390 2002-10-15 Paul Eggert <eggert@twinsun.com>
14391
14392 Stop using the "enum_" trick for K&R-style function definitions;
14393 it confused me, and I was the author! Instead, assume that people
14394 who want to use K&R C compilers (when using these modules in GCC,
14395 perhaps?) will run ansi2knr.
14396
14397 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): Remove.
14398 All uses of "enum_" changed to "enum ".
14399 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
14400 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
14401
14402 * lib/abitset.c (abitset_and, abitset_and_cmp, abitset_and_or,
14403 abitset_and_or_cmp, abitset_andn, abitset_andn_cmp,
14404 abitset_andn_or, abitset_andn_or_cmp, abitset_bytes, abitset_copy,
14405 abitset_copy1, abitset_disjoint_p, abitset_empty_p,
14406 abitset_equal_p, abitset_init, abitset_list, abitset_list_reverse,
14407 abitset_not, abitset_ones, abitset_or, abitset_or_and,
14408 abitset_or_and_cmp, abitset_or_cmp, abitset_reset, abitset_set,
14409 abitset_size, abitset_small_list, abitset_subset_p, abitset_test,
14410 abitset_unused_clear, abitset_xor, abitset_xor_cmp, abitset_zero):
14411 Use function prototypes; this removes the need for declaring
14412 static functions simply to provide their prototypes.
14413 * lib/bitset.c (bitset_alloc, bitset_and_or_, bitset_and_or_cmp_,
14414 bitset_andn_or_, bitset_andn_or_cmp_, bitset_bytes, bitset_copy_,
14415 bitset_count_, bitset_create, bitset_dump, bitset_first,
14416 bitset_free, bitset_init, bitset_last, bitset_next,
14417 bitset_obstack_alloc, bitset_obstack_free, bitset_only_set_p,
14418 bitset_op4_cmp, bitset_or_and_, bitset_or_and_cmp_, bitset_prev,
14419 bitset_print, bitset_release_memory, bitset_toggle_,
14420 bitset_type_choose, bitset_type_get, bitset_type_name_get,
14421 debug_bitset): Likewise.
14422 * lib/bitset.h (bitset_set, bitset_reset, bitset_test): Likewise.
14423 * lib/bitset_stats.c (bitset_log_histogram_print,
14424 bitset_percent_histogram_print, bitset_stats_and,
14425 bitset_stats_and_cmp, bitset_stats_and_or,
14426 bitset_stats_and_or_cmp, bitset_stats_andn, bitset_stats_andn_cmp,
14427 bitset_stats_andn_or, bitset_stats_andn_or_cmp, bitset_stats_copy,
14428 bitset_stats_count, bitset_stats_disable, bitset_stats_disjoint_p,
14429 bitset_stats_dump, bitset_stats_empty_p, bitset_stats_enable,
14430 bitset_stats_equal_p, bitset_stats_free, bitset_stats_init,
14431 bitset_stats_list, bitset_stats_list_reverse, bitset_stats_not,
14432 bitset_stats_ones, bitset_stats_or, bitset_stats_or_and,
14433 bitset_stats_or_and_cmp, bitset_stats_or_cmp, bitset_stats_print,
14434 bitset_stats_print_1, bitset_stats_read, bitset_stats_reset,
14435 bitset_stats_set, bitset_stats_size, bitset_stats_subset_p,
14436 bitset_stats_test, bitset_stats_toggle, bitset_stats_type_get,
14437 bitset_stats_write, bitset_stats_xor, bitset_stats_xor_cmp,
14438 bitset_stats_zero): Likewise.
14439 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
14440 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
14441 bitsetv_dump, debug_bitsetv): Likewise.
14442 * lib/ebitset.c (ebitset_and, ebitset_and_cmp, ebitset_andn,
14443 ebitset_andn_cmp, ebitset_bytes, ebitset_copy, ebitset_copy_,
14444 ebitset_copy_cmp, ebitset_disjoint_p, ebitset_elt_add,
14445 ebitset_elt_alloc, ebitset_elt_calloc, ebitset_elt_find,
14446 ebitset_elt_free, ebitset_elt_last, ebitset_elt_remove,
14447 ebitset_elt_zero_p, ebitset_elts_grow, ebitset_empty_p,
14448 ebitset_equal_p, ebitset_free, ebitset_init, ebitset_list,
14449 ebitset_list_reverse, ebitset_not, ebitset_ones, ebitset_op3_cmp,
14450 ebitset_or, ebitset_or_cmp, ebitset_release_memory, ebitset_reset,
14451 ebitset_set, ebitset_size, ebitset_subset_p, ebitset_test,
14452 ebitset_weed, ebitset_xor, ebitset_xor_cmp, ebitset_zero):
14453 Likewise.
14454 * lib/lbitset.c (debug_lbitset, lbitset_and, lbitset_and_cmp,
14455 lbitset_andn, lbitset_andn_cmp, lbitset_bytes, lbitset_copy,
14456 lbitset_copy_cmp, lbitset_disjoint_p, lbitset_elt_alloc,
14457 lbitset_elt_calloc, lbitset_elt_find, lbitset_elt_free,
14458 lbitset_elt_link, lbitset_elt_unlink, lbitset_elt_zero_p,
14459 lbitset_empty_p, lbitset_equal_p, lbitset_free, lbitset_init,
14460 lbitset_list, lbitset_list_reverse, lbitset_not, lbitset_ones,
14461 lbitset_op3_cmp, lbitset_or, lbitset_or_cmp, lbitset_prune,
14462 lbitset_release_memory, lbitset_reset, lbitset_set, lbitset_size,
14463 lbitset_subset_p, lbitset_test, lbitset_weed, lbitset_xor,
14464 lbitset_xor_cmp, lbitset_zero): Likewise.
14465
14466 2002-10-14 Akim Demaille <akim@epita.fr>
14467
14468 Version 1.75.
14469
14470 2002-10-14 Akim Demaille <akim@epita.fr>
14471
14472 * tests/Makefile.am (maintainer-check-posix): New.
14473
14474 2002-10-14 Akim Demaille <akim@epita.fr>
14475
14476 * data/glr.c [YYDEBUG] (YYLEFTMOST_STATE): Initialize the yyloc
14477 member.
14478
14479 2002-10-14 Akim Demaille <akim@epita.fr>
14480
14481 * src/tables.c (table_ninf_remap): base -> tab.
14482 Reported by Matt Rosing.
14483
14484 2002-10-14 Paul Eggert <eggert@twinsun.com>
14485
14486 * tests/action.at, tests/calc.at, tests/conflicts.at,
14487 tests/cxx-type.at, tests/headers.at, tests/input.at,
14488 tests/regression.at, tests/synclines.at, tests/torture.at:
14489 Say "bison -o foo.c foo.y", not "bison foo.y -o foo.c",
14490 so that the tests still work even if POSIXLY_CORRECT is set.
14491 * doc/bison.texinfo (Rpcalc Compile, Invocation): Likewise.
14492
14493 * data/c.m4 (b4_int_type): Use yysigned_char instead of signed char,
14494 for portability to K&R hosts. Fix typo: signed char is guaranteed
14495 only to 127, not to 128.
14496 * data/glr.c (yysigned_char): New type.
14497 * data/yacc.c (yysigned_char): Likewise.
14498 * tests/regression.at (Web2c Actions): signed char -> yysigned_char.
14499
14500 2002-10-13 Paul Eggert <eggert@twinsun.com>
14501
14502 * data/yacc.c (yyparse): Rewrite to avoid "comparison is always
14503 true due to limited range of data type" warning from GCC.
14504
14505 * data/c.m4 (b4_token_defines): Protect against double-inclusion
14506 by wrapping enum yytokentype's definition inside #ifndef
14507 YYTOKENTYPE. This undoes a bug I introduced on 2002-10-12.
14508
14509 2002-10-13 Akim Demaille <akim@epita.fr>
14510
14511 * data/glr.c (yyglrShiftDefer, yyaddDeferredAction, yydoAction):
14512 Un yy- yyrhs to avoid the name clash with the global YYRHS.
14513
14514 2002-10-13 Akim Demaille <akim@epita.fr>
14515
14516 * Makefile.maint: Update from Autoconf 2.54.
14517 * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Remove, shipped with 2.54.
14518
14519 2002-10-13 Akim Demaille <akim@epita.fr>
14520
14521 * src/print.c (print_state): Separate the list of solved conflicts
14522 from the other items.
14523 * tests/conflicts.at (Resolved SR Conflicts): Adjust.
14524
14525 2002-10-13 Akim Demaille <akim@epita.fr>
14526
14527 Let nondeterministic skeletons be usable with deterministic
14528 tables.
14529
14530 With the patch, GAWK compiled by GCC without -O2 passes its test
14531 suite using a GLR parser driven by LALR tables. It fails with -O2
14532 because `struct stat' gives two different answers on my machine:
14533 88 (definition of an auto var) and later 96 (memset on this var).
14534 Hence the stack is badly corrumpted. The headers inclusion is to
14535 blame: if I move the awk.h inclusion before GLR's system header
14536 inclusion, the two struct stat have the same size.
14537
14538 * src/tables.c (pack_table): Always create conflict_table.
14539 (token_actions): Always create conflict_list.
14540 * data/glr.c (YYFLAG): Remove, unused.
14541
14542 2002-10-13 Akim Demaille <akim@epita.fr>
14543
14544 * configure.ac (AC_GNU_SOURCE): Use it instead of hand written code.
14545 (O0FLAGS): New.
14546 (VALGRIND, GXX): New.
14547 * tests/atlocal.in (CFLAGS): Use O0FLAGS.
14548 * tests/bison.in: Run $PREBISON a pre-command.
14549 * tests/Makefile.am (maintainer-check, maintainer-check-valgrind)
14550 (maintainer-check-g++): New.
14551 * Makefile.am (maintainer-check): New.
14552
14553 2002-10-13 Akim Demaille <akim@epita.fr>
14554
14555 * data/glr.c: Formatting changes.
14556 Tweak some trace messages to match yacc.c's.
14557
14558 2002-10-13 Akim Demaille <akim@epita.fr>
14559
14560 GLR parsers sometimes raise parse errors instead of performing the
14561 default reduction.
14562 Reported by Charles-Henry de Boysson.
14563
14564 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Don't
14565 check the length of the traces when %glr.
14566 (_AT_CHECK_CALC_ERROR): Also skip `^Stack' lines, coming from
14567 GLR's traces.
14568 (AT_CHECK_CALC_LALR, AT_CHECK_CALC_GLR): New.
14569 Test GLR parsers.
14570 * data/glr.c (YYLEFTMOST_STATE): Fix its value.
14571 (yyltype): Remove the yy prefix from the member names.
14572 (yytable): Complete its comment.
14573 (yygetLRActions): Map error action number from YYTABLE from
14574 YYTABLE_NINF to 0.
14575 (yyisErrorAction): No longer compare YYACTION to YYPACT_NINF
14576 (which was a bug: it should have been YYTABEL_NINF, and yet it was
14577 not satisfying as we could compare an YYACTION computed from
14578 YYDEFACT to YYTABLE_NINF although they are unrelated): 0 is the
14579 only value for error actions.
14580 (yyreportParseError): In verbose parse error messages, don't issue
14581 `error' in the list of expected tokens.
14582 * data/yacc.c (yyparse) <yybackup>: Rewrite the decoding of the
14583 next action to perform to match glr.c's decoding.
14584 (yytable): Complete its comment.
14585
14586 2002-10-13 Paul Eggert <eggert@twinsun.com>
14587
14588 Fix problem reported by Henrik Grubbstroem in
14589 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00098.html>:
14590 "nonterm: { $$ = 123; } { $$ = $1; };" was wrongly rejected,
14591 because the Bison parser reads the second action before reducing
14592 the first one.
14593 * src/scan-gram.l (rule_length): New static var.
14594 Use it to keep track of the rule length in the scanner, since
14595 we can't expect the parser to be in lock-step sync with the scanner.
14596 (handle_action_dollar, handle_action_at): Use this var.
14597 * tests/actions.at (Exotic Dollars): Test for the problem.
14598
14599 2002-10-12 Paul Eggert <eggert@twinsun.com>
14600
14601 * lib/timevar.c [! IN_GCC && HAVE_SYS_TIME_H]: Include <sys/time.h>.
14602 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): Check for <sys/time.h>.
14603 Include <sys/time.h> when checking for clock_t and struct tms.
14604 Use same include order as source.
14605 This is for the SunOS 4.1.4 porting bug reported by Peter Klein in
14606 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00016.html>.
14607
14608 * lib/timevar.c: Update copyright date and clarify comments.
14609 (get_time) [IN_GCC]: Keep the GCC version for reference.
14610
14611 * lib/timevar.c, lib/timevar.h, lib/timevar.def: Import
14612 GCC version as of today, then merge Bison's changes.
14613 Change "GCC" to "Bison" in copyright notice. timevar.def's
14614 author is Akim, so change that too.
14615
14616 * src/reader.c (grammar_current_rule_check):
14617 Don't worry about the default action if $$ is untyped.
14618 Prevents bogus warnings reported by Jim Gifford in
14619 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00015.html>.
14620
14621 * data/c.m4 (b4_token_enum): Do not define YYTOKENTYPE.
14622 * data/glr.c, data/lalr1.cc, data/yacc.c:
14623 Output token definitions before the first part of user declarations.
14624 Fixes compatibility problem reported by Jim Gifford for kbd in
14625 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00014.html>.
14626
14627 2002-10-11 Paul Eggert <eggert@twinsun.com>
14628
14629 * data/yacc.c (yyreport_parse_error): Remove, putting its body into...
14630 (yyparse): here. This undoes some of the 2002-07-25 change.
14631 Compatibility problem reported by Ralf S. Engelschall with
14632 OSSP cfg <http://www.ossp.org/pkg/lib/cfg/>.
14633
14634 2002-10-11 Akim Demaille <akim@epita.fr>
14635
14636 * tests/regression.at Characters Escapes): New.
14637 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Accept \' in strings and
14638 characters.
14639 Reported by Jan Nieuwenhuizen.
14640
14641 2002-10-11 Akim Demaille <akim@epita.fr>
14642
14643 * po/id.po: New.
14644
14645 2002-10-10 Paul Eggert <eggert@twinsun.com>
14646
14647 Portability fixes for bitsets; this also avoids several GCC
14648 warnings.
14649
14650 * lib/abitset.c: Include <stddef.h>, for offsetof.
14651 * lib/lbitset.c: Likewise.
14652
14653 * lib/abitset.c (abitset_bytes): Return a size that is aligned
14654 properly for vectors of objects. Do not assume that adding a
14655 header size to a multiple of a word size yields a value that is
14656 properly aligned for the whole union.
14657 * lib/bitsetv.c (bitsetv_alloc): Likewise.
14658
14659 * lib/bitset_stats.c (bitset_stats_bytes): Adjust to new,
14660 unique names for structures.
14661 * lib/ebitset.c (ebitset_bytes): Likewise.
14662 * lib/lbitset.c (lbitset_bytes): Likewise.
14663
14664 * lib/abitset.c (abitset_ones, abitset_zero, abitset_empty_p,
14665 abitset_copy1, abitset_not, abitset_equal_p, abitset_subset_p,
14666 abitset_disjoint_p, abitset_and, abitset_and_cmp, abitset_andn,
14667 abitset_andn_cmp, abitset_or, abitset_or_cmp, abitset_xor,
14668 abitset_xor_cmp, abitset_and_or, abitset_and_or_cmp,
14669 abitset_andn_or, abitset_andn_or_cmp, abitset_or_and,
14670 abitset_or_and_cmp, abitset_copy): Supply prototype decls,
14671 to improve the type-checking that GCC can do.
14672 * lib/bitset.c (bitset_op4_cmp): Likewise.
14673 * lib/bitset_stats.c (bitset_stats_count,
14674 bitset_stats_empty_p, bitset_stats_ones, bitset_stats_zero,
14675 bitset_stats_copy, bitset_stats_disjoint_p,
14676 bitset_stats_equal_p, bitset_stats_not, bitset_stats_subset_p,
14677 bitset_stats_and, bitset_stats_and_cmp, bitset_stats_andn,
14678 bitset_stats_andn_cmp, bitset_stats_or, bitset_stats_or_cmp,
14679 bitset_stats_xor, bitset_stats_xor_cmp, bitset_stats_and_or,
14680 bitset_stats_and_or_cmp, bitset_stats_andn_or,
14681 bitset_stats_andn_or_cmp, bitset_stats_or_and,
14682 bitset_stats_or_and_cmp): Likewise.
14683 * lib/lbitset.c (lbitset_and, lbitset_and_cmp, lbitset_andn,
14684 lbitset_andn_cmp, lbitset_or, lbitset_or_cmp, lbitset_xor,
14685 lbitset_xor_cmp, lbitset_empty_p, lbitset_ones, lbitset_not,
14686 lbitset_subset_p, lbitset_disjoint_p, debug_lbitset): Likewise.
14687
14688 * lib/abitset.h: Include bitset.h, not bbitset.h.
14689 * lib/ebitset.h: Likewise.
14690 * lib/lbitset.h: Likewise.
14691
14692 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): New types.
14693 All instances of parameters of type enum bitset_opts are now of
14694 type enum_bitset_opts, to conform to the C Standard, and similarly
14695 for enum_bitset_type.
14696 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
14697 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
14698
14699 Do not use "struct bitset_struct" to mean different things in
14700 different modules. Not only is this confusing, it violates
14701 the C Standard, which requires that structure types in different
14702 modules must be compatible if one is to be passed to the other.
14703 * lib/bbitset.h (bitset): Now points to a union, not to a struct.
14704 All instances of "struct bitset_struct *" replaced with "bitset".
14705 * lib/bitset.h (struct bitset_struct): Remove, replacing with....
14706 (union bitset_union, struct abitset_struct, struct ebitset_struct,
14707 struct lbitset_struct, struct bitset_stats_struct): New types.
14708 All uses of struct bitset_struct changed to union bitset_union,
14709 etc.
14710 * lib/abitset.c (struct abitset_struct, abitset,
14711 struct bitset_struct): Remove.
14712 * lib/bitset_stats.c (struct bitset_stats_struct, bitset_stats,
14713 struct bitset_struct): Remove.
14714 * lib/ebitset.c (struct ebitset_struct, ebitset, struct
14715 bitset_struct): Remove.
14716 * lib/lbitset.c (struct lbitset_struct, lbitset, bitset_struct):
14717 Likewise.
14718
14719 Do not call a function of type T using a call that assumes the
14720 function is of a different type U. Standard C requires that a
14721 function must be called with a type that is compatible with its
14722 definition.
14723 * lib/bbitset.h (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
14724 New decls.
14725 * lib/bitset.c (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
14726 New functions.
14727 * lib/ebitset.c (PFV): Remove.
14728 * lib/lbitset.c (PFV): Likewise.
14729 * lib/ebitset.c (ebitset_and, ebitset_andn, ebitset_or,
14730 ebitset_xor, ebitset_copy, ebitset_ones, ebitset_empty_p): New
14731 decls.
14732 (ebitset_and, ebitset_andn, ebitset_or, ebitset_xor): New functions.
14733 (ebitset_vtable): Use them.
14734 * lib/lbitset.c (lbitset_and, lbitset_andn, lbitset_or,
14735 lbitset_xor): New functions.
14736 (lbitset_vtable): Use them.
14737
14738 * lib/bitset.h (bitset_next, bitset_prev, bitset_only_set_p):
14739 Declare.
14740
14741 * lib/bitsetv.c (bitsetv_alloc): Add a cast to (void *) to avoid a
14742 GCC warning.
14743 * lib/lbitset.c (LBITSET_CURRENT1): Likewise.
14744 Use offsetof, for simplicity.
14745
14746 2002-10-06 Paul Eggert <eggert@twinsun.com>
14747
14748 * lib/bitset.h (bitset_reset): Do not assume that bitset_word is
14749 the same width as int. This reapplies a hunk of the 2002-08-12 patch
14750 <http://lists.gnu.org/archive/html/bison-patches/2002-08/msg00007.html>,
14751 which was inadvertently undone by the 2002-09-30 patch.
14752 * lib/lbitset.c (debug_lbitset): Do not assume that bitset_word is
14753 the same width as int.
14754
14755 2002-10-04 Paul Eggert <eggert@twinsun.com>
14756
14757 Version 1.50.
14758
14759 * configure.ac (AC_INIT), NEWS: Increment version number.
14760
14761 * doc/bison.texinfo: Minor spelling, grammar, and white space
14762 fixes.
14763 (Symbols): Mention that any negative value returned from yylex
14764 signifies end-of-input. Warn about negative chars. Mention
14765 the portable Standard C character set.
14766
14767 The GNU coding standard says CFLAGS and YFLAGS are reserved
14768 for the installer to set.
14769 * lib/Makefile.am (AM_CFLAGS): Renamed from CFLAGS.
14770 * src/Makefile.am (AM_CFLAGS): Likewise.
14771 (AM_YFLAGS): Renamed from YFLAGS.
14772
14773 Fix some MAX and MIN problems.
14774 * src/gram.h (ITEM_NUMBER_MIN): MIN_MAX -> INT_MIN.
14775 * src/lalr.h (GOTO_NUMBER_MAX): INT_MAX -> SHRT_MAX.
14776 * src/symtab.h (SYMBOL_NUMBER_MAX): New macro.
14777 * src/reader.c (reader): Use it.
14778
14779 * tests/regression.at (Braces parsing): Use grep, not fgrep, as
14780 POSIX 1003.1-2001 has removed fgrep.
14781
14782 2002-10-04 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
14783
14784 * lib/bbitset.h (BITSET_WINDEX_MAX): Redefine so that it cannot be
14785 interpreted as signed.
14786 * lib/ebitset.c (ebitset_list): Fix bug.
14787
14788 2002-10-01 Paul Eggert <eggert@twinsun.com>
14789
14790 More fixes for 64-bit hosts and large bitsets.
14791
14792 * lib/abitset.c (struct abitset_struct.n_bits, abitset_small_list,
14793 abitset_size, abitset_list, abitset_list_reverse, abitset_list):
14794 Use bitset_bindex, not int or unsigned int or size_t, to count bits.
14795 * lib/bbitset.h (struct bitset_vtable.size, struct bitset_vtable.count,
14796 struct bitset_vtable.list, struct bitset_vtable.list_reverse,
14797 bitset_count_, bitset_next, bitset_prev, bitset_first, bitset_last,
14798 bitset_count_): Likewise.
14799 * lib/bitset.h (bitset_iterator.num, bitset_iterator.i,
14800 bitset_first, bitset_last): Likewise.
14801 * lib/bitset_stats.c (bitset_stats_size, bitset_stats_list,
14802 bitset_stats_list_reverse, bitset_stats_size,
14803 bitset_stats_count, bitset_stats_list, bitset_stat_list_reverse):
14804 Likewise.
14805 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
14806 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
14807 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
14808 bitsetv_reflexive_transitive_closure): Likewise.
14809 * lib/bitsetv.h (bitsetv_alloc, bitsetv_create): Likewise.
14810 * lib/ebitset.c (ebitset_size, ebitset_list, ebitset_list_reverse):
14811 Likewise.
14812 * lib/lbitset.c (lbitset_size, lbitset_list, lbitset_list_merge):
14813 Likewise.
14814
14815 * lib/abitset.c (abitset_ones, abitset_zero, abitset_bytes):
14816 Use size_t, not unsigned int, to count bytes.
14817 * lib/abitset.h (abitset_bytes): Likewise.
14818 * lib/bitset.c (bitset_bytes, bitset_alloc, bitset_obstack_alloc):
14819 Likewise.
14820 * lib/bitset.h (bitset_bytes): Likewise.
14821 * lib/bitset_stats.c (bitset_stats_bytes, bitset_stats_init): Likewise.
14822 * lib/bitset_stats.h (bitset_stats_bytes): Likewise.
14823 * lib/bitsetv.c (bitsetv_alloc): Likewise.
14824 * lib/ebitset.c (ebitset_bytes): Likewise.
14825 * lib/ebitset.h (ebitset_bytes): Likewise.
14826 * lib/lbitset.c (lbitset_bytes): Likewise.
14827 * lib/lbitset.h (lbitset_bytes): Likewise.
14828
14829 * lib/abitset.c (abitset_empty_p, abitset_not, abitset_equal_p,
14830 abitset_subset_p, abitset_disjoint_p, abitset_and,
14831 abitset_and_cmp, abitset_andn, abitset_andn_cmp, abitset_or,
14832 abitset_or_cmp, abitset_xor, abitset_xor_cmp, abitset_and_or,
14833 abitset_and_or_cmp, abitset_andn_or, abitset_andn_or_cmp,
14834 abitset_or_and, abitset_or_and_cmp):
14835 Use bitset_windex instead of unsigned int.
14836 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
14837 * lib/ebitset.c (struct ebitset_struct.size, ebitset_elts_grow,
14838 ebitset_elt_add, ebitset_elt_remove, ebitset_weed,
14839 ebitset_elt_find, ebitset_list_reverse, ebitset_list, ebitset_init):
14840 Likewise.
14841 * lib/lbitset.c (lbitset_ones, lbitset_not): Likewise.
14842
14843 * lib/bitset.c (bitset_print):
14844 Use proper printf formats for widths of integer types.
14845 * lib/bitset_stats.c (bitset_percent_histogram_print,
14846 bitset_log_histogram_print, bitset_stats_print_1): Likewise.
14847 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
14848 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
14849 * lib/lbitset.c (lbitset_bytes): Likewise.
14850
14851 * lib/bbitset.h (BITSET_BINDEX_MAX, BITSET_WINDEX_MAX,
14852 BITSET_SIZE_MAX): New macros.
14853 (BITSET_INDEX_MAX): Remove. It wasn't right, since it assumed that
14854 sizeof (bitset_word) == sizeof (bitset_windex). All uses changed
14855 to BITSET_WINDEX_MAX.
14856
14857 * lib/bitset.c (bitset_next, bitset_prev, bitset_first,
14858 bitset_last): Return BITSET_BINDEX_MAX (not -1) for no value,
14859 since we now return the bitset_bindex type (not int).
14860
14861 * lib/bitsetv.c (bitsetv_alloc): Check for arithmetic overflow
14862 when computing sizes.
14863 * lib/ebitset.c (ebitset_elts_grow): Likewise.
14864
14865 * lib/lbitset.c (lbitset_elt_find): Simplify windex calculation
14866 and avoid cast to unsigned.
14867
14868 2002-09-30 Akim Demaille <akim@epita.fr>
14869
14870 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
14871 * lib/bitset_stats.c, lib/bitsetv.c, lib/ebitset.c, lib/lbitset.c:
14872 Updates from Michael Hayes.
14873
14874 2002-09-30 Art Haas <ahaas@neosoft.com>
14875
14876 * configure.ac: Update AC_OUTPUT and AM_CONFIG_HEADER
14877 invocations.
14878 * tests/cxx-type.at (declarator): Don't rely on NDEBUG being not
14879 defined.
14880
14881 2002-09-27 Akim Demaille <akim@epita.fr>
14882
14883 Version 1.49c.
14884
14885 2002-09-27 Akim Demaille <akim@epita.fr>
14886
14887 * configure.ac (AM_INIT_AUTOMAKE): We _need_ 1.7.
14888 (Because of AC_LIBSOURCE).
14889
14890 2002-09-27 Akim Demaille <akim@epita.fr>
14891
14892 Playing with Autoscan.
14893
14894 * configure.ac: Remove the old LIBOBJ tweaks.
14895 (AC_REPLACE_FUNCS): Add strrchr and strtol.
14896 * lib/strrchr.c: New.
14897 * lib/strtol.c: New, from the Coreutils 4.5.1.
14898
14899 2002-09-27 Akim Demaille <akim@epita.fr>
14900
14901 Playing with Autoscan.
14902
14903 * m4/prereq.m4 (jm_PREREQ_ARGMATCH, jm_FUNC_ARGMATCH): New.
14904 * lib/Makefile.am (libbison_a_SOURCES): No longer include
14905 argmatch.c and argmatch.h, since they are AC_LIBSOURCE'd.
14906 * lib/strcasecmp.c, lib/strncasecmp.c, lib/memcmp.c: New, from the
14907 Coreutils 4.5.1.
14908
14909 2002-09-24 Akim Demaille <akim@epita.fr>
14910
14911 * doc/bison.texinfo (Stack Overflow): xref to Recursion.
14912 (Frequently Asked Questions, Parser Stack Overflow): New.
14913
14914 2002-09-13 Akim Demaille <akim@epita.fr>
14915
14916 Playing with autoscan.
14917
14918 * src/reader.c (get_merge_function): Use xstrdup, not strdup.
14919 * src/files.c (skeleton_find): Remove, unused.
14920 * m4/memcmp.m4: New, from the Coreutils 4.5.1.
14921 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Run jm_FUNC_MEMCMP.
14922
14923 2002-09-13 Akim Demaille <akim@epita.fr>
14924
14925 * configure.ac (AM_INIT_AUTOMAKE): Require Automake 1.6.3.
14926 * Makefile.am (AUTOMAKE_OPTIONS): Don't.
14927
14928 2002-09-13 Akim Demaille <akim@epita.fr>
14929
14930 * configure.ac: Require 2.54.
14931 s/jm_FUNC_MALLOC/AC_FUNC_MALLOC/.
14932 s/jm_FUNC_REALLOC/AC_FUNC_REALLOC/.
14933 * m4/c-bs-a.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/realloc.m4:
14934 Remove, provided by Autoconf macros.
14935
14936 2002-09-12 Akim Demaille <akim@epita.fr>
14937
14938 * m4/prereq.m4: Update, from Coreutils 4.5.1.
14939
14940 2002-09-12 Akim Demaille <akim@epita.fr>
14941
14942 * m4/prereq.m4: Update, from Fileutils 4.1.5.
14943 * configure.ac (jm_PREREQ_TEMPNAME): Invoke it.
14944 Reported by Martin Mokrejs.
14945
14946 2002-09-10 Akim Demaille <akim@epita.fr>
14947
14948 * src/parse-gram.y: Associate a human readable string to each
14949 token type.
14950 * tests/regression.at (Invalid inputs): Adjust.
14951
14952 2002-09-10 Gary V. Vaughan <gary@gnu.org>
14953
14954 * tests/Makefile.am ($(srcdir)/package.m4): Bison now ships
14955 with an Autoconf-2.5x style configure.ac.
14956
14957 2002-09-06 Paul Eggert <eggert@twinsun.com>
14958
14959 * doc/bison.texinfo (Conditions): Make explicit that the GPL
14960 exception applies only to yacc.c. This is a modification of a
14961 patch originally suggested by Akim Demaille.
14962
14963 2002-09-06 Akim Demaille <akim@epita.fr>
14964
14965 * data/c.m4 (b4_copyright): Move the GPL exception comment from
14966 here to...
14967 * data/yacc.c: here.
14968
14969 * data/lalr1.cc (struct yyltype): Don't define it, since we use
14970 LocationType.
14971 (b4_ltype): Default to yy::Location from location.hh.
14972
14973 2002-09-04 Jim Meyering <jim@meyering.net>
14974
14975 * data/yacc.c: Guard the declaration of yytoknum also with
14976 `#ifdef YYPRINT', so it is declared only when used.
14977
14978 2002-09-04 Akim Demaille <akim@epita.fr>
14979
14980 * configure.in: Rename as...
14981 * configure.ac: this.
14982 Bump to 1.49c.
14983
14984 2002-09-04 Akim Demaille <akim@epita.fr>
14985
14986 * src/assoc.c, src/closure.c, src/gram.c, src/injections.c,
14987 * src/lalr.c, src/LR0.c, src/relation.c, src/tables.c: Don't
14988 translate maintainer only messages.
14989
14990 2002-08-12 Paul Eggert <eggert@twinsun.com>
14991
14992 Version 1.49b.
14993
14994 * Makefile.am (SUBDIRS): Remove intl.
14995 (DISTCLEANFILES): Remove.
14996 * NEWS: Mention that GNU M4 is now required. Clarify what is
14997 meant by "larger grammars". Mention the pt_BR translation.
14998 * configure.in (AC_CHECK_DECLS): Add getenv, getopt.
14999 (AM_GNU_GETTEXT_VERSION): New macro, replacing GETTEXT_VERSION var.
15000 Bump version from 0.11.2 to 0.11.5.
15001 (BISON_PREREQ_STAGE): Remove.
15002 (AM_GNU_GETTEXT): Use external gettext.
15003 (AC_OUTPUT): Remove intl/Makefile.
15004
15005 * config/depcomp, config/install-sh: Sync with Automake 1.6.3.
15006
15007 * data/glr.c: Include string.h, for strlen.
15008 (yyreportParseError): Use size_t for yysize.
15009 (yy_yypstack): No longer nested inside yypstates, as nested
15010 functions are not portable. Do not assume size_t is the
15011 same width as int.
15012 (yypstates): Do not assume that ptrdiff_t is the same width
15013 as int, and similarly for yyposn and YYINDEX.
15014
15015 * data/yacc.c: Fix comment about `$$ = $1': it can copy garbage.
15016
15017 * lib/Makefile.am (INCLUDES): Do not include from the intl
15018 directory, which has been removed.
15019 * src/Makefile.am (INCLUDES): Likewise.
15020
15021 * lib/Makefile.am (libbison_a_SOURCES): Add unlocked-io.h.
15022 (bitsets_sources, additional_bitsets_sources, timevars_sources):
15023 New vars.
15024
15025 * lib/Makefile.am (libbison_a_SOURCES): Avoid +=, a GNU make extension.
15026 * tests/Makefile.am (EXTRA_DIST): Likewise.
15027
15028 * lib/abitset.c (abitset_reverse_list, ebitset_reverse_list):
15029 Do not assume that bitset_windex is the same width as unsigned.
15030
15031 * lib/abitset.c (abitset_unused_clear): Do not assume that
15032 bitset_word is the same width as int.
15033 * lib/bbitset.h (BITSET_INDEX_MAX, BITSET_MSB): Likewise.
15034 * lib/bitset.h (bitset_set, bitset_reset): Likewise.
15035 * lib/bitset_stats.c (bitset_stats_set, bitset_stats_reset): Likewise.
15036 * lib/ebitset.c (ebitset_set, ebitset_reset): Likewise.
15037 * lib/lbitset.c (lbitset_set, lbitset_reset): Likewise.
15038
15039 * lib/abitset.c (abitset_op1): Use -1, not ~0, as memset arg (for
15040 portability to one's complement hosts!).
15041 * lib/ebitset.c (ebitset_op1): Likewise.
15042 * lib/lbitset.c (lbitset_op1): Likewise.
15043
15044 * lib/argmatch.c, lib/quotearg.c, quotearg.h: Sync with GNU tar.
15045 * lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
15046 lib/hash.c, lib/hash.h, lib/strnlen.c, lib/xmalloc.c:
15047 Sync with fileutils.
15048 * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
15049 lib/gettext.h: Sync with diffutils.
15050
15051 * lib/memrchr.c, lib/mkstemp.c, lib/strchr.c, lib/strnlen.c,
15052 lib/strspn.c, lib/tempname.c: Use GPL, not LGPL.
15053
15054 * lib/obstack.c, lib/obstack.h: Sync with fileutils, except use
15055 PROTOTYPES to check for prototypes, and "defined __STDC__" to
15056 check for void *.
15057
15058 * lib/bbitset.h (BITSET_WORD_BITS): Now of type unsigned, not
15059 size_t; the old version tried to do this but casted improperly.
15060 (bitset_bindex, bitset_windex): Now size_t, not unsigned long.
15061 (bitset_test): Now returns int, not unsigned long.
15062
15063 * lib/bitset_stats.c: Include "gettext.h".
15064 (_): New macro.
15065 (bitset_stats_set, bitset_stats_reset, bitset_stats_test): Don't
15066 name locals "index", as it generates unnecessary warnings on some
15067 hosts that have an "index" function.
15068
15069 * lib/bitset_stats.c (bitset_stats_print_1, bitset_stats_print,
15070 bitset_stats_read, bitset_stats_write): Wrap strings in _() if
15071 they need translation.
15072 * src/LR0.c (state_list_append, new_itemsets, get_state,
15073 append_states, generate_states): Likewise.
15074 * src/assoc.c (assoc_to_string): Likewise.
15075 * src/closure.c (print_closure, set_firsts, closure): Likewise.
15076 * src/gram.c (grammar_dump): Likewise.
15077 * src/injections.c (injections_compute): Likewise.
15078 * src/lalr.c (lookaheads_print): Likewise.
15079 * src/relation.c (relation_transpose): Likewise.
15080 * src/scan-gram.l: Likewise.
15081 * src/tables.c (table_grow, pack_vector): Likewise.
15082
15083 * m4/Makefile.am (EXTRA_DIST): Remove codeset.m4,
15084 glibc21.m4, isc-posix.m4 lcmessage.m4, stage.m4.
15085 * m4/malloc.m4, m4/realloc.m4: Sync with diffutils.
15086 * m4/mbstate_t.m4: Sync with fileutils.
15087 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): AC_MBSTATE_T -> AC_TYPE_MBSTATE_T.
15088
15089 * po/LINGUAS: Add pt_BR.
15090 * po/POTFILES.in: Add src/assoc.c, src/closure.c, src/gram.c,
15091 src/main.c, src/relation.c, src/state.c, lib/bitset_stats.c,
15092 lib/timevar.c.
15093 Use src/parse-gram.y instead of src/parse-gram.c, as the gettext
15094 manual recommends.
15095 Similarly, use src/scan-gram.l instead of src/scan-gram.c.
15096
15097 * src/complain.c (strerror_r): Remove decl; not needed.
15098 (strerror): Use same pattern as ../lib/error.c.
15099
15100 * src/files.c, src/files.h (compute_header_macro): Remove; unused.
15101
15102 * src/gram.c (grammar_dump): Do not assume ptrdiff_t fits in int.
15103
15104 * src/main.c (main): Cast result of bindtextdomain and textdomain
15105 to void, to avoid a GCC warning when --disable-nls is in effect.
15106
15107 * src/scan-gram.l: Use strings rather than escapes when possible,
15108 to minimize the number of warnings from xgettext.
15109 (handle_action_dollar, handle_action_at): Don't use isdigit,
15110 as it mishandles negative chars and it may not work as expected
15111 outside the C locale.
15112
15113 * src/symtab.c (symbol_get): Don't cast LHS of an assignment;
15114 this is a GCC extension and is not portable to other compilers.
15115
15116 * src/system.h (alloca): Use same pattern as ../lib/error.c.
15117 Do not include <ctype.h>; no longer needed.
15118 Do not include <malloc.h>; no longer needed (and generates
15119 warnings on OpenBSD 3.0).
15120
15121 * tests/cxx-type.at (yylex): Do not pass signed char to isupper;
15122 it's not portable.
15123
15124 * tests/regression.at: Do not use 'cc -c input.c -o input';
15125 Sun C rejects this. Instead, use 'cc -c input.c -o input.o'.
15126
15127 * tests/synclines.at (AC_SYNCLINES_COMPILE): Accept any nonzero
15128 exit status as failure, not just exit status 1. Sun C exits
15129 with status 2 sometimes.
15130
15131 * tests/torture.at (AT_INCREASE_DATA_SIZE): New macro.
15132 Use it for the two large tests.
15133
15134 2002-08-02 Akim Demaille <akim@epita.fr>
15135
15136 * src/conflicts.c (conflicts_output): Don't output rules never
15137 reduced here, since anyway that computation doesn't work.
15138 * src/gram.h, src/gram.h (rule_filter_t, rule_useful_p)
15139 (rule_useless_p, rule_never_reduced_p): New.
15140 (grammar_rules_partial_print): Use a filter instead of a range.
15141 Display the title only if needed.
15142 (grammar_rules_print): Adjust.
15143 (grammar_rules_never_reduced_report): New.
15144 * src/tables.c (action_row): Move the computation of rules never
15145 reduced to...
15146 (token_actions): here.
15147 * src/main.c (main): Make the parser before making the report, so
15148 that rules never reduced are computed.
15149 Call grammar_rules_never_reduced_report.
15150 * src/print.c (print_results): Report rules never reduced.
15151 * tests/conflicts.at, tests/reduce.at: Adjust.
15152
15153 2002-08-01 Akim Demaille <akim@epita.fr>
15154
15155 Instead of attaching lookaheads and duplicating the rules being
15156 reduced by a state, attach the lookaheads to the reductions.
15157
15158 * src/state.h (state_t): Remove the `lookaheads',
15159 `lookaheads_rule' member.
15160 (reductions_t): Add a `lookaheads' member.
15161 Use a regular array for the `rules'.
15162 * src/state.c (reductions_new): Initialize the lookaheads member
15163 to 0.
15164 (state_rule_lookaheads_print): Adjust.
15165 * src/state.h, src/state.c (state_reductions_find): New.
15166 * src/conflicts.c (resolve_sr_conflict, set_conflicts)
15167 (count_rr_conflicts): Adjust.
15168 * src/lalr.c (LArule): Remove.
15169 (add_lookback_edge): Adjust.
15170 (state_lookaheads_count): New.
15171 (states_lookaheads_initialize): Merge into...
15172 (initialize_LA): this.
15173 (lalr_free): Adjust.
15174 * src/main.c (main): Don't free nullable and derives too early: it
15175 is used by --verbose.
15176 * src/print.c, src/print_graph.c, src/tables.c: Adjust.
15177
15178 2002-08-01 Akim Demaille <akim@epita.fr>
15179
15180 * src/derives.h, src/derives.c (derives): A `rule_t***' instead of
15181 `rule_number_t**'.
15182 (set_derives, free_derives): Rename as...
15183 (derives_compute, derives_free): this.
15184 Adjust all dependencies.
15185 * src/nullable.c (set_nullable, free_nullable): Rename as...
15186 (nullable_compute, nullable_free): these.
15187 (rule_list_t): Store rule_t *, not rule_number_t.
15188 * src/state.c (state_rule_lookaheads_print): Directly compare rule
15189 pointers, instead of their numbers.
15190 * src/main.c (main): Call nullable_free, and derives_free earlier,
15191 as they were lo longer used.
15192
15193 2002-08-01 Akim Demaille <akim@epita.fr>
15194
15195 * lib/timevar.c (get_time): Include children time.
15196 * src/lalr.h (LA, LArule): Don't export them: used with the
15197 state_t.
15198 * src/lalr.c (LA, LArule): Static.
15199 * src/lalr.h, src/lalr.c (lalr_free): New.
15200 * src/main.c (main): Call it.
15201 * src/tables.c (pack_vector): Check whether loc is >= to the
15202 table_size, not >.
15203 (pack_tables): Don't free froms, tos, conflict_tos, and pos...
15204 (tables_generate): do it, since that's also it which allocates
15205 them.
15206 Don't free LA and LArule, main does.
15207
15208 2002-07-31 Akim Demaille <akim@epita.fr>
15209
15210 Separate parser tables computation and output.
15211
15212 * src/output.c (nvectors, base_t, base, base_ninf, conflict_table)
15213 (conflict_list, conflict_list_cnt, table, check, table_ninf)
15214 (yydefgoto, yydefact, high): Move to...
15215 * src/tables.h, src/tables.c: here.
15216 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
15217 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
15218 (symbol_number_to_vector_number, nvectors, BASE_MAX, BASE_MIN)
15219 (froms, tos, conflict_tos, tally, width, action_t, ACTION_MAX)
15220 (ACTION_MIN, actrow, order, nentries, pos, conflrow)
15221 (conflict_list_free, table_size, lowzero, table_grow, conflict_row)
15222 (action_row, save_row, token_actions, save_column, default_goto)
15223 (goto_actions, sort_actions, matching_state, pack_vector)
15224 (table_ninf_remap, pack_table, prepare_actions): Move to...
15225 * src/tables.c: here.
15226 * src/tables.h, src/tables.c(tables_generate, tables_free): New.
15227 * src/output.c (token_actions, output_base, output_conflicts)
15228 (output_check): Merge into...
15229 (prepare_actions): this.
15230 (actions_output): Rename as...
15231 (user_actions_output): this.
15232 * src/main.c (main): Call tables_generate and tables_free.
15233
15234 2002-07-31 Akim Demaille <akim@epita.fr>
15235
15236 Steal GCC's --time-report support.
15237
15238 * lib/timevar.c, lib/timevar.h, lib/timevar.def: New,
15239 stolen/adjusted from GCC.
15240 * m4/stage.m4: Remove time related checks.
15241 * m4/timevar.m4: New.
15242 * configure.in: Adjust.
15243 * src/system.h: Adjust to using timevar.h.
15244 * src/getargs.h, src/getargs.c: Support trace_time for
15245 --trace=time.
15246 * src/main.c (stage): Remove.
15247 (main): Replace `stage' invocations with timevar calls.
15248 * src/output.c: Insert pertinent timevar calls.
15249
15250 2002-07-31 Akim Demaille <akim@epita.fr>
15251
15252 Let --trace have arguments.
15253
15254 * src/getargs.h (enum trace_e): New.
15255 * src/getargs.c (trace_args, trace_types, trace_argmatch): New.
15256 (long_options, short_options): --trace/-T takes an optional
15257 argument.
15258 Change all the uses of trace_flag to reflect the new flags.
15259 * tests/sets.at (Firsts, Nullable, Broken Closure): Use --trace=sets.
15260
15261 Strengthen `stage' portability.
15262
15263 * m4/stage.m4 (BISON_PREREQ_STAGE): New.
15264 * configure.in: Use it.
15265 Don't check for malloc.h and sys/times.h.
15266 * src/system.h: Include them when appropriate.
15267 * src/main.c (stage): Compile only when mallinfo, struct mallinfo,
15268 times and struct tms are available.
15269
15270 2002-07-30 Akim Demaille <akim@epita.fr>
15271
15272 In verbose parse error message, don't report `error' as an
15273 expected token.
15274 * tests/actions.at (Printers and Destructors): Adjust.
15275 * tests/calc.at (Calculator $1): Adjust.
15276 * data/yacc.c, data/glr.c, data/lalr1.c: When making the verbose
15277 error message, do not report the parser accepts the error token in
15278 that state.
15279
15280 2002-07-30 Akim Demaille <akim@epita.fr>
15281
15282 Normalize conflict related messages.
15283
15284 * src/complain.h, src/complain.c (warn, complain): New.
15285 * src/conflicts.c (conflicts_print): Use them.
15286 (conflict_report_yacc): New, extracted from...
15287 (conflicts_print): here.
15288 * tests/conflicts.at, tests/existing.at: Adjust.
15289
15290 2002-07-30 Akim Demaille <akim@epita.fr>
15291
15292 Report rules which are never reduced by the parser: those hidden
15293 by conflicts.
15294
15295 * src/LR0.c (save_reductions): Don't make the final state too
15296 different: save its reduction (accept) instead of having a state
15297 without any action (no shift or goto, no reduce).
15298 Note: the final state is now a ``regular'' state, i.e., the
15299 parsers now contain `reduce 0' as default reduction.
15300 Nevertheless, since they decide to `accept' when yystate =
15301 final_state, they still will not reduce rule 0.
15302 * src/print.c (print_actions, print_reduction): Adjust.
15303 * src/output.c (action_row): Track reduced rules.
15304 (token_actions): Report rules never reduced.
15305 * tests/conflicts.at, tests/regression.at: Adjust.
15306
15307 2002-07-30 Akim Demaille <akim@epita.fr>
15308
15309 `stage' was accidently included in a previous patch.
15310 Initiate its autoconfiscation.
15311
15312 * configure.in: Look for malloc.h and sys/times.h.
15313 * src/main.c (stage): Adjust.
15314 Report only when trace_flag.
15315
15316 2002-07-29 Akim Demaille <akim@epita.fr>
15317
15318 * src/state.h, src/state.c (transitions_t): Holds state_t*'s, not
15319 state_number_t.
15320 (errs_t): symbol_t*, not symbol_number_t.
15321 (reductions_t): rule_t*, not rule_number_t.
15322 (FOR_EACH_SHIFT): New.
15323 * src/LR0.c, src/conflicts.c, src/lalr.c, src/output.c
15324 * src/print.c, src/print_graph.c: Adjust.
15325
15326 2002-07-29 Akim Demaille <akim@epita.fr>
15327
15328 Use $accept and $end, as BYacc and BTYacc do, instead of $axiom and $.
15329
15330 * src/symtab.h, src/symtab.c (eoftoken, axiom): Rename as...
15331 (endtoken, accept): these.
15332 * src/reader.c (reader): Set endtoken's default tag to "$end".
15333 Set undeftoken's tag to "$undefined" instead of "$undefined.".
15334 * doc/bison.texinfo (Table of Symbols): Mention $accept and $end.
15335 Adjust.
15336
15337 2002-07-29 Akim Demaille <akim@epita.fr>
15338
15339 * src/reduce.c (reduce_grammar): When the language is empty,
15340 complain about the start symbol, not the axiom.
15341 Use its location.
15342 * tests/reduce.at (Empty Language): New.
15343
15344 2002-07-26 Akim Demaille <akim@epita.fr>
15345
15346 * src/reader.h, src/reader.c (gram_error): ... can't get
15347 yycontrol without making too strong assumptions on the parser
15348 itself.
15349 * src/output.c (prepare_tokens): Use the real 0th value of
15350 token_translations instead of `0'.
15351 * src/parse-gram.y (yyerror): Don't rely on yycontrol being
15352 visible here.
15353 * data/yacc.c (yyreport_parse_error): Rename yylocation as yylloc
15354 for the time being: %locations ought to provide it to yyerror.
15355
15356 2002-07-25 Akim Demaille <akim@epita.fr>
15357
15358 * src/output.c (prepare_tokens): Go up to ntokens, not ntokens + 1.
15359 * doc/bison.texinfo (Decl Summary): s/$illegal/$undefined./.
15360 * tests/regression.at (Web2c Actions): Adjust.
15361
15362 2002-07-25 Akim Demaille <akim@epita.fr>
15363
15364 Stop storing rules from 1 to nrules + 1.
15365
15366 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c, src/lalr.c
15367 * src/nullable.c, src/output.c, src/print.c, src/reader.c
15368 * src/reduce.c: Allocate and free from &rules[0], not &rules[1].
15369 Iterate from 0 to nrules.
15370 Use rule_number_as_item_number and item_number_as_rule_number.
15371 Adjust to `derive' now containing possibly 0.
15372 * src/gram.h (rule_number_as_item_number, item_number_as_rule_number):
15373 Handle the `- 1' part in rule numbers from/to item numbers.
15374 * src/conflicts.c (log_resolution): Fix the message which reversed
15375 shift and reduce.
15376 * src/output.c (action_row): Initialize default_rule to -1.
15377 (token_actions): Adjust.
15378 * tests/sets.at (Nullable, Firsts): Fix the previously bogus
15379 expected output.
15380 * tests/conflicts.at (Resolved SR Conflicts): Likewise.
15381
15382 2002-07-25 Akim Demaille <akim@epita.fr>
15383
15384 * data/c.m4 (b4_c_function, b4_c_ansi_args, b4_c_ansi_arg)
15385 (b4_c_knr_arg_names, b4_c_knr_arg_name, b4_c_knr_arg_decls)
15386 (b4_c_knr_arg_decl): New.
15387 * data/yacc.c: Use it to define yysymprint, yydestruct, and
15388 yyreport_parse_error.
15389
15390 2002-07-25 Akim Demaille <akim@epita.fr>
15391
15392 * data/yacc.c (yyreport_parse_error): New, extracted from...
15393 (yyparse): here.
15394 (yydestruct, yysymprint): Move above yyparse.
15395 Be K&R compliant.
15396
15397 2002-07-25 Akim Demaille <akim@epita.fr>
15398
15399 * data/c.m4 (b4_ints_in, b4_int_type, b4_int_type_for): New,
15400 replace...
15401 (b4_sint_type, b4_uint_type): these.
15402 * data/yacc.c, data/glr.c, data/lalr1.cc: Use b4_int_type_for.
15403 * tests/regression.at (Web2c Actions): Adjust.
15404
15405 2002-07-25 Akim Demaille <akim@epita.fr>
15406
15407 * src/gram.h (TIEM_NUMBER_MAX): New.
15408 (item_number_of_rule_number, rule_number_of_item_number): Rename
15409 as...
15410 (rule_number_as_item_number, item_number_as_rule_number): these.
15411 Adjust dependencies.
15412 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
15413 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
15414 (symbol_number_to_vector_number): New.
15415 (order): Of vector_number_t* type.
15416 (base_t, BASE_MAX, BASE_MIN): New.
15417 (froms, tos, width, pos, check): Of base_t type.
15418 (action_number_t, ACTION_MIN, ACTION_MAX): New.
15419 (actrow): Of action_number_t type.
15420 (conflrow): Of unsigned int type.
15421 (table_ninf, base_ninf): New.
15422 (GENERATE_MUSCLE_INSERT_TABLE): Also output the `*_min' value.
15423 (muscle_insert_int_table, muscle_insert_base_table)
15424 (muscle_insert_rule_number_table): New.
15425 (prepare_tokens): Output `toknum' as int_table.
15426 (action_row): Returns a rule_number_t.
15427 Use ACTION_MIN, not SHRT_MIN.
15428 (token_actions): yydefact is rule_number_t*.
15429 (table_ninf_remap): New.
15430 (pack_table): Use it for `base' and `table'.
15431 * data/yacc.c, data/glr.c, data/lalr1.cc (YYFLAG): Remove,
15432 replaced with...
15433 (YYPACT_NINF, YYTABLE_NINF): these.
15434 (yypact, yytable): Compute their types instead of hard-coded
15435 `short'.
15436 * tests/regression.at (Web2c Actions): Adjust.
15437
15438 2002-07-19 Akim Demaille <akim@epita.fr>
15439
15440 * src/scan-gram.l (id): Can start with an underscore.
15441
15442 2002-07-16 Akim Demaille <akim@epita.fr>
15443
15444 * src/assoc.c, src/asssoc.h (assoc_t, assoc_to_string): New.
15445 Adjust all former `associativity' dependencies.
15446 * src/symtab.c (symbol_new): Default associativity is `undef', not
15447 `right'.
15448 (symbol_check_alias_consistence): Adjust.
15449
15450 2002-07-09 Akim Demaille <akim@epita.fr>
15451
15452 * doc/bison.texinfo: Properly set the ``header'' part.
15453 Use @dircategory ``GNU programming tools'' as per Texinfo's
15454 documentation.
15455 Use @copying.
15456
15457 2002-07-09 Akim Demaille <akim@epita.fr>
15458
15459 * lib/quotearg.h: Protect against multiple inclusions.
15460 * src/location.h (location_t): Add a `file' member.
15461 (LOCATION_RESET, LOCATION_PRINT): Adjust.
15462 * src/complain.c (warn_at, complain_at, fatal_at): Drop
15463 `error_one_per_line' support.
15464
15465 2002-07-09 Akim Demaille <akim@epita.fr>
15466
15467 * src/complain.h, src/complain.c (warn, complain): Remove, unused.
15468 * src/reader.c (lineno): Remove.
15469 Adjust all dependencies.
15470 (get_merge_function): Take a location and use complain_at.
15471 * src/symtab.h, src/symtab.c (symbol_make_alias): Likewise.
15472 * tests/regression.at (Invalid inputs, Mixing %token styles):
15473 Adjust.
15474
15475 2002-07-09 Akim Demaille <akim@epita.fr>
15476
15477 * src/parse-gram.y (rules_or_grammar_declaration): Add an error
15478 recovery rule, and forbid extensions when --yacc.
15479 (gram_error): Use complain_at.
15480 * src/reader.c (reader): Exit if there were parse errors.
15481
15482 2002-07-09 Akim Demaille <akim@epita.fr>
15483
15484 * tests/synclines.at (AT_SYNCLINES_COMPILE): New.
15485 (AT_TEST_SYNCLINE): Adjust to unusual GCC outputs.
15486 Reported by R Blake <blakers@mac.com>.
15487
15488 2002-07-09 Akim Demaille <akim@epita.fr>
15489
15490 * data/yacc.c: Output the copyright notive in the header.
15491
15492 2002-07-03 Akim Demaille <akim@epita.fr>
15493
15494 * src/output.c (froms, tos): Are state_number_t.
15495 (save_column): sp, sp1, and sp2 are state_number_t.
15496 (prepare): Rename `final' as `final_state_number', `nnts' as
15497 `nterms_number', `nrules' as `rules_number', `nstates' as
15498 `states_number', and `ntokens' as `tokens_number'. Remove `nsym',
15499 unused.
15500 * data/yacc.c, data/glr.c, data/lalr1.cc: Adjust.
15501 * data/lalr1.cc (nsym_): Remove, unused.
15502
15503 2002-07-03 Akim Demaille <akim@epita.fr>
15504
15505 * src/lalr.h, src/lalr.c (goto_number_t): New.
15506 * src/lalr.c (goto_list_t): New.
15507 Propagate them.
15508 * src/nullable.c (rule_list_t): New.
15509 Propagate.
15510 * src/types.h: Remove.
15511
15512 2002-07-03 Akim Demaille <akim@epita.fr>
15513
15514 * src/closure.c (print_fderives): Use rule_rhs_print.
15515 * src/derives.c (print_derives): Use rule_rhs_print.
15516 (rule_list_t): New, replaces `shorts'.
15517 (set_derives): Add comments.
15518 * tests/sets.at (Nullable, Firsts): Adjust.
15519
15520 2002-07-03 Akim Demaille <akim@epita.fr>
15521
15522 * src/output.c (prepare_actions): Free `tally' and `width'.
15523 (prepare_actions): Allocate and free `order'.
15524 * src/symtab.c (symbols_free): Free `symbols'.
15525 * src/scan-gram.l (scanner_free): Clear Flex's scanners memory.
15526 * src/output.c (m4_invoke): Move to...
15527 * src/scan-skel.l: here.
15528 (<<EOF>>): Close yyout, and free its name.
15529
15530 2002-07-03 Akim Demaille <akim@epita.fr>
15531
15532 Fix some memory leaks, and fix a bug: state 0 was examined twice.
15533
15534 * src/LR0.c (new_state): Merge into...
15535 (state_list_append): this.
15536 (new_states): Merge into...
15537 (generate_states): here.
15538 (set_states): Don't ensure a proper `errs' state member here, do it...
15539 * src/conflicts.c (conflicts_solve): here.
15540 * src/state.h, src/state.c: Comment changes.
15541 (state_t): Rename member `shifts' as `transitions'.
15542 Adjust all dependencies.
15543 (errs_new): For consistency, also take the values as argument.
15544 (errs_dup): Remove.
15545 (state_errs_set): New.
15546 (state_reductions_set, state_transitions_set): Assert that no
15547 previous value was assigned.
15548 (state_free): New.
15549 (states_free): Use it.
15550 * src/conflicts.c (resolve_sr_conflict): Don't use an `errs_t' as
15551 temporary storage: use `errs' and `nerrs' as elsewhere.
15552 (set_conflicts): Allocate and free this `errs'.
15553
15554 2002-07-02 Akim Demaille <akim@epita.fr>
15555
15556 * lib/libiberty.h: New.
15557 * lib: Update the bitset implementation from upstream.
15558 * src/closure.c, src/lalr.c, src/output.c, src/print_graph.c,
15559 * src/state.c: Use BITSET_FOR_EACH, not BITSET_EXECUTE.
15560 * src/main.c: Adjust bitset stats calls.
15561
15562 2002-07-01 Paul Eggert <eggert@twinsun.com>
15563
15564 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>): Convert to unsigned
15565 char, so that negative chars don't collide with $.
15566
15567 2002-06-30 Akim Demaille <akim@epita.fr>
15568
15569 Have the GLR tests be `warning' checked, and fix the warnings.
15570
15571 * data/glr.c (YYFPRINTF): Always define it, not only when YYDEBUG
15572 (yyuserAction, yyreportAmbiguity): `Use' all the arguments.
15573 (yyremoveDeletes): `yyi' and `yyj' are size_t.
15574 Use YYFPRINTF when under if (YYDEBUG) to avoid empty `if' bodies.
15575 (yyaddDeferredAction): static.
15576 (yyglrReduce): yyi, yyk, amd yyposn are size_t.
15577 (yyreportParseError): yyprefix is const.
15578 yytokenp is used only when verbose.
15579 (yy__GNUC__): Replace with __GNUC__.
15580 (yypdumpstack): yyi is size_t.
15581 (yypreference): Un-yy local variables and arguments, to avoid
15582 clashes with `yyr1'. Anyway, we are not in the user name space.
15583 (yytname_size): be an int, as is compared with ints.
15584 * tests/testsuite.at (AT_COMPILE, AT_PARSER_CHECK): New.
15585 Use them.
15586 * tests/cxx-gram.at: Use quotation to protect $1.
15587 Use AT_COMPILE to enable warnings hunts.
15588 Prototype yylex and yyerror.
15589 `Use' argc.
15590 Include `string.h', not `strings.h'.
15591 Produce and prototype stmtMerge only when used.
15592 yylex takes a location.
15593
15594 2002-06-30 Akim Demaille <akim@epita.fr>
15595
15596 We spend a lot of time in quotearg, in particular when --verbose.
15597
15598 * src/symtab.c (symbol_get): Store a quoted version of the key.
15599 (symbol_tag_get, symbol_tag_get_n, symbol_tag_print): Remove.
15600 Adjust all callers.
15601
15602 2002-06-30 Akim Demaille <akim@epita.fr>
15603
15604 * src/state.h (reductions_t): Rename member `nreds' as num.
15605 (errs_t): Rename members `nerrs' and `errs' as `num' and `symbols'.
15606 * src/state.c (ERRS_ALLOC, REDUCTIONS_ALLOC): Use the correct types.
15607
15608 2002-06-30 Akim Demaille <akim@epita.fr>
15609
15610 * src/state.h, src/state.c (shift_t, SHIFT_SYMBOL, SHIFT_IS_SHIFT)
15611 (SHIFT_IS_GOTO, SHIFT_IS_ERROR, SHIFT_DISABLE, SHIFT_IS_DISABLED)
15612 (shifts_to): Rename as...
15613 (transition_t, TRANSITION_SYMBOL, TRANSITION_IS_TRANSITION)
15614 (TRANSITION_IS_GOTO, TRANSITION_IS_ERROR, TRANSITION_DISABLE)
15615 (TRANSITION_IS_DISABLED, transitions_to): these.
15616
15617 2002-06-30 Akim Demaille <akim@epita.fr>
15618
15619 * src/print.c (print_shifts, print_gotos): Merge into...
15620 (print_transitions): this.
15621 (print_transitions, print_errs, print_reductions): Align the
15622 lookaheads columns.
15623 (print_core, print_transitions, print_errs, print_state,
15624 print_grammar): Output empty lines separator before, not after.
15625 (state_default_rule_compute): Rename as...
15626 (state_default_rule): this.
15627 * tests/conflicts.at (Defaulted Conflicted Reduction),
15628 (Unresolved SR Conflicts, Resolved SR Conflicts): Adjust.
15629 * tests/regression.at (Rule Line Numbers, Web2c Report): Adjust.
15630
15631 2002-06-30 Akim Demaille <akim@epita.fr>
15632
15633 Display items as we display rules.
15634
15635 * src/gram.h, src/gram.c (rule_lhs_print): New.
15636 * src/gram.c (grammar_rules_partial_print): Use it.
15637 * src/print.c (print_core): Likewise.
15638 * tests/conflicts.at (Defaulted Conflicted Reduction),
15639 (Unresolved SR Conflicts): Adjust.
15640 (Unresolved SR Conflicts): Adjust and rename as...
15641 (Resolved SR Conflicts): this, as was meant.
15642 * tests/regression.at (Web2c Report): Adjust.
15643
15644 2002-06-30 Akim Demaille <akim@epita.fr>
15645
15646 * src/print.c (state_default_rule_compute): New, extracted from...
15647 (print_reductions): here.
15648 Pessimize, but clarify the code.
15649 * tests/conflicts.at (Defaulted Conflicted Reduction): New.
15650
15651 2002-06-30 Akim Demaille <akim@epita.fr>
15652
15653 * src/output.c (action_row): Let default_rule be always a rule
15654 number.
15655
15656 2002-06-30 Akim Demaille <akim@epita.fr>
15657
15658 * src/closure.c (print_firsts, print_fderives, closure):
15659 Use BITSET_EXECUTE.
15660 * src/lalr.c (lookaheads_print): Likewise.
15661 * src/state.c (state_rule_lookaheads_print): Likewise.
15662 * src/print_graph.c (print_core): Likewise.
15663 * src/print.c (print_reductions): Likewise.
15664 * src/output.c (action_row): Likewise.
15665 Use SHIFT_IS_DISABLED, SHIFT_IS_SHIFT and SHIFT_SYMBOL.
15666
15667 2002-06-30 Akim Demaille <akim@epita.fr>
15668
15669 * src/print_graph.c: Use report_flag.
15670
15671 2002-06-30 Akim Demaille <akim@epita.fr>
15672
15673 * src/lalr.c (traverse, digraph, matrix_print, transpose): Move
15674 to...
15675 * src/relation.h, src/relation.c (traverse, relation_digraph)
15676 (relation_print, relation_transpose): New.
15677
15678 2002-06-30 Akim Demaille <akim@epita.fr>
15679
15680 * src/state.h, src/state.c (shifts_to): New.
15681 * src/lalr.c (build_relations): Use it.
15682
15683 2002-06-30 Akim Demaille <akim@epita.fr>
15684
15685 * src/gram.h (rule_number_t, RULE_NUMBER_MAX, int_of_rule_number)
15686 (item_number_of_rule_number, rule_number_of_item_number): New.
15687 * src/LR0.c, src/closure.c, src/derives.c, src/derives.h,
15688 * src/gram.c, src/lalr.c, src/nullable.c, src/output.c, src/print.c,
15689 * src/print_graph.c, src/reader.c, src/reduce.c, src/reduce.h:
15690 Propagate their use.
15691 Much remains to be done, in particular wrt `shorts' from types.h.
15692
15693 2002-06-30 Akim Demaille <akim@epita.fr>
15694
15695 * src/symtab.c (symbol_new): Initialize the `printer' member.
15696
15697 2002-06-30 Akim Demaille <akim@epita.fr>
15698
15699 * src/LR0.c (save_reductions): Remove, replaced by...
15700 * src/state.h, src/state.c (state_reductions_set): New.
15701 (reductions, errs): Rename as...
15702 (reductions_t, errs_t): these.
15703 Adjust all dependencies.
15704
15705 2002-06-30 Akim Demaille <akim@epita.fr>
15706
15707 * src/LR0.c (state_list_t, state_list_append): New.
15708 (first_state, last_state): Now symbol_list_t.
15709 (this_state): Remove.
15710 (new_itemsets, append_states, save_reductions): Take a state_t as
15711 argument.
15712 (set_states, generate_states): Adjust.
15713 (save_shifts): Remove, replaced by...
15714 * src/state.h, src/state.c (state_shifts_set): New.
15715 (shifts): Rename as...
15716 (shifts_t): this.
15717 Adjust all dependencies.
15718 * src/state.h (state_t): Remove the `next' member.
15719
15720 2002-06-30 Akim Demaille <akim@epita.fr>
15721
15722 * src/vcg.c (quote): Use slot 2, since we often pass symbol tag
15723 escaped in slot 0.
15724
15725 2002-06-30 Akim Demaille <akim@epita.fr>
15726
15727 Use hash.h for the state hash table.
15728
15729 * src/LR0.c (STATE_HASH_SIZE, state_hash): Remove.
15730 (allocate_storage): Use state_hash_new.
15731 (free_storage): Use state_hash_free.
15732 (new_state, get_state): Adjust.
15733 * src/lalr.h, src/lalr.c (states): Move to...
15734 * src/states.h (state_t): Remove the `link' member, no longer
15735 used.
15736 * src/states.h, src/states.c: here.
15737 (state_hash_new, state_hash_free, state_hash_lookup)
15738 (state_hash_insert, states_free): New.
15739 * src/states.c (state_table, state_compare, state_hash): New.
15740 * src/output.c (output_actions): Do not free states now, since we
15741 still need to know the final_state number in `prepare', called
15742 afterwards. Do it...
15743 * src/main.c (main): here: call states_free after `output'.
15744
15745 2002-06-30 Akim Demaille <akim@epita.fr>
15746
15747 * src/state.h, src/state.c (state_new): New, extracted from...
15748 * src/LR0.c (new_state): here.
15749 * src/state.h (STATE_ALLOC): Move to...
15750 * src/state.c: here.
15751 * src/LR0.h, src/LR0.c (nstates, final_state): Move to...
15752 * src/state.h, src/state.c: here.
15753
15754 2002-06-30 Akim Demaille <akim@epita.fr>
15755
15756 * src/reader.c (gensym): Rename as...
15757 * src/symtab.h, src/symtab.c (dummy_symbol_get): this.
15758 (getsym): Rename as...
15759 (symbol_get): this.
15760
15761 2002-06-30 Akim Demaille <akim@epita.fr>
15762
15763 * src/state.h (state_number_t, STATE_NUMBER_MAX): New.
15764 * src/LR0.c, src/LR0.h, src/conflicts.c, src/lalr.c, src/lalr.h,
15765 * src/output.c, src/print.c, src/print_graph.c: Propagate.
15766 * src/LR0.h, src/LR0.h (final_state): Is a state_t*.
15767
15768 2002-06-30 Akim Demaille <akim@epita.fr>
15769
15770 Make the test suite pass with warnings checked.
15771
15772 * tests/actions.at (Printers and Destructors): Improve.
15773 Avoid unsigned vs. signed issues.
15774 * tests/calc.at: Don't exercise the scanner here, do it...
15775 * tests/input.at (Torturing the Scanner): here.
15776
15777 2002-06-28 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15778
15779 * data/glr.c: Correct typo in Emacs-mode directive. Slightly
15780 reorganize first lines parallel to yacc.c.
15781
15782 2002-06-28 Akim Demaille <akim@epita.fr>
15783
15784 * data/c.m4 (b4_copyright, b4_sint_type, b4_uint_type, b4_token_define)
15785 (b4_token_enum, b4_token_defines): New, factored from...
15786 * data/lalr1.cc, data/yacc.c, glr.c: here.
15787
15788 2002-06-28 Akim Demaille <akim@epita.fr>
15789
15790 * data/yacc.c (yydestruct, yysymprint): Pacify GCC warnings for
15791 unused variables.
15792 * src/output.c (merger_output): static.
15793
15794 2002-06-28 Akim Demaille <akim@epita.fr>
15795
15796 * src/reader.h: s/grammer_current_rule_merge_set/grammar_.../.
15797 * src/conflicts.c (conflicts_total_count): `i' is unsigned, to
15798 pacify GCC.
15799 * src/output.c (save_row): Initialize all the variables to pacify GCC.
15800
15801 2002-06-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15802
15803 Accumulated changelog for new GLR parsing features.
15804
15805 * src/conflicts.c (count_total_conflicts): Change name to
15806 conflicts_total_count.
15807 * src/conflicts.h: Ditto.
15808 * src/output.c (token_actions): Use the new name.
15809 (output_conflicts): Change conflp => conflict_list_heads, and
15810 confl => conflict_list for better readability.
15811 * data/glr.c: Use the new names.
15812 * NEWS: Add self to GLR announcement.
15813
15814 * src/reader.c (free_merger_functions): Cleanup: XFREE->free.
15815
15816 * doc/bison.texinfo (GLR Parsers): Make corrections suggested by
15817 Akim Demaille.
15818
15819 * data/bison.glr: Change name to glr.c
15820 * data/glr.c: Renamed from bison.glr.
15821 * data/Makefile.am: Add glr.c
15822
15823 * src/getargs.c:
15824
15825 * src/symlist.h: Add dprec and merger fields to symbol_list_s.
15826 * src/symlist.c (symbol_list_new): Initialize dprec and merger fields.
15827
15828 Originally 2002-06-16 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15829
15830 * data/bison.glr: Be sure to restore the
15831 current #line when returning to the skeleton contents after having
15832 exposed the input file's #line.
15833
15834 Originally 2002-06-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15835
15836 * data/bison.glr: Bring up to date with changes to bison.simple.
15837
15838 Originally 2002-06-03 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15839
15840 * data/bison.glr: Correct definitions that use b4_prefix.
15841 Various reformatting.
15842 (GLRStack): Make yychar (in YYPURE case) and yytokenp as part of stack.
15843 (yyreportParseError, yyrecoverParseError, yyprocessOneStack): remove
15844 yytokenp argument; now part of stack.
15845 (yychar): Define to behave as documented.
15846 (yyclearin): Ditto.
15847
15848 Originally 2002-05-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15849
15850 * src/reader.h: Add declaration for free_merger_functions.
15851
15852 * src/reader.c (merge_functions): New variable.
15853 (get_merge_function): New function.
15854 (free_merger_functions): New function.
15855 (readgram): Check for %prec that is not followed by a symbol.
15856 Handle %dprec and %merge declarations.
15857 (packgram): Initialize dprec and merger fields in rules array.
15858
15859 * src/output.c (conflict_tos, conflrow, conflict_table, conflict_list,
15860 conflict_list_cnt, conflict_list_free): New variables.
15861 (table_grow): Also grow conflict_table.
15862 (prepare_rules): Output dprec and merger tables.
15863 (conflict_row): New function.
15864 (action_row): Output conflict lists for GLR parser. Don't use
15865 default reduction in conflicted states for GLR parser so that there
15866 are spaces for the conflict lists.
15867 (save_row): Also save conflict information.
15868 (token_actions): Allocate conflict list.
15869 (merger_output): New function.
15870 (pack_vector): Pack conflict table, too.
15871 (output_conflicts): New function to output yyconflp and yyconfl.
15872 (output_check): Allocate conflict_tos.
15873 (output_actions): Output conflict tables, also.
15874 (output_skeleton): Output b4_mergers definition.
15875 (prepare): Output b4_max_rhs_length definition.
15876 Use 'bison.glr' as default skeleton for GLR parsers.
15877
15878 * src/gram.c (glr_parser): New flag.
15879 (grammar_free): Call free_merger_functions.
15880
15881 * src/conflicts.c (count_rr_conflicts): Augment to optionally count
15882 all pairs of conflicting reductions, rather than just all tokens
15883 causing conflicts. Needed to size conflict tables.
15884 (conflicts_output): Modify call to count_rr_conflicts for new
15885 interface.
15886 (conflicts_print): Ditto.
15887 (count_total_conflicts): New function.
15888
15889 * src/reader.h (merger_list): New type.
15890 (merge_functions): New variable.
15891
15892 * src/lex.h (tok_dprec, tok_merge): New token types.
15893
15894 * src/gram.h (rule_s): Add dprec and merger fields.
15895 (glr_parser): New flag.
15896
15897 * src/conflicts.h (count_total_conflicts): New function.
15898
15899 * src/options.c (option_table): Add %dprec, %merge, and %glr-parser.
15900
15901 * doc/bison.texinfo (Generalized LR Parsing): New section.
15902 (GLR Parsers): New section.
15903 (Language and Grammar): Mention GLR parsing.
15904 (Table of Symbols): Add %dprec, %glr-parser, %merge, GLR
15905 Correct typo ("tge" -> "the").
15906
15907 * data/bison.glr: New skeleton for GLR parsing.
15908
15909 * tests/cxx-gram.at: New tests for GLR parsing.
15910
15911 * tests/testsuite.at: Include cxx-gram.at.
15912
15913 * tests/Makefile.am: Add cxx-gram.at.
15914
15915 * src/parse-gram.y:
15916
15917 * src/scan-gram.l: Add %dprec, %glr-parser, %merge.
15918
15919 * src/parse-gram.y: Grammar for %dprec, %merge, %glr-parser.
15920
15921 2002-06-27 Akim Demaille <akim@epita.fr>
15922
15923 * src/options.h, src/options.c: Remove.
15924 * src/getargs.c (short_options, long_options): New.
15925
15926 2002-06-27 Akim Demaille <akim@epita.fr>
15927
15928 * data/bison.simple, data/bison.c++: Rename as...
15929 * data/yacc.c, data/lalr1.cc: these.
15930 * doc/bison.texinfo (Environment Variables): Remove.
15931
15932 2002-06-25 Raja R Harinath <harinath@cs.umn.edu>
15933
15934 * src/getargs.c (report_argmatch): Initialize strtok().
15935
15936 2002-06-20 Akim Demaille <akim@epita.fr>
15937
15938 * data/bison.simple (b4_symbol_actions): New, replaces...
15939 (b4_symbol_destructor, b4_symbol_printer): these.
15940 (yysymprint): Be sure to call YYPRINT only for tokens, and using
15941 user token numbers.
15942
15943 2002-06-20 Akim Demaille <akim@epita.fr>
15944
15945 * data/bison.simple (yydestructor): Rename as...
15946 (yydestruct): this.
15947
15948 2002-06-20 Akim Demaille <akim@epita.fr>
15949
15950 * src/symtab.h, src/symtab.c (symbol_type_set)
15951 (symbol_destructor_set, symbol_precedence_set): The location is
15952 the last argument.
15953 Adjust all callers.
15954
15955 2002-06-20 Akim Demaille <akim@epita.fr>
15956
15957 * src/parse-gram.y (YYPRINT, yyprint): Don't mess with the parser
15958 internals.
15959 * src/reader.h, src/reader.c (grammar_current_rule_prec_set):
15960 Takes a location.
15961 * src/symtab.h, src/symtab.c (symbol_class_set)
15962 (symbol_user_token_number_set): Likewise.
15963 Adjust all callers.
15964 Promote complain_at.
15965 * tests/input.at (Type Clashes): Adjust.
15966
15967 2002-06-20 Akim Demaille <akim@epita.fr>
15968
15969 * data/bison.simple (YYLEX): Fix the declaration when
15970 %pure-parser.
15971
15972 2002-06-20 Akim Demaille <akim@epita.fr>
15973
15974 * data/bison.simple (yysymprint): Don't print the token number,
15975 just its name.
15976 * tests/actions.at (Destructors): Rename as...
15977 (Printers and Destructors): this.
15978 Also exercise %printer.
15979
15980 2002-06-20 Akim Demaille <akim@epita.fr>
15981
15982 * data/bison.simple (YYDSYMPRINT): New.
15983 Use it to remove many of the #if YYDEBUG/if (yydebug).
15984
15985 2002-06-20 Akim Demaille <akim@epita.fr>
15986
15987 * src/symtab.h, src/symtab.c (symbol_t): printer and
15988 printer_location are new members.
15989 (symbol_printer_set): New.
15990 * src/parse-gram.y (PERCENT_PRINTER): New token.
15991 Handle its associated rule.
15992 * src/scan-gram.l: Adjust.
15993 (handle_destructor_at, handle_destructor_dollar): Rename as...
15994 (handle_symbol_code_at, handle_symbol_code_dollar): these.
15995 * src/output.c (symbol_printers_output): New.
15996 (output_skeleton): Call it.
15997 * data/bison.simple (yysymprint): New. Cannot be named yyprint
15998 since there are already many grammar files with a user `yyprint'.
15999 Replace the calls to YYPRINT to calls to yysymprint.
16000 * tests/calc.at: Adjust.
16001 * tests/torture.at (AT_DATA_STACK_TORTURE): Remove YYPRINT: it was
16002 taking advantage of parser very internal details (stack size!).
16003
16004 2002-06-20 Akim Demaille <akim@epita.fr>
16005
16006 * src/scan-gram.l: Complete the scanner with the missing patterns
16007 to pacify Flex.
16008 Use `quote' and `symbol_tag_get' where appropriate.
16009
16010 2002-06-19 Akim Demaille <akim@epita.fr>
16011
16012 * tests/actions.at (Destructors): Augment to test locations.
16013 * data/bison.simple (yydestructor): Pass it the current location
16014 if locations are enabled.
16015 Prototype only when __STDC__ or C++.
16016 Change the argument names to move into the yy name space: there is
16017 user code here.
16018
16019 2002-06-19 Akim Demaille <akim@epita.fr>
16020
16021 * data/bison.simple (b4_pure_if): New.
16022 Use it instead of #ifdef YYPURE.
16023
16024 2002-06-19 Akim Demaille <akim@epita.fr>
16025
16026 * data/bison.simple (b4_location_if): New.
16027 Use it instead of #ifdef YYLSP_NEEDED.
16028
16029 2002-06-19 Akim Demaille <akim@epita.fr>
16030
16031 Prepare @$ in %destructor, but currently don't bind it in the
16032 skeleton, as %location use is not cleaned up yet.
16033
16034 * src/scan-gram.l (handle_dollar, handle_destructor_at)
16035 (handle_action_at): New.
16036 (handle_at, handle_action_dollar, handle_destructor_dollar): Take
16037 a braced_code_t and a location as additional arguments.
16038 (handle_destructor_dollar): Instead of requiring `b4_eval', just
16039 unquote one when outputting `b4_dollar_dollar'.
16040 Adjust callers.
16041 * data/bison.simple (b4_eval): Remove.
16042 (b4_symbol_destructor): Adjust.
16043 * tests/input.at (Invalid @n): Adjust.
16044
16045 2002-06-19 Zack Weinberg <zack@codesourcery.com>
16046
16047 * doc/bison.texinfo: Document ability to have multiple
16048 prologue sections.
16049
16050 2002-06-18 Akim Demaille <akim@epita.fr>
16051
16052 * src/files.c (compute_base_names): When computing the output file
16053 names from the input file name, strip the directory part.
16054
16055 2002-06-18 Akim Demaille <akim@epita.fr>
16056
16057 * data/bison.simple.new: Comment changes.
16058 Reported by Andreas Schwab.
16059
16060 2002-06-18 Matt Kraai <kraai@alumni.cmu.edu>
16061
16062 * data/bison.simple (yyoverflowlab): #ifndef yyoverflow, so that
16063 there are no `label `yyoverflowlab' defined but not used' warnings
16064 when yyoverflow is defined.
16065
16066 2002-06-18 Akim Demaille <akim@epita.fr>
16067
16068 * src/symtab.h, src/symtab.c (symbol_t): destructor_location is a
16069 new member.
16070 (symbol_destructor_set): Adjust.
16071 * src/output.c (symbol_destructors_output): Output the destructor
16072 locations.
16073 Output the symbol name.
16074 * data/bison.simple (b4_symbol_destructor): Adjust.
16075
16076 2002-06-18 Cris Bailiff <c.bailiff@awayweb.com>
16077 and Akim Demaille <akim@epita.fr>
16078
16079 * data/bison.simple.new (yyerrlab1): Be sure to pop and destroy
16080 what's left on the stack when the error recovery hits EOF.
16081 * tests/actions.at (Destructors): Complete to exercise this case.
16082
16083 2002-06-17 Akim Demaille <akim@epita.fr>
16084
16085 * data/m4sugar/m4sugar.m4 (m4_map): Recognize when the list of
16086 arguments is really empty, not only equal to `[]'.
16087 * src/symtab.h, src/symtab.c (symbol_t): `destructor' is a new
16088 member.
16089 (symbol_destructor_set): New.
16090 * src/output.c (symbol_destructors_output): New.
16091 * src/reader.h (brace_code_t, current_braced_code): New.
16092 * src/scan-gram.l (BRACED_CODE): Use it to branch on...
16093 (handle_dollar): Rename as...
16094 (handle_action_dollar): this.
16095 (handle_destructor_dollar): New.
16096 * src/parse-gram.y (PERCENT_DESTRUCTOR): New.
16097 (grammar_declaration): Use it.
16098 * data/bison.simple (yystos): Is always defined.
16099 (yydestructor): New.
16100 * tests/actions.at (Destructors): New.
16101 * tests/calc.at (_AT_CHECK_CALC_ERROR): Don't rely on egrep.
16102
16103 2002-06-17 Akim Demaille <akim@epita.fr>
16104
16105 * src/symlist.h, src/symlist.c (symbol_list_length): New.
16106 * src/scan-gram.l (handle_dollar, handle_at): Compute the
16107 rule_length only when needed.
16108 * src/output.c (actions_output, token_definitions_output): Output
16109 the full M4 block.
16110 * src/symtab.c: Don't access directly to the symbol tag, use
16111 symbol_tag_get.
16112 * src/parse-gram.y: Use symbol_list_free.
16113
16114 2002-06-17 Akim Demaille <akim@epita.fr>
16115
16116 * src/reader.h, src/reader.c (symbol_list, symbol_list_new)
16117 (symbol_list_prepend, get_type_name): Move to...
16118 * src/symlist.h, src/symlist.c (symbol_list_t, symbol_list_new)
16119 (symbol_list_prepend, symbol_list_n_type_name_get): here.
16120 Adjust all callers.
16121 (symbol_list_free): New.
16122 * src/scan-gram.l (handle_dollar): Takes a location.
16123 * tests/input.at (Invalid $n): Adjust.
16124
16125 2002-06-17 Akim Demaille <akim@epita.fr>
16126
16127 * src/reader.h, src/reader.c (symbol_list_new): Export it.
16128 (symbol_list_prepend): New.
16129 * src/parse-gram.y (%union): `list' is a new member.
16130 (symbols.1): New, replaces...
16131 (terms_to_prec.1, nterms_to_type.1): these.
16132 * src/symtab.h, src/symtab.c (symbol_type_set, symbol_precedence_set)
16133 Take a location as additional argument.
16134 Adjust all callers.
16135
16136 2002-06-15 Akim Demaille <akim@epita.fr>
16137
16138 * src/parse-gram.y: Move %token in the declaration section so that
16139 we don't depend upon CVS Bison.
16140
16141 2002-06-15 Akim Demaille <akim@epita.fr>
16142
16143 * src/state.h, src/state.c (state_rule_lookaheads_print): New.
16144 * src/print.c (print_core): Use it.
16145
16146 2002-06-15 Akim Demaille <akim@epita.fr>
16147
16148 * src/conflicts.c (log_resolution): Accept the rule involved in
16149 the sr conflicts instead of the lookahead number that points to
16150 that rule.
16151 (flush_reduce): Accept the current lookahead vector as argument,
16152 instead of the index in LA.
16153 (resolve_sr_conflict): Accept the current number of lookahead
16154 bitset to consider for the STATE, instead of the index in LA.
16155 (set_conflicts): Adjust.
16156 * src/lalr.c, src/lalr.h, src/state.h: Comment changes.
16157
16158 2002-06-15 Akim Demaille <akim@epita.fr>
16159
16160 * src/state.h (state_t): Replace the `lookaheadsp' member, a
16161 short, with `lookaheads' (bitsetv), `lookaheads_rule' (rule_t**).
16162 Adjust all dependencies.
16163 * src/lalr.c (initialize_lookaheads): Split into...
16164 (states_lookaheads_count, states_lookaheads_initialize): these.
16165 (lalr): Adjust.
16166
16167 2002-06-15 Akim Demaille <akim@epita.fr>
16168
16169 * src/gram.h, src/gram.c (grammar_rules_partial_print): New, eved
16170 out of...
16171 (grammar_rules_print): here.
16172 * src/reduce.c (reduce_output): Use it.
16173 * tests/reduce.at (Useless Rules, Reduced Automaton)
16174 (Underivable Rules): Adjust.
16175
16176 2002-06-15 Akim Demaille <akim@epita.fr>
16177
16178 Copy BYacc's nice way to report the grammar.
16179
16180 * src/gram.h, src/gram.c (grammar_rhs_print, grammar_rules_print):
16181 New.
16182 Don't print the rules' location, it is confusing and useless.
16183 (rule_print): Use grammar_rhs_print.
16184 * src/print.c (print_grammar): Use grammar_rules_print.
16185
16186 2002-06-15 Akim Demaille <akim@epita.fr>
16187
16188 Complete and rationalize `useless thing' warnings.
16189
16190 * src/symtab.h, src/symtab.c (symbol_tag_get, symbol_tag_get_n)
16191 (symbol_tag_print): New.
16192 Use them everywhere in place of accessing directly the tag member.
16193 * src/gram.h, src/gram.c (rule_print): New.
16194 Use it where a rule used to be printed `by hand'.
16195 * src/reduce.c (nonterminals_reduce): Report the use nonterminals.
16196 (reduce_grammar_tables): Report the useless rules.
16197 (reduce_print): Useless things are a warning, not an error.
16198 Report it as such.
16199 * tests/reduce.at (Useless Nonterminals, Useless Rules):
16200 (Reduced Automaton, Underivable Rules): Adjust.
16201 * tests/regression.at (Web2c Report, Web2c Report): Adjust.
16202 * tests/conflicts.at (Unresolved SR Conflicts)
16203 (Solved SR Conflicts): Adjust.
16204
16205 2002-06-15 Akim Demaille <akim@epita.fr>
16206
16207 Let symbols have a location.
16208
16209 * src/symtab.h, src/symtab.c (symbol_t): Location is a new member.
16210 (getsym): Adjust.
16211 Adjust all callers.
16212 * src/complain.h, src/complain.c (complain_at, fatal_at, warn_at):
16213 Use location_t, not int.
16214 * src/symtab.c (symbol_check_defined): Take advantage of the
16215 location.
16216 * tests/regression.at (Invalid inputs): Adjust.
16217
16218 2002-06-15 Akim Demaille <akim@epita.fr>
16219
16220 * src/parse-gram.y (YYLLOC_DEFAULT, current_lhs_location): New.
16221 (input): Don't try to initialize yylloc here, do it in the
16222 scanner.
16223 * src/scan-gram.l (YY_USER_INIT): Initialize yylloc.
16224 * src/gram.h (rule_t): Change line and action_line into location
16225 and action_location, of location_t type.
16226 Adjust all dependencies.
16227 * src/location.h, src/location.c (empty_location): New.
16228 * src/reader.h, src/reader.c (grammar_start_symbol_set)
16229 (grammar_symbol_append, grammar_rule_begin, grammar_rule_end)
16230 (grammar_current_rule_symbol_append)
16231 (grammar_current_rule_action_append): Expect a location as argument.
16232 * src/reader.c (grammar_midrule_action): Adjust to attach an
16233 action's location as dummy symbol location.
16234 * src/symtab.h, src/symtab.c (startsymbol_location): New.
16235 * tests/regression.at (Web2c Report, Rule Line Numbers): Adjust
16236 the line numbers.
16237
16238 2002-06-14 Akim Demaille <akim@epita.fr>
16239
16240 Grammar declarations may be found in the grammar section.
16241
16242 * src/parse-gram.y (rules_or_grammar_declaration): New.
16243 (declarations): Each declaration may end with a semicolon, not
16244 just...
16245 (grammar_declaration): `"%union"'.
16246 (grammar): Branch to rules_or_grammar_declaration.
16247
16248 2002-06-14 Akim Demaille <akim@epita.fr>
16249
16250 * src/main.c (main): Invoke scanner_free.
16251
16252 2002-06-14 Akim Demaille <akim@epita.fr>
16253
16254 * src/output.c (m4_invoke): Extracted from...
16255 (output_skeleton): here.
16256 Free tempfile.
16257
16258 2002-06-14 Akim Demaille <akim@epita.fr>
16259
16260 * src/parse-gram.y (directives, directive, gram)
16261 (grammar_directives, precedence_directives, precedence_directive):
16262 Rename as...
16263 (declarations, declaration, grammar, grammar_declaration)
16264 (precedence_declaration, precedence_declarator): these.
16265 (symbol_declaration): New.
16266
16267 2002-06-14 Akim Demaille <akim@epita.fr>
16268
16269 * src/files.c (action_obstack): Remove, unused.
16270 (output_obstack): Remove it, and all its dependencies, as it is no
16271 longer needed.
16272 * src/reader.c (epilogue_set): Build the epilogue in the
16273 muscle_obstack.
16274 * src/output.h, src/output.c (muscle_obstack): Move to...
16275 * src/muscle_tab.h, src/muscle_tab.h: here.
16276 (muscle_init): Initialize muscle_obstack.
16277 (muscle_free): New.
16278 * src/main.c (main): Call it.
16279
16280 2002-06-14 Akim Demaille <akim@epita.fr>
16281
16282 * src/location.h: New, extracted from...
16283 * src/reader.h: here.
16284 * src/Makefile.am (noinst_HEADERS): Merge into
16285 (bison_SOURCES): this.
16286 Add location.h.
16287 * src/parse-gram.y: Use location_t instead of Bison's.
16288 * src/reader.h, src/reader.c (prologue_augment, epilogue_set):
16289 Use location_t instead of ints.
16290
16291 2002-06-14 Akim Demaille <akim@epita.fr>
16292
16293 * data/bison.simple, data/bison.c++: Be sure to restore the
16294 current #line when returning to the skeleton contents after having
16295 exposed the input file's #line.
16296
16297 2002-06-12 Akim Demaille <akim@epita.fr>
16298
16299 * src/scan-gram.l (SC_BRACED_CODE): Don't use `<.*>', it is too
16300 eager.
16301 * tests/actions.at (Exotic Dollars): New.
16302
16303 2002-06-12 Akim Demaille <akim@epita.fr>
16304
16305 * src/scan-gram.l (SC_PROLOGUE): Don't eat characters amongst
16306 ['"/] too eagerly.
16307 * tests/input.at (Torturing the Scanner): New.
16308
16309 2002-06-11 Akim Demaille <akim@epita.fr>
16310
16311 * src/scan-gram.l (YY_OBS_INIT): Remove, replace with...
16312 [SC_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE]
16313 [SC_EPILOGUE]: Output the quadrigraphs only when not in a comment.
16314 * src/reader.h, src/scan-gram.l (scanner_initialize): this.
16315 * src/reader.c (reader): Use it.
16316
16317 2002-06-11 Akim Demaille <akim@epita.fr>
16318
16319 * src/scan-gram.l (YY_OBS_FINISH): Don't set yylval.
16320 Adjust all callers.
16321 (scanner_last_string_free): New.
16322
16323 2002-06-11 Akim Demaille <akim@epita.fr>
16324
16325 * src/scan-gram.l (YY_INIT, YY_GROW, YY_FINISH): Rename as...
16326 (YY_OBS_INIT, YY_OBS_GROW, YY_OBS_FINISH): these.
16327 (last_string, YY_OBS_FREE): New.
16328 Use them when returning an ID.
16329
16330 2002-06-11 Akim Demaille <akim@epita.fr>
16331
16332 Have Bison grammars parsed by a Bison grammar.
16333
16334 * src/reader.c, src/reader.h (prologue_augment): New.
16335 * src/reader.c (copy_definition): Remove.
16336
16337 * src/reader.h, src/reader.c (gram_start_symbol_set, prologue_augment)
16338 (grammar_symbol_append, grammar_rule_begin, grammar_midrule_action)
16339 (grammar_current_rule_prec_set, grammar_current_rule_check)
16340 (grammar_current_rule_symbol_append)
16341 (grammar_current_rule_action_append): Export.
16342 * src/parse-gram.y (symbol_list_new, symbol_list_symbol_append_
16343 (symbol_list_action_append): Remove.
16344 Hook the routines from reader.
16345 * src/scan-gram.l: In INITIAL, characters and strings are tokens.
16346 * src/system.h (ATTRIBUTE_NORETURN, ATTRIBUTE_UNUSED): Now.
16347
16348 * src/reader.c (read_declarations): Remove, unused.
16349
16350 * src/parse-gram.y: Handle the epilogue.
16351 * src/reader.h, src/reader.c (gram_start_symbol_set): Rename as...
16352 (grammar_start_symbol_set): this.
16353 * src/scan-gram.l: Be sure to ``use'' yycontrol to keep GCC quiet.
16354 * src/reader.c (readgram): Remove, unused.
16355 (reader): Adjust to insert eoftoken and axiom where appropriate.
16356
16357 * src/reader.c (copy_dollar): Replace with...
16358 * src/scan-gram.h (handle_dollar): this.
16359 * src/parse-gram.y: Remove `%thong'.
16360
16361 * src/reader.c (copy_at): Replace with...
16362 * src/scan-gram.h (handle_at): this.
16363
16364 * src/complain.h, src/complain.c (warn_at, complain_at, fatal_at):
16365 New.
16366
16367 * src/scan-gram.l (YY_LINES): Keep lineno synchronized for the
16368 time being.
16369
16370 * src/reader.h, src/reader.c (grammar_rule_end): New.
16371
16372 * src/parse.y (current_type, current_class): New.
16373 Implement `%nterm', `%token' support.
16374 Merge `%term' into `%token'.
16375 (string_as_id): New.
16376 * src/symtab.h, src/symtab.c (symbol_make_alias): Don't pass the
16377 type name.
16378
16379 * src/parse-gram.y: Be sure to handle properly the beginning of
16380 rules.
16381
16382 * src/parse-gram.y: Handle %type.
16383 * src/reader.c (grammar_rule_end): Call grammar_current_rule_check.
16384
16385 * src/parse-gram.y: More directives support.
16386 * src/options.c: No longer handle source directives.
16387
16388 * src/parse-gram.y: Fix %output.
16389
16390 * src/parse-gram.y: Handle %union.
16391 Use the prologue locations.
16392 * src/reader.c (parse_union_decl): Remove.
16393
16394 * src/reader.h, src/reader.c (epilogue_set): New.
16395 * src/parse-gram.y: Use it.
16396
16397 * data/bison.simple, data/bison.c++: b4_stype is now either not
16398 defined, then default to int, or to the contents of %union,
16399 without `union' itself.
16400 Adjust.
16401 * src/muscle_tab.c (muscle_init): Don't predefine `stype'.
16402
16403 * src/output.c (actions_output): Don't output braces, as they are
16404 already handled by the scanner.
16405
16406 * src/scan-gram.l (SC_CHARACTER): Set the user_token_number of
16407 characters to themselves.
16408
16409 * tests/reduce.at (Reduced Automaton): End the grammars with %% so
16410 that the epilogue has a proper #line.
16411
16412 * src/parse-gram.y: Handle precedence/associativity.
16413
16414 * src/symtab.c (symbol_precedence_set): Requires the symbol to be
16415 a terminal.
16416 * src/scan-gram.l (SC_BRACED_CODE): Catch strings and characters.
16417 * tests/calc.at: Do not use `%token "foo"' as it makes not sense
16418 at all to define terminals that cannot be emitted.
16419
16420 * src/scan-gram.l: Escape M4 characters.
16421
16422 * src/scan-gram.l: Working properly with escapes in user
16423 strings/characters.
16424
16425 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR)
16426 (AT_DATA_HORIZONTAL_GRAMMAR): Respect the `%token ID NUM STRING'
16427 grammar.
16428 Use more modest sizes, as for the time being the parser does not
16429 release memory, and therefore the process swallows a huge amount
16430 of memory.
16431
16432 * tests/torture.at (AT_DATA_LOOKAHEADS_GRAMMAR): Adjust to the
16433 stricter %token grammar.
16434
16435 * src/symtab.h (associativity): Add `undef_assoc'.
16436 (symbol_precedence_set): Do nothing when passed an undef_assoc.
16437 * src/symtab.c (symbol_check_alias_consistence): Adjust.
16438
16439 * tests/regression.at (Invalid %directive): Remove, as it is now
16440 meaningless.
16441 (Invalid inputs): Adjust to the new error messages.
16442 (Token definitions): The new grammar doesn't allow too many
16443 eccentricities.
16444
16445 * src/lex.h, src/lex.c: Remove.
16446 * src/reader.c (lastprec, skip_to_char, read_signed_integer)
16447 (copy_character, copy_string2, copy_string, copy_identifier)
16448 (copy_comment, parse_token_decl, parse_type_decl, parse_assoc_decl)
16449 (parse_muscle_decl, parse_dquoted_param, parse_skel_decl)
16450 (parse_action): Remove.
16451 * po/POTFILES.in: Adjust.
16452
16453 2002-06-11 Akim Demaille <akim@epita.fr>
16454
16455 * src/reader.c (parse_action): Don't store directly into the
16456 rule's action member: return the action as a string.
16457 Don't require `rule_length' as an argument: compute it.
16458 (grammar_current_rule_symbol_append)
16459 (grammar_current_rule_action_append): New, eved out from
16460 (readgram): here.
16461 Remove `action_flag', `rulelength', unused now.
16462
16463 2002-06-11 Akim Demaille <akim@epita.fr>
16464
16465 * src/reader.c (grammar_current_rule_prec_set).
16466 (grammar_current_rule_check): New, eved out from...
16467 (readgram): here.
16468 Remove `xaction', `first_rhs': useless.
16469 * tests/input.at (Type clashes): New.
16470 * tests/existing.at (GNU Cim Grammar): Adjust.
16471
16472 2002-06-11 Akim Demaille <akim@epita.fr>
16473
16474 * src/reader.c (grammar_midrule_action): New, Eved out from
16475 (readgram): here.
16476
16477 2002-06-11 Akim Demaille <akim@epita.fr>
16478
16479 * src/reader.c (grammar_rule_begin, previous_rule, current_rule):
16480 New.
16481 (readgram): Use them as replacement of inlined code, crule and
16482 crule1.
16483
16484 2002-06-11 Akim Demaille <akim@epita.fr>
16485
16486 * src/reader.c (grammar_end, grammar_symbol_append): New.
16487 (readgram): Use them.
16488 Make the use of `p' as local as possible.
16489
16490 2002-06-10 Akim Demaille <akim@epita.fr>
16491
16492 GCJ's parser requires the tokens to be defined before the prologue.
16493
16494 * data/bison.simple: Output the token definition before the user's
16495 prologue.
16496 * tests/regression.at (Braces parsing, Duplicate string)
16497 (Mixing %token styles): Check the output from bison.
16498 (Early token definitions): New.
16499
16500 2002-06-10 Akim Demaille <akim@epita.fr>
16501
16502 * src/symtab.c (symbol_user_token_number_set): Don't complain when
16503 assigning twice the same user number to a token, so that we can
16504 use it in...
16505 * src/lex.c (lex): here.
16506 Also use `symbol_class_set' instead of hand written code.
16507 * src/reader.c (parse_assoc_decl): Likewise.
16508
16509 2002-06-10 Akim Demaille <akim@epita.fr>
16510
16511 * src/symtab.c, src/symtab.c (symbol_class_set)
16512 (symbol_user_token_number_set): New.
16513 * src/reader.c (parse_token_decl): Use them.
16514 Use a switch instead of ifs.
16515 Use a single argument.
16516
16517 2002-06-10 Akim Demaille <akim@epita.fr>
16518
16519 Remove `%thong' support as it is undocumented, unused, duplicates
16520 `%token's job, and creates useless e-mail traffic with people who
16521 want to know what it is, why it is undocumented, unused, and
16522 duplicates `%token's job.
16523
16524 * src/reader.c (parse_thong_decl): Remove.
16525 * src/options.c (option_table): Remove "thong".
16526 * src/lex.h (tok_thong): Remove.
16527
16528 2002-06-10 Akim Demaille <akim@epita.fr>
16529
16530 * src/symtab.c, src/symtab.c (symbol_type_set)
16531 (symbol_precedence_set): New.
16532 * src/reader.c (parse_type_decl, parse_assoc_decl): Use them.
16533 (value_components_used): Remove, unused.
16534
16535 2002-06-09 Akim Demaille <akim@epita.fr>
16536
16537 Move symbols handling code out of the reader.
16538
16539 * src/reader.h, src/reader.c (errtoken, undeftoken, eoftoken)
16540 (axiom): Move to...
16541 * src/symtab.h, src/symtab.c: here.
16542
16543 * src/gram.c (start_symbol): Remove: use startsymbol->number.
16544 * src/reader.c (startval): Rename as...
16545 * src/symtab.h, src/symtab.c (startsymbol): this.
16546 * src/reader.c: Adjust.
16547
16548 * src/reader.c (symbol_check_defined, symbol_make_alias)
16549 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
16550 (token_translations_init)
16551 Move to...
16552 * src/symtab.c: here.
16553 * src/reader.c (packsymbols): Move to...
16554 * src/symtab.h, src/symtab.c (symbols_pack): here.
16555 * src/symtab.h, src/symtab.c (symbol_make_alias): Takes SYMVAL as
16556 argument.
16557
16558 2002-06-03 Akim Demaille <akim@epita.fr>
16559
16560 * src/muscle_tab.c (muscle_insert, muscle_find): Declarations,
16561 then statements.
16562
16563 2002-06-03 Akim Demaille <akim@epita.fr>
16564
16565 * src/muscle_tab.c (muscle_find, muscle_insert): Don't initialize
16566 structs with non literals.
16567 * src/scan-skel.l: never-interactive.
16568 * src/conflicts.c (enum conflict_resolution_e): No trailing
16569 comma.
16570 * src/getargs.c (usage): Split long literal strings.
16571 Reported by Hans Aberg.
16572
16573 2002-05-28 Akim Demaille <akim@epita.fr>
16574
16575 * data/bison.c++: Use C++ ostreams.
16576 (cdebug_): New member.
16577
16578 2002-05-28 Akim Demaille <akim@epita.fr>
16579
16580 * src/output.c (output_skeleton): Be sure to allocate enough room
16581 for `/' _and_ for `\0' in full_skeleton.
16582
16583 2002-05-28 Akim Demaille <akim@epita.fr>
16584
16585 * data/bison.c++: Catch up with bison.simple:
16586 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16587 and Paul Eggert <eggert@twinsun.com>: `error' handing.
16588 2002-05-26 Akim Demaille <akim@epita.fr>: stos_, token_number_,
16589 and popping traces.
16590
16591 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16592
16593 * src/output.c (output_skeleton): Put an explicit path in front of
16594 the skeleton file name, rather than relying on the -I directory,
16595 to partially alleviate effects of having a skeleton file lying around
16596 in the current directory.
16597
16598 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16599
16600 * src/conflicts.c (log_resolution): Correct typo:
16601 obstack_printf should be obstack_fgrow1.
16602
16603 2002-05-26 Akim Demaille <akim@epita.fr>
16604
16605 * src/state.h (state_t): `solved_conflicts' is a new member.
16606 * src/LR0.c (new_state): Set it to 0.
16607 * src/conflicts.h, src/conflicts.c (print_conflicts)
16608 (free_conflicts, solve_conflicts): Rename as...
16609 (conflicts_print, conflicts_free, conflicts_solve): these.
16610 Adjust callers.
16611 * src/conflicts.c (enum conflict_resolution_e)
16612 (solved_conflicts_obstack): New, used by...
16613 (log_resolution): this.
16614 Adjust to attach the conflict resolution to each state.
16615 Complete the description with the precedence/associativity
16616 information.
16617 (resolve_sr_conflict): Adjust.
16618 * src/print.c (print_state): Output its solved_conflicts.
16619 * tests/conflicts.at (Unresolved SR Conflicts)
16620 (Solved SR Conflicts): Exercise --report=all.
16621
16622 2002-05-26 Akim Demaille <akim@epita.fr>
16623
16624 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
16625 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
16626 * src/reader.c, src/reduce.c, src/state.h, src/symtab.h
16627 (token_number_t, item_number_as_token_number)
16628 (token_number_as_item_number, muscle_insert_token_number_table):
16629 Rename as...
16630 (symbol_number_t, item_number_as_symbol_number)
16631 (symbol_number_as_item_number, muscle_insert_symbol_number_table):
16632 these, since it is more appropriate.
16633
16634 2002-05-26 Akim Demaille <akim@epita.fr>
16635
16636 * tests/calc.at (AT_CHECK_CALC): Adjust: there are now additional
16637 `Error:' lines.
16638 * data/bison.simple (yystos) [YYDEBUG]: New.
16639 (yyparse) [YYDEBUG]: Display the symbols which are popped during
16640 error recovery.
16641 * tests/regression.at (Web2c Actions): Adjust: yystos is output now.
16642
16643 2002-05-25 Akim Demaille <akim@epita.fr>
16644
16645 * doc/bison.texinfo (Debugging): Split into...
16646 (Tracing): this new section, its former contents, and...
16647 (Understanding): this new section.
16648 * src/getargs.h, src/getargs.c (verbose_flag): Remove, replaced
16649 by...
16650 (report_flag): this.
16651 Adjust all dependencies.
16652 (report_args, report_types, report_argmatch): New.
16653 (usage, getargs): Report/support -r, --report.
16654 * src/options.h
16655 (struct option_table_struct): Rename as..,
16656 (struct option_table_s): this.
16657 Rename the `set_flag' member to `flag' to match with getopt_long's
16658 struct.
16659 * src/options.c (option_table): Split verbose into an entry for
16660 %verbose, and another for --verbose.
16661 Support --report/-r, so remove -r from the obsolete --raw.
16662 * src/print.c: Attach full item sets and lookaheads reports to
16663 report_flag instead of trace_flag.
16664 * lib/argmatch.h, lib/argmatch.c: New, from Fileutils 4.1.
16665
16666 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16667 and Paul Eggert <eggert@twinsun.com>
16668
16669 * data/bison.simple (yyparse): Correct error handling to conform to
16670 POSIX and yacc. Specifically, after syntax error is discovered,
16671 do not reduce further before shifting the error token.
16672 Clean up the code a bit by removing the labels yyerrdefault,
16673 yyerrhandle, yyerrpop.
16674 * NEWS: Document the above.
16675
16676 2002-05-20 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16677
16678 * data/bison.simple (yyr1): Don't use yy_token_number_type as element
16679 type; it isn't always big enough, since it doesn't necessarily
16680 include non-terminals.
16681 (yytranslate): Expand definition of yy_token_number_type, so that
16682 the latter can be removed.
16683 (yy_token_number_type): Remove, only one use.
16684 * data/bison.c++ (r1_): Parallel change to yyr1 in bison.simple---
16685 don't use TokenNumberType as element type.
16686
16687 * tests/regression.at: Modify expected output to agree with change
16688 to yyr1 and yytranslate.
16689
16690 2002-05-13 Florian Krohm <florian@edamail.fishkill.ibm.com>
16691
16692 * src/reader.c (parse_action): Use copy_character instead of
16693 obstack_1grow.
16694
16695 2002-05-13 Akim Demaille <akim@epita.fr>
16696
16697 * tests/regression.at (Token definitions): Prototype yylex and
16698 yyerror.
16699
16700 2002-05-12 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16701
16702 * src/scan-skel.l: Correct off-by-one error in handling of __oline__.
16703 * data/bison.simple (b4_sint_type, b4_uint_type): Correct to reflect
16704 32-bit arithmetic.
16705 * data/bison.c++ (b4_sint_type, b4_uint_type): Ditto.
16706
16707 2002-05-07 Akim Demaille <akim@epita.fr>
16708
16709 * tests/synclines.at: Be sure to prototype yylex and yyerror to
16710 avoid GCC warnings.
16711
16712 2002-05-07 Akim Demaille <akim@epita.fr>
16713
16714 Kill GCC warnings.
16715
16716 * src/reduce.c (nonterminals_reduce): Don't loop over RITEM: loop
16717 over the RHS of each rule.
16718 * src/gram.h, src/gram.c (nritems): Is `unsigned int', not int.
16719 * src/state.h (state_t): Member `nitems' is unsigned short.
16720 * src/LR0.c (get_state): Adjust.
16721 * src/reader.c (packgram): Likewise.
16722 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): `max' is of type
16723 `Type'.
16724 (muscle_insert_int_table): Remove, unused.
16725 (prepare_rules): Remove `max'.
16726
16727 2002-05-06 Akim Demaille <akim@epita.fr>
16728
16729 * src/closure.c (print_firsts): Display of the symbol tags.
16730 (bitmatrix_print): Move to...
16731 * lib/bitsetv-print.h, lib/bitsetv-print.c (bitsetv_matrix_dump):
16732 here.
16733 * tests/sets.at (Nullable, Broken Closure, Firsts): Adjust.
16734
16735 2002-05-06 Akim Demaille <akim@epita.fr>
16736
16737 * src/muscle_tab.c (muscle_m4_output): Must return TRUE for
16738 hash_do_for_each.
16739
16740 2002-05-06 Akim Demaille <akim@epita.fr>
16741
16742 * src/LR0.c (new_state, get_state): Instead of using the global
16743 `kernel_size' and `kernel_base', have two new arguments:
16744 `core_size' and `core'.
16745 Adjust callers.
16746
16747 2002-05-06 Akim Demaille <akim@epita.fr>
16748
16749 * src/reader.c (packgram): No longer end `ritem' with a 0
16750 sentinel: it is not used.
16751
16752 2002-05-05 Akim Demaille <akim@epita.fr>
16753
16754 New experimental feature: display the lookaheads in the report and
16755 graph.
16756
16757 * src/print (print_core): When --trace-flag, display the rules
16758 lookaheads.
16759 * src/print_graph.c (print_core): Likewise.
16760 Swap the arguments.
16761 Adjust caller.
16762
16763 2002-05-05 Akim Demaille <akim@epita.fr>
16764
16765 * tests/torture.at (Many lookaheads): New test.
16766
16767 2002-05-05 Akim Demaille <akim@epita.fr>
16768
16769 * src/output.c (GENERATE_OUTPUT_TABLE): Replace with...
16770 (GENERATE_MUSCLE_INSERT_TABLE): this.
16771 (output_int_table, output_unsigned_int_table, output_short_table)
16772 (output_token_number_table, output_item_number_table): Replace with...
16773 (muscle_insert_int_table, muscle_insert_unsigned_int_table)
16774 (muscle_insert_short_table, muscle_insert_token_number_table)
16775 (muscle_insert_item_number_table): these.
16776 Adjust all callers.
16777 (prepare_tokens): Don't free `translations', since...
16778 * src/reader.h, src/reader.c (grammar_free): do it.
16779 Move to...
16780 * src/gram.h, src/gram.c (grammar_free): here.
16781 * data/bison.simple, data/bison.c++: b4_token_number_max is now
16782 b4_translate_max.
16783
16784 2002-05-05 Akim Demaille <akim@epita.fr>
16785
16786 * src/output.c (output_unsigned_int_table): New.
16787 (prepare_rules): `i' is unsigned.
16788 `prhs', `rline', `r2' are unsigned int.
16789 Rename muscle `rhs_number_max' as `rhs_max'.
16790 Output muscles `prhs_max', `rline_max', and `r2_max'.
16791 Free rline and r1.
16792 * data/bison.simple, data/bison.c++: Adjust to use these muscles
16793 to compute types instead of constant types.
16794 * tests/regression.at (Web2c Actions): Adjust.
16795
16796 2002-05-04 Akim Demaille <akim@epita.fr>
16797
16798 * src/symtab.h (SALIAS, SUNDEF): Rename as...
16799 (USER_NUMBER_ALIAS, USER_NUMBER_UNDEFINED): these.
16800 Adjust dependencies.
16801 * src/output.c (token_definitions_output): Be sure not to output a
16802 `#define 'a'' when fed with `%token 'a' "a"'.
16803 * tests/regression.at (Token definitions): New.
16804
16805 2002-05-03 Paul Eggert <eggert@twinsun.com>
16806
16807 * data/bison.simple (b4_token_defines): Also define YYTOKENTYPE
16808 for K&R C.
16809
16810 2002-05-03 gettextize <bug-gnu-gettext@gnu.org>
16811
16812 * Makefile.am (SUBDIRS): Remove intl.
16813 (EXTRA_DIST): Add config/config.rpath.
16814
16815 2002-05-03 Akim Demaille <akim@epita.fr>
16816
16817 * data/bison.simple (m4_if): Don't output empty enums.
16818 And actually, output valid enum definitions :(.
16819
16820 2002-05-03 Akim Demaille <akim@epita.fr>
16821
16822 * configure.bat: Remove, completely obsolete.
16823 * Makefile.am (EXTRA_DIST): Adjust.
16824 Don't distribute config.rpath...
16825 * config/Makefile.am (EXTRA_DIST): Do it.
16826
16827 2002-05-03 Akim Demaille <akim@epita.fr>
16828
16829 * configure.in (GETTEXT_VERSION): New.
16830 Suggested by Bruno Haible for the forthcoming Gettext 0.10.3.
16831
16832 2002-05-03 Akim Demaille <akim@epita.fr>
16833
16834 * data/bison.simple (b4_token_enum): New.
16835 (b4_token_defines): Use it to output tokens both as #define and
16836 enums.
16837 Suggested by Paul Eggert.
16838 * src/output.c (token_definitions_output): Don't output spurious
16839 white spaces.
16840
16841 2002-05-03 Akim Demaille <akim@epita.fr>
16842
16843 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
16844
16845 2002-05-02 Robert Anisko <robert@lrde.epita.fr>
16846
16847 * data/bison.c++: Adapt expansion of $s and @s to the C++ parser.
16848 Update the stack class, give a try to deque as the default container.
16849
16850 2002-05-02 Akim Demaille <akim@epita.fr>
16851
16852 * data/bison.simple (yyparse): Do not implement @$ = @1.
16853 (YYLLOC_DEFAULT): Adjust to do it.
16854 * doc/bison.texinfo (Location Default Action): Fix.
16855
16856 2002-05-02 Akim Demaille <akim@epita.fr>
16857
16858 * src/reader.c (parse_braces): Merge into...
16859 (parse_action): this.
16860
16861 2002-05-02 Akim Demaille <akim@epita.fr>
16862
16863 * configure.in (ALL_LINGUAS): Remove.
16864 * po/LINGUAS, hr.po: New.
16865
16866 2002-05-02 Akim Demaille <akim@epita.fr>
16867
16868 Remove the so called hairy (semantic) parsers.
16869
16870 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove.
16871 * src/gram.h, src/gram.c (semantic_parser): Remove.
16872 (rule_t): Remove the guard and guard_line members.
16873 * src/lex.h (token_t): remove tok_guard.
16874 * src/options.c (option_table): Remove %guard and %semantic_parser
16875 support.
16876 * src/output.c, src/output.h (guards_output): Remove.
16877 (prepare): Adjust.
16878 (token_definitions_output): Don't output the `T'
16879 tokens (???).
16880 (output_skeleton): Don't output the guards.
16881 * src/files.c, src/files.c (attrsfile): Remove.
16882 * src/reader.c (symbol_list): Remove the guard and guard_line
16883 members.
16884 Adjust dependencies.
16885 (parse_guard): Remove.
16886 * data/bison.hairy: Remove.
16887 * doc/bison.texinfo (Environment Variables): Remove occurrences of
16888 BISON_HAIRY.
16889
16890 2002-05-02 Akim Demaille <akim@epita.fr>
16891
16892 * src/reader.c (copy_at, copy_dollarm parse_braces, parse_action)
16893 (parse_guard): Rename the formal argument `stack_offset' as
16894 `rule_length', which is more readable.
16895 Adjust callers.
16896 (copy_at, copy_dollar): Instead of outputting the hard coded
16897 values of $$, $n and so forth, output invocation to b4_lhs_value,
16898 b4_lhs_location, b4_rhs_value, and b4_rhs_location.
16899 Note: this patch partially drops `semantic-parser' support: it
16900 always does `rule_length - n', where semantic parsers ought to
16901 always use `-n'.
16902 * data/bison.simple, data/bison.c++ (b4_lhs_value)
16903 (b4_lhs_location, b4_rhs_value, and b4_rhs_location: New.
16904
16905 2002-05-02 Akim Demaille <akim@epita.fr>
16906
16907 * configure.in (AC_INIT): Bump to 1.49b.
16908 (AM_INIT_AUTOMAKE): Short invocation.
16909
16910 2002-05-02 Akim Demaille <akim@epita.fr>
16911
16912 Version 1.49a.
16913
16914 2002-05-01 Akim Demaille <akim@epita.fr>
16915
16916 * src/skeleton.h: Remove.
16917
16918 2002-05-01 Akim Demaille <akim@epita.fr>
16919
16920 * src/skeleton.h: Fix the #endif.
16921 Reported by Magnus Fromreide.
16922
16923 2002-04-26 Paul Eggert <eggert@twinsun.com>
16924
16925 * data/bison.simple (YYSTYPE_IS_TRIVIAL, YYLTYPE_IS_TRIVIAL):
16926 Define if we define YYSTYPE and YYLTYPE, respectively.
16927 (YYCOPY): Fix [] quoting problem in the non-GCC case.
16928
16929 2002-04-25 Robert Anisko <robert@lrde.epita.fr>
16930
16931 * src/scan-skel.l: Postprocess quadrigraphs.
16932
16933 * src/reader.c (copy_character): New function, used to output
16934 single characters while replacing `[' and `]' with quadrigraphs, to
16935 avoid troubles with M4 quotes.
16936 (copy_comment): Output characters with copy_character.
16937 (read_additionnal_code): Likewise.
16938 (copy_string2): Likewise.
16939 (copy_definition): Likewise.
16940
16941 * tests/calc.at: Exercise M4 quoting.
16942
16943 2002-04-25 Akim Demaille <akim@epita.fr>
16944
16945 * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
16946 between `!' and the command.
16947 Reported by Paul Eggert.
16948
16949 2002-04-24 Robert Anisko <robert@lrde.epita.fr>
16950
16951 * tests/calc.at: Exercise prologue splitting.
16952
16953 * data/bison.simple, data/bison.c++: Use `b4_pre_prologue' and
16954 `b4_post_prologue' instead of `b4_prologue'.
16955
16956 * src/output.c (prepare): Add the `pre_prologue' and `post_prologue'
16957 muscles.
16958 (output): Free pre_prologue_obstack and post_prologue_obstack.
16959 * src/files.h, src/files.c (attrs_obstack): Remove.
16960 (pre_prologue_obstack, post_prologue_obstack): New.
16961 * src/reader.c (copy_definition): Add a parameter to specify the
16962 obstack to fill, instead of using attrs_obstack unconditionally.
16963 (read_declarations): Pass pre_prologue_obstack to copy_definition if
16964 `%union' has not yet been seen, pass post_prologue_obstack otherwise.
16965
16966 2002-04-23 Paul Eggert <eggert@twinsun.com>
16967
16968 * data/bison.simple: Remove unnecessary commentary and white
16969 space differences from 1_29-branch.
16970 Depend on YYERROR_VERBOSE, not defined (YYERROR_VERBOSE).
16971
16972 (union yyalloc, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYCOPY,
16973 YYSTACK_RELOCATE): Do not define if yyoverflow is defined, or
16974 if this is a C++ parser and YYSTYPE or YYLTYPE has nontrivial
16975 constructors or destructors.
16976
16977 (yyparse) [! defined YYSTACK_RELOCATE]: Do not relocate the stack.
16978
16979 2002-04-23 Akim Demaille <akim@epita.fr>
16980
16981 * tests/sets.at (AT_EXTRACT_SETS): Don't use 8 char long sed labels.
16982 * tests/synclines.at (AT_TEST_SYNCLINE): Be robust to GCC's
16983 location with columns.
16984 * tests/conflicts.at (%nonassoc and eof): Don't use `error.h'.
16985 All reported by Paul Eggert.
16986
16987 2002-04-22 Akim Demaille <akim@epita.fr>
16988
16989 * src/reduce.c (dump_grammar): Move to...
16990 * src/gram.h, src/gram.c (grammar_dump): here.
16991 Be sure to separate long item numbers.
16992 Don't read the members of a rule's prec if its nil.
16993
16994 2002-04-22 Akim Demaille <akim@epita.fr>
16995
16996 * src/output.c (table_size, table_grow): New.
16997 (MAXTABLE): Remove, replace uses with table_size.
16998 (pack_vector): Instead of dying when the table is too big, grow it.
16999
17000 2002-04-22 Akim Demaille <akim@epita.fr>
17001
17002 * data/bison.simple (yyr1): Its type is that of a token number.
17003 * data/bison.c++ (r1_): Likewise.
17004 * tests/regression.at (Web2c Actions): Adjust.
17005
17006 2002-04-22 Akim Demaille <akim@epita.fr>
17007
17008 * src/reader.c (token_translations_init): 256 is now the default
17009 value for the error token, i.e., it will be assigned another
17010 number if the user assigned 256 to one of her tokens.
17011 (reader): Don't force 256 to error.
17012 * doc/bison.texinfo (Symbols): Adjust.
17013 * tests/torture.at (AT_DATA_HORIZONTAL_GRAMMAR)
17014 (AT_DATA_TRIANGULAR_GRAMMAR): Number the tokens as 1, 2, 3
17015 etc. instead of 10, 20, 30 (which was used to `jump' over error
17016 (256) and undefined (2)).
17017
17018 2002-04-22 Akim Demaille <akim@epita.fr>
17019
17020 Propagate more token_number_t.
17021
17022 * src/gram.h (token_number_as_item_number)
17023 (item_number_as_token_number): New.
17024 * src/output.c (GENERATE_OUTPUT_TABLE): New.
17025 Use it to create output_item_number_table and
17026 output_token_number_table.
17027 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
17028 * src/lex.c, src/nullable.c, src/output.c, src/print.c,
17029 * src/print_graph.c, src/reader.c, src/reduce.c, src/state.h,
17030 * src/symtab.c, src/symtab.h: Use token_number_t instead of shorts.
17031
17032 2002-04-22 Akim Demaille <akim@epita.fr>
17033
17034 * src/output.h, src/output.c (get_lines_number): Remove.
17035
17036 2002-04-19 Akim Demaille <akim@epita.fr>
17037
17038 * doc/bison.texinfo (Actions): Make clear that `|' is not the same
17039 as Lex/Flex'.
17040 (Debugging): More details about enabling the debugging features.
17041 (Table of Symbols): Describe $$, $n, @$, and @n.
17042 Suggested by Tim Josling.
17043
17044 2002-04-19 Akim Demaille <akim@epita.fr>
17045
17046 * doc/bison.texinfo: Remove the uses of the obsolete @refill.
17047
17048 2002-04-10 Akim Demaille <akim@epita.fr>
17049
17050 * src/system.h: Rely on HAVE_LIMITS_H.
17051 Suggested by Paul Eggert.
17052
17053 2002-04-09 Akim Demaille <akim@epita.fr>
17054
17055 * tests/calc.at (_AT_CHECK_CALC_ERROR): Receive as argument the
17056 full stderr, and strip it according to the bison options, instead
17057 of composing the error message from different bits.
17058 This makes it easier to check for several error messages.
17059 Adjust all the invocations.
17060 Add an invocation exercising the error token.
17061 Add an invocation demonstrating a stupid error message.
17062 (_AT_DATA_CALC_Y): Follow the GCS: initial column is 1, not 0.
17063 Adjust the tests.
17064 Error message are for stderr, not stdout.
17065
17066 2002-04-09 Akim Demaille <akim@epita.fr>
17067
17068 * src/gram.h, src/gram.c (error_token_number): Remove, use
17069 errtoken->number.
17070 * src/reader.c (reader): Don't specify the user token number (2)
17071 for $undefined, as it uselessly prevents using it.
17072 * src/gram.h (token_number_t): Move to...
17073 * src/symtab.h: here.
17074 (state_t.number): Is a token_number_t.
17075 * src/print.c, src/reader.c: Use undeftoken->number instead of
17076 hard coded 2.
17077 (Even though this 2 is not the same as above: the number of the
17078 undeftoken remains being 2, it is its user token number which
17079 might not be 2).
17080 * src/output.c (prepare_tokens): Rename the `maxtok' muscle with
17081 `user_token_number_max'.
17082 Output `undef_token_number'.
17083 * data/bison.simple, data/bison.c++: Use them.
17084 Be sure to map invalid yylex return values to
17085 `undef_token_number'. This saves us from gratuitous SEGV.
17086
17087 * tests/conflicts.at (Solved SR Conflicts)
17088 (Unresolved SR Conflicts): Adjust.
17089 * tests/regression.at (Web2c Actions): Adjust.
17090
17091 2002-04-08 Akim Demaille <akim@epita.fr>
17092
17093 * data/bison.c++: s/b4_item_number_max/b4_rhs_number_max/.
17094 Adding #line.
17095 Remove the duplicate `typedefs'.
17096 (RhsNumberType): Fix the declaration and various other typos.
17097 Use __ofile__.
17098 * data/bison.simple: Use __ofile__.
17099 * src/scan-skel.l: Handle __ofile__.
17100
17101 2002-04-08 Akim Demaille <akim@epita.fr>
17102
17103 * src/gram.h (item_number_t): New, the type of item numbers in
17104 RITEM. Note that it must be able to code symbol numbers as
17105 positive number, and the negation of rule numbers as negative
17106 numbers.
17107 Adjust all dependencies (pretty many).
17108 * src/reduce.c (rule): Remove this `short *' pointer: use
17109 item_number_t.
17110 * src/system.h (MINSHORT, MAXSHORT): Remove.
17111 Include `limits.h'.
17112 Adjust dependencies to using SHRT_MAX and SHRT_MIN.
17113 (shortcpy): Remove.
17114 (MAXTABLE): Move to...
17115 * src/output.c (MAXTABLE): here.
17116 (prepare_rules): Use output_int_table to output rhs.
17117 * data/bison.simple, data/bison.c++: Adjust.
17118 * tests/torture.at (Big triangle): Move the limit from 254 to
17119 500.
17120 * tests/regression.at (Web2c Actions): Ajust.
17121
17122 Trying with bigger grammars shows various phenomena: at 3000 (28Mb
17123 of grammar file) bison is killed by my system, at 2000 (12Mb) bison
17124 passes, but produces negative #line number, once fixed, GCC is
17125 killed while compiling 14Mb, at 1500 (6.7 Mb of grammar, 8.2Mb of
17126 C), it passes.
17127 * src/state.h (state_h): Code input lines on ints, not shorts.
17128
17129 2002-04-08 Akim Demaille <akim@epita.fr>
17130
17131 * src/reduce.c (reduce_grammar): First reduce the nonterminals,
17132 and then the grammar.
17133
17134 2002-04-08 Akim Demaille <akim@epita.fr>
17135
17136 * src/system.h: No longer using strndup.
17137
17138 2002-04-07 Akim Demaille <akim@epita.fr>
17139
17140 * src/muscle_tab.h (MUSCLE_INSERT_LONG_INT): New.
17141 * src/output.c (output_table_data): Return the longest number.
17142 (prepare_tokens): Output `token_number_max').
17143 * data/bison.simple, data/bison.c++ (b4_sint_type, b4_uint_type):
17144 New.
17145 Use them to define yy_token_number_type/TokenNumberType.
17146 Use this type for yytranslate.
17147 * tests/torture.at (Big triangle): Push the limit from 124 to
17148 253.
17149 * tests/regression.at (Web2c Actions): Adjust.
17150
17151 2002-04-07 Akim Demaille <akim@epita.fr>
17152
17153 * tests/torture.at (Big triangle): New.
17154 (GNU AWK Grammar, GNU Cim Grammar): Move to...
17155 * tests/existing.at: here.
17156
17157 2002-04-07 Akim Demaille <akim@epita.fr>
17158
17159 * src/gram.h, src/gram.c (nitems): Remove, it is an alias of
17160 nritems.
17161 Adjust dependencies.
17162
17163 2002-04-07 Akim Demaille <akim@epita.fr>
17164
17165 * src/reader.c: Normalize increments to prefix form.
17166
17167 2002-04-07 Akim Demaille <akim@epita.fr>
17168
17169 * src/reader.c, symtab.c: Remove debugging code.
17170
17171 2002-04-07 Akim Demaille <akim@epita.fr>
17172
17173 Rename all the `bucket's as `symbol_t'.
17174
17175 * src/gram.c, src/gram.h, src/lex.c, src/lex.h, src/output.c,
17176 * src/reader.c, src/reader.h, src/reduce.c, src/state.h,
17177 * src/symtab.c, src/symtab.h (bucket): Rename as...
17178 (symbol_t): this.
17179 (symbol_list_new, bucket_check_defined, bucket_make_alias)
17180 (bucket_check_alias_consistence, bucket_pack, bucket_translation)
17181 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
17182 (buckets_new, buckets_free, buckets_do): Rename as...
17183 (symbol_list_new, symbol_check_defined, symbol_make_alias)
17184 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
17185 (symbol_new, symbol_free, hash_compare_symbol_t, hash_symbol_t)
17186 (symbols_new, symbols_free, symbols_do): these.
17187
17188 2002-04-07 Akim Demaille <akim@epita.fr>
17189
17190 Use lib/hash for the symbol table.
17191
17192 * src/gram.c (ntokens): Initialize to 1, to reserve a slot for
17193 EOF.
17194 * src/lex.c (lex): Set the `number' member of new terminals.
17195 * src/reader.c (bucket_check_defined, bucket_make_alias)
17196 (bucket_check_alias_consistence, bucket_translation): New.
17197 (reader, grammar_free, readgram, token_translations_init)
17198 (packsymbols): Adjust.
17199 (reader): Number the predefined tokens.
17200 * src/reduce.c (inaccessable_symbols): Just use hard coded numbers
17201 for predefined tokens.
17202 * src/symtab.h (bucket): Remove all the hash table related
17203 members.
17204 * src/symtab.c (symtab): Replace by...
17205 (bucket_table): this.
17206 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
17207 (buckets_new, buckets_do): New.
17208
17209 2002-04-07 Akim Demaille <akim@epita.fr>
17210
17211 * src/gram.c (nitems, nrules, nsyms, ntokens, nvars, nritems)
17212 (start_symbol, max_user_token_number, semantic_parser)
17213 (error_token_number): Initialize.
17214 * src/reader.c (grammar, start_flag, startval, typed, lastprec):
17215 Initialize.
17216 (reader): Don't.
17217 (errtoken, eoftoken, undeftoken, axiom): Extern.
17218
17219 2002-04-07 Akim Demaille <akim@epita.fr>
17220
17221 * src/gram.h (rule_s): prec and precsym are now pointers
17222 to the bucket giving the priority/associativity.
17223 Member `associativity' removed: useless.
17224 * src/reduce.c, src/conflicts.c: Adjust.
17225
17226 2002-04-07 Akim Demaille <akim@epita.fr>
17227
17228 * src/lalr.c, src/LR0.c, src/closure.c, src/gram.c, src/reduce.c:
17229 Properly escape the symbols' TAG when outputting them.
17230
17231 2002-04-07 Akim Demaille <akim@epita.fr>
17232
17233 * src/lalr.h (LA): Is a bitsetv, not bitset*.
17234
17235 2002-04-07 Akim Demaille <akim@epita.fr>
17236
17237 * src/lalr.h, src/lalr.c (LAruleno): Replace with...
17238 (LArule): this, which is an array to rule_t*.
17239 * src/print.c, src/conflicts.c: Adjust.
17240
17241 2002-04-07 Akim Demaille <akim@epita.fr>
17242
17243 * src/gram.h (rule_t): Rename `number' as `user_number'.
17244 `number' is a new member.
17245 Adjust dependencies.
17246 * src/reduce.c (reduce_grammar_tables): Renumber rule_t.number.
17247
17248 2002-04-07 Akim Demaille <akim@epita.fr>
17249
17250 As a result of the previous patch, it is no longer needed
17251 to reorder ritem itself.
17252
17253 * src/reduce.c (reduce_grammar_tables): Don't sort RITEM.
17254
17255 2002-04-07 Akim Demaille <akim@epita.fr>
17256
17257 Be sure never to walk through RITEMS, but use only data related to
17258 the rules themselves. RITEMS should be banished.
17259
17260 * src/output.c (output_token_translations): Rename as...
17261 (prepare_tokens): this.
17262 In addition to `translate', prepare the muscles `tname' and
17263 `toknum', which were handled by...
17264 (output_rule_data): this.
17265 Remove, and move the remainder of its outputs into...
17266 (prepare_rules): this new routines, which also merges content from
17267 (output_gram): this.
17268 (prepare_rules): Be sure never to walk through RITEMS.
17269 (output_stos): Rename as...
17270 (prepare_stos): this.
17271 (output): Always invoke prepare_states, after all, just don't use it
17272 in the output if you don't need it.
17273
17274 2002-04-07 Akim Demaille <akim@epita.fr>
17275
17276 * src/LR0.c (new_state): Display `nstates' as the name of the
17277 newly created state.
17278 Adjust to initialize first_state and last_state if needed.
17279 Be sure to distinguish the initial from the final state.
17280 (new_states): Create the itemset of the initial state, and use
17281 new_state.
17282 * src/closure.c (closure): Now that the initial state has its
17283 items properly set, there is no need for a special case when
17284 creating `ruleset'.
17285
17286 As a result, now the rule 0, reducing to $axiom, is visible in the
17287 outputs. Adjust the test suite.
17288
17289 * tests/conflicts.at (Solved SR Conflicts)
17290 (Unresolved SR Conflicts): Adjust.
17291 * tests/regression.at (Web2c Report, Rule Line Numbers): Idem.
17292 * tests/conflicts.at (S/R in initial): New.
17293
17294 2002-04-07 Akim Demaille <akim@epita.fr>
17295
17296 * src/LR0.c (allocate_itemsets): Don't loop over ritem: loop over
17297 the RHS of the rules.
17298 * src/output.c (output_gram): Likewise.
17299
17300 2002-04-07 Akim Demaille <akim@epita.fr>
17301
17302 * src/gram.h (rule_t): `lhs' is now a pointer to the symbol's
17303 bucket.
17304 Adjust all dependencies.
17305 * src/reduce.c (nonterminals_reduce): Don't forget to renumber the
17306 `number' of the buckets too.
17307 * src/gram.h: Include `symtab.h'.
17308 (associativity): Move to...
17309 * src/symtab.h: here.
17310 No longer include `gram.h'.
17311
17312 2002-04-07 Akim Demaille <akim@epita.fr>
17313
17314 * src/gram.h, src/gram.c (rules_rhs_length): New.
17315 (ritem_longest_rhs): Use it.
17316 * src/gram.h (rule_t): `number' is a new member.
17317 * src/reader.c (packgram): Set it.
17318 * src/reduce.c (reduce_grammar_tables): Move the useless rules at
17319 the end of `rules', and count them out of `nrules'.
17320 (reduce_output, dump_grammar): Adjust.
17321 * src/print.c (print_grammar): It is no longer needed to check for
17322 the usefulness of a rule, as useless rules are beyond `nrules + 1'.
17323 * tests/reduce.at (Reduced Automaton): New test.
17324
17325 2002-04-07 Akim Demaille <akim@epita.fr>
17326
17327 * src/reduce.c (inaccessable_symbols): Fix a buglet: because of a
17328 lacking `+ 1' to nrules, Bison reported as useless a token if it
17329 was used solely to set the precedence of the last rule...
17330
17331 2002-04-07 Akim Demaille <akim@epita.fr>
17332
17333 * data/bison.c++, data/bison.simple: Don't output the current file
17334 name in #line, to avoid useless diffs between two identical
17335 outputs under different names.
17336
17337 2002-04-07 Akim Demaille <akim@epita.fr>
17338
17339 * src/closure.c, src/print.c, src/reader.c, src/reduce.c:
17340 Normalize loops to using `< nrules + 1', not `<= nrules'.
17341
17342 2002-04-07 Akim Demaille <akim@epita.fr>
17343
17344 * TODO: Update.
17345
17346 2002-04-07 Akim Demaille <akim@epita.fr>
17347
17348 * src/output.c, src/reader.c, src/symtab.c, src/symtab.h: Rename
17349 bucket.value as bucket.number.
17350
17351 2002-04-07 Akim Demaille <akim@epita.fr>
17352
17353 * src/closure.c, src/derives.c, src/gram.h, src/lalr.c,
17354 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
17355 * src/reader.c, src/reduce.c: Let rule_t.rhs point directly to the
17356 RHS, instead of being an index in RITEMS.
17357
17358 2002-04-04 Paul Eggert <eggert@twinsun.com>
17359
17360 * doc/bison.texinfo: Update copyright date.
17361 (Rpcalc Lexer, Symbols, Token Decl): Don't assume ASCII.
17362 (Symbols): Warn about running Bison in one character set,
17363 but compiling and/or running in an incompatible one.
17364 Warn about character code 256, too.
17365
17366 2002-04-03 Paul Eggert <eggert@twinsun.com>
17367
17368 * src/bison.data (YYSTACK_ALLOC): Depend on whether
17369 YYERROR_VERBOSE is nonzero, not whether it is defined.
17370
17371 Merge changes from bison-1_29-branch.
17372
17373 2002-03-20 Paul Eggert <eggert@twinsun.com>
17374
17375 Merge fixes from Debian bison_1.34-1.diff.
17376
17377 * configure.in (AC_PREREQ): 2.53.
17378
17379 2002-03-20 Akim Demaille <akim@epita.fr>
17380
17381 * src/conflicts.c (log_resolution): Argument `resolution' is const.
17382
17383 2002-03-19 Paul Eggert <eggert@twinsun.com>
17384
17385 * src/bison.simple (YYCOPY): New macro.
17386 (YYSTACK_RELOCATE): Use it.
17387 Remove Type arg; no longer needed. All callers changed.
17388 (yymemcpy): Remove; no longer needed.
17389
17390 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
17391 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
17392
17393 2002-03-19 Akim Demaille <akim@epita.fr>
17394
17395 Test and fix the #line outputs.
17396
17397 * tests/atlocal.at (GCC): New.
17398 * tests/synclines.at (AT_TEST_SYNCLINE): New macro.
17399 (Prologue synch line, %union synch line, Postprologue synch line)
17400 (Action synch line, Epilogue synch line): New tests.
17401 * src/reader.c (parse_union_decl): Define the muscle stype_line.
17402 * data/bison.simple, data/bison.c++: Use it.
17403
17404 2002-03-19 Akim Demaille <akim@epita.fr>
17405
17406 * tests/regression.at (%nonassoc and eof, Unresolved SR Conflicts)
17407 (Solved SR Conflicts, %expect not enough, %expect right)
17408 (%expect too much): Move to...
17409 * tests/conflicts.at: this new file.
17410
17411 2002-03-19 Akim Demaille <akim@epita.fr>
17412
17413 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
17414 * data/bison.simple, data/bison.c++: Handle the `#define' part, so
17415 that we can move to enums for instance.
17416 * src/output.c (token_definitions_output): Output a list of
17417 `token-name, token-number' instead of the #define.
17418 (output_skeleton): Name this list `b4_tokens', not `b4_tokendefs'.
17419
17420 2002-03-14 Akim Demaille <akim@epita.fr>
17421
17422 Use Gettext 0.11.1.
17423
17424 2002-03-09 Robert Anisko <robert@lrde.epita.fr>
17425
17426 * data/bison.c++: Make the user able to add members to the generated
17427 parser by subclassing.
17428
17429 2002-03-05 Robert Anisko <robert@lrde.epita.fr>
17430
17431 * src/reader.c (read_additionnal_code): `c' should be an integer, not
17432 a character.
17433 Reported by Nicolas Tisserand and Nicolas Burrus.
17434
17435 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
17436
17437 * src/reader.c: Warn about lacking semi-colons, do not complain.
17438
17439 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
17440
17441 * data/bison.c++: Remove a debug line.
17442
17443 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
17444
17445 * data/bison.c++: Unmerge value as yylval and value as yyval. Unmerge
17446 location as yylloc and location as yyloc. Use YYLLOC_DEFAULT, and
17447 provide a default implementation.
17448
17449 2002-03-04 Akim Demaille <akim@epita.fr>
17450
17451 * tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
17452 * tests/output.at (AT_CHECK_OUTPUT): Likewise.
17453 * tests/headers.at (AT_TEST_CPP_GUARD_H): Ditto.
17454 * tests/semantic.at (Parsing Guards): Similarly.
17455 * src/reader.at (readgram): Complain if the last rule is not ended
17456 with a semi-colon.
17457
17458 2002-03-04 Akim Demaille <akim@epita.fr>
17459
17460 * src/warshall.h, src/warshall.c (bitmatrix_print): Move to...
17461 * src/closure.c: here.
17462 (set_firsts): Use bitsetv_reflexive_transitive_closure instead of
17463 RTC.
17464 * src/warshall.h, src/warshall.c: Remove.
17465 * tests/sets.at (Broken Closure): Adjust.
17466
17467 2002-03-04 Akim Demaille <akim@epita.fr>
17468
17469 * src/output.c (output_skeleton): tempdir is const.
17470 bytes_read is unused.
17471
17472 2002-03-04 Akim Demaille <akim@epita.fr>
17473
17474 * lib/bbitset.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
17475 * lib/bitsetv.h, lib/ebitset.c, lib/lbitset.c, lib/sbitset.c:
17476 Update.
17477 From Michael Hayes.
17478
17479 2002-03-04 Akim Demaille <akim@epita.fr>
17480
17481 * src/closure.c (closure): `r' is unused.
17482
17483 2002-03-04 Akim Demaille <akim@epita.fr>
17484
17485 * tests/sets.at (Broken Closure): Add the ending `;'.
17486 * src/reader.at (readgram): Complain if a rule is not ended with a
17487 semi-colon.
17488
17489 2002-03-04 Akim Demaille <akim@epita.fr>
17490
17491 * src/conflicts.c (set_conflicts): Use bitset_disjoint_p.
17492 (count_sr_conflicts): Use bitset_count.
17493 * src/reduce.c (inaccessable_symbols): Ditto.
17494 (bits_size): Remove.
17495 * src/warshall.h, src/warshall.c: Convert to bitsetv.
17496
17497 2002-03-04 Akim Demaille <akim@epita.fr>
17498
17499 * src/closure.c, src/conflicts.c, src/lalr.c, src/print.c,
17500 * src/reduce.c: Remove the `bitset_zero's following the
17501 `bitset_create's, as now it is performed by the latter.
17502
17503 2002-03-04 Akim Demaille <akim@epita.fr>
17504
17505 * lib/bitset.c, lib/bitset.h, lib/bitsetv.c, lib/bitsetv.h,
17506 * lib/ebitset.c, lib/ebitset.h, lib/lbitset.c, lib/lbitset.h,
17507 * lib/sbitset.c, lib/sbitset.h, lib/bbitset.h: Update from the
17508 latest sources from Michael.
17509
17510 2002-03-04 Akim Demaille <akim@epita.fr>
17511
17512 * src/output.c (output): Don't free the grammar.
17513 * src/reader.c (grammar_free): New.
17514 * src/main.c (main): Call it and don't free symtab here.
17515
17516 2002-03-04 Akim Demaille <akim@epita.fr>
17517
17518 * src/lex.c (parse_percent_token): Be sure to 0-end token_buffer
17519 before returning.
17520 Reported by Benoit Perrot.
17521
17522 2002-03-04 Akim Demaille <akim@epita.fr>
17523
17524 Use bitset operations when possible, not loops over bits.
17525
17526 * src/conflicts.c (set_conflicts, count_sr_conflicts): Use
17527 bitset_or.
17528 * src/print.c (print_reductions): Use bitset_and, bitset_andn.
17529 * src/reduce.c (useless_nonterminals): Formatting changes.
17530 * src/warshall.c (TC): Use bitset_or.
17531
17532 2002-03-04 Akim Demaille <akim@epita.fr>
17533
17534 * src/lalr.h, src/lalr.c (tokensetsize): Remove, unused.
17535 * src/system.h (BITS_PER_WORD, WORDSIZE, SETBIT, RESETBIT, BITISSET):
17536 Ditto.
17537
17538 2002-03-04 Akim Demaille <akim@epita.fr>
17539
17540 * src/lalr.c (F): Now a bitset*.
17541 Adjust all dependencies.
17542
17543 2002-03-04 Akim Demaille <akim@epita.fr>
17544
17545 * src/conflicts.c (shiftset, lookaheadset): Now bitset.
17546 Adjust all dependencies.
17547
17548 2002-03-04 Akim Demaille <akim@epita.fr>
17549
17550 * src/L0.c, src/LR0.h (nstates): Be size_t.
17551 Adjust comparisons (signed vs unsigned).
17552 * src/conflics.c, src/lalr.c, src/lalr.h, src/output.c (LA): Now a
17553 bitset*.
17554 Adjust all dependencies.
17555
17556 2002-03-04 Akim Demaille <akim@epita.fr>
17557
17558 * src/closure.c (firsts): Now, also a bitset.
17559 Adjust all dependencies.
17560 (varsetsize): Remove, now unused.
17561 * src/warshall.h, src/warshall.c: Now work on arrays of bitsets.
17562
17563 2002-03-04 Akim Demaille <akim@epita.fr>
17564
17565 * src/print.c: Convert to use bitset.h, not hand coded iterations
17566 over ints.
17567
17568 2002-03-04 Akim Demaille <akim@epita.fr>
17569
17570 * src/reduce.c: Convert to use bitset.h, not hand coded BSet.
17571
17572 2002-03-04 Akim Demaille <akim@epita.fr>
17573
17574 * src/closure.c (ruleset): Be a bitset.
17575 (rulesetsize): Remove.
17576
17577 2002-03-04 Akim Demaille <akim@epita.fr>
17578
17579 * lib/bitset-int.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
17580 * lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/lbitset.c,
17581 * lib/lbitset.h, lib/sbitset.c, lib/sbitset.h: New.
17582 * src/closure.c (fderives): Be an array of bitsets.
17583
17584 2002-02-28 Robert Anisko <robert@lrde.epita.fr>
17585
17586 * data/bison.c++: Merge the two generated headers. Insert a copyright
17587 notice in each output file.
17588
17589 2002-02-28 Akim Demaille <akim@epita.fr>
17590
17591 * data/bison.c++: Copy the prologue of bison.simple to fetch
17592 useful M4 definitions, such as b4_header_guard.
17593
17594 2002-02-25 Akim Demaille <akim@epita.fr>
17595
17596 * src/getargs.c (version): Give the name of the authors, and use a
17597 translator friendly scheme for the bgr
17598 copyright notice.
17599
17600 2002-02-25 Akim Demaille <akim@epita.fr>
17601
17602 * src/output.c (header_output): Remove, now handled completely via
17603 M4.
17604
17605 2002-02-25 Akim Demaille <akim@epita.fr>
17606
17607 * m4/m4.m4: New, from CVS Autoconf.
17608 * configure.in: Invoke it.
17609 * src/output.c (output_skeleton): Use its result instead of the
17610 hard coded name.
17611
17612 2002-02-25 Akim Demaille <akim@epita.fr>
17613
17614 * lib/tempname.c, lib/mkstemp.c, m4/mkstemp.m4: New, stolen from
17615 Fileutils 4.1.5.
17616 * configure.in: Invoke UTILS_FUNC_MKSTEMP.
17617 * src/output.c (output_skeleton): Use mkstemp to create a real
17618 temporary file.
17619 Move the filling of `skeleton' and its muscle to...
17620 (prepare): here.
17621 (output): Move the definition of the prologue muscle to...
17622 (prepare): here.
17623 * src/system.h (DEFAULT_TMPDIR): New.
17624
17625 2002-02-14 Paul Eggert <eggert@twinsun.com>
17626
17627 Remove the support for C++ namespace cleanliness; it was
17628 causing more problems than it was curing, since it didn't work
17629 properly on some nonstandard C++ compilers. This can wait
17630 for a proper C++ parser.
17631
17632 * NEWS: Document this.
17633 * doc/bison.texinfo (Bison Parser, Debugging): Remove special mention
17634 of C++, as it's treated like C now.
17635 * src/bison.simple (YYSTD): Remove.
17636 (YYSIZE_T, YYFPRINTF, YYPARSE_PARAM_ARG, YYPARSE_PARAM_DECL):
17637 Treat C++ just like Standard C instead of trying to support
17638 namespace cleanliness.
17639
17640 2002-02-14 Akim Demaille <akim@epita.fr>
17641
17642 * tests/regression.at (else): Adjust to Andreas' change.
17643
17644 2002-02-14 Akim Demaille <akim@epita.fr>
17645
17646 * lib/Makefile.am (EXTRA_DIST): Ship strnlen.c.
17647
17648 2002-02-13 Andreas Schwab <schwab@suse.de>
17649
17650 * src/output.c (output_rule_data): Don't output NULL, it might
17651 not be defined yet.
17652
17653 2002-02-11 Robert Anisko <robert@lrde.epita.fr>
17654
17655 * data/bison.c++ (YYDEBUG, YYERROR_VERBOSE): After the prologue.
17656 (Copyright notice): Update.
17657
17658 2002-02-11 Akim Demaille <akim@epita.fr>
17659
17660 * tests/regression.at (%nonassoc and eof): Don't include
17661 nonportable headers.
17662
17663 2002-02-08 Robert Anisko <robert@lrde.epita.fr>
17664
17665 * data/bison.c++: Correct error recovery. Make the user able to
17666 initialize the starting location.
17667
17668 2002-02-07 Akim Demaille <akim@epita.fr>
17669
17670 * tests/input.at: New.
17671
17672 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
17673
17674 * data/bison.c++: Replace some direct m4 expansions by constants. Be
17675 more consistent when naming methods and variables. Put preprocessor
17676 directives around tables only needed for debugging.
17677
17678 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
17679
17680 * data/bison.c++ (yy::b4_name::print_): New method, replaces yyprint in
17681 C++ parsers.
17682 (yy::b4_name::parse): Use print_.
17683
17684 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
17685
17686 * data/bison.c++ (yy::b4_name::parse): Error recovery is back.
17687
17688 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
17689
17690 * data/bison.c++ (yy::b4_name::error_): New method, replaces yyerror in
17691 C++ parsers.
17692 (yy::b4_name::parse): Build verbose error messages, and use error_.
17693
17694 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
17695
17696 * data/bison.c++: Fix m4 quoting in comments.
17697
17698 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
17699
17700 * data/bison.c++: Adjust the parser code. Fix some muscles that were
17701 not expanded by m4.
17702
17703 2002-02-05 Akim Demaille <akim@epita.fr>
17704
17705 * data/bison.c++: Adjust to the M4 back end.
17706 More is certainly needed.
17707
17708 2002-02-05 Akim Demaille <akim@epita.fr>
17709
17710 Give a try to M4 as a back end.
17711
17712 * lib/readpipe.c: New, from wdiff.
17713 * src/Makefile.am (DEFS): Define PKGDATADIR, not BISON_SIMPLE and
17714 BISON_HAIRY.
17715 * src/system.h (BISON_HAIRY, BISON_SIMPLE): Remove the DOS and VMS
17716 specific values. Now it is m4 that performs the lookup.
17717 * src/parse-skel.y: Remove.
17718 * src/muscle_tab.c, src/muscle_tab.h (muscles_m4_output): New.
17719 * src/output.c (actions_output, guards_output)
17720 (token_definitions_output): No longer keeps track of the output
17721 line number, hence remove the second argument.
17722 (guards_output): Check against the guard member of a rule, not the
17723 action member.
17724 Adjust callers.
17725 (output_skeleton): Don't look for the skeleton location, let m4 do
17726 that.
17727 Create `/tmp/muscles.m4'. This is temporary, a proper temporary
17728 file will be used.
17729 Invoke `m4' on m4sugar.m4, muscles.m4, and the skeleton.
17730 (prepare): Given that for the time being changesyntax is not
17731 usable in M4, rename the muscles using `-' to `_'.
17732 Define `defines_flag', `output_parser_name' and `output_header_name'.
17733 * src/output.h (actions_output, guards_output)
17734 (token_definitions_output): Adjust prototypes.
17735 * src/scan-skel.l: Instead of scanning the skeletons, it now
17736 processes the output of m4: `__oline__' and `#output'.
17737 * data/bison.simple: Adjust to be used by M4(sugar).
17738 * tests/Makefile.am: Use check_SCRIPTS to make sure `bison' is up
17739 to date.
17740 * tests/bison.in: Use the secrete envvar `BISON_PKGDATADIR'
17741 instead of the dead `BISON_SIMPLE' and `BISON_HAIRY'.
17742 * data/m4sugar/m4sugar.m4, data/m4sugar/version.m4: New,
17743 shamelessly stolen from CVS Autoconf.
17744
17745 2002-02-05 Akim Demaille <akim@epita.fr>
17746
17747 * lib/hash.c, lib/hash.h: Replace with Fileutils 4.1's version.
17748 * configure.in: Check for the declarations of free and malloc.
17749 * src/muscle_tab.c: Adjust.
17750
17751 2002-02-05 Akim Demaille <akim@epita.fr>
17752
17753 * src/muscle_tab.c (muscle_init): Don't default to NULL muscle
17754 which have no values.
17755
17756 2002-02-05 Akim Demaille <akim@epita.fr>
17757
17758 * src/bison.simple, src/bison.hairy, src/bison.c++: Move to...
17759 * data/: here.
17760
17761 2002-01-29 Paul Eggert <eggert@twinsun.com>
17762
17763 * src/bison.simple (YYSIZE_T): Do not define merely because
17764 YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
17765 On some platforms, <alloca.h> does not declare YYSTD (size_t).
17766
17767 2002-01-27 Akim Demaille <akim@epita.fr>
17768
17769 Fix `%nonassoc and eof'.
17770
17771 * src/state.c (errs_dup): Aaaah! The failure was due to bytes
17772 which were not properly copied! Replace
17773 memcpy (res->errs, src->errs, src->nerrs);
17774 with
17775 memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
17776 !!!
17777 * tests/regression.at (%nonassoc and eof): Adjust to newest
17778 Autotest: `.' is not in the PATH.
17779
17780 2002-01-27 Akim Demaille <akim@epita.fr>
17781
17782 * tests/sets.at (AT_EXTRACT_SETS): New.
17783 (Nullable): Use it.
17784 (Firsts): New.
17785
17786 2002-01-26 Akim Demaille <akim@epita.fr>
17787
17788 * tests/actions.at, tests/calc.at, tests/headers.at,
17789 * tests/torture.at: Adjust to the newest Autotest which no longer
17790 forces `.' in the PATH.
17791
17792 2002-01-25 Akim Demaille <akim@epita.fr>
17793
17794 * tests/regression.at (%nonassoc and eof): New.
17795 Suggested by Robert Anisko.
17796
17797 2002-01-24 Akim Demaille <akim@epita.fr>
17798
17799 Bison dumps core when trying to complain about broken input files.
17800 Reported by Cris van Pelt.
17801
17802 * src/lex.c (parse_percent_token): Be sure to set token_buffer.
17803 * tests/regression.at (Invalid input: 1, Invalid input: 2): Merge
17804 into...
17805 (Invalid inputs): Strengthen: exercise parse_percent_token.
17806
17807 2002-01-24 Robert Anisko <robert.anisko@epita.fr>
17808
17809 * src/Makefile.am: Add bison.c++.
17810 * src/bison.c++: New skeleton.
17811
17812 2002-01-21 Paolo Bonzini <bonzini@gnu.org>
17813
17814 * po/it.po: New.
17815
17816 2002-01-21 Kees Zeelenberg <kzlg@users.sourceforge.net>
17817
17818 * src/files.c (skeleton_find) [MSDOS]: Fix cp definition.
17819
17820 2002-01-20 Marc Autret <marc@gnu.org>
17821
17822 * src/files.c (compute_output_file_names): Fix
17823
17824 2002-01-20 Marc Autret <marc@gnu.org>
17825
17826 * tests/output.at: New test.
17827 * src/files.c (compute_base_names): Don't map extensions when
17828 the YACC flag is set, use defaults.
17829 Reported by Evgeny Stambulchik.
17830
17831 2002-01-20 Marc Autret <marc@gnu.org>
17832
17833 * src/system.h: Need to define __attribute__ away for non-GCC
17834 compilers as well (i.e., the vendor C compiler).
17835 Suggested by Albert Chin-A-Young.
17836
17837 2002-01-11 Tim Van Holder <tim.van.holder@pandora.be>
17838
17839 * lib/hash.h, lib/hash.c: Renamed __P to PARAMS and used the
17840 canonical definition.
17841 * src/system.h: Use the canonical definition for PARAMS (avoids
17842 a conflict with the macro from lib/hash.h).
17843
17844 2002-01-11 Akim Demaille <akim@epita.fr>
17845
17846 * configure.in: Use AC_FUNC_STRNLEN.
17847 Fixes the failures observed on AIX 4.3 by H.Merijn Brand.
17848
17849 2002-01-09 Akim Demaille <akim@epita.fr>
17850
17851 * src/files.c, src/files.h (output_infix): New.
17852 (tab_extension): Remove.
17853 (compute_base_names): Compute the former, drop the latter.
17854 * src/output.c (prepare): Insert the muscles `output-infix', and
17855 `output-suffix'.
17856 * src/parse-skel.y (string, string.1): New.
17857 (section.header): Use it.
17858 (section.yacc): Remove.
17859 (prefix): Remove too.
17860 * src/scan-skel.l: Adjust.
17861 * src/bison.simple, src/bison.hairy: Adjust.
17862
17863 2002-01-09 Akim Demaille <akim@epita.fr>
17864
17865 * configure.in (WERROR_CFLAGS): Compute it.
17866 * src/Makefile.am (CFLAGS): Pass it.
17867 * tests/atlocal.in (CFLAGS): Idem.
17868 * src/files.c: Fix a few warnings.
17869 (get_extension_index): Remove, unused.
17870
17871 2002-01-08 Akim Demaille <akim@epita.fr>
17872
17873 * src/getargs.c (AS_FILE_NAME): New.
17874 (getargs): Use it to convert DOSish file names.
17875 * src/files.c (base_name): Rename as full_base_name to avoid
17876 clashes with `base_name ()'.
17877 (filename_split): New.
17878 (compute_base_names): N-th rewrite, using filename_split.
17879
17880 2002-01-08 Akim Demaille <akim@epita.fr>
17881
17882 * lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
17883 New, stolen from the Fileutils 4.1.
17884 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
17885 * configure.in: Check for the presence of memrchr, and of its
17886 prototype.
17887
17888 2002-01-07 Tim Van Holder <tim.van.holder@pandora.be>
17889
17890 * lib/hash.h (__P): Added definition for this macro.
17891 * src/Makefile.am: Add parse-skel.c and scan-skel.c to
17892 BUILT_SOURCES, to ensure they are generated first.
17893 * src/parse-skel.y: Use YYERROR_VERBOSE instead of
17894 %error-verbose to allow bootstrapping with bison 1.30x.
17895
17896 2002-01-06 Akim Demaille <akim@epita.fr>
17897
17898 * src/reader.c (parse_braces): Don't fetch the next char, the
17899 convention is to fetch on entry.
17900 * tests/torture.at (GNU Cim Grammar): Reintroduce their weird
17901 'switch' without a following semicolon.
17902 * tests/regression.at (braces parsing): New.
17903
17904 2002-01-06 Akim Demaille <akim@epita.fr>
17905
17906 Bison is dead wrong in its RR conflict reports.
17907
17908 * tests/torture.at (GNU Cim Grammar): New.
17909 * src/conflicts.c (count_rr_conflicts): Fix.
17910
17911 2002-01-06 Akim Demaille <akim@epita.fr>
17912
17913 Creating package.m4 from configure.ac causes too many problems.
17914
17915 * tests/Makefile.am (package.m4): Create it by hand,
17916 AC_CONFIG_TESTDIR no longer does in the most recent CVS Autoconf.
17917
17918 2002-01-06 Akim Demaille <akim@epita.fr>
17919
17920 * src/Makefile.am (bison_SOURCES): Add parse-skel.h and
17921 skeleton.h.
17922
17923 2002-01-04 Paul Eggert <eggert@twinsun.com>
17924
17925 * doc/bison.texinfo (Debugging):
17926 Remove YYSTDERR; it's no longer defined or used.
17927 Also, s/cstdio.h/cstdio/.
17928
17929 2002-01-03 Akim Demaille <akim@epita.fr>
17930
17931 * tests/bison.in, tests/atlocal.in: Adjust to CVS Autoconf.
17932
17933 2002-01-03 Akim Demaille <akim@epita.fr>
17934
17935 * src/parse-skel.y (process_skeleton): Don't bind the parser's
17936 tracing code to --trace, wait for a better --trace option, with
17937 args.
17938
17939 2002-01-03 Akim Demaille <akim@epita.fr>
17940
17941 * src/bison.simple (YYSTDERR): Remove, replace `stderr'.
17942 The ISO C++ standard is extremely clear about it: stderr is
17943 considered a macro, not a regular symbol (see table 94 `Header
17944 <cstdio> synopsis', [lib.c.files] 27.8.2 C Library files).
17945 Therefore std:: does not apply to it. It still does with fprintf.
17946 Also, s/cstdio.h/cstdio/.
17947
17948 2002-01-03 Akim Demaille <akim@epita.fr>
17949
17950 * lib/quotearg.c: Use `#include "..."' instead of `#include <...>'
17951 for non system headers.
17952
17953 2002-01-02 Akim Demaille <akim@epita.fr>
17954
17955 Equip the skeleton chain with location tracking, runtime trace,
17956 pure parser and scanner.
17957
17958 * src/parse-skel.y: Request a pure parser, locations, and prefix
17959 renaming.
17960 (%union): Having several members with the same type does not help
17961 type mismatches, simplify.
17962 (YYPRINT, yyprint): New.
17963 (yyerror): ``Rename'' (there is a #define yyerror skel_error) as...
17964 (skel_error): this.
17965 Handle locations.
17966 * src/scan-skel.l: Adjust to these changes.
17967 * src/skeleton.h (LOCATION_RESET, LOCATION_LINES, LOCATION_STEP)
17968 (LOCATION_PRINT, skel_control_t): New.
17969
17970 2001-12-30 Akim Demaille <akim@epita.fr>
17971
17972 * src/parse-skel.y: Get rid of the shift/reduce conflict:
17973 replace `gb' with BLANKS.
17974 * src/scan-skel.l: Adjust.
17975
17976 2001-12-30 Akim Demaille <akim@epita.fr>
17977
17978 * src/system.h: We don't need nor want bcopy.
17979 Throw away MS-DOS crap: we don't need getpid.
17980 * configure.in: We don't need strndup. It was even causing
17981 problems: because Flex includes the headers *before* us,
17982 _GNU_SOURCE is not defined by config.h, and therefore strndup was
17983 not visible.
17984 * lib/xstrndup.c: New.
17985 * src/scan-skel.l: Use it.
17986 Be sure to initialize yylval.muscle member when scanning a MUSCLE.
17987 * src/parse-skel.y: Use %directives instead of #defines.
17988
17989 2001-12-30 Akim Demaille <akim@epita.fr>
17990
17991 * src/skeleton.h: New.
17992 * src/output.c (output_parser, output_master_parser): Remove, dead
17993 code.
17994 * src/output.h (get_lines_number, actions_output, guards_output)
17995 (token_definitions_output): Prototype them.
17996 * src/parse-skel.y: Add the license notice.
17997 Include output.h and skeleton.h.
17998 (process_skeleton): Returns void, and takes a single parameter.
17999 * src/scan-skel.l: Add the license notice.
18000 Include skeleton.h.
18001 Don't use %option yylineno: it seems that then Flex imagines
18002 REJECT has been used, and therefore it won't reallocate its
18003 buffers (which makes no other sense to me than a bug). It results
18004 in warnings for `unused: yy_flex_realloc'.
18005
18006 2001-12-30 Robert Anisko <robert.anisko@epita.fr>
18007
18008 * src/muscle_tab.h (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
18009 (MUSCLE_INSERT_PREFIX): ...to there.
18010 * src/output.c (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
18011 (MUSCLE_INSERT_PREFIX): Move from here...
18012
18013 * src/bison.hairy: Add a section directive. Put braces around muscle
18014 names. This parser skeleton is still broken, but Bison should not
18015 choke on a bad muscle 'syntax'.
18016 * src/bison.simple: Add a section directive. Put braces around muscle
18017 names.
18018
18019 * src/files.h (strsuffix, stringappend): Add declarations.
18020 (tab_extension): Add declaration.
18021 (short_base_name): Add declaration.
18022
18023 * src/files.c (strsuffix, stringappend): No longer static. These
18024 functions are used in the skeleton parser.
18025 (tab_extension): New.
18026 (compute_base_names): Use the computations done in this function
18027 to guess if the generated parsers should have '.tab' in their
18028 names.
18029 (short_base_name): No longer static.
18030
18031 * src/output.c (output_skeleton): New.
18032 (output): Disable call to output_master_parser, and give a try to
18033 a new skeleton handling system.
18034 (guards_output, actions_output): No longer static.
18035 (token_definitions_output, get_lines_number): No longer static.
18036
18037 * configure.in: Use AM_PROG_LEX and AC_PROG_YACC.
18038
18039 * src/Makefile.am (bison_SOURCES): Add scan-skel.l and
18040 parse-skel.y.
18041
18042 * src/parse-skel.y: New file.
18043 * src/scan-skel.l: New file.
18044
18045 2001-12-29 Akim Demaille <akim@epita.fr>
18046
18047 %name-prefix is broken.
18048
18049 * src/files.c (spec_name_prefix): Initialize to NULL, not to "yy".
18050 Adjust all dependencies.
18051 * tests/headers.at (export YYLTYPE): Strengthen this test: use
18052 %name-prefix.
18053
18054 Renaming yylval but not yylloc is not consistent. Now we do.
18055
18056 * src/bison.simple: Prefix yylloc if used.
18057 * doc/bison.texinfo (Decl Summary): Document that.
18058
18059 2001-12-29 Akim Demaille <akim@epita.fr>
18060
18061 * doc/bison.texinfo: Promote `%long-directive' over
18062 `%long_directive'.
18063 Remove all references to fixed-output-files, yacc is enough.
18064
18065 2001-12-29 Akim Demaille <akim@epita.fr>
18066
18067 * src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the
18068 user prologue. These are defaults.
18069 * tests/actions.at (Mid-rule actions): Make sure the user can
18070 define YYDEBUG and YYERROR_VERBOSE.
18071
18072 2001-12-29 Akim Demaille <akim@epita.fr>
18073
18074 * src/output.c (header_output): Don't forget to export YYLTYPE and
18075 yylloc.
18076 * tests/headers.at (export YYLTYPE): New, make sure it does.
18077 * tests/regression.at (%union and --defines, Invalid CPP headers):
18078 Move to...
18079 * tests/headers.at: here.
18080
18081 2001-12-29 Akim Demaille <akim@epita.fr>
18082
18083 * src/gram.h (rule_s): Member `assoc' is of type `associativity'.
18084
18085 2001-12-29 Akim Demaille <akim@epita.fr>
18086
18087 * tests/actions.at (Mid-rule actions): Output on a single line
18088 instead of several.
18089
18090 2001-12-29 Akim Demaille <akim@epita.fr>
18091
18092 * doc/bison.texinfo: Formatting changes.
18093
18094 2001-12-29 Akim Demaille <akim@epita.fr>
18095
18096 Don't store the token defs in a muscle, just be ready to output it
18097 on command. Now possible via `symbols'. Fixes a memory leak.
18098
18099 * src/output.c (token_definitions_output): New.
18100 (output_parser, header_output): Use it.
18101 * src/reader.c (symbols_save): Remove.
18102
18103 2001-12-29 Akim Demaille <akim@epita.fr>
18104
18105 * src/bison.simple: Do not provide a default for YYSTYPE and
18106 YYLTYPE before the user's prologue. Otherwise it's hardly... a
18107 default.
18108
18109 2001-12-29 Akim Demaille <akim@epita.fr>
18110
18111 Mid-rule actions are simply... ignored!
18112
18113 * src/reader.c (readgram): Be sure to attach mid-rule actions to
18114 the empty-rule associated to the dummy symbol, not to the host
18115 rule.
18116 * tests/actions.at (Mid-rule actions): New.
18117
18118 2001-12-29 Akim Demaille <akim@epita.fr>
18119
18120 Memory leak.
18121
18122 * src/reader.c (reader): Free grammar.
18123
18124 2001-12-29 Akim Demaille <akim@epita.fr>
18125
18126 Memory leak.
18127
18128 * src/LR0.c (new_itemsets): Don't allocate `shift_symbol' here,
18129 since it allocates it for each state, although only one is needed.
18130 (allocate_storage): Do it here.
18131
18132 2001-12-29 Akim Demaille <akim@epita.fr>
18133
18134 * src/options.h, src/options.c (create_long_option_table): Rename
18135 as...
18136 (long_option_table_new): this, with a clearer prototype.
18137 (percent_table): Remove, unused,
18138 * src/getargs.c (getargs): Adjust.
18139
18140 2001-12-29 Akim Demaille <akim@epita.fr>
18141
18142 * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
18143 * src/print.c, src/print_graph.c, src/state.h: Rename state_table
18144 as states.
18145
18146 2001-12-29 Akim Demaille <akim@epita.fr>
18147
18148 * src/lalr.c (build_relations): Rename `states' as `states1'.
18149 Sorry, I don't understand exactly what it is, no better name...
18150
18151 2001-12-29 Akim Demaille <akim@epita.fr>
18152
18153 * src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
18154 * src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
18155 * src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
18156 as rules.
18157
18158 2001-12-29 Akim Demaille <akim@epita.fr>
18159
18160 * src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
18161 ago.
18162
18163 2001-12-29 Akim Demaille <akim@epita.fr>
18164
18165 * src/reader.c, src/reader.h (user_toknums): Remove.
18166 Adjust all users to use symbols[i]->user_token_number.
18167
18168 2001-12-29 Akim Demaille <akim@epita.fr>
18169
18170 * src/gram.c, src/gram.h (sprec, sassoc): Remove.
18171 Adjust all users to use symbols[i]->prec or ->assoc.
18172
18173 2001-12-29 Akim Demaille <akim@epita.fr>
18174
18175 * src/reader.c, src/reader.h (tags): Remove.
18176 Adjust all users to use symbols[i]->tag.
18177
18178 2001-12-29 Akim Demaille <akim@epita.fr>
18179
18180 * src/gram.h, src/gram.c (symbols): New, similar to state_table
18181 and rule_table.
18182 * src/reader.c (packsymbols): Fill this table.
18183 Drop sprec.
18184 * src/conflicts.c (resolve_sr_conflict): Adjust.
18185 * src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
18186 single table.
18187 Use symbols[i]->tag instead of tags[i].
18188
18189 2001-12-29 Akim Demaille <akim@epita.fr>
18190
18191 * tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
18192 In addition, put a comment in there, to replace...
18193 * tests/regression.at (%union and C comments): Remove.
18194
18195 2001-12-29 Akim Demaille <akim@epita.fr>
18196
18197 * tests/regression.at (Web2c Actions): Blindly move the actual
18198 output as expected output. The contents *seem* right to me, but I
18199 can't pretend reading perfectly parser tables... Nonetheless, all
18200 the other tests pass correctly, the table look OK, even though the
18201 presence of `$axiom' is to be noted: AFAICS it is useless (but
18202 harmless).
18203
18204 2001-12-29 Akim Demaille <akim@epita.fr>
18205
18206 * src/reader.c (readgram): Don't add the rule 0 if there were no
18207 rules read. In other words, add it _after_ having performed
18208 grammar sanity checks.
18209 Fixes the `tests/regression.at (Invalid input: 1)' Failure.
18210
18211 2001-12-29 Akim Demaille <akim@epita.fr>
18212
18213 * tests/regression.at (Web2c Report): Catch up: the rule 0 is now
18214 visible, and some states have now a different number.
18215
18216 2001-12-29 Akim Demaille <akim@epita.fr>
18217
18218 * src/reader.c (readgram): Bind the initial rule's lineno to that
18219 of the first rule.
18220 * tests/regression.at (Rule Line Numbers, Unresolved SR Conflicts):
18221 (Solved SR Conflicts): Adjust rule 0's line number.
18222
18223 2001-12-29 Akim Demaille <akim@epita.fr>
18224
18225 Fix the `GAWK Grammar' failure.
18226
18227 * src/LR0.c (final_state): Initialize to -1 so that we do compute
18228 the reductions of the first state which was mistakenly confused
18229 with the final state because precisely final_state was initialized
18230 to 0.
18231 * tests/sets.at (Nullable): Adjust: state 0 does have lookaheads,
18232 now noticed by Bison.
18233 * tests/regression.at (Rule Line Numbers): Adjust: state 0 does
18234 have a reduction on $default.
18235
18236 2001-12-29 Akim Demaille <akim@epita.fr>
18237
18238 * src/gram.c (ritem_print): Be sure to subtract 1 when displaying
18239 rule line numbers.
18240 * src/closure.c (print_closure): Likewise.
18241 * src/derives.c (print_derives): Likewise.
18242 * tests/sets.at (Nullable): Adjust: the rule numbers are correct
18243 now.
18244
18245 2001-12-29 Akim Demaille <akim@epita.fr>
18246
18247 * src/lalr.c (lookaheads_print): New.
18248 (lalr): Call it when --trace-flag.
18249 * tests/sets.at (Nullable): Adjust: when tracing, the lookaheads
18250 are dumped.
18251
18252 2001-12-29 Akim Demaille <akim@epita.fr>
18253
18254 * src/derives.c (print_derives): Be sure to use `>= 0', not `> 0',
18255 when walking through ritem, even via rule->rhs.
18256 * src/reduce.c (dump_grammar, useful_production, reduce_output)
18257 (useful_production, useless_nonterminals): Likewise.
18258 (reduce_grammar_tables): Likewise, plus update nritems.
18259 * src/nullable.c (set_nullable): Likewise.
18260 * src/lalr.c (build_relations): Likewise.
18261 * tests/sets.at (Nullable): Adjust.
18262 Fortunately, now, the $axiom is no longer nullable.
18263
18264 2001-12-29 Akim Demaille <akim@epita.fr>
18265
18266 * src/LR0.c (generate_states): Use nritems, not nitems, nor using
18267 the 0-sentinel.
18268 * src/gram.c (ritem_longest_rhs): Likewise.
18269 * src/reduce.c (nonterminals_reduce): Likewise.
18270 * src/print_graph.c (print_graph): Likewise.
18271 * src/output.c (output_rule_data): Likewise.
18272 * src/nullable.c (set_nullable): Likewise.
18273
18274 2001-12-29 Akim Demaille <akim@epita.fr>
18275
18276 * src/output.c: Comment changes.
18277
18278 2001-12-27 Paul Eggert <eggert@twinsun.com>
18279
18280 * src/bison.simple (YYSTACK_ALLOC, YYSIZE_T): Remove special
18281 cases for non-GNU systems like AIX, HP-UX, SGI, Sun, and
18282 Sparc, as they were causing more porting problems than the
18283 (minor) performance improvement was worth.
18284
18285 Also, catch up with 1.31's YYSTD.
18286
18287 2001-12-27 Akim Demaille <akim@epita.fr>
18288
18289 * src/output.c (output_gram): Rely on nritems, not the
18290 0-sentinel. See below.
18291 Use -1 as separator, not 0.
18292 * src/bison.simple (yyparse): Subtract 1 to the rule numbers.
18293 Rely on -1 as separator in yyrhs, instead of 0.
18294 * tests/calc.at (AT_CHECK_CALC): Now, the parsers no longer issue
18295 twice `Now at end of input', therefore there are two lines less to
18296 expect.
18297
18298 2001-12-27 Akim Demaille <akim@epita.fr>
18299
18300 * tests/regression.at (Unresolved SR Conflicts):
18301 (Solved SR Conflicts, Rule Line Numbers): Adjust to the changes
18302 below.
18303
18304 2001-12-27 Akim Demaille <akim@epita.fr>
18305
18306 * src/LR0.c (new_state): Recognize the final state by the fact it
18307 is reached by eoftoken.
18308 (insert_start_shifting_state, insert_eof_shifting_state)
18309 (insert_accepting_state, augment_automaton): Remove, since now
18310 these states are automatically computed from the initial state.
18311 (generate_states): Adjust.
18312 * src/print.c: When reporting a rule number to the user, substract
18313 1, so that the axiom rule is rule 0, and the first user rule is 1.
18314 * src/reduce.c: Likewise.
18315 * src/print_graph.c (print_core): For the time being, just as for
18316 the report, depend upon --trace-flags to dump the full set of
18317 items.
18318 * src/reader.c (readgram): Once the grammar read, insert the rule
18319 0: `$axiom: START-SYMBOL $'.
18320 * tests/set.at: Adjust: rule 0 is now displayed, and since the
18321 number of the states has changed (the final state is no longer
18322 necessarily the last), catch up.
18323
18324 2001-12-27 Akim Demaille <akim@epita.fr>
18325
18326 Try to make the use of the eoftoken valid. Given that its value
18327 is 0 which was also used as a sentinel in ritem, (i) make sure >= 0
18328 is used instead of > 0 where appropriate, (ii), depend upon nritems
18329 instead of the 0-sentinel.
18330
18331 * src/gram.h, src/gram.c (nritems): New.
18332 Expected to be duplication of nitems, but for the time being...
18333 * src/reader.c (packgram): Assert nritems and nitems are equal.
18334 * src/LR0.c (allocate_itemsets, new_itemsets): Adjust.
18335 * src/closure.c (print_closure, print_fderives): Likewise.
18336 * src/gram.c (ritem_print): Likewise.
18337 * src/print.c (print_core, print_grammar): Likewise.
18338 * src/print_graph.c: Likewise.
18339
18340 2001-12-27 Akim Demaille <akim@epita.fr>
18341
18342 * src/main.c (main): If there are complains after grammar
18343 reductions, then output the report anyway if requested, then die.
18344 * src/symtab.c (bucket_new): Initialize `value' to -1, not 0.
18345 * src/reader.c (eoftoken): New.
18346 (parse_token_decl): If the token being defined has value `0', it
18347 is the eoftoken.
18348 (packsymbols): No longer hack `tags' to insert `$' by hand.
18349 Be sure to preserve the value of the eoftoken.
18350 (reader): Make sure eoftoken is defined.
18351 Initialize nsyms to 0: now eoftoken is created just like the others.
18352 * src/print.c (print_grammar): Don't special case the eof token.
18353 * src/regression.at: Adjust: `$' has value 0, not -1, which was a
18354 lie anyway, albeit pleasant.
18355 * tests/calc.at: Exercise error messages with eoftoken.
18356 Change the grammar so that empty input is invalid.
18357 Adjust expectations.
18358 When yyungeting, be sure to use a valid yylloc: use last_yylloc.
18359
18360 2001-12-27 Akim Demaille <akim@epita.fr>
18361
18362 * configure.in: Check the protos of strchr ans strspn.
18363 Replace strchr if needed.
18364 * src/system.h: Provide the protos of strchr, strspn and memchr if
18365 missing.
18366 * lib/strchr.c: New.
18367 * src/reader.c (symbols_save): Use strchr.
18368
18369 2001-12-27 Akim Demaille <akim@epita.fr>
18370
18371 * src/print.c, src/print_graph.c (escape): New.
18372 Use it to quote the TAGS outputs.
18373 * src/print_graph.c (print_state): Now errors are in red, and
18374 reductions in green.
18375 Prefer high to wide: output the state number on a line of its own.
18376
18377 2001-12-27 Akim Demaille <akim@epita.fr>
18378
18379 * src/state.h, src/state.c (reductions_new): New.
18380 * src/LR0.c (set_state_table): Let all the states have a
18381 `reductions', even if reduced to 0.
18382 (save_reductions): Adjust.
18383 * src/lalr.c (initialize_LA, initialize_lookaheads): Adjust.
18384 * src/print.c (print_reductions, print_actions): Adjust.
18385 * src/output.c (action_row): Adjust.
18386
18387 2001-12-27 Akim Demaille <akim@epita.fr>
18388
18389 * src/state.h, src/state.c (errs_new, errs_dup): New.
18390 * src/LR0.c (set_state_table): Let all the states have an errs,
18391 even if reduced to 0.
18392 * src/print.c (print_errs, print_reductions): Adjust.
18393 * src/output.c (output_actions, action_row): Adjust.
18394 * src/conflicts.c (resolve_sr_conflict): Adjust.
18395
18396 2001-12-27 Akim Demaille <akim@epita.fr>
18397
18398 * src/lalr.c (set_goto_map, initialize_F): Use SHIFT_SYMBOL.
18399
18400 2001-12-27 Akim Demaille <akim@epita.fr>
18401
18402 * src/conflicts.c, src/conflicts.h (print_reductions): Move to...
18403 * src/print.c: here.
18404 (lookaheadset, shiftset): New, used as additional storage by
18405 print_reductions.
18406 (print_results): Adjust.
18407 (print_shifts, print_gotos, print_errs): New, extracted from...
18408 (print_actions): here.
18409 * src/print_graph.c (print_actions): Remove dead code.
18410
18411 2001-12-27 Akim Demaille <akim@epita.fr>
18412
18413 * src/reader.c (copy_dollar, copy_at): Better checking of `n' in
18414 `$n' and `@n'.
18415
18416 2001-12-27 Akim Demaille <akim@epita.fr>
18417
18418 * src/lalr.c (add_lookback_edge): Use state_t instead of ints.
18419 (build_relations): Adjust.
18420
18421 2001-12-27 Akim Demaille <akim@epita.fr>
18422
18423 * src/lalr.c (set_goto_map): Remove a wrong but benign loop
18424 duplication.
18425
18426 2001-12-27 Akim Demaille <akim@epita.fr>
18427
18428 * src/reader.c (packgram): Catch nitems overflows.
18429
18430 2001-12-27 Akim Demaille <akim@epita.fr>
18431
18432 * src/files.c, src/files.h (guard_obstack): Remove.
18433 * src/output.c (output): Adjust.
18434 * src/reader.c (parse_braces): New, factoring...
18435 (copy_action, copy_guard): these two which are renamed as...
18436 (parse_action, parse_guard): these.
18437 As a voluntary consequence, using braces around guards is now
18438 mandatory.
18439
18440 2001-12-27 Akim Demaille <akim@epita.fr>
18441
18442 * src/gram.h (rule_t): `guard' and `guard_line' are new members.
18443 * src/reader.c (symbol_list): `guard' and `guard_line' are new
18444 members.
18445 (symbol_list_new): Adjust.
18446 (copy_action): action_line is the first line, not the last.
18447 (copy_guard): Just as for actions, store the `action' only, not
18448 the switch/case/break flesh.
18449 Don't parse the user action that might follow the guard, let...
18450 (readgram): do it, i.e., now, there can be an action after a
18451 guard.
18452 In other words the guard is just explicitly optional.
18453 (packgram): Adjust.
18454 * src/output.c (guards_output): New.
18455 (output_parser): Call it when needed.
18456 (output): Also free the guard and attrs obstacks.
18457 * src/files.c, src/files.h (obstack_save): Remove.
18458 (output_files): Remove.
18459 As a result, if one needs the former `.act' file, using an
18460 appropriate skeleton which requires actions and guards is now
18461 required.
18462 * src/main.c (main): Adjust.
18463 * tests/semantic.at: New.
18464 * tests/regression.at: Use `input.y' as input file name.
18465 Avoid 8+3 problems by requiring input.c when the test needs the
18466 parser.
18467
18468 2001-12-27 Akim Demaille <akim@epita.fr>
18469
18470 * src/reader.c (symbol_list_new): Be sure to initialize all the
18471 fields.
18472
18473 2001-12-27 Akim Demaille <akim@epita.fr>
18474
18475 All the hacks using a final pseudo state are now useless.
18476
18477 * src/LR0.c (set_state_table): state_table holds exactly nstates.
18478 * src/lalr.c (nLA): New.
18479 (initialize_LA, compute_lookaheads, initialize_lookaheads): Use it
18480 instead of lookaheadsp from the pseudo state (nstate + 1).
18481
18482 2001-12-27 Akim Demaille <akim@epita.fr>
18483
18484 * src/output.c (action_row, token_actions): Use a state_t instead
18485 of a integer, and nlookaheads instead of the following state's
18486 lookaheadsp.
18487
18488 2001-12-27 Akim Demaille <akim@epita.fr>
18489
18490 * src/conflicts.c (log_resolution, flush_shift)
18491 (resolve_sr_conflict, set_conflicts, solve_conflicts)
18492 (count_sr_conflicts, count_rr_conflicts, conflicts_output)
18493 (conflicts_print, print_reductions): Use a state_t instead of an
18494 integer when referring to a state.
18495 As much as possible, depend upon nlookaheads, instead of the
18496 `lookaheadsp' member of the following state (since lookaheads of
18497 successive states are successive, the difference between state n + 1
18498 and n served as the number of lookaheads for state n).
18499 * src/lalr.c (add_lookback_edge): Likewise.
18500 * src/print.c (print_core, print_actions, print_state)
18501 (print_results): Likewise.
18502 * src/print_graph.c (print_core, print_actions, print_state)
18503 (print_graph): Likewise.
18504 * src/conflicts.h: Adjust.
18505
18506 2001-12-27 Akim Demaille <akim@epita.fr>
18507
18508 * src/bison.hairy: Formatting/comment changes.
18509 ANSIfy.
18510 Remove `register' indications.
18511 Add plenty of `static'.
18512
18513 2001-12-27 Akim Demaille <akim@epita.fr>
18514
18515 * src/output.c (prepare): Drop the muscle `ntbase' which
18516 duplicates ntokens.
18517 * src/bison.simple: Formatting/comment changes.
18518 Use YYNTOKENS only, which is documented, but not YYNTBASE, which
18519 is an undocumented synonym.
18520
18521 2001-12-22 Akim Demaille <akim@epita.fr>
18522
18523 * src/output.c (output_table_data): Change the prototype to use
18524 `int' for array ranges: some invocations do pass an int, not a
18525 short.
18526 Reported by Wayne Green.
18527
18528 2001-12-22 Akim Demaille <akim@epita.fr>
18529
18530 Some actions of web2c.y are improperly triggered.
18531 Reported by Mike Castle.
18532
18533 * src/lalr.c (traverse): s/F (i)[k] = F (j)[k]/F (j)[k] = F (i)[k]/.
18534 * tests/regression.at (Web2c): Rename as...
18535 (Web2c Report): this.
18536 (Web2c Actions): New.
18537
18538 2001-12-22 Akim Demaille <akim@epita.fr>
18539
18540 Reductions in web2c.y are improperly reported.
18541 Reported by Mike Castle.
18542
18543 * src/conflicts.c (print_reductions): Fix.
18544 * tests/regression.at (Web2c): New.
18545
18546 2001-12-18 Akim Demaille <akim@epita.fr>
18547
18548 Some host fail on `assert (!"foo")', which expands to
18549 ((!"foo") ? (void)0 : __assert("!"foo."", __FILE__, __LINE__))
18550 Reported by Nelson Beebee.
18551
18552 * src/output.c, src/vcg.c: Replace `assert (!"it succeeded")' with
18553 `#define it_succeeded 0' and `assert (it_succeeded)'.
18554
18555 2001-12-17 Marc Autret <autret_m@epita.fr>
18556
18557 * src/bison.simple: Don't hard code the skeleton line and filename.
18558 * src/output.c (output_parser): Rename 'line' as 'output_line'.
18559 New line counter 'skeleton_line' (skeleton-line muscle).
18560
18561 2001-12-17 Paul Eggert <eggert@twinsun.com>
18562
18563 * NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
18564 YYDEBUG must be defined to a nonzero value.
18565
18566 * src/bison.simple (yytname): Do not assume that the user defines
18567 YYDEBUG to a properly parenthesized expression.
18568
18569 2001-12-17 Akim Demaille <akim@epita.fr>
18570
18571 * src/state.h (state_t): Rename lookaheads as lookaheadsp.
18572 nlookaheads is a new member.
18573 Adjust all users.
18574 * src/lalr.h (nlookaheads): Remove this orphan declaration.
18575 * src/lalr.c (initialize_lookaheads): Set nlookaheads for each
18576 state.
18577
18578 2001-12-17 Akim Demaille <akim@epita.fr>
18579
18580 * src/files.h, src/files.c (open_files, close_files): Remove.
18581 * src/main.c (main): Don't open/close files, nor invoke lex_free,
18582 let...
18583 * src/reader.c (reader): Do it.
18584
18585 2001-12-17 Akim Demaille <akim@epita.fr>
18586
18587 * src/conflicts.c (print_reductions): Formatting changes.
18588
18589 2001-12-17 Akim Demaille <akim@epita.fr>
18590
18591 * src/conflicts.c (flush_shift): Also adjust lookaheadset.
18592 (flush_reduce): New.
18593 (resolve_sr_conflict): Adjust.
18594
18595 2001-12-17 Akim Demaille <akim@epita.fr>
18596
18597 * src/output.c (output_obstack): Be static and rename as...
18598 (format_obstack): this, to avoid any confusion with files.c's
18599 output_obstack.
18600 * src/reader.h (muscle_obstack): Move to...
18601 * src/output.h: here, since it's defined in output.c.
18602
18603 2001-12-17 Akim Demaille <akim@epita.fr>
18604
18605 * src/output.c (action_row, save_column, default_goto)
18606 (sort_actions, matching_state, pack_vector): Better variable
18607 locality.
18608
18609 2001-12-17 Akim Demaille <akim@epita.fr>
18610
18611 * src/output.c: Various formatting changes.
18612
18613 2001-12-17 Akim Demaille <akim@epita.fr>
18614
18615 * src/files.c (output_files): Free the output_obstack.
18616 * src/main.c (main): Call print and print_graph conditionally.
18617 * src/print.c (print): Work unconditionally.
18618 * src/print_graph.c (print_graph): Work unconditionally.
18619 * src/conflicts.c (log_resolution): Output only if verbose_flag.
18620
18621 2001-12-16 Marc Autret <autret_m@epita.fr>
18622
18623 * src/output.c (actions_output): Fix. When we use %no-lines,
18624 there is one less line per action.
18625
18626 2001-12-16 Marc Autret <autret_m@epita.fr>
18627
18628 * src/bison.simple: Remove a useless #line directive.
18629 s/#line %%line %%skeleton/#line %%line "%%parser-file-name"/'.
18630 * src/output.c (get_lines_number): New.
18631 (output_parser): Adjust, now takes care about the lines of a
18632 output muscles.
18633 Fix line numbering.
18634 (actions_output): Computes the number of lines taken by actions.
18635 (output_master_parser): Insert new skeleton which is the name of
18636 the output parser file name.
18637
18638 2001-12-15 Marc Autret <autret_m@epita.fr>
18639
18640 * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
18641
18642 2001-12-15 Marc Autret <autret_m@epita.fr>
18643
18644 * src/output.c (output_gram): Keep track of the hairy one.
18645
18646 2001-12-15 Akim Demaille <akim@epita.fr>
18647
18648 Make `make distcheck' work.
18649
18650 * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses
18651 system.h which uses libgettext.h.
18652
18653 2001-12-15 Akim Demaille <akim@epita.fr>
18654
18655 * src/nullable.c (set_nullable): Useless rules must be skipped,
18656 otherwise, since we range over their symbols, we might look at a
18657 nonterminal which no longer ``exists'', i.e., it is not counted in
18658 `nvars', hence we overflow our arrays.
18659
18660 2001-12-15 Akim Demaille <akim@epita.fr>
18661
18662 The header can also be produced directly, without any obstack!
18663 Yahoo!
18664
18665 * src/files.c, src/files.h (defines_obstack): Remove.
18666 (compute_header_macro): Global.
18667 (defines_obstack_save): Remove.
18668 * src/reader.c (parse_union_decl): No longer output to
18669 defines_obstack: its content can be found in the `stype' muscle
18670 anyway.
18671 (output_token_translations): Merge into...
18672 (symbols_output): this.
18673 Rename as...
18674 (symbols_save): this.
18675 (reader): Adjust.
18676 * src/output.c (header_output): New.
18677 (output): Call it.
18678
18679 2001-12-15 Akim Demaille <akim@epita.fr>
18680
18681 * src/reader.c (parse_union_decl): Instead of handling two obstack
18682 simultaneously, use one to define the `stype' muscle, and use the
18683 value of the latter to fill defines_obstack.
18684 (copy_comment): Remove.
18685 (copy_comment2): Work for a single obstack.
18686 Rename as...
18687 (copy_comment): this.
18688
18689 2001-12-15 Akim Demaille <akim@epita.fr>
18690
18691 * src/lex.c, src/lex.h (xgetc): No longer static.
18692 * src/reader.c (parse_union_decl): Revamp.
18693
18694 2001-12-15 Akim Demaille <akim@epita.fr>
18695
18696 Still making progress in separating Bison into (i) input, (ii)
18697 process, (iii) output: now we can directly output the parser file
18698 without using table_obstack at all.
18699
18700 * src/files.c, src/files.h (table_obstack): Bye bye.
18701 (parser_file_name): New.
18702 * src/files.c (compute_output_file_names): Compute it.
18703 * src/output.c (actions_output, output_parser)
18704 (output_master_parser): To a file instead of an obstack.
18705
18706 2001-12-15 Akim Demaille <akim@epita.fr>
18707
18708 Attach actions to rules, instead of pre-outputting them to
18709 actions_obstack.
18710
18711 * src/gram.h (rule_t): action and action_line are new members.
18712 * src/reader.c (symbol_list): Likewise.
18713 (copy_action): Save the actions within the rule.
18714 (packgram): Save them in rule_table.
18715 * src/output.c (actions_output): New.
18716 (output_parser): Use it on `%%actions'.
18717 (output_rule_data): Don't free rule_table.
18718 (output): Do it.
18719 (prepare): Don't save the `action' muscle.
18720 * src/bison.simple: s/%%action/%%actions/.
18721
18722 2001-12-15 Akim Demaille <akim@epita.fr>
18723
18724 * src/reader.c (copy_action): When --yacc, don't append a `;'
18725 to the user action: let it fail if lacking.
18726 Suggested by Arnold Robbins and Tom Tromey.
18727
18728 2001-12-14 Akim Demaille <akim@epita.fr>
18729
18730 * src/lex.c (literalchar): Simply return the char you decoded, non
18731 longer mess around with obstacks and int pointers.
18732 Adjust all callers.
18733
18734 2001-12-14 Akim Demaille <akim@epita.fr>
18735
18736 * src/lex.c (literalchar): Don't escape the special characters,
18737 just decode them, and keep them as char (before, eol was output as
18738 the 2 char string `\n' etc.).
18739 * src/output.c (output_rule_data): Use quotearg to output the
18740 token strings.
18741
18742 2001-12-13 Paul Eggert <eggert@twinsun.com>
18743
18744 * src/bison.simple (YYSIZE_T, YYSTACK_ALLOC, YYSTACK_FREE):
18745 Do not infringe on the global user namespace when using C++.
18746 (YYFPRINTF, YYSTDERR): New macros, needed for the above.
18747 All uses of `fprintf' and `stderr' changed.
18748
18749 * doc/bison.texinfo: Document YYFPRINTF, YYSTDERR.
18750
18751 2001-12-13 Akim Demaille <akim@epita.fr>
18752
18753 The computation of nullable is broken: it doesn't handle empty
18754 RHS's properly.
18755
18756 * tests/torture.at (GNU AWK Grammar): New.
18757 * tests/sets.at (Nullable): New.
18758 * src/nullable.c (set_nullable): Instead of blindly looping over
18759 `ritems', loop over the rules, and then over their rhs's.
18760
18761 Work around Autotest bugs.
18762
18763 * src/warshall.c (bitmatrix_print): Don't use `+--+' as table
18764 frame, because Autotest understand lines starting with a `+' as
18765 traces from the shell. Then, they are not processed properly.
18766 Admittedly an Autotest bug, but we don't have time to wait for
18767 Autotest to catch up.
18768 * tests/regression.at (Broken Closure): Adjust to the new table
18769 frames.
18770 Move to...
18771 * tests/sets.at: here.
18772
18773 2001-12-13 Akim Demaille <akim@epita.fr>
18774
18775 * src/closure.c (closure): Use nrules instead of playing tricks
18776 with BITS_PER_WORD.
18777
18778 2001-12-13 Akim Demaille <akim@epita.fr>
18779
18780 * src/print.c (print_actions): Output the handling of `$' as the
18781 traces do: shifting the token EOF. Before EOF was treated as a
18782 nonterminal.
18783 * tests/regression.at: Adjust some tests.
18784 * src/print_graph.c (print_core): Complete the set of items via
18785 closure. The next-to-final and final states are still unsatisfying,
18786 but that's to be addressed elsewhere.
18787 No longer output the rule numbers, but do output the state number.
18788 A single loop for the shifts + gotos is enough, but picked a
18789 distinct color for each.
18790 (print_graph): Initialize and finalize closure.
18791
18792 2001-12-13 Akim Demaille <akim@epita.fr>
18793
18794 * src/reader.c (readgram): Remove dead code, an strip useless
18795 braces.
18796 (get_type): Remove, unused.
18797
18798 2001-12-12 Akim Demaille <akim@epita.fr>
18799
18800 * src/complain.h, src/complain.c: Remove error_one_per_line, rely
18801 on that of lib/error.c.
18802
18803 2001-12-12 Akim Demaille <akim@epita.fr>
18804
18805 Some hosts don't like `/' in includes.
18806
18807 * src/system.h: Include libgettext.h without qualifying the path.
18808 * src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
18809 $(top_srcdir).
18810
18811 2001-12-11 Marc Autret <autret_m@epita.fr>
18812
18813 * src/output.c (output_parser): Remove useless muscle.
18814
18815 2001-12-11 Marc Autret <autret_m@epita.fr>
18816
18817 * src/bison.simple: Remove #line just before %%epilogue. It
18818 is now handled in ...
18819 * src/reader.c (read_additionnal_code): Add the output of a
18820 #line for the epilogue.
18821
18822 2001-12-10 Marc Autret <autret_m@epita.fr>
18823
18824 * src/reader.c (copy_definition): Re-use CPP-outed code which
18825 replace precedent remove.
18826 * src/bison.simple: Remove #line before %%prologue because
18827 %%input-line is wrong at this time.
18828
18829 2001-12-10 Marc Autret <autret_m@epita.fr>
18830
18831 * src/reader.c (symbols_output): Clean up.
18832 * src/output.c (output_gram, output): Clean up.
18833
18834 2001-12-10 Akim Demaille <akim@epita.fr>
18835
18836 * src/lalr.c (initialize_lookaheads): New. Extracted from...
18837 * src/LR0.c (set_state_table): here.
18838 * src/lalr.c (lalr): Call it.
18839
18840 2001-12-10 Akim Demaille <akim@epita.fr>
18841
18842 * src/state.h (shifts): Remove the `number' member: shifts are
18843 attached to state, hence no longer need to be labelled with a
18844 state number.
18845
18846 2001-12-10 Akim Demaille <akim@epita.fr>
18847
18848 Now that states have a complete set of members, the linked list of
18849 shifts is useless: just fill directly the state's shifts member.
18850
18851 * src/state.h (shifts): Remove the `next' member.
18852 * src/LR0.c (first_state, last_state): Remove.
18853 Adjust the callers.
18854 (augment_automaton): Don't look for the shifts that must be added
18855 a shift on EOF: it is those of the state we looked for! But now,
18856 since shifts are attached, it is no longer needed to looking
18857 merely by its id: its number.
18858
18859 2001-12-10 Akim Demaille <akim@epita.fr>
18860
18861 * src/LR0.c (augment_automaton): Better variable locality.
18862 Remove an impossible branch: if there is a state corresponding to
18863 the start symbol being shifted, then there is shift for the start
18864 symbol from the initial state.
18865
18866 2001-12-10 Akim Demaille <akim@epita.fr>
18867
18868 * src/LR0.c (augment_automaton): Call `insert_eof_shifting_state'
18869 only when appropriate: when insert_start_shifting_state' is not
18870 invoked.
18871 * tests/regression.at (Rule Line Numbers): Adjust.
18872
18873 2001-12-10 Akim Demaille <akim@epita.fr>
18874
18875 * src/LR0.c (augment_automaton): Now that all states have shifts,
18876 merge the two cases addition shifts to the initial state.
18877
18878 2001-12-10 Akim Demaille <akim@epita.fr>
18879
18880 * src/lalr.c (set_state_table): Move to...
18881 * src/LR0.c: here.
18882 * src/lalr.c (lalr): Don't call it...
18883 * src/LR0.c (generate_states): do it.
18884 * src/LR0.h (first_state): Remove, only the table is used.
18885
18886 2001-12-10 Akim Demaille <akim@epita.fr>
18887
18888 * src/LR0.h (first_shift, first_reduction): Remove.
18889 * src/lalr.c: Don't use first_shift: find shifts through the
18890 states.
18891
18892 2001-12-10 Akim Demaille <akim@epita.fr>
18893
18894 * src/LR0.c: Attach shifts to states as soon as they are
18895 computed.
18896 * src/lalr.c (set_state_table): Instead of assigning shifts to
18897 state, just assert that the mapping was properly done.
18898
18899 2001-12-10 Akim Demaille <akim@epita.fr>
18900
18901 * src/LR0.c (insert_start_shift): Rename as...
18902 (insert_start_shifting_state): this.
18903 (insert_eof_shifting_state, insert_accepting_state): New.
18904 (augment_automaton): Adjust.
18905 Better locality of the variables.
18906 When looking if the start_symbol is shifted from the initial
18907 state, using `while (... symbol != start_symbol ...)' sounds
18908 better than `while (... symbol < start_symbol ...)': If fail
18909 to see how the order between symbols could be relevant!
18910
18911 2001-12-10 Akim Demaille <akim@epita.fr>
18912
18913 * src/getargs.h: Don't declare `spec_name_prefix' and
18914 `spec_file_prefix', declared by src/files.h.
18915 * src/files.c, src/files.h: Default for spec_name_prefix is "yy".
18916 * src/muscle_tab.c (muscle_init): Default prefix to NULL.
18917 * src/output.c (prepare): Adjust.
18918 * src/reader.c (symbols_output): Likewise.
18919 * src/vmsgetargs.c: Vaguely adjust, but who cares?
18920
18921 2001-12-10 Akim Demaille <akim@epita.fr>
18922
18923 * src/muscle_tab.c (muscle_init): NULL is a better default than
18924 `"0"'.
18925
18926 2001-12-10 Akim Demaille <akim@epita.fr>
18927
18928 * src/reader.c (reader): Calling symbols_output once is enough.
18929
18930 2001-12-10 Akim Demaille <akim@epita.fr>
18931
18932 Now that states have a complete set of members, the linked list of
18933 reductions is useless: just fill directly the state's reductions
18934 member.
18935
18936 * src/state.h (struct reductions): Remove member `number' and
18937 `next'.
18938 * src/LR0.c (first_reduction, last_reduction): Remove.
18939 (save_reductions): Don't link the new reductions, store them in
18940 this_state.
18941 * src/lalr.c (set_state_table): No need to attach reductions to
18942 states, it's already done.
18943 * src/output.c (output_actions): No longer free the shifts, then
18944 the reductions, then the states: free all the states and their
18945 members.
18946
18947 2001-12-10 Akim Demaille <akim@epita.fr>
18948
18949 * src/options.c (OPTN, DRTV, BOTH): New.
18950 (option_table): Use them.
18951
18952 * src/muscle_tab.c: Don't include xalloc.h and string.h: that's
18953 the job of system.h.
18954 * src/options.c: Don't include stdio.h and xalloc.h for the same
18955 reasons.
18956
18957 2001-12-10 Akim Demaille <akim@epita.fr>
18958
18959 * src/output.c (output, prepare): Make sure the values of the
18960 muscles `action' and `prologue' are 0-terminated.
18961
18962 2001-12-10 Akim Demaille <akim@epita.fr>
18963
18964 Clean up GCC warnings.
18965
18966 * src/reader.c (copy_action): `buf' is not used.
18967 (parse_skel_decl): Be static.
18968 * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'.
18969 * src/options.h (create_long_option_table): Have a real prototype.
18970 * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete)
18971 (hash_delete_at): Return const void *.
18972 Adjust casts to preserve the const.
18973
18974 2001-12-10 Akim Demaille <akim@epita.fr>
18975
18976 * configure.in: Require 2.52g.
18977 M4 is not needed, but AUTOM4TE is.
18978 * m4/m4.m4: Remove.
18979 * tests/Makefile.am: Adjust.
18980
18981 2001-12-10 Akim Demaille <akim@epita.fr>
18982
18983 One structure for states is enough, even though theoretically
18984 there are LR(0) states and LALR(1) states.
18985
18986 * src/lalr.h (state_t): Remove.
18987 (state_table): Be state_t **, not state_t *.
18988 * src/state.h (core, CORE_ALLOC): Rename as...
18989 (state_t, STATE_ALLOC): this.
18990 Add the LALR(1) members: shifts, reductions, errs.
18991 * src/LR0.c (state_table): Rename as...
18992 (state_hash): this, to avoid name clashes with the global
18993 `state_table'.
18994 * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c
18995 * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust.
18996
18997 2001-12-10 Akim Demaille <akim@epita.fr>
18998
18999 Bison dumps core on bash.y.
19000 Reported by Pascal Bart.
19001
19002 * src/warshall.c (bitmatrix_print): New.
19003 (TC): Use it.
19004 When performing a transitive closure R(i, j) && R(j, k) => R(i, k),
19005 j must be the outer loop.
19006 * tests/regression.at (Broken Closure): New.
19007
19008 2001-12-05 Akim Demaille <akim@epita.fr>
19009
19010 * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
19011 its argument.
19012 Reported by Peter Hamorsky.
19013
19014 2001-12-05 Akim Demaille <akim@epita.fr>
19015
19016 * src/conflicts.c (err_table): Remove.
19017 (resolve_sr_conflict): Adjust.
19018 * src/lalr.h (state_t.reduction_table, state_t.shift_table):
19019 Rename as...
19020 (state_t.reductions, state_t.shifts): this.
19021
19022 2001-12-05 Akim Demaille <akim@epita.fr>
19023
19024 * src/reduce.c (reduce_grammar_tables): No longer disable the
19025 removal of useless rules via CPP but via `if (0)', so that the
19026 compiler still check the code is valid.
19027 For instance, it should have noticed `rline' no longer exists: use
19028 the `line' member of rule_t.
19029 * src/gram.c (dummy, rline): Remove, unused.
19030
19031 2001-12-05 Akim Demaille <akim@epita.fr>
19032
19033 * src/output.c (pack_vector): Use assert, not berror.
19034 * src/main.c (berror): Remove, unused.
19035
19036 2001-12-05 Akim Demaille <akim@epita.fr>
19037
19038 New experimental feature: if --verbose --trace output all the
19039 items of a state, not only its kernel.
19040
19041 * src/print.c (print_core): If `trace_flag', then invoke closure
19042 before outputting the items of the state (print_core is no longer
19043 a correct name them).
19044 (print_results): Invoke new_closure/free_closure if needed.
19045
19046 2001-12-05 Akim Demaille <akim@epita.fr>
19047
19048 * src/LR0.c (new_itemsets): Use nshifts only, not shiftcount.
19049 * src/closure.c, src/closure.h (itemsetsize): Rename as...
19050 (nitemset): for consistency with the rest of the project.
19051
19052 2001-12-05 Akim Demaille <akim@epita.fr>
19053
19054 * src/closure.c (print_closure): Improve.
19055 (closure): Use it for printing input and output.
19056
19057 2001-12-05 Akim Demaille <akim@epita.fr>
19058
19059 * src/closure.c (FIRSTS, FDERIVES): Adjust to reality: they are
19060 indexed by nonterminals.
19061
19062 2001-12-05 Akim Demaille <akim@epita.fr>
19063
19064 * src/warshall.c (TC, RTC): De-obsfucate (source reduced to 22% of
19065 what it was!).
19066 * src/warshall.h: Remove accidental duplication of the content.
19067
19068 2001-12-05 Akim Demaille <akim@epita.fr>
19069
19070 * src/closure.c (set_fderives): De-obfuscate.
19071
19072 2001-12-05 Akim Demaille <akim@epita.fr>
19073
19074 * src/closure.c (print_firsts, print_fderives): De-obfuscate.
19075
19076 2001-12-05 Akim Demaille <akim@epita.fr>
19077
19078 * src/closure.c (set_firsts): De-obfuscate.
19079
19080 2001-12-05 Akim Demaille <akim@epita.fr>
19081
19082 * src/output.c (action_row): De-obfuscate
19083 using the good o' techniques: arrays not pointers, variable
19084 locality, BITISSET, RESETBIT etc.
19085
19086 2001-12-05 Akim Demaille <akim@epita.fr>
19087
19088 Pessimize the code to simplify it: from now on, all the states
19089 have a valid SHIFTS, which NSHIFTS is possibly 0.
19090
19091 * src/LR0.c (shifts_new): Be global and move to..
19092 * src/state.c, src/state.h: here.
19093 * src/conflicts, src/lalr.c, src/output.c, src/print.c,
19094 * src/print_graph: Adjust.
19095
19096 2001-12-05 Akim Demaille <akim@epita.fr>
19097
19098 * src/state.h (SHIFT_DISABLE, SHIFT_IS_DISABLED): New.
19099 * src/conflicts.c: Use it.
19100 Restore a few missing `if (!SHIFT_IS_DISABLED)' which were
19101 incorrectly ``simplified''.
19102
19103 2001-12-05 Akim Demaille <akim@epita.fr>
19104
19105 * src/conflicts.c (flush_shift, resolve_sr_conflict): De-obfuscate
19106 using the good o' techniques: arrays not pointers, variable
19107 locality, BITISSET, RESETBIT etc.
19108
19109 2001-12-05 Akim Demaille <akim@epita.fr>
19110
19111 * src/state.h (SHIFT_SYMBOL): New.
19112 * src/conflicts.c: Use it to deobfuscate.
19113
19114 2001-12-05 Akim Demaille <akim@epita.fr>
19115
19116 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts)
19117 (print_reductions): De-obfuscate using the good o' techniques:
19118 arrays not pointers, variable locality, BITISSET.
19119
19120 2001-12-05 Akim Demaille <akim@epita.fr>
19121
19122 * src/conflicts.c (print_reductions): Arrays, not pointers.
19123 Use BITISSET.
19124
19125 2001-12-05 Akim Demaille <akim@epita.fr>
19126
19127 * src/conflicts.c (print_reductions): Pessimize, but clarify.
19128
19129 2001-12-05 Akim Demaille <akim@epita.fr>
19130
19131 * src/conflicts.c (print_reductions): Improve variable locality.
19132
19133 2001-12-05 Akim Demaille <akim@epita.fr>
19134
19135 * src/conflicts.c (print_reductions): Pessimize, but clarify.
19136
19137 2001-12-05 Akim Demaille <akim@epita.fr>
19138
19139 * src/conflicts.c (print_reductions): Improve variable locality.
19140
19141 2001-12-05 Akim Demaille <akim@epita.fr>
19142
19143 * src/state.h (SHIFT_IS_ERROR, SHIFT_IS_GOTO, SHIFT_IS_SHIFT): New.
19144 * src/lalr.c: Use them.
19145
19146 2001-12-05 Akim Demaille <akim@epita.fr>
19147
19148 * src/LR0.c (augment_automaton): Formatting changes.
19149 Better variable locality.
19150
19151 2001-12-05 Akim Demaille <akim@epita.fr>
19152
19153 * src/lalr.c (matrix_print): New.
19154 (transpose): Use it.
19155 Use arrays instead of pointers.
19156
19157 2001-12-05 Akim Demaille <akim@epita.fr>
19158
19159 * src/lalr.c (maxrhs): Move to...
19160 * src/gram.c, src/gram.h (ritem_longest_rhs): here.
19161 * src/lalr.c (build_relations): Adjust.
19162
19163 2001-12-05 Akim Demaille <akim@epita.fr>
19164
19165 * src/lalr.c (transpose): Free the memory allocated to the
19166 argument, as it is replaced by the results by the unique caller.
19167 (build_relations): Merely invoke transpose: it handles the memory
19168 deallocation.
19169 Improve variable locality.
19170 Avoid variables used as mere abbreviations.
19171 (compute_lookaheads): Use arrays instead of pointers.
19172
19173 2001-12-05 Akim Demaille <akim@epita.fr>
19174
19175 * src/lalr.c (initialize_F): Improve variable locality.
19176 Avoid variables used as mere abbreviations.
19177
19178 2001-12-05 Akim Demaille <akim@epita.fr>
19179
19180 * src/derives.c (print_derives): Display the ruleno.
19181 * src/lalr.c (initialize_F, transpose): Better variable locality
19182 to improve readability.
19183 Avoid variables used as mere abbreviations.
19184
19185 2001-12-05 Akim Demaille <akim@epita.fr>
19186
19187 * src/lalr.c (traverse): Use arrays instead of pointers.
19188
19189 2001-12-05 Akim Demaille <akim@epita.fr>
19190
19191 * src/nullable.c (set_nullable): Use a for loop to de-obfuscate
19192 the handling of squeue.
19193 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
19194
19195 2001-12-05 Akim Demaille <akim@epita.fr>
19196
19197 Because useless nonterminals are now kept alive (instead of being
19198 `destroyed'), we now sometimes examine them, and store information
19199 related to them. Hence we need to know their number, and adjust
19200 memory allocations.
19201
19202 * src/reduce.c, src/reduce.h (nuseless_nonterminals): No longer
19203 static.
19204 * src/LR0.c (allocate_itemsets): The memory allocated to
19205 `symbol_count' was used for two different purpose: once to count
19206 the number of occurrences of each symbol, and later reassigned to
19207 `shift_symbol', containing the symbol that can be shifted from a
19208 given state.
19209 Deobfuscate, i.e., allocate, use and free `symbol_count' here
19210 only, and...
19211 (new_itemsets): Allocate `shift_symbol' here.
19212 (allocate_itemsets): symbol_count includes useless nonterminals.
19213 Make room for them.
19214 (free_storage): Use `free', not `XFREE', for pointers that cannot
19215 be null.
19216
19217 2001-12-05 Akim Demaille <akim@epita.fr>
19218
19219 * src/nullable.c (set_nullable): Deobfuscate the handling of
19220 ritem.
19221 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
19222
19223 2001-12-05 Akim Demaille <akim@epita.fr>
19224
19225 * src/gram.c, src/gram.h (ritem_print): New.
19226 * src/gram.c (dummy): Remove, now there is actual code in gram.c.
19227 (This useless function was defined only to work around VMS linkers
19228 that can't handle compilation units with variables only).
19229 * src/reduce.c (dump_grammar): Use it to trace the construction of
19230 ritem.
19231
19232 2001-12-04 Paul Eggert <eggert@twinsun.com>
19233
19234 * src/bison.simple (union yyalloc): Change member names
19235 to be the same as the stack names.
19236 (yyparse): yyptr is now union yyalloc *, not char *.
19237 (YYSTACK_RELOCATE): Likewise. This avoids a GCC warning,
19238 and may generate better code on some machines.
19239 (yystpcpy): Use prototype if __STDC__ is defined, not just
19240 if __cplusplus is defined.
19241
19242 2001-11-30 Akim Demaille <akim@epita.fr>
19243
19244 * configure.in (WARNING_CFLAGS): Add -Werror when possible.
19245 (CFLAGS): Do not include the WARNING_CFLAGS here, since GNU
19246 Gettext doesn't compile cleanly, and dies with -Werror.
19247 * src/Makefile.am, lib/Makefile.am, tests/atlocal.in (CFLAGS):
19248 Include WARNING_CFLAGS here.
19249 * lib/xstrdup.c: Include xalloc.h, so that xstrdup be declared
19250 before being defined.
19251
19252 2001-11-27 Paul Eggert <eggert@twinsun.com>
19253
19254 * lib/quotearg.h (quotearg_n, quotearg_n_style):
19255 First arg is int, not unsigned.
19256 * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
19257 (SIZE_MAX, UINT_MAX): New macros.
19258 (quotearg_n_options): Abort if N is negative.
19259 Avoid overflow check on hosts where size_t is 64 bits and int
19260 is 32 bits, as overflow is impossible there.
19261 Fix off-by-one typo that caused unnecessary reallocation.
19262
19263 2001-11-29 Paul Eggert <eggert@twinsun.com>
19264
19265 Name space cleanup in generated parser.
19266
19267 * doc/bison.texinfo (Bison Parser): Discuss system headers
19268 and their effect on the user name space.
19269
19270 * src/bison.simple:
19271 (YYSTACK_ALLOC, YYSTACK_FREE, union yyalloc, YYSTACK_GAP_MAX,
19272 YYSTACK_BYTES, YYSTACK_RELOCATE): Do not define unless necessary,
19273 i.e. unless ! defined (yyoverflow) || defined (YYERROR_VERBOSE).
19274
19275 (YYSIZE_T): New macro. Use it instead of size_t, to avoid infringing
19276 on user names when possible.
19277
19278 (YYSTACK_USE_ALLOCA): Do not define; just use any existing defn.
19279 Simplify test for whather <alloca.h> exists.
19280
19281 (<stdlib.h>): Include if we will use malloc, and if standard C or C++.
19282
19283 (<stdio.h>): Include if YYDEBUG.
19284
19285 (yymemcpy): Renamed from __yy_memcpy. Do not define unless
19286 ! defined (yyoverflow) && ! defined (yymemcpy).
19287
19288 (yymemcpy, yyparse): Rename local variables as needed so that
19289 they all begin with 'yy'.
19290
19291 (yystrlen, yystpcpy): New functions.
19292
19293 (YY_DECL_NON_LSP_VARIABLES): Renamed from _YY_DECL_VARIABLES.
19294 All uses changed.
19295
19296 (yyparse): size_t -> YYSIZE_T. Use yystrlen and yystpcpy
19297 instead of relying on string.h functions. Use YYSTACK_ALLOC
19298 and YYSTACK_FREE instead of malloc and free.
19299
19300 2001-11-30 Akim Demaille <akim@epita.fr>
19301
19302 * src/bison.simple (YYSTYPE, YYLTYPE): Move their definitions
19303 before their first uses.
19304 (YYBISON, YYPURE): Move to the top of the output.
19305
19306 2001-11-30 Akim Demaille <akim@epita.fr>
19307
19308 * tests/reduce.at (Useless Nonterminals): Fix.
19309
19310 2001-11-30 Akim Demaille <akim@epita.fr>
19311
19312 * src/bison.simple (YYSTACK_FREE): Use `do {;} while (0)' as empty
19313 if body instead of `;' to pacify GCC's warnings.
19314
19315 2001-11-30 Akim Demaille <akim@epita.fr>
19316
19317 Instead of mapping the LHS of unused rules to -1, keep the LHS
19318 valid, but flag the rules as invalid.
19319
19320 * src/gram.h (rule_t): `useful' is a new member.
19321 * src/print.c (print_grammar): Adjust.
19322 * src/derives.c (set_derives): Likewise.
19323 * src/reader.c (packgram, reduce_output): Likewise.
19324 * src/reduce.c (reduce_grammar_tables): Likewise.
19325 * tests/reduce.at (Underivable Rules, Useless Rules): New.
19326
19327 2001-11-30 Akim Demaille <akim@epita.fr>
19328
19329 * src/reduce.c (reduce_output): Formatting changes.
19330 * src/print.c (print_results, print_grammar): Likewise.
19331 * tests/regression.at (Rule Line Numbers)
19332 (Solved SR Conflicts, Unresolved SR Conflicts): Adjust.
19333
19334 2001-11-30 Akim Demaille <akim@epita.fr>
19335
19336 * src/reduce.c (nonterminals_reduce): Instead of throwing away
19337 useless nonterminals, move them at the end of the symbol arrays.
19338 (reduce_output): Adjust.
19339 * tests/reduce.at (Useless Nonterminals): Adjust.
19340
19341 2001-11-30 Akim Demaille <akim@epita.fr>
19342
19343 * src/reduce.c: Various comment/formatting changes.
19344 (nonterminals_reduce): New, extracted from...
19345 (reduce_grammar_tables): here.
19346 (reduce_grammar): Call nonterminals_reduce.
19347
19348 2001-11-29 Paul Eggert <eggert@twinsun.com>
19349
19350 * src/bison.simple (YYSTACK_REALLOC): Remove.
19351 (YYSTACK_ALLOC): Resurrect this macro, with its old meaning.
19352 (YYSTACK_FREE, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYSTACK_RELOCATE):
19353 New macros.
19354 (union yyalloc): New type.
19355 (__yy_memcpy): Last arg is size_t, not unsigned int, to remove
19356 an arbitrary restriction on hosts where size_t is wider than int.
19357
19358 (yyparse): Don't dump core if alloca or malloc fails; instead, report
19359 a parser stack overflow. Allocate just one block of memory for all
19360 three stacks, instead of allocating three blocks; this typically is
19361 faster and reduces fragmentation.
19362
19363 Do not limit the number of items in the stack to a value that fits
19364 in 'int', as this is an arbitrary limit on hosts with 64-bit
19365 size_t and 32-bit int.
19366
19367 2001-11-29 Marc Autret <autret_m@epita.fr>
19368
19369 * tests/calc.at [AT_DATA_CALC_Y]: Use %error-verbose instead
19370 of defining YYERROR_VERBOSE.
19371 [AT_DATA]: $4 is now out of C declarations in the prologue.
19372
19373 2001-11-28 Marc Autret <autret_m@epita.fr>
19374
19375 * src/reader.c (parse_dquoted_param): New.
19376 (parse_skel_decl): Use it.
19377 * src/lex.h: Add its prototype.
19378 * src/lex.c (literalchar): Become not static.
19379
19380 2001-11-28 Marc Autret <autret_m@epita.fr>
19381
19382 * src/output.h: And put its extern declaration here.
19383 * src/output.c (error_verbose): Define here.
19384 (prepare): Echo name modification.
19385 * src/getargs.h: Clean its extern declaration.
19386 * src/getargs.c (error_verbose_flag): Remove.
19387 (getargs): Remove case 'e'.
19388 * src/options.c (option_table): 'error-verbose' is now seen as simple
19389 percent option.
19390 Include output.h.
19391
19392 * src/reader.c (read_declarations): Remove case tok_include.
19393 (parse_include_decl): Remove.
19394 * src/lex.h (token_t): Remove tok_include.
19395 * src/options.c (option_table): 'include' is now a simple command line
19396 option.
19397
19398 2001-11-28 Marc Autret <autret_m@epita.fr>
19399
19400 * src/bison.simple: Adjust muscle names.
19401 * src/muscle_tab.c (muscle_init): Also rename the muscles.
19402 * src/output.c (prepare): s/_/-/ for the muscles names.
19403 (output_parser): When scanning for a muscle, allow '-' instead of '_'.
19404
19405 2001-11-28 Marc Autret <autret_m@epita.fr>
19406
19407 * src/bison.simple: Fix debug.
19408 [YYERROR_VERBOSE]: Re-integrate as an internal macro.
19409
19410 2001-11-28 Akim Demaille <akim@epita.fr>
19411
19412 * src/LR0.c (shifts_new): New.
19413 (save_shifts, insert_start_shift, augment_automaton): Use it.
19414
19415 2001-11-28 Akim Demaille <akim@epita.fr>
19416
19417 * src/closure.c (closure): `b' and `ruleno' denote the same value:
19418 keep ruleno only.
19419
19420 2001-11-28 Akim Demaille <akim@epita.fr>
19421
19422 * src/closure.c (closure): Instead of looping over word in array
19423 then bits in words, loop over bits in array.
19424
19425 2001-11-28 Akim Demaille <akim@epita.fr>
19426
19427 * src/closure.c (closure): No longer optimize the special case
19428 where all the bits of `ruleset[r]' are set to 0, to make the code
19429 clearer.
19430
19431 2001-11-28 Akim Demaille <akim@epita.fr>
19432
19433 * src/closure.c (closure): `r' and `c' are new variables, used to
19434 de-obfuscate accesses to RULESET and CORE.
19435
19436 2001-11-28 Akim Demaille <akim@epita.fr>
19437
19438 * src/reduce.c (reduce_print): Use ngettext.
19439 (dump_grammar): Improve the trace accuracy.
19440
19441 2001-11-28 Akim Demaille <akim@epita.fr>
19442
19443 * src/reduce.c (dump_grammar): Don't translate trace messages.
19444
19445 2001-11-28 Akim Demaille <akim@epita.fr>
19446
19447 * tests/reduce.at (Useless Terminals, Useless Nonterminals): New.
19448 * src/reduce.c (reduce_grammar_tables): Do not free useless tags,
19449 as all tags are free'ed afterwards.
19450 From Enrico Scholz.
19451
19452 2001-11-27 Paul Eggert <eggert@twinsun.com>
19453
19454 * src/bison.simple (YYSTACK_REALLOC): Fix typo that caused us to
19455 use alloca when we didn't want to, and vice versa.
19456
19457 2001-11-27 Marc Autret <autret_m@epita.fr>
19458
19459 * src/muscle_tab.c (muscle_init): Remove 'verbose' muscle
19460 initialization.
19461 * src/output.c (prepare): Remove its update.
19462
19463 2001-11-27 Marc Autret <autret_m@epita.fr>
19464
19465 * tests/torture.at [AT_DATA]: Remove YYERROR_VERBOSE definition.
19466 Use %error-verbose.
19467
19468 2001-11-27 Marc Autret <autret_m@epita.fr>
19469
19470 * src/bison.simple: Remove YYERROR_VERBOSE using.
19471 Use %%error_verbose.
19472 (yyparse): Likewise.
19473 * src/output.c (prepare): Give its final value.
19474 * src/muscle_tab.c (muscle_init): Init new muscle 'error_verbose'.
19475 * src/getargs.h: Add its extern declaration.
19476 * src/getargs.c (error_verbose_flag): New int.
19477 (getargs): Update to catch new case.
19478 * src/options.c (option_table): 'error-verbose' is a new option.
19479 (shortopts): Update.
19480
19481 2001-11-27 Akim Demaille <akim@epita.fr>
19482
19483 * src/system.h: Use intl/libgettext.h.
19484 * src/Makefile.am (INCLUDES): Add -I $(top_srcdir).
19485
19486 2001-11-27 Akim Demaille <akim@epita.fr>
19487
19488 * tests/torture.at (Exploding the Stack Size with Malloc):
19489 s/YYSTACK_USE_ALLOCA_ALLOCA/YYSTACK_USE_ALLOCA/.
19490
19491 2001-11-27 Akim Demaille <akim@epita.fr>
19492
19493 * src/files.c: Include error.h.
19494 Reported by Hans Aberg.
19495
19496 2001-11-26 Marc Autret <autret_m@epita.fr>
19497
19498 * src/reader.c (parse_include_decl): New, not yet implemented.
19499 (read_declarations): Add case tok_include.
19500 * src/getargs.h (include): Add its extern definition.
19501 * src/getargs.c (include): New const char *.
19502 (getargs): Add case '-I'.
19503 * src/options.c (option_table): Add include as command line and
19504 percent option.
19505 * src/lex.h (token_t): Add tok_include.
19506
19507 2001-11-26 Akim Demaille <akim@epita.fr>
19508
19509 * src/reader.c (readgram): Make sure rules for mid-rule actions
19510 have a lineno equal to that of their host rule.
19511 Reported by Hans Aberg.
19512 * tests/regression.at (Rule Line Numbers): New.
19513
19514 2001-11-26 Akim Demaille <akim@epita.fr>
19515
19516 * src/LR0.c (allocate_itemsets): kernel_size contains ints, not
19517 size_ts.
19518
19519 2001-11-26 Akim Demaille <akim@epita.fr>
19520
19521 * src/complain.c, src/complain.h (error): Remove, provided by
19522 lib/error.[ch].
19523
19524 2001-11-26 Akim Demaille <akim@epita.fr>
19525
19526 * src/reader.c (read_declarations): Don't abort on tok_illegal,
19527 issue an error message.
19528 * tests/regression.at (Invalid %directive): New.
19529 Reported by Hans Aberg.
19530
19531 2001-11-26 Akim Demaille <akim@epita.fr>
19532
19533 * configure.in: Invoke AC_FUNC_OBSTACK and AC_FUNC_ERROR_AT_LINE.
19534 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
19535
19536 2001-11-26 Akim Demaille <akim@epita.fr>
19537
19538 * src/conflicts.c (conflicts_print): Don't complain at all when
19539 there are no reduce/reduce conflicts, and as many shift/reduce
19540 conflicts as expected.
19541 * tests/regression.at (%expect right): Adjust.
19542
19543 2001-11-23 Akim Demaille <akim@epita.fr>
19544
19545 * lib/alloca.c: Update, from fileutils.
19546
19547 2001-11-23 Akim Demaille <akim@epita.fr>
19548
19549 * lib/Makefile.am (libbison_a_LIBADD): Add @ALLOCA@.
19550
19551 2001-11-23 Akim Demaille <akim@epita.fr>
19552
19553 * src/system.h: Include alloca.h.
19554 * src/main.c (main) [C_ALLOCA]: Call alloca (0).
19555
19556 2001-11-23 Akim Demaille <akim@epita.fr>
19557
19558 * src/print_graph.c (print_actions): Remove `rule', unused.
19559 * src/LR0.c (kernel_size): Contain `int' instead of `size_t' to
19560 pacify GCC's signed < unsigned warnings.
19561 * src/closure.c (itemsetsize): Likewise.
19562 * src/reader.c (symbol_list_new): Static.
19563
19564 2001-11-23 Akim Demaille <akim@epita.fr>
19565
19566 Attaching lineno to buckets is stupid, since only one copy of each
19567 symbol is kept, only the line of the first occurrence is kept too.
19568
19569 * src/symtab.h, src/symtab.c (bucket): Remove the line member.
19570 * src/reader.c (rline_allocated): Remove, unused.
19571 (symbol_list): Have a `line' member.
19572 (symbol_list_new): New.
19573 (readgram): Use it.
19574 * src/print.c (print_grammar): Output the rule line numbers.
19575 * tests/regression.at (Solved SR Conflicts)
19576 (Unresolved SR Conflicts): Adjust.
19577 Reported by Hans Aberg.
19578
19579 2001-11-22 Marc Autret <autret_m@epita.fr>
19580
19581 * src/bison.simple [YYERROR_VERBOSE]: Force its value to be 1 or 0.
19582
19583 2001-11-22 Marc Autret <autret_m@epita.fr>
19584
19585 * src/muscle_tab.c (muscle_init): Remove initialization of
19586 skeleton muscle.
19587 * src/output.c (output_master_parser): Do it here.
19588
19589 2001-11-20 Akim Demaille <akim@epita.fr>
19590
19591 * po/sv.po: New.
19592 * configure.in (ALL_LINGUAS): Adjust.
19593 * po/POTFILE.in: Remove `nullable.c' and `derives.c' which no
19594 longer contains strings to translate.
19595
19596 2001-11-19 Akim Demaille <akim@epita.fr>
19597
19598 * src/conflicts.c (conflicts_print): Add a missing \n.
19599
19600 2001-11-19 Akim Demaille <akim@epita.fr>
19601
19602 * src/nullable.c (nullable_print): New.
19603 (set_nullable): Call it when tracing.
19604 Better locality of variables.
19605
19606 2001-11-19 Akim Demaille <akim@epita.fr>
19607
19608 * src/print.c (print_actions): Better locality of variables.
19609
19610 2001-11-19 Akim Demaille <akim@epita.fr>
19611
19612 * src/derives.c (print_derives): Fix and enrich.
19613 * src/closure.c (print_fderives): Likewise.
19614
19615 2001-11-19 Akim Demaille <akim@epita.fr>
19616
19617 * src/closure.c (itemsetend): Remove, replaced with...
19618 (itemsetsize): new.
19619
19620 2001-11-19 Akim Demaille <akim@epita.fr>
19621
19622 * src/LR0.c (kernel_end): Remove, replaced with...
19623 (kernel_size): new.
19624
19625 2001-11-19 Akim Demaille <akim@epita.fr>
19626
19627 * src/conflicts.c (set_conflicts): Use arrays instead of pointers
19628 to clarify.
19629
19630 2001-11-19 Akim Demaille <akim@epita.fr>
19631
19632 * src/closure.c (closure): Use arrays instead of pointers to clarify.
19633
19634 2001-11-19 Akim Demaille <akim@epita.fr>
19635
19636 * src/closure.c, src/derives.c, src/nullable.c: Adjust various
19637 trace messages.
19638 * src/LR0.c: Likewise.
19639 (allocate_itemsets): Use arrays instead of pointers to clarify.
19640
19641 2001-11-19 Akim Demaille <akim@epita.fr>
19642
19643 * src/getargs.c (statistics_flag): Replace with...
19644 (trace_flag): New.
19645 (longopts): Accept --trace instead of --statistics.
19646 * src/getargs.h, src/options.c: Adjust.
19647 * src/LR0.c, src/closure.c, src/derives.c, src/nullable.c,
19648 * src/reduce.c: Use trace_flags instead of the CPP conditional TRACE.
19649
19650 2001-11-19 Akim Demaille <akim@epita.fr>
19651
19652 * src/LR0.c (new_itemsets, get_state): Use more arrays and fewer
19653 pointers to clarify the code.
19654 (save_reductions, save_shifts): Factor common parts of alternatives.
19655
19656 2001-11-19 Akim Demaille <akim@epita.fr>
19657
19658 * src/LR0.c (new_state, get_state): Complete TRACE code.
19659 * src/closure.c: Include `reader.h' to get `tags', needed by the
19660 trace code.
19661 Rename the conditional DEBUG as TRACE.
19662 Output consistently TRACEs to stderr, not stdout.
19663 * src/derives.c: Likewise.
19664 * src/reduce.c: (inaccessable_symbols): Using if is better style
19665 than goto.
19666 Use `#if TRACE' instead of `#if 0' for tracing code.
19667
19668 2001-11-19 Akim Demaille <akim@epita.fr>
19669
19670 * src/system.h (LIST_FREE, shortcpy): New.
19671 * src/LR0.c: Use them.
19672 * src/output.c (free_itemsets, free_reductions, free_shifts):
19673 Remove, replaced by LIST_FREE.
19674
19675 2001-11-19 Akim Demaille <akim@epita.fr>
19676
19677 * src/state.h (CORE_ALLOC, SHIFTS_ALLOC, ERRS_ALLOC)
19678 (REDUCTIONS_ALLOC): New.
19679 * src/LR0.c, src/conflicts.c: Use them to de-obfuscate memory
19680 allocation.
19681
19682 2001-11-19 Akim Demaille <akim@epita.fr>
19683
19684 * src/LR0.c (new_state): Complete trace code.
19685 * src/nullable.c (set_nullable): Don't translate traces.
19686
19687 2001-11-19 Akim Demaille <akim@epita.fr>
19688
19689 * src/print_graph.c (print_core): Better locality of variables.
19690 * src/print.c (print_core): Likewise.
19691
19692 2001-11-19 Akim Demaille <akim@epita.fr>
19693
19694 * src/vcg.c: You do the output, so you are responsible of the
19695 handling of VCG syntax, in particular: use quotearg.
19696 * src/print_graph.c: Don't.
19697 (print_actions): Don't output the actions as part of the nodes,
19698 since that's the job of the edges.
19699 (print_state): Don't output by hand: fill the node description,
19700 and ask for its output.
19701
19702 2001-11-19 Akim Demaille <akim@epita.fr>
19703
19704 * src/bison.simple (yyparse): When verbosely reporting an error,
19705 no longer put additional quotes around token names.
19706 * tests/calc.at: Adjust.
19707
19708 2001-11-19 Akim Demaille <akim@epita.fr>
19709
19710 * src/symtab.h, src/symtab.c: `line' is a new member of `bucket'.
19711 * src/reader.c (record_rule_lines, rline, rline_allocated): Remove.
19712 * src/output.c: Adjust.
19713
19714 2001-11-19 Akim Demaille <akim@epita.fr>
19715
19716 * src/gram.h (rprec, rprecsym, rassoc): Remove, now part of...
19717 (rule_t): this.
19718 * src/conflicts.c, src/reader.c, src/reduce.c: Adjust.
19719
19720 2001-11-19 Akim Demaille <akim@epita.fr>
19721
19722 * src/gram.h (rule_t): New.
19723 (rule_table): New.
19724 (rrhs, rlhs): Remove, part of state_t.
19725 * src/print_graph.c, src/closure.c, src/conflicts.c, src/derives.c,
19726 * src/lalr.c, src/nullable.c, src/output.c, src/print.c,
19727 * src/reader.c, src/reduce.c: Adjust.
19728
19729 2001-11-19 Akim Demaille <akim@epita.fr>
19730
19731 * src/reader.c (symbols_output): New, extracted from...
19732 (packsymbols): Here.
19733 (reader): Call it.
19734
19735 2001-11-19 Akim Demaille <akim@epita.fr>
19736
19737 * src/lalr.c (set_maxrhs, maxrhs): Remove, replaced with...
19738 (maxrhs): this new function.
19739
19740 2001-11-19 Akim Demaille <akim@epita.fr>
19741
19742 * src/lalr.c (F): New macro to access the variable F.
19743 Adjust.
19744
19745 2001-11-19 Akim Demaille <akim@epita.fr>
19746
19747 * src/lalr.h (LA): New macro to access the variable LA.
19748 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
19749 * src/lalr.c: Adjust.
19750
19751 2001-11-19 Akim Demaille <akim@epita.fr>
19752
19753 * src/lalr.c (initialize_LA): Only initialize LA. Let...
19754 (set_state_table): handle the `lookaheads' members.
19755
19756 2001-11-19 Akim Demaille <akim@epita.fr>
19757
19758 * src/lalr.h (lookaheads): Removed array, whose contents is now
19759 a member of...
19760 (state_t): this structure.
19761 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
19762 Adjust.
19763
19764 2001-11-19 Akim Demaille <akim@epita.fr>
19765
19766 * src/lalr.h (consistent): Removed array, whose contents is now
19767 a member of...
19768 (state_t): this structure.
19769 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
19770 Adjust.
19771
19772 2001-11-19 Akim Demaille <akim@epita.fr>
19773
19774 * src/lalr.h (reduction_table, shift_table): Removed arrays, whose
19775 contents are now members of...
19776 (state_t): this structure.
19777 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
19778 Adjust.
19779
19780 2001-11-19 Akim Demaille <akim@epita.fr>
19781
19782 * src/lalr.h (state_t): New.
19783 (state_table): Be a state_t * instead of a core **.
19784 (accessing_symbol): Remove, part of state_t.
19785 * src/lalr.c: Adjust.
19786 (set_accessing_symbol): Merge into...
19787 (set_state_table): this.
19788 * src/print_graph.c, src/conflicts.c: Adjust.
19789
19790 2001-11-14 Akim Demaille <akim@epita.fr>
19791
19792 * tests/calc.at, tests/output.at, tests/regression.at,
19793 * tests/testsuite.at, tests/torture.at: Rely on Autotest 2.52g:
19794 now the tests are run in private dirs, therefore AC_CLEANUP and
19795 family can be simplified to 0-ary.
19796 * tests/atlocal.in: Now that we run `elsewhere' than in tests/,
19797 use abs. path to find config.h.
19798 * tests/calc.at (AT_CHECK_CALC): Don't try to check the compiler's
19799 stderr, there can be way too much random noise.
19800 Instead pass -Werror to GCC and rely on the exit status.
19801 Reported by Wolfram Wagner.
19802
19803 2001-11-14 Akim Demaille <akim@epita.fr>
19804
19805 * src/bison.simple (yyparse): Let yyls1, yyss1 and yyvs1 be
19806 defined only if yyoverflow is defined, to avoid `warning: unused
19807 variable `yyvs1''.
19808 Reported by The Test Suite.
19809
19810 2001-11-14 Akim Demaille <akim@epita.fr>
19811
19812 * src/print.c: Include reduce.h.
19813 Reported by Hans Aberg.
19814
19815 2001-11-14 Akim Demaille <akim@epita.fr>
19816
19817 * src/lex.c, src/lex.h (token_buffer, unlexed_token_buffer):
19818 Revert a previous patch: these are really const.
19819 * src/conflicts.c (conflict_report): Additional useless pair of
19820 braces to pacify GCC's warnings for `if () if () {} else {}'.
19821 * src/lex.c (parse_percent_token): Replace equal_offset with
19822 arg_offset.
19823 arg is const.
19824 Be sure to strdup `arg' when used, since there is no reason for
19825 token_buffer not to change.
19826
19827 2001-11-14 Akim Demaille <akim@epita.fr>
19828
19829 * src/system.h (EXIT_SUCCESS, EXIT_FAILURE): Ensure a proper
19830 definition.
19831 * src/main.c (main): Use them.
19832 Suggested by Hans Aberg.
19833
19834 2001-11-12 Akim Demaille <akim@epita.fr>
19835
19836 * src/system.h (ngettext): Now that we use ngettext, be sure to
19837 provide a default definition when NLS are not used.
19838
19839 2001-11-12 Akim Demaille <akim@epita.fr>
19840
19841 * doc/bison.texinfo: Use `$' as shell prompt, not `%'.
19842 Use @kbd to denote user input.
19843 (Language and Grammar): ANSIfy the example.
19844 Adjust its layout for info/notinfo.
19845 (Location Tracking Calc): Output error messages to stderr.
19846 Output locations in a more GNUtically correct way.
19847 Fix a couple of Englishos.
19848 Adjust @group/@end group pairs.
19849
19850 2001-11-12 Akim Demaille <akim@epita.fr>
19851
19852 %expect was not functioning at all.
19853
19854 * src/conflicts.c (expected_conflicts): Set to -1.
19855 (conflict_report): Use ngettext.
19856 (conflicts_print): Check %expect and make its violation an error.
19857 * doc/bison.texinfo (Expect Decl): Adjust.
19858 * configure.in (AM_GNU_GETTEXT): Ask for ngettext.
19859 * tests/regression.at (%expect not enough, %expect right)
19860 (%expect too much): New.
19861
19862 2001-11-12 Akim Demaille <akim@epita.fr>
19863
19864 * tests/regression.at (Conflicts): Rename as...
19865 (Unresolved SR Conflicts): this.
19866 (Solved SR Conflicts): New.
19867
19868 2001-11-12 Akim Demaille <akim@epita.fr>
19869
19870 * src/reduce.c (print_results): Rename as...
19871 (reduce_output): This.
19872 Output to OUT, passed as argument, instead of output_obstack.
19873 (dump_grammar): Likewise.
19874 (reduce_free): New.
19875 Also free V1.
19876 (reduce_grammar): No longer call reduce_output, since...
19877 * src/print.c (print_results): do it.
19878 * src/main.c (main): Call reduce_free;
19879
19880 2001-11-12 Akim Demaille <akim@epita.fr>
19881
19882 * src/conflicts.c (print_reductions): Accept OUT as argument.
19883 Output to it, not to output_obstack.
19884 * src/print.c (print_actions): Adjust.
19885
19886 2001-11-12 Akim Demaille <akim@epita.fr>
19887
19888 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts): Return
19889 the result instead of using...
19890 (src_total, rrc_total, src_count, rrc_count): Remove.
19891 (any_conflicts): Remove.
19892 (print_conflicts): Split into...
19893 (conflicts_print, conflicts_output): New.
19894 * src/conflicts.h: Adjust.
19895 * src/main.c (main): Invoke both conflicts_output and conflicts_print.
19896 * src/print.c (print_grammar): Issue `\n' between two rules.
19897 * tests/regression.at (Conflicts): New.
19898 Reported by Tom Lane.
19899
19900 2001-11-12 Akim Demaille <akim@epita.fr>
19901
19902 * tests/regression.at (Invalid input): Remove, duplicate with
19903 ``Invalid input: 1''.
19904
19905 2001-11-12 Akim Demaille <akim@epita.fr>
19906
19907 * tests/torture.at (AT_DATA_STACK_TORTURE)
19908 (Exploding the Stack Size with Alloca)
19909 (Exploding the Stack Size with Malloc): New.
19910
19911 2001-11-12 Akim Demaille <akim@epita.fr>
19912
19913 * src/bison.simple (YYSTACK_REALLOC): New.
19914 (yyparse) [!yyoverflow]: Use it and free the old stack.
19915 Reported by Per Allansson.
19916
19917 2001-11-12 Pascal Bart <pascal.bart@epita.fr>
19918
19919 * src/bison.simple: Define type yystype instead of YYSTYPE, and
19920 define CPP macro, which substitute YYSTYPE by yystype.
19921 * src/reader.c (parse_union_decl): Output yystype/YYSTYPE as we do
19922 with yyltype/YYLTYPE. This allows inclusion of the generated
19923 header within the parser if the compiler, such as GGC, accepts
19924 multiple equivalent #defines.
19925 From Akim.
19926
19927 2001-11-05 Akim Demaille <akim@epita.fr>
19928
19929 * src/reader.c (symbols_output): New, extracted from...
19930 (packsymbols): here.
19931 (reader): Adjust.
19932
19933 2001-11-05 Akim Demaille <akim@epita.fr>
19934
19935 * src/lex.c (parse_percent_token): s/quotearg/quote/.
19936
19937 2001-11-05 Akim Demaille <akim@epita.fr>
19938
19939 * tests/regression.at (AT_TEST_CPP_GUARD_H): Adjust the clean up
19940 pattern.
19941
19942 2001-11-05 Akim Demaille <akim@epita.fr>
19943
19944 * src/options.h (struct option_table_struct): set_flags is void*.
19945 * src/options.c (longopts): Support `--output' and `%output'.
19946 (usage): Adjust.
19947 * src/lex.h (tok_setopt): Remove, replaced with...
19948 (tok_intopt, tok_stropt): these new guys.
19949 * src/lex.c (getopt.h): Not needed.
19950 (token_buffer, unlexed_token_buffer): Not const.
19951 (percent_table): Promote `-' over `_' in directive names.
19952 Active `%name-prefix', `file-prefix', and `output'.
19953 (parse_percent_token): Accept possible arguments to directives.
19954 Promote `-' over `_' in directive names.
19955
19956 2001-11-04 Akim Demaille <akim@epita.fr>
19957
19958 * doc/bison.texinfo (Decl Summary): Split the list into
19959 `directives for grammars' and `directives for bison'.
19960 Sort'em.
19961 Add description of `%name-prefix', `file-prefix', and `output'.
19962 Promote `-' over `_' in directive names.
19963 (Bison Options): s/%locactions/%locations/. Nice Freudian slip.
19964 Simplify the description of `--name-prefix'.
19965 Promote `-' over `_' in directive names.
19966 Promote `--output' over `--output-file'.
19967 Fix the description of `--defines'.
19968 * tests/output.at: Exercise %file-prefix and %output.
19969
19970 2001-11-02 Akim Demaille <akim@epita.fr>
19971
19972 * doc/refcard.tex: Update.
19973
19974 2001-11-02 Akim Demaille <akim@epita.fr>
19975
19976 * src/symtab.h (SUNDEF): New.
19977 * src/symtab.c (bucket_new): Init user_token_number to SUNDEF to
19978 stand for `uninitialized', instead of 0.
19979 * src/reader.c (packsymbols, parse_thong_decl): Adjust.
19980 * src/lex.c (lex): Adjust.
19981
19982 * tests/calc.at (_AT_DATA_CALC_Y): Declare a token for EOF.
19983 Number it 0.
19984 Let yylex return it instead of a plain 0.
19985 Reported by Dick Streefland.
19986
19987 2001-11-02 Akim Demaille <akim@epita.fr>
19988
19989 * tests/regression.at (Mixing %token styles): New test.
19990
19991 2001-11-02 Akim Demaille <akim@epita.fr>
19992
19993 * src/reader.c (parse_thong_decl): Formatting changes.
19994 (token_translations_init): New, extracted from...
19995 (packsymbols): Here.
19996 Adjust.
19997
19998 2001-11-01 Akim Demaille <akim@epita.fr>
19999
20000 * tests/regression.at (AT_TEST_CPP_GUARD_H): New.
20001 Check that `9foo.y' produces correct cpp guards.
20002 * src/files.c (compute_header_macro): Prepend `BISON_' to CPP
20003 guards.
20004 Reported by Wwp.
20005
20006 2001-11-01 Akim Demaille <akim@epita.fr>
20007
20008 * tests/regression.at (Invalid input: 2): New.
20009 * src/lex.c (unlexed_token_buffer): New.
20010 (lex, unlex): Adjust: when unlexing, be sure to save token_buffer
20011 too.
20012 Reported by Wwp.
20013
20014 2001-11-01 Akim Demaille <akim@epita.fr>
20015
20016 * tests/calc.at: Catch up with 1.30.
20017 * configure.in: Bump to 1.49a.
20018 Adjust to newer Autotest.
20019
20020 2001-10-19 Pascal Bart <pascal.bart@epita.fr>
20021
20022 * src/conflicts.c: Move global variables rrc_total and src_total ...
20023 (print_conflicts): here.
20024 * src/output.c (output): Free global variable user_toknums.
20025 * src/lex.c (token_obstack): Become static.
20026
20027 2001-10-18 Akim Demaille <akim@epita.fr>
20028
20029 * tests/atlocal.in (GCC): Add.
20030 * tests/calc.at: s/m4_match/m4_bmatch/.
20031 s/m4_patsubst/m4_bpatsubst/.
20032 (AT_CHECK_CALC): Check the compiler's stderr only if it's GCC.
20033 * configure.in: AC_SUBST(GCC).
20034
20035 2001-10-14 Marc Autret <autret_m@epita.fr>
20036
20037 * src/options.c (create_long_option_table): Fix.
20038
20039 2001-10-10 Akim Demaille <akim@epita.fr>
20040
20041 * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
20042
20043 2001-10-04 Akim Demaille <akim@epita.fr>
20044
20045 * src/reader.c (parse_union_decl): Push the caracters in
20046 union_obstack, not attrs_obstack.
20047
20048 2001-10-04 Akim Demaille <akim@epita.fr>
20049
20050 Merge in the branch 1.29.
20051
20052 * src/reader.c (packsymbols): Use a temporary obstack for
20053 `%%tokendef', since output_stack is already used elsewhere.
20054
20055 2001-10-02 Akim Demaille <akim@epita.fr>
20056
20057 Bump 1.29d.
20058
20059 2001-10-02 Akim Demaille <akim@epita.fr>
20060
20061 Version 1.29c.
20062
20063 2001-10-02 Akim Demaille <akim@epita.fr>
20064
20065 * tests/regression.at (Invalid CPP headers): New.
20066 From Alexander Belopolsky.
20067 * src/files.c (compute_header_macro): Map non alnum chars to `_'.
20068
20069 2001-10-02 Akim Demaille <akim@epita.fr>
20070
20071 * tests/regression.at (Invalid input): New.
20072 * src/lex.c (lex): Be sure to set `token_buffer' in any case.
20073 Reported by Shura.
20074
20075 2001-10-02 Akim Demaille <akim@epita.fr>
20076
20077 * tests/calc.at: Now that --debug works, the tests must be adjusted.
20078
20079 2001-10-02 Akim Demaille <akim@epita.fr>
20080
20081 * src/output.c (output_parser): Assert `skeleton'.
20082 * src/files.c (skeleton_find): Look harder for skeletons on DOSish
20083 systems.
20084 From Shura.
20085
20086 2001-10-01 Marc Autret <autret_m@epita.fr>
20087
20088 * src/lex.h: Echo modifications.
20089 * src/lex.c (unlex): Parameter is now token_t.
20090 From Hans Aberg.
20091
20092 2001-10-01 Marc Autret <autret_m@epita.fr>
20093
20094 * src/main.c: Include lex.h.
20095 From Hans Aberg.
20096
20097 2001-09-29 Akim Demaille <akim@epita.fr>
20098
20099 * src/getargs.c (longopts): `--debug' is `-t', not `-d'.
20100
20101 2001-09-28 Akim Demaille <akim@epita.fr>
20102
20103 * tests/testsuite.at: Update to newer Autotest.
20104 * tests/Makefile.am (EXTRA_DIST): bison is not to be shipped.
20105
20106 2001-09-27 Akim Demaille <akim@epita.fr>
20107
20108 Position independent wrapper.
20109
20110 * tests/bison: Remove.
20111 * tests/bison.in: New.
20112 * configure.in: Adjust.
20113
20114 2001-09-27 Paul Eggert <eggert@twinsun.com>
20115
20116 Port quotearg fixes from tar 1.13.24.
20117
20118 * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
20119 tm to be declared.
20120 (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
20121 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
20122
20123 * m4/Makefile.am (EXTRA_DIST): Add mbrtowc.m4.
20124 * m4/mbrtowc.m4: New file.
20125 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit and stddef.h.
20126 Use jm_FUNC_MBRTOWC instead of AC_CHECK_FUNCS(mbrtowc).
20127
20128 2001-09-27 Akim Demaille <akim@epita.fr>
20129
20130 Bump to 1.29c.
20131
20132 2001-09-27 Akim Demaille <akim@epita.fr>
20133
20134 Version 1.29b.
20135
20136 2001-09-25 Akim Demaille <akim@epita.fr>
20137
20138 * src/system.h: Include `xalloc.h'.
20139 Remove it from the C files.
20140 * src/files.c (output_files): Free the obstacks.
20141 * src/lex.c (init_lex): Rename as...
20142 (lex_init): this.
20143 (lex_free): New.
20144 * src/main.c (main): Use it.
20145
20146 2001-09-24 Marc Autret <autret_m@epita.fr>
20147
20148 * src/vcg.c (open_edge, close_edge, open_node, close_node): Change
20149 to output informations in fout (FILE*).
20150 (open_graph, close_graph): Likewise.
20151 (output_graph, output_edge, output_node): Likewise.
20152 * src/vcg.h: Update function prototypes.
20153 * src/print_graph.c (print_graph): Open output graph file.
20154 (print_actions): Adjust.
20155 * src/files.h: Remove extern declaration.
20156 * src/files.c: Remove graph_obstack declaration.
20157 (open_files): Remove graph_obstack initialization.
20158 (output_files): Remove graph_obstack saving.
20159
20160 2001-09-24 Marc Autret <autret_m@epita.fr>
20161
20162 * src/files.c (compute_output_file_names): Fix.
20163
20164 2001-09-24 Marc Autret <autret_m@epita.fr>,
20165 Akim Demaille <akim@epita.fr>
20166
20167 * src/reader.c (reader): Remove call to free_symtab ().
20168 * src/main.c (main): Call it here.
20169 Include symtab.h.
20170 * src/conflicts.c (initialize_conflicts): Rename as...
20171 (solve_conflicts): this.
20172 * src/print.c (print_core, print_actions, print_state)
20173 (print_grammar): Dump to a file instead a `output_obstack'.
20174 (print_results): Dump `output_obstack', and then proceed with the
20175 FILE *.
20176 * src/files.c (compute_output_file_names, close_files): New.
20177 (output_files): Adjust.
20178 * src/main.c (main): Adjust.
20179
20180 2001-09-23 Marc Autret <autret_m@epita.fr>
20181
20182 * src/files.c (compute_header_macro): Computes header macro name
20183 from spec_defines_file when given.
20184
20185 2001-09-23 Marc Autret <autret_m@epita.fr>
20186
20187 * src/files.c (output_files): Add default extensions.
20188
20189 2001-09-22 Akim Demaille <akim@epita.fr>
20190
20191 * src/conflicts.c (finalize_conflicts): Rename as...
20192 (free_conflicts): this.
20193
20194 2001-09-22 Akim Demaille <akim@epita.fr>
20195
20196 * src/gram.c (gram_free): Rename back as...
20197 (dummy): this.
20198 (output_token_translations): Free `token_translations'.
20199 * src/symtab.c (free_symtab): Free the tag field.
20200
20201 2001-09-22 Akim Demaille <akim@epita.fr>
20202
20203 Remove `translations' as it is always set to true.
20204
20205 * src/gram.h: Adjust.
20206 * src/reader.c (packsymbols, parse_token_decl): Adjust
20207 * src/print.c (print_grammar): Adjust.
20208 * src/output.c (output_token_translations): Adjust.
20209 * src/lex.c (lex): Adjust.
20210 * src/gram.c: Be sure the set pointers to NULL.
20211 (dummy): Rename as...
20212 (gram_free): this.
20213
20214 2001-09-22 Akim Demaille <akim@epita.fr>
20215
20216 * configure.in: Invoke AM_LIB_DMALLOC.
20217 * src/system.h: Use dmalloc.
20218 * src/LR0.c: Be sure to have pointers initialized to NULL.
20219 (allocate_itemsets): Allocate kernel_items only if needed.
20220
20221 2001-09-22 Akim Demaille <akim@epita.fr>
20222
20223 * configure.in: Bump to 1.29b.
20224 * tests/Makefile.am (DISTCLEANFILES): Add package.m4.
20225 * tests/calc.at (_AT_DATA_CALC_Y): #undef malloc so that we don't
20226 need xmalloc.c in calc.y.
20227 From Pascal Bart.
20228
20229 2001-09-21 Akim Demaille <akim@epita.fr>
20230
20231 Version 1.29a.
20232 * Makefile.maint, config/config.guess, config/config.sub,
20233 * config/missing: Update from masters.
20234 * tests/Makefile.am ($(srcdir)/$(TESTSUITE)): No longer depend
20235 upon package.m4.
20236 * configure.in (ALL_LINGUAS): Add `tr'.
20237
20238 2001-09-21 Akim Demaille <akim@epita.fr>
20239
20240 * tests/Makefile.am (package.m4): Move to...
20241 ($(srcdir)/$(TESTSUITE)): here.
20242
20243 2001-09-20 Akim Demaille <akim@epita.fr>
20244
20245 * src/complain.c: No longer try to be standalone: use system.h.
20246 Don't assume __STDC__ is defined to 1. Just test if it is defined.
20247 * src/complain.h: Likewise.
20248 * src/reduce.c (useless_nonterminals, inaccessable_symbols):
20249 Remove the unused variable `n'.
20250 From Albert Chin-A-Young.
20251
20252 2001-09-18 Marc Autret <autret_m@epita.fr>
20253
20254 * doc/bison.1: Update.
20255 * doc/bison.texinfo (Bison Options): Update --defines and --graph
20256 descriptions.
20257 (Option Cross Key): Update.
20258 Add --graph.
20259
20260 2001-09-18 Marc Autret <autret_m@epita.fr>
20261
20262 * tests/regression.at: New test (comment in %union).
20263
20264 2001-09-18 Marc Autret <autret_m@epita.fr>
20265
20266 * src/reader.c (parse_union_decl): Do not output '/'. Let copy_comment
20267 do that.
20268 Reported by Keith Browne.
20269
20270 2001-09-18 Marc Autret <autret_m@epita.fr>
20271
20272 * tests/output.at: Add tests for --defines and --graph.
20273
20274 2001-09-18 Marc Autret <autret_m@epita.fr>
20275
20276 * tests/output.at: Removes tests of %{header,src}_extension features.
20277
20278 2001-09-18 Akim Demaille <akim@epita.fr>
20279
20280 * tests/Makefile.am (package.m4): New.
20281 * tests/calc.at (_AT_CHECK_CALC): Just run `calc input'.
20282 (_AT_CHECK_CALC_ERROR): Likewise.
20283 Factor the `, ' part of verbose error messages.
20284
20285 2001-09-18 Marc Autret <autret_m@epita.fr>
20286
20287 * src/getargs.c (longopts): Declare --defines and --graph as options
20288 with optional arguments.
20289 * src/files.h: Add extern declarations.
20290 * src/files.c (spec_graph_file, spec_defines_file): New.
20291 (output_files): Update.
20292 Remove CPP-outed code.
20293
20294 2001-09-18 Marc Autret <autret_m@epita.fr>
20295
20296 Turn off %{source,header}_extension feature.
20297
20298 * src/files.c (compute_exts_from_gf): Update.
20299 (compute_exts_from_src): Update.
20300 (output_files): CPP-out useless code.
20301 * src/files.h: Remove {header,source}_extension extern declarations.
20302 * src/reader.c (parse_dquoted_param): CPP-out.
20303 (parse_header_extension_decl): Remove.
20304 (parse_source_extension_decl): Remove.
20305 (read_declarations): Remove cases tok_{hdrext,srcext}.
20306 * src/lex.c (percent_table): Remove {header,source}_extension entries.
20307 * src/lex.h (token_t): Remove tok_hdrext and tok_srcext.
20308
20309 2001-09-10 Akim Demaille <akim@epita.fr>
20310
20311 * tests/output.at (AT_CHECK_BISON_FLAGS, AT_CHECK_BISON_PERCENT):
20312 (AT_CHECK_BISON_PERCENT_FLAGS): Merge into...
20313 (AT_CHECK_OUTPUT): this.
20314 Merely check ls' exit status, its output is useless.
20315
20316 2001-09-10 Akim Demaille <akim@epita.fr>
20317
20318 * tests/calc.at: Use m4_match.
20319 (_AT_DATA_CALC_Y): Check `yyin != NULL', not `stdin != NULL'.
20320
20321 2001-09-10 Marc Autret <autret_m@epita.fr>,
20322 Akim Demaille <akim@epita.fr>
20323
20324 * src/vcg.h (graph_s): color, textcolor, bordercolor are now
20325 enum color_e.
20326 * src/print_graph.c (print_graph): Initalize graph.layoutalgorithm
20327 to `normal'.
20328 * src/reader.c (parse_token_decl): Initialize token with tok_eof.
20329 * src/lex.h: Adjust prototype.
20330 (token_t): Add `tok_undef'.
20331 * src/lex.c (struct percent_table_struct): Retval is now a token_t.
20332 (parse_percent_token): Now returns token_t.
20333 Add default statement in switch.
20334 (lex): Separate `c' as an input variable, from the token_t result
20335 part.
20336 (unlexed): Is a token_t.
20337
20338 2001-09-10 Akim Demaille <akim@epita.fr>
20339
20340 * configure.in: Bump to 1.29a.
20341
20342 2001-09-07 Akim Demaille <akim@epita.fr>
20343
20344 Version 1.29.
20345
20346 2001-08-30 Akim Demaille <akim@epita.fr>
20347
20348 * tests/atgeneral.m4, tests/atconfig.in, tests/suite.at: Remove.
20349 * m4/atconfig.m4: Remove.
20350 * tests/testsuite.at, tests/atlocal.in, tests/output.at,
20351 * tests/bison: New.
20352 * tests/regression.at, tests/calc.at: Use m4_define, AT_BANNER,
20353 m4_if, m4_patsubst, and m4_regexp.
20354 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Use an
20355 `input' file instead of echo.
20356
20357 2001-08-29 Akim Demaille <akim@epita.fr>
20358
20359 Bump to 1.28e.
20360
20361 2001-08-29 Akim Demaille <akim@epita.fr>
20362
20363 Version 1.28d.
20364
20365 2001-08-29 Paul Eggert <eggert@twinsun.com>
20366
20367 * src/bison.simple (yyparse): Don't take the address of an
20368 item before the start of an array, as that doesn't conform to
20369 the C Standard.
20370
20371 2001-08-29 Robert Anisko <anisko_r@epita.fr>
20372
20373 * doc/bison.texinfo (Location Tracking Calc): New node.
20374
20375 2001-08-29 Paul Eggert <eggert@twinsun.com>
20376
20377 * src/output.c (output): Do not define const, as this now
20378 causes more problems than it cures.
20379
20380 2001-08-29 Akim Demaille <akim@epita.fr>
20381
20382 * doc/bison.texinfo: Modernize `@node' and `@top' use: just name
20383 the nodes.
20384 Be sure to tag the `detailmenu'.
20385
20386 2001-08-29 Akim Demaille <akim@epita.fr>
20387
20388 * Makefile.maint (do-po-update): Wget refuses to overwrite files:
20389 download in a tmp dir.
20390
20391 2001-08-28 Marc Autret <autret_m@epita.fr>
20392
20393 * config/depcomp: New file.
20394
20395 2001-08-28 Marc Autret <autret_m@epita.fr>
20396
20397 * doc/bison.1 (mandoc): Adjust.
20398 From Juan Manuel Guerrero.
20399
20400 2001-08-28 Marc Autret <autret_m@epita.fr>
20401
20402 * src/print_graph.c (print_state): Fix.
20403
20404 2001-08-27 Marc Autret <autret_m@epita.fr>
20405
20406 * src/vcg.h (classname_s, infoname_s, node_s): Constify the
20407 char * members.
20408 Echo modifications to the functions prototypes.
20409 * src/vcg.c (add_classname, add_infoname): Adjust arguments.
20410
20411 2001-08-27 Marc Autret <autret_m@epita.fr>
20412
20413 * src/vcg.c: Include `xalloc.h'.
20414 (add_colorentry): New.
20415 (add_classname): New.
20416 (add_infoname): New.
20417 * src/vcg.h: Add new prototypes.
20418
20419 2001-08-27 Akim Demaille <akim@epita.fr>
20420
20421 * Makefile.maint: Sync. again with CVS Autoconf.
20422
20423 2001-08-27 Akim Demaille <akim@epita.fr>
20424
20425 * Makefile.maint: Formatting changes.
20426 (po-update, cvs-update, update): New targets.
20427 (AMTAR): Remove.
20428
20429 2001-08-27 Akim Demaille <akim@epita.fr>
20430
20431 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
20432 * Makefile.maint: Sync. with CVS Autoconf.
20433
20434 2001-08-27 Marc Autret <autret_m@epita.fr>
20435
20436 * src/vcg.h (struct infoname_s): New.
20437 (struct colorentry_s): New.
20438 (graph_s): New fields {vertical,horizontal}_order in structure.
20439 Add `infoname' field.
20440 Add `colorentry' field;
20441 * src/vcg_defaults.h (G_VERTICAL_ORDER): New.
20442 (G_HORIZONTAL_ORDER): New.
20443 (G_INFONAME): New.
20444 (G_COLORENTRY): New.
20445 * src/vcg.c (output_graph): Add output of {vertical,horizontal}_order.
20446 Add output of `infoname'.
20447 Add output of `colorentry'.
20448
20449 2001-08-27 Marc Autret <autret_m@epita.fr>
20450
20451 * src/reader.c (parse_dquoted_param): Rename variable `index' to `i'.
20452 This one shadowed a global parameter.
20453
20454 2001-08-24 Marc Autret <autret_m@epita.fr>
20455
20456 * src/print_graph.c (node_output_size): Declared POSIX `size_t' type,
20457 instead of `unsigned'.
20458 (print_state): Do not call obstack_object_size () in obstack_grow ()
20459 to avoid macro variables shadowing.
20460
20461 2001-08-23 Marc Autret <autret_m@epita.fr>
20462
20463 * src/lex.c (percent_table): Typo: s/naem/name/.
20464 Add graph option.
20465 Normalize new options declarations.
20466
20467 2001-08-20 Pascal Bart <pascal.bart@epita.fr>
20468
20469 * tests/suite.at: Exercise %header_extension and %source_extension.
20470
20471 2001-08-16 Marc Autret <autret_m@epita.fr>
20472
20473 * src/reader.c (parse_dquoted_param): New.
20474 (parse_header_extension_decl): Use it.
20475 (parse_source_extension_decl): Likewise.
20476
20477 2001-08-16 Marc Autret <autret_m@epita.fr>
20478
20479 * src/vcg.c: Remove includes of `complain.h' and `xalloc.h'.
20480 (get_xxxx_str): Use assert () instead of complain ().
20481 Remove return invokations in default cases.
20482 (get_decision_str): Modify default behaviour. Remove second argument.
20483 Echo modifications on calls.
20484 (output_graph): Fix.
20485
20486 2001-08-16 Marc Autret <autret_m@epita.fr>
20487
20488 * src/getargs.c (usage): Update with ``-g, --graph''.
20489
20490 2001-08-16 Marc Autret <autret_m@epita.fr>
20491
20492 * doc/bison.texinfo (Bison Options): Add items `-g', `--graph'.
20493 (Option Cross Key): Likewise.
20494 * doc/bison.1: Update.
20495
20496 2001-09-25 Pascal Bart <pascal.bart@epita.fr>
20497
20498 * src/output.c (output_master_parser): Don't finish action_obstack.
20499 (output_parser): Don't care about the muscle action, here.
20500 (prepare): Copy the action_obstack in the action muscle.
20501 (output): Free action_obstack.
20502
20503 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
20504
20505 * src/reader.c (parse_union_decl): Add new obstack union_obstack. Which
20506 will contain `%union' declaration.
20507 (parse_union_decl): Delete #line directive output.
20508 (parse_union_decl): Substitute /attrs_obstack/union_obstack for all
20509 informations about %union.
20510 (parse_union_decl): Copy the union_obstack in the muscle stype.
20511 * src/bison.simple: Add new #line directive.
20512 Add typdef %%stype YYSTYPE.
20513
20514 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
20515
20516 * src/bison.simple: Add new `#line' directive.
20517
20518 2001-09-22 Pascal Bart <pascal.bart@epita.fr>
20519
20520 * src/bison.simple: New `#line' directive.
20521 * src/output.c (output_parser): Support new dynamic muscle input_line.
20522
20523 2001-09-22 Marc Autret <autret_m@epita.fr>
20524
20525 * src/output.c (output_master_parser): New.
20526 (output_parser): Be more re-entrant.
20527
20528 2001-09-21 Marc Autret <autret_m@epita.fr>
20529
20530 * src/reader.c (copy_definition, parse_union_decl): Update and use
20531 `linef' muscle.
20532 (copy_action): Likewise.
20533 Use obstack_1grow ().
20534 * src/muscle_tab.c (muscle_init): Add muscle `linef'.
20535
20536 2001-09-21 Marc Autret <autret_m@epita.fr>
20537
20538 * src/options.c (option_table): Adjust.
20539 * src/lex.c (parse_percent_token): Fix.
20540
20541 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
20542
20543 * src/options.c (symtab.h): Include it, need by lex.h.
20544
20545 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
20546
20547 * src/lex.c (parse_percent_token): Change type of variable `tx', which
20548 is now an option_table_struct*.
20549 (option_strcmp): New function option_strcmp.
20550 (parse_percent_token): Call option_strcmp.
20551 * src/getargs.c (xalloc.h, options.h): Include it.
20552 (getargs): Call create_long_option_table.
20553 (getargs): Free longopts at the end of the function.
20554 (shortopts): Move in options.c.
20555 * src/options.c (create_long_option_table): New function. Convert
20556 information from option_table to option structure.
20557 * src/reader.c (options.h): Include it.
20558
20559 * src/Makefile.am: Adjust.
20560 * src/options.c (option_table): Create from longopts and percent_table.
20561 * src/getargs.c (longopts): Delete.
20562 * src/lex.c (struct percent_table_struct): Delete.
20563 (percent_table): Delete.
20564 (options.h): Include it.
20565 * src/options.c: Create.
20566 * src/options.h: Create.
20567 Declare enum opt_access_e.
20568 Define struct option_table_struct.
20569
20570 2001-09-20 Marc Autret <autret_m@epita.fr>
20571
20572 * doc/bison.texinfo: Adjust terminologies about prologue and epilogue
20573 sections of Bison.
20574
20575 2001-09-19 Pascal Bart <pascal.bart@epita.fr>
20576
20577 * src/bison.simple: s/%%filename/%%skeleton.
20578 * src/muscle_tab.c (getargs.h): Include it.
20579 (muscle_init): Insert new muscle skeleton.
20580
20581 2001-09-18 Pascal Bart <pascal.bart@epita.fr>
20582
20583 * src/output.c (output_parser): Delete unused variable actions_dumped.
20584
20585 2001-09-07 Pascal Bart <pascal.bart@epita.fr>
20586
20587 * src/output.c (output): Delete call to reader_output_yylsp.
20588 * src/reader.c (reader): Likewise.
20589 * src/reader.h: Delete declaration of reader_output_yylsp.
20590
20591 2001-09-02 Marc Autret <autret_m@epita.fr>
20592
20593 * src/reader.c: Include muscle_tab.h.
20594 (parse_union_decl): Update.
20595 (parse_macro_decl): Rename parse_muscle_decl.
20596 Update to use renamed functions and variable.
20597 (read_declarations, copy_action, read_additionnal_code, : Updated
20598 with correct variables and functions names.
20599 (packsymbols, reader): Likewise.
20600
20601 * src/reader.h (muscle_obstack): Extern declaration update.
20602
20603 * src/output.c: Include muscle_tab.h
20604 In all functions using macro_insert, change by using muscle_insert ().
20605 (macro_obstack): Rename muscle_obstack.
20606 Echo modifications in the whole file.
20607 (MACRO_INSERT_INT): Rename MUSCLE_INSERT_INT.
20608 (MACRO_INSERT_STRING): Rename MUSCLE_INSERT_STRING.
20609 (MACRO_INSERT_PREFIX): Rename MUSCLE_INSERT_PREFIX.
20610
20611 * src/muscle_tab.h: Update double inclusion macros.
20612 (macro_entry_s): Rename muscle_entry_s.
20613 Update prototypes.
20614
20615 * src/muscle_tab.c: Include muscle_tab.h.
20616 Rename macro_tabble to muscle_table.
20617 (mhash1, mhash2, mcmp): Use muscle_entry.
20618 (macro_init): Rename muscle_init. Update.
20619 (macro_insert): Rename muscle_insert. Update.
20620 (macro_find): Rename muscle_find. Update.
20621
20622 * src/main.c: Include muscle_tab.h.
20623 (main): Call muscle_init ().
20624 * src/Makefile.am (bison_SOURCES): Echo modifications.
20625
20626 2001-09-02 Marc Autret <autret_m@epita.fr>
20627
20628 Now the files macro_tab.[ch] are named muscle_tab.[ch].
20629
20630 * src/muscle_tab.c, src/muscle_tab.h: Add files.
20631
20632 2001-09-02 Marc Autret <autret_m@epita.fr>
20633
20634 * src/macrotab.c, src/macrotab.h: Remove.
20635
20636 2001-09-01 Pascal Bart <pascal.bart@epita.fr>
20637
20638 * src/reader.c (copy_guard): Use muscle to specify the `#line'
20639 filename.
20640
20641 2001-09-01 Marc Autret <autret_m@epita.fr>
20642
20643 * tests/calc.at (exp): Now, YYERROR_VERBOSE need to be set
20644 to an explicit value to activate the feature. We do it here.
20645
20646 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
20647
20648 * src/output.c (prepare): Delete the `filename' muscule insertion.
20649 * src/reader.c (copy_action): Use `filename' muscule with `#line'.
20650 (parse_union_decl): Likewise.
20651 * src/macrotab.c (macro_init): Initialize filename by infile.
20652
20653 2001-08-31 Marc Autret <autret_m@epita.fr>
20654
20655 * src/bison.simple (YYLSP_NEEDED): New definition.
20656 * src/output.c (prepare): Add macro insertion of `locations_flag'
20657
20658 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
20659
20660 * src/output.c (prepare): Delete insertion of previous muscles,
20661 and insert the `prefix' muscles.
20662 * src/macrotab.c (macro_init): Likewise.
20663 (macro_init): Initialization prefix directive by `yy'.
20664 * src/bison.simple: Substitute all %%yylex, %%yychar, %%yylval,
20665 %%yydebug, %%yyerror, %%yynerrs and %%yyparse by yylex, yychar,
20666 yylval, yydebug, yyerror, yynerrs and yyparse.
20667 New directive `#define' to substitute yydebug, ... with option
20668 name_prefix.
20669
20670 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
20671
20672 * src/main.c (main): Standardize.
20673 * src/output.c (output_table_data, output_parser): Likewise.
20674 * src/macrotab.h, src/macrotab.c, src/bison.simple: Likewise.
20675
20676 2001-08-31 Pascal Bart <pascal.bart@epita.fr>, Marc Autret <autret_m@epita.fr>
20677
20678 * src/reader.c (read_additionnal_code): Rename %%user_code to
20679 %%epilogue.
20680 * src/output.c (output): Rename %%declarations to %%prologue.
20681 * src/bison.simple: Echo modifications.
20682
20683 2001-08-31 Marc Autret <autret_m@epita.fr>
20684
20685 * src/reader.c (readgram): CleanUp.
20686 (output_token_defines): Likewise.
20687 (packsymbols): Likewise.
20688 (reader): Likewise.
20689 * src/output.c (output): CPP-out useless code.
20690
20691 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
20692
20693 * src/reader.c (reader): Delete obsolete call to function
20694 output_trailers and output_headers.
20695 * src/output.h: Remove obsolete functions prototypes of output_headers
20696 and output_trailers.
20697
20698 2001-08-30 Pascal Bart <pascal.bart@epita.fr>
20699
20700 * src/main.c: Include macrotab.h.
20701 * src/macrotab.h (macro_entry_s): Constify fields.
20702 Adjust functions prototypes.
20703 * src/macrotab.c (macro_insert): Constify key and value.
20704 (macro_find): Constify key.
20705 (macro_insert): Include 'xalloc.h'
20706 (macro_insert): Use XMALLOC.
20707 (macro_find): Constify return value.
20708 * src/output.c (output_table_data): Rename table to table_data.
20709 (output_parser): Constify macro_key, macro_value.
20710
20711 2001-08-30 Marc Autret <autret_m@epita.fr>
20712
20713 * src/reader.c (parse_skel_decl): New.
20714 (read_declarations): Add case `tok_skel', call parse_skel_decl ().
20715 * src/lex.h (token_t): New token `tok_skel'.
20716 * src/lex.c (percent_table): Add skeleton option entry.
20717 Standardize.
20718
20719 2001-08-29 Marc Autret <autret_m@epita.fr>
20720
20721 * src/bison.simple: Add %%user_code directive at the end.
20722 * src/reader.c (read_additionnal_code): New.
20723 (reader): Use it.
20724 * src/output.c (output_program): Remove.
20725 (output): Update.
20726
20727 2001-08-28 Marc Autret <autret_m@epita.fr>
20728
20729 * src/output.c (output_actions): Clean up.
20730 (output_gram): CPP-out useless code.
20731 * src/reader.c (reader): Clean up, CPP-out useless code.
20732
20733 2001-08-28 Pascal Bart <pascal.bart@epita.fr>
20734
20735 * src/output.c (output): Copy attrs_obstack in the '%%definitions'
20736 directive.
20737 * src/bison.simple: Add `%%definitions'.
20738
20739 2001-08-28 Marc Autret <autret_m@epita.fr>
20740
20741 * config/depcomp: New file.
20742
20743 2001-08-27 Paul Eggert <eggert@twinsun.com>
20744
20745 * src/bison.simple (yyparse): Don't take the address of an
20746 item before the start of an array, as that doesn't conform to
20747 the C Standard.
20748
20749 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
20750
20751 * src/output.c (output): Remove the initialization of the macro
20752 obstack. It was done too late here.
20753
20754 * src/reader.c (parse_macro_decl): Fix. Use of the macro obstack was
20755 completely wrong.
20756 (reader): Initialize the macro obstack here, since we need it to grow
20757 '%define' directives.
20758
20759 * src/reader.h: Declare the macro obstack as extern.
20760
20761 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
20762
20763 * src/output.c (output_parser): Fix. Store single '%' characters in
20764 the output obstack instead of throwing them away.
20765
20766 2001-08-27 Akim Demaille <akim@epita.fr>
20767
20768 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
20769
20770 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
20771
20772 * lib/Makefile.am: Adjust.
20773
20774 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
20775
20776 * src/bison.simple: Update and add '%%' directives.
20777
20778 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
20779
20780 * src/reader.c (reader): Remove calls to 'output_headers' and
20781 'output_trailers'. Remove some C output.
20782 (readgram): Disable a piece of code that was writing a default
20783 definition for 'YYSTYPE'.
20784 (reader_output_yylsp): Remove.
20785 (packsymbols): Output token defintions to a macro.
20786 (copy_definition): Disable C output.
20787
20788 * src/reader.c (parse_macro_decl): New function used to parse macro
20789 declarations.
20790 (copy_string2): Put the body of copy_string into this new function.
20791 Add a parameter to let the caller choose whether he wants to copy the
20792 string delimiters or not.
20793 (copy_string): Be a simple call to copy_string2 with the last argument
20794 bound to true.
20795 (read_declarations): Add case for macro definition.
20796 (copy_identifier): New.
20797 (parse_macro_decl): Read macro identifiers using copy_identifier
20798 rather than lex.
20799
20800 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
20801
20802 * src/output.c (prepare): Add prefixed names.
20803 (output_parser): Output semantic actions.
20804 (output_parser): Fix bug on '%%line' directives.
20805
20806 * src/output.c (output_headers): Remove. The C code printed by this
20807 function should now be in the skeletons.
20808 (output_trailers): Remove.
20809 (output): Disable call to 'reader_output_yylsp'.
20810 (output_rule_data): Do not output tables to the table obstack.
20811
20812 * src/output.c: Remove some C dedicated output.
20813 Improve the use of macro and output obstacks.
20814 (output_defines): Remove.
20815
20816 * src/output.c (output_token_translations): Associate 'translate'
20817 table with a macro. No output to the table obstack.
20818 (output_gram): Same for 'rhs' and 'prhs'.
20819 (output_stos): Same for 'stos'.
20820 (output_rule_data): Same for 'r1' and 'r2'.
20821 (token_actions): Same for 'defact'.
20822 (goto_actions): Same for 'defgoto'.
20823 (output_base): Same for 'pact' and 'pgoto'.
20824 (output_table): Same for 'table'.
20825 (output_check): Same for 'check'.
20826
20827 * src/output.c (output_table_data): New function.
20828 (output_short_table): Remove.
20829 (output_short_or_char_table): Remove.
20830
20831 * src/output.c (output_parser): Replace most of the skeleton copy code
20832 with something new. Skeletons are now processed character by character
20833 rather than line by line, and Bison looks for '%%' macros. This is the
20834 first step in making Bison's output process (a lot) more flexible.
20835 (output_parser): Use the macro table.
20836
20837 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
20838
20839 * src/main.c (main): Initialize the macro table.
20840
20841 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
20842
20843 * src/lex.c (percent_table): Add tok_define.
20844 * src/lex.h: Add tok_define.
20845
20846 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
20847
20848 * src/macrotab.c: New file.
20849 * src/macrotab.h: New file.
20850 * src/Makefile.am: Update.
20851
20852 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
20853
20854 * lib/hash.c: New file.
20855 * lib/hash.h: New file.
20856 * lib/Makefile.am: Update.
20857
20858 2001-08-15 Akim Demaille <akim@epita.fr>
20859
20860 Version 1.28c.
20861
20862 2001-08-15 Marc Autret <autret_m@epita.fr>
20863
20864 * src/reader.c (readgram): Indent output macro YYSTYPE.
20865 (packsymbols): Likewise.
20866 (output_token_defines): Likewise.
20867 * src/files.c: Standardize.
20868 (compute_header_macro): New.
20869 (defines_obstack_save): New. Use compute_header_macro.
20870 (output_files): Update. Use defines_obstack_save.
20871
20872 2001-08-15 Akim Demaille <akim@epita.fr>
20873
20874 * doc/bison.texinfo (Table of Symbols): Document
20875 YYSTACK_USE_ALLOCA.
20876
20877 2001-08-15 Akim Demaille <akim@epita.fr>
20878
20879 * missing: Update from CVS Automake.
20880 * config/config.guess, config/config.sub, config/texinfo.tex:
20881 Update from gnu.org.
20882
20883 2001-08-15 Akim Demaille <akim@epita.fr>
20884
20885 * Makefile.maint: Sync with CVS Autoconf.
20886
20887 2001-08-14 Pascal Bart <pascal.bart@epita.fr>
20888
20889 * doc/bison.texinfo: Include GNU Free Documentation License from
20890 `fdl.texi'.
20891 * doc/fdl.texi: Add to package.
20892
20893 2001-08-14 Marc Autret <autret_m@epita.fr>
20894
20895 Turn on %{source,header}_extension features.
20896
20897 * src/lex.c (percent_table): Un-CPP out header_extension and
20898 source_extension.
20899 * src/files.c (compute_exts_from_gf): Compare pointers with NULL.
20900 (compute_exts_from_src): Remove conditions. It restores priorities
20901 between options.
20902
20903 2001-08-14 Marc Autret <autret_m@epita.fr>
20904
20905 * src/files.c (compute_base_names): Add extensions computing when
20906 `--file-prefix' used.
20907 Standardize function calls.
20908
20909 2001-08-13 Marc Autret <autret_m@epita.fr>
20910
20911 * src/bison.simple (YYSTACK_USE_ALLOCA): Changed to allow users
20912 defining it (defined but null disables alloca).
20913
20914 2001-08-13 Marc Autret <autret_m@epita.fr>
20915
20916 * src/bison.simple (_yy_memcpy): CPP reformat.
20917
20918 2001-08-13 Pascal Bart <pascal.bart@epita.fr>
20919
20920 * tests/atconfig.in (CPPFLAGS): Fix.
20921
20922 2001-08-10 Pascal Bart <pascal.bart@epita.fr>
20923
20924 * doc/bison.texinfo: Include GNU General Public License from
20925 `gpl.texi'.
20926 * doc/gpl.texi: Add to package.
20927
20928 2001-08-10 Marc Autret <autret_m@epita.fr>
20929
20930 * src/print_graph.h: Fix.
20931 * src/reader.c (read_declarations): Use parse_header_extension_decl ().
20932
20933 2001-08-10 Akim Demaille <akim@epita.fr>
20934
20935 * src/system.h: Provide default declarations for stpcpy, strndup,
20936 and strnlen.
20937
20938 2001-08-10 Robert Anisko <anisko_r@epita.fr>
20939
20940 * doc/bison.texinfo (Locations): Update @$ stuff.
20941
20942 2001-08-09 Robert Anisko <anisko_r@epita.fr>
20943
20944 * src/bison.simple (YYLLOC_DEFAULT): Update.
20945 (yyparse): Adjust.
20946
20947 2001-08-08 Marc Autret <autret_m@epita.fr>
20948
20949 * doc/bison.texinfo: Change @samp{$<@dots{}>} to
20950 @samp{$<@dots{}>@var{n}} in Section Actions in Mid-Rule.
20951 Reported by Fabrice Bauzac.
20952
20953 2001-08-08 Marc Autret <autret_m@epita.fr>
20954
20955 * src/vcg_default.h: Use NULL instead of 0 to initialize pointers.
20956 * src/vcg.c (output_node): Fix.
20957 * src/vcg.h: Cleanup.
20958 * src/print_graph.c: Add comments.
20959 (node_output_size): New global variable. Simplify the formatting of
20960 the VCG graph output.
20961 (print_actions): Unused code is now used. It notifies the final state
20962 and no action states in the VCG graph. It also give the reduce actions.
20963 The `shift and goto' edges are red and the `go to state' edges are
20964 blue.
20965 Get the current node name and node_obstack by argument.
20966 (node_obstack): New variable.
20967 (print_state): Manage node_obstack.
20968 (print_core): Use node_obstack given by argument.
20969 A node is not only computed here but in print_actions also.
20970 (print_graph): CPP out useless code instead of commenting it.
20971
20972 2001-08-07 Pascal Bart <pascal.bart@epita.fr>
20973
20974 * tests/atconfig.in (CPPFLAGS): Fix.
20975
20976 2001-08-07 Akim Demaille <akim@epita.fr>
20977
20978 * src/print_graph.c (quote): New.
20979 (print_core): Use it.
20980
20981 2001-08-06 Akim Demaille <akim@epita.fr>, Marc Autret <autret_m@epita.fr>
20982
20983 * src/vcg.c (complain.h): Include it.
20984 Unepitaize `return' invocations.
20985 [NDEBUG] (main): Remove.
20986 * src/vcg.h (node_t, edge_t, graph_t): Constify the char * members.
20987 * src/files.c (open_files): Initialize graph_obstack.
20988 * src/print_graph.c (print_actions): CPP out useless code.
20989 (print_core): Don't output the last `\n' in labels.
20990 Use `quote'.
20991 * src/files.c (output_files): Output the VCG file.
20992 * src/main.c (main): Invoke print_graph ();
20993
20994 2001-08-06 Marc Autret <autret_m@epita.fr>
20995
20996 Automaton VCG graph output.
20997 Using option ``-g'' or long option ``--graph'', you can generate
20998 a gram_filename.vcg file containing a VCG description of the LALR (1)
20999 automaton of your grammar.
21000
21001 * src/main.c: Call to print_graph() function.
21002 * src/getargs.h: Update.
21003 * src/getargs.c (options): Update to catch `-g' and `--graph' options.
21004 (graph_flag): New flag.
21005 (longopts): Update.
21006 (getargs): Add case `g'.
21007 * src/files.c (graph_obstack): New obstack struct.
21008 (open_files): Initialize new obstack.
21009 (output_files): Saves graph_obstack if required.
21010 * src/files.h (graph_obstack): New extern declaration.
21011 * src/Makefile.am: Add new source files.
21012
21013 2001-08-06 Marc Autret <autret_m@epita.fr>
21014
21015 * src/print_graph.c, src/print_graph.h (graph): New.
21016 * src/vcg.h: New file.
21017 * src/vcg.c: New file, VCG graph handling.
21018
21019 2001-08-06 Marc Autret <autret_m@epita.fr>
21020
21021 Add of %source_extension and %header_extension which specify
21022 the source or/and the header output file extension.
21023
21024 * src/files.c (compute_base_names): Remove initialisation of
21025 src_extension and header_extension.
21026 (compute_exts_from_gf): Update.
21027 (compute_exts_from_src): Update.
21028 (output_files): Update.
21029 * src/reader.c (parse_header_extension_decl): New.
21030 (parse_source_extension_decl): New.
21031 (read_declarations): New case statements for the new tokens.
21032 * src/lex.c (percent_table): Add entries for %source_extension
21033 and %header_extension.
21034 * src/lex.h (token_e): New tokens tok_hdrext and tok_srcext.
21035
21036 2001-08-06 Marc Autret <autret_m@epita.fr>
21037
21038 * configure.in: Bump to 1.28c.
21039 * doc/bison.texinfo: Texinfo thingies.
21040
21041 2001-08-04 Pascal Bart <pascal.bart@epita.fr>
21042
21043 * tests/atconfig.in (CPPFLAGS): Add.
21044 * tests/calc.at (AT_CHECK): Use CPPFLAGS.
21045
21046 2001-08-03 Akim Demaille <akim@epita.fr>
21047
21048 Version 1.28b.
21049
21050 2001-08-03 Akim Demaille <akim@epita.fr>
21051
21052 * tests/Makefile.am (check-local): Ship testsuite.
21053 * tests/calc.at (_AT_DATA_CALC_Y): Prototype all the functions.
21054 Include `string.h'.
21055
21056 2001-08-03 Akim Demaille <akim@epita.fr>
21057
21058 * configure.in: Try using -Wformat when compiling.
21059
21060 2001-08-03 Akim Demaille <akim@epita.fr>
21061
21062 * configure.in: Bump to 1.28b.
21063
21064 2001-08-03 Akim Demaille <akim@epita.fr>
21065
21066 * src/complain.c: Adjust strerror_r portability issues.
21067
21068 2001-08-03 Akim Demaille <akim@epita.fr>
21069
21070 Version 1.28a.
21071
21072 2001-08-03 Akim Demaille <akim@epita.fr>
21073
21074 * src/getargs.c, src/getarg.h (skeleton)): Constify.
21075 * src/lex.c (literalchar): Avoid name clashes on `buf'.
21076 * src/getargs.c: Include complain.h.
21077 * src/files.c, src/files.h (skeleton_find): Avoid name clashes.
21078 * lib/quotearg.c, lib/quotearg.h: Update from fileutils 4.1.
21079
21080 2001-08-03 Akim Demaille <akim@epita.fr>
21081
21082 * src/reader.c (readgram): Display hidden chars in error messages.
21083
21084 2001-08-03 Akim Demaille <akim@epita.fr>
21085
21086 Update to gettext 0.10.39.
21087
21088 2001-08-03 Akim Demaille <akim@epita.fr>
21089
21090 * lib/strspn.c: New.
21091
21092 2001-08-01 Marc Autret <autret_m@epita.fr>
21093
21094 * doc/bison.texinfo: Update.
21095 * doc/bison.1 (mandoc): Update.
21096 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove .c and .h.
21097 * src/files.c: Support output files extensions computing.
21098 (src_extension): New static variable.
21099 (header_extension): New static variable.
21100 (tr): New function.
21101 (get_extension_index): New function, gets the index of an extension
21102 filename in a string.
21103 (compute_exts_from_gf): New function, computes extensions from the
21104 grammar file extension.
21105 (compute_exts_from_src): New functions, computes extensions from the
21106 C source file extension, file given by ``-o'' option.
21107 (compute_base_names): Update.
21108 (output_files): Update.
21109
21110 2001-08-01 Robert Anisko <anisko_r@epita.fr>
21111
21112 * doc/bison.texi: Document @$.
21113 (Locations): New section.
21114
21115 2001-07-18 Akim Demaille <akim@epita.fr>
21116
21117 * Makefile.maint, GNUmakefile: New, from Autoconf 2.52.
21118 * config/prev-version.txt, config/move-if-change: New.
21119 * Makefile.am: Adjust.
21120
21121 2001-07-08 Pascal Bart <pascal.bart@epita.fr>
21122
21123 * src/bison.simple (yyparse): Suppress warning `comparaison
21124 between signed and unsigned'.
21125
21126 2001-07-05 Pascal Bart <pascal.bart@epita.fr>
21127
21128 * src/getargs.h (raw_flag): Remove.
21129 * src/getargs.c: Die on `-r'/`--raw'.
21130 * src/lex.c (parse_percent_token): Die on `%raw'.
21131 * src/reader.c (output_token_defines): Suppress call to `raw_flag'.
21132 * tests/calc.at: Suppress test with option `--raw'.
21133
21134 2001-07-14 Akim Demaille <akim@epita.fr>
21135
21136 * config/: New.
21137 * configure.in: Require Autoconf 2.50.
21138 Update to gettext 0.10.38.
21139
21140 2001-03-16 Akim Demaille <akim@epita.fr>
21141
21142 * doc/bison.texinfo: ANSIfy the examples.
21143
21144 2001-03-16 Akim Demaille <akim@epita.fr>
21145
21146 * getargs.c (skeleton): New variable.
21147 (longopts): --skeleton is a new option.
21148 (shortopts, getargs): -S is a new option.
21149 * getargs.h: Declare skeleton.
21150 * output.c (output_parser): Use it.
21151
21152 2001-03-16 Akim Demaille <akim@epita.fr>
21153
21154 * m4/strerror_r.m4: New.
21155 * m4/error.m4: Run AC_FUNC_STRERROR_R.
21156 * lib/error.h, lib/error.c: Update.
21157
21158 2001-03-16 Akim Demaille <akim@epita.fr>
21159
21160 * src/getargs.c (longopts): Clean up.
21161
21162 2001-02-21 Akim Demaille <akim@epita.fr>
21163
21164 * src/reader.c (gensym): `gensym_count' is your own.
21165 Use a static buf to create the symbol name, as token_buffer is no
21166 longer a buffer.
21167
21168 2001-02-08 Akim Demaille <akim@epita.fr>
21169
21170 * src/conflicts.c (conflict_report): Be sure not to append to res
21171 between two calls, which could happen if both first sprintf were
21172 skipped, but not the first cp += strlen.
21173
21174 2001-02-08 Akim Demaille <akim@epita.fr>
21175
21176 * lib/memchr.c, lib/stpcpy.c, lib/strndup.c, lib/strnlen.c:
21177 New, from fileutils 4.0.37.
21178 * configure.in: Require Autoconf 2.49c. I took some time before
21179 making this decision. This is the only way out for portability
21180 issues in Bison, it would mean way too much duplicate effort to
21181 import in Bison features implemented in 2.49c since 2.13.
21182 AC_REPLACE_FUNCS and AC_CHECK_DECLS the functions above.
21183
21184 2001-02-02 Akim Demaille <akim@epita.fr>
21185
21186 * lib/malloc.c, lib/realloc.c: New, from the fileutils 4.0.37.
21187 * lib/xalloc.h, lib/xmalloc.c: Update.
21188
21189 2001-01-19 Akim Demaille <akim@epita.fr>
21190
21191 Get rid of the ad hoc handling of token_buffer in the scanner: use
21192 the obstacks.
21193
21194 * src/lex.c (token_obstack): New.
21195 (init_lex): Initialize it. No longer call...
21196 (grow_token_buffer): this. Remove it.
21197 Adjust all the places which used it to use the obstack.
21198
21199 2001-01-19 Akim Demaille <akim@epita.fr>
21200
21201 * src/lex.h: Rename all the tokens:
21202 s/\bENDFILE\b/tok_eof/g;
21203 s/\bIDENTIFIER\b/tok_identifier/g;
21204 etc.
21205 Let them be enums, not #define, to ease debugging.
21206 Adjust all the code.
21207
21208 2001-01-18 Akim Demaille <akim@epita.fr>
21209
21210 * src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
21211 * src/lex.c (maxtoken, grow_token_buffer): Static.
21212
21213 2001-01-18 Akim Demaille <akim@epita.fr>
21214
21215 Since we now use obstacks, more % directives can be enabled.
21216
21217 * src/lex.c (percent_table): Also accept `%yacc',
21218 `%fixed_output_files', `%defines', `%no_parser', `%verbose', and
21219 `%debug'.
21220 Handle the actions for `%semantic_parser' and `%pure_parser' here,
21221 instead of returning a token.
21222 * src/lex.h (SEMANTIC_PARSER, PURE_PARSER): Remove, unused.
21223 * src/reader.c (read_declarations): Adjust.
21224 * src/files.c (open_files): Don't call `compute_base_names', don't
21225 compute `attrsfile' since they depend upon data which might be
21226 *in* the input file now.
21227 (output_files): Do it here.
21228 * src/output.c (output_headers): Document the fact that this patch
21229 introduces a guaranteed SEGV for semantic parsers.
21230 * doc/bison.texinfo: Document them.
21231 * tests/suite.at: Exercise these %options.
21232
21233 2000-12-20 Akim Demaille <akim@epita.fr>
21234
21235 Also handle the output file (--verbose) with obstacks.
21236
21237 * files.c (foutput): Remove.
21238 (output_obstack): New.
21239 Adjust all dependencies.
21240 * src/conflicts.c: Return a string.
21241 * src/system.h (obstack_grow_string): Rename as...
21242 (obstack_sgrow): this. Be ready to work with non literals.
21243 (obstack_fgrow4): New.
21244
21245 2000-12-20 Akim Demaille <akim@epita.fr>
21246
21247 * src/files.c (open_files): Fix the computation of short_base_name
21248 in the case of `-o foo.tab.c'.
21249
21250 2000-12-20 Akim Demaille <akim@epita.fr>
21251
21252 * src/reader.c (copy_string, copy_comment, copy_comment2, copy_at)
21253 (copy_dollar): Now that everything uses obstacks, get rid of the
21254 FILE * parameters.
21255
21256 2000-12-20 Akim Demaille <akim@epita.fr>
21257
21258 * src/files.c (open_files): Actually the `.output' file is based
21259 on the short_base_name, not base_name.
21260 * tests/suite.at (Checking output file names): Adjust.
21261
21262 2000-12-20 Akim Demaille <akim@epita.fr>
21263
21264 * src/bison.s1: Remove, we now use directly...
21265 * src/bison.simple: this.
21266 * src/Makefile.am: Use pkgdata instead of data.
21267
21268 2000-12-20 Akim Demaille <akim@epita.fr>
21269
21270 * src/files.c (guard_obstack): New.
21271 (open_files): Initialize it.
21272 (output_files): Dump it...
21273 * src/files.h: Export it.
21274 * src/reader.c (copy_guard): Use it.
21275
21276 2000-12-19 Akim Demaille <akim@epita.fr>
21277
21278 * src/files.c (outfile, defsfile, actfile): Removed as global
21279 vars.
21280 (open_files): Don't compute them.
21281 (output_files): Adjust.
21282 (base_name, short_base_name): Be global.
21283 Adjust dependencies.
21284
21285 2000-12-19 Akim Demaille <akim@epita.fr>
21286
21287 * src/files.c (strsuffix): New.
21288 (stringappend): Be just like strcat but allocate.
21289 (base_names): Eve out from open_files.
21290 Try to simplify the rather hairy computation of base_name and
21291 short_base_name.
21292 (open_files): Use it.
21293 * tests/suite.at (Checking output file names): New test.
21294
21295 2000-12-19 Akim Demaille <akim@epita.fr>
21296
21297 * src/system.h (obstack_grow_literal_string): Rename as...
21298 (obstack_grow_string): this.
21299 * src/output.c (output_parser): Recognize `%% actions' instead of
21300 `$'.
21301 * src/bison.s1: s/$/%% actions/.
21302 * src/bison.hairy: Likewise.
21303
21304 2000-12-19 Akim Demaille <akim@epita.fr>
21305
21306 * src/output.c (output_parser): Compute the `#line' lines when
21307 there are.
21308 * src/Makefile.am (bison.simple): Be a simple copy of bison.s1.
21309 Suggested by Hans Aberg.
21310
21311 2000-12-19 Akim Demaille <akim@epita.fr>
21312
21313 Let the handling of the skeleton files be local to the procedures
21314 that use it.
21315
21316 * src/files.c (xfopen, xfclose, skeleton_find, guardfile): No
21317 longer static.
21318 (fparser, open_extra_files): Remove.
21319 (open_files, output_files): Don't take care of fparser.
21320 * src/files.h: Adjust.
21321 * src/output.c (output_parser): Open and close the file to the
21322 skeleton.
21323 * src/reader.c (read_declarations): When %semantic_parser, open
21324 fguard.
21325
21326 2000-12-19 Akim Demaille <akim@epita.fr>
21327
21328 * src/file.h (BISON_SIMPLE, BISON_HAIRY): Move from here...
21329 * src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
21330
21331 2000-12-19 Akim Demaille <akim@epita.fr>
21332
21333 * src/files.c (open_files): Yipee! We no longer need all the code
21334 looking for `/tmp' since we have no tmp file.
21335
21336 2000-12-19 Akim Demaille <akim@epita.fr>
21337
21338 * src/system.h (EXT_TAB, EXT_OUTPUT, EXT_STYPE_H, EXT_GUARD_C):
21339 New macros.
21340 * src/files.c (open_files): Less dependency on MSDOS etc.
21341
21342 2000-12-14 Akim Demaille <akim@epita.fr>
21343
21344 * src/bison.s1 (YYLLOC_DEFAULT): New macro.
21345 Provide a default definition.
21346 Use it when executing the default @ action.
21347 * src/reader.c (reader_output_yylsp): No longer include
21348 `timestamp' and `text' in the default YYLTYPE.
21349
21350 2000-12-12 Akim Demaille <akim@epita.fr>
21351
21352 * src/reader.c (copy_definition, parse_union_decl, copy_action)
21353 (copy_guard): Quote the file names.
21354 Reported by Laurent Mascherpa.
21355
21356 2000-12-12 Akim Demaille <akim@epita.fr>
21357
21358 * src/output.c (output_headers, output_program, output): Be sure
21359 to escape special characters when outputting filenames.
21360 (ACTSTR_PROLOGUE, ACTSTR_EPILOGUE): Remove.
21361 (output_headers): Don't depend on them, Use ACTSTR.
21362
21363 2000-11-17 Akim Demaille <akim@epita.fr>
21364
21365 * lib/obstack.h: Formatting changes.
21366 (obstack_grow, obstack_grow0): Don't cast WHERE at all: it
21367 prevents type checking.
21368 (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
21369 cast the value to (void *): assigning a `foo *' to a `void *'
21370 variable is valid.
21371 (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
21372 * src/reader.c (parse_union_decl): Typo: use obstack_1grow to
21373 append characters.
21374
21375 2000-11-17 Akim Demaille <akim@epita.fr>
21376
21377 * tests/Makefile.am (suite.m4, regression.m4, calc.m4): Rename
21378 as...
21379 (suite.m4, regression.m4, calc.m4): these.
21380 * tests/atgeneral.m4: Update from CVS Autoconf.
21381
21382 2000-11-17 Akim Demaille <akim@epita.fr>
21383
21384 * tests/regression.m4 (%union and --defines): New test,
21385 demonstrating a current bug in the obstack implementation.
21386
21387 2000-11-17 Akim Demaille <akim@epita.fr>
21388
21389 * src/bison.s1 (_YY_DECL_VARIABLES, YY_DECL_VARIABLES): New
21390 macros.
21391 Use them to declare the variables which are global or local to
21392 `yyparse'.
21393
21394 2000-11-17 Akim Demaille <akim@epita.fr>
21395
21396 * acconfig.h: Remove, no longer used.
21397
21398 2000-11-07 Akim Demaille <akim@epita.fr>
21399
21400 * src: s/Copyright (C)/Copyright/g.
21401
21402 2000-11-07 Akim Demaille <akim@epita.fr>
21403
21404 * src/reader.c (reader): #define YYLSP_NEEDED to 1 instead of just
21405 defining.
21406 * src/bison.s1: s/#ifdef YYLSP_NEEDED/#if YYLSP_NEEDED/.
21407
21408 2000-11-07 Akim Demaille <akim@epita.fr>
21409
21410 * src/bison.s1 (YYLEX): Use #if instead of #ifdef.
21411 Merge in a single CPP if/else.
21412
21413 2000-11-07 Akim Demaille <akim@epita.fr>
21414
21415 * src/output.c (output): Remove useless variables.
21416 * lib/obstack.c (obstack_grow, obstack_grow0): Rename the second
21417 argument `data' for consistency with the prototypes.
21418 Qualify it `const'.
21419 (obstack_copy, obstack_copy0): Rename the second argument as
21420 `address' for consistency. Qualify it `const'.
21421 * lib/obstack.h (obstack_copy, obstack_copy0, obstack_grow)
21422 (obstack_grow0, obstack_ptr_grow, obstack_ptr_grow_fast): Qualify
21423 `const' their input argument (`data' or `address').
21424 Adjust the corresponding macros to include `const' in casts.
21425
21426 2000-11-03 Akim Demaille <akim@epita.fr>
21427
21428 * src/Makefile.am (INCLUDES): s/PFILE/BISON_SIMPLE/.
21429 s/PFILE1/BISON_HAIRY/.
21430 Adjust dependencies.
21431
21432 2000-11-03 Akim Demaille <akim@epita.fr>
21433
21434 For some reason, this was not applied.
21435
21436 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
21437 `unlink': it's no longer used.
21438
21439 2000-11-03 Akim Demaille <akim@epita.fr>
21440
21441 * src/files.c (skeleton_find): New function, eved out of...
21442 (open_files, open_extra_files): here.
21443
21444 2000-11-03 Akim Demaille <akim@epita.fr>
21445
21446 Don't use `atexit'.
21447
21448 * src/files.c (obstack_save): New function.
21449 (done): Rename as...
21450 (output_files): this.
21451 Use `obstack_save'.
21452 * src/main.c (main): Don't use `atexit' to register `done', since
21453 it no longer has to remove tmp files, just call `output_files'
21454 when there are no errors.
21455
21456 2000-11-02 Akim Demaille <akim@epita.fr>
21457
21458 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
21459 `unlink': it's no longer used.
21460 * src/files.h: Formatting changes.
21461
21462 2000-11-02 Akim Demaille <akim@epita.fr>
21463
21464 Remove the last uses of mktemp and unlink/delete.
21465
21466 * src/files.c (fdefines, ftable): Removed.
21467 (defines_ostack, table_obstack): New.
21468 Adjust dependencies of the former into uses of the latter.
21469 * src/output.c (output_short_or_char_table, output_short_table):
21470 Convert to using obstacks.
21471 * src/reader.c (copy_comment2): Accept one FILE * and two
21472 obstacks.
21473 (output_token_defines, reader_output_yylsp): Use obstacks.
21474 * src/system.h (obstack_fgrow3): New.
21475 * po/POTFILES.in: Adjust.
21476
21477 2000-11-01 Akim Demaille <akim@epita.fr>
21478
21479 Change each use of `fattrs' into a use of `attrs_obstack'.
21480
21481 * src/reader.c (copy_at): Typo: s/yylloc/yyloc/.
21482 * src/files.c (fattrs): Remove.
21483 (attrs_obstack): New.
21484 Adjust all dependencies.
21485 (done): If SEMANTIC_PARSER, dump attrs_obstack into attrsfile.
21486
21487 2000-11-01 Akim Demaille <akim@epita.fr>
21488
21489 Introduce obstacks.
21490 Change each use of `faction' into a use of `action_obstack'.
21491
21492 * lib/obstack.h, lib/obstack.c: New files.
21493 * src/files.c (faction): Remove.
21494 (action_obstack): New.
21495 Adjust all dependencies.
21496
21497 2000-10-20 Akim Demaille <akim@epita.fr>
21498
21499 * lib/quote.h (PARAMS): New macro. Use it.
21500
21501 2000-10-16 Akim Demaille <akim@epita.fr>
21502
21503 * src/output.c (output_short_or_char_table): New function.
21504 (output_short_table, output_token_translations): Use it.
21505 (goto_actions): Use output_short_table.
21506
21507 2000-10-16 Akim Demaille <akim@epita.fr>
21508
21509 * src/symtab.c (bucket_new): New function.
21510 (getsym): Use it.
21511
21512 * src/output.c (output_short_table): New argument to display the
21513 comment associated with the table.
21514 Adjust dependencies.
21515 (output_gram): Use it.
21516 (output_rule_data): Nicer output layout for YYTNAME.
21517
21518 2000-10-16 Akim Demaille <akim@epita.fr>
21519
21520 * src/lex.c (read_typename): New function.
21521 (lex): Use it.
21522 * src/reader.c (copy_dollar): Likewise.
21523
21524 2000-10-16 Akim Demaille <akim@epita.fr>
21525
21526 * src/reader.c (copy_comment2): Expect the input stream to be on
21527 the `/' which is suspected to open a comment, instead of being
21528 called after `//' or `/*' was read.
21529 (copy_comment, copy_definition, parse_union_decl, copy_action)
21530 (copy_guard): Adjust.
21531
21532 2000-10-16 Akim Demaille <akim@epita.fr>
21533
21534 * src/reader.c (parse_expect_decl): Use `skip_white_space' and
21535 `read_signed_integer'.
21536
21537 2000-10-16 Akim Demaille <akim@epita.fr>
21538
21539 * src/reader.c (copy_dollar): New function.
21540 (copy_guard, copy_action): Use it.
21541
21542 2000-10-16 Akim Demaille <akim@epita.fr>
21543
21544 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
21545 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
21546 New files, from Fileutils 4.0.27.
21547 * src/main.c (printable_version): Remove.
21548 * src/lex.c, src/reader.c: Use `quote'.
21549
21550 2000-10-04 Akim Demaille <akim@epita.fr>
21551
21552 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
21553
21554 2000-10-04 Akim Demaille <akim@epita.fr>
21555
21556 * doc/bison.texinfo: Various typos spotted by Neil Booth.
21557
21558 2000-10-04 Akim Demaille <akim@epita.fr>
21559
21560 When a literal string is used to define two different tokens,
21561 `bison -v' segfaults.
21562 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
21563
21564 * tests/regression.m4: New file.
21565 Include the core of the sample provided by Piotr Gackiewicz.
21566 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
21567 properly.
21568
21569 2000-10-04 Akim Demaille <akim@epita.fr>
21570
21571 * src/reader.c (parse_expect_decl): Keep `count' within the size
21572 of `buffer'.
21573 From Neil Booth.
21574
21575 2000-10-02 Paul Eggert <eggert@twinsun.com>
21576
21577 * bison.s1 (yyparse): Assign the default value
21578 unconditionally, to avoid a GCC warning and make the parser a
21579 tad smaller.
21580
21581 2000-10-02 Akim Demaille <akim@epita.fr>
21582
21583 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
21584 options.
21585
21586 2000-10-02 Akim Demaille <akim@epita.fr>
21587
21588 * src/derives.c, src/print.c, src/reduce.c: To ease the
21589 translation, move some `\n' out of the translated strings.
21590
21591 2000-10-02 Akim Demaille <akim@epita.fr>
21592
21593 The location tracking mechanism is precious for parse error
21594 messages. Nevertheless, it is enabled only when `@n' is used in
21595 the grammar, which is a different issue (you can use it in error
21596 message, but not in the grammar per se). Therefore, there should
21597 be another means to enable it.
21598
21599 * src/getargs.c (getargs): Support `--locations'.
21600 (usage): Report it.
21601 * src/getargs.h (locationsflag): Export it.
21602 * src/lex.c (percent_table): Support `%locations'.
21603 * src/reader.c (yylsp_needed): Remove this variable, now replaced
21604 with `locationsflag'.
21605 * doc/bison.texinfo: Document `--locations' and `%locations'.
21606 Sort the options.
21607 * tests/calc.m4: Test it.
21608
21609 For regularity of the names, replace each
21610 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
21611 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
21612 In addition replace each `flag' with `_flag'.
21613
21614 2000-10-02 Akim Demaille <akim@epita.fr>
21615
21616 Also test parse error messages, including with YYERROR_VERBOSE.
21617
21618 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
21619 associative).
21620 Use it to check the computations.
21621 Use it to check `nonassoc' is honored.
21622 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
21623 `--yyerror-verbose'.
21624 (_AT_CHECK_CALC): Adjust to this option.
21625 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
21626
21627 2000-10-02 Akim Demaille <akim@epita.fr>
21628
21629 Test also `--verbose', `--defines' and `--name-prefix'. Testing
21630 the latter demonstrates a flaw in the handling of non debugging
21631 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
21632 was used in order to simplify:
21633
21634 #if YYDEBUG
21635 if (yydebug)
21636 {
21637 ...
21638 }
21639 #endif
21640
21641 into
21642
21643 if (yydebug)
21644 {
21645 ...
21646 }
21647
21648 unfortunately this leads to a CPP conflict when
21649 `--name-prefix=foo' is used since it produces `#define yydebug
21650 foodebug'.
21651
21652 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
21653 (YYDPRINTF): New macro.
21654 Spread its use.
21655 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
21656 the bison options.
21657 Also test `--verbose', `--defines' and `--name-prefix'.
21658
21659 2000-10-02 Akim Demaille <akim@epita.fr>
21660
21661 Improve the readability of the produced parsers.
21662
21663 * src/bison.s1: Formatting changes.
21664 Improve the comment related to the `$' mark.
21665 (yydefault): Don't fall through to `yyresume': `goto' there.
21666 * src/output.c (output_parser): When the `$' is met, skip the end
21667 of its line.
21668 New variable, `number_of_dollar_signs', to check there's exactly
21669 one `$' in the parser skeleton.
21670
21671 2000-10-02 Akim Demaille <akim@epita.fr>
21672
21673 * lib/xstrdup.c: New file, from the fileutils.
21674 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
21675 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
21676 instead of strlen + xmalloc + strcpy.
21677 * src/symtab.c (copys): Remove, use xstrdup instead.
21678
21679 2000-10-02 Akim Demaille <akim@epita.fr>
21680
21681 * src/gram.h (associativity): New enum type which replaces the
21682 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
21683 `right_assoc', `left_assoc' and `non_assoc'.
21684 Adjust all dependencies.
21685 * src/reader.c: Formatting changes.
21686 (LTYPESTR): Don't define it, use it as a literal in
21687 `reader_output_yylsp'.
21688 * src/symtab.h (symbol_class): New enum type which replaces the
21689 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
21690 `sunknown', `stoken and `snterm'.
21691
21692 2000-10-02 Akim Demaille <akim@epita.fr>
21693
21694 * src/getargs.c (fixed_outfiles): Rename as...
21695 (yaccflag): for consistency and accuracy.
21696 Adjust dependencies.
21697
21698 2000-10-02 Akim Demaille <akim@epita.fr>
21699
21700 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
21701 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
21702 difficult and introduced a lot of core dump. It turns out that
21703 Bison used an implementation of `xmalloc' based on `calloc', and
21704 at various places it does depend upon the initialization to 0. I
21705 have not tried to isolate the pertinent places, and all the former
21706 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
21707 someone should address this issue.
21708
21709 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
21710 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
21711 files.
21712 Adjust dependencies.
21713 * src/warshall.h: New file.
21714 Propagate.
21715
21716 2000-10-02 Akim Demaille <akim@epita.fr>
21717
21718 Various anti-`extern in *.c' changes.
21719
21720 * src/system.h: Include `assert.h'.
21721
21722 2000-10-02 Akim Demaille <akim@epita.fr>
21723
21724 * src/state.h (nstates, final_state, first_state, first_shift)
21725 (first_reduction): Move their exportation from here...
21726 * src/LR0.h: to here.
21727 Adjust dependencies.
21728 * src/getargs.c (statisticsflag): New variable.
21729 Add support for `--statistics'.
21730 Adjust dependencies.
21731
21732 Remove a lot of now useless `extern' statements in most files.
21733
21734 2000-10-02 Akim Demaille <akim@epita.fr>
21735
21736 * src/LR0.h: New file.
21737 Propagate its use.
21738
21739 2000-10-02 Akim Demaille <akim@epita.fr>
21740
21741 * src/print.h: New file.
21742 Propagate its use.
21743 * src/print.c: Formatting and ordering changes.
21744 (verbose, terse): Replace with...
21745 (print_results): this new function.
21746 Adjust dependencies.
21747
21748 2000-10-02 Akim Demaille <akim@epita.fr>
21749
21750 * src/conflicts.c (conflict_report): New function.
21751 (conflict_log, verbose_conflict_log): Replace with...
21752 (print_conflicts): this function.
21753 Adjust dependencies.
21754 * src/conflicts.h: New file.
21755 Propagate its inclusion.
21756
21757 2000-10-02 Akim Demaille <akim@epita.fr>
21758
21759 * src/nullable.h: New file.
21760 Propagate its inclusion.
21761 * src/nullable.c: Formatting changes.
21762
21763 2000-10-02 Akim Demaille <akim@epita.fr>
21764
21765 * src/reduce.h: New file.
21766 Propagate its inclusion.
21767 * src/reduce.c: Topological sort and other formatting changes.
21768 (bool, TRUE, FALSE): Move their definition to...
21769 * src/system.h: here.
21770
21771 2000-10-02 Akim Demaille <akim@epita.fr>
21772
21773 * src/files.c: Formatting changes.
21774 (tryopen, tryclose, openfiles): Rename as...
21775 (xfopen, xfclose, open_files): this.
21776 (stringappend): static.
21777 * src/files.h: Complete the list of exported symbols.
21778 Propagate its use.
21779
21780 2000-10-02 Akim Demaille <akim@epita.fr>
21781
21782 * src/reader.h: New file.
21783 Propagate its use instead of tedious list of `extern' and
21784 prototypes.
21785 * src/reader.c: Formatting changes, topological sort,
21786 s/register//.
21787
21788 2000-10-02 Akim Demaille <akim@epita.fr>
21789
21790 * src/lex.h: Prototype `lex.c' exported functions.
21791 * src/reader.c: Adjust.
21792 * src/lex.c: Formatting changes.
21793 (safegetc): Rename as...
21794 (xgetc): this.
21795
21796 2000-10-02 Akim Demaille <akim@epita.fr>
21797
21798 * src/lalr.h: New file.
21799 Propagate its inclusion instead of prototypes and `extern'.
21800 * src/lalr.c: Formatting changes, topological sorting etc.
21801
21802 2000-10-02 Akim Demaille <akim@epita.fr>
21803
21804 * src/output.c (token_actions): Introduce a temporary array,
21805 YYDEFACT, that makes it possible for this function to use
21806 output_short_table.
21807
21808 2000-10-02 Akim Demaille <akim@epita.fr>
21809
21810 `user_toknums' is output as a `short[]' in `output.c', while it is
21811 defined as a `int[]' in `reader.c'. For consistency with the
21812 other output tables, `user_toknums' is now defined as a table of
21813 shorts.
21814
21815 * src/reader.c (user_toknums): Be a short table instead of an int
21816 table.
21817 Adjust dependencies.
21818
21819 Factor the short table outputs.
21820
21821 * src/output.c (output_short_table): New function.
21822 * src/output.c (output_gram, output_stos, output_rule_data)
21823 (output_base, output_table, output_check): Use it.
21824
21825 2000-10-02 Akim Demaille <akim@epita.fr>
21826
21827 * src/output.c (output): Topological sort of the functions, in
21828 order to get rid of the `static' prototypes.
21829 No longer use `register'.
21830 * src/output.h: New file.
21831 Propagate its inclusion in files explicitly prototyping functions
21832 from output.c.
21833
21834 2000-09-21 Akim Demaille <akim@epita.fr>
21835
21836 * src/atgeneral.m4: Update from Autoconf.
21837
21838 2000-09-21 Akim Demaille <akim@epita.fr>
21839
21840 * src/closure.h: New file.
21841 * src/closure.c: Formatting changes, topological sort over the
21842 functions, use of closure.h.
21843 (initialize_closure, finalize_closure): Rename as...
21844 (new_closure, free_closure): these. Adjust dependencies.
21845 * src/LR0.c: Formatting changes, topological sort, use of
21846 cloture.h.
21847 (initialize_states): Rename as...
21848 (new_states): this.
21849 * src/Makefile.am (noinst_HEADERS): Adjust.
21850
21851 2000-09-20 Akim Demaille <akim@epita.fr>
21852
21853 * src/acconfig.h: Don't protect config.h against multiple
21854 inclusion.
21855 Don't define PARAMS.
21856 * src/system.h: Define PARAMS.
21857 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
21858 purpose of config.h. system.h must not try to fix wrong
21859 definitions in config.h.
21860
21861 2000-09-20 Akim Demaille <akim@epita.fr>
21862
21863 * src/derives.h: New file.
21864 * src/main.c, src/derives.h: Use it.
21865 Formatting changes.
21866 * src/Makefile.am (noinst_HEADERS): Adjust.
21867
21868 2000-09-20 Akim Demaille <akim@epita.fr>
21869
21870 * tests/atgeneral.m4: Update from Autoconf.
21871 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
21872 (AT_CHECK_CALC): New macros.
21873 Use these macros to test bison with options `', `--raw',
21874 `--debug', `--yacc', `--yacc --debug'.
21875
21876 2000-09-19 Akim Demaille <akim@epita.fr>
21877
21878 * src/output.c: Formatting changes.
21879 * src/machine.h: Remove, leaving its contents in...
21880 * src/system.h: here.
21881 Include stdio.h.
21882 Adjust all dependencies on stdio.h and machine.h.
21883 * src/getargs.h: New file.
21884 Let all `extern' declarations about getargs.c be replaced with
21885 inclusion of `getargs.h'.
21886 * src/Makefile.am (noinst_HEADERS): Adjust.
21887
21888 * tests/calc.m4 (yyin): Be initialized in main, not on the global
21889 scope.
21890 (yyerror): Returns void, not int.
21891 * doc/bison.texinfo: Formatting changes.
21892
21893 2000-09-19 Akim Demaille <akim@epita.fr>
21894
21895 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
21896 portable.
21897
21898 2000-09-18 Akim Demaille <akim@epita.fr>
21899
21900 * configure.in: Append WARNING_CFLAGS to CFLAGS.
21901 * src/Makefile.am (INCLUDES): Don't.
21902 Be ready to fetch headers in lib/.
21903
21904 2000-09-18 Akim Demaille <akim@epita.fr>
21905
21906 * doc/bison.texinfo: Update the copyright.
21907 ANSIfy and GNUify the examples.
21908 Remove the old menu.
21909
21910 2000-09-18 Akim Demaille <akim@epita.fr>
21911
21912 First set of tests: use the `calc' example from the documentation.
21913
21914 * src/bison.s1 (yyparse): Condition the code using `yytname' which
21915 is defined only when YYDEBUG is.
21916 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
21917 * src/files.c (tryopen, tryclose): Formatting changes.
21918 Move to the top and be static.
21919 * src/reader.c (read_signed_integer): Likewise.
21920 * tests/calc.m4: New file.
21921 * Makefile.am, suite.m4: Adjust.
21922 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
21923
21924 2000-09-18 Akim Demaille <akim@epita.fr>
21925
21926 Add support for an Autotest test suite for Bison.
21927
21928 * m4/m4.m4, m4/atconfig.m4: New files.
21929 * m4/Makefile.am (EXTRA_DIST): Adjust.
21930 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
21931 files.
21932 * src/getargs.c: Display a more standard --version message.
21933 * src/reader.c (reader): Formatting changes.
21934 No longer depend upon VERSION_STRING.
21935 * configure.in: No longer use `dnl'.
21936 Set up the test suite and the new directory `tests/.
21937 (VERSION_STRING): Remove.
21938
21939 2000-04-14 Akim Demaille <akim@epita.fr>
21940
21941 * src/reader.c (copy_comment2): New function, same as former
21942 `copy_comment', but outputs into two FILE *.
21943 (copy_comment): Use it.
21944 (parse_union_decl): Use it.
21945 (get_type, parse_start_decl): Use the same `invalid' message.
21946 (parse_start_decl, parse_union_decl): Use the same `multiple'
21947 message.
21948 (parse_union_decl, copy_guard, copy_action): Use the same
21949 `unmatched' message.
21950 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
21951
21952 2000-03-31 Akim Demaille <akim@epita.fr>
21953
21954 * src/files.c (tryopen, tryclose): Move to the top.
21955 Be static.
21956
21957 2000-03-31 Akim Demaille <akim@epita.fr>
21958
21959 * src/main.c (main): Don't call `done', exit does it.
21960
21961 2000-03-31 Akim Demaille <akim@epita.fr>
21962
21963 * allocate.c: s/return (foo)/return foo/.
21964 * lalr.c: Likewise.
21965 * LR0.c: Likewise.
21966 * output.c: Likewise.
21967 * reader.c: Likewise.
21968 * symtab.c: Likewise.
21969 * vmsgetargs.c: Likewise.
21970
21971 2000-03-31 Akim Demaille <akim@epita.fr>
21972
21973 Clean up the error reporting functions.
21974
21975 * src/report.c: New file.
21976 * src/report.h: Likewise.
21977 * src/Makefile.am: Adjust.
21978 * m4/error.m4: New file.
21979 * m4/Makefile.am: Adjust.
21980 * configure.in (jm_PREREQ_ERROR): Call it.
21981 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
21982 Remove.
21983 (fatal, fatals): Remove. All callers use complain.c::fatal.
21984 (warn, warni, warns, warnss, warnss): Remove. All callers use
21985 complain.c::complain.
21986 (toomany): Remove, use fatal instead.
21987 * src/files.c (done): No argument, use complain_message_count.
21988 * src/main.c (main): Register `done' to `atexit'.
21989
21990 * src/getargs.c (usage): More `fputs', less `fprintf'.
21991
21992 2000-03-28 Akim Demaille <akim@epita.fr>
21993
21994 * lib/: New directory.
21995 * Makefile.am (SUBDIRS): Adjust.
21996 * configure.in: Adjust.
21997 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
21998 useless.
21999 * src/alloca.c: Moved to lib/.
22000 * src/getopt.c: Likewise.
22001 * src/getopt1.c: Likewise.
22002 * src/getopt.h: Likewise.
22003 * src/ansi2knr.c: Likewise.
22004 * src/ansi2knr.1: Likewise.
22005 * src/Makefile.am: Adjust.
22006 * lib/Makefile.am: New file.
22007
22008 2000-03-28 Akim Demaille <akim@epita.fr>
22009
22010 * src/getargs.c (usage): Refresh the help message.
22011
22012 2000-03-17 Akim Demaille <akim@epita.fr>
22013
22014 * src/getopt1.c: Updated from textutils 2.0e
22015 * src/getopt.c: Likewise.
22016 * src/getopt.h: Likewise.
22017
22018 2000-03-17 Akim Demaille <akim@epita.fr>
22019
22020 * src/Makefile.am (bison.simple): Fix the awk program: quote only
22021 the file name, not the whole `#line LINE FILE'.
22022
22023 2000-03-17 Akim Demaille <akim@epita.fr>
22024
22025 On syntax errors, report the token on which we choked.
22026
22027 * src/bison.s1 (yyparse): In the label yyerrlab, when
22028 YYERROR_VERBOSE, add yychar in msg.
22029
22030 2000-03-17 Akim Demaille <akim@epita.fr>
22031
22032 * src/reader.c (copy_at): New function.
22033 (copy_guard): Use it.
22034 (copy_action): Use it.
22035
22036 2000-03-17 Akim Demaille <akim@epita.fr>
22037
22038 Be kind to translators, save some useless translations.
22039
22040 * src/main.c (banner): New function.
22041 (fatal_banner): Use it.
22042 (warn_banner): Use it.
22043
22044 2000-03-17 Akim Demaille <akim@epita.fr>
22045
22046 * src/reader.c (copy_definition): Use copy_string and
22047 copy_comment. Removed now unused `match', `ended',
22048 `cplus_comment'.
22049 (copy_comment, copy_string): Moved, to be visible from
22050 copy_definition.
22051
22052 2000-03-17 Akim Demaille <akim@epita.fr>
22053
22054 * src/reader.c (copy_string): Declare `static inline'. No
22055 problems with inline, since it is checked by configure.
22056 (copy_comment): Likewise.
22057
22058 2000-03-17 Akim Demaille <akim@epita.fr>
22059
22060 * src/reader.c (packsymbols): Formatting changes.
22061
22062 2000-03-17 Akim Demaille <akim@epita.fr>
22063
22064 * src/reader.c (copy_comment): New function, factored out from:
22065 (copy_action): Use it. Removed now unused `match', `ended',
22066 `cplus_comment'.
22067 (copy_guard): Likewise.
22068
22069 2000-03-17 Akim Demaille <akim@epita.fr>
22070
22071 * src/reader.c (copy_string): New function, factored out from:
22072 (copy_action): Use it.
22073 (copy_guard): Likewise.
22074
22075 2000-03-17 Akim Demaille <akim@epita.fr>
22076
22077 Change the handling of @s so that they behave exactly like $s.
22078 There is now a pseudo variable @$ (readble and writable), location
22079 of the lhs of the rule (by default ranging from the location of
22080 the first symbol of the rhs, to the location of the last symbol,
22081 or, if the rhs is empty, YYLLOC).
22082
22083 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
22084 yyval.
22085 (yyparse): When providing a default semantic action, provide a
22086 default location action.
22087 (after the $): No longer change `*YYLSP', just stack YYLOC the
22088 same way you stack YYVAL.
22089 * src/reader.c (read_declarations): Use warns.
22090 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
22091 (copy_action, case '@'): Likewise.
22092 Use a standard error message, to save useless work from
22093 translators.
22094
22095 2000-03-17 Akim Demaille <akim@epita.fr>
22096
22097 * src/bison.s1: Formatting and cosmetics changes.
22098 * src/reader.c: Likewise.
22099 Update the Copyright notice.
22100
22101 2000-03-17 Akim Demaille <akim@epita.fr>
22102
22103 * src/bison.s1 (#line): All set to `#line' only, since the
22104 Makefile now handles them.
22105
22106 2000-03-16 Akim Demaille <akim@epita.fr>
22107
22108 * src/output.c (output_rule_data): Output the documentation of
22109 some of the tables.
22110 (Copyright notice): Update.
22111 Formatting changes.
22112
22113 2000-03-16 Akim Demaille <akim@epita.fr>
22114
22115 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
22116 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
22117 One `#if YYDEBUG' remains, since it uses variables which are
22118 defined only if `YYDEBUG != 0'.
22119
22120 2000-03-16 Akim Demaille <akim@epita.fr>
22121
22122 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
22123 and related variables so that the similarities are highlighted.
22124
22125 2000-03-16 Akim Demaille <akim@epita.fr>
22126
22127 * src/bison.s1: Properly indent CPP directives.
22128
22129 2000-03-16 Akim Demaille <akim@epita.fr>
22130
22131 * src/bison.s1: Properly indent the `alloca' CPP section.
22132
22133 2000-03-16 Akim Demaille <akim@epita.fr>
22134
22135 Do not hard code values of directories in `configure.in'.
22136 Update the `configure' tool chain.
22137
22138 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
22139 src/makefile.am.
22140 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
22141 (AC_OUTPUT): Add m4/Makefile.
22142 Bump to bison 1.28a, 1.29 has never been released.
22143 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
22144 handled via src/Makefile.am.
22145 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
22146 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
22147 autoheader.
22148 * Makefile.am (SUBDIRS): Add m4.
22149 (ACLOCAL_AM_FLAGS): New variable.
22150 (AUTOMAKE_OPTIONS): Add check-news.
22151 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
22152 the proper line number and file name.
22153 (DEFS): Propagate the location of bison library files and of the
22154 locale files.
22155 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
22156 builddir.
22157 * acinclude.m4: Remove, replaced by the directory m4.
22158 * m4/Makefile.am (EXTRA_DIST): New variable.
22159 * m4/gettext.m4: New file, from the fileutils.
22160 * m4/lcmessage.m4: Likewise
22161 * m4/progtest.m4: Likewise.
22162 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
22163
22164 2000-03-10 Akim Demaille <akim@epita.fr>
22165
22166 * src/closure.c:
22167 Formatting changes of various comments.
22168 Respect the GNU coding standards at various places.
22169 Don't use `_()' when no translation is needed.
22170
22171 1999-12-13 Jesse Thilo <jthilo@gnu.org>
22172
22173 * src/files.c:
22174 OS/2 honors TMPDIR environment variable.
22175
22176 1999-12-13 Jesse Thilo <jthilo@gnu.org>
22177
22178 * doc/bison.texinfo: Tweaked spelling and grammar.
22179 Updated ISBN.
22180 Removed reference to price of printed copy.
22181 Mention BISON_SIMPLE and BISON_HAIRY.
22182
22183 1999-12-13 Jesse Thilo <jthilo@gnu.org>
22184
22185 * configure.in, NEWS:
22186 Bison 1.29 released.
22187
22188 1999-10-27 Jesse Thilo <jthilo@gnu.org>
22189
22190 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
22191 Added reference card.
22192
22193 1999-07-26 Jesse Thilo <jthilo@gnu.org>
22194
22195 * po/ru.po: Added Russian translation.
22196
22197 1999-07-26 Jesse Thilo <jthilo@gnu.org>
22198
22199 * configure.in: Added Russian translation.
22200
22201 1999-07-06 Jesse Thilo <jthilo@gnu.org>
22202
22203 * configure.in, NEWS, README:
22204 Released version 1.28.
22205
22206 1999-06-14 Jesse Thilo <jthilo@gnu.org>
22207
22208 * src/system.h:
22209 Squashed redefinition warning on some systems.
22210
22211 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
22212 Have configure build version string instead of relying on ANSI string
22213 concatentation.
22214
22215 1999-06-14 Jesse Thilo <jthilo@gnu.org>
22216
22217 * po/POTFILES.in: Got rid of version.c.
22218
22219 1999-06-14 Jesse Thilo <jthilo@gnu.org>
22220
22221 * acconfig.h, configure.in:
22222 Have configure build version string instead of relying on ANSI string
22223 concatentation.
22224
22225 1999-06-08 Jesse Thilo <jthilo@gnu.org>
22226
22227 * doc/bison.1:
22228 Dropped mention of `+' for long-named options.
22229
22230 1999-05-30 Jesse Thilo <jthilo@gnu.org>
22231
22232 * src/files.c: Added <unistd.h> for unlink().
22233
22234 * src/Makefile.am, src/system.h:
22235 I18n fixes.
22236
22237 1999-05-30 Jesse Thilo <jthilo@gnu.org>
22238
22239 * README: Added a FAQ list.
22240
22241 * configure.in, acconfig.h:
22242 I18n fixes.
22243
22244 1999-05-30 Jesse Thilo <jthilo@gnu.org>
22245
22246 * doc/FAQ, doc/Makefile.am:
22247 Added a FAQ list.
22248
22249 1999-05-19 Jesse Thilo <jthilo@gnu.org>
22250
22251 * src/alloc.h, src/symtab.h, src/version.c:
22252 Protected inclusion of "config.h" with HAVE_CONFIG_H.
22253
22254 1999-04-18 Jesse Thilo <jthilo@gnu.org>
22255
22256 * src/.cvsignore, src/Makefile.am:
22257 Reorganized: sources in `src', documentation in `doc'.
22258
22259 * src/lex.c (literalchar):
22260 fixed the code for escaping double quotes (thanks
22261 Jonathan Czisny.)
22262
22263 1999-04-18 Jesse Thilo <jthilo@gnu.org>
22264
22265 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
22266 Adjusted paths to reflect directory reorganization.
22267
22268 1999-04-18 Jesse Thilo <jthilo@gnu.org>
22269
22270 * doc/.cvsignore, doc/Makefile.am:
22271 Reorganized: sources in `src', documentation in `doc'.
22272
22273 1999-04-18 Jesse Thilo <jthilo@gnu.org>
22274
22275 * configure.in:
22276 Updated AC_INIT file to reflect directory reorganization.
22277
22278 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
22279 Reorganized: sources in `src', documentation in `doc'.
22280
22281 1999-04-13 Jesse Thilo <jthilo@gnu.org>
22282
22283 * src/allocate.c:
22284 Don't declare calloc() and realloc() if not necessary.
22285
22286 1999-04-13 Jesse Thilo <jthilo@gnu.org>
22287
22288 * configure.in, acconfig.h, acinclude.m4:
22289 Don't declare calloc() and realloc() if not necessary.
22290
22291 1999-03-23 Jesse Thilo <jthilo@gnu.org>
22292
22293 * po/.cvsignore: Added i18n support.
22294
22295 1999-03-23 Jesse Thilo <jthilo@gnu.org>
22296
22297 * acconfig.h, configure.in, Makefile.am:
22298 Added i18n support.
22299
22300 1999-03-22 Jesse Thilo <jthilo@gnu.org>
22301
22302 * src/bison.s1: Fixed #line numbers.
22303
22304 1999-03-15 Jesse Thilo <jthilo@gnu.org>
22305
22306 * po/es.po, po/fr.po, po/nl.po, po/de.po:
22307 Added PO files from Translation Project.
22308
22309 1999-03-03 Jesse Thilo <jthilo@gnu.org>
22310
22311 * Makefile.am:
22312 Added support for non-ANSI compilers (ansi2knr).
22313
22314 1999-02-16 Jesse Thilo <jthilo@gnu.org>
22315
22316 * configure.in: Bumped version number to 1.27.
22317
22318 * Makefile.am:
22319 Added `bison.simple' to list of files removed by `make distclean'.
22320
22321 1999-02-12 Jesse Thilo <jthilo@gnu.org>
22322
22323 * src/files.c, src/files.h:
22324 Defined locations of parser files in config.h instead of Makefile.
22325
22326 1999-02-12 Jesse Thilo <jthilo@gnu.org>
22327
22328 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
22329 Defined locations of parser files in config.h instead of Makefile.
22330
22331 1999-02-09 Jesse Thilo <jthilo@gnu.org>
22332
22333 * Makefile.am:
22334 Removed inappropriate use of $< macro.
22335
22336 1999-02-05 Jesse Thilo <jthilo@gnu.org>
22337
22338 * po/Makefile.in.in, po/POTFILES.in:
22339 Add `po' directory skeleton.
22340
22341 1999-01-27 Jesse Thilo <jthilo@gnu.org>
22342
22343 * README: Document help-bison list.
22344
22345 * configure.in: Add check for mkstemp().
22346
22347 1999-01-20 Jesse Thilo <jthilo@gnu.org>
22348
22349 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
22350 Hush a few compiler warnings.
22351
22352 * src/files.c:
22353 Add tryclose(), which verifies that fclose was successful.
22354 Hush a couple of compiler warnings.
22355
22356 1999-01-20 Jesse Thilo <jthilo@gnu.org>
22357
22358 * Makefile.am, OChangeLog:
22359 ChangeLog is now automatically generated. Include the old version as
22360 OChangeLog.
22361
22362 1999-01-14 Jesse Thilo <jthilo@gnu.org>
22363
22364 * 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:
22365 Update FSF address.
22366
22367 1999-01-14 Jesse Thilo <jthilo@gnu.org>
22368
22369 * doc/bison.texinfo: Fix formatting glitch.
22370
22371 * doc/bison.texinfo: Update FSF address.
22372
22373 1999-01-14 Jesse Thilo <jthilo@gnu.org>
22374
22375 * acconfig.h: Update FSF address.
22376
22377 1999-01-08 Jesse Thilo <jthilo@gnu.org>
22378
22379 * src/system.h:
22380 Don't define PACKAGE here, since config.h defines it.
22381
22382 1998-12-30 Jesse Thilo <jthilo@gnu.org>
22383
22384 * src/reader.c: Update copyright date.
22385
22386 * src/main.c:
22387 Ditch sprintf to statically-sized buffers in fatal/warn functions in
22388 favor of output directly to stderr (avoids buffer overruns).
22389
22390 * src/reader.c: Some checks for premature EOF.
22391
22392 * 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:
22393 Use prototypes if the compiler understands them.
22394
22395 * src/files.c: Honor TMPDIR on Unix hosts.
22396 Use prototypes if the compiler understands them.
22397
22398 * src/reader.c:
22399 Fix a couple of buffer overrun bugs.
22400 Use prototypes if the compiler understands them.
22401
22402 * src/system.h: Include unistd.h and ctype.h.
22403 Use #ifdef instead of #if for NLS symbols.
22404
22405 1998-12-30 Jesse Thilo <jthilo@gnu.org>
22406
22407 * doc/bison.texinfo:
22408 Delete comment "consider using @set for edition number, etc..." since
22409 we now are doing so.
22410
22411 1998-12-30 Jesse Thilo <jthilo@gnu.org>
22412
22413 * configure.in:
22414 Use prototypes if the compiler understands them.
22415
22416 * NEWS: Document 1.26 highlights.
22417
22418 * Makefile.am: Require Automake 1.3 or later.
22419
22420 * acconfig.h:
22421 Use prototypes if the compiler understands them.
22422
22423 1998-12-29 Jesse Thilo <jthilo@gnu.org>
22424
22425 * src/version.c:
22426 Use VERSION symbol from automake for version number.
22427
22428 1998-12-29 Jesse Thilo <jthilo@gnu.org>
22429
22430 * acconfig.h, configure.in, version.cin:
22431 Use VERSION symbol from automake for version number.
22432
22433 1998-11-28 Jesse Thilo <jthilo@gnu.org>
22434
22435 * Makefile.am:
22436 Distribute original version of simple parser (bison.s1), not built
22437 version (bison.simple).
22438
22439 1998-11-28 Jesse Thilo <jthilo@gnu.org>
22440
22441 * doc/bison.texinfo: Add info dir entry.
22442
22443 * doc/bison.texinfo:
22444 Let automake put version number into documentation.
22445
22446 1998-11-26 Jesse Thilo <jthilo@gnu.org>
22447
22448 * src/bison.cld, src/build.com, src/vmshlp.mar:
22449 Add non-RCS files from /gd/gnu/bison.
22450
22451 1998-11-26 Jesse Thilo <jthilo@gnu.org>
22452
22453 * doc/bison.1:
22454 Document the BISON_HAIRY and BISON_SIMPLE variables.
22455
22456 1998-11-25 Jesse Thilo <jthilo@gnu.org>
22457
22458 * src/version.c: Build version.c automatically.
22459
22460 * src/reader.c:
22461 Fix token numbering (used to start at 258, not 257).
22462
22463 * src/system.h: Include config.h.
22464
22465 * src/getargs.c: Update bug report address.
22466
22467 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
22468 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
22469
22470 1998-11-25 Jesse Thilo <jthilo@gnu.org>
22471
22472 * Makefile.am:
22473 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
22474
22475 * configure.in, version.cin:
22476 Build version.c automatically.
22477
22478 * AUTHORS: Add AUTHORS file.
22479
22480 * README: Update bug report address.
22481
22482 * bison.simple:
22483 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
22484
22485 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
22486 Add automake stuff.
22487
22488 1998-11-25 Jesse Thilo <jthilo@gnu.org>
22489
22490 * doc/bison.texinfo: Clean up some formatting.
22491
22492 1998-05-05 Richard Stallman <rms@gnu.org>
22493
22494 * doc/bison.texinfo:
22495 Explain better why to make a pure parser.
22496
22497 1998-01-05 Richard Stallman <rms@gnu.org>
22498
22499 * src/files.c (openfiles):
22500 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
22501 find a temporary directory, if possible. Do not unlink files while
22502 they are open.
22503
22504 1997-08-25 Richard Stallman <rms@gnu.org>
22505
22506 * src/reader.c (stack_offset;):
22507 Change some warni to warns.
22508
22509 * src/lex.c (literalchar): Use warns, not warni.
22510
22511 1997-06-28 Richard Stallman <rms@gnu.org>
22512
22513 * src/bison.s1: Add a Bison version comment.
22514
22515 * src/main.c (fatal, warn, berror):
22516 Use program_name.
22517
22518 1997-06-28 Richard Stallman <rms@gnu.org>
22519
22520 * Makefile.in (bison_version): New variable.
22521 (dist): Use that variable.
22522 (bison.s1): Substitute the Bison version into bison.simple.
22523
22524 * bison.simple: Add a Bison version comment.
22525
22526 1997-06-18 Richard Stallman <rms@gnu.org>
22527
22528 * src/main.c (fatal, warn, berror):
22529 Make error messages standard.
22530 (toomany): Improve error message text.
22531
22532 * 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:
22533 new.h renamed to alloc.h.
22534
22535 1997-06-18 Richard Stallman <rms@gnu.org>
22536
22537 * Makefile.in: new.h renamed to alloc.h.
22538
22539 1997-05-24 Richard Stallman <rms@gnu.org>
22540
22541 * src/lex.c (literalchar):
22542 Fix the code for escaping \, " and '.
22543
22544 (lex): Avoid trouble when there are many chars
22545 to discard in a char literal with just several chars in it.
22546
22547 1997-05-17 Richard Stallman <rms@gnu.org>
22548
22549 * src/bison.s1:
22550 Use malloc, if using alloca is troublesome.
22551 (YYSTACK_USE_ALLOCA): New flag macro.
22552 Define it for some systems and compilers.
22553 (YYSTACK_ALLOC): New macro.
22554 (yyparse): Use YYSTACK_ALLOC to allocate stack.
22555 If it was malloc'd, free it.
22556
22557 1997-05-17 Richard Stallman <rms@gnu.org>
22558
22559 * bison.simple:
22560 Use malloc, if using alloca is troublesome.
22561 (YYSTACK_USE_ALLOCA): New flag macro.
22562 Define it for some systems and compilers.
22563 (YYSTACK_ALLOC): New macro.
22564 (yyparse): Use YYSTACK_ALLOC to allocate stack.
22565 If it was malloc'd, free it.
22566
22567 1997-04-23 Richard Stallman <rms@gnu.org>
22568
22569 * src/bison.s1:
22570 (alloca) [__hpux]: Always define as __builtin_alloca.
22571
22572 1997-04-23 Richard Stallman <rms@gnu.org>
22573
22574 * bison.simple:
22575 (alloca) [__hpux]: Always define as __builtin_alloca.
22576
22577 1997-04-22 Richard Stallman <rms@gnu.org>
22578
22579 * src/bison.s1:
22580 [__hpux]: Include alloca.h (right for HPUX 10)
22581 instead of declaring alloca (right for HPUX 9).
22582
22583 * src/bison.s1 (__yy_memcpy):
22584 Declare arg `count' as unsigned int.
22585 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
22586
22587 1997-04-22 Richard Stallman <rms@gnu.org>
22588
22589 * bison.simple:
22590 [__hpux]: Include alloca.h (right for HPUX 10)
22591 instead of declaring alloca (right for HPUX 9).
22592
22593 * bison.simple (__yy_memcpy):
22594 Declare arg `count' as unsigned int.
22595 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
22596
22597 1997-01-03 Richard Stallman <rms@gnu.org>
22598
22599 * src/allocate.c: [__STDC__ or _MSC_VER]:
22600 Declare calloc and realloc to return void *.
22601
22602 1997-01-02 Richard Stallman <rms@gnu.org>
22603
22604 * src/system.h:
22605 [_MSC_VER]: Include stdlib.h and process.h.
22606 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
22607
22608 * src/main.c (main): Return FAILURE as a value.
22609 (printable_version): Declare arg as int, not char.
22610
22611 1997-01-02 Richard Stallman <rms@gnu.org>
22612
22613 * Makefile.in (dist):
22614 Explicitly check for symlinks, and copy them.
22615
22616 1996-12-19 Richard Stallman <rms@gnu.org>
22617
22618 * src/files.c:
22619 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
22620
22621 1996-12-18 Paul Eggert <eggert@gnu.org>
22622
22623 * src/bison.s1 (yyparse):
22624 If __GNUC__ and YYPARSE_PARAM are both defined,
22625 declare yyparse to have a void * argument.
22626
22627 1996-12-18 Paul Eggert <eggert@gnu.org>
22628
22629 * bison.simple (yyparse):
22630 If __GNUC__ and YYPARSE_PARAM are both defined,
22631 declare yyparse to have a void * argument.
22632
22633 1996-12-17 Richard Stallman <rms@gnu.org>
22634
22635 * src/reduce.c (nbits): Add some casts.
22636
22637 1996-08-12 Richard Stallman <rms@gnu.org>
22638
22639 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
22640
22641 1996-08-12 Richard Stallman <rms@gnu.org>
22642
22643 * bison.simple: Test _MSDOS as well as _MSDOS_.
22644
22645 1996-07-31 Richard Stallman <rms@gnu.org>
22646
22647 * src/bison.s1:
22648 [__sun && __i386]: Include alloca.h.
22649
22650 1996-07-31 Richard Stallman <rms@gnu.org>
22651
22652 * bison.simple:
22653 [__sun && __i386]: Include alloca.h.
22654
22655 1996-07-30 Richard Stallman <rms@gnu.org>
22656
22657 * src/bison.s1: Comment change.
22658
22659 * src/bison.s1: Test _MSDOS_, not MSDOS.
22660
22661 1996-07-30 Richard Stallman <rms@gnu.org>
22662
22663 * bison.simple: Comment change.
22664
22665 * bison.simple: Test _MSDOS_, not MSDOS.
22666
22667 1996-06-01 Richard Stallman <rms@gnu.org>
22668
22669 * 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:
22670 Insert `_' macro around many string constants.
22671
22672 * src/main.c:
22673 Insert `_' macro around many string constants.
22674
22675 (main): Call setlocale, bindtextdomain and textdomain.
22676
22677 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
22678 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
22679 [ENABLE_NLS]: Include libintl.h.
22680 [ENABLE_NLS] (gettext): Define.
22681 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
22682 (N_, PACKAGE, LOCALEDIR): New macros.
22683
22684 1996-06-01 Richard Stallman <rms@gnu.org>
22685
22686 * POTFILES.in: New file.
22687
22688 * Makefile.in (allocate.o):
22689 Define target explicitly.
22690
22691 * Makefile.in (CFLAGS): Set to @CFLAGS@.
22692 (LDFLAGS): Set to @LDFLAGS@.
22693 (configure): Run autoconf only if preceding `cd' succeeds.
22694 (bison.s1): Redirect output to temporary file then move the
22695 temporary to the target, rather than redirecting directly to bison.s1.
22696 (clean): Remove config.status and config.log.
22697 (distclean): Don't remove config.status here.
22698
22699 1996-05-12 Richard Stallman <rms@gnu.org>
22700
22701 * src/bison.s1:
22702 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
22703
22704 1996-05-12 Richard Stallman <rms@gnu.org>
22705
22706 * bison.simple:
22707 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
22708
22709 1996-05-11 Richard Stallman <rms@gnu.org>
22710
22711 * src/bison.s1 (__yy_memcpy):
22712 Really reorder the args, as was supposedly done on Feb 14 1995.
22713 (yyparse): Calls changed accordingly.
22714
22715 1996-05-11 Richard Stallman <rms@gnu.org>
22716
22717 * Makefile.in (dist): Don't use $(srcdir).
22718
22719 * bison.simple (__yy_memcpy):
22720 Really reorder the args, as was supposedly done on Feb 14 1995.
22721 (yyparse): Calls changed accordingly.
22722
22723 1996-01-27 Richard Stallman <rms@gnu.org>
22724
22725 * src/output.c (output_rule_data):
22726 Test YYERROR_VERBOSE in the conditional
22727 around the definition of ttyname.
22728
22729 1995-12-29 Richard Stallman <rms@gnu.org>
22730
22731 * src/bison.s1:
22732 Fix line numbers in #line commands.
22733
22734 1995-12-29 Richard Stallman <rms@gnu.org>
22735
22736 * bison.simple:
22737 Fix line numbers in #line commands.
22738
22739 1995-12-27 Richard Stallman <rms@gnu.org>
22740
22741 * src/bison.s1 (YYPARSE_PARAM_DECL):
22742 In C++, make it always null.
22743 (YYPARSE_PARAM_ARG): New macro.
22744 (yyparse): Use YYPARSE_PARAM_ARG.
22745
22746 1995-12-27 Richard Stallman <rms@gnu.org>
22747
22748 * bison.simple (YYPARSE_PARAM_DECL):
22749 In C++, make it always null.
22750 (YYPARSE_PARAM_ARG): New macro.
22751 (yyparse): Use YYPARSE_PARAM_ARG.
22752
22753 1995-11-29 Richard Stallman <rms@gnu.org>
22754
22755 * doc/bison.texinfo:
22756 Describe literal string tokens, %raw, %no_lines, %token_table.
22757
22758 1995-11-29 Daniel Hagerty <hag@gnu.org>
22759
22760 * doc/bison.texinfo: Fixed update date
22761
22762 1995-10-16 Richard Stallman <rms@gnu.org>
22763
22764 * src/version.c: Version 1.25.
22765
22766 1995-10-16 Richard Stallman <rms@gnu.org>
22767
22768 * NEWS: *** empty log message ***
22769
22770 1995-10-16 Richard Stallman <rms@gnu.org>
22771
22772 * doc/bison.1, doc/bison.rnh:
22773 Add new options.
22774
22775 1995-10-15 Richard Stallman <rms@gnu.org>
22776
22777 * src/vmsgetargs.c, src/getargs.c:
22778 Added -n, -k, and -raw switches.
22779 (noparserflag, toknumflag, rawtoknumflag): New variables.
22780
22781 * src/symtab.h (SALIAS):
22782 New #define for adding aliases to %token.
22783 (struct bucket): Added `alias' field.
22784
22785 * src/reduce.c (reduce_grammar):
22786 Revise error message.
22787 (print_notices): Remove final `.' from error message.
22788
22789 * src/reader.c (reader_output_yylsp):
22790 New function.
22791 (readgram): Use `#if 0' around code that accepted %command
22792 inside grammar rules: The documentation doesn't allow it,
22793 and it will fail since the %command processors scan for the next %.
22794 (parse_token_decl): Extended the %token
22795 declaration to allow a multi-character symbol as an alias.
22796 (parse_thong_decl): New function.
22797 (read_declarations): Added %thong declarations.
22798 (read_declarations): Handle NOOP to deal with allowing
22799 % declarations as another means to specify the flags.
22800 (readgram): Allow %prec prior to semantics embedded in a rule.
22801 (skip_to_char, read_declarations, copy_definition)
22802 (parse_token_decl, parse_start_decl, parse_type_decl)
22803 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
22804 (get_type_name, copy_guard, copy_action, readgram)
22805 (get_type, packsymbols): Revised most error messages.
22806 Changed `fatal' to `warnxxx' to avoid aborting for error.
22807 Revised and use multiple warnxxx functions to avoid using VARARGS1.
22808 (read_declarations): Improve the error message for
22809 an invalid character. Do not abort.
22810 (read_declarations, copy_guard, copy_action): Use
22811 printable_version to avoid unprintable characters in printed output.
22812 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
22813 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
22814 Allow the type of a non-terminal can be given
22815 more than once, as long as all specifications give the same type.
22816
22817 * src/output.c:
22818 (output_headers, output_trailers, output, output_gram)
22819 (output_rule_data): Implement noparserflag variable.
22820 Implement toknumflag variable.
22821 (output): Call reader_output_yylsp to output LTYPESTR.
22822
22823 * src/main.c (main):
22824 If reader sees an error, don't process the grammar.
22825 (fatals): Updated to not use VARARGS1.
22826 (printable_version, int_to_string, warn, warni, warns, warnss)
22827 (warnsss): New error reporting functions. Avoid abort for error.
22828
22829 * src/lex.h:
22830 Added THONG and NOOP for alias processing.
22831 Added SETOPT for the new code that allows setting options with %flags.
22832
22833 * src/lex.c:
22834 Include getopt.h. Add some extern decls.
22835 (safegetc): New function to deal with EOF gracefully.
22836 (literalchar); new function to deal with reading \ escapes.
22837 (lex): Use literalchar.
22838 (lex): Implemented "..." tokens.
22839 (literalchar, lex, parse_percent_token): Made tokenbuffer
22840 always contain the token. This includes growing the token
22841 buffer while reading an integer.
22842 (parse_percent_token): Replaced if-else statement with percent_table.
22843 (parse_percent_token): Added % declarations as another
22844 way to specify the flags -n, -l, and -r. Also added hooks for
22845 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
22846 major changes to files.c.
22847 (lex) Retain in the incoming stream a character following
22848 an incorrect '/'.
22849 (skip_white_space, lex): Revised most error messages
22850 and changed fatal to warn to avoid aborting.
22851 (percent_table): Added %thong declarations.
22852
22853 * src/gram.h: Comment changes.
22854
22855 * src/files.c (openfiles, open_extra_files, done):
22856 Add faction flag
22857 and actfile file. Handle noparserflag. Both for -n switch.
22858
22859 * src/conflicts.c (resolve_sr_conflict):
22860 Remove use of alloca.
22861
22862 1995-06-01 Jim Meyering <meyering@gnu.org>
22863
22864 * doc/bison.texinfo: *** empty log message ***
22865
22866 1995-05-06 Richard Stallman <rms@gnu.org>
22867
22868 * src/bison.s1: Comment change.
22869
22870 1995-05-06 Richard Stallman <rms@gnu.org>
22871
22872 * bison.simple: Comment change.
22873
22874 1995-05-03 Richard Stallman <rms@gnu.org>
22875
22876 * src/version.c: Version now 1.24.
22877
22878 * src/bison.s1: Change distribution terms.
22879
22880 * src/version.c: Version now 1.23.
22881
22882 1995-05-03 Richard Stallman <rms@gnu.org>
22883
22884 * doc/bison.texinfo:
22885 Rewrite "Conditions for Using Bison".
22886 Update version to 1.24.
22887
22888 1995-05-03 Richard Stallman <rms@gnu.org>
22889
22890 * bison.simple: Change distribution terms.
22891
22892 1995-02-23 Richard Stallman <rms@gnu.org>
22893
22894 * src/files.c: Test __VMS_POSIX as well as VMS.
22895
22896 1995-02-14 Jim Meyering <meyering@gnu.org>
22897
22898 * src/bison.s1 (__yy_memcpy):
22899 Renamed from __yy_bcopy to avoid
22900 confusion. Reverse FROM and TO arguments to be consistent with
22901 those of memcpy.
22902
22903 1995-02-14 Jim Meyering <meyering@gnu.org>
22904
22905 * bison.simple (__yy_memcpy):
22906 Renamed from __yy_bcopy to avoid
22907 confusion. Reverse FROM and TO arguments to be consistent with
22908 those of memcpy.
22909
22910 1994-11-10 David J. MacKenzie <djm@gnu.org>
22911
22912 * NEWS: reformat
22913
22914 * NEWS: New file.
22915
22916 * Makefile.in (DISTFILES): Include NEWS.
22917
22918 * Makefile.in (DISTFILES):
22919 Include install-sh, not install.sh.
22920
22921 * configure.in: Update to Autoconf v2 macro names.
22922
22923 1994-10-05 David J. MacKenzie <djm@gnu.org>
22924
22925 * Makefile.in: fix typo
22926
22927 * Makefile.in (prefix, exec_prefix):
22928 Let configure set them.
22929
22930 1994-09-28 David J. MacKenzie <djm@gnu.org>
22931
22932 * Makefile.in: Set datadir to $(prefix)/share.
22933
22934 1994-09-15 Richard Stallman <rms@gnu.org>
22935
22936 * src/bison.s1:
22937 Update copyright notice and GPL version.
22938
22939 1994-09-15 Richard Stallman <rms@gnu.org>
22940
22941 * bison.simple:
22942 Update copyright notice and GPL version.
22943
22944 1994-07-12 Richard Stallman <rms@gnu.org>
22945
22946 * src/reduce.c, src/reader.c:
22947 entered into RCS
22948
22949 1994-05-05 David J. MacKenzie <djm@gnu.org>
22950
22951 * Makefile.in: entered into RCS
22952
22953 1994-03-26 Richard Stallman <rms@gnu.org>
22954
22955 * src/bison.s1: entered into RCS
22956
22957 1994-03-26 Richard Stallman <rms@gnu.org>
22958
22959 * bison.simple: entered into RCS
22960
22961 1994-03-25 Richard Stallman <rms@gnu.org>
22962
22963 * src/main.c: entered into RCS
22964
22965 1994-03-24 Richard Stallman <rms@gnu.org>
22966
22967 * src/conflicts.c: entered into RCS
22968
22969 1994-01-02 Richard Stallman <rms@gnu.org>
22970
22971 * Makefile.in: *** empty log message ***
22972
22973 1993-11-21 Richard Stallman <rms@gnu.org>
22974
22975 * src/bison.s1: *** empty log message ***
22976
22977 1993-11-21 Richard Stallman <rms@gnu.org>
22978
22979 * doc/bison.texinfo: entered into RCS
22980
22981 * doc/bison.texinfo: *** empty log message ***
22982
22983 1993-11-21 Richard Stallman <rms@gnu.org>
22984
22985 * bison.simple: *** empty log message ***
22986
22987 1993-10-25 David J. MacKenzie <djm@gnu.org>
22988
22989 * doc/bison.texinfo: *** empty log message ***
22990
22991 1993-10-19 Richard Stallman <rms@gnu.org>
22992
22993 * src/bison.s1: *** empty log message ***
22994
22995 1993-10-19 Richard Stallman <rms@gnu.org>
22996
22997 * bison.simple: *** empty log message ***
22998
22999 1993-10-14 Richard Stallman <rms@gnu.org>
23000
23001 * src/bison.s1: *** empty log message ***
23002
23003 1993-10-14 Richard Stallman <rms@gnu.org>
23004
23005 * bison.simple: *** empty log message ***
23006
23007 1993-09-14 David J. MacKenzie <djm@gnu.org>
23008
23009 * doc/bison.texinfo: *** empty log message ***
23010
23011 1993-09-13 Noah Friedman <friedman@gnu.org>
23012
23013 * Makefile.in: *** empty log message ***
23014
23015 1993-09-10 Richard Stallman <rms@gnu.org>
23016
23017 * src/conflicts.c: *** empty log message ***
23018
23019 * src/system.h: entered into RCS
23020
23021 1993-09-10 Richard Stallman <rms@gnu.org>
23022
23023 * doc/bison.1: entered into RCS
23024
23025 1993-09-06 Noah Friedman <friedman@gnu.org>
23026
23027 * src/version.c: entered into RCS
23028
23029 1993-09-06 Noah Friedman <friedman@gnu.org>
23030
23031 * Makefile.in: *** empty log message ***
23032
23033 1993-07-30 David J. MacKenzie <djm@gnu.org>
23034
23035 * Makefile.in: *** empty log message ***
23036
23037 1993-07-24 Richard Stallman <rms@gnu.org>
23038
23039 * src/bison.s1: *** empty log message ***
23040
23041 1993-07-24 Richard Stallman <rms@gnu.org>
23042
23043 * bison.simple: *** empty log message ***
23044
23045 1993-07-08 David J. MacKenzie <djm@gnu.org>
23046
23047 * Makefile.in: *** empty log message ***
23048
23049 1993-07-04 Richard Stallman <rms@gnu.org>
23050
23051 * src/bison.s1: *** empty log message ***
23052
23053 1993-07-04 Richard Stallman <rms@gnu.org>
23054
23055 * bison.simple: *** empty log message ***
23056
23057 1993-06-26 David J. MacKenzie <djm@gnu.org>
23058
23059 * src/getargs.c: entered into RCS
23060
23061 1993-06-26 David J. MacKenzie <djm@gnu.org>
23062
23063 * doc/bison.texinfo: *** empty log message ***
23064
23065 * doc/bison.1: New file.
23066
23067 1993-06-25 Richard Stallman <rms@gnu.org>
23068
23069 * src/getargs.c: New file.
23070
23071 1993-06-16 Richard Stallman <rms@gnu.org>
23072
23073 * src/bison.s1: *** empty log message ***
23074
23075 1993-06-16 Richard Stallman <rms@gnu.org>
23076
23077 * bison.simple: *** empty log message ***
23078
23079 1993-06-03 Richard Stallman <rms@gnu.org>
23080
23081 * src/bison.s1: New file.
23082
23083 1993-06-03 Richard Stallman <rms@gnu.org>
23084
23085 * doc/bison.texinfo: *** empty log message ***
23086
23087 1993-06-03 Richard Stallman <rms@gnu.org>
23088
23089 * bison.simple: New file.
23090
23091 1993-05-19 Richard Stallman <rms@gnu.org>
23092
23093 * doc/bison.texinfo: New file.
23094
23095 1993-05-07 Noah Friedman <friedman@gnu.org>
23096
23097 * Makefile.in: *** empty log message ***
23098
23099 1993-04-28 Noah Friedman <friedman@gnu.org>
23100
23101 * src/reader.c: *** empty log message ***
23102
23103 1993-04-23 Noah Friedman <friedman@gnu.org>
23104
23105 * src/alloc.h: entered into RCS
23106
23107 1993-04-20 David J. MacKenzie <djm@gnu.org>
23108
23109 * src/version.c: *** empty log message ***
23110
23111 * src/files.c, src/allocate.c:
23112 entered into RCS
23113
23114 * src/reader.c: *** empty log message ***
23115
23116 * src/lex.c: entered into RCS
23117
23118 * src/conflicts.c: New file.
23119
23120 * src/symtab.c: entered into RCS
23121
23122 * src/alloc.h: New file.
23123
23124 * src/LR0.c: entered into RCS
23125
23126 1993-04-18 Noah Friedman <friedman@gnu.org>
23127
23128 * src/reader.c: New file.
23129
23130 * src/version.c: *** empty log message ***
23131
23132 1993-04-18 Noah Friedman <friedman@gnu.org>
23133
23134 * Makefile.in: *** empty log message ***
23135
23136 1993-04-17 Noah Friedman <friedman@gnu.org>
23137
23138 * Makefile.in: *** empty log message ***
23139
23140 1993-04-15 Richard Stallman <rms@gnu.org>
23141
23142 * src/main.c, src/files.c:
23143 New file.
23144
23145 1993-04-15 Noah Friedman <friedman@gnu.org>
23146
23147 * configure.in: entered into RCS
23148
23149 * configure.in: *** empty log message ***
23150
23151 * configure.in: New file.
23152
23153 1993-04-14 Richard Stallman <rms@gnu.org>
23154
23155 * Makefile.in: New file.
23156
23157 1993-04-13 Richard Stallman <rms@gnu.org>
23158
23159 * src/version.c: New file.
23160
23161 1993-03-25 Richard Stallman <rms@gnu.org>
23162
23163 * src/output.c: entered into RCS
23164
23165 1992-09-25 Richard Stallman <rms@gnu.org>
23166
23167 * configure.bat: entered into RCS
23168
23169 1992-06-22 Richard Stallman <rms@gnu.org>
23170
23171 * src/vmsgetargs.c: entered into RCS
23172
23173 1992-06-22 Richard Stallman <rms@gnu.org>
23174
23175 * doc/bison.rnh: entered into RCS
23176
23177 1992-04-20 David J. MacKenzie <djm@gnu.org>
23178
23179 * README: entered into RCS
23180
23181 1992-01-22 Richard Stallman <rms@gnu.org>
23182
23183 * src/machine.h: entered into RCS
23184
23185 1991-12-21 Richard Stallman <rms@gnu.org>
23186
23187 * src/lalr.c, src/closure.c:
23188 entered into RCS
23189
23190 1991-12-20 Richard Stallman <rms@gnu.org>
23191
23192 * src/state.h: entered into RCS
23193
23194 1991-12-18 Richard Stallman <rms@gnu.org>
23195
23196 * src/print.c, src/nullable.c, src/derives.c:
23197 entered into RCS
23198
23199 1991-11-03 David J. MacKenzie <djm@gnu.org>
23200
23201 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
23202 entered into RCS
23203
23204 1988-09-09 Richard Stallman <rms@gnu.org>
23205
23206 * src/bison.hairy: entered into RCS
23207
23208 1987-12-16 Richard Stallman <rms@gnu.org>
23209
23210 * REFERENCES: entered into RCS
23211
23212
23213 -----
23214
23215 Copyright (C) 1987, 1988, 1991, 1992, 1993, 1994, 1995, 1996,
23216 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
23217 Free Software Foundation, Inc.
23218
23219 Copying and distribution of this file, with or without
23220 modification, are permitted provided the copyright notice and this
23221 notice are preserved.