]> git.saurik.com Git - bison.git/blob - ChangeLog
Use b4_parser_tables_define in glr.cc.
[bison.git] / ChangeLog
1 2008-11-26 Akim Demaille <demaille@gostai.com>
2
3 Use b4_parser_tables_define in glr.cc.
4 * data/glr.c: Use b4_parser_tables_define instead of defining the
5 (deterministic integral) tables by hand.
6
7 2008-11-26 Akim Demaille <demaille@gostai.com>
8
9 Use b4_parser_tables_define in Java.
10 * data/java.m4 (b4_typed_parser_table): Rename as...
11 (b4_typed_parser_table_define): this, for consistency.
12 Accept a comment as $4.
13 Move $2 into yy*_.
14 (b4_integral_parser_table): Rename as...
15 (b4_integral_parser_table_define): this.
16 * data/lalr1.java: Adjust all uses.
17 Use b4_parser_tables_define instead of generation by hand.
18
19 2008-11-26 Akim Demaille <demaille@gostai.com>
20
21 Prepare the convergence bw C style and Java table generation.
22 * data/bison.m4 (b4_tables_map, b4_tables_declare)
23 (b4_tables_define): Rename as...
24 (b4_integral_parser_tables_map, b4_parser_tables_declare)
25 (b4_parser_tables_define): these.
26 * data/c.m4 (b4_table_define): Rename as...
27 (b4_integral_parser_table_define): this.
28 * data/lalr1.cc: Adjust.
29 (b4_table_define, b4_table_declare): Rename as...
30 (b4_integral_parser_table_define)
31 (b4_integral_parser_table_declare): these.
32 (yyrline_): Move the comment where it is actually used.
33 * data/yacc.c: Adjust.
34 (yyrline): Use b4_integral_parser_table_define.
35
36 2008-11-26 Akim Demaille <demaille@gostai.com>
37
38 Regen.
39 * src/parse-gram.h, src/parse-gram.c: Regen.
40
41 2008-11-26 Akim Demaille <demaille@gostai.com>
42
43 Factor the generation of the (integral) tables bw yacc.c and lalr1.cc.
44 * data/lalr1.cc (b4_tables_map): Move to...
45 * data/bison.m4: here.
46 Update the comment for yytable during the flight.
47 (b4_tables_declare, b4_tables_define): New.
48 * data/lalr1.cc: Use them.
49 * data/c.m4 (b4_table_define): New.
50 * data/yacc.c: Use b4_tables_define instead of output the tables
51 by hand.
52 * tests/regression.at (Web2c Actions): Adjust the expected output,
53 the order of the tables changed.
54
55 2008-11-26 Akim Demaille <demaille@gostai.com>
56
57 Get rid of (yy)rhs and (yy)prhs.
58 These tables are no longer needed in the parsers, and they don't seem to
59 be useful. They are not documented either.
60
61 * src/output.c (prepare_rules): Get rid of rhs and prhs.
62 Adjust the computation of (yy)r2.
63
64 2008-11-26 Akim Demaille <demaille@gostai.com>
65
66 Rule length is unsigned.
67 * src/gram.h, src/gram.c (rule_rhs_length): Return a size_t.
68
69 2008-11-26 Akim Demaille <demaille@gostai.com>
70
71 Get rid of lalr1-split.cc.
72 It was no longer maintainer.
73
74 * data/lalr1-split.cc: Remove.
75 * etc/bench.pl.in (bench_fusion_parser): Remove.
76 Adjust.
77
78 2008-11-26 Akim Demaille <demaille@gostai.com>
79
80 Use yy* consistently.
81 * data/glr.c: Now that yyrhs no longer exists as a global
82 variable, rename local "rhs" variables into "yyrhs" for
83 consistency.
84
85 2008-11-25 Akim Demaille <demaille@gostai.com>
86
87 Get rid of yyrhs and yyprhs in glr.c.
88 * data/glr.c (yyrhs, yyprhs): Remove.
89 Instead, use the state stack and yystos.
90
91 2008-11-25 Akim Demaille <demaille@gostai.com>
92
93 Flag glr tests.
94 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): If glr, declare it
95 as an Autotest keyword.
96
97 2008-11-25 Akim Demaille <demaille@gostai.com>
98
99 Prefer TESTSUITE_FLAGS.
100 TESTSUITEFLAGS is barely readable.
101
102 * tests/local.mk (TESTSUITE_FLAGS): Default to $(TESTSUITEFLAGS)
103 for backward compatibility.
104 Use the former instead of the latter.
105
106 2008-11-25 Akim Demaille <demaille@gostai.com>
107
108 Get rid of yyrhs and yyprhs in larl1.java.
109 * data/lalr1.java (yyrhs_, yyprhs_): Remove.
110 (yy_reduce_print): Rather, use yystos_ and the state stack.
111
112 2008-11-25 Akim Demaille <demaille@gostai.com>
113
114 Formatting changes.
115
116 2008-11-25 Akim Demaille <demaille@gostai.com>
117
118 Get rid of yyrhs and yyprhs in yacc.c.
119 They were used to get the symbol types, given a rule number, when
120 displaying the top of the stack before a reduction. But the symbol type
121 is available from the state stack. This has two be benefits: two tables
122 less in the parser (making it smaller), and a more consistent use of the
123 three stacks which will help to fuse them.
124
125 * data/yacc.c (yyprhs, yyrhs): Remove.
126 (YY_REDUCE_PRINT): Pass yyssp to yy_reduce_print.
127 (yy_reduce_print): Take yyssp as argument.
128 Use it, together with yystos, to get the symbol type.
129 * tests/regression.at (Web2c Report): Remove these tables from the
130 expected output.
131
132 2008-11-25 Akim Demaille <demaille@gostai.com>
133
134 b4_tables_map.
135 The point is to factor the generation of the tables across skeletons.
136 This is language dependant.
137
138 * data/c.m4 (b4_comment_): New.
139 Should be usable to define how to generate tables independently of
140 the language.
141 (b4_c_comment): New.
142 (b4_comment): Bounce to b4_c_comment.
143 Now support $2 = [PREFIX] for indentation.
144 * data/lalr1.cc (b4_table_declare): Don't output a comment if
145 there is no comment.
146 Indent it properly when there is one.
147 Output the ending semicolon.
148 (b4_table_define): Space changes.
149 Output the ending semicolon.
150 (b4_tables_map): New.
151 Use it twice instead of declaring and defining the (integral)
152 tables by hand.
153
154 2008-11-25 Akim Demaille <demaille@gostai.com>
155
156 b4_table_declare.
157 * data/lalr1.cc (b4_table_declare): New.
158 Use it to declare the tables defined with b4_table_define.
159 (b4_table_define): Declare a third arg to match b4_table_declare
160 signature.
161 Move all the comments around invocations of b4_table_define into
162 the invocations itselves.
163 Move things around to have the order for declarations and
164 definitions.
165
166 2008-11-25 Akim Demaille <demaille@gostai.com>
167
168 Formatting changes.
169 * data/lalr1.java: here.
170
171 2008-11-25 Akim Demaille <demaille@gostai.com>
172
173 b4_args is more general than only C++.
174 * data/lalr1.cc (b4_args, _b4_args): Move to...
175 * data/bison.m4: here.
176
177 2008-11-21 Di-an Jan <dianj@freeshell.org>
178
179 Implement no-XXX arguments for --warnings, --report, --trace.
180 * src/getargs.c (flags_argmatch): Handles no-XXX.
181 Fix typo in doxygen comment.
182
183 2008-11-21 Akim Demaille <demaille@gostai.com>
184
185 Display the changes in cross-options.texi.
186 * build-aux/cross-options.pl ($sep): New, to separate items.
187 * doc/local.mk ($(CROSS_OPTIONS_TEXI)): Use diff to display the
188 changes.
189
190 2008-11-20 Di-an Jan <dianj@freeshell.org>
191
192 Improves options in the manual.
193 * doc/bison.texinfo (-g, -x): Add space before argument.
194 (Option Cross Key): Implement FIXME: listing directives also.
195 * build-aux/cross-options.pl: Read from <STDIN> rather than <>.
196 (Short Option): Special case -d. Put arguments inside @option.
197 (Bison Directive): Add column, automatically extracted from
198 src/scan-gram.l (actual name passed as the first argument)
199 with special case for %define.
200 * doc/local.mk (doc/cross-options.texi): Pass src/scan-gram.l
201 to build-aux/cross-options.pl.
202 * src/getargs.c (usage): Document limitations of cross-options.pl.
203 * src/scan-gram.l: Likewise.
204
205 2008-11-18 Joel E. Denny <jdenny@ces.clemson.edu>
206
207 Fix unexpanded macros in GLR defines file.
208 Reported by Csaba Raduly at
209 <http://lists.gnu.org/archive/html/bug-bison/2008-11/msg00048.html>.
210 * THANKS (Csaba Raduly): Add.
211 * data/glr.c: Fix overquoting on b4_prefix for yylval and yylloc.
212 * tests/calc.at (_AT_DATA_CALC_Y): If %defines is specified, generate
213 lexer in a separate module that includes the defines file.
214 (AT_CHECK_CALC): From AT_FULL_COMPILE, request compilation of lexer
215 source.
216 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_DEFINES_IF.
217 Adjust AT_LOC and AT_VAL to use AT_NAME_PREFIX.
218 (AT_BISON_OPTION_POPDEFS): Pop AT_DEFINES_IF.
219 (AT_DATA_SOURCE_PROLOGUE): New.
220 (AT_DATA_GRAMMAR_PROLOGUE): Use AT_DATA_SOURCE_PROLOGUE.
221 (AT_DATA_SOURCE): New.
222 (AT_FULL_COMPILE): Extend to support an additional source file.
223
224 2008-11-18 Akim Demaille <demaille@gostai.com>
225
226 More TODO.
227 * TODO: More short term issues.
228
229 2008-11-18 Akim Demaille <demaille@gostai.com>
230
231 Regen.
232 * src/parse-gram.h, src/parse-gram.c: Regen.
233
234 2008-11-18 Akim Demaille <demaille@gostai.com>
235
236 Use b4_subtract where possible.
237 * data/lalr1.cc (b4_subtract): Move to...
238 * data/bison.m4: here.
239 * data/glr.c (b4_rhs_data): Use it.
240 * data/yacc.c (b4_rhs_value, b4_rhs_location): Use it.
241
242 2008-11-18 Akim Demaille <demaille@gostai.com>
243
244 Remove incorrect mode specification.
245 * data/glr.cc: Don't pretend it's C code.
246
247 2008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
248
249 Simplify last patch slightly.
250 * src/getargs.c (getargs): Here.
251
252 2008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
253
254 Fix last warning from --enable-gcc-warnings.
255 * src/getargs.c (getargs): Don't assign const address to non-const
256 pointer.
257
258 2008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
259
260 Don't let maintainer-*-check targets force a version update.
261 * cfg.mk (_is-dist-target): Implement. maintainer-check* was already
262 handled.
263
264 2008-11-17 Di-an Jan <dianj@freeshell.org>
265
266 * doc/bison.texinfo: Synchronize ``Detail Node Listing''.
267 Align menus. Adjust word wrapping. Use node names for menu names.
268 (Examples): Don't abbreviate node names.
269 (LocalWords): Remove abbreviations.
270 (Copying): Make description a sentence.
271 (Java Action Features): Remove period to match the rest of menu.
272
273 2008-11-17 Di-an Jan <dianj@freeshell.org>
274
275 Handles several --enable-gcc-warnings.
276 * src/getargs.c (command_line_location): Set parameters to void.
277 * src/output.c (symbol_type_name_cmp): Make static.
278 (symbols_by_type_name): Set parameters to void.
279 (symbol_definitions_output): Remove unused parameter. Rename as...
280 (prepare_symbol_definitions): this.
281 (muscles_output): Move symbol_definitions_output to...
282 (output): here as prepare_symbol_definitions.
283 * tests/c++.at (AT_CHECK_VARIANTS): Remove unused parameters of main.
284 (AT_CHECK_NAMESPACE): Make unused parameter lloc unnamed.
285
286 2008-11-17 Di-an Jan <dianj@freeshell.org>
287
288 * tests/c++.at (AT_CHECK_VARIANTS): Fixes tests 198-202.
289 Use AT_DATA_GRAMMAR instead of AT_DATA for compiled tests.
290
291 2008-11-16 Akim Demaille <demaille@gostai.com>
292
293 Add missing $(EXEEXT).
294 * doc/local.mk ($(CROSS_OPTIONS_TEXI)): The target is
295 "src/bison$(EXEEXT)".
296 Reported by Di-an Jan.
297
298 2008-11-15 Akim Demaille <demaille@gostai.com>
299
300 * TODO: Update.
301
302 2008-11-15 Akim Demaille <demaille@gostai.com>
303
304 Formatting changes.
305 * tests/input.at: here.
306
307 2008-11-15 Akim Demaille <demaille@gostai.com>
308
309 Remove duplicate header inclusion.
310 * src/LR0.c: here.
311
312 2008-11-15 Akim Demaille <demaille@gostai.com>
313
314 * src/parse-gram.h, src/parse-gram.c: Regen.
315
316 2008-11-15 Akim Demaille <demaille@gostai.com>
317
318 Support parametric types.
319
320 There are two issues to handle: first scanning nested angle
321 bracket pairs to support types such as std::pair< std::string,
322 std::list<std::string> > >.
323
324 Another issue is to address idiosyncracies of C++: do not glue two
325 closing angle brackets together (otherwise it's operator>>), and
326 avoid sticking blindly a TYPE to the opening <, as it can result
327 in '<:' which is a digraph for '['.
328
329 * src/scan-gram.l (brace_level): Rename as...
330 (nesting): this.
331 (SC_TAG): New.
332 Implement support for complex tags.
333 (tag): Accept
334 , but not <.
335 * data/lalr1.cc (b4_symbol_value, b4_symbol_value_template)
336 (b4_symbol_variant): Leave space around types as parameters.
337 * examples/variant.yy: Use nested template types and leading ::.
338 * src/parse-gram.y (TYPE, TYPE_TAG_ANY, TYPE_TAG_NONE, type.opt):
339 Rename as...
340 (TAG, TAG_ANY, TAG_NONE, tag.opt): these.
341 * tests/c++.at: Test parametric types.
342
343 2008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
344
345 Test token.prefix.
346 This is not sufficient, but we test at least that the make_SYMBOL
347 interface is not affected by token.prefix. A more general test
348 will be implemented when the support of token.prefix is generalized
349 to more skeletons.
350
351 * tests/c++.at: One more variant test, using token.prefix.
352
353 2008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
354
355 Test the make_TOKEN interface.
356 * tests/c++.at (AT_CHECK_VARIANTS): Require and use locations.
357 Factor the common code in yylex.
358 Use it to test "%define lex_symbol".
359
360 2008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
361
362 Formatting change.
363
364 2008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
365
366 Simplify code for variants bench marks.
367 * etc/bench.pl.in (&generate_grammar_list): Define and use
368 location_type.
369 Factor the common code in yylex.
370
371 2008-11-15 Akim Demaille <demaille@gostai.com>
372
373 Better error message.
374 * bootstrap (find_tool): Fix the error message.
375
376 2008-11-15 Akim Demaille <demaille@gostai.com>
377
378 Update variant.yy to newest interface.
379 * examples/variant.yy: Define lex_symbol.
380 Adjust.
381
382 2008-11-15 Akim Demaille <demaille@gostai.com>
383
384 Don't use locations in variant.yy.
385 * examples/variant.yy: Adjust to not using locations.
386
387 2008-11-15 Akim Demaille <demaille@gostai.com>
388
389 Comment changes.
390 * data/local.mk, etc/local.mk, examples/local.mk: Use Automake
391 comments for the license.
392
393 2008-11-15 Akim Demaille <demaille@gostai.com>
394
395 Remove tests/Makefile.am.
396 * tests/Makefile.am: Rename as...
397 * tests/local.mk: this.
398 * Makefile.am, configure.ac: Adjust.
399 * Makefile.am (DISTCLEANFILES): Define.
400 (maintainer-check, maintainer-xml-check, maintainer-push-check):
401 Remove, we no longer need to bounce to the real targets.
402
403 2008-11-15 Akim Demaille <demaille@gostai.com>
404
405 Comment changes.
406
407 2008-11-15 Akim Demaille <demaille@gostai.com>
408
409 djgpp/local.mk.
410 * Makefile.am (EXTRA_DIST): Move djgpp related part to...
411 * djgpp/local.mk: this new file.
412
413 2008-11-15 Akim Demaille <demaille@gostai.com>
414
415 Remove doc/Makefile.am.
416 * doc/Makefile.am: Rename as...
417 * doc/local.mk: this.
418 Adjust paths
419 * Makefile.am, configure.ac: Adjust.
420 * Makefile.am (MOSTLYCLEANFILES): New.
421 * src/local.mk: Adjust.
422
423 2008-11-15 Akim Demaille <demaille@gostai.com>
424
425 Move sc_tight_scope into maint.mk.
426 It does not work, and I don't know how it was supposed to work: it
427 seems to be looking for sources in the build tree. I just moved
428 it at a better place, fixing it is still required.
429
430 * src/local.mk (echo): Remove.
431 (sc_tight_scope): Move to...
432 * maint.mk: here.
433
434 2008-11-15 Akim Demaille <demaille@gostai.com>
435
436 Regen.
437 * src/parse-gram.h, src/parse-gram.h: Regen.
438
439 2008-11-15 Akim Demaille <demaille@gostai.com>
440
441 Remove src/Makefile.am.
442 * src/Makefile.am: Rename as...
443 * src/local.mk: this.
444 Prefix all the paths with src/.
445 (AUTOMAKE_OPTIONS): Build object files in the sub dirs.
446 (AM_CPPFLAGS): Find find in builddir/src.
447 (YACC): Move the flags into...
448 (AM_YFLAGS): here.
449 * maint.mk (sc_tight_scope): Disable.
450 It used to bounce to the version in src/Makefile.am which is now
451 part of this very Makefile.
452 * Makefile.am, configure.ac: Adjust.
453 * src/scan-code-c.c, src/scan-code.l: We can no longer rely on
454 include "..." to find files "here": we are no longer in src/, so
455 qualify the includes with src/.
456 * doc/Makefile.am (PREPATH): No longer include the top_builddir
457 prefix.
458 (.x.1): Adjust to be able to create src/foo from the top level
459 Makefile, instead of going bounce to src/Makefile the creation of
460 foo.
461
462 2008-11-15 Akim Demaille <demaille@gostai.com>
463
464 Remove useless variable.
465 * doc/Makefile.am (srcsrcdir): Remove.
466
467 2008-11-15 Akim Demaille <demaille@gostai.com>
468
469 Remove data/Makefile.am.
470 * data/Makefile.am: Rename as...
471 * data/local.mk: this.
472 Adjust paths.
473 * Makefile.am, configure.ac: Adjust.
474
475 2008-11-15 Akim Demaille <demaille@gostai.com>
476
477 Remove etc/Makefile.am.
478 * etc/Makefile.am: Rename as...
479 * etc/local.mk: this.
480 Adjust.
481 * Makefile.am, configure.ac: Adjust.
482
483 2008-11-15 Akim Demaille <demaille@gostai.com>
484
485 Remove examples/local.mk.
486 examples/calc++/Makefile.am might be interesting to keep as is, since
487 it is an example in itself.
488
489 * examples/Makefile.am: Rename as...
490 * examples/local.mk: this.
491 Adjust.
492 * Makefile.am, configure.ac: Adjust.
493
494 2008-11-15 Akim Demaille <demaille@gostai.com>
495
496 Remove build-aux/Makefile.am.
497 Recursive Makefiles are really way too slow, let's get rid of some of
498 them.
499
500 * build-aux/Makefile.am: Rename as...
501 * build-aux/local.mk: this.
502 Adjust paths.
503 * Makefile.am, configure.ac: Adjust.
504
505 2008-11-15 Akim Demaille <demaille@gostai.com>
506
507 Provide convenience constructors for locations and positions.
508 * data/location.cc (position::position): Accept file, line and
509 column as arguments with default values.
510 Always qualify initial line and column literals as unsigned.
511 (location::location): Provide convenience constructors.
512
513 2008-11-15 Akim Demaille <demaille@gostai.com>
514
515 Instead of using make_symbol<TOK_FOO>, generate make_FOO for each
516 token type.
517 Using template buys us nothing, and makes it uselessly complex to
518 construct a symbol. Besides, it could not be generalized to other
519 languages, while make_FOO would work in C/Java etc.
520
521 * data/lalr1.cc (b4_symbol_): New.
522 (b4_symbol): Use it.
523 (b4_symbol_constructor_declaration_)
524 (b4_symbol_constructor_definition_): Instead of generating
525 specializations of an overloaded template function, just generate
526 several functions whose names are forged from the token names
527 without the token.prefix.
528 (b4_symbol_constructor_declarations): Generate them for all the
529 symbols, not just by class of symbol type, now that instead of
530 specializing a function template by the token, we generate a
531 function named after the token.
532 (b4_symbol_constructor_specialization_)
533 (b4_symbol_constructor_specializations): Remove.
534 * etc/bench.pl.in: Adjust to this new API.
535
536 2008-11-13 Akim Demaille <demaille@gostai.com>
537
538 %define token.prefix.
539 Provide a means to add a prefix to the name of the tokens as
540 output in the generated files. Because of name clashes, it is
541 good to have such a prefix such as TOK_ that protects from names
542 such as EOF, FILE etc. But it clutters the grammar itself.
543
544 * data/bison.m4 (token.prefix): Empty by default.
545 * data/c.m4 (b4_token_enum, b4_token_define): Use it.
546 * data/lalr1.cc (b4_symbol): Ditto.
547
548 2008-11-13 Akim Demaille <demaille@gostai.com>
549
550 Compute at M4 time some of the subtractions.
551 * data/lalr1.cc (b4_subtract): New.
552 (b4_rhs_data): Use it.
553
554 2008-11-13 Akim Demaille <demaille@gostai.com>
555
556 symbol::token.
557 This allows the user to get the type of a token returned by yylex.
558
559 * data/lalr1.cc (symbol::token): New.
560 (yytoknum_): Define when %define lex_symbol, independently of
561 %debug.
562 (yytoken_number_): Move into...
563 (symbol::token): here, since that's the only use.
564 The other one is YYPRINT which was not officially supported
565 by lalr1.cc, and anyway it did not work since YYPRINT uses this
566 array under a different name (yytoknum).
567
568 2008-11-13 Akim Demaille <demaille@gostai.com>
569
570 YYERRCODE.
571 * TODO (YYERRCODE): Mention the case of $undef.
572
573 2008-11-13 Akim Demaille <demaille@gostai.com>
574
575 TODO: YYPRINT.
576 * TODO (YYPRINT): New.
577
578 2008-11-13 Akim Demaille <demaille@gostai.com>
579
580 Comment changes.
581 * data/lalr1.cc, data/yacc.c: Fix the description of the
582 yytranslate and yytoknum tables.
583
584 2008-11-13 Akim Demaille <demaille@gostai.com>
585
586 Define make_symbol in the header.
587 To reach good performances these functions should be inlined (yet
588 this is to measure precisely). To this end they must be available
589 to the caller.
590
591 * data/lalr1.cc (b4_symbol_constructor_definition_): Qualify
592 location_type with the class name.
593 Since will now be output in the header, declare "inline".
594 No longer use b4_symbol_constructor_specializations, but
595 b4_symbol_constructor_definitions in the header.
596 Don't call it in the *.cc file.
597
598 2008-11-13 Akim Demaille <demaille@gostai.com>
599
600 Define yytranslate in the header for lex_symbol.
601 * data/lalr1.cc: Move the invocation of b4_yytranslate_definition
602 into the header file when using %define lex_symbol.
603 (yytranslate_): Declare inline.
604
605 2008-11-13 Akim Demaille <demaille@gostai.com>
606
607 Define the constructors of symbol_type in
608 b4_symbol_constructor_definitions.
609 The constructors are called by the make_symbol functions, which a
610 forthcoming patch will move elsewhere. Hence the interest of
611 putting them together.
612
613 The stack_symbol_type does not need to be moved, it is used only
614 by the parser.
615
616 * data/lalr1.cc: Move symbol_type and symbol_base_type
617 constructors into...
618 (b4_symbol_constructor_definitions): here.
619 Adjust.
620
621 2008-11-13 Akim Demaille <demaille@gostai.com>
622
623 Make it easier to move the definition of yytranslate_.
624 Forthcoming changes will make it possible to use yytranslate_
625 from outside the parser implementation file.
626
627 * data/lalr1.cc (b4_yytranslate_definition): New.
628 Use it.
629
630 2008-11-13 Akim Demaille <demaille@gostai.com>
631
632 Remove useless class specification.
633 * data/lalr1.cc (b4_symbol_constructor_specialization_): No need
634 to refer to the class name to use a type defined by the class for
635 arguments of member functions.
636
637 2008-11-13 Akim Demaille <demaille@gostai.com>
638
639 Finer input type for yytranslate.
640 This patch is debatable: the tradition expects yylex to return an int
641 which happens to correspond to token_number (which is an enum). This
642 allows for instance to return characters (such as '*' etc.). But this
643 goes against the stronger typing I am trying to have with the new
644 lex interface which return a symbol_type. So in this case, feed
645 yytranslate_ with a token_type.
646
647 * data/lalr1.cc (yytranslate_): When in %define lex-symbol,
648 expect a token_type.
649
650 2008-11-13 Akim Demaille <demaille@gostai.com>
651
652 Honor lex-params in %define lex_symbol mode.
653 * data/lalr1.cc: Use b4_lex_param.
654
655 2008-11-13 Akim Demaille <demaille@gostai.com>
656
657 Simplify names.
658 * src/output.c (symbol_definitions_output): Rename symbol
659 attributes type_name and has_type_name as type and has_type.
660 * data/lalr1.cc: Adjust uses.
661
662 2008-11-13 Akim Demaille <demaille@gostai.com>
663
664 Use b4_type_names for the union type.
665 The union used to compute the size of the variant used to iterate
666 over the type of all the symbols, with a lot of redundancy. Now
667 iterate over the lists of symbols having the same type-name.
668
669 * data/lalr1.cc (b4_char_sizeof_): New.
670 (b4_char_sizeof): Use it.
671 Adjust to be called with a list of numbers instead of a single
672 number.
673 Adjust its caller for new-line issues.
674
675 2008-11-13 Akim Demaille <demaille@gostai.com>
676
677 Define the "identifier" of a symbol.
678 Symbols may have several string representations, for instance if
679 they have an alias. What I call its "id" is a string that can be
680 used as an identifier. May not exist.
681
682 Currently the symbols which have the "tag_is_id" flag set are
683 those that don't have an alias. Look harder for the id.
684
685 * src/output.c (is_identifier): Move to...
686 * src/symtab.c (is_identifier): here.
687 * src/symtab.h, src/symtab.c (symbol_id_get): New.
688 * src/output.c (symbol_definitions_output): Use it to define "id"
689 and "has_id".
690 Remove the definition of "tag_is_id".
691 * data/lalr1.cc: Use the "id" and "has_id" whereever "tag" and
692 "tag_is_id" were used to produce code.
693 We still use "tag" for documentation.
694
695 2008-11-11 Akim Demaille <demaille@gostai.com>
696
697 Locations are no longer required by lalr1.cc.
698 * data/lalr1.cc (_b4_args, b4_args): New.
699 Adjust all uses of locations to make them optional.
700 * tests/c++.at (AT_CHECK_VARIANTS): No longer use the locations.
701 (AT_CHECK_NAMESPACE): Check the use of locations.
702 * tests/calc.at (_AT_DATA_CALC_Y): Adjust to be usable with or
703 without locations with lalr1.cc.
704 Test these cases.
705 * tests/output.at: Check lalr1.cc with and without location
706 support.
707 * tests/regression.at (_AT_DATA_EXPECT2_Y, _AT_DATA_DANCER_Y):
708 Don't use locations.
709
710 2008-11-11 Akim Demaille <demaille@gostai.com>
711
712 AT_FULL_COMPILE.
713 * tests/local.at (AT_FULL_COMPILE): New.
714 * tests/actions.at, tests/calc.at, tests/regression.at: Use it.
715
716 2008-11-11 Akim Demaille <demaille@gostai.com>
717
718 Support parens in calc++.
719 * doc/bison.texinfo (Calc++ Scanner, Calc++ Parser): Support parens.
720 * examples/calc++/test (run): Check the expected output.
721 Adjust callers.
722 Check parens too.
723
724 2008-11-11 Akim Demaille <demaille@gostai.com>
725
726 Simplify lalr1.cc since %defines is mandatory.
727 * data/lalr1.cc: Remove useless calls to b4_defines_if.
728
729 2008-11-11 Akim Demaille <demaille@gostai.com>
730
731 TODO: yyfmt.
732 * TODO (yysyntax_error): New item.
733
734 2008-11-11 Akim Demaille <demaille@gostai.com>
735
736 Prefer M4 to CPP.
737 * data/lalr1.cc: Use b4_error_verbose_if instead of #if
738 YYERROR_VERBOSE.
739
740 2008-11-11 Akim Demaille <demaille@gostai.com>
741
742 Support i18n of the parse error messages.
743 * TODO (lalr1.cc/I18n): Remove.
744 * data/lalr1.cc (yysyntax_error_): Support the translation of the
745 error messages, as done in yacc.c.
746 Stay within the yy* pseudo namespace.
747
748 2008-11-11 Akim Demaille <demaille@gostai.com>
749
750 More TODO.
751 * TODO (single stack, yysyntax_error): New.
752
753 2008-11-11 Akim Demaille <demaille@gostai.com>
754
755 Make it possible to return a symbol_type from yylex.
756 * data/lalr1.cc (b4_lex_symbol_if): New.
757 (parse): When lex_symbol is defined, expected yylex to return the
758 complete lookahead.
759 * etc/bench.pl.in (generate_grammar_list): Extend to support this
760 yylex interface.
761 (bench_variant_parser): Exercise it.
762
763 2008-11-11 Akim Demaille <demaille@gostai.com>
764
765 Remove useless bench case.
766 * etc/bench.pl.in (bench_variant_parser): VARIANT_DESTROY is
767 no longer used.
768
769 2008-11-11 Akim Demaille <demaille@gostai.com>
770
771 Improve display of directives.
772 * etc/bench.pl.in (parse_term): Don't add useless eol.
773
774 2008-11-11 Akim Demaille <demaille@gostai.com>
775
776 Use string_cast in the bench.
777 * etc/bench.pl.in (generate_grammar_list): Define and use
778 string_cast.
779
780 2008-11-11 Akim Demaille <demaille@gostai.com>
781
782 Replace yychar with a Boolean.
783 * data/lalr1.cc (parse::yychar): Replace by...
784 (parse::yyempty): this.
785
786 2008-11-11 Akim Demaille <demaille@gostai.com>
787
788 Factor the tables.
789 * TODO: New item.
790
791 2008-11-11 Akim Demaille <demaille@gostai.com>
792
793 Let yytranslate handle the eof case.
794 * data/lalr1.cc (yytranslate_): Handle the EOF case.
795 Adjust callers.
796 No longer expect yychar to be equal to yyeof_, rather, test the
797 lookahead's (translated) kind.
798
799 2008-11-11 Akim Demaille <demaille@gostai.com>
800
801 yychar cannot be empty in yyerrlab.
802 * TODO (yychar == yyempty_): New.
803 * data/lalr1.cc: Remove the handling of this case.
804 This eases forthcoming changes related to yychar and yytranslate.
805
806 2008-11-11 Akim Demaille <demaille@gostai.com>
807
808 Bench: syntactic sugar for %define/#define.
809 * etc/bench.pl.in (parse_dirs): Support %d and #d with arguments.
810 (&bench_push_parser, bench_variant_parser): Use this feature.
811 (&eat): New.
812 Use it.
813
814 2008-11-11 Akim Demaille <demaille@gostai.com>
815
816 Less memory pressure on the "list" bench.
817 * etc/bench.pl.in (generate_grammar_list): Do not accumulate all
818 the values, to limit memory pressure.
819
820 2008-11-11 Akim Demaille <demaille@gostai.com>
821
822 Introduce make_symbol.
823 make_symbol provides a means to construct a full symbol (kind,
824 value, location) in a single shot. It is meant to be a Symbol
825 constructor, parameterized by the symbol kind so that overloading
826 would prevent incorrect kind/value pairs. Unfortunately
827 parameterized constructors do not work well in C++ (unless the
828 parameter also appears as an argument, which is not acceptable),
829 hence the use of a function instead of a constructor.
830
831 * data/lalr1.cc (b4_symbol_constructor_declaration_)
832 (b4_symbol_constructor_declarations)
833 (b4_symbol_constructor_specialization_)
834 (b4_symbol_constructor_specializations)
835 (b4_symbol_constructor_definition_)
836 (b4_symbol_constructor_definitions): New.
837 Use them where appropriate to generate declaration, declaration of
838 the specializations, and implementations of the templated
839 overloaded function "make_symbol".
840 (variant::variant): Always define a default ctor.
841 Also provide a copy ctor.
842 (symbol_base_type, symbol_type): New ctor overloads for value-less
843 symbols.
844 (symbol_type): Now public, so that functions such as yylex can use
845 it.
846
847 2008-11-11 Akim Demaille <demaille@gostai.com>
848
849 Inform m4 whether a tag is a valid id.
850 * src/output.c (is_identifier): New.
851 (symbol_definitions_output): Use it to define tag_is_id.
852 But maybe this should be done at m4 level?
853
854 2008-11-11 Akim Demaille <demaille@gostai.com>
855
856 Test 214 was failing: it greps with a pattern containing [ ]*
857 which obviously meant to catch spaces and tabs, but contained only
858 spaces. Tabulations in sources are a nuisance, so to simplify the
859 matter, get rid of all the tabulations in the Java sources. The
860 other skeletons will be treated equally later.
861
862 * data/java.m4, data/lalr1.java: Untabify.
863 * tests/java.at: Simplify AT_CHECK_JAVA_GREP invocations:
864 tabulations are no longer generated.
865
866 2008-11-11 Paolo Bonzini <bonzini@gnu.org>
867
868 * bootstrap.conf: Replace m4/warning.m4 with warnings module.
869 * configure.ac: Adjust usage.
870 * lib/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
871 * src/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
872 * tests/atlocal.in: Replace $(WARNING_*FLAGS) with $(WARN_*FLAGS).
873
874 2008-11-10 Di-an Jan <dianj@freeshell.org>
875
876 Workaround Java's ``code too large'' problem for parser tables
877 in most cases, by using one function per initialization.
878 * data/java.m4 (b4_typed_parser_table, b4_integral_parser_table): New.
879 * data/lalr1.java (yypact_, yydefact_, yypgoto_, yydefgoto_,
880 yytable_, yycheck_, yystos_, yytoken_number_, yyr1_, yyr2_, yyrhs_
881 yyprhs_, yyrline_, yytranslate_table_): Use b4_integral_parser_table.
882 (yytname_): Use b4_typed_parser_table.
883 * doc/bison.texinfo (Java Bison Interface): Add note on Java's
884 ``code too large'' error.
885
886 2008-11-10 Di-an Jan <dianj@freeshell.org>
887
888 * NEWS: Document them.
889
890 General Java skeleton improvements.
891 * configure.ac (gt_JAVACOMP): Request target of 1.4, which allows
892 using gcj < 4.3 in the testsuite, according to comments in
893 gnulib/m4/javacomp.m4.
894 * data/java.m4 (stype, parser_class_name, lex_throws, throws,
895 location_type, position_type): Remove extraneous brackets from
896 b4_percent_define_default.
897 (b4_lex_param, b4_parse_param): Remove extraneous brackets from
898 m4_define and m4_define_default.
899 * data/lalr1.java (b4_pre_prologue): Change to b4_user_post_prologue,
900 which marks the end of user code with appropriate syncline, like all
901 the other skeletons.
902 (b4_user_post_prologue): Add. Don't silently drop.
903 (yylex): Remove.
904 (parse): Inline yylex.
905 * doc/bison.texinfo (bisonVersion, bisonSkeleton): Document.
906 (%{...%}): Fix typo of %code imports.
907 * tests/java.at (AT_JAVA_COMPILE): Add "java" keyword.
908
909 Support annotations on parser class with %define annotations.
910 * data/lalr1.java (annotations): Add to parser class modifier.
911 * doc/bison.texinfo (Java Parser Interface): Document
912 %define annotations.
913 (Java Declarations Summary): Document %define annotations.
914 * tests/java.at (Java parser class modifiers): Test annotations.
915
916 Do not generate code for %error-verbose unless requested.
917 * data/lalr1.java (errorVerbose): Rename to yyErrorVerbose.
918 Make private. Make conditional on %error-verbose.
919 (getErrorVerbose, setErrorVerbose): New.
920 (yytnamerr_): Make conditional on %error-verbose.
921 (yysyntax_error): Make some code conditional on %error-verbose.
922 * doc/bison.texinfo (Java Bison Interface): Remove the parts
923 about %error-verbose having no effect.
924 (getErrorVerbose, setErrorVerbose): Document.
925
926 Move constants for token names to Lexer interface.
927 * data/lalr1.java (Lexer): Move EOF, b4_token_enums(b4_tokens) here.
928 * data/java.m4 (b4_token_enum): Indent for move to Lexer interface.
929 (parse): Qualify EOF to Lexer.EOF.
930 * doc/bison.texinfo (Java Parser Interface): Move documentation of
931 EOF and token names to Java Lexer Interface.
932 * tests/java.at (_AT_DATA_JAVA_CALC_Y): Remove Calc qualifier.
933
934 Make yyerror public.
935 * data/lalr1.java (Lexer.yyerror): Use longer parameter name.
936 (yyerror): Change to public. Add Javadoc comments. Use longer
937 parameter names. Make the body rather than the declarator
938 conditional on %locations.
939 * doc/bison.texinfo (yyerror): Document. Don't mark as protected.
940
941 Allow user to add code to the constructor with %code init.
942 * data/java.m4 (b4_init_throws): New, for %define init_throws.
943 * data/lalr1.java (YYParser.YYParser): Add b4_init_throws.
944 Add %code init to the front of the constructor body.
945 * doc/bison.texinfo (YYParser.YYParser): Document %code init
946 and %define init_throws.
947 (Java Declarations Summary): Document %code init and
948 %define init_throws.
949 * tests/java.at (Java %parse-param and %lex-param): Adjust grep.
950 (Java constructor init and init_throws): Add tests.
951
952 2008-11-10 Akim Demaille <demaille@gostai.com>
953
954 Update TODO.
955 * TODO (-D): is implemented.
956 (associativity): Same precedence must have the same associativity.
957 For instance, how can a * b / c be parsed if * is %left and / is
958 %right?
959 (YYERRORCODE, YYFAIL, YYBACKUP): New.
960
961 2008-11-10 Akim Demaille <demaille@gostai.com>
962
963 Formatting changes.
964
965 2008-11-10 Akim Demaille <demaille@gostai.com>
966
967 More information about the symbols.
968 * src/output.c (type_names_output): Document all the symbols,
969 including those that don't have a type-name.
970 (symbol_definitions_output): Define "is_token" and
971 "has_type_name".
972 * data/lalr1.cc (b4_type_action_): Skip symbols that have an empty
973 type-name, now that they are defined too in b4_type_names.
974
975 2008-11-10 Akim Demaille <demaille@gostai.com>
976
977 Regen.
978
979 2008-11-10 Akim Demaille <demaille@gostai.com>
980
981 Make parser::yytranslate static.
982 Small speedup (1%) on the list grammar. And makes yytranslate_
983 available in non member functions.
984
985 * data/lalr1.cc (yytranslate_): Does not need to be a instance
986 function.
987
988 2008-11-10 Akim Demaille <demaille@gostai.com>
989
990 Avoid trailing spaces.
991 * data/c.m4: b4_comment(TEXT): Don't indent empty lines.
992 * data/lalr1.cc: Don't indent before rule and symbol actions, as
993 they can be empty, and anyway this incorrectly indents the first
994 action.
995
996 2008-11-10 Akim Demaille <demaille@gostai.com>
997
998 Comment changes.
999
1000 2008-11-10 Akim Demaille <demaille@gostai.com>
1001
1002 Use "enum" for integral constants.
1003 This is just nicer to read, I observed no speedup.
1004
1005 * data/lalr1.cc (yyeof_, yylast_, yynnts_, yyempty_, yyfinal_)
1006 (yterror_, yyerrcode_, yyntokens_): Define as members of an enum.
1007 (yyuser_token_number_max_, yyundef_token_): Move into...
1008 (yytranslate_): here.
1009
1010 2008-11-10 Akim Demaille <demaille@gostai.com>
1011
1012 Shortcuts in bench directives.
1013 * etc/bench.pl.in (parse_dirs): New.
1014 Use it.
1015 (bench_variant_parser, bench_fusion_parser): Use %s and %d.
1016 Create the benches in "benches/".
1017
1018 2008-11-10 Akim Demaille <demaille@gostai.com>
1019
1020 Formatting changes.
1021 * data/lalr1.cc: here.
1022
1023 2008-11-10 Akim Demaille <demaille@gostai.com>
1024
1025 Adjust verbose message to using emacs.
1026 * etc/bench.pl.in: Inform compilation-mode when we change the
1027 directory.
1028 (generate_grammar_list): Recognize %define "variant" in addition
1029 to %define variant.
1030
1031 2008-11-10 Akim Demaille <demaille@gostai.com>
1032
1033 Classify symbols by type-name.
1034 * src/uniqstr.h (UNIQSTR_CMP): New.
1035 * src/output.c (symbol_type_name_cmp, symbols_by_type_name)
1036 (type_names_output): New.
1037 (muscles_output): Use it.
1038 * data/lalr1.cc (b4_symbol_action_): Remove.
1039 (b4_symbol_case_, b4_type_action_): New.
1040 Adjust uses of b4_symbol_action_ to use b4_type_action_.
1041
1042 2008-11-10 Akim Demaille <demaille@gostai.com>
1043
1044 Change the handling of the symbols in the skeletons.
1045 Before we were using tables which lines were the symbols and which
1046 columns were things like number, tag, type-name etc. It is was
1047 difficult to extend: each time a column was added, all the numbers had
1048 to be updated (you asked for colon $2, not for "tag"). Also, it was
1049 hard to filter these tables when only a subset of the symbols (say the
1050 tokens, or the nterms, or the tokens that have and external number
1051 *and* a type-name) was of interest.
1052
1053 Now instead of monolithic tables, we define one macro per cell. For
1054 instance "b4_symbol(0, tag)" is a macro name which contents is
1055 self-decriptive. The macro "b4_symbol" provides easier access to
1056 these cells.
1057
1058 * src/output.c (type_names_output): Remove.
1059 (symbol_numbers_output, symbol_definitions_output): New.
1060 (muscles_output): Call them.
1061 (prepare_symbols): Define b4_symbols_number.
1062
1063 2008-11-10 Akim Demaille <demaille@gostai.com>
1064
1065 --trace=muscles
1066 * src/getargs.h, src/getargs.c (trace_muscle): New.
1067 (trace_types, trace_args): Support it.
1068 * src/output.c (output_skeleton): Use it.
1069
1070 2008-11-10 Akim Demaille <demaille@gostai.com>
1071
1072 muscles_output.
1073 * src/output.c (muscles_output): New, extracted from...
1074 (output_skeleton): here.
1075 Adjust.
1076
1077 2008-11-10 Akim Demaille <demaille@gostai.com>
1078
1079 Formatting changes.
1080
1081 2008-11-10 Akim Demaille <demaille@gostai.com>
1082
1083 Update the variant example.
1084 * examples/variant.yy: Formatting changes.
1085 One stage build.
1086
1087 2008-11-10 Akim Demaille <demaille@gostai.com>
1088
1089 Support constructor with an argument.
1090 This improves the "list" bench by 2%.
1091
1092 * data/lalr1.cc (variant::build): Add an overloaded version with
1093 an argument.
1094 * tests/c++.at (AT_CHECK_VARIANT): Check it.
1095
1096 2008-11-10 Akim Demaille <demaille@gostai.com>
1097
1098 Test variants.
1099 * tests/c++.at (AT_CHECK_VARIANTS): New.
1100 Use it with and without %define assert.
1101
1102 2008-11-10 Akim Demaille <demaille@gostai.com>
1103
1104 Add %precedence support.
1105 Unfortunately it is not possible to reuse the %prec directive. This
1106 is because to please POSIX, we do not require to end the rules with a
1107 semicolon. As a result,
1108
1109 foo: bar %prec baz
1110
1111 is ambiguous: either a rule which precedence is that of baz, or a rule,
1112 and then a declaration of the precedence of the token baz.
1113
1114 * doc/bison.texinfo: Document %precedence.
1115 (Precedence Only): New.
1116 * src/assoc.h, src/assoc.c (precedence_assoc): New.
1117 * src/conflicts.c (resolve_sr_conflict): Support it.
1118 * src/scan-gram.l, src/parse-gram.y (%precedence): New token.
1119 Parse it.
1120 * tests/calc.at: Use %precedence for NEG.
1121 * tests/conflicts.at (%precedence does not suffice)
1122 (%precedence suffices): New tests.
1123
1124 2008-11-09 Akim Demaille <demaille@gostai.com>
1125
1126 Make benches in a sub dirs.
1127 * etc/bench.pl.in ($dir): New.
1128 Use it.
1129 Check the use of constructors with an argument.
1130 (bench_variant_parser): Fix.
1131
1132 2008-11-09 Akim Demaille <demaille@gostai.com>
1133
1134 fix eof condition
1135
1136 2008-11-09 Akim Demaille <demaille@gostai.com>
1137
1138 Fix --help.
1139
1140 2008-11-09 Akim Demaille <demaille@gostai.com>
1141
1142 Require the generation of parse-gram.output.
1143 * src/Makefile.am (YACC): Pass --report=all.
1144
1145 2008-11-09 Akim Demaille <demaille@gostai.com>
1146
1147 Formatting changes.
1148
1149 2008-11-09 Akim Demaille <demaille@gostai.com>
1150
1151 Update TODO.
1152 * TODO: Remove obsolete items.
1153 Update others.
1154
1155 2008-11-09 Akim Demaille <demaille@gostai.com>
1156
1157 Enhance bench.pl.
1158 * etc/bench.pl.in (parse, parse_expr, parse_term, parse_fact)
1159 (@token, $grammar, $bench): New.
1160 (generate_grammar_variant): Rename as...
1161 (generate_grammar_list): this.
1162 (generate_grammar): Adjust.
1163 (bench_grammar): Rename as...
1164 (bench): this.
1165 Use it in the various bench-marking routines.
1166 (-b, -g): New options.
1167
1168 2008-11-09 Akim Demaille <demaille@gostai.com>
1169
1170 Use a static hierarchy for symbols in the C++ parser.
1171 * data/lalr1.cc (symbol_base_type, symbol_type)
1172 (stack_symbol_type): Make it a static hierarchy.
1173 Adjust dependencies.
1174
1175 2008-11-09 Akim Demaille <demaille@gostai.com>
1176
1177 bench.pl -d, --directive.
1178 * etc/bench.pl.in (@directive): New.
1179 (&bench_grammar): Use it.
1180 (&bench_list_grammar): New, to provide access to the "variant"
1181 grammar.
1182 Use it.
1183 (getopts): Support -d, --directive.
1184
1185 2008-11-09 Akim Demaille <demaille@gostai.com>
1186
1187 Use inline for small operations.
1188 * data/lalr1.cc (symbol_base_type, symbol_type)
1189 (stack_symbol_type): Declare constructor and other operations as
1190 inline.
1191 (yy_destroy_): Inline.
1192
1193 2008-11-09 Akim Demaille <demaille@gostai.com>
1194
1195 Introduce a hierarchy for symbols.
1196 * data/lalr1.cc (symbol_base_type, symbol_type): New.
1197 (data_type): Rename as...
1198 (stack_symbol_type): this.
1199 Derive from symbol_base_type.
1200 (yy_symbol_value_print_): Merge into...
1201 (yy_symbol_print_): this.
1202 Rename as...
1203 (yy_print_): this.
1204 (yydestruct_): Rename as...
1205 (yy_destroy_): this.
1206 (b4_symbols_actions, YY_SYMBOL_PRINT): Adjust.
1207 (parser::parse): yyla is now of symbol_type.
1208 Use its type member instead of yytoken.
1209
1210 2008-11-09 Akim Demaille <demaille@gostai.com>
1211
1212 Rename data_type and stack_symbol_type.
1213 * data/lalr1.cc (data_type): Rename as...
1214 (stack_symbol_type): this.
1215
1216 2008-11-09 Akim Demaille <demaille@gostai.com>
1217
1218 Handle semantic value and location together.
1219 * data/lalr1.cc (b4_symbol_actions): Bounce $$ and @$ to
1220 yydata.value and yydata.location.
1221 (yy_symbol_value_print_, yy_symbol_print_, yydestruct_)
1222 (YY_SYMBOL_PRINT): Now take semantic value and location as a
1223 single arg.
1224 Adjust all callers.
1225 (yydestruct_): New overload for a stack symbol.
1226
1227 2008-11-09 Akim Demaille <demaille@gostai.com>
1228
1229 Push a complete symbol, not connected parts.
1230 * data/lalr1.cc (yypush_): Take a data_type&, not disconnected
1231 state, value and location.
1232 Adjust callers.
1233
1234 2008-11-09 Akim Demaille <demaille@gostai.com>
1235
1236 Agregate yylval and yylloc.
1237 * data/lalr1.cc (parser::yylval, parser::yylloc): Replace by...
1238 (parser::yyla): this.
1239
1240 2008-11-09 Akim Demaille <demaille@gostai.com>
1241
1242 Rely on the state stack to display reduction traces.
1243 To display rhs symbols before a reduction, we used information
1244 about the rule reduced, which required the tables yyrhs and
1245 yyprhs. Now use rely only on the state stack to get the same
1246 information.
1247
1248 * data/lalr1.cc (b4_rhs_data, b4_rhs_state): New.
1249 Use them.
1250 (parser::yyrhs_, parser::yyprhs_): Remove.
1251 (parser::yy_reduce_print_): Use the state stack.
1252
1253 2008-11-09 Akim Demaille <demaille@gostai.com>
1254
1255 Fuse yyval and yyloc into yylhs.
1256 * data/lalr1.cc (b4_lhs_value, b4_lhs_location): Adjust to using
1257 yylhs.
1258 (parse): Replace yyval and yyloc with yylhs.value and
1259 yylhs.location.
1260 After a user action, compute yylhs.state earlier.
1261 (yyerrlab1): Do not play tricks with yylhs.location, rather, use a
1262 fresh error_token.
1263
1264 2008-11-09 Di-an Jan <dianj@freeshell.org>
1265
1266 Remove unused variable.
1267 * src/output.c (type_names_output): Remove unused variable sep.
1268
1269 2008-11-09 Paolo Bonzini <bonzini@gnu.org>
1270
1271 Change tests/output.at quoting.
1272 * tests/output.at (AT_CHECK_OUTPUT): Use conventional m4 quoting when
1273 expanding arguments.
1274
1275 2008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
1276
1277 Don't add a semicolon to actions for %skeleton or %language.
1278 It breaks Java test cases as reported by Akim Demaille.
1279 * src/scan-code.l: Implement.
1280
1281 2008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
1282
1283 Clean up %skeleton and %language priority implementation.
1284 * src/getargs.c (skeleton_prio): Use default_prio rather than 2, and
1285 remove static qualifier because others will soon need to see it.
1286 (language_prio): Likewise.
1287 (getargs): Use command_line_prio rather than 0.
1288 * src/getargs.h (command_line_prio, grammar_prio, default_prio): New
1289 enum fields.
1290 (skeleton_prio): Extern it.
1291 (language_prio): Extern it.
1292 * src/parse-gram.y: Use grammar_prio rather than 1.
1293
1294 2008-11-07 Akim Demaille <demaille@gostai.com>
1295
1296 Moving push traces into yypush_.
1297 * data/lalr1.cc (yypush_): Now takes a optional trace message.
1298 Adjust all uses.
1299
1300 2008-11-07 Akim Demaille <demaille@gostai.com>
1301
1302 The single-stack C++ parser is now the standard one.
1303 * data/lalr1.cc: Rename as...
1304 * data/lalr1-split.cc: this.
1305 * data/lalr1-fusion.cc: Rename as...
1306 * data/lalr1.cc: this.
1307 * etc/bench.pl.in: Adjust.
1308
1309 2008-11-07 Akim Demaille <demaille@gostai.com>
1310
1311 Avoid empty-if warnings.
1312 Reported by Quentin Hocquet.
1313
1314 * data/lalr1-fusion.cc (YY_SYMBOL_PRINT, YY_REDUCE_PRINT)
1315 (YY_STACK_PRINT): Provide some contents even when !YYDEBUG.
1316
1317 2008-11-07 Akim Demaille <demaille@gostai.com>
1318
1319 Pass command line location to skeleton_arg and language_argmatch.
1320 * src/getargs.h, src/getargs.c (skeleton_arg, language_argmatch):
1321 The location argument is now mandatory.
1322 Adjust all dependencies.
1323 (getargs): Use command_line_location.
1324
1325 2008-11-07 Akim Demaille <demaille@gostai.com>
1326
1327 -D, --define.
1328 * src/getargs.c (usage): Document -D.
1329 Fix help string for --locations.
1330 (command_line_location): New.
1331 (short_options, long_options, getargs): Support -D, --define.
1332 (getargs): Move -d support at the right place.
1333 * doc/bison.texinfo (Bison Options): Update.
1334 * tests/input.at (%define, --define): New.
1335
1336 2008-11-07 Akim Demaille <demaille@gostai.com>
1337
1338 Initialize the muscle table before parsing the command line.
1339 * src/getargs.c (quotearg.h, muscle_tab.h): Include.
1340 (getargs): Define file_name.
1341 * src/main.c (main): Initialize muscle_tab before calling
1342 getargs.
1343 * src/muscle_tab.c (muscle_init): No longer define file_name, as
1344 its value is not available yet.
1345
1346 2008-11-07 Akim Demaille <demaille@gostai.com>
1347
1348 Locations without columns for command line arguments.
1349 * src/location.c (location_print): Don't display negative columns.
1350 * src/location.h: Document this.
1351
1352 2008-11-07 Akim Demaille <demaille@gostai.com>
1353
1354 Fix --help.
1355 * src/getargs.c (usage): Fix help string for -W.
1356
1357 2008-11-07 Akim Demaille <demaille@gostai.com>
1358
1359 Handle more general types of option arguments.
1360 * build-aux/cross-options.pl: The argument ends at the first
1361 space, not the first non-symbol character.
1362 Use @var for each word appearing the argument description.
1363
1364 2008-11-07 Akim Demaille <demaille@gostai.com>
1365
1366 Destroy the variants that remain on the stack in case of error.
1367 * data/lalr1-fusion.cc (yydestruct_): Invoke the variant's
1368 destructor.
1369 Display the value only if yymsg is nonnull.
1370 (yyreduce): Invoke yydestruct_ when popping lhs symbols.
1371
1372 2008-11-07 Akim Demaille <demaille@gostai.com>
1373
1374 Add "%define assert" to variants.
1375 This is used to help the user catch cases where some value gets
1376 ovewritten by a new one. This should not happen, as this will
1377 probably leak.
1378
1379 Unfortunately this uncovered a bug in the C++ parser itself: the
1380 lookahead value was not destroyed between two calls to yylex. For
1381 instance if the previous lookahead was a std::string, and then an int,
1382 then the value of the std::string was correctly taken (i.e., the
1383 lookahead was now an empty string), but std::string structure itself
1384 was not reclaimed.
1385
1386 This is now done in variant::build(other&) (which is used to take the
1387 value of the lookahead): other is not only stolen from its value, it
1388 is also destroyed. This incurs a new performance penalty of a few
1389 percent, and union becomes faster again.
1390
1391 * data/lalr1-fusion.cc (variant::build(other&)): Destroy other.
1392 (b4_variant_if): New.
1393 (variant::built): New.
1394 Use it whereever the status of the variant changes.
1395 * etc/bench.pl.in: Check the penalty of %define assert.
1396
1397 2008-11-07 Akim Demaille <demaille@gostai.com>
1398
1399 Use "%define variant" in bench.pl.
1400 * etc/bench.pl.in: No longer use the pseudo directive %variants,
1401 just use %define variants.
1402
1403 2008-11-07 Akim Demaille <demaille@gostai.com>
1404
1405 Regen.
1406 * src/parse-gram.h, src/parse-gram.c: Regen.
1407
1408 2008-11-04 Joel E. Denny <jdenny@ces.clemson.edu>
1409
1410 Fix user actions without a trailing semicolon.
1411 Reported by Sergei Steshenko at
1412 <http://lists.gnu.org/archive/html/bug-bison/2008-11/msg00001.html>.
1413 * THANKS (Sergei Steshenko): Add.
1414 * src/scan-code.l (SC_RULE_ACTION): Fix it.
1415 * tests/regression.at (Fix user actions without a trailing semicolon):
1416 New test case.
1417
1418 2008-11-04 Akim Demaille <demaille@gostai.com>
1419
1420 Use b4_copyright_years.
1421 * data/yacc.c (b4_copyright_years): New.
1422 Fix its value according to the comments in the file.
1423 Use it and undefine it.
1424
1425 2008-11-04 Akim Demaille <demaille@gostai.com>
1426
1427 Formatting changes.
1428 * data/lalr1-fusion.cc, src/parse-gram.y: here.
1429
1430 2008-11-04 Akim Demaille <demaille@gostai.com>
1431
1432 Formatting changes.
1433 * data/lalr1-fusion.cc: here.
1434
1435 2008-11-04 Akim Demaille <demaille@gostai.com>
1436
1437 Use strict on bench.pl.
1438 * etc/bench.pl.in (&run, &generate_grammar): New.
1439 Rename the grammar generating functions for consistency.
1440 Change the interface so that the list of benches to run is passed
1441 as (optionless) arguments.
1442 (&compile): Use &run.
1443
1444 2008-11-04 Akim Demaille <demaille@gostai.com>
1445
1446 Remove spurious initial empty lines.
1447 * data/glr.c, data/glr.cc, data/lalr1.cc, data/lalr1.java,
1448 * data/yacc.c: End the @output lines with an @.
1449
1450 2008-11-04 Akim Demaille <demaille@gostai.com>
1451
1452 Improve the display of sizes.
1453 * etc/bench.p.in: Higher precision.
1454 Sort by decreasing size.
1455
1456 2008-11-04 Akim Demaille <demaille@gostai.com>
1457
1458 Don't memcpy C++ structures.
1459 * data/lalr1-fusion.cc (b4_symbol_variant): Adjust additional
1460 arguments.
1461 (variant::build): New overload for
1462 copy-construction-that-destroys.
1463 (variant::swap): New.
1464 (parser::yypush_): Use it in variant mode.
1465
1466 2008-11-04 Akim Demaille <demaille@gostai.com>
1467
1468 Better defaults for bench.pl.
1469 * etc/bench.pl.in ($verbose, $cflags, $iterations): Change the
1470 default values.
1471 Adjust &verbose uses.
1472 (-q, --quiet): New.
1473
1474 2008-11-04 Akim Demaille <demaille@gostai.com>
1475
1476 Make variant.yy more complex.
1477 std::list cannot be copied via memcpy, they are more demanding than
1478 std::string. Use one std::list to strengthen the test.
1479
1480 * examples/variant.yy: Use lalr1-fusion.cc, not lalr1.cc.
1481 Adjust.
1482 Create a list of strings, instead of a single large string.
1483
1484 2008-11-04 Akim Demaille <demaille@gostai.com>
1485
1486 bench.pl --bench.
1487 * etc/bench.pl.in (--bench, $bench): New.
1488
1489 2008-11-04 Akim Demaille <demaille@gostai.com>
1490
1491 Sort methods.
1492 * data/lalr1-fusion.cc (destroy): Use as() in its definition.
1493 Define it after as().
1494
1495 2008-11-04 Akim Demaille <demaille@gostai.com>
1496
1497 Useless parens.
1498 * data/lalr1-fusion.cc (b4_rhs_location): Remove useless parens.
1499
1500 2008-11-04 Akim Demaille <demaille@gostai.com>
1501
1502 Issue missing synclines after user actions.
1503 * data/c.m4 (b4_case): Issue synclines on the output file.
1504
1505 2008-11-04 Akim Demaille <demaille@gostai.com>
1506
1507 Remove trailing empty line.
1508 * data/lalr1-fusion.cc: Don't add an empty line after the user's
1509 epilogue.
1510
1511 2008-11-04 Akim Demaille <demaille@gostai.com>
1512
1513 Fix output of copyright years.
1514 * data/bison.m4 (b4_copyright): Fix the indentation of the
1515 copyright year paragraph.
1516 Use b4_copyright_years when no years are given.
1517 * data/lalr1.cc, data/lalr1-fusion.cc, data/location.cc
1518 (b4_copyright_years): New.
1519 Use it.
1520
1521 2008-11-04 Akim Demaille <demaille@gostai.com>
1522
1523 Avoid the spurious initial empty line.
1524 * data/lalr1-fusion.cc, data/location.cc: Put a trailing "@" at
1525 the end of @output request to suppress the empty line that
1526 results.
1527
1528 2008-11-04 Akim Demaille <demaille@gostai.com>
1529
1530 Remove parser::rhs_number_type.
1531 * data/lalr1-fusion.cc (rhs_number_type): No longer define it.
1532 (yyrhs_): Use b4_table_define.
1533
1534 2008-11-04 Akim Demaille <demaille@gostai.com>
1535
1536 Fix iteration type.
1537 * data/lalr1-fusion.cc: Use an int to iterate up to an int.
1538
1539 2008-11-04 Akim Demaille <demaille@gostai.com>
1540
1541 Factor the declaration of the integer tables.
1542 * data/lalr1-fusion.cc (b4_table_define): New.
1543 Use it.
1544
1545 2008-11-03 Akim Demaille <demaille@gostai.com>
1546
1547 Fix indentation of tables in lalr1.cc
1548 * data/lalr1-fusion.cc: Fix the indentation.
1549
1550 2008-11-03 Akim Demaille <demaille@gostai.com>
1551
1552 Destroy the lhs symbols after reduction.
1553 * data/lalr1-fusion.cc (parse): After the user action, when in
1554 variant mode, destroy the lhs symbols.
1555
1556 2008-11-03 Akim Demaille <demaille@gostai.com>
1557
1558 Simplify yysyntax_error_ use.
1559 * data/lalr1-fusion.cc (yysyntax_error_): Always pass it the token
1560 type, but make it unnamed in the declaration when it is not used.
1561
1562 2008-11-03 Akim Demaille <demaille@gostai.com>
1563
1564 Let yy::variant::build return an lvalue.
1565 * data/lalr1-fusion.cc (variant::build): Return a reference to the
1566 object.
1567
1568 2008-11-03 Akim Demaille <demaille@gostai.com>
1569
1570 Define yy::variant only when needed.
1571 * data/lalr1-fusion.cc (yy::variant): Define only if variants are
1572 used.
1573
1574 2008-11-03 Akim Demaille <demaille@gostai.com>
1575
1576 Bench the three-stack lalr1.cc.
1577 * etc/bench.pl.in: Bench the three-stack lalr1.cc vs. the
1578 one-stack one.
1579
1580 2008-11-03 Akim Demaille <demaille@gostai.com>
1581
1582 Fail on parse error in calc++.
1583 * doc/bison.texinfo (calc++.cc): Propagate failures to the exit
1584 status.
1585 * examples/calc++/test ($me, $number, $exit, run): New.
1586 Use them to propagate errors to the exit status.
1587
1588 2008-11-03 Akim Demaille <demaille@gostai.com>
1589
1590 Don't specify the skeleton twice in the example.
1591 * examples/calc++/Makefile.am: Don't pass -S to Bison, the grammar
1592 file does what is needed.
1593
1594 2008-11-03 Akim Demaille <demaille@gostai.com>
1595
1596 bench: Improve output.
1597 * etc/bench.pl.in (bench_grammar): Tune the printf format.
1598
1599 2008-11-03 Akim Demaille <demaille@gostai.com>
1600
1601 bench: check impact of %debug on variants.
1602 * etc/bench.pl.in (variant_grammar): Fix the computation of
1603 $variant.
1604 Generate a grammar file that can work with or without %debug.
1605 Do use the @directive.
1606 (bench_variant_parser): Check impact of %debug.
1607 (@directives): Rename all the occurrences to...
1608 (@directive): this, for consistency.
1609
1610 2008-11-03 Akim Demaille <demaille@gostai.com>
1611
1612 bench: report the size too.
1613 * etc/bench.pl.in ($iterations): Defaults to -3.
1614 (&bench_grammar): Require hireswallclock.
1615 Compute and display the size of the result.
1616 More comments.
1617
1618 2008-11-03 Akim Demaille <demaille@gostai.com>
1619
1620 bench: More use of the verbosity level.
1621 * etc/bench.pl.in ($verbose, &verbose): New.
1622 Use them.
1623 More POD documentation.
1624
1625 2008-11-03 Akim Demaille <demaille@gostai.com>
1626
1627 bench.pl: a command line interface
1628 * etc/bench.pl.in: More doc.
1629 Some fixes in the documentation.
1630 ($cflags, $iterations, &help, &getopt): New.
1631 Use them.
1632 (&variant_grammar): Let the number of stages be 10 times what is
1633 specified.
1634
1635 2008-11-03 Akim Demaille <demaille@gostai.com>
1636
1637 Bench the use of Boost.Variants.
1638 * etc/bench.pl.in ($cxx, &variant_grammar, &bench_variant_parser):
1639 New.
1640 (&compile): Be ready to compile C++ parsers.
1641 (&bench_push_parser): Move debug information to the outermost
1642 level.
1643 * THANKS: Add Michiel De Wilde.
1644
1645 2008-11-03 Akim Demaille <demaille@gostai.com>
1646
1647 bench.pl: Pass directives as a list instead of as a string.
1648 * etc/bench.pl.in (&directives): New.
1649 (&triangular_grammar, &calc_grammar): Use it to format the Bison
1650 directives.
1651 (&triangular_grammar): Do use the directives (were ignored).
1652 (&bench_grammar, &bench_push_parser): Adjust to pass lists of
1653 directives.
1654
1655 2008-11-03 Akim Demaille <demaille@gostai.com>
1656
1657 Improve genericity of bench.pl.
1658 * etc/bench.pl.in (&bench_grammar): Take the set of benches as
1659 argument.
1660 (&bench_push_parser): New.
1661 Call it.
1662
1663 2008-11-03 Akim Demaille <demaille@gostai.com>
1664
1665 Add documentation to bench.pl.
1666 * etc/bench.pl.in: Comment changes.
1667
1668 2008-11-03 Akim Demaille <demaille@gostai.com>
1669
1670 Fuse the three stacks into a single one.
1671
1672 In order to make it easy to perform benchmarks to ensure that
1673 there are no performance loss, lalr1.cc is forked into
1674 lalr1-fusion.cc. Eventually, lalr1-fusion.cc will replace
1675 lalr1.cc.
1676
1677 Meanwhile, to make sure that lalr1-fusion.cc is correctly
1678 exercized by the test suite, the user must install a symbolic link
1679 from lalr1.cc to it.
1680
1681 Instead of having three stacks (state, value, location), use a
1682 stack of triples. This considerably simplifies the code (and it
1683 will be easier not to require locations as currently does the C++
1684 parser), and also gives a 10% speedup according to
1685 etc/bench (probably mainly since memory allocation is done once
1686 instead of three times).
1687
1688 Another motivation is to make it easier to destruct properly
1689 semantic values: now that they are bound to their state (hence
1690 symbol type) it will be easier to call the appropriate destructor.
1691
1692 These changes should probably benefit the C parser too.
1693
1694 * data/lalr1.cc: Copy as...
1695 * data/lalr1-fusion.cc: this new file.
1696 (b4_rhs_value, b4_rhs_location): New definitions overriding those
1697 from c++.m4.
1698 (state_stack_type, semantic_stack_type, location_stack_type)
1699 (yystate_stack_, yysemantic_stack_, yylocation_stack_): Remove.
1700 (data_type, stack_type, yystack_): New.
1701 (YYLLOC_DEFAULT, yypush_): Adjust.
1702 (yyerror_range): Now based on data_type, not location_type.
1703
1704 2008-11-03 Akim Demaille <demaille@gostai.com>
1705
1706 Push the state, value, and location at the same time.
1707 This is needed to prepare a forthcoming patch that fuses the three
1708 stacks into one.
1709
1710 * data/lalr1.cc (parser::yypush_): New.
1711 (parser::yynewstate): Change the semantics: instead of arriving to
1712 this label when value and location have been pushed, but yystate
1713 is to be pushed on the state stack, now the three of them must
1714 have been pushed before. yystate still must be the new state.
1715 This allows to use yypush_ everywhere instead of individual
1716 handling of the stacks.
1717
1718 2008-11-03 Akim Demaille <demaille@gostai.com>
1719
1720 Prefer references to pointers.
1721 * data/lalr1.cc (b4_symbol_actions): New, overrides the default C
1722 definition to use references instead of pointers.
1723 (yy_symbol_value_print_, yy_symbol_print_, yydestruct_):
1724 Take the value and location as references.
1725 Adjust callers.
1726
1727 2008-11-03 Akim Demaille <demaille@gostai.com>
1728
1729 stack::size instead of stack::height.
1730 * data/lalr1.cc (stack::height): Rename as...
1731 (stack::size): this.
1732 Fix the output type.
1733 Comment changes.
1734
1735 2008-11-03 Akim Demaille <demaille@gostai.com>
1736
1737 Use variants to support objects as semantic values.
1738 This patch was inspired by work by Michiel De Wilde. But he used
1739 Boost variants which (i) requires Boost on the user side, (ii) is
1740 slow, and (iii) has useless overhead (the parser knows the type of
1741 the semantic value there is no reason to duplicate this
1742 information as Boost.Variants do).
1743
1744 This implementation reserves a buffer large enough to store the
1745 largest objects. yy::variant implements this buffer. It was
1746 implemented with Quentin Hocquet.
1747
1748 * src/output.c (type_names_output): New.
1749 (output_skeleton): Invoke it.
1750 * data/c++.m4 (b4_variant_if): New.
1751 (b4_symbol_value): If needed, provide a definition for variants.
1752 * data/lalr1.cc (b4_symbol_value, b4_symbol_action_)
1753 (b4_symbol_variant, _b4_char_sizeof_counter, _b4_char_sizeof_dummy)
1754 (b4_char_sizeof, yy::variant): New.
1755 (parser::parse): If variants are requested, define
1756 parser::union_type, parser::variant, change the definition of
1757 semantic_type, construct $$ before running the user action instead
1758 of performing a default $$ = $1.
1759 * examples/variant.yy: New.
1760 Based on an example by Michiel De Wilde.
1761
1762 2008-11-03 Akim Demaille <demaille@gostai.com>
1763
1764 Parameterize the extraction of semantic values.
1765 To make future changes easier, no longer rely on ".TYPE" being the
1766 way to get a semantic value.
1767
1768 * data/c.m4 (b4_symbol_value): New.
1769 Use it.
1770 * data/c++.m4, data/yacc.c: Use it.
1771 * data/glr.c: Use b4_symbol_value.
1772 (b4_rhs_data): New.
1773 Use it.
1774
1775 2008-11-03 Akim Demaille <demaille@gostai.com>
1776
1777 Prepare easier M4 changes.
1778 * data/lalr1.cc: Use escaped [] instead of literals to prepare
1779 future changes.
1780
1781 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
1782
1783 Initiate further development.
1784 * NEWS: Create an empty section for new entries.
1785 * gnulib: Update submodule to HEAD.
1786
1787 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
1788
1789 * NEWS: Version 2.4.
1790
1791 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
1792
1793 Prepare for next release.
1794 * NEWS: Briefly mention changes since 2.3b.
1795 * README: Say GNU m4 1.4.6, which we've been requiring in release
1796 announcements already, not 1.4.3, which breaks the build.
1797
1798 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
1799
1800 Say %language is experimental.
1801 We're thinking of extending it's effect on output file naming. See the
1802 thread at
1803 <http://lists.gnu.org/archive/html/bison-patches/2008-10/msg00003.html>.
1804 * NEWS: Say it's experimental.
1805 * doc/bison.texinfo (Decl Summary): Say it's experimental, and so don't
1806 recommend it over %skeleton for now.
1807 (Bison Options): Likewise.
1808 (C++ Bison Interface): Use %skeleton not %language.
1809 (Calc++ Parser): Use %skeleton not %language.
1810 * src/getargs.c (usage): Say it's experimental.
1811
1812 2008-11-01 Di-an Jan <dianj@freeshell.org>
1813 Paolo Bonzini <bonzini@gnu.org>
1814
1815 Support all Java parser class modifiers.
1816 * data/java.m4 (b4_percent_define_get3): New.
1817 (b4_final_if, b4_strictfp_if): New.
1818 * data/lalr1.java (final, strictfp, extends, implements): Support.
1819 * doc/bison.texinfo (final, strictfp, extends, implements): Add
1820 documentation.
1821 * tests/java.at (AT_CHECK_JAVA_MINIMAL): New.
1822 (AT_CHECK_JAVA_MINIMAL_W_LEXER): New.
1823 (AT_CHECK_JAVA_GREP): New.
1824 (Java parser class modifiers): New test.
1825 (Java parser class extends and implements): New test.
1826
1827 Model exception propagation better with throws and lex_throws.
1828 * data/java.m4 (b4_list2): New.
1829 (throws): Change default.
1830 * data/lalr1.java (yyaction): Add throws.
1831 (parse): Add lex_throws in addition to throws.
1832 * doc/bison.texinfo (throws, lex_throws): Add documentation.
1833 * tests/java.at (Java throws specifications): New test.
1834
1835 Improve documentation for Java parsers.
1836 * doc/bison.texinfo (Java Parsers): Add subsections.
1837 Don't quote first argument of %define.
1838 (Java Bison Interface): Document output files. Move documentation
1839 of parser class and merge into Java Parser Interface. Document
1840 features that error out. Document directives with no effect.
1841 Move note about Javadoc higher.
1842 (Java Semantic Values): Explicitly mention stype.
1843 Document that generic types cannot be used.
1844 (Java Location Values): Use @deftypeivar. Document constructors.
1845 Correct return value for toString.
1846 (Java Parser Interface): List undocumented constants/fields.
1847 Move documentation of fields added by %parse-param closer to list
1848 of members. Document that token names are added as fields.
1849 Document constructors accurately. Remove error method.
1850 (Java Scanner Interface): Move note on %pure-parser to Java Bison
1851 Interface. Describe %code lexer and yylex accutately.
1852 Remove documentation that does not match the code.
1853 (Java Action Features): New.
1854 (Java Differences): Add reference. Add item on semantic values.
1855 Add note about @{ ... @}. Clarify %% epilogue placement.
1856 (Java Declarations Summary): New.
1857
1858 Fix Java skeleton.
1859 * data/java.m4 (b4_prefix): Correct quoting for m4_define_default.
1860 (b4_remove_comma): Quote test argument.
1861 (b4_identification): Remove "bison" field.
1862 * tests/java.at (Java parser class and package names): New test.
1863 (Java %parse-param and %lex-param): New test.
1864 (Java stype, position_class and location_class): New test.
1865
1866 2008-10-31 Di-an Jan <dianj@freeshell.org>
1867
1868 * data/lalr1.jave: Update copyright years.
1869 (YYParser): Correct name of "generated from" file in Javadoc:
1870 use b4_file_name instead of @ofile@.
1871 (Location constructor): Correct Javadoc parameter name.
1872 (yylloc): Add missing opening m4 quote after b4_location_if.
1873 This removes a stray [ in the Javadoc of Lexer.getStartPos.
1874 (Lexer.yyerror): Fix incorrect m4 and Javadoc.
1875 (YYParser constructor): Correct Javadoc parameter name.
1876
1877 2008-10-30 Joel E. Denny <jdenny@ces.clemson.edu>
1878
1879 Always put auxiliary code files in the same dir as other output files.
1880 * src/files.c (compute_file_name_parts): When the user specifies
1881 --output but not --file-prefix, extract the directory prefix from the
1882 file prefix not from the grammar file name. This affects the location
1883 of files like location.hh generated by the C++ skeleton. The includes
1884 in the other output files require this fix.
1885 * tests/output.at (AT_CHECK_OUTPUT): Automatically create directories
1886 for expected output files.
1887 (Output files): Add a test for the above.
1888
1889 2008-10-29 Joel E. Denny <jdenny@ces.clemson.edu>
1890
1891 * gnulib: Update submodule to HEAD.
1892
1893 2008-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
1894
1895 Update copyright year.
1896 * src/files.c: Here.
1897
1898 2008-10-28 Di-an Jan <dianj@freeshell.org> (tiny change)
1899
1900 Don't overwrite the input file.
1901 * src/files.c (output_file_name_check): Fatal error if using input file
1902 for output.
1903 * tests/output.at: (AT_CHECK_CONFLICTING_OUTPUT): Add return status
1904 argument.
1905 (Conflicting output files): Add test.
1906
1907 2008-10-28 Akim Demaille <demaille@gostai.com>
1908
1909 Space changes.
1910 * data/lalr1.cc: Formatting changes.
1911
1912 2008-10-28 Akim Demaille <demaille@gostai.com>
1913
1914 Don't define debugging functions when !YYDEBUG.
1915 * data/lalr1.cc (debug_stream, set_debug_stream)
1916 (debug_level_type, debug_level, set_debug_level): Don't
1917 declare them when YYDEBUG is not defined.
1918 The implementation are already YYDEBUG-aware.
1919
1920 2008-10-28 Akim Demaille <demaille@gostai.com>
1921
1922 Prefer "continue" for empty loop bodies.
1923 * etc/bench.pl.in: Use "continue" instead of {}.
1924
1925 2008-10-28 Akim Demaille <demaille@gostai.com>
1926
1927 Space and comments changes.
1928 * data/c++.m4, data/glr.c, data/lalr1.cc: Copyright year changes.
1929 * data/c.m4, data/lalr1.cc: Space changes.
1930
1931 2008-10-28 Akim Demaille <demaille@gostai.com>
1932
1933 Make gnulib a submodule.
1934 * gnulib: New.
1935 * .gitmodules (gnulib): New.
1936
1937 2008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
1938
1939 Fix yyerror_range for user-defined location type in C++. Reported by
1940 Georg Sauthoff at
1941 <http://lists.gnu.org/archive/html/bug-bison/2008-08/msg00008.html>.
1942 * data/lalr1.cc (parse): Change type of yyerror_range to location_type.
1943 * THANKS (Georg Sauthoff): Add.
1944
1945 2008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
1946
1947 Update several administrative files mainly to facilitate releasing.
1948 * HACKING (Administrivia): Make the git-merge-changelog notes more
1949 helpful.
1950 (Test suite): Don't say lalr1.cc is not exercised in the test suite.
1951 (Release Procedure): Update for git and add numerous details that were
1952 previously missing.
1953 * Makefile.am (EXTRA_DIST): Remove Makefile.cfg and Makefile.maint.
1954 * maint.mk (announcement): Don't list bison as a bootstrap tool so
1955 that announcements don't claim we bootstrapped with whatever bison
1956 happened to be in PATH. Add flex as a bootstrap tool.
1957 * Makefile.maint: Remove, previously replaced by maint.mk.
1958 * Makefile.cfg: Remove, and migrate settings to...
1959 * cfg.mk: ... here for the sake of `make announcement'.
1960 * bootstrap.conf (gnulib_modules): Add announce-gen.
1961 * README: Say GNU Bison instead of just Bison. Suggested by Karl
1962 Berry.
1963
1964 2008-10-08 Di-an Jan <dianj@freeshell.org> (tiny change)
1965
1966 Small but important bugfixes for the Java skeleton.
1967 * data/lalr1.java (yyerror): Change Location to b4_location_type.
1968 (yy_symbol_print): Call toString on yyvaluep.
1969
1970 2008-08-29 Akim Demaille <demaille@gostai.com>
1971
1972 Clarify UPDATED use.
1973 * doc/bison.texinfo: It refers to the last edition of this file,
1974 not to the release date of Bison.
1975 Reported by Joel E. Denny.
1976
1977 2008-08-29 Akim Demaille <demaille@gostai.com>
1978
1979 * README: Update FAQ pointer.
1980 Reported by Joel E. Denny.
1981
1982 2008-08-27 Eric Blake <ebb9@byu.net>
1983
1984 Resync m4sugar from autoconf.
1985 * data/m4sugar/m4sugar.m4 (m4_defn, m4_popdef, m4_undefine)
1986 (m4_init): Adjust to latest m4.git changes.
1987 (m4_mapall_sep, _m4_list_cmp, m4_version_compare): Reduce side
1988 effects.
1989 * data/m4sugar/foreach.m4 (_m4_shiftn): Fix off-by-one bug.
1990 (_m4_list_cmp): Reduce side effects.
1991
1992 2008-08-27 Akim Demaille <demaille@gostai.com>
1993
1994 Check yyerrok in calc.at.
1995 * tests/calc.at (calc.y): Use yyerrok on "( error )".
1996 (AT_CHECK_CALC): Add a check that ensures that yyerrok works as
1997 expected.
1998
1999 2008-08-27 Akim Demaille <demaille@gostai.com>
2000
2001 Support yyerrok in lalr1.cc.
2002 YYBACKUP is still to import back into lalr1.cc.
2003 * data/lalr1.cc (yyerrork, yyclearin, YYRECOVERING): Define.
2004
2005 2008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
2006
2007 For maintainer-check*, don't recompile for a $(VERSION) update.
2008 * cfg.mk: New file.
2009 (_is-dist-target): Override the one in GNUmakefile.
2010 * Makefile.am (EXTRA_DIST): Add cfg.mk.
2011
2012 2008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
2013
2014 Update for recent change to gnulib.
2015 * src/parse-gram.y: Don't include strverscmp.h. It comes from
2016 string.h now.
2017
2018 2008-08-15 Eric Blake <ebb9@byu.net>
2019
2020 Remaining m4sugar merge from autoconf.
2021 * data/m4sugar/m4sugar.m4: Copy entire file from autoconf.
2022 * data/m4sugar/foreach.m4: New file, copied from autoconf.
2023 * data/Makefile.am (dist_m4sugar_DATA): Distribute it.
2024 * src/output.c (output_skeleton): Tell m4 how to find it.
2025
2026 Partial m4sugar merge from autoconf: m4_map.
2027 * data/m4sugar/m4sugar.m4 (m4_fst): Delete.
2028 (m4_map, m4_map_sep, _m4_map): Rewrite more efficiently.
2029 (m4_apply, _m4_apply, m4_mapall, m4_mapall_sep): New macros.
2030 * data/java.m4 (b4_token_enums): Use more efficient short-circuit
2031 for empty list.
2032 * data/c.m4 (b4_token_defines, b4_token_enums, b4_c_ansi_formals):
2033 Likewise.
2034 (b4_parse_param_for): Avoid m4_fst, now that autoconf no longer
2035 declares it.
2036
2037 2008-08-07 Joel E. Denny <jdenny@ces.clemson.edu>
2038
2039 Keep .version and PACKAGE_VERSION in sync.
2040 * Makefile.am ($(top_srcdir)/.version): Declare configure as a
2041 dependency, and add comments justifying this in more detail. Discussed
2042 starting at
2043 <http://lists.gnu.org/archive/html/bison-patches/2008-07/msg00022.html>.
2044
2045 2008-08-06 Eric Blake <ebb9@byu.net>
2046
2047 Partial m4sugar merge from autoconf: m4_shiftn.
2048 * data/m4sugar/m4sugar.m4 (m4_shiftn): Faster implementation.
2049 (m4_shift2, m4_shift3): New macros.
2050 (m4_case, m4_bmatch, m4_bpatsubsts, m4_join): Adjust clients.
2051 * data/c.m4 (b4_c_function_def, b4_c_ansi_function_def)
2052 (b4_c_ansi_function_decl, b4_c_function_call): Likewise.
2053 * data/java.m4 (b4_remove_comma): Likewise.
2054
2055 Partial m4sugar merge from autoconf: m4_wrap vs. m4 1.6.
2056 * data/m4sugar/m4sugar.m4 (m4_unquote, m4_wrap_lifo): New macros.
2057 (m4_wrap): Guarantee FIFO order, in spite of m4 1.6.
2058 (m4_init): Consolidate wrapped text into single m4_wrap.
2059 * data/bison.m4 (b4_check_user_names_wrap): Stick with LIFO order
2060 in wrapped text.
2061
2062 2008-08-05 Eric Blake <ebb9@byu.net>
2063
2064 Partial m4sugar merge from autoconf: builtins, version.m4.
2065 * data/m4sugar/m4sugar.m4 (changeword): Nuke.
2066 (m4_prepend): Remove, as it is unused and inherently quadratic,
2067 whereas m4_append is linear in newer m4.
2068 (m4_mkstemp): New builtin.
2069 (m4_symbols): Make rename conditional.
2070 (m4_version_prereq): Ensure fatal error if used in bison, which
2071 intentionally lacks version.m4.
2072
2073 Fix comments in m4sugar.
2074 * data/m4sugar/m4sugar.m4: Comment changes, borrowed from autoconf.
2075
2076 2008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
2077
2078 Update for recent .gitignore fix in Gnulib.
2079 * bootstrap: Back out 2008-07-18 hack now that gnulib-tool creates
2080 anchored .gitignore entries.
2081
2082 2008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
2083
2084 Set gnu or gnits strictness.
2085 * configure.ac (AM_INIT_AUTOMAKE): Set gnu strictness during
2086 development and gnits strictness for releases. Based on Eric Blake's
2087 suggestion at
2088 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00019.html>.
2089
2090 2008-07-31 Paolo Bonzini <bonzini@gnu.org>
2091
2092 * NEWS: Clarify documentation of %language.
2093
2094 2008-07-31 Paolo Bonzini <bonzini@gnu.org>
2095
2096 Support usage of git-merge-changelog.
2097 * .gitattributes: New.
2098 * HACKING: Document usage of git-merge-changelog.
2099 * bootstrap: Install git-merge-changelog entries in .git/config
2100 if appropriate.
2101
2102 2008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
2103
2104 Remove remaining dependence on CVS Id keyword.
2105 * ChangeLog: For the sake of people still using CVS, don't use dollars
2106 when mentioning Id.
2107 * data/xslt/bison.xsl: Remove Id from header comments, where it was
2108 unusual anyway.
2109 * data/xslt/xml2dot.xsl: Likewise.
2110 * data/xslt/xml2text.xsl: Likewise.
2111 * data/xslt/xml2xhtml.xsl: Likewise.
2112 * doc/Doxyfile.in (PROJECT_NUMBER): Don't use ID.
2113 * doc/Makefile.am (neutralize): Remove, no longer needed.
2114 (.x.1): Don't use neutralize.
2115 (edit): Don't substitute for ID.
2116 (Doxyfile): Don't define Id, and thus don't depend on ChangeLog.
2117
2118 2008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
2119
2120 Fix dependence on computed configure variables.
2121 * doc/Makefile.am (common_dep): Depend on $(top_srcdir)/configure not
2122 $(top_srcdir)/configure.ac so that changes to computed variables, such
2123 as PACKAGE_VERSION, are seen.
2124 * tests/Makefile.am ($(srcdir)/package.m4): Likewise.
2125
2126 2008-07-20 Joel E. Denny <jdenny@ces.clemson.edu>
2127
2128 Update copyright dates for recent changes.
2129 * Makefile.am: Here.
2130 * src/Makefile.am: Here.
2131 * src/reduce.c: Here.
2132 * tests/reduce.at: Here.
2133
2134 2008-07-18 Joel E. Denny <jdenny@ces.clemson.edu>
2135
2136 Use git-version-gen for version names between releases.
2137 * .cvsignore (.tarball-version, GNUmakefile, *~): Add.
2138 * .gitignore (/.tarball-version, /GNUmakefile, /*~): Add.
2139 * .prev-version: New.
2140 * .version.in: Remove.
2141 * ChangeLog: Remove the Id previously used for capturing the CVS
2142 revision.
2143 * GNUmakefile: Remove, now copied from Gnulib.
2144 * Makefile.am: Add code suggested by comments in
2145 build-aux/git-version-gen.
2146 (EXTRA_DIST): Remove GNUmakefile, handled by Gnulib. Add maint.mk,
2147 .prev-version, and .version.
2148 * NEWS (2.3b+): Rename to...
2149 (?.?): ... this because we're dropping the "+" version naming scheme,
2150 but, in general, we still can't be sure of our next release name.
2151 * bootstrap: Add a quick hack to remove from .gitignore the
2152 GNUmakefile entry that gnulib adds. We already have a /GNUmakefile
2153 entry. This should really be fixed in gnulib instead.
2154 * bootstrap.conf (gnulib_modules): Add gnumakefile.
2155 * configure.ac (AC_INIT): Set version name by invoking
2156 build-aux/git-version-gen.
2157 (AC_CONFIG_FILES): Remove .version, now generated by
2158 build-aux/git-version-gen.
2159 * maint.mk: New, copied from coreutils.
2160 * doc/.cvsignore (bison.1): Add.
2161 * doc/.gitignore (/bison.1): Add.
2162 * doc/bison.1: Remove, generated.
2163 * src/.cvsignore (revision.c): Remove.
2164 * src/.gitignore (/revision.c): Remove.
2165 * src/Makefile.am (bison_SOURCES): Remove revision.c and revision.h.
2166 (BUILT_SOURCES): Remove revision.c.
2167 (revision.c): Remove.
2168 * src/getargs.c (version): Don't print revision after the VERSION.
2169 * src/revision.h: Remove.
2170
2171 2008-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
2172
2173 Fix untranslatable composition of sentences. Reported by Goran
2174 Uddeborg at
2175 <http://lists.gnu.org/archive/html/bug-bison/2008-06/msg00000.html>.
2176 * THANKS (Goran Uddeborg): Add.
2177 * src/reduce.c (reduce_print): Report the number of nonterminals and
2178 rules useless in the grammar in separate sentences.
2179 * tests/reduce.at (Useless Rules): Update output.
2180 (Reduced Automaton): Likewise.
2181 (Underivable Rules): Likewise.
2182 (Empty Language): Likewise.
2183
2184 2008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
2185
2186 Fix some .gitignore and .cvsignore problems.
2187 * bootstrap (insert_sorted_if_absent): Replace all uses with...
2188 (insert_vc_ignore): ... this new function, which prepends `/' to all
2189 .gitignore entries before passing them to insert_sorted_if_absent.
2190 * bootstrap.conf (vc_ignore): Set to '.cvsignore .gitignore' so that
2191 .cvsignore files are maintained even though Bison developers run
2192 bootstrap while using Git.
2193 * .cvsignore (*.patch *.log log patches applied): Remove, apparently
2194 unneeded by Bison.
2195 (gnulib): Add.
2196 * .gitignore (/*.patch *.log log patches applied): Remove, broken and
2197 unneeded. Reported by Eric Blake.
2198 * lib/.gitignore (/*~): Add.
2199 * po/.cvsignore, runtime-po/.cvsignore: Sync with .gitignore.
2200 * examples/calc++/.gitignore (/calc++.exe): Add. Reported by Eric
2201 Blake.
2202 * src/.gitignore (/bison.exe): Add. Reported by Eric Blake.
2203
2204 2008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
2205
2206 Improve forward-compatibility with GNU M4. Reported by Eric Blake at
2207 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00000.html>.
2208 * bootstrap.conf (gnulib_modules): Add unsetenv.
2209 * lib/.gitignore, lib/.cvsignore (/unsetenv.c): Add.
2210 * m4/.gitignore, m4/.cvsignore (/environ.m4): Add.
2211 (/setenv.m4): Add.
2212 * src/output.c (output_skeleton): For the m4 invocation, pass -dV as
2213 the first argument because it may become position-dependent, and unset
2214 POSIXLY_CORRECT so Bison's skeletons have access to GNU M4 extensions.
2215 Add comments explaining these issues in more detail.
2216
2217 2008-07-14 Joel E. Denny <jdenny@ces.clemson.edu>
2218
2219 Add .gitignore everywhere based on .cvsignore.
2220 * .gitignore: New.
2221 * build-aux/.gitignore: New.
2222 * data/.gitignore: New.
2223 * doc/.gitignore: New.
2224 * etc/.gitignore: New.
2225 * examples/.gitignore: New.
2226 * examples/calc++/.gitignore: New.
2227 * lib/.gitignore: New.
2228 * m4/.gitignore: New.
2229 * po/.gitignore: New.
2230 * runtime-po/.gitignore: New.
2231 * src/.gitignore: New.
2232 * tests/.gitignore: New.
2233
2234 2008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
2235
2236 * NEWS (2.3b+): New section, empty for now.
2237 * configure.ac (AC_INIT): 2.3b -> 2.3b+.
2238
2239 2008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
2240
2241 * NEWS (2.3b): Update release date since there has been a delay in
2242 getting the announcements and tarballs out.
2243
2244 2008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
2245
2246 * NEWS: Version 2.3b.
2247 * configure.ac (AC_INIT): Likewise.
2248 (PACKAGE_COPYRIGHT_YEAR): Update to 2008.
2249
2250 2008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
2251
2252 * HACKING: Don't say don't mention HACKING in the ChangeLog. We've
2253 been doing it for years.
2254 (Test suite): Mention maintainer-push-check and maintainer-xml-check.
2255 (Release Procedure): Add FIXME about make alpha being unmaintained.
2256
2257 2008-05-13 Joel E. Denny <jdenny@ces.clemson.edu>
2258
2259 * data/yacc.c: Reformat m4 a little for readability.
2260 * src/lalr.c (build_relations): Correct comment.
2261
2262 2008-05-12 Juan Manuel Guerrero <juan.guerrero@gmx.de>
2263
2264 DJGPP specific issue.
2265 * djgpp/config.sed: Fixes required to run configure scripts generated
2266 by autoconf 2.62.
2267
2268 2008-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
2269
2270 * HACKING (Release Procedure): translation@iro.umontreal.ca is now
2271 coordinator@translationproject.org.
2272
2273 2008-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
2274
2275 * THANKS: Add Eric Blake.
2276
2277 2008-04-23 Eric Blake <ebb9@byu.net>
2278
2279 Revert prior patch, by working around autoconf regression.
2280 * tests/output.at (m4_expand): Add workaround for autoconf 2.62.
2281 ("Output file name: ("): Uncomment test.
2282 ("Output file name: )"): Likewise.
2283 Based on an idea from Noah Misch.
2284
2285 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
2286
2287 Work-around an Autoconf 2.62 AT_SETUP bug that was not present in
2288 2.61. Reported by Juan Manuel Guerrero at
2289 <http://lists.gnu.org/archive/html/bug-bison/2008-04/msg00011.html>.
2290 * tests/output.at ("Output file name: ("): Comment out test case for
2291 now.
2292 ("Output file name: )"): Likewise.
2293
2294 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
2295
2296 * GNUmakefile: Update git-version-gen invocation so make dist
2297 succeeds.
2298
2299 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
2300
2301 Update to the current gnulib CVS repository, and fix trigraph handling
2302 in Bison.
2303 * bootstrap: Update gnulib CVS repository URL.
2304 (symlink_to_dir): Encapsulate the code that guarantees the destination
2305 directory exists into...
2306 (check_dst_dir): ... this new function, and...
2307 (cp_mark_as_generated): ... reuse it here so that bootstrap doesn't
2308 fail when copying files into lib/uniwidth/.
2309 * src/output.c (prepare_symbols): When writing yytname muscles, where
2310 symbol names will be encoded in C-string literals, tell quotearg to
2311 escape trigraphs. This used to be the default in gnulib.
2312 * tests/regression.at (Token definitions): Because of the change in
2313 gnulib's quotearg behavior, string_as_id in parse-gram.y no longer
2314 escapes trigraphs in symbol names. Thus, yytname no longer has
2315 trigraphs unnecessarily doubly escaped. Update test case output.
2316 Extend test case to be sure Bison's own error messages will no longer
2317 have trigraphs in symbol names unnecessarily escaped once.
2318
2319 2008-04-20 Joel E. Denny <jdenny@ces.clemson.edu>
2320
2321 Fix make dist infinite loop reported by Juan Manuel Guerrero at
2322 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00009.html>.
2323 * .cvsignore: Add .version.
2324 * .version.in: New.
2325 * bootstrap.conf (gnulib_modules): Add git-version-gen.
2326 * configure.ac (AC_CONFIG_FILES): Add .version.
2327 * build-aux/.cvsignore: Add git-version-gen.
2328
2329 2008-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
2330
2331 * NEWS (2.3a+): Mention that -g now takes an argument.
2332 * doc/bison.texinfo (Bison Options): Reword -W entry a little for
2333 consistency. Update the -g and -x entries now that they take
2334 arguments. Use brackets to indicate optional arguments.
2335 * src/getargs.c (usage): Explain the relationship between arguments of
2336 long and short options more completely. Document --defines and -d
2337 separately since the former takes an argument but, for POSIX Yacc, the
2338 latter does not.
2339 (short_options): Let -W take an optional argument like --warnings.
2340 (getargs): Sort cases.
2341
2342 2008-02-28 Akim Demaille <demaille@gostai.com>
2343
2344 * doc/bison.texinfo: Fix a few typos.
2345
2346 2008-02-28 Akim Demaille <akim@epita.fr>
2347
2348 * doc/bison.texinfo (Bison Options): Document -W.
2349 Based on Joel E. Denny's NEWS entry, and Automake's documentation.
2350
2351 2008-02-28 Akim Demaille <akim@epita.fr>
2352
2353 * src/getargs.c (short_options): Split and sort for readability.
2354 -g and -x take optional arguments, just like their long options.
2355 * build-aux/cross-options.pl: Use /x to make the regexp easier to
2356 understand.
2357 Fix the handling of $opt which resulted in all the argument to be
2358 considered as optional.
2359
2360 2008-02-22 Joel E. Denny <jdenny@ces.clemson.edu>
2361
2362 * NEWS (2.3a+): Don't say %language is experimental. Mention Java and
2363 say its interface is experimental.
2364 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
2365 Java.
2366 (Bison Options): In the -L and --language entry, mention Java.
2367 (Java Bison Interface): Say the interface is experimental.
2368 * src/getargs.c (usage): Mention -L and --language.
2369
2370 * NEWS (2.3a+): Say the push parsing interface is experimental.
2371 * doc/bison.texinfo (Push Decl): Likewise.
2372 (Decl Summary): Likewise in the "%define api.push_pull" entry.
2373 (Push Parser Function): Likewise.
2374 (Pull Parser Function): Likewise.
2375 (Parser Create Function): Likewise.
2376 (Parser Delete Function): Likewise.
2377 (Table of Symbols): Likewise in the yypstate_delete, yypstate_new,
2378 yypull_parse, and yypush_parse entries.
2379
2380 * NEWS (2.3a+): Mention XML support, and say the schema is
2381 experimental.
2382 * doc/bison.texinfo (Bison Options): Mention -x and --xml.
2383 * src/getargs.c (usage): Say the XML schema is experimental.
2384
2385 * NEWS (2.3a+): Say option instead of flag.
2386
2387 2008-02-21 Wojciech Polak <polak@gnu.org>
2388
2389 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Change footer
2390 text.
2391
2392 2008-02-20 Joel E. Denny <jdenny@ces.clemson.edu>
2393
2394 Fix impure push parser compile error reported by Bob Rossi at
2395 <http://lists.gnu.org/archive/html/help-bison/2008-02/msg00023.html>.
2396 * data/yacc.c: Clean up whitespace in the output a little.
2397 (yypstate_allocated): Define for impure push parsers regardless of
2398 whether the pull interface is also requested.
2399 * tests/push.at (Push Parsing: Multiple impure instances): Extend to
2400 check impure push parsers without the pull interface.
2401
2402 * data/yacc.c (yypstate_new): Don't try to invoke yyerror since
2403 yyerror takes arguments specified by %parse-param while yypstate_new
2404 does not.
2405 * doc/bison.texinfo (Parser Create Function): Document that
2406 yypstate_new returns 0 for multiple impure parser instances.
2407 * tests/push.at (Push Parsing: Multiple impure instances): Update
2408 expected stderr output.
2409
2410 2008-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
2411
2412 * runtime-po/POTFILES.in (push.c): Remove.
2413
2414 2008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
2415
2416 * data/Makefile.am (dist_pkgdata_DATA): Remove push.c.
2417 * data/push.c: Rename to...
2418 * data/yacc.c: ... this, overwriting it.
2419 * etc/bench.pl.in (bench_grammar): `%pure-parser'-> `%define api.pure'.
2420 `%push-pull-parser' -> `%define api.push_pull "both"'.
2421 Remove old yacc.c tests, and update push.c tests to yacc.c.
2422
2423 2008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
2424
2425 * data/bison.m4 (b4_percent_code_get): Output %code block comments like
2426 `"%code top" blocks' instead of `%code "top" blocks'.
2427 * data/push.c: Import yacc.c changes from 2008-01-09 and 2007-08-03.
2428 Clean up whitespace in the output a little.
2429
2430 2008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
2431
2432 Fix documentation problems reported by Tim Josling at
2433 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00013.html>.
2434 * NEWS (2.3a+): Mention removal of --no-parser, -n, and %no-parser.
2435 * doc/bison.texinfo (Token Decl): Token numbers are *nonnegative*
2436 integers. Explain the effect of literal string aliases on error
2437 messages. Copy token 0 documentation from the C++ skeleton
2438 documentation.
2439
2440 2008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
2441
2442 Accept a token number in a %left, %right, or %nonassoc for POSIX
2443 conformance. Reported by Tim Josling at
2444 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00010.html>.
2445 * NEWS (2.3a+): Mention.
2446 * doc/bison.texinfo (Precedence Decl): Describe how literal strings
2447 and code numbers are treated by precedence declarations.
2448 * src/parse-gram.y (precedence_declaration): Use symbols.prec instead
2449 of symbols.1.
2450 (symbols.prec): New, just like symbols.1 but uses symbol.prec instead
2451 of symbol.
2452 (symbol.prec): New, just like symbol but allows INT.
2453 * src/symtab.c (symbol_user_token_number_set): Remove an aver that no
2454 longer holds.
2455 * tests/regression.at (Token number in precedence declaration): New
2456 test case.
2457
2458 2008-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
2459
2460 DJGPP specific issues.
2461 * djgpp/config.bat: Add filenames that are not 8.3 clean and that must
2462 be changed. Copyright timestamp adjusted.
2463 * djgpp/config.sed: Add filenames that are not 8.3 clean and that must
2464 be changed. Copyright timestamp adjusted.
2465 * djgpp/config.site: Copyright timestamp adjusted.
2466 * djgpp/config_h.sed: Copyright timestamp adjusted.
2467 * djgpp/djunpack.bat: Copyright timestamp adjusted.
2468 * djgpp/fnchnage.lst: Add filenames that are not 8.3 clean to the
2469 filename translation list.
2470 * djgpp/subpipe.c (init_subpipe): Check the environment variables
2471 TMPDIR, TMP and TEMP, in that order, to determinate where the temp
2472 files shall be created. Before trying to use the temp dir where the
2473 environment variable points to check that the dir really exists. If
2474 not default to the cwd as temp dir. Copyright timestamp adjusted.
2475 * djgpp/subpipe.h: Copyright timestamp adjusted.
2476 * djgpp/testsuite.sed: Copyright timestamp adjusted.
2477
2478 2008-01-30 Paul Eggert <eggert@cs.ucla.edu>
2479
2480 * doc/bison.texinfo: Update Back-Cover text to reflect new GNU wording.
2481
2482 2008-01-09 Paul Eggert <eggert@cs.ucla.edu>
2483
2484 * data/yacc.c (yyparse): Correct the comment when locations aren't used.
2485 Problem reported by Claudio Saavedra in
2486 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00003.html>.
2487
2488 2008-01-05 Wojciech Polak <polak@gnu.org>
2489
2490 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Precede an XHTML
2491 document's title with the input grammar file name.
2492
2493 2007-12-22 Joel E. Denny <jdenny@ces.clemson.edu>
2494
2495 Automate regression testing of the XML/XSLT implementation. Discussed
2496 starting at
2497 <http://lists.gnu.org/archive/html/bison-patches/2007-11/msg00021.html>.
2498 * configure.ac (XSLTPROC): New substitution.
2499 * Makefile.am (maintainer-xml-check): New phony target invoking...
2500 * tests/Makefile.am (maintainer-xml-check): ... this new phony target
2501 invoking make maintainer-check with BISON_TEST_XML=1.
2502 * tests/atlocal.in (XSLTPROC): New.
2503 * tests/local.at (AT_BISON_CHECK): New macro to (1) instruct Valgrind
2504 not to report reachable memory when Bison is expected to have a
2505 non-zero exit status and (2) to compare XML/XSLT output with --graph
2506 and --report=all output for every working grammar when
2507 BISON_TEST_XML=1.
2508 (AT_BISON_CHECK_NO_XML): Likewise, but skip XML checks.
2509 (AT_BISON_CHECK_XML): New.
2510 (AT_QUELL_VALGRIND): New.
2511 * tests/testsuite.at (ORIGINAL_AT_CHECK): Remove this and...
2512 (AT_CHECK): ... don't redefine this since this was the old way to
2513 quell Valgrind.
2514 * tests/actions.at: Rewrite all AT_CHECK invocations for bison as
2515 AT_BISON_CHECK invocations.
2516 * tests/c++.at: Likewise.
2517 * tests/calc.at: Likewise.
2518 * tests/conflicts.at: Likewise.
2519 * tests/cxx-type.at: Likewise.
2520 * tests/existing.at: Likewise.
2521 * tests/glr-regression.at: Likewise.
2522 * tests/headers.at: Likewise.
2523 * tests/input.at: Likewise.
2524 * tests/java.at: Likewise.
2525 * tests/output.at: Likewise.
2526 * tests/push.at: Likewise.
2527 * tests/reduce.at: Likewise.
2528 * tests/regression.at: Likewise.
2529 * tests/sets.at: Likewise.
2530 * tests/skeletons.at: Likewise.
2531 * tests/synclines.at: Likewise.
2532 * tests/torture.at: Likewise.
2533 (Big triangle): Use AT_BISON_CHECK_NO_XML instead since this grammar
2534 tends to hang xsltproc.
2535 (Big horizontal): Likewise.
2536
2537 2007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
2538
2539 In XML output, remove redundant class attribute on symbol element.
2540 * data/xslt/bison.xsl (xsl:key name="bison:symbolByName"): New.
2541 * data/xslt/xml2xhtml.xsl (xsl:template match="symbol"): Use it to
2542 look up a symbol to determine whether it's a nonterminal or terminal.
2543 * src/gram.c (rule_rhs_print_xml): Remove class attribute.
2544 * src/state.c (state_rule_lookahead_tokens_print_xml): Likewise.
2545
2546 Add prec/assoc information to XML output.
2547 * src/gram.c (grammar_rules_print_xml): For each rule that has a
2548 %prec, add a percent_prec attribute.
2549 * src/print-xml.c (print_grammar): For each terminal that has a
2550 precedence or associativity, add a prec or assoc attribute.
2551 (xml_indent): New.
2552 (xml_puts): Use xml_indent.
2553 (xml_printf): Use xml_indent.
2554 * src/print-xml.h (xml_indent): Prototype.
2555
2556 * tests/existing.at (GNU pic Grammar): Fix a rule miscopied from
2557 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
2558
2559 2007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
2560
2561 * data/xslt/bison.xsl (bison:ruleNumber): Rename to...
2562 (bison:ruleByNumber): ... this for clarity.
2563 * data/xslt/xml2dot.xsl (xsl:template match="item"): Update.
2564 * data/xslt/xml2text.xsl (xsl:template match="item"): Update.
2565 (xsl:template match="reduction"): Update.
2566 (xsl:template match="item"): Update.
2567 (xsl:template match="reduction"): Update.
2568
2569 In the XML output, don't print the list of rules where symbols appear.
2570 Compute it in XSLT instead. Discussed at
2571 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00024.html>.
2572 * data/xslt/bison.xsl (bison:ruleByLhs): New.
2573 (bison:ruleByRhs): New.
2574 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Use
2575 bison:ruleByRhs.
2576 (xsl:template match="terminal/rule"): Remove.
2577 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
2578 bison:ruleByRhs.
2579 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
2580 Remove.
2581 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Use
2582 bison:ruleByRhs and mode="number-link" for rule template.
2583 (xsl:template match="terminal/rule"): Remove.
2584 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
2585 bison:ruleByRhs and mode="number-link" for rule template.
2586 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
2587 Rewrite as...
2588 (xsl:template match="rule" mode="number-link"): ... this.
2589 * src/print-xml.c (print_grammar): Don't print the list of rules.
2590
2591 2007-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
2592
2593 Don't let --report affect XML output; always print all information.
2594 Discussed at
2595 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00020.html>.
2596 * src/conflicts.c (log_resolution): Implement.
2597 * src/print-xml.c (print_core): Implement.
2598 (print_state): Implement.
2599 (print_xml): Implement.
2600
2601 * NEWS (2.3a+): Fix quotes.
2602 * src/parse-gram.y (prologue_declaration): For consistency with -v,
2603 don't let %verbose clear the list specified by --report.
2604
2605 2007-11-26 Akim Demaille <akim@epita.fr>
2606
2607 * data/Makefile.am (dist_pkgdata_DATA): Ship and install bison.xsl.
2608
2609 2007-11-24 Joel E. Denny <jdenny@ces.clemson.edu>
2610
2611 In the XML output, list useless and unused symbols and rules with the
2612 useful ones and add a "usefulness" attribute. Discussed starting at
2613 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00017.html>.
2614 * src/gram.c (grammar_rules_partial_print_xml): Remove.
2615 (grammar_rules_print_xml): Print all rules instead of just those
2616 useful in the grammar, and add a "usefulness" attribute.
2617 * src/gram.h (grammar_rules_partial_print_xml): Remove prototype.
2618 * src/print-xml.c (print_rules_useless_in_parser): Remove.
2619 (print_grammar): Print all nonterminals instead of just useful ones,
2620 and add a "usefulness" attribute to nonterminals and terminals.
2621 (print_xml): Don't print a separate "reductions" or
2622 "rules-useless-in-parser" element.
2623 * src/reduce.c (reduce_output): Use reduce_token_unused_in_grammar.
2624 (reduce_xml): Remove.
2625 (reduce_token_unused_in_grammar): New.
2626 (reduce_nonterminal_useless_in_grammar): New.
2627 * src/reduce.h (reduce_xml): Remove prototype.
2628 (reduce_token_unused_in_grammar): Add prototype.
2629 (reduce_nonterminal_useless_in_grammar): Add prototype.
2630 * data/xslt/xml2text.xsl: Update for XML changes.
2631 * data/xslt/xml2xhtml.xsl: Update for XML changes.
2632 * tests/reduce.at (Useless Terminals): Update output.
2633 (Useless Rules): Update output.
2634 (Reduced Automaton): Update output.
2635
2636 Say "Terminals unused in grammar" instead of "Unused terminals".
2637 * NEWS (2.3a+): Update.
2638 * doc/bison.texinfo (Understanding): Update example output.
2639 * src/reduce.c (reduce_output): Implement.
2640 * data/xslt/xml2text.xsl: Implement.
2641 * data/xslt/xml2xhtml.xsl: Implement.
2642
2643 2007-11-18 Joel E. Denny <jdenny@ces.clemson.edu>
2644
2645 Accept --report-file=FILE to override the default `.output' filename.
2646 * NEWS (2.3a+): Mention.
2647 * doc/bison.texinfo (Bison Options): Add an entry.
2648 * src/files.c (compute_output_file_names): Don't override
2649 spec_verbose_file if already set.
2650 * src/getargs.c (usage): Document --report-file.
2651 (REPORT_FILE_OPTION): New anonymous enum member.
2652 (long_options): Add entry for it.
2653 (getargs): Add case for it setting spec_verbose_file.
2654
2655 * build-aux/cross-options.pl: Don't record a short option just because
2656 there's an arg.
2657 * doc/.cvsignore: Add yacc.1.
2658
2659 2007-11-14 Akim Demaille <akim@epita.fr>
2660
2661 * doc/yacc.1.in: New.
2662 * configure.ac, doc/Makefile.am: Adjust.
2663 * configure.ac (PACKAGE_COPYRIGHT_YEAR): New substitution, and new
2664 config.h symbol.
2665 Use AC_SUBST for assignments too.
2666 * src/getargs.c (version): Use PACKAGE_COPYRIGHT_YEAR.
2667
2668 2007-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
2669
2670 * src/gram.c: Remove comments that duplicate comments in gram.h.
2671
2672 When reporting useless rules and nonterminals, say "useless in grammar"
2673 instead of "useless", and say "useless in parser" instead of "never
2674 reduced". Discussed starting at
2675 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00033.html>.
2676 * NEWS (2.3a+): Mention this change.
2677 * data/xslt/xml2text.xsl: Update output text and expected input XML
2678 element names to match changes below.
2679 * data/xslt/xml2xhtml.xsl: Likewise.
2680 (xsl:template match="bison-xml-report"): Add missing entry in Table of
2681 Contents: "Rules useless in parser due to conflicts".
2682 * doc/bison.texinfo (Decl Summary): Reword a little.
2683 (Understanding): Update example output for changes below.
2684 * src/gram.c: (rule_useful_p): Rename to...
2685 (rule_useful_in_grammar_p): ... this.
2686 (rule_useless_p): Rename to...
2687 (rule_useless_in_grammar_p): ... this.
2688 (rule_never_reduced_p): Rename to...
2689 (rule_useless_in_parser_p): ... this.
2690 (grammar_rules_print): Update for renames.
2691 (grammar_rules_print_xml): Update for renames.
2692 (grammar_rules_never_reduced_report): Rename to...
2693 (grammar_rules_useless_report): ... this since it is used for either
2694 kind of useless rule.
2695 * src/gram.h: Reword comments and update function names in prototypes.
2696 * src/main.c (main): Say "rule useless in parser due to conflicts".
2697 * src/print-xml.c (print_rules_never_reduced): Rename to...
2698 (print_rules_useless_in_parser): ... this, and rename output XML
2699 element "rules-never-reduced" to "rules-useless-in-parser".
2700 (print_xml): Update for rename.
2701 * src/print.c (print_results): Say "Rules useless in parser due to
2702 conflicts".
2703 * src/reduce.c (reduce_grammar_tables): Say "rule useless in grammar".
2704 (nonterminals_reduce): Say "nonterminal useless in grammar".
2705 (reduce_output): Say "Nonterminals useless in grammar".
2706 Say "Rules useless in grammar".
2707 (reduce_xml): Rename output XML element "useless" to
2708 "useless-in-grammar".
2709 (reduce_print): Don't report the count of grammatically useless rules
2710 as "rules never reduced" just because %yacc is specified.
2711 In the correct report of this count, say nonterminal(s) and rule(s)
2712 "useless in grammar".
2713 * tests/conflicts.at (S/R in initial): Update expected output.
2714 (Defaulted Conflicted Reduction): Likewise.
2715 (Unreachable States After Conflict Resolution): Likewise.
2716 * tests/existing.at (GNU pic Grammar): Likewise.
2717 * tests/reduce.at (Useless Nonterminals): Likewise.
2718 (Useless Rules): Likewise.
2719 (Reduced Automaton): Likewise.
2720 (Underivable Rules): Likewise.
2721 (Empty Language): Likewise.
2722
2723 2007-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
2724
2725 * data/bison.m4 (b4_cat): Put a newline after the end delimiter of the
2726 here document and before the EOF so that BSD's implementation of Bourne
2727 shell doesn't parse the delimiter as part of the here document.
2728 * doc/.cvsignore: Add cross-options.texi.
2729 * src/getargs.c (usage): Add a blank line after the warning categories.
2730
2731 2007-11-08 Paolo Bonzini <bonzini@gnu.org>
2732
2733 * data/lalr1.java (Lexer): Remove usage of b4_pure_if.
2734
2735 2007-11-05 Akim Demaille <akim@epita.fr>
2736
2737 Remove Id: from bison.1.
2738 * doc/Makefile.am (remove_time_stamp): Include the sed invocation.
2739 (perl -0777 -pi -e 's/\.PP\nId): New.
2740 (.x.1): Use it to ignore the version control revision.
2741
2742 2007-11-05 Akim Demaille <demaille@gostai.com>
2743
2744 * build-aux/Makefile.am: Ship cross-options.pl.
2745 * doc/Makefile.am: Always refer to cross-options.texi with
2746 $(srcdir).
2747 (MAINTAINERCLEANFILES): Add it.
2748
2749 2007-11-04 Akim Demaille <demaille@gostai.com>
2750
2751 Generate the long/short option cross-table.
2752 * build-aux/cross-options.pl: New.
2753 * doc/Makefile.am (cross-options.texi): New.
2754 * doc/bison.texinfo: Use it.
2755
2756 2007-11-04 Akim Demaille <demaille@gostai.com>
2757
2758 Generate bison.1 using help2man.
2759 * doc/common.x, doc/bison.x: New.
2760 * doc/Makefile.am (bison.1, .x.1): New.
2761 The code is taken from autoconf-2.61/man/Makefile.am.
2762 * configure.ac: Look for help2man.
2763
2764 2007-11-04 Akim Demaille <demaille@gostai.com>
2765
2766 Complete --help.
2767 * src/getargs.c (usage): Document -W, make it clear that -d,
2768 -g and -x have optional arguments.
2769
2770 2007-11-04 Akim Demaille <demaille@gostai.com>
2771
2772 Find sha1sum when named gsha1sum.
2773 * bootstrap (find_tool): New.
2774 ($SHA1SUM): New.
2775
2776 2007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
2777
2778 Deprecate %pure-parser and add `%define api.pure'. Discussed starting
2779 at
2780 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00006.html>.
2781 * NEWS (2.3a+): Mention.
2782 * data/bison.m4 (b4_pure_if): Don't define it here.
2783 * data/c.m4 (b4_identification): Depend on individual skeletons to
2784 define b4_pure_flag, b4_push_flag, or b4_pull_flag if they use the
2785 values of the %define variables api.pure or api.push_pull. Define
2786 YYPURE, YYPUSH, and YYPULL accordingly.
2787 * data/glr.c: Define b4_pure_if based on `%define api.pure' unless
2788 glr.cc has already defined b4_pure_flag.
2789 * data/push.c: Define b4_pure_if based on `%define api.pure'.
2790 Remove YYPUSH and YYPULL since they're back in b4_identification again.
2791 * data/yacc.c: Define b4_pure_if based on `%define api.pure'.
2792 * doc/bison.texinfo (Pure Decl): Update.
2793 (Push Decl): Update.
2794 (Decl Summary): Add api.pure to %define entry.
2795 In %pure-parser entry, say it's deprecated and reference %define.
2796 (Pure Calling): Update.
2797 (Error Reporting): Update.
2798 (C++ Scanner Interface): Update.
2799 (How Can I Reset the Parser): Update.
2800 (Table of Symbols): In %pure-parser entry, say it's deprecated and
2801 reference %define.
2802 * src/getargs.c (pure_parser): Remove global variable.
2803 * src/getargs.h (pure_parser): Remove extern.
2804 * src/output.c (prepare): Don't define pure_flag muscle.
2805 * src/parse-gram.y (prologue_declaration): Implement %pure-parser as a
2806 wrapper around `%define api.pure'.
2807 * tests/calc.at (Simple LALR Calculator): Update.
2808 (Simple GLR Calculator): Update.
2809 * tests/cxx-type.at (GLR: Resolve ambiguity, pure, no locations):
2810 Update.
2811 (GLR: Resolve ambiguity, pure, locations): Update.
2812 (GLR: Merge conflicting parses, pure, no locations): Update.
2813 (GLR: Merge conflicting parses, pure, locations): Update.
2814 * tests/glr-regression.at (Uninitialized location when reporting
2815 ambiguity): Update
2816 * tests/input.at (Unused %define api.pure): New test case.
2817 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Update definition for
2818 AT_PURE_IF and AT_PURE_AND_LOC_IF.
2819 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
2820
2821 2007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
2822
2823 %define push_pull -> %define api.push_pull. Discussed starting at
2824 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00005.html>.
2825 * data/push.c: Expect the new name.
2826 * data/yacc.c: Likewise.
2827 * doc/bison.texinfo (Push Decl): Update.
2828 (Decl Summary): Update %define entry.
2829 (Push Parser Function): Update.
2830 (Pull Parser Function): Update.
2831 (Parser Create Function): Update.
2832 (Parser Delete Function): Update.
2833 * tests/calc.at (Simple LALR Calculator): Update.
2834 * tests/input.at (%define enum variables): Update.
2835 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
2836 (Push Parsing: Multiple impure instances): Update.
2837 (Push Parsing: Unsupported Skeletons): Update.
2838 * tests/torture.at (Exploding the Stack Size with Alloca): Update.
2839 (Exploding the Stack Size with Malloc): Update.
2840
2841 * NEWS (2.3a+): Add an entry for the push parser, and clean up the
2842 other entries some.
2843
2844 2007-10-27 Joel E. Denny <jdenny@ces.clemson.edu>
2845
2846 For the XML output's terminal element, rename @number to @token-number,
2847 and add @symbol-number. In the nonterminal element, rename @number to
2848 @symbol-number. Discussed starting at
2849 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00040.html>.
2850 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Update for
2851 renames.
2852 (xsl:template match="nonterminal"): Likewise.
2853 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Likewise.
2854 (xsl:template match="nonterminal"): Likewise.
2855 * src/print-xml.c (print_grammar): Implement.
2856
2857 2007-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
2858
2859 * data/xslt/xml2dot.xsl (xsl:template match="automaton/state"): After
2860 2007-10-11 change, the child elements here are items not rules.
2861 (xsl:template match="item"): New.
2862 (xsl:template match="rule"): Update for new reduced itemset.
2863 (xsl:template match="point"): Remove.
2864 (xsl:template match="empty"): For consistency with --graph, don't
2865 output "/* empty */".
2866 * data/xslt/xml2text.xsl (xsl:template match="terminal"): When invoking
2867 line-wrap, don't pass a negative value as first-line-length since this
2868 won't work with the following changes.
2869 (xsl:template name="line-wrap"): Simplify slightly.
2870 (xsl:template name="ws-search"): Eliminate recursion.
2871 * src/print_graph.c (print_core): Don't print a reduction's lookahead
2872 set next to an item whose dot is not at the end of the RHS even if it
2873 happens to be associated with the same rule.
2874
2875 2007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
2876
2877 Add %define lr.keep_unreachable_states.
2878 * NEWS (2.3a+): Mention it in the entry for unreachable state removal.
2879 * doc/bison.texinfo (Decl Summary): Mention it in the %define entry.
2880 * src/main.c (main): Implement it.
2881 * tests/conflicts.at (Unreachable States After Conflict Resolution):
2882 Extend to test it, and fix a typo.
2883
2884 2007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
2885
2886 * NEWS (2.3a+): Add entry for recent .output file lookahead set fix.
2887 * doc/bison.texinfo (Understanding): Remove a bogus lookahead set in
2888 the example .output text.
2889 * tests/regression.at (Extra lookahead sets in report): Improve wording
2890 of comments.
2891
2892 2007-10-17 Wojciech Polak <polak@gnu.org>
2893
2894 * src/print-xml.c (print_grammar): Renamed
2895 <terminal> and <nonterminal> attributes:
2896 "type" to "number" and "symbol" to "name".
2897 * data/xslt/xml2text.xsl (xsl:template match="terminal"):
2898 Use new attribute names.
2899 (xsl:template match="nonterminal"): Likewise.
2900 * data/xslt/xml2xhtml.xsl: Likewise.
2901
2902 2007-10-17 Joel E. Denny <jdenny@ces.clemson.edu>
2903
2904 * doc/bison.texinfo (Bison Options): Add entry for --print-datadir.
2905 (Option Cross Key): Likewise.
2906
2907 * src/print-xml.c (print_core): Don't print a reduction's lookahead set
2908 next to an item whose dot is not at the end of the RHS even if it
2909 happens to be associated with the same rule.
2910 * src/print.c (print_core): Likewise.
2911 * tests/conflicts.at (Unresolved SR Conflicts): Update output.
2912 (Resolved SR Conflicts): Update output.
2913 * tests/regression.at (Extra lookahead sets in report): New test case.
2914
2915 2007-10-11 Wojciech Polak <polak@gnu.org>
2916
2917 * src/print-xml.c (print_core): Remove item set
2918 redundancy.
2919 * data/xslt/bison.xsl (bison:ruleNumber): New key.
2920 Improve processing time. Suggested by Joel E. Denny.
2921 * data/xslt/xml2dot.xsl (xsl:template name="escape"):
2922 Write xsl:param "required" attribute as comment.
2923 * data/xslt/xml2text.xsl (xsl:template match="item"): New.
2924 (xsl:template match="rule"): Support new reduced itemset.
2925 (xsl:template match="point"): Remove.
2926 * data/xslt/xml2xhtml.xsl: Likewise.
2927
2928 2007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
2929
2930 * src/getargs.c (version): Update copyright year.
2931
2932 2007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
2933
2934 Make xml2dot.xsl and --graph produce the same output.
2935 * data/xslt/xml2dot.xsl (xsl:template match="rule"): Use a `&#10;'
2936 instead of a `\n'. That is, don't add escapes yet or they'll be doubly
2937 escaped later.
2938 (xsl:template name="output-node"): Use the new escape template instead
2939 of the string-replace template directly.
2940 (xsl:template name="output-edge"): Likewise.
2941 (xsl:template name="escape"): New, escapes backslashes and newlines in
2942 addition to quotation marks.
2943 * src/graphviz.c (start_graph, output_node, output_edge): Add
2944 whitespace to output for legibility.
2945
2946 Make xml2text.xsl and --report produce the same output, and remove the
2947 XML "conflicts" element since a conflict summary is easily extracted
2948 from the automaton.
2949 * data/xslt/bison.xsl: New.
2950 (xsl:template match="state" mode="bison:count-conflicts): New.
2951 * data/xslt/xml2text.xsl: Import bison.xsl.
2952 (xsl:template match="bison-xml-report"): Instead of styling the
2953 "conflicts" element, style the "automaton" element with mode
2954 "conflicts". Unlike the former, the latter lists S/R and R/R
2955 conflicts for a state on the same line.
2956 (xsl:template match="conflicts"): Remove.
2957 (xsl:template match="conflict"): Remove.
2958 (xsl:template match="terminal"): Line-wrap the list of rules in which
2959 the terminal is used.
2960 (xsl:template match="nonterminal"): Likewise for nonterminals.
2961 (xsl:template match="automaton" mode="conflicts"): New.
2962 (xsl:template match="state" mode="conflicts"): New.
2963 (xsl:template name="line-wrap"): New.
2964 (xsl:template name="ws-search"): New.
2965 * data/xslt/xml2xhtml.xsl: Import bison.xsl.
2966 (xsl:template match="bison-xml-report"): Instead of styling the
2967 "conflicts" element, style the "automaton" element with mode
2968 "conflicts."
2969 (xsl:template match="conflicts"): Remove.
2970 (xsl:template match="conflict"): Remove.
2971 (xsl:template match="automaton" mode="conflicts"): New.
2972 (xsl:template match="state" mode="conflicts): New.
2973 * src/conflicts.c (conflicts_output_xml): Remove.
2974 * src/conflicts.h (conflicts_output_xml): Remove prototype.
2975 * src/print-xml.c (print_xml): Don't invoke conflicts_output_xml.
2976 * src/print.c (print_grammar): Consistently wrap at the 66th column so
2977 the corresponding XSLT is easier. Also, never wrap between a word and
2978 the comma that follows it.
2979
2980 2007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
2981
2982 Improve C++ namespace support. Discussed starting at
2983 <http://lists.gnu.org/archive/html/help-bison/2007-09/msg00016.html>.
2984 * data/c++.m4: (b4_namespace_ref, b4_namespace_open,
2985 b4_namespace_close): New macros that interpret the %define variable
2986 "namespace" so its value can contain "::" to indicate nested
2987 namespaces.
2988 * data/glr.cc (b4_namespace): Don't define, and replace all uses with
2989 the above macros.
2990 * data/lalr1.cc (b4_namespace): Likewise.
2991 * data/location.cc (b4_namespace): Likewise.
2992 * doc/bison.texinfo (Decl Summary): Move `%define push_pull' entry
2993 inside a new table in the general %define entry. Document `%define
2994 namespace' there as well. Point the %name-prefix entry to it since it
2995 explains it more completely in the case of C++.
2996 (C++ Bison Interface): Mention `%define namespace' instead of
2997 %name-prefix.
2998 (Table of Symbols): Remove the `%define push_pull' entry. The %define
2999 entry suffices.
3000 * tests/c++.at (Relative namespace references): New test case.
3001 (Absolute namespace references): New test case.
3002 (Syntactically invalid namespace references): New test case.
3003 * tests/input.at (C++ namespace reference errors): New test case.
3004
3005 2007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
3006
3007 Add syncline support and location accessor to internal %define
3008 interfaces.
3009 * data/bison.m4 (b4_percent_define_get_loc): New.
3010 (b4_percent_define_get_syncline): New.
3011 (b4_percent_define_flag_if): Use b4_percent_define_get_loc.
3012 (b4_percent_define_default): Record defining location as line 1 rather
3013 than 0 for the sake of synchronizing #line's, and define
3014 b4_percent_define_syncline(VARIABLE).
3015 (b4_percent_define_check_values): Use b4_percent_define_get_loc.
3016 * src/muscle_tab.c (muscle_syncline_grow): New.
3017 (muscle_code_grow): Use muscle_syncline_grow.
3018 (muscle_percent_define_insert): Use muscle_percent_define_get_loc, and
3019 define b4_percent_define_syncline(VARIABLE).
3020 (muscle_percent_define_get_loc): New.
3021 (muscle_percent_define_get_syncline): New.
3022 (muscle_percent_define_flag_if): Use muscle_percent_define_get_loc, and
3023 remove some unused variables.
3024 (muscle_percent_define_default): Record defining location as line 1
3025 rather than 0 for the sake of synchronizing #line's, and define
3026 b4_percent_define_syncline(VARIABLE).
3027 (muscle_percent_define_check_values): Use
3028 muscle_percent_define_get_loc.
3029 * src/muscle_tab.h (muscle_percent_define_get_loc): Prototype.
3030 (muscle_percent_define_get_syncline): Prototype.
3031 * tests/skeletons.at (%define Boolean variables: invalid skeleton
3032 defaults): Update output for location change.
3033 (Complaining during macro argument expansion): Extend to test
3034 b4_percent_define_get_loc and b4_percent_define_get_syncline errors.
3035
3036 2007-10-07 Joel E. Denny <jdenny@ces.clemson.edu>
3037
3038 Fix some error-reporting macro bugs.
3039 * data/bison.m4 (b4_cat): New.
3040 (b4_error, b4_error_at): Use b4_cat to send error directives directly
3041 to stdout so they don't become arguments to other macros. Update
3042 comments and add examples.
3043 (b4_warn, b4_warn_at, b4_complain, b4_complain_at): Update comments and
3044 add examples.
3045 (b4_fatal, b4_fatal_at): Likewise, and invoke m4_exit(1) immediately
3046 after printing the error directive so that M4 doesn't report subsequent
3047 problems that are induced by this problem.
3048 * src/scan-skel.l: Recognize @` digraph outside of directive arguments
3049 instead of just in them. Recognize @\n in both places. Both expand to
3050 the empty string. Needed by b4_cat.
3051 * tests/skeletons.at (Complaining during macro argument expansion):
3052 New test case.
3053 (Fatal errors make M4 exit immediately): New test case.
3054
3055 2007-10-04 Joel E. Denny <jdenny@ces.clemson.edu>
3056
3057 Implement --print-datadir.
3058 * src/getargs.c (usage): Mention.
3059 (PRINT_DATADIR_OPTION): New anonymous enum member.
3060 (long_options): Add entry for it.
3061 (getargs): Add case for it calling compute_pkgdatadir.
3062 * src/output.c (output_skeleton): Encapsulate data directory
3063 computation from here...
3064 (prepare): ... and from here...
3065 (compute_pkgdatadir): ... into this new function.
3066 * src/output.h (compute_pkgdatadir): Prototype.
3067
3068 2007-09-29 Joel E. Denny <jdenny@ces.clemson.edu>
3069
3070 * src/print-xml.c (escape_bufs): New static global variable
3071 replacing...
3072 (xml_escape_n): ... the static local variable buf here.
3073 (print_xml): Free memory for escape_bufs.
3074 * src/reduce.c (reduce_xml): XML-escape terminal symbol tags.
3075
3076 2007-09-25 Joel E. Denny <jdenny@ces.clemson.edu>
3077
3078 Replace `%push-parser' and `%push-pull-parser' with
3079 `%define push_pull "push"' and `%define push_pull "both"'.
3080 `%define push_pull "pull"' is the default.
3081 * doc/bison.texinfo (Push Decl, Push Parser Function,
3082 Pull Parser Function, Parser Create Function, Parser Delete Function):
3083 Update declarations.
3084 (Decl Summary, Table of Symbols): Replace %push-parser and
3085 %push-pull-parser entries with a %define push_pull entry.
3086 * data/bison.m4 (b4_percent_define_check_values): New macro.
3087 (b4_pull_if, b4_push_if, b4_use_push_for_pull_if): Move these
3088 definitions...
3089 * data/c.m4 (b4_identification): ... and the YYPUSH and YYPULL cpp
3090 definitions...
3091 * data/push.c: ... to here and compute them from the value of the
3092 %define variable push_pull.
3093 * data/c-skel.m4: Instead of choosing the push.c skeleton for push
3094 parsing requests here...
3095 * data/yacc.c: ... hack this to switch to push.c any time
3096 b4_use_push_pull_flag or the %define variable push_pull is set. This
3097 will go away when we mv push.c yacc.c.
3098 * data/c++-skel.m4, data/glr.c, data/java-skel.m4: Don't report that
3099 push parsing is not supported since unused %define variables are
3100 reported anyway.
3101 * src/getargs.c, src/getargs.h (pull_parser, push_parser): Remove.
3102 * src/muscle_tab.h (muscle_percent_define_check_values): Update
3103 comments for consistency with b4_percent_define_check_values.
3104 * src/output.c (prepare): Don't insert b4_pull_flag and b4_push_flag
3105 muscles.
3106 * src/parse-gram.y (PERCENT_PUSH_PARSER, PERCENT_PUSH_PULL_PARSER):
3107 Remove.
3108 (prologue_declaration): Remove %push-parser and %push-pull-parser
3109 rules.
3110 * src/scan-gram.l (%push-parser, %push-pull-parser): Remove rules.
3111 * tests/calc.at: Update declarations.
3112 * tests/input.at (%define enum variables): New test case.
3113 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update
3114 declaration.
3115 (Push Parsing: Multiple impure instances): Update declaration.
3116 (Push Parsing: Unsupported Skeletons): New test case.
3117 * tests/torture.at (Exploding the Stack Size with Alloca): Update
3118 declaration.
3119 (Exploding the Stack Size with Malloc): Update declaration.
3120
3121 2007-09-24 Wojciech Polak <polak@gnu.org>
3122
3123 Add XSLT transformations.
3124
3125 * data/xslt/xml2dot.xsl: Transform XML into DOT.
3126 * data/xslt/xml2text.xsl: Transform XML into plain text.
3127 * data/xslt/xml2xhtml.xsl: Transform XML into XHTML.
3128 * data/Makefile.am (xsltdir): New variable.
3129 (dist_xslt_DATA): Add xslt/*.xsl files.
3130
3131 2007-09-23 Paul Eggert <eggert@cs.ucla.edu>
3132
3133 * src/conflicts.c (log_resolution): Fix indenting bugs I introduced.
3134 Problem reported by Wojciech Polak.
3135 * src/print-xml.c (xml_puts): Work even if LEVEL exceeds INT_MAX/2.
3136 (xml_printf): Undo change I made on 21 September; that is,
3137 indent 2 spaces, not 1.
3138
3139 2007-09-23 Joel E. Denny <jdenny@ces.clemson.edu>
3140
3141 Pacify ./configure --enable-gcc-warnings.
3142 * src/print-xml.c, src/print-xml.h (xml_puts): Make third argument
3143 `char const *' instead of `char *'.
3144 * src/state.c (state_rule_lookahead_tokens_print_xml): Remove unused
3145 local variable `sep'.
3146
3147 2007-09-21 Paul Eggert <eggert@cs.ucla.edu>
3148
3149 * src/gram.c (rule_rhs_print_xml): Now static, since it isn't used
3150 elsewhere.
3151 * src/print-xml.c: Prefer "const" after types; that's more consistent.
3152 (xml_printf): Indent just 1 space for level.
3153 (e_char, xlate_char): Remove.
3154 (xml_escape_string): Rewrite to avoid undefined behavior (used
3155 storage that was freed from the stack).
3156 (xml_escape_n): Don't bother checking for subscript error.
3157
3158 2007-09-21 Wojciech Polak <polak@gnu.org>
3159
3160 Add Bison XML Automaton Report.
3161
3162 Add support for an -x option to generate an XML report.
3163 It is not documented yet.
3164 * src/print-xml.c: New file.
3165 * src/print-xml.h: Likewise.
3166 * lib/timevar.def (TV_XML): New var.
3167 * src/Makefile.am (bison_SOURCES): Add print-xml.c, print-xml.h.
3168 * src/conflicts.c: Include print-xml.h.
3169 (solved_conflicts_xml_obstack): New var.
3170 (log_resolution, conflicts_solve, conflicts_free):
3171 Add support for XML report.
3172 (conflicts_output_val): New function.
3173 * src/conflicts.h (conflicts_output_val): New decl.
3174 * src/files.c (spec_xml_file): New var.
3175 (compute_output_file_names, output_file_names_free): Add XML support.
3176 * src/files.h (spec_xml_file): New decl.
3177 * src/getargs.c (xml_flag): New var.
3178 (usage, short_options, long_options, getargs): Add XML support.
3179 * src/getargs.h (xml_flag): New decl.
3180 * src/gram.c: Include print-xml.h.
3181 (rule_lhs_print_xml, rule_rhs_print_xml):
3182 (grammar_rules_partial_print_xml, grammar_rules_print_xml):
3183 New functions.
3184 * src/gram.h: Declare external ones.
3185 * src/main.c: Include print-xml.h.
3186 (main): Add XML support.
3187 * src/reduce.c: Include print-xml.h.
3188 (reduce_xml): New function.
3189 * src/reduce.h: Declare it.
3190 * src/state.c: Include print-xml.h.
3191 (state_new): Add XML support.
3192 (state_rule_lookahead_tokens_print_xml): New function.
3193 * src/state.h: Declare it.
3194 (struct state): New member solved_conflicts_xml.
3195 * src/symtab.c (symbol_class_get_string): New function.
3196 * src/symtab.h: Declare it.
3197
3198 2007-09-21 Paul Eggert <eggert@cs.ucla.edu>
3199
3200 * GNUmakefile: Switch to coreutils's version.
3201 * bootstrap: Likewise.
3202 * Makefile.cfg: Adjust to new GNUmakefile.
3203 * README-hacking: Likewise.
3204
3205 Import from gnulib:
3206
3207 2006-08-18 Paul Eggert <eggert@cs.ucla.edu>
3208 Bruno Haible <bruno@clisp.org>
3209
3210 * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
3211 and is a script that invokes bison. Tighten the code. Add comments.
3212
3213 2007-08-28 Joel E. Denny <jdenny@ces.clemson.edu>
3214
3215 Spell "boolean" as "Boolean". Reported by Akim Demaille.
3216 * data/bison.m4 (b4_percent_define_flag_if): Fix complaint.
3217 * doc/bison.texinfo (Decl Summary): Fix.
3218 * src/muscle_tab.c (muscle_percent_define_flag_if): Fix complaint.
3219 * tests/input.at (Boolean %define variables): Update output.
3220 * tests/skeletons.at (%define boolean variables: invalid skeleton
3221 defaults): Rename to...
3222 (%define Boolean variables: invalid skeleton defaults): ... this and
3223 update output.
3224
3225 2007-08-17 Joel E. Denny <jdenny@ces.clemson.edu>
3226
3227 In impure push mode, don't allow more than one yypstate to be allocated
3228 since multiple impure parsers would corrupt yynerrs.
3229 * data/push.c (yypstate_allocated): New static global variable
3230 initialized to 0.
3231 (yypull_parse): If yypstate_new returns 0, don't report it as memory
3232 exhaustion if yypstate_allocated is 1, but still return 2.
3233 (yypstate_new): Invoke yyerror and return 0 if yypstate_allocated is
3234 already 1. Otherwise, set it to 1.
3235 (yypstate_delete): Set it to 0.
3236 * tests/push.at (Push Parsing: Multiple impure instances): New test
3237 case.
3238
3239 2007-08-17 Bob Rossi <bob@brasko.net>
3240
3241 * doc/bison.texinfo (Push Decl): Document the push parser.
3242 (Table of Symbols): Ditto.
3243 (Pure Decl): Ditto.
3244 (Decl Summary): Ditto.
3245 (Multiple Parsers, Push Parser Function, Pull Parser Function,
3246 Parser Create Function, Parser Delete Function):
3247 Add new push parser symbols.
3248 (Table of Symbols): Document push-parser, push-pull-parser,
3249 yypush_parse, yypull_parse, yypstate_new and yypstate_delete.
3250
3251 2007-08-15 Paul Eggert <eggert@cs.ucla.edu>
3252
3253 Update to GPLv3.
3254 * doc/gpl-3.0.texi: New file.
3255 * doc/gpl.texi: Remove.
3256 * COPYING, GNUmakefile, HACKING, Makefile.am, Makefile.cfg:
3257 * Makefile.maint, NEWS, PACKAGING, README, README-alpha:
3258 * README-hacking, TODO, bootstrap, bootstrap.conf:
3259 * configure.ac, data/Makefile.am, data/README, data/bison.m4:
3260 * data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4:
3261 * data/glr.c, data/glr.cc, data/java-skel.m4, data/java.m4:
3262 * data/lalr1.cc, data/lalr1.java, data/location.cc:
3263 * data/push.c, data/yacc.c, data/m4sugar/m4sugar.m4:
3264 * djgpp/Makefile.maint, djgpp/README.in, djgpp/config.bat:
3265 * djgpp/config.sed, djgpp/config.site, djgpp/config_h.sed:
3266 * djgpp/djunpack.bat, djgpp/subpipe.c, djgpp/subpipe.h:
3267 * djgpp/testsuite.sed, doc/Makefile.am, doc/bison.texinfo:
3268 * doc/fdl.texi, doc/refcard.tex, etc/Makefile.am, etc/README:
3269 * etc/bench.pl.in, examples/Makefile.am, examples/extexi:
3270 * examples/calc++/Makefile.am, lib/Makefile.am, lib/abitset.c:
3271 * lib/abitset.h, lib/bbitset.h, lib/bitset.c, lib/bitset.h:
3272 * lib/bitset_stats.c, lib/bitset_stats.h, lib/bitsetv-print.c:
3273 * lib/bitsetv-print.h, lib/bitsetv.c, lib/bitsetv.h:
3274 * lib/ebitset.c, lib/ebitset.h, lib/get-errno.c:
3275 * lib/get-errno.h, lib/lbitset.c, lib/lbitset.h:
3276 * lib/libiberty.h, lib/main.c, lib/subpipe.c, lib/subpipe.h:
3277 * lib/timevar.c, lib/timevar.def, lib/timevar.h:
3278 * lib/vbitset.c, lib/vbitset.h, lib/yyerror.c:
3279 * m4/c-working.m4, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4:
3280 * m4/timevar.m4, src/LR0.c, src/LR0.h, src/Makefile.am:
3281 * src/assoc.c, src/assoc.h, src/closure.c, src/closure.h:
3282 * src/complain.c, src/complain.h, src/conflicts.c:
3283 * src/conflicts.h, src/derives.c, src/derives.h, src/files.c:
3284 * src/files.h, src/flex-scanner.h, src/getargs.c:
3285 * src/getargs.h, src/gram.c, src/gram.h, src/graphviz.c:
3286 * src/lalr.c, src/lalr.h, src/location.c, src/location.h:
3287 * src/main.c, src/muscle_tab.c, src/muscle_tab.h:
3288 * src/nullable.c, src/nullable.h, src/output.c, src/output.h:
3289 * src/parse-gram.c, src/parse-gram.h, src/parse-gram.y:
3290 * src/print.c, src/print.h, src/print_graph.c:
3291 * src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c:
3292 * src/reduce.h, src/relation.c, src/relation.h:
3293 * src/revision.h, src/scan-code.h, src/scan-code.l:
3294 * src/scan-gram.h, src/scan-gram.l, src/scan-skel.h:
3295 * src/scan-skel.l, src/state.c, src/state.h, src/symlist.c:
3296 * src/symlist.h, src/symtab.c, src/symtab.h, src/system.h:
3297 * src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h:
3298 * tests/Makefile.am, tests/actions.at, tests/c++.at:
3299 * tests/calc.at, tests/conflicts.at, tests/cxx-type.at:
3300 * tests/existing.at, tests/glr-regression.at:
3301 * tests/headers.at, tests/input.at, tests/java.at:
3302 * tests/local.at, tests/output.at, tests/push.at:
3303 * tests/reduce.at, tests/regression.at, tests/sets.at:
3304 * tests/skeletons.at, tests/synclines.at, tests/testsuite.at:
3305 * tests/torture.at:
3306 Update to GPLv3.
3307
3308 2007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
3309
3310 Get rid of broken %no-parser, -n, and --no-parser implementation and
3311 documentation.
3312 * TODO: Don't mention them.
3313 * doc/bison.1: Likewise.
3314 * doc/bison.texinfo (Decl Summary): Likewise.
3315 (Bison Options): Likewise.
3316 (Option Cross Key): Likewise.
3317 * src/getargs.c (no_parser_flag): Remove global variable.
3318 (usage): Don't print description of -n and --no-parser.
3319 (long_options): Remove --no-parser entry here.
3320 (getargs): Remove -n case in the switch here.
3321 * src/getargs.h (no_parser_flag): Remove extern.
3322 * tests/regression.at (Web2c Actions): Remove comment that mentions
3323 --no-parser.
3324
3325 2007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
3326
3327 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Do not
3328 name user variables starting with `yy'. Just pass NULL instead of a
3329 dummy local &yylval to yypush_parse.
3330 * tests/torture.at (AT_DATA_STACK_TORTURE): Do not name user variables
3331 starting with `yy'.
3332
3333 2007-08-03 Joel E. Denny <jdenny@ces.clemson.edu>
3334
3335 * data/yacc.c (yyexhaustedlab): Define it when YYERROR_VERBOSE is
3336 true since it's then always used regardless of whether yyoverflow is
3337 defined. Reported by Christian Burger at
3338 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00031.html>.
3339 * THANKS: Add Christian Burger.
3340
3341 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
3342 node names: say "Decl Summary" not "Bison Declaration Summary".
3343
3344 2007-07-28 Joel E. Denny <jdenny@ces.clemson.edu>
3345
3346 * src/muscle_tab.c (muscle_percent_define_flag_if): In order to
3347 determine whether this function has already complained about an invalid
3348 value for a %define boolean variable, don't check whether Bison has
3349 ever examined the value. As written, the check was a tautology.
3350 Instead, record and check for this complaint using a separate muscle.
3351
3352 2007-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
3353
3354 Fix push parsing memory leak reported by Brandon Lucia at
3355 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00032.html>.
3356 * THANKS: Add Brandon Lucia.
3357 * data/push.c (yypstate_delete): Free the stack if it was reallocated
3358 but the parse never completed and thus freed it.
3359 * tests/Makefile.am (TESTSUITE_AT): Add push.at.
3360 * tests/testsuite.at: Include push.at.
3361 * test/push.at: New.
3362 (Push Parsing: Memory Leak for Early Deletion): New test case.
3363
3364 2007-07-17 Joel E. Denny <jdenny@ces.clemson.edu>
3365
3366 Improve handling of multiple S/R conflicts in the same state and of S/R
3367 conflicts involving multiple reductions.
3368 * src/conflicts.c (resolve_sr_conflict): Don't assign the error action
3369 set for a state here or Bison will abort if it is reassigned on a
3370 later conflicted reduction in the same state.
3371 Similarly, don't finalize and assign the solved conflicts report here
3372 or it will be lost if it is reassigned on a later conflicted reduction
3373 in the same state.
3374 (set_conflicts): Instead, assign them both here after all S/R conflicts
3375 in the state have been fully examined.
3376 * src/print.c (shift_set): Rename to...
3377 (no_reduce_set): ... this.
3378 (print_reductions): Update for rename, and add %nonassoc error action
3379 tokens to no_reduce_set so that, when printing the first remaining
3380 reduction on an error action token, the reduction is enclosed in
3381 brackets.
3382 (print_results): Update for rename.
3383 * tests/conflicts.at (Solved conflicts report for multiple reductions
3384 in a state): New test case.
3385 (%nonassoc error actions for multiple reductions in a state): New test
3386 case.
3387
3388 * src/main.c (main): Don't depend on C99 features.
3389
3390 2007-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
3391
3392 * build-aux/.cvsignore: Add compile.
3393 * lib/.cvsignore: Add charset.alias, ref-add.sed, ref-del.sed, and
3394 uniwidth.
3395
3396 2007-07-10 Joel E. Denny <jdenny@ces.clemson.edu>
3397
3398 * bootstrap (slurp): Create target directories that don't exist.
3399 Specifically, we need lib/uniwidth/ because of recent Gnulib changes.
3400
3401 2007-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
3402
3403 * LR0.c (new_itemsets): Fix wording in comments: say item index rather
3404 than item number.
3405 * closure.c (closure): Likewise.
3406 * state.h (reductions): Comment sorting of rules.
3407 (state): Comment sorting of items.
3408
3409 2007-07-02 Joel E. Denny <jdenny@ces.clemson.edu>
3410
3411 Fix C++ test cases after recent Gnulib changes. Discussed starting at
3412 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00000.html>.
3413 * examples/calc++/Makefile.am (DEFAULT_INCLUDES): Override Automake's
3414 definition in order to avoid Gnulib headers since we don't use config.h
3415 here.
3416 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Use AT_DATA_GRAMMAR
3417 rather than AT_DATA so that config.h is included.
3418
3419 2007-07-01 Joel E. Denny <jdenny@ces.clemson.edu>
3420
3421 * data/glr.c (yy_yypstack, yypstates, yypdumpstack): Use YYFPRINTF
3422 instead of fprintf. Guard these functions with #if YYDEBUG instead of
3423 #ifdef YYDEBUG for consistency with all other uses of YYDEBUG in Bison
3424 and so that YYFPRINTF is guaranteed to be defined here.
3425
3426 2007-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
3427
3428 * src/muscle_tab.c (muscle_percent_define_invalid_value): Replace
3429 with...
3430 (muscle_percent_define_check_values): ... this more helpful function.
3431 Again, it's not used yet, but it will be.
3432 * src/muscle_tab.h: Likewise.
3433
3434 Improve some comments in parser table construction.
3435 * src/LR0.c (new_itemsets): Explain sorting of itemset and kernel_base.
3436 (generate_states): Don't mention ruleset, which is internal to closure.
3437 * src/closure.c (closure): Explain sorting of core and itemset, which
3438 is required for this function to behave correctly.
3439 * src/closure.h (closure): Mention sorting.
3440
3441 2007-05-28 Joel E. Denny <jdenny@ces.clemson.edu>
3442
3443 * src/lalr.c (state_lookahead_tokens_count): For code readability,
3444 move the check for disabled transitions to an aver since conflict
3445 resolution hasn't happened yet.
3446
3447 * src/lalr.c (state_lookahead_tokens_count): Remove the check that
3448 labels a state as inconsistent just because it has error transitions.
3449 The original form of this check appeared in revision 1.1 of lalr.c,
3450 which was committed on 1991-12-21. Now (at least), changing the
3451 consistency label on such a state appears to have no useful effect in
3452 any of the places it is examined, which I enumerate below. The key
3453 point to understanding each item in this enumeration is that a state
3454 with an error transition is labelled consistent in the first place only
3455 if it has no rules, so the check cannot matter for states that have
3456 rules. (1) Labelling a state as inconsistent will cause set_conflicts
3457 to try to identify its conflicts, and a state must have *rules* to have
3458 conflicts. (2) Labelling a state as inconsistent will affect how
3459 action_row sets the default *rule* for the state. (3) Labelling a
3460 state as inconsistent will cause build_relations to add lookback edges
3461 to *rules* in that state.
3462 * src/state.h (struct state): Word the comment for member consistent
3463 more carefully.
3464
3465 2007-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
3466
3467 Don't depend on C99 features.
3468 * src/conflicts.c (conflicts_update_state_numbers): Fix for-loop.
3469 * src/lalr.c (lalr_update_state_numbers): Fix for-loop.
3470 * src/reader.c (check_and_convert_grammar): Fix for-loop.
3471 * src/state.c (state_mark_reachable_states): Fix for-loop.
3472 (state_remove_unreachable_states): Fix for-loop.
3473
3474 Don't widen struct state with member reachable just to temporarily
3475 record reachability. Instead, use a local bitset.
3476 * src/state.h (struct state): Remove member.
3477 * src/state.c (state_new): Don't initialize it.
3478 (state_mark_reachable_states): Rename to...
3479 (state_record_reachable_states): ... this, and use bitset.
3480 (state_remove_unreachable_states): Use bitset.
3481
3482 2007-05-26 Joel E. Denny <jdenny@ces.clemson.edu>
3483
3484 * src/Makefile.am (yacc): Quote target action commands properly so
3485 that the yacc script isn't corrupt. Reported by Hans Aberg at
3486 <http://lists.gnu.org/archive/html/bug-bison/2007-05/msg00003.html>.
3487
3488 * data/glr.c (yylval): As in yacc.c, don't extern in the header for
3489 the case of pure parsers. Reported by Frans Englich at
3490 <http://lists.gnu.org/archive/html/help-bison/2007-05/msg00018.html>.
3491 * THANKS: Add Frans Englich.
3492
3493 * NEWS (2.3a+): In the %code entry, reference section `Bison
3494 Declaration Summary' from the manual now since the %code summary has
3495 moved there.
3496 * doc/bison.texinfo (Prologue Alternatives): Mention that directives
3497 in the rules section must be terminated by semicolons.
3498
3499 2007-05-20 Joel E. Denny <jdenny@ces.clemson.edu>
3500
3501 Extend the front-end API for %define variables to more completely
3502 mirror the back-end. This will be useful in the future.
3503 * data/bison.m4 (b4_percent_define_get, b4_percent_define_ifdef):
3504 Update comments to mention the new front-end counterparts of these
3505 macros.
3506 * src/muscle_tab.c (MUSCLE_COMMON_DECODE): New macro with common code
3507 for muscle_string_decode and muscle_location_decode.
3508 (muscle_string_decode): New static function.
3509 (muscle_location_decode): Use MUSCLE_COMMON_DECODE.
3510 (muscle_percent_define_get, muscle_percent_define_ifdef): New
3511 functions.
3512 (muscle_percent_define_flag_if): Use muscle_percent_define_ifdef and
3513 muscle_percent_define_get to mimic the b4_percent_define_flag_if
3514 implementation more closely.
3515 (muscle_percent_define_invalid_value): New function.
3516 * src/muscle_tab.h (muscle_percent_define_get,
3517 muscle_percent_define_ifdef, muscle_percent_define_invalid_value):
3518 Prototype.
3519
3520 2007-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
3521
3522 * NEWS (2.3a+): Mention yesterday's state-removal change.
3523 (2.3a): Remove the %language entry, which was added after 2.3a.
3524 * src/LR0.c, src/closure.c, src/closure.h, src/conflicts.c,
3525 src/conflicts.h, src/lalr.c, src/lalr.h, src/print.c,
3526 src/print_graph.c, src/state.c, src/state.h, tests/conflicts.at,
3527 tests/existing.at: Update copyright date.
3528
3529 2007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
3530
3531 If conflict resolution makes states unreachable, remove those states,
3532 report rules that are then unused, and don't report conflicts in those
3533 states.
3534 * src/conflicts.c, src/conflicts.h (conflicts_update_state_numbers):
3535 New global function.
3536 * src/lalr.c, src/lalr.h (lalr_update_state_numbers): New global
3537 function.
3538 * src/main.c (main): After conflict resolution, remove the unreachable
3539 states and update all data structures that reference states by number.
3540 * src/state.c (state_new): Initialize each state's reachable member to
3541 false.
3542 (state_mark_reachable_states): New static function.
3543 (state_remove_unreachable_states): New global function.
3544 * src/state.h (struct state): Add member bool reachable.
3545 (state_remove_unreachable_states): Prototype.
3546 * tests/conflicts.at (Unreachable States After Conflict Resolution):
3547 New test case.
3548 * tests/existing.at (GNU pic Grammar): Update test case output now that
3549 an unused rule is discovered.
3550
3551 2007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
3552
3553 Minor code cleanup in parser table construction.
3554 * src/LR0.c (new_itemsets): Use item_number_is_symbol_number.
3555 (new_itemsets, save_reductions): Update for rename to nitemset.
3556 * src/closure.c (nritemset): Rename to...
3557 (nitemset): ... this since the "r" appears to meaningless and isn't
3558 used in the comments.
3559 (closure): Update for rename.
3560 * src/closure.h (nritemset): Update extern to...
3561 (nitemset): ... this.
3562 * src/lalr.c (LA): Fix a typo in comments.
3563 * src/print.c (print_core): Update for rename to nitemset.
3564 * src/print_graph.c (print_graph): Likewise.
3565 * src/state.h: Fix some typos in header comments.
3566
3567 2007-04-04 Paul Eggert <eggert@cs.ucla.edu>
3568
3569 * THANKS: Use ASCII for Sebastien Fricker's name. Bison source
3570 still sticks to ASCII. Sorry!
3571
3572 * README-hacking: New file, taken mostly from coreutils, with changes
3573 for Bison. Contains much of the contents of:
3574 * README-cvs: Remove.
3575 * bootstrap: Sync from gnulib.
3576 * build-aux/.cvsignore: Remove *.t, mkinstalldirs.
3577 * lib/.cvsignore: Add wchar.h, wctype.h. Remove exit.h.
3578
3579 2007-03-10 Joel E. Denny <jdenny@ces.clemson.edu>
3580
3581 * doc/bison.texinfo (Destructor Decl): Fix typo reported by Sebastian
3582 Setzer.
3583 (Java Differences): Fix some typos.
3584 * THANKS: Add Sebastian Setzer.
3585
3586 2007-03-07 Paolo Bonzini <bonzini@gnu.org>
3587
3588 * data/java.m4 (b4_single_class_if): Remove.
3589 (b4_abstract_if): Look at "%define abstract".
3590 (b4_lexer_if): New.
3591 (b4_union_name): Rename...
3592 (b4_yystype): ... to this. Map to "%define stype".
3593 (b4_rhs_value, b4_parse_param_decl, b4_lex_param_decl,
3594 b4_maybe_throws): Fix quoting.
3595 (b4_lex_param_call): Move below to keep b4_*_param_decl close.
3596 * data/lalr1.java (Lexer interface): Always define.
3597 (Lexer interface within parser class): Remove.
3598 (YYLexer class): New, used when "%code lexer" is present.
3599 (constructor): When "%code lexer" is used, pass %lex-param
3600 to the lexer constructor.
3601 (yylex, yyparse): Remove %lex-param from method invocations
3602 (YYStack, yyaction, yyparse): Rename b4_union_name to b4_yystype.
3603
3604 * doc/bison.texinfo (Java Bison Interface): Mention "%define
3605 abstract". Rename "%define union_name" to "%define stype".
3606 Rename method names according to previous patch.
3607 (Java Scanner Interface): Describe "%code lexer" instead of
3608 "%pure-parser" and "%define single_class".
3609 (Java Differences): Mention "%code lexer".
3610
3611 * tests/java.at (_AT_DATA_JAVA_CALC_Y): Remove final argument.
3612 Include scanner here, using macros from tests/local.at.
3613 (AT_DATA_CALC_Y): Remove final argument.
3614 (_AT_CHECK_JAVA_CALC): Likewise.
3615 (AT_CHECK_JAVA_CALC): Likewise. Test all four combinations
3616 of %locations and %error-verbose.
3617 (main): Test with and without %lex-param.
3618 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_LEXPARAM_IF.
3619 (AT_BISON_OPTION_POPDEFS): Pop it.
3620
3621 2007-03-07 Juan Manuel Guerrero <juan.guerrero@gmx.de>
3622
3623 DJGPP spefic issue. Inhibit the use of disallowed characters for
3624 file name genertion on Win98, WinXP, etc. These are |<>":?*\
3625 and concern testsuite case 46.
3626 * Makefile.am: djgpp/testsuite.sed added to EXTRA_DIST
3627 * djgpp/testsuite.sed: Inhibit the use of disallowed characters.
3628 * djgpp/config.bat: Inhibit the use of disallowed characters.
3629
3630 2007-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
3631
3632 Miscellaneous %define and %code cleanup.
3633 * data/bison.m4 (b4_percent_define_flag_if): Correct comments on how
3634 values are interpreted.
3635 * doc/bison.texinfo (Decl Summary): Clean up and extend %define
3636 documentation a little more.
3637 * src/muscle_tab.c (MUSCLE_USER_NAME_CONVERT,
3638 muscle_percent_define_insert, muscle_percent_code_grow): New
3639 functions/macros.
3640 * src/muscle_tab.h (muscle_percent_define_insert,
3641 muscle_percent_code_grow): Prototype.
3642 * src/parse-gram.y (prologue_declaration): Use
3643 muscle_percent_define_insert and muscle_percent_code_grow when parsing
3644 %define and %code directives.
3645
3646 Make it easy to share %define boolean variables between the front-end
3647 and back-end. Though not used yet, this will be useful in the future.
3648 * data/bison.m4 (b4_check_user_names): Rewrite comments to talk about
3649 Bison uses of names rather than just skeleton uses of names.
3650 (b4_percent_define_get, b4_percent_define_ifdef): Rename
3651 b4_percent_define_skeleton_variables(VARIABLE) to
3652 b4_percent_define_bison_variables(VARIABLE).
3653 (b4_percent_code_get, b4_percent_code_ifdef): Rename
3654 b4_percent_code_skeleton_qualifiers(QUALIFIER) to
3655 b4_percent_code_bison_qualifiers(QUALIFIER).
3656 (b4_check_user_names_wrap): Update for renames.
3657 * src/muscle_tab.c, src/muscle_tab.h (muscle_percent_define_flag_if,
3658 muscle_percent_define_default): New functions mimicking
3659 b4_percent_define_flag_if and b4_percent_define_default.
3660
3661 For %define variables, report locations for invalid values and
3662 redefinitions.
3663 * data/bison.m4 (b4_percent_define_flag_if): Read
3664 b4_percent_define_loc(VARIABLE) to report the location of an invalid
3665 value for VARIABLE.
3666 (b4_percent_define_default): Save a special location in
3667 b4_percent_define_loc(VARIABLE) in case the default value for VARIABLE
3668 must later be reported as invalid.
3669 * src/muscle_tab.c (muscle_location_grow, muscle_location_decode): New
3670 functions.
3671 (muscle_percent_define_insert): Record the location of VARIABLE in
3672 muscle percent_define_loc(VARIABLE), and use it to report the previous
3673 location for a redefinition.
3674 (muscle_percent_define_flag_if): Update like b4_percent_define_flag_if.
3675 (muscle_percent_define_default): Update like b4_percent_define_default.
3676 (muscle_grow_user_name_list): Rename to...
3677 (muscle_user_name_list_grow): ... this for consistency and use
3678 muscle_location_grow.
3679 * src/muscle_tab.h (muscle_location_grow): Prototype.
3680 * tests/input.at (%define errors): Update expected output.
3681 * tests/skeletons.at (%define boolean variables: invalid skeleton
3682 defaults): New test case.
3683
3684 2007-02-28 Joel E. Denny <jdenny@ces.clemson.edu>
3685
3686 * src/print.c (lookahead_set, state_default_rule): Remove.
3687 (print_reductions): Replace state_default_rule invocation with
3688 equivalent use of yydefact, which was computed in token_actions in
3689 tables.c.
3690 (print_results): Don't allocate lookahead_set.
3691
3692 2007-02-27 Paolo Bonzini <bonzini@gnu.org>
3693
3694 * data/lalr1.java: Prefix all private members with yy.
3695
3696 2007-02-24 Joel E. Denny <jdenny@ces.clemson.edu>
3697
3698 Use YYFPRINTF instead of fprintf where appropriate. Reported by
3699 Sebastien Fricker at
3700 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00035.html>.
3701 * THANKS: Add Sebastien Fricker.
3702 * data/glr.c, data/push.c, data/yacc.c (yy_reduce_print): Implement.
3703 * doc/bison.texinfo (Tracing): Make it clearer that YYFPRINTF must
3704 accept a variable number of arguments.
3705
3706 2007-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
3707
3708 * bootstrap: Remove occurrences of .#bootmp from lib/Makefile.
3709
3710 2007-02-13 Juan Manuel Guerrero <juan.guerrero@gmx.de>
3711
3712 * djgpp/config.bat: Adjustments concerning the use of autoconf 2.61.
3713 * djgpp/config.sed: Adjustments concerning the use of autoconf 2.61.
3714 * djgpp/config.site: Adjustments concerning the use of autoconf 2.61.
3715
3716 2007-02-11 Paul Eggert <eggert@cs.ucla.edu>
3717
3718 Undo my 2007-02-07 change, switching back to the c-strcase module
3719 introduced in the 2007-02-03 change. Bruno Haible reported that
3720 the 2007-02-07 change would be dangerous in Turkish if we add a
3721 language whose name contains "i", since "i" is not lowercase "I"
3722 in Turkish.
3723 * bootstrap.conf (gnulib_modules): Add c-strcase. Remove strcase.
3724 * lib/.cvsignore: Add c-ctype.c, c-ctype.h, c-strcase.h,
3725 c-strcasecomp.c, c-strncasecmp.c. Remove strcasecmp.c, strncasecmp.c.
3726 * m4/.cvsignore: Remove strcase.m4.
3727 * src/getargs.c: Revert 2007-02-07 change, as follows.
3728 Include c-strcase.h.
3729 (language_argmatch): Use c_strcasecmp rather than strcasecmp.
3730
3731 2007-02-11 Bruno Haible <bruno@clisp.org>
3732
3733 Enable the Java related testsuite tests when the only Java compiler
3734 found is a gcj < 4.3. Discussed at
3735 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00016.html>.
3736 * configure.ac (gt_JAVACOMP): Don't specify a target_version.
3737
3738 2007-02-11 Joel E. Denny <jdenny@ces.clemson.edu>
3739
3740 * data/Makefile.am: Update copyright date.
3741 * data/push.c (yypull_parse): Report memory exhaustion and return 2 if
3742 yypstate_new returns NULL.
3743 (yypstate_new): Return NULL if malloc does.
3744 * src/reader.c (packgram): Move translation of rule actions from the
3745 beginning of packgram to...
3746 (check_and_convert_grammar): ... here right before packgram is invoked
3747 so it's easier to write more complete comments, and remove redundant
3748 code.
3749
3750 2007-02-10 Joel E. Denny <jdenny@ces.clemson.edu>
3751
3752 As in semantic actions, make @$ in %initial-action, %destructor, and
3753 %printer imply %locations.
3754 * src/scan-code.l (SC_SYMBOL_ACTION): Set locations_flag = true when
3755 scanning @$.
3756 * tests/actions.at (AT_CHECK_ACTION_LOCATIONS): New macro supporting...
3757 (@$ in %initial-action implies %locations,
3758 @$ in %destructor implies %locations,
3759 @$ in %printer implies %locations): ... these new test cases.
3760
3761 2007-02-07 Paul Eggert <eggert@cs.ucla.edu>
3762
3763 Undo most of the 2007-02-03 change, switching to the strcase module
3764 now that gnulib strcase has been fixed.
3765 * bootstrap.conf (gnulib_modules): Remove c-strcase. Add strcase.
3766 * lib/.cvsignore: Remove c-ctype.c, c-ctype.h, c-strcase.h,
3767 c-strcasecomp.c, c-strncasecmp.c. Add strcasecmp.c, strncasecmp.c
3768 * m4/.cvsignore: Add strcase.m4.
3769 * src/getargs.c: Revert 2007-02-03 change, as follows.
3770 Don't include c-strcase.h.
3771 (language_argmatch): Use strcasecmp rather than c_strcasecmp.
3772 strcasecmp has "unspecified behavior" outside the POSIX locale,
3773 but it works fine in practice if at least one argument is ASCII,
3774 as is the case in Bison.
3775
3776 2007-02-07 Paolo Bonzini <bonzini@gnu.org>
3777
3778 * tests/java.at: Skip tests if only one of javac/java is present.
3779 Reported by Joel E. Denny.
3780 * tests/atlocal.in: Adjust copyright years.
3781
3782 2007-02-05 Paolo Bonzini <bonzini@gnu.org>
3783
3784 * data/lalr1.java (Stack): Work around old verifiers that disallow
3785 access to the private fields of an inner class, from the outer class.
3786 We can make Stack's fields public because user code doesn't have access
3787 to the instance of Stack used by parse(). Reported by Paul Eggert.
3788
3789 2007-02-03 Paul Eggert <eggert@cs.ucla.edu>
3790
3791 * .cvsignore: Add javacomp.sh, javaexec.sh. Is this really
3792 the right spot for these files?
3793 * bootstrap.conf (gnulib_modules): Add c-strcase.
3794 * lib/.cvsignore: Add c-ctype.c c-ctype.h, c-strcasecomp.c,
3795 c-strncasecmp.c.
3796 * src/getargs.c: Include c-strcase.h.
3797 (language_argmatch): Use c_strcasecmp rather than strcasecmp,
3798 to avoid unspecified behavior.
3799
3800 2007-02-01 Joel E. Denny <jdenny@ces.clemson.edu>
3801
3802 * doc/bison.texinfo (Decl Summary): Correct typo.
3803
3804 2007-01-30 Paolo Bonzini <bonzini@gnu.org>
3805
3806 * data/bison.m4 (b4_percent_define_flag_if): Don't treat 0 as false.
3807 Complain if the value does not match empty, "true" or "false".
3808 * data/c++.m4: Adjust default definitions of %define variables.
3809 * data/java.m4: Adjust default definitions of %define variables.
3810 * doc/bison.texinfo (Decl Summary): Adjust the %define entry according
3811 to above behavior.
3812 * tests/input.at (Boolean %define variables): Test new behavior.
3813
3814 2007-01-29 Paolo Bonzini <bonzini@gnu.org>
3815
3816 * NEWS: Mention java.
3817 * TODO: Remove things that are done.
3818 * bootstrap.conf: Add javacomp-script and javaexec-script.
3819 * configure.ac: Invoke gt_JAVACOMP and gt_JAVAEXEC.
3820
3821 * data/Makefile.am: Add new files.
3822 * data/java-skel.m4: New.
3823 * data/java.m4: New.
3824 * data/lalr1.java: New.
3825
3826 * doc/bison.texinfo: Put "A Complete C++ Example" under
3827 C++ Parsers. Add Java Parsers. Put C++ Parsers and Java Parsers
3828 under Other Languages.
3829
3830 * src/getargs.c (valid_languages): Add Java.
3831 * src/getargs.h (struct bison_language): Update size of string fields.
3832
3833 * tests/Makefile.am: Add java.at.
3834 * tests/atlocal.in: Add CONF_JAVA and CONF_JAVAC.
3835 * tests/java.at: New.
3836 * tests/testsuite.at: Include it.
3837
3838 2007-01-28 Joel E. Denny <jdenny@ces.clemson.edu>
3839
3840 Clean up.
3841 * src/scan-skel.l (at_directive_perform): Add at_directive_argc and
3842 at_directive_argv arguments so these no longer have to be global
3843 variables. Also, update the implementation for the following changes.
3844 (fail_for_at_directive_too_many_args,
3845 fail_for_at_directive_too_few_args): Add at_directive_name argument.
3846 (at_directive_name): Remove as at_directive_argv[0] will be used for
3847 this now.
3848 (AT_DIRECTIVE_ARGC_MAX): Increment to make space in at_directive_argv
3849 for the directive name.
3850 (at_directive_argc, at_directive_argv): Make these local within
3851 skel_lex instead of global.
3852 (INITIAL): Update directive start action for above changes.
3853 (SC_AT_DIRECTIVE_ARG): Rename to...
3854 (SC_AT_DIRECTIVE_ARGS): ... this, and update for above changes.
3855 (SC_AT_DIRECTIVE_SKIP_WS): Update.
3856 (scan_skel): Move yylex_destroy to...
3857 (skel_scanner_free): ... here.
3858 * tests/skeletons.at (installed skeleton file name): Rename to...
3859 (installed skeleton file names): ... this.
3860
3861 2007-01-27 Joel E. Denny <jdenny@ces.clemson.edu>
3862
3863 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
3864 node names: say "Table of Symbols" not "Bison Symbols", and say "Decl
3865 Summary" not "Directives".
3866 * doc/bison.texinfo (Decl Summary, Calc++ Parser): Cross-reference the
3867 %code entry in "Decl Summary" rather than the one in "Table of Symbols"
3868 since the former is now the more complete one.
3869 (Prologue Alternatives): Likewise and do the same for %defines.
3870 (Table of Symbols): Add summary of %code, add summary of %define, and
3871 move full %code documentation to...
3872 (Decl Summary): ... here for consistency with other entries in these
3873 sections.
3874 Move %define entry in order to keep this list alphabetized.
3875 Reword %define entry a little to put less emphasis on the skeleton
3876 concept, which most users shouldn't have to think about.
3877
3878 2007-01-26 Paul Eggert <eggert@cs.ucla.edu>
3879
3880 Adjust to recent gnulib changes.
3881 * lib/.cvsignore: Remove stpcpy.h, strndup.h, strnlen.h.
3882 Add string.h, string_.h, unistd_.h, wchar_.h.
3883 * m4/.cvsignore: Add gnulib-common.m4, string_h.m4, wchar.m4.
3884 * src/system.h: Don't include <stpcpy.h>; this is now done by
3885 <string.h>.
3886
3887 2007-01-23 Paolo Bonzini <bonzini@gnu.org>
3888
3889 Simplify implementation of unqualified %code, implement macros for
3890 uniform treatment of boolean %define flags. Document %define.
3891 * data/bison.m4 (b4_percent_define_ifdef, b4_percent_define_flag_if,
3892 b4_percent_code_ifdef): New.
3893 (b4_percent_code_get): Map unqualified %code to b4_percent_code().
3894 * data/c++.m4: Define default value for global_tokens_and_yystype.
3895 * data/glr.cc: Likewise.
3896 * data/location.cc: Use b4_percent_define_flag_if.
3897
3898 * doc/bison.texinfo (Decl Summary): Document %define.
3899
3900 * src/parse-gram.y (Unqualified %code): Change muscle name to
3901 b4_percent_code().
3902 (content.opt): Default to empty.
3903
3904 2007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
3905
3906 Implement support for relative and absolute skeleton file names.
3907 Discussed starting at
3908 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00071.html>.
3909 * doc/bison.texinfo (Decl Summary): Document in %skeleton entry.
3910 (Bison Options): Document in --skeleton entry.
3911 * src/output.c (output_skeleton): Use strncpy rather than strcpy since
3912 full_skeleton can't necessarily hold all of pkgdatadir.
3913 If the specified skeleton file name contains a `/', don't prepend
3914 pkgdatadir.
3915 * src/parse-gram.y (prologue_declaration): If the specified skeleton
3916 file name contains a `/', prepend the grammar file directory.
3917 * tests/Makefile.am (TESTSUITE_AT): Add skeletons.at.
3918 * skeletons.at: New file.
3919 (relative skeleton file names): New test case.
3920 (installed skeleton file names): New test case.
3921 * tests/testsuite.at: Include skeletons.at.
3922
3923 * bootstrap: Update copyright to 2007.
3924
3925 2007-01-17 Paolo Bonzini <bonzini@gnu.org>
3926
3927 * bootstrap: Remove occurrences of .#bootmp from the files.
3928
3929 2007-01-17 Akim Demaille <akim@epita.fr>
3930
3931 * doc/bison.texinfo (Calc++ Parser): Don't try to alias
3932 nonterminals.
3933 Use per-type %printer.
3934
3935 2007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
3936
3937 * NEWS, data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4,
3938 data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
3939 djgpp/config.site, src/files.c, src/files.h, src/main.c,
3940 src/muscle_tab.c, src/muscle_tab.h, src/parse-gram.y, src/reader.h,
3941 src/scan-skel.h, src/scan-skel.l, tests/actions.at, tests/calc.at,
3942 tests/glr-regression.at, tests/input.at, tests/local.at,
3943 tests/output.at, tests/torture.at: Update copyright to 2007.
3944
3945 2007-01-16 Akim Demaille <akim@epita.fr>
3946
3947 * doc/bison.texinfo (Calc++ Parsing Driver): Let "parse" return an
3948 error code.
3949 (Calc++ Scanner): Exit with failure if we can't open the input
3950 file.
3951 Accept "-" standing for stdin.
3952 (Calc++ Top Level): Print the result only if the parsing was
3953 successful.
3954
3955 2007-01-16 Akim Demaille <akim@epita.fr>
3956
3957 * data/lalr1.cc (yy_reduce_print_): Add a missing end-of-line.
3958
3959 2007-01-15 Paolo Bonzini <bonzini@gnu.org>
3960 and Joel E. Denny <jdenny@ces.clemson.edu>
3961
3962 Clean up %define and %code implementation in M4 some. Most
3963 importantly, rename all related macros to be in the b4_percent_define
3964 and b4_percent_code namespaces. Also, complete support for `.' in
3965 %define variable names and %code qualifiers.
3966 * data/bison.m4 (b4_check_user_names): Check for special
3967 "SKELETON-NAMESPACE(name)" macros instead of using two nested
3968 m4_foreach loops.
3969 (b4_get_percent_define, b4_get_percent_code): Rename to...
3970 (b4_percent_define_get, b4_percent_code_get): ... these.
3971 Extend documentation with examples.
3972 For SKELETON-NAMESPACE (as documented for b4_check_user_names), use
3973 b4_percent_define_skeleton_variables and
3974 b4_percent_code_skeleton_qualifiers.
3975 Expect any value for the %define variable `foo' to be stored in the
3976 macro named `b4_percent_define(foo)'; expect any %code blocks for the
3977 qualifier `foo' to be stored in a macro named `b4_percent_code(foo)';
3978 expect any unqualified %code blocks to be stored in a macro named
3979 `b4_percent_code_unqualified'.
3980 Use m4_indir so that %define variable names and %code qualifiers can
3981 contain `.', which is allowed by the grammar parser.
3982 (b4_percent_define_default): New macro to set a default value for a
3983 %define variable.
3984 (m4_wrap): Update wrapped code, and fix some underquoting.
3985 (b4_check_user_names_wrap): Update and define outside the m4_wrap.
3986 Expect grammar uses of %define variables and %code qualifiers to be
3987 defined in b4_percent_define_user_variables and
3988 b4_percent_code_user_qualifiers.
3989 * data/c++.m4: Use b4_percent_define_default rather than
3990 m4_define_default. Fix some underquoting. Skeleton usage of %define
3991 variable define_location_comparison now implies skeleton usage of
3992 %define variable filename_type.
3993 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
3994 data/push.c, data/yacc.c: Update macro names.
3995 * src/parse-gram.y (prologue_declaration, grammar_declaration): Update
3996 muscle names.
3997
3998 2007-01-14 Juan Manuel Guerrero <juan.guerrero@gmx.de>
3999
4000 DJGPP specific issues.
4001
4002 * djgpp/config.site: Set ac_cv_path_mkdir to a sane DJGPP specific
4003 default. Set gl_cv_absolute_wctype_h to a sane DJGPP specific default.
4004
4005 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
4006
4007 * tests/glr-regression.at: Use AT_PARSER_CHECK rather than AT_CHECK to
4008 run parsers in all tests so that Valgrind is invoked during
4009 maintainer-check-valgrind.
4010 (Duplicate representation of merged trees): Free all semantic values.
4011 (Duplicated user destructor for lookahead): Likewise.
4012
4013 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
4014
4015 * tests/local.at (AT_PARSER_CHECK): Add a PRE argument to specify a
4016 command-line prefix.
4017 * tests/torture.at (Exploding the Stack Size with Alloca): Stderr is
4018 ignored, so use that PRE to set --log-fd=1 in VALGRIND_OPTS so we don't
4019 miss Valgrind messages.
4020 (Exploding the Stack Size with Malloc): Likewise.
4021
4022 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
4023
4024 Ignore YYSTACK_USE_ALLOCA for push parsers since the stacks can't be
4025 locals. Reported by Juan Manuel Guerrero at
4026 <http://lists.gnu.org/archive/html/bug-bison/2007-01/msg00000.html>.
4027 * data/push.c: Enclose the #ifdef YYSTACK_USE_ALLOCA in b4_push_if.
4028 Fix some indentation also.
4029 * tests/torture.at (Exploding the Stack Size with Alloca): Add comment
4030 explaining this issue.
4031
4032 2007-01-09 Paolo Bonzini <bonzini@gnu.org>
4033 and Joel E. Denny <jdenny@ces.clemson.edu>
4034
4035 Simplify union and prologue handling, and escape union and lex/parse
4036 params with digraphs.
4037 * data/bison.m4 (b4_pre_prologue, b4_post_prologue): Set their default
4038 values to the empty string since these are no longer guaranteed
4039 initialized by the front-end.
4040 * data/glr.c, data/glr.cc, data/lalr1.cc, data/push.c, data/yacc.c: Add
4041 braces around b4_user_stype since this is no longer done by the
4042 front-end.
4043 * src/files.c, src/files.h (pre_prologue_obstack,
4044 post_prologue_obstack): Remove.
4045 * src/muscle_tab.c (muscle_pair_list_grow): Don't duplicate header
4046 comments here. Use MUSCLE_OBSTACK_SGROW so that values are escaped
4047 with digraphs. This fixes lex params and parse params.
4048 * src/muscle_tab.h (muscle_pair_list_grow): Update comments.
4049 * src/output.c (prepare): Remove muscle insertion of the prologues.
4050 (output): Remove freeing of pre_prologue_obstack and
4051 post_prologue_obstack.
4052 * src/parse-gram.y (prologue_declaration): Use muscle_code_grow rather
4053 than prologue_augment for prologue parsing so you don't need prologue
4054 obstacks.
4055 (grammar_declaration): For %union RHS, use `braceless' instead of
4056 "{...}" so that braces are already stripped and code is escaped with
4057 digraphs.
4058 * src/reader.c (prologue_augment): Remove.
4059 (reader): Remove initialization of pre_prologue_obstack and
4060 post_prologue_obstack.
4061 * src/reader.h (prologue_augment): Remove.
4062
4063 * data/c.m4: Remove stray parenthesis.
4064
4065 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
4066
4067 Remove quotes from variables names in %define directives and from
4068 qualifiers in %code directives, and restrict the characters that are
4069 allowed in them to M4-friendly ones. For %define, continue to support
4070 the quoted form as a deprecated feature. Discussed starting at
4071 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00023.html>.
4072 * NEWS (2.3a+): Add entry for the change to %define. Update entry for
4073 %code.
4074 * doc/bison.texinfo (Prologue Alternatives): Update.
4075 (Decl Summary): In %defines entry, update mention of `%code requires'
4076 and `%code provides'.
4077 (C++ Location Values): Update %define uses.
4078 (Calc++ Parser Interface): Likewise.
4079 (Calc++ Parser): Likewise, and update `%code requires' uses.
4080 (Table of Symbols): Update %code documentation.
4081 * src/parse-gram.y (prologue_declaration): For %define variables, use
4082 `variable' instead of `STRING'.
4083 (grammar_declaration): For %code qualifiers, use `ID' instead of
4084 `STRING'.
4085 (variable): New nonterminal that takes an `ID' or a `STRING'.
4086 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update %code
4087 and %define uses.
4088 * tests/calc.at (_AT_DATA_CALC_Y): Update %define use.
4089 * tests/input.at (Reject unused %code qualifiers): Update %code uses.
4090 (%define errors): Update %define uses.
4091
4092 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
4093
4094 * src/parse-gram.y (prologue_declaration): Use MUSCLE_INSERT_STRING
4095 instead of muscle_insert for %define values so that M4-special
4096 characters are replaced with digraphs.
4097 * tests/input.at (%define errors): Extend to check weird values.
4098
4099 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
4100
4101 Instead of having skeletons declare all valid %define variables and
4102 %code qualifiers, provide macros that retrieve the associated values
4103 and build these lists automatically. Thus Bison will now warn when a
4104 variable or qualifier is not used by the skeleton in the current
4105 invocation regardless of whether it might sometimes be used by that
4106 skeleton in other invocations. Also, move all %define value macros to
4107 the b4_percent_define_ namespace, and remove the %define "NAME" {CODE}
4108 form, which is replaced by %code.
4109 * data/bison.m4 (b4_check_for_unrecognized_names): Rename to...
4110 (b4_check_user_names): ... this, and change the series of valid name
4111 arguments to a single list argument for names used in the skeleton
4112 similar to the existing list argument for names used in the grammar.
4113 Warn instead of complaining.
4114 (b4_get_percent_define, b4_get_percent_code): New to retrieve %define
4115 values and %code code, to format %code code properly, and to build
4116 lists of all %define variables and %code qualifiers used in the
4117 skeleton: b4_skeleton_percent_define_variables and
4118 b4_skeleton_percent_code_qualifiers.
4119 (b4_check_percent_define_variables, b4_check_percent_code_qualifiers):
4120 Remove, and...
4121 (m4_wrap): ... m4_wrap b4_check_user_names invocations instead so that
4122 the skeleton names lists can finish building first. In place of
4123 b4_used_percent_define_variables and b4_used_percent_code_qualifiers,
4124 expect the lists b4_user_percent_define_variables and
4125 b4_user_percent_code_qualifiers.
4126 * data/c++.m4: Where setting default values for b4_parser_class_name,
4127 b4_location_type, b4_filename_type, b4_namespace, and
4128 b4_define_location_comparison, update their names to the
4129 b4_percent_define_ namespace.
4130 * data/glr.c: Don't use b4_check_percent_define_variables and
4131 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
4132 * data/glr.cc, data/lalr1.cc: Likewise, and use b4_get_percent_define.
4133 (b4_parser_class_name, b4_namespace): Define these using
4134 b4_get_percent_define for parser_class_name and namespace.
4135 * data/location.cc: Use b4_get_percent_define.
4136 * data/push.c: Don't use b4_check_percent_define_variables and
4137 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
4138 * data/yacc.c: Likewise, and don't call m4_exit in
4139 b4_use_push_for_pull_if or m4_wrap code will never execute.
4140 * src/muscle_tab.c, src/muscle_tab.h (muscle_grow_used_name_list):
4141 Rename to...
4142 (muscle_grow_user_name_list): ... this for consistency with the
4143 terminology used in bison.m4.
4144 * src/parse-gram.y (prologue_declaration): Prepend "percent_define_" to
4145 %define variable names, and rename muscle used_percent_define_variables
4146 to user_percent_define_variables.
4147 (grammar_declaration): Rename muscle used_percent_code_qualifiers to
4148 user_percent_code_qualifiers.
4149 (content): Remove.
4150 (content.opt): Replace content RHS with STRING RHS so %define "NAME"
4151 {CODE} form is no longer accepted.
4152 * tests/input.at (Reject bad %code qualifiers): Rename to...
4153 (Reject unused %code qualifiers): ... this, and update test output.
4154 (%define error): Update test output.
4155
4156 2007-01-07 Joel E. Denny <jdenny@ces.clemson.edu>
4157
4158 Check for unrecognized %define variables similar to checking for
4159 unrecognized %code qualifiers. Check for redefined %define variables.
4160 * data/bison.m4 (b4_check_for_unrecognized_names): New macro that
4161 generalizes...
4162 (b4_check_percent_code_qualifiers): ... this, which now wraps it.
4163 (b4_check_percent_define_variables): New, also wraps it.
4164 * data/glr.c: Unless glr.cc is wrapping glr.c, declare no valid %define
4165 variables using b4_check_percent_define_variables.
4166 * data/glr.cc, data/lalr1.cc: Declare the valid %define variables as
4167 all those exercised in the test suite and all those listed in the
4168 `Default values' section of c++.m4. Are there others?
4169 * data/push.c, data/yacc.c: Declare no valid %define variables.
4170 * src/muscle_tab.c, src/muscle_tab.h (muscle_find_const): New function,
4171 similar to muscle_find, but it works even when the muscle stores a
4172 const value.
4173 (muscle_grow_used_name_list): New function for constructing the used
4174 name list muscles that b4_check_for_unrecognized_names requires.
4175 * src/parse-gram.y (prologue_declaration): Warn if a variable is
4176 %define'd more than once. Define the b4_used_percent_define_variables
4177 muscle with muscle_grow_used_name_list.
4178 (grammar_declaration): Abbreviate %code code with
4179 muscle_grow_used_name_list.
4180 * tests/input.at (%define errors): New.
4181
4182 2007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
4183
4184 Provide warn_at, complain_at, and fatal_at function callbacks to the
4185 skeletons, and use this for %code qualifier complaints.
4186 * data/bison.m4 (b4_error_at): New, invoked by...
4187 (b4_warn_at, b4_complain_at, b4_fatal_at): ... these new macros to wrap
4188 the skeleton scanner's new @warn_at(...@), @complain_at(...@), and
4189 @fatal_at(...@) directives.
4190 (b4_check_percent_code_qualifiers): Rewrite to expect locations for
4191 qualifiers in b4_used_percent_code_qualifiers and to use
4192 b4_complain_at.
4193 * src/location.c, src/location.h (boundary_set_from_string): New global
4194 function.
4195 * src/muscle_tab.c, src/muscle_tab.h (muscle_boundary_grow): New global
4196 function.
4197 * src/parse-gram.y (grammar_declaration): Add locations for qualifiers
4198 to b4_used_percent_code_qualifiers.
4199 * src/scan-skel.l (fail_for_at_directive_too_few_args): New static
4200 function.
4201 (AT_DIRECTIVE_ARGC_MAX): Increase for boundary arguments.
4202 (lineno): Rename to...
4203 (out_lineno): ... this so I don't misunderstand it again.
4204 (SC_AT_DIRECTIVE_SKIP_WS): Don't increment out_lineno for newlines
4205 here; these newlines are in the input but not the output file.
4206 (SC_AT_DIRECTIVE_ARG): Likewise. Extract directive execution to...
4207 (at_directive_perform): ... this new static function, and add handling
4208 of new @warn_at(...@), @complain_at(...@), and @fatal_at(...@)
4209 directives.
4210 * tests/input.at (Reject bad %code qualifiers): Update test output with
4211 locations and extend.
4212
4213 * tests/output.at (Output file name: [, Output file name: ]): Remove
4214 bogus comment about these tests failing.
4215
4216 2007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
4217
4218 Clean up b4_check_percent_code_qualifiers a little.
4219 * data/bison.m4 (b4_check_percent_code_qualifiers): Expect qualifiers
4220 in b4_used_percent_code_qualifiers to be double-M4-quoted. Rewrite
4221 documentation and add examples.
4222 * src/parse-gram.y (grammar_declaration): Double-M4-quote those
4223 qualifiers here.
4224
4225 2007-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
4226
4227 Don't use m4_divert since it makes m4_divert_push and m4_divert_pop
4228 unreliable -- especially when they're hidden inside another macro.
4229 * data/bison.m4, data/c++-skel.m4, data/c++.m4, data/c-skel.m4,
4230 data/c.m4: Remove m4_divert(-1).
4231 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
4232 data/push.c, data/yacc.c: Likewise, and replace m4_divert(0) with
4233 m4_divert_push(0) and m4_divert_pop(0).
4234 * src/output.c (output_skeleton): Don't add an m4_divert_push(0) and
4235 an m4_wrap([m4_divert_pop(0)]) to the M4. Diversion -1, which is
4236 pushed and popped by m4sugar, should be first on the stack.
4237
4238 Provide warn, complain, and fatal function callbacks to the skeletons.
4239 This provides more flexibility than m4_fatal, improves the error
4240 message format, and captures messages for translation. Discussed
4241 starting at
4242 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00063.html>.
4243 * data/bison.m4 (b4_error): New, invoked by...
4244 (b4_warn, b4_complain, b4_fatal): ... these new macros to wrap the
4245 skeleton scanner's new @warn(...@), @complain(...@), and @fatal(...@)
4246 directives. Because these M4 macros might be called when the current
4247 diversion is -1 or 0, m4_divert_push and m4_divert_pop is used; thus
4248 the previous removal of uses of m4_divert, which caused trouble.
4249 (b4_check_percent_code_qualifiers): Use b4_complain instead of
4250 m4_fatal to report unrecognized %code qualifiers.
4251 * data/c++-skel.m4: Use b4_complain instead of m4_fatal to report C++
4252 push parser requests.
4253 * data/glr.c: Use b4_complain instead of m4_fatal to report
4254 non-deterministic push parser requests.
4255 Update @output usage to @output(...@) form.
4256 * data/glr.cc, data/lalr1.cc: Use b4_fatal instead of m4_fatal to
4257 report missing %defines. Update @output usage to @output(...@) form.
4258 * data/location.cc, data/push.c, data/yacc.c: Update @output usage to
4259 @output(...@) form.
4260 * src/main.c (main): Invoke skel_scanner_free.
4261 * src/scan-skel.h (skel_scanner_free): Prototype new function.
4262 * src/scan-skel.l (FLEX_NO_OBSTACK): Don't define; we now need the
4263 obstack_for_string from flex-scanner.h.
4264 (YY_DECL): Use to declare skel_lex static.
4265 (decode_at_digraphs): Remove; now handled in the new
4266 SC_AT_DIRECTIVE_ARG start condition.
4267 (fail_for_at_directive_too_many_args, fail_for_invalid_at): New static
4268 functions.
4269 (at_directive_name, AT_DIRECTIVE_ARGC_MAX, at_directive_argc,
4270 at_directive_argv): New static globals.
4271 (INITIAL): Use fail_for_invalid_at.
4272 Don't parse `@output file_name\n' or `@basename(...@)'. Instead,
4273 recognize the start of a generalized `@directive(...@)' form and
4274 start...
4275 (SC_AT_DIRECTIVE_ARG): ... this new start condition to parse the
4276 directive args (using the new obstack_for_string), to decode the
4277 contained @ diagraphs, and to perform the directive. It recognizes
4278 @basename(...@), @warn(...@), @complain(...@), @fatal(...@), and
4279 @output(...@).
4280 (SC_AT_DIRECTIVE_SKIP_WS): New start condition started by
4281 SC_AT_DIRECTIVE_ARG to skip whitespace after the argument delimiter,
4282 `@,'.
4283 (scan_skel): Initialize obstack_for_string on the first call.
4284 (skel_scanner_free): New function to free obstack_for_string.
4285 * tests/input.at (Reject bad %code qualifiers): Update test output.
4286
4287 2007-01-04 Joel E. Denny <jdenny@ces.clemson.edu>
4288
4289 Consolidate the 4 prologue alternative directives (%code, %requires,
4290 %provides, and %code-top) into a single %code directive with an
4291 optional qualifier field. Discussed at
4292 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00012.html>.
4293 * NEWS (2.3a+): Rewrite the existing entry for the prologue
4294 alternatives.
4295 * doc/bison.texinfo (Prologue Alternatives): Update.
4296 (Decl Summary): Update to %code "requires" and %code "provides".
4297 (Calc++ Parser): Update to %code "requires".
4298 (Table of Symbols): Remove entries for %requires, %provides, and
4299 %code-top. Rewrite %code entry, and add a %code "QUALIFIER" entry.
4300 * data/bison.m4 (b4_user_provides, b4_user_requires): Remove as these
4301 are replaced by b4_percent_code_provides and b4_percent_code_requires,
4302 which are skeleton-specific.
4303 (b4_check_percent_code_qualifiers): New. A skeleton can use this to
4304 declare what %code qualifiers it supports and to complain if any other
4305 qualifiers were used in the grammar.
4306 * data/glr.cc: Update to use b4_user_code([b4_percent_code_requires])
4307 and b4_user_code([b4_percent_code_provides]) in place of
4308 b4_user_requires and b4_user_provides.
4309 * data/glr.c, data/lalr1.cc, data/push.c, data/yacc.c: Likewise.
4310 Add b4_user_code([b4_percent_code_top]) and
4311 b4_user_code([b4_percent_code]).
4312 Invoke b4_check_percent_code_qualifiers.
4313 * src/parse-gram.y (PERCENT_CODE_TOP, PERCENT_PROVIDES,
4314 PERCENT_REQUIRES): Remove.
4315 (grammar_declaration): Remove RHS's for %code-top, %provides, and
4316 %requires. Rewrite the %code RHS as the unqualified form defining the
4317 muscle b4_percent_code. Add another RHS for the qualified %code form,
4318 which defines muscles of the form b4_percent_code_QUALIFIER and the
4319 b4_used_percent_code_qualifiers muscle.
4320 * src/scan-gram.l (PERCENT_CODE_TOP, PERCENT_PROVIDES,
4321 PERCENT_REQUIRES): Remove.
4322 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update to use
4323 %code "requires" and %code "provides".
4324 * tests/input.at (Reject bad %code qualifiers): New.
4325
4326 2007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
4327
4328 Use the new code_props interface for destructors and printers.
4329 * src/symtab.h (symbol, semantic_type): Remove destructor_location and
4330 printer_location members, and change the type of the destructor and
4331 printer members to code_props.
4332 (symbol_destructor_set, symbol_destructor_get, symbol_printer_set,
4333 symbol_printer_get, semantic_type_destructor_set,
4334 semantic_type_printer_set, default_tagged_destructor_set,
4335 default_tagless_destructor_set, default_tagged_printer_set,
4336 default_tagless_printer_set): Use code_props in arguments and return
4337 types in place of char const * and location.
4338 (symbol_destructor_location_get, symbol_printer_location_get): Remove
4339 since the locations are now contained in the return of
4340 symbol_destructor_get and symbol_printer_get.
4341 * src/output.c (symbol_destructors_output, symbol_printers_output):
4342 Replace with...
4343 (symbol_code_props_output): ... this to eliminate duplicate code.
4344 (output_skeleton): Update to use symbol_code_props_output.
4345 * src/reader.c (symbol_should_be_used): Update use of
4346 symbol_destructor_get.
4347 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
4348 Update uses of the various _destructor_set and _printer_set functions.
4349 * src/symtab.c: (default_tagged_destructor_location,
4350 default_tagless_destructor_location, default_tagged_printer_location,
4351 default_tagless_printer_location): Remove since we...
4352 (default_tagged_destructor, default_tagless_destructor,
4353 default_tagged_printer, default_tagless_printer): ... change the type
4354 of these to code_props.
4355 (symbol_new, semantic_type_new, symbol_destructor_set,
4356 semantic_type_destructor_set, symbol_destructor_get,
4357 symbol_printer_set, semantic_type_printer_set, symbol_printer_get,
4358 symbol_check_alias_consistency, default_tagged_destructor_set,
4359 default_tagless_destructor_set, default_tagged_printer_set,
4360 default_tagless_printer_set): Update.
4361 (symbol_destructor_location_get, symbol_printer_location_get): Remove.
4362 (SYMBOL_CODE_PRINT): New similar to SYMBOL_ATTR_PRINT but for
4363 code_props members.
4364 (symbol_print): Use SYMBOL_CODE_PRINT.
4365
4366 2007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
4367
4368 Use the new code_props interface for rule actions.
4369 * src/symlist.h (symbol_list): Replace action, action_location, and
4370 used members with a code_props action_props member.
4371 * src/reader.c (symbol_should_be_used, grammar_rule_check,
4372 grammar_midrule_action, grammar_current_rule_merge_set,
4373 grammar_current_rule_symbol_append, packgram): Update.
4374 * src/scan-code.h (translate_rule_action): Remove, no longer used.
4375 * src/scan-code.l (handle_action_dollar): Update.
4376 (translate_rule_action): Remove, no longer used.
4377 * src/symlist.c (symbol_list_sym_new, symbol_list_syms_print): Update.
4378
4379 2007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
4380
4381 Use the new code_props interface in parse-gram.y.
4382 * src/parse-gram.y (prologue_declaration, braceless, epilogue.opt):
4383 Update all uses of translate_* functions to use the new code_props
4384 interface and to use gram_scanner_last_string_free and
4385 code_scanner_last_string_free where possible.
4386 (grammar_declaration): symbol_list_destructor_set and
4387 symbol_list_printer_set now perform the translation, so don't do it
4388 here. Use gram_scanner_last_string_free where possible.
4389 * src/scan-code.h, src/scan-code.l (translate_symbol_action,
4390 translate_code): Remove, no longer used.
4391 * src/symlist.h, src/symlist.c (symbol_list_destructor_set,
4392 symbol_list_printer_set): Perform code translation here rather than
4393 depending on the caller to do so.
4394
4395 * src/symlist.h (struct symbol_list): Correct some documentation typos.
4396 * src/scan-gram.h (gram_last_string): Remove declaration.
4397 * src/scan-gram.l (last_string): Declare it static.
4398
4399 2007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
4400
4401 Encapsulate code properties and related functionality for the various
4402 destructors, printers, and actions into a code_props structure and
4403 interface. This patch merely implements code_props in scan-code.h and
4404 scan-code.l. Future patches will rewrite other modules to use it.
4405 Discussed starting at
4406 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00020.html>.
4407 * src/location.h (EMPTY_LOCATION_INIT): Define so that it's easier to
4408 consistently initialize const structs that have an empty location
4409 field.
4410 * src/location.c (empty_location): Initialize with EMPTY_LOCATION_INIT
4411 to ensure consistency.
4412 * src/scan-code.h (code_props): New structure.
4413 (code_props_none_init, CODE_PROPS_NONE_INIT, code_props_none): New
4414 function, macro, and const global variable for initializing a
4415 code_props with no code.
4416 (code_props_plain_init, code_props_symbol_action_init,
4417 code_props_rule_action_init, code_props_translate_code): The rest of
4418 the new code_props functional interface. Among other things, the init
4419 functions set the code_props kind field so that
4420 code_props_translate_code will know whether to behave like
4421 translate_symbol_action, translate_rule_action, or translate_code.
4422 These old translate functions must remain until all other modules are
4423 updated to use the new code_props interface.
4424 (code_scanner_last_string_free): New function similar to
4425 gram_scanner_last_string_free.
4426 (code_scanner_free): Add documentation.
4427 * src/scan-code.l: Implement the new interface.
4428 (code_lex): Make it static, add a code_props* argument, and remove the
4429 rule argument.
4430 (last_string): New static global similar to the one in scan-gram.l.
4431 (SC_RULE_ACTION): Update to use the code_props* argument to code_lex
4432 instead of rule.
4433 (SC_SYMBOL_ACTION): For $$, set the is_value_used member of the
4434 code_props since Bison may one day use this information for destructors
4435 and printers.
4436 (<*><<EOF>>): Use STRING_FINISH so that last_string is set.
4437 (handle_action_dollar): Use symbol_list_n_get and set used flag
4438 directly since symbol_list_n_used_set is removed.
4439 (translate_action): Add a code_props* argument and remove the rule,
4440 action, and location arguments. Pass the code_props* on to code_lex.
4441 (translate_rule_action, translate_symbol_action, translate_code):
4442 Rewrite as wrappers around the new code_props interface.
4443 * src/symlist.h, src/symlist.c (symbol_list_n_used_set): Remove since
4444 it would eventually need to break the encapsulation of code_props.
4445
4446 2007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
4447
4448 * etc/.cvsignore: New.
4449
4450 2007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
4451
4452 Add maintainer-push-check to run maintainer-check using push parsing in
4453 place of pull parsing where available.
4454 * Makefile.am (maintainer-push-check): New.
4455 * data/bison.m4 (b4_use_push_for_pull_if): New.
4456 * data/push.c: Redefine b4_push_if and b4_use_push_for_pull_if
4457 appropriately based on their existing values.
4458 (yypush_parse): Don't print push-parser-specific diagnostics if push
4459 parsing is being used in place of pull parsing.
4460 * data/yacc.c: If push parsing should replace pull parsing, redirect to
4461 push.c.
4462 * src/output.c (prepare): Check BISON_USE_PUSH_FOR_PULL environment
4463 variable, and insert b4_use_push_for_pull_flag into muscles.
4464 * tests/Makefile.am (maintainer-push-check): New.
4465
4466 2006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
4467
4468 * data/push.c (yypush_parse): Set yynew = 1 at the end of a parse
4469 (whether successful or failed) so that yypush_parse can be invoked
4470 again to start a new parse using the same yypstate.
4471 * tests/torture.at (AT_DATA_STACK_TORTURE): For push mode, extend to
4472 check multiple yypull_parse invocations on the same yypstate. For pull
4473 mode, extend to check multiple yyparse invocations.
4474 (Exploding the Stack Size with Alloca): Extend to try with
4475 %push-pull-parser.
4476 (Exploding the Stack Size with Malloc): Likewise.
4477
4478 * tests/calc.at (Simple LALR Calculator): Don't specify
4479 %skeleton "push.c" since %push-pull-parser implies that now.
4480 * tests/headers.at (export YYLTYPE): Don't check for the push
4481 declarations. Otherwise, this test case can't be used to see if push
4482 mode can truly emulate pull mode.
4483 * tests/input.at (Torturing the Scanner): Likewise.
4484 * tests/local.at (AT_YACC_OR_PUSH_IF, AT_PUSH_IF): Remove.
4485 (AT_YYERROR_SEES_LOC_IF): Rather than AT_YACC_OR_PUSH_IF, use
4486 AT_YACC_IF, which now includes the case of push mode since %skeleton
4487 need not be used for push mode. This will be more intuitive once
4488 push.c is renamed to yacc.c.
4489
4490 2006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
4491
4492 For push mode, convert yyparse from a macro to a function, invoke yylex
4493 instead of passing a yylexp argument to yypull_parse, and don't
4494 generate yypull_parse or yyparse unless %push-pull-parser is declared.
4495 Discussed starting at
4496 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00163.html>.
4497 * data/bison.m4 (b4_pull_if): New.
4498 * data/c.m4 (b4_identification): Define YYPULL similar to YYPUSH.
4499 * data/push.c: Improve M4 quoting a little.
4500 (b4_generate_macro_args, b4_parenthesize): Remove.
4501 (yyparse): If there's a b4_prefix, #define this to b4_prefix[parse]
4502 any time a pull parser is requested.
4503 Don't #define this as a wrapper around yypull_parse. Instead, when
4504 both push and pull are requested, make it a function that does that
4505 same thing.
4506 (yypull_parse): If there's a b4_prefix, #define this to
4507 b4_prefix[pull_parse] when both push and pull are requested.
4508 Don't define this as a function unless both push and pull are
4509 requested.
4510 Remove the yylexp argument and hard-code yylex invocation instead.
4511 * etc/bench.pl.in (bench_grammar): Use %push-pull-parser instead of
4512 %push-parser.
4513 * src/getargs.c (pull_parser): New global initialized to true.
4514 * getargs.h (pull_parser): extern it.
4515 * src/output.c (prepare): Insert pull_flag muscle.
4516 * src/parse-gram.y (PERCENT_PUSH_PULL_PARSER): New token.
4517 (prologue_declaration): Set both push_parser and pull_parser = true for
4518 %push-pull-parser. Set push_parser = true and pull_parser = false for
4519 %push-parser.
4520 * src/scan-gram.l: Don't accept %push_parser as an alternative to
4521 %push-parser since there's no backward-compatibility concern here.
4522 Scan %push-pull-parser.
4523 * tests/calc.at (Simple LALR(1) Calculator): Use %push-pull-parser
4524 instead of %push-parser.
4525 * tests/headers.at (export YYLTYPE): Make yylex static, and don't
4526 prototype it in the module that calls yyparse.
4527 * tests/input.at (Torturing the Scanner): Likewise.
4528 * tests/local.at (AT_PUSH_IF): Check for %push-pull-parser as well.
4529
4530 2006-12-26 Joel E. Denny <jdenny@ces.clemson.edu>
4531
4532 Update etc/bench.pl. Optimize push mode a little (the yyn change
4533 deserves most of the credit).
4534 * Makefile.am (SUBDIRS): Add etc subdirectory.
4535 * configure.ac (AC_CONFIG_FILES): Add etc/bench.pl and etc/Makefile.
4536 * data/push.c (b4_declare_parser_state_variables): Move yyn, yyresult,
4537 yytoken, yyval, and yyloc declarations to...
4538 (yyparse or yypush_parse): ... here to improve performance. For
4539 yypush_parse invocations after the first, be sure to assign yyn its old
4540 value again.
4541 (yypstate_new): Don't bother initializing the yyresult field since the
4542 initial value isn't used.
4543 (yyn, yyresult, yytoken, yyval, yyloc): For each NAME in this list,
4544 remove the #define that, in push mode, set it to yyps->NAME.
4545 * etc/Makefile.am: New.
4546 * etc/bench.pl: Remove and build it instead from...
4547 * etc/bench.pl.in: ... this new file. Use @abs_top_builddir@ to invoke
4548 "tests/bison" from the build directory by default rather than just
4549 invoking "bison" from $PATH.
4550 (calc_grammar): Update push parser code: don't declare yylval globally,
4551 don't define yyparse_wrapper, and don't #define yyparse.
4552 (bench_grammar): Update to check all working combinations of yacc.c,
4553 push.c, impure, pure, pull, and push.
4554
4555 2006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
4556
4557 For push mode, add pull wrappers around yypush_parse.
4558 * data/push.c: (b4_generate_macro_args, b4_parenthesize): New macros.
4559 (yypull_parse): New function wrapping yypush_parse.
4560 (yyparse): New #define wrapping yypull_parse.
4561 * tests/calc.at (_AT_DATA_CALC_Y): Call yyparse even when %push-parser
4562 is declared.
4563 * tests/headers.at (export YYLTYPE): Make yylex global. For push mode,
4564 prototype yylex in the module that calls yyparse, and don't prototype
4565 yyparse there. Otherwise, the yyparse expansion won't compile.
4566 * tests/input.at (Torturing the Scanner): Likewise.
4567
4568 2006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
4569
4570 Enable push parsers to operate in impure mode. Thus, %push-parser no
4571 longer implies %pure-parser. The point of this change is to move
4572 towards being able to test the push parser code by running the entire
4573 test suite as if %push-parser had been declared.
4574 * data/push.c (yypush_parse): For impure mode, remove the
4575 yypushed_char, yypushed_val, and yypushed_loc arguments.
4576 Instead, declare these as local variables initialized to the global
4577 yychar, yylval, and yylloc.
4578 For the first yypush_parse invocation only, restore the initial values
4579 of these global variables when it's time to read a token since they
4580 have been overwritten.
4581 * src/parse-gram.y (prologue_declaration): Don't set pure_parser for
4582 %push-parser.
4583 * tests/calc.at (Simple LALR(1) Calculator): Always declare
4584 %pure-parser along with %push-parser since this test case was designed
4585 for pure push parsers.
4586 * tests/local.at (AT_PURE_OR_PUSH_IF): Remove unused.
4587 (AT_YACC_OR_PUSH_IF): New.
4588 (AT_YYERROR_SEES_LOC_IF): Fix enough that the test suite passes, but
4589 add a note that it's still wrong for some cases (as it has been for a
4590 while).
4591 (AT_PURE_LEX_IF): Use AT_PURE_IF instead of AT_PURE_OR_PUSH_IF since
4592 %push-parser no longer implies %pure-parser.
4593
4594 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
4595
4596 Remove some unnecessary differences between the pull parser code and
4597 the push parser code. This patch enables yynerrs in push mode.
4598 * data/push.c: Reformat M4 a little.
4599 (b4_yyerror_range): Remove and convert all uses to just yyerror_range.
4600 (b4_declare_scanner_communication_variables): Don't omit yynerrs just
4601 because push mode is on. Instead, if pure mode is on, move yynerrs
4602 to...
4603 (b4_declare_parser_state_variables): ... here.
4604 (yynerrs, yyerror_range): For push mode, #define each NAME in this list
4605 to yyps->NAME so it can be used in yypush_parse.
4606 (yypush_parse): Don't omit uses of yynerrs in push mode.
4607
4608 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
4609
4610 Fix bug such that the first pushed token's value and location are
4611 sometimes overwritten (sometimes by %initial-action) before being used.
4612 * data/push.c (yypush_parse): Rename arguments yynchar, yynlval, and
4613 yynlloc to yypushed_char, yypushed_val, and yypushed_loc for clarity.
4614 For the first yypush_parse invocation, initialize yychar to YYEMPTY to
4615 more closely mimic the pull parser logic.
4616 Don't copy the pushed token to yychar, yylval, and yylloc until it's
4617 time to read a token, which is after any initialization of yylval and
4618 yylloc.
4619 (gottoken): Rename label to...
4620 (yyread_pushed_token): ... for clarity and to avoid infringing on the
4621 user namespace.
4622
4623 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
4624
4625 Rearrange initialization of the parser state variables so that the
4626 skeleton doesn't have to have a copy for pull mode and another for push
4627 mode. This patch also fixes at least a bug such that yylloc was not
4628 initialized (with b4_location_initial_line and
4629 b4_location_initial_column) upon calling yypush_parse. However, that
4630 initialization now overwrites the first token's location;
4631 %initial-action assigning @$ already did the same thing, and both bugs
4632 will be fixed in a later patch.
4633 * data/push.c (b4_yyssa): Remove and convert all uses to just yyssa.
4634 (b4_declare_parser_state_variables): Remove initialization of yytoken,
4635 yyss, yyvs, yyls, and yystacksize.
4636 (yypstate_new): Remove initialization of some yypstate fields: yystate,
4637 yyerrstatus, yytoken, yyss, yyvs, yyls, yystacksize, yyssp, yyvsp, and
4638 yylsp.
4639 (yyssa, yyvsa, yylsa): For push mode, #define each NAME in this list to
4640 yyps->NAME so it can be used in yypush_parse.
4641 (yyparse or yypush_parse): For yypush_parse, don't print the
4642 "Starting parse" diagnostic for invocations after the first.
4643 Add initialization of yytoken, yyss, yyvs, yyls, and yystacksize; for
4644 yypush_parse, only do it for the first invocation.
4645 Allow yystate, yyerrstatus, yyssp, yyvsp, yylsp, and yylloc
4646 initialization to occur in yypush_parse but only on the first
4647 invocation.
4648
4649 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
4650
4651 * data/push.c: Add CPP guards around push parser declarations in both
4652 the header and the code file.
4653 In the code file, move the push parser declarations to the same place
4654 they appear in the header file.
4655 Clean up the M4 some, especially the inconsistent underquoting in
4656 some b4_c_function_def and b4_c_function_decl uses.
4657
4658 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
4659
4660 Encapsulate the push parser state variables into an M4 macro so the
4661 push skeleton doesn't have to list them again for pull mode's yyparse.
4662 For push mode, remove yypush_parse's local equivalents of these
4663 variables to eliminate unnecessary copying between the two sets at
4664 run-time. This patch also fixes at least a bug related to multiple
4665 %initial-action invocations in push mode.
4666 * data/push.c (b4_declare_parser_variables): Rename to...
4667 (b4_declare_scanner_communication_variables): ... this for clarity and
4668 update both uses.
4669 (b4_declare_yyparse_variables): Remove and move its contents to the one
4670 spot where it was invoked.
4671 (b4_declare_parser_state_variables): New macro containing the parser
4672 state variables required by push mode.
4673 (struct yypstate): Replace all fields but yynew with
4674 b4_declare_parser_state_variables.
4675 (yystate, yyn, yyresult, yyerrstatus, yytoken, yyss, yyssp, yyvs,
4676 yyvsp, yyls, yylsp, yystacksize, yyval, yyloc): For push mode, #define
4677 each NAME in this list to yyps->NAME so it can be used in yypush_parse.
4678 (yyparse or yypush_parse): For yyparse in pull mode, replace local
4679 parser state variable declarations with
4680 b4_declare_parser_state_variables.
4681 Don't initialize parser state variables when calling yypush_parse since
4682 yypstate_new already does that.
4683 Invoke the user's initial action only upon the first yypush_parse
4684 invocation.
4685 Remove all code that copies between the local parser state variables
4686 and the yypstate.
4687
4688 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
4689
4690 * data/push.c (union yyalloc): Rename yyss, yyvs, and yyls fields to
4691 prevent a name collision in a future patch where these names will
4692 sometimes be #define'd.
4693 (YYSTACK_RELOCATE): Add an argument to select a union yyalloc field
4694 since it no longer has the same name as the existing argument.
4695 (yyparse or yypush_parse): Update all uses of YYSTACK_RELOCATE.
4696
4697 2006-12-19 Paolo Bonzini <bonzini@gnu.org>
4698 and Joel E. Denny <jdenny@ces.clemson.edu>
4699
4700 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
4701 that the argument is case-insensitive, and there's no `=' here.
4702 For the %skeleton entry, mention that %language is better.
4703 (Bison Options): Likewise for --language and --skeleton. Move the
4704 --skeleton entry so that the `Tuning the parser' section is sorted
4705 alphabetically on long options.
4706 (C++ Bison Interface): Don't use the word skeleton. Don't explain the
4707 %language directive in detail here; cross-reference the %language
4708 documentation instead.
4709 (Calc++ Parser): Use `%require "@value{VERSION}"' rather than
4710 `%require "2.3b"' so that the example is always up-to-date.
4711 (Table of Symbols): Add entries for %language and %skeleton.
4712 * examples/extexi (normalize): Instead of replacing every %require
4713 argument with the current Bison version, just substitute for
4714 `@value{VERSION}'. This guarantees that we're testing what actually
4715 appears in the documentation.
4716 * examples/calc++/Makefile.am ($(calc_extracted)): Use `$(VERSION)'
4717 rather than `@VERSION@'.
4718
4719 2006-12-18 Paul Eggert <eggert@cs.ucla.edu>
4720
4721 * NEWS: Reword the %language news a bit, and put it earlier.
4722
4723 * src/getargs.c (skeleton_arg): Last arg is now location const *.
4724 Rewrite to simplify the logic.
4725 (language_argmatch): Likewise.
4726 (program_name): We now own this var.
4727 * src/getargs.h (struct bison_language): Use char[] rather than
4728 const char *.
4729
4730 * doc/bison.texinfo (Decl Summary, Bison Options): Don't claim
4731 Java is supported.
4732 * src/complain.c (program_name): Remove decl; no longer needed.
4733 * src/main.c (program_name): Remove; now belongs to getargs.
4734
4735 2006-12-18 Paolo Bonzini <bonzini@gnu.org>
4736
4737 * NEWS: Document %language.
4738
4739 * data/Makefile.am (dist_pkgdata_DATA): Add c-skel.m4, c++-skel.m4.
4740
4741 * data/c-skel.m4, data/c++-skel.m4: New files.
4742 * data/glr.c: Complain on push parsers.
4743
4744 * doc/bison.texinfo (C++ Parser Interface): Prefer %language
4745 over %skeleton.
4746 (Decl Summary): Document %language and %skeleton.
4747 (Command line): Document -L.
4748
4749 * examples/extexi: Rewrite %require directive.
4750 * examples/calc++/Makefile.am: Pass VERSION to extexi.
4751
4752 * src/files.c (compute_exts_from_gc): Look in language structure
4753 for .y extension.
4754 (compute_file_name_parts): Check whether .tab should be added.
4755 * src/getargs.c (valid_languages, skeleton_prio, language_prio):
4756 (language, skeleton_arg, language_argmatch): New.
4757 (long_options): Add --language.
4758 (getargs): Use skeleton_arg, add -L/--language.
4759 * src/getargs.h: Include location.h.
4760 (struct bison_language, language, skeleton_arg, language_argmatch): New.
4761 * src/output.c (prepare): Pick default skeleton from struct language.
4762 Don't dispatch C skeletons here.
4763 * src/parse-gram.y (PERCENT_LANGUAGE): New.
4764 (prologue_declaration): Add "%language" rule, use skeleton_arg.
4765 * src/scan-gram.l ("%language"): New rule.
4766
4767 * tests/calc.at: Test %skeleton and %language.
4768 * tests/local.at (AT_SKEL_CC_IF): Look for %language.
4769 (AT_GLR_IF): Look for %skeleton "glr.cc".
4770 (AT_LALR1_CC_IF, AT_GLR_CC_IF): Rewrite.
4771 (AT_YACC_IF): Reject %language.
4772
4773 2006-12-18 Paul Eggert <eggert@cs.ucla.edu>
4774
4775 * src/symtab.h (struct semantic_type): Remove the tag 'semantic_type',
4776 since it wasn't used; only the typedef name 'semantic_type' is needed.
4777 Also, omit trailing white space.
4778
4779 * bootstrap: Sync from coreutils.
4780 (gnulib_extra_files): Add build-aux/announce.gen.
4781 (slurp): Adjust .gitignore files like .cvsignore files.
4782 * build-aux/announce-gen: Remove from CVS, since bootstrap
4783 now creates this.
4784
4785 2006-12-16 Joel E. Denny <jdenny@ces.clemson.edu>
4786
4787 Make %push-parser imply %pure-parser. This fixes several bugs; see
4788 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00148.html>.
4789 * src/parse-gram.y (prologue_declaration): For %push-parser, also set
4790 pure_parser = true.
4791 * data/push.c: Don't bother testing b4_push_if when deciding whether
4792 to expand b4_declare_parser_variables globally.
4793 (yypush_parse): Likewise in here.
4794
4795 * data/push.c (yypush_parse): Add b4_parse_param to arguments.
4796 (yy_reduce_print): Reformat M4 for readability.
4797
4798 2006-12-15 Bob Rossi <bob@brasko.net>
4799 and Joel Denny <jdenny@ces.clemson.edu>
4800
4801 * data/push.c (yypstate): Add typedef, and update all uses of
4802 struct yypstate to just yypstate.
4803 * tests/calc.at (_AT_DATA_CALC_Y): Update here as well.
4804
4805 2006-12-14 Bob Rossi <bob@brasko.net>
4806
4807 * data/push.c (yypush_parse): Declare prototype regardless of
4808 %locations option.
4809
4810 2006-12-14 Bob Rossi <bob@brasko.net>
4811
4812 * data/push.c (yyparse): Remove the prototype and the #define when in
4813 push-parser mode.
4814
4815 2006-12-13 Bob Rossi <bob@brasko.net>
4816
4817 * data/push.c (yypstate_init): Rename to...
4818 (yypstate_new): ... this and use b4_c_function_def.
4819 (yypstate_delete): New.
4820 (yypush_parse): Change parameters yynval and yynlloc to be const.
4821 * tests/calc.at (_AT_DATA_CALC_Y): Use new yypstate_new and
4822 yypstate_delete functions.
4823
4824 2006-12-13 Joel E. Denny <jdenny@ces.clemson.edu>
4825
4826 * configure.ac (AC_PREREQ): Require Autoconf 2.61 because of our
4827 strange test case titles. Reported by Bob Rossi.
4828
4829 2006-12-13 Paul Eggert <eggert@cs.ucla.edu>
4830
4831 * TODO: Add pointer to Sylvain Schmitz's work on static detection
4832 of potential ambiguities in GLR grammers.
4833
4834 2006-12-12 Joel E. Denny <jdenny@ces.clemson.edu>
4835
4836 * tests/testsuite.at (AT_CHECK): When checking if $1 starts with
4837 `bison ', use m4_index instead of m4_substr since chopping up a string
4838 containing M4-special characters causes problems here.
4839
4840 Fix a couple of bugs related to special characters in user-specified
4841 file names, and make it easier for skeletons to compute output file
4842 names with the same file name prefix as Bison-computed output file
4843 names.
4844 * data/glr.cc, data/push.c, data/yacc.c: In @output, use
4845 b4_parser_file_name and b4_spec_defines_file instead of
4846 @output_parser_name@ and @output_header_name@, which are now redundant.
4847 * data/glr.c, data/lalr1.cc: Likewise. Also, in header #include's, use
4848 b4_parser_file_name, b4_spec_defines_file, and the new
4849 @basename(FILENAME@) instead of @output_parser_name@ and
4850 @output_header_name@, which inappropriately escaped the file names as
4851 C string literals.
4852 * src/files.c (all_but_ext): Remove static qualifier.
4853 (compute_output_file_names): Move `free (all_but_ext)' to...
4854 (output_file_names_free): ... here since all_but_ext is needed later.
4855 * src/files.h (all_but_ext): Extern.
4856 * src/muscle_tab.h (MUSCLE_INSERT_STRING_RAW): New macro that does
4857 exactly what MUSCLE_INSERT_STRING used to do.
4858 (MUSCLE_INSERT_STRING): Use MUSCLE_OBSTACK_SGROW so that M4-special
4859 characters are escaped properly.
4860 * src/output.c (prepare): Define muscle file_name_all_but_ext as
4861 all_but_ext.
4862 For pkgdatadir muscle, maintain previous functionality by using
4863 MUSCLE_INSERT_STRING_RAW instead of MUSCLE_INSERT_STRING. The problem
4864 is that b4_pkgdatadir is used inside m4_include in the skeletons, so
4865 digraphs would never be expanded. Hopefully no one has M4-special
4866 characters in his Bison installation path.
4867 * src/scan-skel.l: Don't parse @output_header_name@ and
4868 @output_parser_name@ anymore since they're now redundant.
4869 In @output, use decode_at_digraphs.
4870 Parse a new @basename command that invokes last_component.
4871 (decode_at_digraphs): New.
4872 (BASE_QPUTS): Remove unused.
4873 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): New macro.
4874 (Output file name): New tests.
4875
4876 2006-12-09 Joel E. Denny <jdenny@ces.clemson.edu>
4877
4878 Warn about output files that are generated by the skeletons and that
4879 conflict with other output files.
4880 * data/glr.c: Don't generate the header file here when glr.cc does.
4881 * src/files.c (file_names, file_names_count): New static globals.
4882 (compute_output_file_names): Invoke output_file_name_check for files
4883 not generated by the skeletons and remove existing checks.
4884 (output_file_name_check): New function that warns about conflicting
4885 output file names.
4886 (output_file_names_free): Free file_names.
4887 * src/files.h (output_file_name_check): Declare.
4888 * src/scan-skel.l: Invoke output_file_name_check for files generated by
4889 the skeletons.
4890 * tests/output.at (AT_CHECK_CONFLICTING_OUTPUT): New.
4891 (Conflicting output files): New tests.
4892
4893 2006-12-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4894
4895 * doc/bison.texinfo: Fix a couple of typos.
4896
4897 2006-12-08 Bob Rossi <bob@brasko.net>
4898
4899 * data/push.c: (yypvarsinit, yypvars, struct yypvars, yypushparse):
4900 Rename to...
4901 (yypstate_init, yypstate, struct yypstate, yypush_parse): ... these and
4902 update all uses.
4903 (b4_yyssa, b4_yyerror_range, yypstate_init): Rename pv to yyps.
4904 (yypush_parse): Rename yypvars argument to yyps and remove redundant
4905 local pv.
4906 (yypstate_init, yypush_parse): Declare in Bison-generated header file.
4907 * tests/calc.at (_AT_DATA_CALC_Y): Use newly named functions.
4908
4909 2006-12-07 Bob Rossi <bob@brasko.net>
4910 and Joel Denny <jdenny@ces.clemson.edu>
4911
4912 * data/push.c (yypvarsinit): Change return type from void* to struct
4913 yypvars*. No longer cast to void* on return.
4914 (struct yypvars): Remove yylen since it need not be remembered between
4915 yypushparse invocations.
4916 (yypushparse): Don't copy between yylen and pv->yylen.
4917
4918 2006-12-05 Bob Rossi <bob@brasko.net>
4919
4920 * data/push.c (yychar_set, yylval_set, yylloc_set): Delete.
4921 (yypushparse): Add yynchar, yynlval, yynlloc parameters.
4922 (b4_declare_parser_variables): Do not declare yynerrs for push mode.
4923 (struct yypvars): Remove b4_declare_parser_variables.
4924 (yypvarsinit): Remove init code for removed variables.
4925 (global scope): Do not declare b4_declare_parser_variables if
4926 push or pure mode.
4927 (yypushparse): Add b4_declare_parser_variables.
4928 Init new local variables, and remove init code for removed
4929 yypvars variables.
4930 (yyparse): Delete.
4931 * tests/calc.at (_AT_DATA_CALC_Y): Call yypushparse for push mode
4932 and yyparse for other modes.
4933 (AT_CHECK_CALC_LALR): Added '%skeleton "push.c"' for push tests.
4934 * tests/local.at (AT_PUSH_IF, AT_PURE_OR_PUSH_IF): Added.
4935 (AT_YYERROR_SEES_LOC_IF): push-parser makes this false.
4936 (AT_PURE_LEX_IF): True if pure or push parser.
4937
4938 2006-12-05 Joel E. Denny <jdenny@ces.clemson.edu>
4939
4940 Document Yacc prologue alternatives and default %destructor's and
4941 %printer's as experimental. Don't mention Java yet. Discussed at
4942 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00002.html>.
4943 * NEWS (2.3a+): Say they're experimental. Remove any mention of Java.
4944 (2.3a): Annotate this entry to say the old forms of these features were
4945 also experimental.
4946 * doc/bison.texinfo (Prologue Alternatives, Freeing Discarded Symbols,
4947 Table of Symbols): Say they're experimental. Comment out any mention
4948 of Java (we'll want this back eventually).
4949
4950 2006-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
4951
4952 Support a file name argument to %defines. Deprecate `=' in
4953 %file-prefix, %name-prefix, and %output. Discussed at
4954 <http://lists.gnu.org/archive/html/help-bison/2006-09/msg00001.html>.
4955 * NEWS (2.3a+): Mention.
4956 * doc/bison.texinfo (Decl Summary, Table of Symbols): Add entry for new
4957 form of %defines, and remove `=' from entries for %file-prefix,
4958 %name-prefix, and %output.
4959 * src/parse-gram.y (prologue_declaration): Implement.
4960 * tests/calc.at (Simple LALR Calculator, Simple GLR Calculator, Simple
4961 LALR1 C++ Calculator, Simple GLR C++ Calculator): Remove the `=' from
4962 all but one occurrence of %name-prefix.
4963 * tests/headers.at (export YYLTYPE): Remove the `=' from %name-prefix.
4964 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Likewise.
4965 * tests/output.at (AT_CHECK_OUTPUT): Remove the `=' from all but one
4966 occurrence of each of %file-prefix and %output. Add check for %defines
4967 with argument.
4968 * tests/reduce.at (Useless Terminals, Useless Nonterminals,
4969 Useless Rules, Reduced Automaton, Underivable Rules, Empty Language):
4970 Remove the `=' from %output.
4971
4972 2006-11-21 Joel E. Denny <jdenny@ces.clemson.edu>
4973
4974 Don't escape $ in test case titles since Autoconf 2.61 now does that
4975 correctly.
4976 * tests/actions.at (Default %printer and %destructor are not for error
4977 or $undefined): Here.
4978 (Default %printer and %destructor are not for $accept): Here.
4979 * tests/input.at (Invalid $n and @n): Here.
4980
4981 2006-11-20 Joel E. Denny <jdenny@ces.clemson.edu>
4982
4983 Rename <!> to <>. Discussed starting at
4984 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00039.html>.
4985 * NEWS (2.3a+): Update.
4986 * doc/bison.texinfo (Freeing Discarded Symbols, Table of Symbols):
4987 Update.
4988 * src/parse-gram.y (TYPE_TAG_NONE, generic_symlist_item): Implement.
4989 * src/scan-gram.l (INITIAL): Implement.
4990 * src/symlist.c (symbol_list_default_tagless_new): Update comment.
4991 * src/symlist.h (symbol_list, symbol_list_default_tagless_new): Update
4992 comment.
4993 * tests/actions.at (Default tagless %printer and %destructor,
4994 Default tagged and per-type %printer and %destructor,
4995 Default %printer and %destructor are not for error or $undefined,
4996 Default %printer and %destructor are not for $accept,
4997 Default %printer and %destructor for mid-rule values): Update.
4998 * tests/input.at (Default %printer and %destructor redeclared,
4999 Unused values with default %destructor): Update.
5000
5001 2006-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
5002
5003 Don't let %prec take a nonterminal.
5004 * src/reader.c (grammar_current_rule_prec_set): Make the %prec symbol a
5005 token.
5006 * tests/input.at (%prec takes a token): New test checking that %prec
5007 won't take a nonterminal.
5008
5009 2006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
5010
5011 * tests/testsuite.at (AT_CHECK): Don't miss an exit value of 0 because
5012 it was double-quoted.
5013 * src/Makefile.am (YACC): Use --warnings=all,error so that Bison's own
5014 grammar is maintained with Bison's highest standards.
5015 * src/getargs.c: Fix some typos in Doxygen comments.
5016
5017 2006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
5018
5019 Fix memory leaks in scanners generated by at least Flex 2.5.9 and
5020 later. Reported by Paul Eggert in
5021 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00014.html>.
5022 * src/flex-scanner.h (yylex_destroy): Define for Flex before 2.5.9.
5023 * src/scan-code.l (translate_action): Don't bother invoking
5024 yy_delete_buffer (YY_CURRENT_BUFFER) before creating the first buffer.
5025 (code_scanner_free): Instead of invoking
5026 yy_delete_buffer (YY_CURRENT_BUFFER) directly, invoke yylex_destroy,
5027 which frees more.
5028 * src/scan-gram.l (gram_scanner_free): Likewise.
5029 * src/scan-skel.l (scan_skel): Likewise.
5030
5031 2006-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
5032
5033 * src/files.c (tr): Change return type to void.
5034 * src/muscle_tab.c (muscle_insert): Free storage in case muscle_grow
5035 has been called previously for the same key.
5036 (muscle_find): Return storage instead of value so that
5037 --enable-gcc-warnings doesn't produce warnings that the return discards
5038 const. aver that the value and storage are the same since storage
5039 could potentially be NULL when value is not.
5040 * tests/testsuite.at (AT_CHECK): Treat an unspecified exit value the
5041 same as 0.
5042
5043 2006-11-08 Paul Eggert <eggert@cs.ucla.edu>
5044
5045 * bootstrap.conf (excluded_files): Exclude m4/codeset.m4 (undoing
5046 the earlier change today), m4/intl.m4, m4/intldir.m4. This gives
5047 us a slightly cleaner distribution, and also works.
5048 * m4/.cvsignore: Add inline.m4, wint_t.m4 to accommodate recent
5049 gnulib changes.
5050
5051 2006-11-08 Joel E. Denny <jdenny@ces.clemson.edu>
5052 and Paul Eggert <eggert@cs.ucla.edu>
5053
5054 Don't let Bison leak memory except when it complains.
5055 * src/files.h (parser_file_name, spec_verbose_file, spec_graph_file):
5056 (spec_defines_file, dir_prefix): Now char *, not const char *,
5057 since they are freed.
5058 * src/files.c: Likewise.
5059 (all_but_ext, all_but_tab_ext, src_extension, header_extension):
5060 Likewise.
5061 (tr): Now operates in-place. All uses changed.
5062 (compute_exts_from_gf, compute_exts_from_src): Don't leak temporary
5063 values.
5064 (compute_file_name_parts, compute_output_file_names): Don't store
5065 read-only data in variables that will be freed.
5066 (compute_output_file_names): Free all_but_ext, all_but_tab_ext,
5067 src_extension, and header_extension.
5068 (output_file_names_free): New public function to free
5069 spec_verbose_file, spec_graph_file, spec_defines_file,
5070 parser_file_name, and dir_prefix.
5071 * src/getargs.c (getargs): Don't store read-only data in variables that
5072 will be freed.
5073 * src/main.c (main): Invoke output_file_names_free, code_scanner_free
5074 (which previously existed but was unused), and quotearg_free.
5075 * src/muscle_tab.h (muscle_insert): value arg is now a `char const *'.
5076 * src/muscle_tab.c: Likewise.
5077 (muscle_entry): Make the value char const *,
5078 and add a new storage member that is char * and can be freed.
5079 (muscle_entry_free): New private function.
5080 (muscle_init): Use it instead of free.
5081 (muscle_insert, muscle_grow): Update and use new storage member.
5082 (muscle_code_grow): Free the string passed to muscle_grow
5083 since it's not needed anymore.
5084 * src/parse-gram.y (%union): Make `chars' member a `char const *', and
5085 add a new `char *code' member.
5086 ("{...}"): Declare semantic type as code.
5087 * src/scan-code.h (translate_rule_action):
5088 (translate_symbol_action, translate_code, translate_action): Return
5089 `char const *' rather than `char *' since external code should not free
5090 these strings.
5091 * src/scan-code.l: Likewise.
5092 * src/scan-gram.l (<SC_BRACED_CODE>): Use val->code for BRACED_CODE,
5093 which is "{...}" in the parser.
5094 * tests/Makefile.am (maintainer-check-valgrind): Set
5095 VALGRIND_OPTS='--leak-check=full --show-reacheable=yes' before invoking
5096 Valgrind.
5097 * tests/calc.at (_AT_DATA_CALC_Y): fclose the FILE* so Valgrind doesn't
5098 complain.
5099 * tests/testsuite.at (AT_CHECK): Redefine so that running Bison and
5100 expecting a non-zero exit status sets --leak-check=summary and
5101 --show-reachable=no for Valgrind. Bison unabashedly leaks memory in
5102 this case, and we don't want to hear about it.
5103
5104 2006-11-08 Paul Eggert <eggert@cs.ucla.edu>
5105
5106 * bootstrap (runtime-po/Makevars): Derive from po/Makevars
5107 instead of from the template, to simplify configuration a bit.
5108 * bootstrap.conf (excluded_files): Don't exclude m4/codeset.m4
5109 and m4/wint_t.m4, as they are needed with the latest gnulib.
5110
5111 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
5112
5113 Disable unset/unused mid-rule value warnings by default, and recognize
5114 --warnings=midrule-values to enable them. Discussed starting at
5115 <http://lists.gnu.org/archive/html/help-bison/2006-10/msg00030.html>.
5116 * NEWS (2.3a+): Mention.
5117 * src/getargs.c, src/getargs.h (warnings_args, warnings_types, enum
5118 warnings): Add entry for midrule-values subargument.
5119 * src/reader.c (symbol_should_be_used): Don't return true just because
5120 the value is a set/used mid-rule value unless
5121 --warnings=midrule-values was specified.
5122 * tests/input.at (Unused values, Unused values before symbol
5123 declarations): Run tests with and without --warnings=midrule-values.
5124
5125 * src/reader.c (check_and_convert_grammar): Use symbol_list_free rather
5126 than LIST_FREE directly.
5127
5128 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
5129
5130 Finish implementing --warnings=error, which should not be implied by
5131 --warnings=all (or by its synonyms -W and --warnings without
5132 subarguments).
5133 * src/complain.c (set_warning_issued): New function to report that
5134 warnings are being treated as errors and to record an error if so.
5135 Invoke...
5136 (warn_at, warn): ... here.
5137 * src/getargs.c (warnings_args, warnings_types): Reorder so that
5138 "error - warnings are errors" does not appear above "all - all of the
5139 above".
5140 (getargs): For -W and --warnings without subarguments, don't let
5141 FLAGS_ARGMATCH set warnings_error in warnings_flag.
5142 * src/getargs.h (enum warnings): Unset warnings_error in warnings_all.
5143
5144 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
5145
5146 * src/getargs.c (flags_argmatch): Don't cause segmentation fault for
5147 empty subargument list. For example: `bison --warnings= parser.y'.
5148
5149 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
5150
5151 * data/push.c, data/yacc.c: Make sure there's a newline at the end of
5152 the parser header file so that gcc doesn't warn.
5153
5154 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
5155
5156 Split the default %destructor/%printer into two kinds: <*> and <!>.
5157 Discussed starting at
5158 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00060.html>.
5159 * NEWS (2.3a+): Mention.
5160 * doc/bison.texinfo (Freeing Discarded Symbols): Document this and the
5161 previous change today related to mid-rules.
5162 (Table of Symbols): Remove %symbol-default and add <*> and <!>.
5163 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): Remove.
5164 (TYPE_TAG_ANY): Add as <*>.
5165 (TYPE_TAG_NONE): Add as <!>.
5166 (generic_symlist_item): Remove RHS for %symbol-default and add RHS's
5167 for <*> and <!>.
5168 * src/scan-gram.l (PERCENT_SYMBOL_DEFAULT): Remove.
5169 (TYPE_TAG_ANY, TYPE_TAG_NONE): Add.
5170 * src/symlist.c (symbol_list_default_new): Split into tagged and
5171 tagless versions.
5172 (symbol_list_destructor_set, symbol_list_printer_set): Split
5173 SYMLIST_DEFAULT case into SYMLIST_DEFAULT_TAGGED and
5174 SYMLIST_DEFAULT_TAGLESS.
5175 * src/symlist.h: Update symbol_list_default*_new prototypes.
5176 (symbol_list.content_type): Split enum value SYMLIST_DEFAULT into
5177 SYMLIST_DEFAULT_TAGGED and SYMLIST_DEFAULT_TAGLESS.
5178 * src/symtab.c (default_destructor, default_destructor_location,
5179 default_printer, default_printer_location): Split each into tagged and
5180 tagless versions.
5181 (symbol_destructor_get, symbol_destructor_location_get,
5182 symbol_printer_get, symbol_printer_location_get): Implement tagged
5183 default and tagless default cases.
5184 (default_destructor_set, default_printer_set): Split each into tagged
5185 and tagless versions.
5186 * src/symtab.h: Update prototypes.
5187 * tests/actions.at (Default %printer and %destructor): Rename to...
5188 (Default tagless %printer and %destructor): ... this, and extend.
5189 (Per-type %printer and %destructor): Rename to...
5190 (Default tagged and per-type %printer and %destructor): ... this, and
5191 extend.
5192 (Default %printer and %destructor for user-defined end token): Extend.
5193 (Default %printer and %destructor are not for error or $undefined):
5194 Update.
5195 (Default %printer and %destructor are not for $accept): Update.
5196 (Default %printer and %destructor for mid-rule values): Extend.
5197 * tests/input.at (Default %printer and %destructor redeclared): Extend.
5198 (Unused values with default %destructor): Extend.
5199
5200 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
5201
5202 Don't apply the default %destructor/%printer to an unreferenced midrule
5203 value. Mentioned at
5204 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00104.html>.
5205 * src/symtab.c (dummy_symbol_get): Name all dummy symbols initially
5206 like $@n instead of just @n so that the default %destructor/%printer
5207 logic doesn't see them as user-defined symbols.
5208 (symbol_is_dummy): Check for both forms of the name.
5209 * src/reader.c (packgram): Remove the `$' from each midrule symbol
5210 name for which the midrule value is referenced in any action.
5211 * tests/actions.at (Default %printer and %destructor for mid-rule
5212 values): New test.
5213 * tests/regression.at (Rule Line Numbers, Web2c Report): Update output
5214 for change to dummy symbol names.
5215
5216 2006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
5217
5218 Warn about unset midrule $$ if the corresponding $n is used.
5219 * src/reader.c (symbol_should_be_used): Check midrule parent rule for
5220 $n usage.
5221 (packgram): Before invoking grammar_rule_check on any rule, make sure
5222 all actions have already been scanned in order to set `used' flags.
5223 Otherwise, checking that a midrule's $$ is set will not always work
5224 properly because the midrule check must forward-reference the midrule's
5225 parent rule.
5226 * tests/input.at (AT_CHECK_UNUSED_VALUES): Extend to check the new
5227 warning.
5228
5229 2006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
5230
5231 More improvements to the documentation of the prologue alternatives:
5232 * NEWS (2.3a+): Mention the new `Prologue Alternatives' section in the
5233 Bison manual.
5234 * doc/bison.texinfo (Prologue Alternatives): Correct some errors. Add
5235 some text to clarify the relative importance of the new directives and
5236 to show how these directives may be viewed as code labels.
5237
5238 2006-10-16 Joel E. Denny <jdenny@ces.clemson.edu>
5239
5240 Similar to the recently removed %before-header, add %code-top as the
5241 alternative to the pre-prologue. Mentioned at
5242 <http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00063.html>.
5243 Also, let the prologue alternatives appear in the grammar section.
5244 * src/parse-gram.y (PERCENT_CODE_TOP): New token.
5245 (prologue_declaration): Move the existing prologue alternatives to...
5246 (grammar_declaration): ... here and add %code-top.
5247 * src/scan-gram.l (PERCENT_CODE_TOP): New token.
5248
5249 Clean up and extend documentation for the prologue alternatives.
5250 * NEWS (2.3a+): Describe prologue alternatives.
5251 * doc/bison.texinfo (Prologue): Move discussion of prologue
5252 alternatives to...
5253 (Prologue Alternatives): ... this new section, and extend it to discuss
5254 all 4 directives in detail.
5255 (Table of Symbols): Clean up discussion of prologue alternatives and
5256 add %code-top.
5257
5258 2006-10-16 Juan Manuel Guerrero <juan.guerrero@gmx.de>
5259
5260 DJGPP specific issues.
5261
5262 * djgpp/config.bat: config.hin has been moved to lib. Adjust
5263 config.bat accordingly.
5264 * djgpp/config.sed: Adjust config.sed for the use of autoconf 2.60.
5265 * djgpp/config.site: Likewise.
5266
5267 2006-10-16 Paolo Bonzini <bonzini@gnu.org>
5268
5269 Replace %*-header with %provides, %requires, %code. See discussion at
5270 http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00002.html
5271
5272 * data/bison.m4 (b4_user_requires, b4_user_provides): New.
5273 (b4_user_start_header): Remove.
5274 * data/glr.c: Use new macros instead of b4_*start_header
5275 and b4_*end_header.
5276 * data/glr.cc: Likewise.
5277 * data/lalr1.cc: Likewise.
5278 * data/push.c: Likewise.
5279 * data/yacc.c: Likewise.
5280
5281 * doc/bison.texinfo: Remove %before-header, rename
5282 %{start,end,after}-header to %requires, %provides, %code.
5283
5284 * src/parse-gram.y: Likewise (also rename token names accordingly).
5285 * src/scan-gram.l: Likewise.
5286 * tests/actions.at: Likewise.
5287
5288 2006-10-14 Paul Eggert <eggert@cs.ucla.edu>
5289
5290 * lib/Makefile.am (AM_CFLAGS): Remove $(WERROR_CFLAGS).
5291 Problem reported by Joel E. Denny.
5292
5293 2006-10-14 Jim Meyering <jim@meyering.net>
5294
5295 (Sync from coreutils.)
5296 Work also when the working directory (with e.g. coreutils sources)
5297 is version controlled with git, rather than CVS.
5298 * bootstrap (CVS_only_file): Test for the existence of README-cvs,
5299 rather than CVS.
5300 In messages and comments, say e.g., "checked-out sources",
5301 rather than "CVS sources".
5302 (version_controlled_file): New function. Work for git as well as
5303 for CVS. Don't use grep's -q option.
5304 (slurp): Call it here, in place of CVS-specific code.
5305
5306 2006-10-14 Joel E. Denny <jdenny@ces.clemson.edu>
5307
5308 Fix testsuite for ./configure --enable-gcc-warnings:
5309 * configure.ac (gcc-warnings): Move -Wall before -Wno-sign-compare.
5310 Otherwise, gcc 4.1.0 (at least) warns about sign comparisons in
5311 __AT_CHECK_PRINTER_AND_DESTRUCTOR in tests/actions.at.
5312 * test/input.at (Torturing the Scanner): #include <stdlib.h> for abort.
5313 * test/regression.at (Diagnostic that expects two alternatives):
5314 Likewise.
5315
5316 2006-10-12 Paul Eggert <eggert@cs.ucla.edu>
5317
5318 * bootstrap.conf (gnulib_modules): Add config-h.
5319 * djgpp/subpipe.c: Include <config.h> unconditionally; don't
5320 worry about HAVE_CONFIG_H.
5321 * lib/abitset.c: Likewise.
5322 * lib/bitset.c: Likewise.
5323 * lib/bitset_stats.c: Likewise.
5324 * lib/bitsetv-print.c: Likewise.
5325 * lib/bitsetv.c: Likewise.
5326 * lib/ebitset.c: Likewise.
5327 * lib/get-errno.c: Likewise.
5328 * lib/lbitset.c: Likewise.
5329 * lib/subpipe.c: Likewise.
5330 * lib/timevar.c: Likewise.
5331 * lib/vbitset.c: Likewise.
5332 * lib/bitset.c: Include "bitset.h" first, to test interface.
5333 * lib/bitset_stats.c: Include "bitset_stats.h" first.
5334 * lib/bitsetv-print.c: Include "bitsetv-print.h" first.
5335 * lib/bitsetv.c: Include "bitsetv.h" first.
5336 * lib/get-errno.c: Include "get-errno.h" first.
5337 * m4/.cvsignore: Add config-h.m4.
5338 * tests/actions.at (Default %printer and %destructor for ...):
5339 Adjust expected line numbers in output to reflect removal of #if
5340 HAVE_CONFIG_H lines.
5341 * tests/glr-regression.at (Missed %merge type warnings when ...):
5342 Likewise.
5343 * tests/regression.at (Braced code in declaration in rules section):
5344 Likewise.
5345 * tests/atlocal.in (CPPFLAGS): Don't define HAVE_CONFIG_H.
5346 * tests/local.at (AT_DATA_GRAMMAR_PROLOGUE):
5347 Include <config.h> unconditionally.
5348
5349 * bootstrap: Sync from coreutils, as follows:
5350
5351 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
5352
5353 * bootstrap (symlink_to_gnulib): Fix bug: the dot_dots shell
5354 variable was sometimes used without being initialized. This
5355 messed up the installation of the INSTALL file in some cases.
5356
5357 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
5358
5359 * bootstrap (usage, main program, symlink_to_gnulib): Add option
5360 --copy. Inspired by a suggestion from Bruno Haible.
5361
5362 2006-10-03 Jim Meyering <jim@meyering.net>
5363
5364 * bootstrap: Undo last change to this file, since now gnulib-tool
5365 sticks with the automake default in generating dependencies.
5366
5367 2006-10-12 Paul Eggert <eggert@cs.ucla.edu>
5368
5369 * configure.ac: Use AC_PROG_CC_STDC; this is more modern than
5370 the old AC_PROG_CC / AM_PROG_CC_STDC combination.
5371
5372 * doc/bison.1: Add copyright notice.
5373
5374 * data/glr.c: Don't include <stdarg.h>; not used.
5375
5376 * NEWS: The -g and --graph options now output graphs in Graphviz
5377 DOT format, not VCG format.
5378 * doc/bison.1: Likewise.
5379 * doc/bison.texinfo (Understanding, Bison Options): Likewise.
5380 * THANKS: Add Satya Kiran Popuri, who proposed the initial version
5381 of this change in
5382 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00158.html>.
5383 * TODO: Remove Graphviz entry.
5384 * src/Makefile.am (bison_SOURCES): Add graphviz.c and graphviz.h;
5385 remove vcg.c, vcg.h, vcg_defaults.h.
5386 * src/vcg.c, src/vcg.h, src/vcg_defaults.h: Remove.
5387 * src/graphviz.c, src/graphviz.h: New files.
5388 * src/files.c (compute_output_file_names): Output .dot, not .vcg.
5389 * src/files.h: Make comment more generic.
5390 * src/main.c (main): Likewise.
5391 * src/print_graph.h: Likewise.
5392 * src/getargs.c (usage): Make usage description more generic.
5393 * src/print_graph.c: Include graphviz.h rather than vcg.h.
5394 (static_graph, fgraph): Remove. All uses changed to pass
5395 arguments instead of sharing a static var.
5396 (print_core, print_actions, print_state, print_graph):
5397 Output graphviz format rather than VCG format.
5398 * tests/.cvsignore: Remove *.vcg; add *.dot.
5399 * tests/output.at: Expect *.dot files, not *.vcg files.
5400
5401 * data/Makefile.am (dist_pkgdata_DATA): Add bison.m4; this
5402 accommodates the 2006-10-08 change.
5403
5404 2006-10-11 Bob Rossi <bob@brasko.net>
5405
5406 * data/push.c (yypushparse, yypvarsinit, yypvars): Wrap in b4_push_if.
5407 (b4_yyssa, b4_yyerror_range): New macros.
5408 (struct yypvars): Remove yyssa_ptr and yyerror_range_ptr fields.
5409 (yypvarsinit): Remove init of removed fields.
5410 (yypushparse): Remove use of removed fields; use new macros instead.
5411
5412 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
5413
5414 * data/push.c (yypushparse): Fix memory leak if yymsg is malloced
5415 in a push parser. Reindent slightly to match yacc.c better.
5416
5417 2006-10-11 Bob Rossi <bob@brasko.net>
5418
5419 * data/push.c (struct yypvars): Remove yymsgbuf, yymsgbuf_ptr, yymsg,
5420 yymsg_alloc fields.
5421 (yypvarsinit, yypushparse): Remove init of removed fields.
5422 (yypushparse): Use yymsgbuf instead of yymsgbuf_ptr.
5423
5424 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
5425
5426 * THANKS: Add Paolo Bonzini and Bob Rossi.
5427
5428 2006-10-08 Paolo Bonzini <bonzini@gnu.org>
5429
5430 * data/c.m4 (b4_copyright, b4_epilogue, b4_location_initial_column,
5431 b4_location_initial_line, p4_parse_param, b4_ints_in, b4_flag_if,
5432 b4_define_flag_if and uses, b4_basename, b4_syncline, b4_user_code,
5433 b4_define_user_cde and uses): Remove.
5434 (b4_comment, b4_prefix, b4_sync_start): New.
5435 * data/bison.m4: New file, with most of the content removed from c.m4.
5436 * src/muscle_tab.h: Use "do {...} while(0)" throughout.
5437 * src/output.c (output_skeleton): Pass bison.m4.
5438 (prepare): Pass glr_flag and nondeterministic_flag. Pass prefix
5439 only if specified.
5440
5441 2006-10-05 Paul Eggert <eggert@cs.ucla.edu>
5442
5443 Fix test failure reported by Tom Lane in
5444 <http://lists.gnu.org/archive/html/bug-bison/2006-10/msg00000.html>
5445 and try to make such failures easier to catch in the future.
5446 * data/glr.c (YYTRANSLATE): Don't check for nonpositive arg;
5447 that's now the caller's responsibility.
5448 (yyprocessOneStack, yyrecoverSyntaxError, yyparse):
5449 Set yychar = YYEOF if it's negative.
5450 * tests/actions.at (yylex): Abort if asked to read past EOF.
5451 * tests/conflicts.at (yylex): Likewise.
5452 * tests/cxx-type.at (yylex): Likewise.
5453 * tests/glr-regression.at (yylex): Likewise.
5454 * tests/input.at (yylex): Likewise.
5455 * tests/regression.at (yylex): Likewise.
5456 * tests/torture.at (yylex): Likewise.
5457
5458 2006-10-01 Paul Eggert <eggert@cs.ucla.edu>
5459
5460 Fix problems with translating English-language diagnostics.
5461 * bootstrap: Fix bug introduced in recent bootstrap changes, with
5462 respect to bison-runtime pot generation. The YY_ stuff
5463 wasn't being captured.
5464 * bootstrap.conf (XGETTEXT_OPTIONS_RUNTIME): New var.
5465 * po/POTFILES.in: Add src/location.c, src/scan-code.l.
5466 * runtime-po/POTFILES.in: Add data/push.c.
5467
5468 2006-09-29 Paul Eggert <eggert@cs.ucla.edu>
5469
5470 Merge bootstrap changes from coreutils.
5471
5472 2006-09-28 Jim Meyering <jim@meyering.net>
5473
5474 Automatically generated dependencies are important even
5475 when all of the sources in a directory come from gnulib.
5476 * bootstrap (gnulib_tool): Remove the "no-dependencies" automake
5477 option that gnulib-tool adds to what becomes our lib/gnulib.mk.
5478
5479 2006-09-23 Jim Meyering <jim@meyering.net>
5480
5481 * bootstrap (gnulib_tool_options): Add "--local-dir gl".
5482
5483 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
5484
5485 * bootstrap: Add support for --force.
5486 (usage): New function. Describe usage less tersely.
5487 (CVS_only_file): New var.
5488
5489 2006-09-21 Paul Eggert <eggert@cs.ucla.edu>
5490
5491 * data/push.c (YYPUSH_MORE): Make it an enum instead.
5492 (yypushparse): Use YYPUSH_MORE instead of the mystery constant.
5493 Adjust white space and comments to match GNU style better.
5494
5495 2006-09-20 Bob Rossi <bob@brasko.net>
5496
5497 * data/push.c (yyresult_get): Remove function.
5498 (YYPUSH_MORE): Add #define.
5499 (yypushparse): Modify return value.
5500
5501 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
5502
5503 * stamp-h.in: Remove; no longer needed.
5504 * .cvsignore: Replace autom4te.cache and config.cache with *.cache.
5505 Remove config.h, config.hin, intl (no longer created).
5506 * lib/.cvsignore: Add config.h, config.hin, configmake.h, inttypes.h,
5507 stamp-h1.
5508
5509 Sync bootstrap from coreutils, as follows:
5510
5511 2006-09-18 Paul Eggert <eggert@cs.ucla.edu>
5512
5513 * bootstrap (symlink_to_gnulib): New function.
5514 (cp_mark_as_generated): Use it, to prefer symlinks-to-gnulib
5515 to copies-of-gnulib.
5516 (cp_mark_as_generated, slurp, gnulib_files):
5517 Avoid making a copy if it's the same as the old version.
5518 (gnulib_files): Add support for this variable (used by Bison).
5519
5520 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
5521
5522 * src/getargs.c (usage): Rework to use conventions similar to
5523 coreutils, to make translation a bit easier and the code a bit
5524 smaller. Problem reported by Tim Van Holder.
5525
5526 2006-09-15 Paul Eggert <eggert@cs.ucla.edu>
5527
5528 Use some of gnulib's new modules, taken from coreutils.
5529
5530 * bootstrap: Sync from coreutils, except add support for gnulib_files.
5531 * bootstrap.conf: New file.
5532 (gnulib_modules): Add configmake, inttypes, unistd.
5533 (XGETTEXT_OPTIONS): Add complain, complain_at,
5534 fatal, fatal_at, warn, warn_at, unexpected_end.
5535 * configure.ac (AC_CONFIG_HEADERS): config.h is now in lib, not here.
5536 (gl_USE_SYSTEM_EXTENSIONS): Remove; gl_EARLY now does this.
5537 (gl_EARLY): Add.
5538 (AM_STDBOOL_H): Remove; gl_INIT now dows this.
5539 (gl_INIT): Add
5540 (GNULIB_AUTOCONF_SNIPPET): Remove.
5541 (AM_GNU_GETTEXT): Add; require formatstring macros since that's
5542 the pickiest.
5543 * lib/.cvsignore: Add inttypes_.h.
5544 * lib/Makefile.am: Include gnulib.mk first so we can append to it.
5545 (AM_CFLAGS): Add WERROR_CFLAGS, to be more like coreutils.
5546 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES): Remove
5547 no-longer-necessary initializations.
5548 (lib_SOURCES): Remove, replacing by libbison_a_SOURCES.
5549 * lib/subpipe.c: Include <unistd.h> unconditionally, now that we
5550 use the unistd module.
5551 * src/system.h: Likewise.
5552 * m4/.cvsignore: Remove *_gl.m4, gnulib.m4, inttypes_h.m4, uintmax_t.m4,
5553 ulonglong.m4. Add gettext.m4, gnulib-cache.m4, gnulib-comp.m4,
5554 gnulib-tool.m4, inttypes-h.m4, inttypes-pri.m4, inttypes.m4.
5555 * src/Makefile.am (DEFS): Remove, since configmake does this for us.
5556 (AM_CPPFLAGS): Remove -I../lib, since Automake does that for us.
5557 * src/system.h: Include inttypes.h unconditionally, now that we
5558 use the inttypes module. Don't bother to include stdint.h, since
5559 inttypes.h now does that for us.
5560 (LOCALEDIR): Remove, now that we use the configmake module.
5561 * src/getargs.c: Include configmake.h.
5562 * src/main.c: Likewise.
5563 * src/output.c: Likewise.
5564 * tests/atlocal.in (CPPFLAGS): Include from $abs_top_builddir/lib,
5565 not from $abs_top_builddir, since config.h moved.
5566
5567
5568 Port to GCC 2.95. First two problems reported by Michael Deutschmann in
5569 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00018.html>.
5570
5571 * src/parse-gram.y (symbol_declaration): Don't put statements
5572 before declarations; it's not portable to C89.
5573 * src/scan-code.l (handle_action_at): Likewise.
5574
5575 * src/scan-code.l: Always initialize braces_level; the old code
5576 left it uninitialized and therefore had undefined behavior.
5577
5578 Don't attempt to redefine 'assert', since it runs afoul of
5579 systems where standard headers (mistakenly) include <assert.h>.
5580 Instead, define and use our own alternative, called 'aver'.
5581 * src/reader.c: Don't include assert.h, since we no longer
5582 use assert.
5583 * src/scan-code.l: Likewise.
5584 * src/system.h (assert): Remove, replacing with....
5585 (aver): New function, taking a bool arg. All uses changed.
5586 * src/tables.c (pack_vector): Ensure that aver arg is bool,
5587 not merely an integer.
5588
5589 2006-09-15 Bob Rossi <bob@brasko.net>
5590
5591 * data/Makefile.am (dist_pkgdata_DATA): Add push.c.
5592 * data/c.m4 (YYPUSH): New.
5593 (b4_push_if): New macro. Use it instead of #ifdef YYPUSH.
5594 * src/getargs.c (push_parser): New var.
5595 * src/getargs.h (push_parser): New declaration.
5596 * src/output.c (prepare): Add macro insertion of `push_flag'.
5597 * src/parse-gram.y (PERCENT_PUSH_PARSER): New token.
5598 (prologue_declaration): Parse %push-parser.
5599 * src/scan-gram.l: Scan new PERCENT_PUSH_PARSER token.
5600 * tests/calc.at (_AT_CHECK_CALC_ERROR): Add "Return" and "Now" to
5601 list of removed lines from the traces observed.
5602 (AT_CHECK_CALC_LALR): Added push parser tests.
5603
5604 2006-09-13 Paul Eggert <eggert@cs.ucla.edu>
5605
5606 * NEWS: Version 2.3a.
5607 * configure.ac (AC_INIT): Likewise.
5608
5609 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Remove
5610 "#define YYSTYPE int" that caused "make maintainer-check" to fail
5611 due to header ordering dependencies. I don't know why the #define
5612 was there.
5613
5614 Fix glr.cc and lalr1.cc's use of YYDEBUG so that there's zero
5615 runtime cost when YYDEBUG is not defined, and so that some tests
5616 that used to fail now work. Problem and initial suggestion by
5617 Paolo Bonzini.
5618 * data/c++.m4 (b4_parse_param_cons): Omit leading ','.
5619 * data/glr.cc (b4_parser_class_name):
5620 Initialize yycdebug_ only if YYDEBUG. Also, initialize yydebug_.
5621 (debug_level, set_debug_level): Affect yydebug_, not ::yydebug.
5622 (yydebug_) [YYDEBUG]: New member.
5623 (yycdebug_): Now defined only if YYDEBUG.
5624 * data/lalr1.cc (yydebug_, yycdebug_): Now defined only if YYDEBUG.
5625 (YYCDEBUG) [!YYDEBUG]: Don't use yydebug_ and yycdebug_.
5626 (b4_parser_class_name): Initialize yydebug_ and yycdebug_ only
5627 if YYYDEBUG.
5628 (debug_stream, set_debug_stream, debug_level, set_debug_level):
5629 Define only if YYDEBUG.
5630 * tests/calc.at (_AT_DATA_CALC_Y) [!YYDEBUG]: Omit call to
5631 set_debug_level.
5632 * tests/regression.at (_AT_DATA_DANCER_Y) [!YYDEBUG]: Likewise.
5633 * tests/calc.at (AT_CHECK_CALC_GLR_CC): Uncomment calls to
5634 AT_CHECK_CALC_GLR_CC that are working now.
5635
5636 2006-09-12 Paul Eggert <eggert@cs.ucla.edu>
5637
5638 * data/glr.cc (YYERROR_VERBOSE, YYTOKEN_TABLE): Remove.
5639 We don't need them in glr.cc, and glr.c defines them.
5640 Defining YYERROR_VERBOSE to 0 here breaks glr.c, since glr.c
5641 assumes that defining it to anything is the same as defining
5642 it to 1. Problem reported by Paolo Bonzini.
5643
5644 2006-09-12 Paolo Bonzini <bonzini@gnu.org> (tiny change)
5645
5646 * data/c.m4 (b4_null, b4_case): Define.
5647 * src/output.c (prepare_symbols): Use b4_null.
5648 (user_actions_output): Use b4_case.
5649
5650 2006-09-11 Paul Eggert <eggert@cs.ucla.edu>
5651
5652 * data/glr.c (b4_shared_declarations): Put start-header first,
5653 before any #includes that we generate, so that feature-test
5654 macros work. Problem reported by Michael Deutschmann in
5655 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00004.html>.
5656 * data/lalr1.cc: Likewise.
5657 * doc/bison.texinfo (Prologue): Document that feature-test macros
5658 should be defined before any Bison declarations.
5659 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Put defns
5660 that depend on location.hh after, not before, Bison decls, since
5661 we now include location.hh after the first user prologue.
5662
5663 * doc/bison.texinfo (Calc++ Parser): Fix memory leak reported by
5664 Sander Brandenburg in
5665 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00002.html>.
5666 Also, fix minor white space and comment issues.
5667 (Prologue): Mention that it's better to define feature-test macros
5668 before Bison declarations. Problem reported by Michael Deutschmann.
5669
5670 * README-cvs: Fix typo: "&" should be "&&". Problem reported
5671 by Jim Meyering.
5672 * m4/.cvsignore: Add argmatch.m4. Remove obstack.m4, strerror_r.m4.
5673 This adjusts to recent gnulib changes.
5674
5675 2006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
5676
5677 Finish implementation of per-type %destructor/%printer. Discussed
5678 starting at
5679 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>
5680 and
5681 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>.
5682 * NEWS (2.3+): Add a description of this feature to the default
5683 %destructor/%printer description.
5684 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise.
5685 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
5686 Invoke semantic_type_destructor_set or semantic_type_printer_set when a
5687 list node contains a semantic type.
5688 * src/symtab.c, src/symtab.h: Extend with a table that associates
5689 semantic types with their %destructor's and %printer's.
5690 (semantic_type_from_uniqstr, semantic_type_get,
5691 semantic_type_destructor_set, semantic_type_printer_set): New functions
5692 composing the public interface of that table.
5693 (symbol_destructor_get, symbol_destructor_location_get,
5694 symbol_printer_get, symbol_printer_location_get): If there's no
5695 per-symbol %destructor/%printer, look up the per-type before trying
5696 the default.
5697 * tests/actions.at (Per-type %printer and %destructor): New test case.
5698 * tests/input.at (Default %printer and %destructor redeclared):
5699 Extend to check that multiple occurrences of %symbol-default in a
5700 single %destructor/%printer declaration is an error.
5701 (Per-type %printer and %destructor redeclared, Unused values with
5702 per-type %destructor): New test cases.
5703
5704 2006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
5705
5706 Require default %destructor/%printer to be declared using
5707 %symbol-default instead of an empty symbol list, and start working on
5708 new per-type %destructor/%printer. Discussed at
5709 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00007.html>.
5710 * NEWS (2.3+): Add %symbol-default to example.
5711 * bison.texinfo (Freeing Discarded Symbols): Likewise.
5712 (Table of Symbols): Add entry for %symbol-default.
5713 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): New token.
5714 (generic_symlist, generic_symlist_item): New nonterminals for creating
5715 a list in which each item is a symbol, semantic type, or
5716 %symbol-default.
5717 (grammar_declaration): Use generic_symlist in %destructor and %printer
5718 declarations instead of symbols.1 or an empty list.
5719 (symbol_declaration, precedence_declaration, symbols.1): Update actions
5720 for changes to symbol_list.
5721 * src/reader.c: Update for changes to symbol_list.
5722 * src/scan-code.l: Likewise.
5723 * src/scan-gram.l: Scan new PERCENT_SYMBOL_DEFAULT token.
5724 * src/symlist.c, src/symlist.h: Extend such that a list node may
5725 represent a semantic type or a %symbol-default in addition to just an
5726 ordinary symbol. Add switched functions for setting %destructor's and
5727 %printer's.
5728 * tests/actions.at, tests/input.at: Add %symbol-default to all default
5729 %destructor/%printer declarations.
5730
5731 2006-08-23 Joel E. Denny <jdenny@ces.clemson.edu>
5732
5733 Whether the default %destructor/%printer applies to a particular symbol
5734 isn't a question of whether the user *declares* that symbol (in %token,
5735 for example). It's a question of whether the user by any means
5736 *defines* the symbol at all (by simply using a char token, for
5737 example). $end is defined by Bison whereas any other token with token
5738 number 0 is defined by the user. The error token is always defined by
5739 Bison regardless of whether the user declares it with %token, but we
5740 may one day let the user define error as a nonterminal instead.
5741 * NEWS (2.3+): Say "user-defined" instead of "user-declared".
5742 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise, and document
5743 the meaning of "user-defined".
5744 * tests/actions.at (Default %printer and %destructor for user-declared
5745 end token): Rename to...
5746 (Default %printer and %destructor for user-defined end token): ...
5747 this.
5748
5749 * src/symtab.c (symbol_destructor_get, symbol_printer_get): In the
5750 computation of whether to apply the default, don't maintain a list of
5751 every Bison-defined symbol. Instead, just check for a first character
5752 of '$', which a user symbol cannot have, and check for the error token.
5753
5754 2006-08-21 Joel E. Denny <jdenny@ces.clemson.edu>
5755
5756 Don't apply the default %destructor or %printer to the error token,
5757 $undefined, or $accept. This change fits the general rule that the
5758 default %destructor and %printer are only for user-declared symbols,
5759 and it solves several difficulties that are described in the new test
5760 cases listed below.
5761 * src/symtab.c (symbol_destructor_get, symbol_printer_get): Implement.
5762 * tests/actions.at (Default %printer and %destructor are not for error
5763 or $undefined, Default %printer and %destructor are not for $accept):
5764 New test cases.
5765
5766 2006-08-19 Joel E. Denny <jdenny@ces.clemson.edu>
5767
5768 Allow %start after the first rule.
5769 * src/reader.c (grammar_current_rule_begin): Don't set the start symbol
5770 when parsing the first rule.
5771 (check_and_convert_grammar): Search for it here after all grammar
5772 declarations have been parsed. Skip midrules, which have dummy LHS
5773 nonterminals.
5774 * src/symtab.c (symbol_is_dummy): New function.
5775 * src/symtab.h (symbol_is_dummy): Declare it.
5776 * tests/input.at (%start after first rule): New test.
5777
5778 2006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
5779
5780 Redo some of the previous commit: add back the ability to use
5781 non-aliased/undeclared string literals since it might be useful to
5782 those declaring %token-table.
5783 * src/reader.c (check_and_convert_grammar): Undo changes in previous
5784 commit: don't worry about complaints from symbols_pack.
5785 * src/symtab.c (symbol_new, symbol_class_set,
5786 symbol_check_alias_consistency): Undo changes in previous commit: count
5787 each string literal as a new symbol and token, assign it a symbol
5788 number, and don't complain about non-aliased string literals.
5789 (symbols_pack): Since symbol_make_alias still does not decrement symbol
5790 and token counts but does still set aliased tokens to the same number,
5791 symbol_pack_processor now leaves empty slots in the symbols array.
5792 Remove those slots.
5793 * tests/regression.at (Undeclared string literal): Remove test case
5794 added in previous commit since non-aliased string literals are allowed
5795 again.
5796 (Characters Escapes, Web2c Actions): Undo changes in previous commit:
5797 remove unnecessary string literal declarations.
5798 * tests/sets.at (Firsts): Likewise.
5799
5800 2006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
5801
5802 Don't allow an undeclared string literal, but allow a string literal to
5803 be used before its declaration.
5804 * src/reader.c (check_and_convert_grammar): Don't invoke packgram if
5805 symbols_pack complained.
5806 * src/symtab.c (symbol_new): Don't count a string literal as a new
5807 symbol.
5808 (symbol_class_set): Don't count a string literal as a new token, and
5809 don't assign it a symbol number since symbol_make_alias does that.
5810 (symbol_make_alias): It's not necessary to decrement the symbol and
5811 token counts anymore. Don't assume that an alias declaration occurs
5812 before any uses of the identifier or string, and thus don't assert that
5813 one of them has the highest symbol number so far.
5814 (symbol_check_alias_consistency): Complain if there's a string literal
5815 that wasn't declared as an alias.
5816 (symbols_pack): Bail if symbol_check_alias_consistency failed since
5817 symbol_pack asserts that every token has been assigned a symbol number
5818 although undeclared string literals have not.
5819 * tests/regression.at (String alias declared after use, Undeclared
5820 string literal): New test cases.
5821 (Characters Escapes, Web2c Actions): Declare string literals as
5822 aliases.
5823 * tests/sets.at (Firsts): Likewise.
5824
5825 2006-08-14 Joel E. Denny <jdenny@ces.clemson.edu>
5826
5827 In the grammar scanner, STRING_FINISH unclosed constructs and return
5828 them to the parser in order to improve error messages.
5829 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER,
5830 SC_BRACED_CODE, SC_PROLOGUE): Implement.
5831 * tests/input.at (Unclosed constructs): New test case.
5832 * tests/regression.at (Invalid inputs): Update now that unclosed %{ is
5833 seen.
5834
5835 * src/scan-gram.h, src/scan-gram.l (gram_last_braced_code_loc): Remove
5836 unused global.
5837
5838 2006-08-13 Joel E. Denny <jdenny@ces.clemson.edu>
5839
5840 Handle string aliases for character tokens correctly.
5841 * src/symtab.c (symbol_user_token_number_set): If the token has an
5842 alias, check and set its alias's user token number instead of its own,
5843 which is set to indicate the alias. Previously, every occurrence of
5844 the character token in the grammar overwrote that alias indicator with
5845 the character code.
5846 * tests/input.at (String aliases for character tokens): New test.
5847
5848 2006-08-12 Joel E. Denny <jdenny@ces.clemson.edu>
5849
5850 * src/parse-gram.y: Add `%expect 0' so we don't overlook conflicts.
5851
5852 2006-08-11 Paul Eggert <eggert@cs.ucla.edu>
5853
5854 * bootstrap: Put in need-ngettext argument to AM_GNU_GETTEXT,
5855 to prevent failures when building on older platforms.
5856 Check for autopoint failure.
5857 Set XGETTEXT_OPTIONS to values that check for C format strings,
5858 so that translators are warned about them (this also helps
5859 prevent core dumps).
5860
5861 * lib/subpipe.c (create_subpipe): Use new gnulib pipe_safer
5862 function, since it simplifies our code a bit.
5863
5864 * configure.ac (AC_ARG_ENABLE): Use -Wextra -Wno-sign-compare
5865 rather than -W, so we don't get bogus warnings about sign comparisons.
5866 Add -Wpointer-arith, since that warning is useful (it reports code
5867 that does not conform to C89 and that some compilers reject).
5868 * data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c: Undo latest change,
5869 since it's no longer needed.
5870
5871 2006-08-10 Joel E. Denny <jdenny@ces.clemson.edu>
5872
5873 Clean up scanners a bit.
5874 * src/flex-scanner.h (FLEX_NO_OBSTACK): New macro that blocks obstack
5875 definitions so gcc won't warn when obstack_for_string is unused.
5876 * src/scan-code.l: config.h and system.h are already #include'd by
5877 scan-code-c.c, so get rid of them here.
5878 * src/scan-gram.l: Likewise.
5879 * src/scan-skel.l: Likewise, and use flex-scanner.h without obstack
5880 definitions rather than duplicating the rest of it.
5881 * src/scan-gram-c.c, scan-skel-c.c: #include "system.h".
5882
5883 2006-08-09 Joel E. Denny <jdenny@ces.clemson.edu>
5884
5885 Suppress signed/unsigned comparison warnings for yycheck.
5886 * data/c.m4 (b4_safest_int_type): New macro.
5887 * data/glr.c, data/lalr1.cc: Wherever you compare yycheck[i] against
5888 a signed int type, cast it to b4_safest_int_type first.
5889 * data/yacc.c: Likewise.
5890 (b4_safest_int_type): Overwrite the one from c.m4 since b4_int_type is
5891 also overwritten.
5892
5893 2006-08-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> (tiny change)
5894
5895 * doc/bison.texinfo: Fix some typos.
5896
5897 2006-08-02 Paul Eggert <eggert@cs.ucla.edu>
5898
5899 * m4/.cvsignore: Add inttypes_h.m4,lib-ld.m4, lib-prefix.m4,
5900 po.m4, stdint_h.m4, uintmax_t.m4, ulonglong.m4, warning.m4.
5901
5902 * bootstrap (gnulib_tool): Stop using --assume-autoconf;
5903 the latest gnulib does this a different way.
5904 (get_translations): Sharuzzaman Ahmat Raslan reported that the ms
5905 translation was patched, so stop omitting it.
5906
5907 2006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
5908
5909 Enable declaration of default %printer/%destructor. Make the parser
5910 use these for all user-declared grammar symbols for which the user does
5911 not declare a specific %printer/%destructor. Thus, the parser uses it
5912 for token 0 if the user declares it but not if Bison generates it as
5913 $end. Discussed starting at
5914 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>,
5915 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>,
5916 and
5917 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>.
5918 * NEWS (2.3+): Mention.
5919 * doc/bison.texinfo (Actions in Mid-Rule): It's no longer impossible to
5920 declare a %destructor for a mid-rule's semantic value. It's just
5921 impossible to declare one specific to it.
5922 (Freeing Discarded Symbols): Mention that @$ can be used in %destructor
5923 code. Describe default %destructor form.
5924 * src/parse-gram.y (grammar_declaration): Parse default
5925 %printer/%destructor declarations.
5926 * src/output.c (symbol_destructors_output): Use symbol_destructor_get
5927 and symbol_destructor_location_get rather than accessing the destructor
5928 and destructor_location members of struct symbol.
5929 (symbol_printers_output): Likewise but for %printer's.
5930 * src/reader.c (symbol_should_be_used): Likewise but for %destructor's
5931 again.
5932 * src/symtab.c (default_destructor, default_destructor_location,
5933 default_printer, default_printer_location): New static global
5934 variables to record the default %destructor and %printer.
5935 (symbol_destructor_get, symbol_destructor_location_get,
5936 symbol_printer_get, symbol_printer_location_get): New functions to
5937 compute the appropriate %destructor and %printer for a symbol.
5938 (default_destructor_set, default_printer_set): New functions to set the
5939 default %destructor and %printer.
5940 * src/symtab.h: Prototype all those new functions.
5941 * tests/actions.at (Default %printer and %destructor): New test to
5942 check that the right %printer and %destructor are called, that they're
5943 not called for $end, and that $$ and @$ work correctly.
5944 (Default %printer and %destructor for user-declared end token): New
5945 test to check that the default %printer and %destructor are called for
5946 a user-declared end token.
5947 * tests/input.at (Default %printer and %destructor redeclared, Unused
5948 values with default %destructor): New tests to check related grammar
5949 warnings and errors.
5950
5951 2006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
5952
5953 Clean up handling of %destructor for the end token (token 0).
5954 Discussed starting at
5955 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>
5956 and
5957 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00013.html>.
5958
5959 Make the skeletons consistent in how they pop the end token and invoke
5960 its %destructor.
5961 * data/glr.c (yyrecoverSyntaxError, yyparse): Don't pop the start
5962 state, which has token number 0, since this would invoke the
5963 %destructor for the end token.
5964 * data/lalr1.cc (yy::parser::parse): Don't check for the final state
5965 until after shifting the end token, or else it won't be popped.
5966 * data/yacc.c (yyparse): Likewise.
5967
5968 * data/glr.c (yyparse): Clear the lookahead after shifting it even when
5969 it's the end token. Upon termination, destroy an unshifted lookahead
5970 even when it's the end token.
5971 * data/lalr1.cc (yy::parser::parse): Likewise.
5972 * data/yacc.c (yyparse): Likewise.
5973
5974 * src/reader.c (packgram): Don't check rule 0. This suppresses unused
5975 value warnings for the end token when the user gives the end token a
5976 %destructor.
5977
5978 * tests/actions.at (Printers and Destructors): Test all the above.
5979
5980 2006-07-24 Paul Eggert <eggert@cs.ucla.edu>
5981
5982 Update to latest gnulib and gettext versions.
5983 * bootstrap (gnulib-modules): Remove hard-locale, stdio-safer.
5984 Add fopen-safer.
5985 (gnulib_files): Add m4/warning.m4. Don't worry about files
5986 overwritten by autopoint.
5987 Replace gt_INTL_SUBDIR_CORE with an empty body in m4/gettext_gl.m4.
5988 Suppress "id", "ms", "tr" translations for now, since gettext 0.15
5989 rejects them.
5990 Don't use autoreconf; instead, invoke autopoint etc. by hand,
5991 so that we can remove the intl files at a better time.
5992 (intl_files_to_remove): Remove aclocal.m4, since it gets
5993 rebuilt anyway. Remove m4/inttypes_h.m4, m4/inttypes.m4,
5994 m4/isc-posix.m4, m4/lib-ld.m4, m4/lib-prefix.m4, m4/po.m4,
5995 m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
5996 Add m4/inttypes-h.m4, m4/lock.m4, m4/visibility.m4.
5997 Remove datarootdir hack; no longer needed.
5998 * configure.ac: Use gl_WARNING_CFLAGS rather than BISON_WARNING.
5999 (AM_GNU_GETTEXT_VERSION): Bump from 0.12 to 0.15.
6000 * lib/.cvsignore: Remove hard-locale.c, hard-locale.h, strdup.c,
6001 strdup.h.
6002 * m4/.cvsignore: Remove hard-locale.m4, strdup.m4.
6003 * m4/warning.m4: Remove from CVS, since we now use gnulib's version.
6004
6005 2006-07-20 Paul Eggert <eggert@cs.ucla.edu>
6006
6007 * bootstrap: Adjust to today's change to gnulib-tool by invoking
6008 it with --assume-autoconf='latest-stable'.
6009
6010 2006-07-13 Joel E. Denny <jdenny@ces.clemson.edu>
6011
6012 * src/parse-gram.y (grammar_declaration): Don't confuse Doxygen (at
6013 least 1.4.7 and 1.4.4) by putting a #line between `typedef union
6014 YYSTYPE' and `{'.
6015 * src/muscle_tab.h (muscle_grow): Replace the header comments with
6016 those from muscle_tab.c since the old ones are misleading.
6017
6018 2006-07-13 Akim Demaille <akim@epita.fr>
6019
6020 Support %define "KEY" {VALUE}.
6021 * src/scan-code.h, src/scan-code.l (translate_action)
6022 (translate_rule_action, translate_symbol_action, translate_code):
6023 Return char *, not const char *.
6024 * src/parse-gram.y (declaration): Rename as...
6025 (prologue_declaration): this.
6026 (string_content): Remove this nonterminal, use STRING.
6027 (braceless, content, content.opt): New nonterminal.
6028 Use them.
6029 (%define): Now accept content.opt, i.e., accept also BRACED_CODE
6030 as value.
6031 * src/scan-gram.l (getargs.h): Don't include it.
6032
6033 2006-07-12 Paul Eggert <eggert@cs.ucla.edu>
6034
6035 * data/lalr1.cc (YYCDEBUG): Use 'if (yydebug_) (*yycdebug_)'
6036 rather than a for-loop that declares a local bool variable. This
6037 should work around a compatibility problem with a Cray x1e C++
6038 compiler reported by Hung Nguyen in
6039 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00022.html>.
6040 The for-loop was introduced in the 2004-11-17 change but I don't
6041 know why it was needed.
6042
6043 2006-07-12 Akim Demaille <akim@epita.fr>
6044
6045 * data/c.m4: Comment changes.
6046
6047 2006-07-10 Akim Demaille <akim@lrde.epita.fr>
6048
6049 * src/complain.c (error_message, ERROR_MESSAGE): New.
6050 To factor...
6051 (fatal_at, fatal, warn_at, warn, complain_at, complain): these.
6052 * src/complain.h, src/complain.c (warning_issued): Remove, unused.
6053
6054 2006-07-09 Paul Eggert <eggert@cs.ucla.edu>
6055
6056 * NEWS: Instead of %union, you can define and use your own union type
6057 YYSTYPE if your grammar contains at least one <type> tag.
6058 Your YYSTYPE need not be a macro; it can be a typedef.
6059 * doc/bison.texinfo (Value Type, Multiple Types, Location Type):
6060 (Union Decl, Decl Summary): Document this.
6061 * data/glr.c (YYSTYPE): Implement this.
6062 * data/glr.cc (YYSTYPE): Likewise.
6063 * data/lalr1.cc (YYSTYPE): Likewise.
6064 * data/yacc.c (YYSTYPE): Likewise.
6065 * src/output.c (prepare): Output tag_seen_flag.
6066 * src/parse-gram.y (declaration, grammar_declaration):
6067 Use 'union_seen' rather than 'typed' to determine whether
6068 %union has been seen, since grammars can now be typed without
6069 %union.
6070 (symbol_declaration, type.opt, symbol_def):
6071 Keep track of whether a tag has been seen.
6072 * src/reader.c (union_seen, tag_seen): New vars.
6073 (typed): remove.
6074 * src/reader.h (union_seen, tag_seen, typed): Likewise.
6075 * src/scan-code.l (untyped_var_seen): New variable.
6076 (handle_action_dollar): Adjust to above changes.
6077 (handle_action_dollar, handle_action_at):
6078 Improve overflow checking for outlandish numbers.
6079 * tests/input.at (AT_CHECK_UNUSED_VALUES): Redo test to
6080 avoid new diagnostics generated by above changes.
6081 * tests/regression.at (YYSTYPE typedef): Add test to check
6082 for type tags without %union.
6083
6084 * src/symlist.c (symbol_list_length): Return int, not unsigned
6085 int, since callers expect int. This may need to get revisited
6086 once we have proper integer overflow checking.
6087
6088 * src/scan-gram.h (gram_scanner_cursor): Remove decl, since this
6089 object is now static.
6090
6091 * src/getargs.c (flags_argmatch): Return void, not int,
6092 to pacify ./configure --enable-gcc-warnings.
6093
6094 * src/flex-scanner.h (STRING_FREE): Don't use FLEX_PREFIX (last_string)
6095 since last_string is already defined to FLEX_PREFIX (last_string).
6096
6097 2006-07-09 Akim Demaille <akim@lrde.epita.fr>
6098
6099 Implement --warnings/-W.
6100 * src/getargs.c (report_argmatch, trace_argmatch): Remove,
6101 replaced by...
6102 (flags_argmatch, FLAGS_ARGMATCH): this new function and macro.
6103 Adjust callers.
6104 * src/getargs.h, src/getargs.c (warnings, warnings_flags)
6105 (warnings_args, warnings_types): New.
6106 (getargs, short_options, long_options): Accept -W/--warnings.
6107 Sort the options by alphabetical order, upper case letter right
6108 before its lower case.
6109
6110 2006-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
6111
6112 Change %merge result type clash warnings to errors. Discussed at
6113 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00026.html>.
6114 * src/reader.c (record_merge_function_type): Use complain_at.
6115 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
6116 declared later): Update test case results.
6117
6118 2006-07-09 Akim Demaille <akim@lrde.epita.fr>
6119
6120 * src/getargs.h, src/getargs.c: Swap --report and --trace handling
6121 to be in alphabetical order.
6122 (trace_args): Spelling fixes.
6123
6124 2006-07-09 Paul Eggert <eggert@cs.ucla.edu>
6125
6126 * data/yacc.c (YYID, yy_stack_print): Prefix local vars with "yy"
6127 so they don't collide with user-defined macros.
6128 (yy_stack_print): Don't assume that yytype_int16 promotes to int;
6129 this was never guaranteed, and now that we're using gnulib stdint,
6130 which defines int_fast16_t to long int, the problem is exposed.
6131
6132 2006-07-08 Paul Eggert <eggert@cs.ucla.edu>
6133
6134 * data/c.m4 (b4_basename): Simplify a bit, since we don't
6135 need the full POSIX semantics (and weren't implementing them
6136 anyway).
6137
6138 Adjust to Autoconf 2.60 and today's gnulib.
6139 * bootstrap (gnulib_modules): Add stdint.
6140 Remove special case for m4/onceonly_2_57.m4, since gnulib-tool
6141 no longer copies it.
6142 (intl_files_to_remove): Remove m4/longlong.m4 and m4/wchar_t.m4,
6143 since stdint needs the former and wcwidth (which is now required
6144 by mbswidth) needs the latter.
6145 Append 'datarootdir = @datarootdir@' to po/Makefile.in.in, to
6146 work around a compatibility glitch between gettext 0.14.6 and
6147 Autoconf 2.60.
6148 * configure.ac (AC_PREREQ): Require Autoconf 2.60.
6149 Do not check for uintptr_t, since new stdint module does the right
6150 thing.
6151 * lib/.cvsignore: Remove alloca.c, alloca.h, alloca_.h.
6152 Add stdint.h, stdint_.h, wcwidth.h.
6153 * m4/.cvsignore: Remove alloca.m4, onceonly.m4.
6154 Add absolute-header.m4, double-slash-root.m4, longlong.m4,
6155 stdint.m4, wchar_t.m4, wcwidth.m4.
6156 * src/files.c: Include <dirname.h> and <stdio-safer.h> in the
6157 usual order for ../lib/*.h files.
6158 (file_name_split): Use last_component, not base_name, to adjust
6159 to gnulib changes.
6160 * src/parse-gram.h: Include <strverscmp.h> in the usual order
6161 for ../lib/*.h files.
6162 (YYTYPE_INT16, YYTYPE_INT8, YYTYPE_UINT16, YYTYPE_UINT8):
6163 Define unconditionally, since we now assume the stdint module.
6164 * src/scan-skel.l: Include <dirname.h>.
6165 (BASE_QPUTS): Use last_component, not base_name.
6166 * src/system.h: Include <unlocked-io.h> in the usual order
6167 for ../lib/*.h files. Include <stdint.h> unconditionally,
6168 since we now use the stdint module.
6169 (uintptr_t): Declare if UINTPTR_MAX is not defined, not
6170 HAVE_UINTPTR_T, since we now use the stdint module.
6171 (base_name): Remove decl, since files now include <dirname.h>
6172 to get the decl.
6173
6174 2006-07-08 Akim Demaille <akim@lrde.epita.fr>
6175
6176 * data/c.m4 (b4_location_initial_column, b4_location_initial_line):
6177 New, default to 1.
6178 * data/yacc.c, data/glr.c, data/location.cc: Use them.
6179 * NEWS, doc/bison.texinfo: The initial column and line are 1 by
6180 default.
6181 * tests/calc.at: Adjust.
6182
6183 2006-07-08 Akim Demaille <akim@lrde.epita.fr>
6184
6185 * data/c.m4 (b4_basename): New.
6186 (b4_syncline): Also output the location of its invocation (from
6187 the skeleton).
6188 (b4_user_action, b4_define_user_action, b4_user_actions)
6189 (b4_user_initial_action, b4_user_post_prologue, b4_user_start_header)
6190 (b4_user_stype): New.
6191 * data/yacc.c, data/glr.c, data/lalr1.cc, data/glr.cc: Use them.
6192
6193 2006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
6194
6195 In the grammar file, the first column is 1 not 0 on the first line as
6196 on every other line.
6197 * src/parse-gram.y (%initial-action): Initialize @$ correctly.
6198 * tests/input.at (Torturing the Scanner): Update output.
6199
6200 * src/scan-gram.l (scanner_cursor): Declare it static.
6201
6202 2006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
6203
6204 In warnings, say "previous declaration" rather than "first
6205 declaration".
6206 * src/symtab.c (redeclaration): Do that here.
6207 * src/reader.c (record_merge_function_type): In the case of a result
6208 type clash, report the previous declaration rather than the very first
6209 one in the grammar file.
6210 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
6211 declared later): Add a third declaration to check this behavior.
6212 * tests/input.at (Incompatible Aliases): Update output.
6213
6214 2006-06-27 Akim Demaille <akim@epita.fr>
6215
6216 * doc/Doxyfile.in: New.
6217 * doc/Makefile.am: Use it.
6218 * src/lalr.h, src/symtab.h: Initial doxygenation.
6219
6220 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
6221
6222 Don't miss %merge result type warnings just because the LHS types are
6223 declared after the %merge. This continues the effort of the previous
6224 patch.
6225 * src/reader.c (get_merge_function): Don't set the merger type yet.
6226 (record_merge_function_type): New function for setting the merger type
6227 and checking for clashes.
6228 (grammar_current_rule_merge_set): Set the location of the %merge for
6229 the current rule.
6230 (packgram): Invoke record_merge_function_type for each rule now that
6231 all symbol type declarations have been parsed.
6232 * src/reader.h (merger_list.type_declaration_location): New member
6233 storing the location of the first %merge from which the type for this
6234 merging function was derived.
6235 * src/symlist.h (symbol_list.merger_declaration_location): New member
6236 storing the location of a rule's %merge, if any.
6237 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
6238 declared later): New test to catch the error fixed by the above patch.
6239
6240 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
6241
6242 Get action warnings (grammar_rule_check) right even when symbol
6243 declarations appear after the rules. Discussed at
6244 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00108.html>
6245 and
6246 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00151.html>.
6247 Don't mistake the type of $$ in a midrule to be that of its parent
6248 rule's $$.
6249 * src/reader.c (grammar_current_rule_end): Don't invoke
6250 grammar_rule_check yet since not all symbol declarations may have been
6251 parsed yet.
6252 (grammar_midrule_action): Likewise.
6253 Don't record whether the midrule's $$ has been used yet since actions
6254 haven't been translated yet.
6255 Record the midrule's parent rule and its RHS index within the parent
6256 rule.
6257 (grammar_current_rule_action_append): Don't translate the action yet
6258 since not all symbol declarations may have been parsed yet and, thus,
6259 warnings about types for $$, $n, @$, and @n can't be reported yet.
6260 (packgram): Translate the action and invoke grammar_rule_check now that
6261 all symbol declarations have been parsed.
6262 * src/scan-code.l (handle_action_dollar): Now that this is invoked
6263 after parsing the entire grammar file, the symbol list here in the case
6264 of a midrule is actually the midrule's empty RHS, so reference its
6265 parent rule's RHS where necessary.
6266 On the other hand, now that you can already know it's a midrule, you
6267 aren't forced to think $$ has the same type as its parent rule's $$.
6268 (handle_action_at): In the case of a midrule, reference the parent rule
6269 where necessary.
6270 * src/symlist.c (symbol_list_new): Initialize new midrule-related
6271 members.
6272 (symbol_list_length): Now that this is invoked after all rules have
6273 been parsed, a NULL symbol (rather than a NULL symbol list node)
6274 terminates a rule. symbol_list_print already does this correctly.
6275 * src/symlist.h (symbol_list.midrule_parent_rule,
6276 symbol_list.midrule_parent_rhs_index): New members so that midrules can
6277 remember their relationships with their parents.
6278 * tests/input.at (Type Clashes): Extend to catch the midrule $$ error
6279 fixed by the above patch.
6280 (_AT_UNUSED_VALUES_DECLARATIONS, AT_CHECK_UNUSED_VALUES): New m4 macros
6281 implementing...
6282 (Unused values): ... this old test case and...
6283 (Unused values before symbol declarations): ... this new test case.
6284 This one is the same as `Unused values' except that all symbol
6285 declarations appear after the rules in order to catch the rest of the
6286 errors fixed by the above patch.
6287
6288 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
6289
6290 More cleanup.
6291 * src/reader.c (current_rule): Declare it static since it's no longer
6292 used outside this file.
6293 (grammar_current_rule_action_append): Remove redundant arguments from
6294 translate_rule_action invocation.
6295 * src/reader.h (current_rule): Remove this unused extern.
6296 * src/scan-code.h (translate_rule_action): Remove redundant arguments.
6297 * src/scan-code.l (translate_rule_action): Likewise.
6298
6299 2006-06-25 Joel E. Denny <jdenny@ces.clemson.edu>
6300
6301 Clean up yesterday's patch.
6302 * parse-gram.y (rhs): Move grammar_midrule_action invocation from here
6303 to...
6304 * src/reader.c (grammar_current_rule_action_append): ... here for
6305 consistency with grammar_current_rule_symbol_append.
6306 * tests/regression.at (Braced code in declaration in rules section):
6307 Make yyerror and yylex static as usual.
6308
6309 2006-06-24 Joel E. Denny <jdenny@ces.clemson.edu>
6310
6311 Fix bug that mistakes braced code in a declaration in the rules section
6312 to be a rule action. Mentioned at
6313 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00105.html>.
6314 * src/scan-gram.l: Move midrule action detection from the start of the
6315 scanning of any braced code to...
6316 * src/parse-gram.y (rhs): ... the parsing of braced code as a rule
6317 action. For readability, use $2 and @2 rather than the equivalent
6318 global variables.
6319 * tests/regression.at (Braced code in declaration in rules section):
6320 New test to catch the error fixed by the above patch.
6321
6322 Work on code readability some.
6323 * src/scan-code.l (current_rule): Get rid of this misleading and
6324 redundant declaration: it's actually extern'ed in reader.h.
6325 (YY_DECL, code_lex, handle_action_dollar, handle_action_at,
6326 translate_action): Add a rule argument and use it instead of the global
6327 current_rule.
6328 (translate_rule_action): This already receives current_rule through an
6329 argument, so pass it on to translate_action instead of assigning
6330 current_rule to current_rule.
6331 (translate_symbol_action, translate_code): Pass rule = NULL to
6332 translate_action.
6333
6334 2006-06-23 Joel E. Denny <jdenny@ces.clemson.edu>
6335
6336 Rename %before-definitions to %start-header and %after-definitions to
6337 %end-header. Don't use these declarations to separate pre-prologue
6338 blocks from post-prologue blocks. Add new order-independent
6339 declarations %before-header and %after-header as alternatives to the
6340 traditional Yacc pre-prologue and post-prologue blocks. Discussed at
6341 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00110.html>.
6342 * NEWS (2.3+): Update for these changes.
6343 * data/glr.c (b4_before_definitions): Update to...
6344 (b4_start_header): ... this.
6345 (b4_after_definitions): Update to...
6346 (b4_end_header): ... this.
6347 * data/glr.cc: Likewise.
6348 * data/lalr1.cc: Likewise.
6349 * data/yacc.c: Likewise.
6350 * doc/bison.texinfo (The prologue): Update names, and replace remaining
6351 prologue blocks with %*-header declarations.
6352 (Calc++ Parser): Likewise.
6353 (Decl Summary): Update names.
6354 (Table of Symbols): Update description.
6355 * src/parse-gram.y (PERCENT_AFTER_DEFINITIONS): Update to...
6356 (PERCENT_END_HEADER): ... this.
6357 (PERCENT_BEFORE_DEFINITIONS): Update to...
6358 (PERCENT_START_HEADER): ... this.
6359 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
6360 (declaration): Update token names and m4 macro names.
6361 When parsing %end-header and %start-header, invoke translate_code
6362 before muscle_code_grow, and no longer set global booleans to remember
6363 whether these declarations have been seen.
6364 Parse new %after-header and %before-header.
6365 * src/reader.c (before_definitions, after_definitions): Remove.
6366 (prologue_augment): Accept a new bool argument to specify whether to
6367 augment the pre-prologue or post-prologue.
6368 * src/reader.h (before_definitions, after_definitions): Remove these
6369 extern's.
6370 (prologue_augment): Add new bool argument.
6371 * src/scan-gram.l (PERCENT_AFTER_DEFINITIONS): Update to...
6372 (PERCENT_END_HEADER): ... this.
6373 (PERCENT_BEFORE_DEFINITIONS): Update to...
6374 (PERCENT_START_HEADER): ... this.
6375 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
6376 * tests/actions.at (Printers and Destructors): Update names.
6377
6378 2006-06-22 Joel E. Denny <jdenny@ces.clemson.edu>
6379
6380 Add comparison operators for C++ location classes. Discussed at
6381 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00092.html>.
6382 * data/c++.m4 (b4_define_location_comparison): New boolean %define
6383 declaration indicating whether filename_type has an operator==. If
6384 filename_type is `std::string', it defaults to `1', `0' otherwise.
6385 * data/location.cc: Iff b4_define_location_comparison is `1', add
6386 operator== and operator!= for class position and for class location.
6387
6388 Some minor fixes.
6389 * src/scan-action.l: Remove unused file.
6390 * src/symtab.c (symbol_printer_set): Use printer_location not
6391 destructor_location.
6392 * src/symtab.h (struct symbol): Replace incorrect source comment for
6393 printer members.
6394 * tests/input.at (Incompatible Aliases): Update output with correct
6395 printer location.
6396
6397 2006-06-20 Joel E. Denny <jdenny@ces.clemson.edu>
6398
6399 Don't put the pre-prologue in the header file. For the yacc.c code
6400 file and the glr.c header and code files, move the pre-prologue before
6401 the token definitions. Add new %before-definitions and
6402 %after-definitions to declare code that will go in both the header file
6403 and code file. Discussed at
6404 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00000.html>,
6405 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00016.html>,
6406 and
6407 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00055.html>.
6408 * NEWS (2.3+): Describe these changes.
6409 * data/glr.c (b4_pre_prologue): Move from within to before...
6410 (b4_shared_declarations): ... this.
6411 Add new b4_before_definitions before b4_token_enums.
6412 Add new b4_after_definitions at the end.
6413 * data/glr.cc (b4_pre_prologue): Replace with...
6414 (b4_before_definitions): ... this in the header file.
6415 (b4_after_definitions): New near the end of the header file.
6416 * data/lalr1.cc (b4_pre_prologue): Move from the header file to the
6417 code file right before including the header file.
6418 (b4_before_definitions): New in the previous position of
6419 b4_pre_prologue in the header file.
6420 (b4_after_definitions): New near the end of the header file.
6421 * data/yacc.c: Clean up some m4 quoting especially in the header file.
6422 (b4_token_enums_defines): In the code file, move to right before
6423 YYSTYPE for consistency with the header file.
6424 (b4_before_definitions): New right before b4_token_enums_defines in
6425 both the header and code file.
6426 (b4_after_definitions): New right after YYLTYPE and yylloc in both the
6427 header and code file.
6428 * doc/bison.texinfo (Prologue): Show use of %before-definitions instead
6429 of prologues for %union dependencies.
6430 (Decl Summary): In %defines description, mention the effect of
6431 %before-definitions and %after-definitions on the header file.
6432 (Calc++ Parser): Forward declare driver in a %before-definitions rather
6433 than in the pre-prologue so that make check succeeds.
6434 (Table of Symbols): Add entries for %before-definitions and
6435 %after-definitions.
6436 * src/parse-gram.y (PERCENT_BEFORE_DEFINITIONS): New token for
6437 %before-definitions.
6438 (PERCENT_AFTER_DEFINITIONS): New token for %after-definitions.
6439 (declaration): Parse those declarations and append to
6440 b4_before_definitions and b4_after_definitions, respectively.
6441 * src/reader.c (before_definitions, after_definitions): New bools to
6442 track whether those declarations have been seen.
6443 (prologue_augment): Add to the post-prologue if %union,
6444 %before-definitions, or %after-definitions has been seen.
6445 * src/reader.h (before_definitions, after_definitions): New extern's.
6446 * src/scan-gram.l: Scan the new declarations.
6447 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Place the second
6448 prologue block in a %before-definitions or a %after-definitions based
6449 on whether the %union is declared.
6450 * tests/regression.at (Early token definitions with --yacc, Early token
6451 definitions without --yacc): Move tests for token definitions into the
6452 post-prologue since token names are no longer defined in the
6453 pre-prologue.
6454
6455 2006-06-20 Akim Demaille <akim@epita.fr>
6456
6457 * src/symtab.h, src/symtab.c (symbol_from_uniqstr): New.
6458 (symbol_get): Use it.
6459 * src/parse-gram.y: Use it.
6460
6461 2006-06-19 Joel E. Denny <jdenny@ces.clemson.edu>
6462
6463 * src/scan-gram.l: Remove unused declaration of last_string_1 so the
6464 build succeeds when configured with --enable-gcc-warnings.
6465
6466 2006-06-19 Paul Eggert <eggert@cs.ucla.edu>
6467
6468 * src/parse-gram.y (char_name): New function.
6469 (CHAR, STRING, string_content): For %printer, properly escape.
6470 (ID): Prefer fputs to fprintf.
6471 (id): Reindent to be consistent with other rules.
6472 Properly quote char.
6473
6474 The Translation Project changed its way of publishing translations
6475 to maintainers. I haven't received any responses to my request
6476 for supporting the old way, or for documenting the new way. I
6477 have modified 'bootstrap' to use screen scraping
6478 (in this case, HTML scraping). This is unreliable and inelegant,
6479 but I don't see any better way. Yuck.
6480 * bootstrap (TP_URL, WGET_COMMAND): New vars.
6481 (get_translations): New function, which uses HTML scraping to
6482 deduce locations of latest translations.
6483 Use this function to grab both bison and bison-runtime .po files.
6484 Don't bother priming the pump for the runtime-po domain any more,
6485 as it's now translated better than bison is.
6486
6487 2006-06-19 Akim Demaille <akim@epita.fr>
6488
6489 * src/scan-gram.l: No longer "parse" things after `%union' until
6490 `{'. Rather, return a single "%union" token.
6491 No longer make symbols: return strings, and leave the conversion
6492 to symbols to the parser.
6493 (SC_PRE_CODE, token_type): Remove.
6494 * src/parse-gram.y (%union): New field `character'.
6495 Sort tokens.
6496 (CHAR): New token.
6497 (ID, ID_COLON): Now that the scanner no longer makes them
6498 identifiers, adjust all uses to invoke symbol_get.
6499 (id_colon): New, wraps the conversion from string to symbol.
6500 (%union): Accept a possible union_name.
6501 (symbol): Now can be a char.
6502 * data/c.m4 (b4_union_name): Leave a default value.
6503 * data/glr.c, data/yacc.c: Use it.
6504
6505 2006-06-11 Joel E. Denny <jdenny@ces.clemson.edu>
6506
6507 For associating token numbers with token names for "yacc.c", don't use
6508 #define statements unless `--yacc' is specified; always use enum
6509 yytokentype. Most important discussions start at:
6510 <http://lists.gnu.org/archive/html/bison-patches/2005-09/msg00053.html>,
6511 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00052.html>,
6512 and
6513 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00043.html>.
6514 * NEWS (2.3+): Mention.
6515 * data/c.m4 (b4_yacc_if): New.
6516 (b4_token_enums_defines): Use b4_yacc_if to decide whether to add the
6517 token #define's.
6518 * doc/bison.texinfo (Bison Options): Describe the effect of `--yacc'
6519 on token name definitions.
6520 * src/getargs.c (usage): Capitalize `Yacc' in English.
6521 * src/output.c (prepare): Define b4_yacc_flag.
6522 * tests/regression.at (Early token definitions): Test that tokens names
6523 are defined before the pre-prologue not just before the post-prologue.
6524 Remove this test case and copy to...
6525 (Early token definitions with --yacc): ... this to test #define's.
6526 (Early token definitions without --yacc): ... and this to test enums.
6527
6528 2006-06-11 Paul Eggert <eggert@cs.ucla.edu>
6529
6530 * NEWS: Reword the post-2.3 change to not be so optimistic about
6531 removing the old "look-ahead" spelling.
6532 Update previous look-ahead/lookahead change reports.
6533 * REFERENCES: look-ahead -> lookahead (since that's
6534 what he actually wrote).
6535 * doc/refcard.tex: look ahead -> lookahead,
6536 look-ahead -> lookahead
6537
6538 2006-06-09 Joel E. Denny <jdenny@ces.clemson.edu>
6539
6540 For consistency, use `lookahead' instead of `look-ahead' or
6541 `look_ahead'. Discussed starting at
6542 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00049.html>
6543 and then at
6544 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00017.html>.
6545 * NEWS: For the next release, note the change to `--report'.
6546 * TODO, doc/bison.1: Update English.
6547 * doc/bison.texinfo: Update English.
6548 (Understanding Your Parser, Bison Options): Document as
6549 `--report=lookahead' rather than `--report=look-ahead'.
6550 * src/conflicts.c: Update English in comments.
6551 (lookahead_set): Rename from look_ahead_set.
6552 (flush_reduce): Rename argument look_ahead_tokens to lookahead_tokens.
6553 (resolve_sr_conflict): Rename local look_ahead_tokens to
6554 lookahead_tokens, and update other uses.
6555 (flush_shift, set_conflicts, conflicts_solve, count_sr_conflicts,
6556 count_rr_conflicts, conflicts_free): Update uses.
6557 * src/getargs.c (report_args): Move "lookahead" before alternate
6558 spellings.
6559 (report_types): Update uses.
6560 (usage): For `--report' usage description, state `lookahead' spelling
6561 rather than `look-ahead'.
6562 * src/getargs.h (report.report_lookahead_tokens): Rename from
6563 report_look_ahead_tokens.
6564 * src/lalr.c: Update English in comments.
6565 (compute_lookahead_tokens): Rename from compute_look_ahead_tokens.
6566 (state_lookahead_tokens_count): Rename from
6567 state_look_ahead_tokens_count.
6568 Rename local n_look_ahead_tokens to n_lookahead_tokens.
6569 (lookahead_tokens_print): Rename from look_ahead_tokens_print.
6570 Rename local n_look_ahead_tokens to n_lookahead_tokens.
6571 Update other uses.
6572 Update English in output.
6573 (add_lookback_edge, initialize_LA, lalr, lalr_free): Update uses.
6574 * src/print.c: Update English in comments.
6575 (lookahead_set): Rename from look_ahead_set.
6576 (print_reduction): Rename argument lookahead_token from
6577 look_ahead_token.
6578 (print_core, state_default_rule, print_reductions, print_results):
6579 Update uses.
6580 * src/print_graph.c: Update English in comments.
6581 (print_core): Update uses.
6582 * src/state.c: Update English in comments.
6583 (reductions_new): Update uses.
6584 (state_rule_lookahead_tokens_print): Rename from
6585 state_rule_look_ahead_tokens_print, and update other uses.
6586 * src/state.h: Update English in comments.
6587 (reductions.lookahead_tokens): Rename from look_ahead_tokens.
6588 (state_rule_lookahead_tokens_print): Rename from
6589 state_rule_look_ahead_tokens_print.
6590 * src/tables.c: Update English in comments.
6591 (conflict_row, action_row): Update uses.
6592 * tests/glr-regression.at
6593 (Incorrect lookahead during deterministic GLR,
6594 Incorrect lookahead during nondeterministic GLR): Rename
6595 print_look_ahead to print_lookahead.
6596 * tests/torture.at: Update English in comments.
6597 (AT_DATA_LOOKAHEAD_TOKENS_GRAMMAR): Rename from
6598 AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR.
6599 (Many lookahead tokens): Update uses.
6600 * data/glr.c: Update English in comments.
6601 * lalr1.cc: Likewise.
6602 * yacc.c: Likewise.
6603 * src/conflicts.h: Likewise.
6604 * src/lalr.h: Likewise.
6605 * src/main.c: Likewise.
6606 * src/output.c: Likewise.
6607 * src/parse-gram.c: Likewise.
6608 * src/tables.h: Likewise.
6609 * tests/calc.at: Likewise.
6610
6611 2006-06-08 Joel E. Denny <jdenny@ces.clemson.edu>
6612
6613 * src/flex-scanner.h (yytext): Remove stray `*/' in #define.
6614
6615 2006-06-07 Paul Eggert <eggert@cs.ucla.edu>
6616
6617 * TODO: Add request from Nelson H. F. Beebe to be able to install
6618 Bison without installing the yacc script.
6619
6620 2006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
6621
6622 * src/flex-scanner.h: For the sake of Flex 2.5.4, don't #define yyleng
6623 and yytext if they're already #define'd.
6624 * src/flex-scanner.h, src/location.h: Move #include "system.h" to...
6625 * src/scan-code-c.c: ... here.
6626 * src/scan-code.l, src/scan-gram.l: ... and here. Also #include
6627 <config.h>.
6628
6629 2006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
6630
6631 Get Bison to build again when configured with --enable-gcc-warnings.
6632 * src/location.c, src/location.h, src/main.c, src/scan-code.l: Add some
6633 missing #include's.
6634 * src/scan-code.l (handle_action_dollar, handle_action_at): Rename
6635 loc argument as it shadows a global.
6636 * src/scan-gram.l: Remove stray comma that prevents boundary_set
6637 invocation.
6638
6639 * src/.cvsignore: Add scan-code.c.
6640
6641 2006-06-07 Akim Demaille <akim@epita.fr>
6642
6643 * src/scan-gram.l: Move the "add a trailing ; to actions" code
6644 to...
6645 * src/scan-code.l: here.
6646 * tests/input.at (Torturing the Scanner): Fix another location
6647 error.
6648
6649 2006-06-07 Akim Demaille <akim@epita.fr>
6650
6651 * src/Makefile.am (BUILT_SOURCES): Fix the trailing backslash.
6652
6653 2006-06-06 Akim Demaille <akim@epita.fr>
6654
6655 Extract the parsing of user actions from the grammar scanner.
6656 As a consequence, the relation between the grammar scanner and
6657 parser is much simpler. We can also split "composite tokens" back
6658 into simple tokens.
6659 * src/gram.h (ITEM_NUMBER_MAX, RULE_NUMBER_MAX): New.
6660 * src/scan-gram.l (add_column_width, adjust_location): Move to and
6661 rename as...
6662 * src/location.h, src/location.c (add_column_width)
6663 (location_compute): these.
6664 Fix the column count: the initial column is 0.
6665 (location_print): Be robust to ending column being 0.
6666 * src/location.h (boundary_set): New.
6667 * src/main.c: Adjust to scanner_free being renamed as
6668 gram_scanner_free.
6669 * src/output.c: Include scan-code.h.
6670 * src/parse-gram.y: Include scan-gram.h and scan-code.h.
6671 Use boundary_set.
6672 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_INITIAL_ACTION)
6673 (PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Remove the {...} part,
6674 which is now, again, a separate token.
6675 Adjust all dependencies.
6676 Whereever actions with $ and @ are used, use translate_code.
6677 (action): Remove this nonterminal which is now useless.
6678 * src/reader.c: Include assert.h, scan-gram.h and scan-code.h.
6679 (grammar_current_rule_action_append): Use translate_code.
6680 (packgram): Bound check ruleno, itemno, and rule_length.
6681 * src/reader.h (gram_in, gram__flex_debug, scanner_cursor)
6682 (last_string, last_braced_code_loc, max_left_semantic_context)
6683 (scanner_initialize, scanner_free, scanner_last_string_free)
6684 (gram_out, gram_lineno, YY_DECL_): Move to...
6685 * src/scan-gram.h: this new file.
6686 (YY_DECL): Rename as...
6687 (GRAM_DECL): this.
6688 * src/scan-code.h, src/scan-code.l, src/scan-code-c.c: New.
6689 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
6690 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
6691 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
6692 Move these declarations, and...
6693 (obstack_for_string, STRING_GROW, STRING_FINISH, STRING_FREE):
6694 these to...
6695 * src/flex-scanner.h: this new file.
6696 * src/scan-gram.l (rule_length, rule_length_overflow)
6697 (increment_rule_length): Remove.
6698 (last_braced_code_loc): Rename as...
6699 (gram_last_braced_code_loc): this.
6700 Adjust to the changes of the parser.
6701 Move all the handling of $ and @ into...
6702 * src/scan-code.l: here.
6703 * src/scan-gram.l (handle_dollar, handle_at): Remove.
6704 (handle_action_dollar, handle_action_at): Move to...
6705 * src/scan-code.l: here.
6706 * src/Makefile.am (bison_SOURCES): Add flex-scanner.h,
6707 scan-code.h, scan-code-c.c, scan-gram.h.
6708 (EXTRA_bison_SOURCES): Add scan-code.l.
6709 (BUILT_SOURCES): Add scan-code.c.
6710 (yacc): Be robust to white spaces.
6711
6712 * tests/conflicts.at, tests/input.at, tests/reduce.at,
6713 * tests/regression.at: Adjust the column numbers.
6714 * tests/regression.at: Adjust the error message.
6715
6716 2006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
6717
6718 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
6719 Use Akim's wording from
6720 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00056.html>.
6721
6722 2006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
6723
6724 Between Bison releases, manually append `+' to the previous Bison
6725 release number, and use that as a signal to automatically print the
6726 ChangeLog's CVS Id keyword from --version. Discussed starting at
6727 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00028.html>.
6728 * ChangeLog: Add Id header.
6729 * configure.ac (AC_INIT): Append `+' to `2.3'.
6730 * src/.cvsignore: Add revision.c.
6731 * src/Makefile.am (bison_SOURCES): Add revision.c and revision.h.
6732 (BUILT_SOURCES): Add revision.c.
6733 (revision.c): New target rule. This file defines a new global variable
6734 named revision. It initializes it with either the Id from ChangeLog
6735 or, if VERSION doesn't contain `+', with the empty string.
6736 * src/getargs.c (version): Print the value of revision.
6737 * src/revision.h: Extern revision.
6738
6739 2006-06-05 Paul Eggert <eggert@cs.ucla.edu>
6740
6741 * NEWS: Version 2.3.
6742 * configure.ac (AC_INIT): Likewise.
6743
6744 2006-05-30 Paul Eggert <eggert@cs.ucla.edu>
6745
6746 * data/glr.c (YYRECOVERING): Define to be a function-like macro
6747 with no arguments, not as an object-like macro. This is for
6748 compatibility with data/yacc.c. Problem reported by John P. Hartmann in
6749 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00059.html>.
6750 * doc/bison.texinfo (Action Features, Error Recovery, Table of Symbols):
6751 Document this.
6752
6753 2006-05-30 Joel E. Denny <jdenny@ces.clemson.edu>
6754
6755 * src/getargs.c (usage): Back out yesterday's modification of the
6756 --help output so that we don't have to wait for translation before
6757 releasing 2.3.
6758
6759 2006-05-29 Paul Eggert <eggert@cs.ucla.edu>
6760
6761 * doc/bison.texinfo (Introduction): Don't say "GLR grammar".
6762 Problem reported by Akim Demaille.
6763
6764 2006-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
6765
6766 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
6767
6768 2006-05-26 Paul Eggert <eggert@cs.ucla.edu>
6769
6770 * data/yacc.c (yy_reduce_print): Omit trailing white space in
6771 generated source code. Problem reported by Frans Englich in
6772 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00049.html>.
6773
6774 2006-05-22 Paul Eggert <eggert@cs.ucla.edu>
6775
6776 * Makefile.maint (gzip_rsyncable, GZIP_ENV): Compute within the
6777 shell, not within 'make', so that 'make' by an ordinary builder
6778 (using GNU make) does not worry about configuring gzip. This also
6779 works around a bug reported independently by Keith Thompson and by
6780 Georg Schwarz, whereby gzip 1.2.4 --help would output usage on
6781 stderr rather than stdout, messing up the build logs.
6782
6783 2006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
6784
6785 * data/yacc.c (yyparse): Wrap the final return from yyparse inside YYID
6786 to make sure that YYID will never be unused. This fixes a 'make
6787 maintainer-check' failure caused by the recent changes to the 'Trivial
6788 grammars' test case, which caused g++ 4.1.0 to complain that YYID was
6789 not used.
6790 * data/glr.c (yyparse): Wrap yyparse's return inside YYID just in case.
6791
6792 2006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
6793
6794 * data/glr.c (yyresolveLocations): Remove bogus YYASSERT that the
6795 state before an empty RHS is always resolved here. Only the location
6796 of that state is guaranteed to be resolved, and that's enough. This
6797 fixes the remaining bug reported by Derek M. Jones in
6798 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
6799 * tests/glr-regression.at (Uninitialized location when reporting
6800 ambiguity): Test the above case.
6801 Also, the embedded comments in this test case claim it checks the case
6802 of an empty RHS that has inherited the initial location. However, the
6803 corresponding LHS was already resolved, so yyresolveLocations didn't
6804 actually have reason to modify it. Fix this by forcing
6805 nondeterministic operation at the beginning of the parse.
6806
6807 2006-05-20 Paul Eggert <eggert@cs.ucla.edu>
6808
6809 * data/c.m4 (b4_yy_symbol_print_generate):
6810 (b4_yy_symbol_print_generate): Use 'YYSTYPE const' rather than
6811 'const YYSTYPE', and similarly for YYLTYPE. This fixes one
6812 of the bugs reported today by Derek M Jones in
6813 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
6814 * doc/bison.texinfo (Value Type): Document that YYSTYPE must be
6815 defined to be a type name without parens or brackets.
6816 (Location Type): Similarly for YYLTYPE.
6817 * tests/regression.at (Trivial grammars): Put in a test for this
6818 bug that will be caught by 'make maintainer-check' (though not,
6819 alas, by 'make check' unless your compiler is picky).
6820
6821 2006-05-19 Paul Eggert <eggert@cs.ucla.edu>
6822
6823 * NEWS: Version 2.2.
6824 * configure.ac (AC_INIT): Likewise.
6825
6826 2006-05-17 Joel E. Denny <jdenny@ces.clemson.edu>
6827
6828 * data/glr.c (yyreportTree): Make room in yystates for the state
6829 preceding the RHS. This fixes the segmentation fault reported by Derek
6830 M. Jones in
6831 <http://lists.gnu.org/archive/html/help-bison/2006-05/msg00035.html>.
6832 (yyreportTree, yypdumpstack): Subtract 1 from yyrule before printing
6833 to the user. Reported for yyreportTree by Derek M. Jones later in the
6834 same thread.
6835 * THANKS: Add Derek M. Jones.
6836 Update my email address.
6837 Fix typo in Steve Murphy's name.
6838
6839 2006-05-14 Paul Eggert <eggert@cs.ucla.edu>
6840
6841 * data/glr.c (yyreportSyntaxError): Fix off-by-one error in
6842 checking against YYLAST that caused the parser to miss a potential
6843 alternative in its diagnostic.
6844 Problem reported by Maria Jose Moron Fernandez in
6845 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00024.html>.
6846 * data/lalr1.cc (yysyntax_error_): Likewise.
6847 * data/yacc.c (yysyntax_error): Likewise.
6848 * tests/regression.at (_AT_DATA_DANCER_Y): Use static array for
6849 tokens, in case we run into an older C compiler.
6850 (_AT_DATA_EXPECT2_Y, AT_CHECK_EXPECT2): New macros.
6851 Use them to check for the off-by-one error fixed above.
6852
6853 * data/yacc.c (yytnamerr): Fix typo: local var should be of type
6854 YYSIZE_T, not size_t.
6855 * tests/regression.at (Trivial grammars): New test, to catch
6856 the error fixed by the above patch.
6857
6858 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
6859
6860 * doc/bison.texinfo (C++ Bison Interface): Clarify the naming
6861 scheme.
6862 Reported by Steve Murphy.
6863
6864 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
6865
6866 * data/glr.cc, data/lalr1.cc: Using %defines is mandatory.
6867 * data/glr.cc: b4_location_flag is now b4_locations_flag.
6868
6869 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
6870
6871 Implement --trace=m4.
6872 * src/getargs.c (trace_types, trace_args): Accept trace_m4.
6873 * src/output.c (output_skeleton): When set, pass -dV to m4.
6874
6875 Factor the handling of flags in m4.
6876 * src/output.c (prepare): Rename the muscle names debug, defines,
6877 error_verbose to debug_flag, defines_flag, error_verbose_flag.
6878 * data/c.m4: Adjust.
6879 (_b4_define_flag_if, b4_define_flag_if, b4_defines_if): New.
6880 Use b4_define_flag_if to define other b4_FLAG_if macros.
6881 (b4_location_if): As a consequence, rename as...
6882 (b4_locations_if): this, for consistency.
6883 Adjust all the skeletons.
6884
6885 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
6886
6887 * etc/bench.pm: Shorten bench names.
6888
6889 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
6890
6891 * src/output.h, src/output.c (error_verbose): Move to...
6892 * src/getargs.h, src/getargs.c: here.
6893 Sort the flags.
6894 Adjust dependencies.
6895
6896 2006-05-13 Paul Eggert <eggert@cs.ucla.edu>
6897
6898 * data/c.m4 (b4_copyright): Put the special exception for Bison
6899 skeletons here, so we don't have to put it in each skeleton. All
6900 uses changed. Suggested by Akim Demaille. Also, wrap the
6901 copyright notice, in case it is longer than 80 columns. Replace
6902 comma by newline after title.
6903
6904 2006-05-11 Paul Eggert <eggert@cs.ucla.edu>
6905
6906 * doc/bison.texinfo (Calc++ Scanner): The flex behavior is an
6907 incompatibility, not a bug. Mention that it wasn't fixed as of
6908 flex 2.5.33.
6909
6910 2006-05-11 Akim Demaille <akim@lrde.epita.fr>
6911
6912 * examples/extexi: Enforce the precedence of concatenation over
6913 >>.
6914 Reported by Tommy Nordgren.
6915
6916 2006-05-11 Akim Demaille <akim@lrde.epita.fr>
6917
6918 * data/lalr1.cc (yytranslate_): Rename token as t to avoid clashes
6919 with the member "token".
6920 Reported by Martin Nylin.
6921
6922 2006-05-08 Paul Eggert <eggert@cs.ucla.edu>
6923
6924 * data/glr.c: Switch to Bison 2.2 special-exception language in
6925 the copyright notice. Use more-regular format for titles and
6926 copyright notices.
6927 * data/glr.cc: Likewise.
6928 * data/location.cc: Likewise.
6929 * data/yacc.cc: Likewise.
6930 * doc/bison.texinfo (Conditions): Document this.
6931 * NEWS: likewise. Upgrade version to 2.2.
6932
6933 2006-04-27 Akim Demaille <akim@lrde.epita.fr>
6934
6935 * data/glr.cc: Remove dead code.
6936
6937 2006-04-25 Paul Eggert <eggert@cs.ucla.edu>
6938
6939 * bootstrap: Comment out the AM_CPPFLAGS line, since we don't use
6940 that variable and the line breaks the bootstrap. Problem reported
6941 by Juan M. Guerrero.
6942
6943 2006-04-24 Akim Demaille <akim@lrde.epita.fr>
6944
6945 * doc/bison.texinfo (Multiple start-symbols): New.
6946
6947 2006-04-24 Akim Demaille <akim@lrde.epita.fr>
6948
6949 * etc/README, etc/bench.pl: New.
6950
6951 2006-04-03 Akim Demaille <akim@lrde.epita.fr>
6952
6953 * src/scan-gram.l: Be robust to BRACED_CODE appearing before any
6954 rule.
6955 Reported by Mickael Labau.
6956 * tests/input.at (Torturing the Scanner): Test it.
6957
6958 2006-03-16 Paul Eggert <eggert@cs.ucla.edu>
6959
6960 * doc/bison.texinfo (Decl Summary): Don't mention yylloc twice.
6961 Problem reported by Bob Rossi.
6962
6963 2006-03-13 Paul Eggert <eggert@cs.ucla.edu>
6964
6965 * doc/bison.texinfo: Remove @shorttitlepage stuff; it wasn't used
6966 and didn't really work.
6967 For the index, use @ifnotinfo, not @iftex.
6968 Minor cleanups of spacing and terminology.
6969
6970 2006-03-12 Akim Demaille <akim@lrde.epita.fr>
6971
6972 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Fix the definition
6973 of AT_NAME_PREFIX when %name-prefix is not used.
6974
6975 2006-03-12 Akim Demaille <akim@lrde.epita.fr>
6976
6977 Apply --prefix to C++ skeletons too: they change the namespace.
6978 The test suite already exercize these cases.
6979 * data/c++.m4 (b4_namespace): New.
6980 * data/lalr1.cc, data/glr.cc, data/location.cc: Use it instead of `yy'.
6981 * data/lalr1.cc (yytnameerr_): Move its definition into the namespace.
6982 * data/yacc.c, data/glr.c: Remove a useless `[]'.
6983 * doc/bison.texinfo: Document it.
6984 (Option Cross Key): Use @multitable in all formats. It looks
6985 nicer, even in TeX outputs.
6986 (Rules): Use the same code whatever the output type is.
6987 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS)
6988 (_AT_BISON_OPTION_POPDEFS): Support AT_NAME_PREFIX.
6989 * tests/calc.at: Use it, instead of hard coding `yy'.
6990
6991 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
6992
6993 * TODO: Remove dead items.
6994
6995 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
6996
6997 * doc/FAQ: Remove, merged into...
6998 * doc/bison.texinfo (FAQ): this.
6999 * doc/Makefile.am (EXTRA_DIST): Adjust.
7000
7001 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
7002
7003 * data/c.m4 (b4_token_enum): Always define the enum of tokens,
7004 even if empty.
7005 * data/lalrl1.cc, data/glr.cc (parser::token_type): New.
7006 * doc/bison.texinfo (Calc++ Scanner): Use it.
7007
7008 2006-03-09 Paul Eggert <eggert@cs.ucla.edu>
7009
7010 Fix two nits reported by twlevo, plus one more that I discovered.
7011
7012 * src/assoc.h (assoc_to_string): Give a name to the arg, as
7013 this is the usual Bison style.
7014 * src/location.h (location_print): Likewise.
7015
7016 * src/reader.h (token_name): Likewise.
7017
7018 2006-03-08 Paul Eggert <eggert@cs.ucla.edu>
7019
7020 Fix some nits reported by twlevo.
7021 * doc/FAQ: Remove ancient Y2K FAQ, replacing it with "secure"
7022 and "POSIX". Use more-modern syntax for URLs. Mention C++
7023 and ask for Java. Don't hardwire OS version numbers. Add
7024 copyright notice.
7025 * m4/.cvsignore: Add unistd_h.m4, for latest gnulib.
7026 * src/conflicts.c (solved_conflicts_obstack): Now static.
7027
7028 2006-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
7029
7030 * doc/bison.texinfo (Introduction): Mention GLR and C++ as on the web
7031 page. Say "you can use it" not "you may use it" as on the web page;
7032 we're describing capabilities not granting permission.
7033
7034 2006-03-06 Paul Eggert <eggert@cs.ucla.edu>
7035
7036 * data/glr.c (yyresolveLocations): Rename local variables to avoid
7037 shadowing warnings. Use usual patter for iterating through RHS.
7038 * tests/glr-regression.at
7039 (Uninitialized location when reporting ambiguity):
7040 Modify yylex so that it uses its argument, rather than trying
7041 to rely on ARGSUSED (which doesn't work for gcc with warnings).
7042 const char -> char const.
7043
7044 * tests/Makefile.am ($(srcdir)/package.m4, maintainer-check-valgrind):
7045 Don't use tabs inside commands; it messes up 'ps'.
7046 Problem reported by twlevo.
7047
7048 2006-03-06 Joel E. Denny <jdenny@ces.clemson.edu>
7049
7050 * tests/glr-regression.at (Uninitialized location when reporting
7051 ambiguity): New test case.
7052 * data/glr.c (yyresolveLocations): New function, which uses
7053 YYLLOC_DEFAULT.
7054 (yyresolveValue): Invoke yyresolveLocations before reporting an
7055 ambiguity.
7056 * doc/bison.texinfo (Default Action for Locations): Note
7057 YYLLOC_DEFAULT's usage for ambiguity locations.
7058 (GLR Semantic Actions): Cross-reference those notes.
7059
7060 2006-03-04 Joel E. Denny <jdenny@ces.clemson.edu>
7061
7062 * tests/glr-regression.at (Leaked semantic values when reporting
7063 ambiguity): Remove unnecessary union and type declarations.
7064 (Leaked lookahead after nondeterministic parse syntax error): New test
7065 case.
7066 * data/glr.c (yyparse): Check for zero stacks remaining before
7067 attempting to shift the lookahead so that you don't lose it.
7068
7069 2006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
7070
7071 Avoid memory leaks by not invoking longjmp in yyreportAmbiguity.
7072 * tests/glr-regression.at (Leaked semantic values when reporting
7073 ambiguity): New test case.
7074 * data/glr.c (yyreportAmbiguity): Invoke yyyerror directly and return
7075 yyabort rather than invoking yyFail, which invokes longjmp. Remove the
7076 now unnecessary yystackp parameter.
7077 (yyresolveValue): Return yyreportAmbiguity's result. Now the necessary
7078 destructors can be called.
7079
7080 * tests/glr-regression.at: Don't invoke bison with `-t' unnecessarily
7081 in existing testcases.
7082
7083 2006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
7084
7085 Don't leak semantic values for parent RHS when a user action cuts the
7086 parser, and clean up related code a bit.
7087 * tests/glr-regression.at (Leaked merged semantic value if user action
7088 cuts parse): Rename to...
7089 (Leaked semantic values if user action cuts parse): ... this. Add check
7090 for leaked parent RHS values.
7091 * data/glr.c (yydestroyGLRState): In debugging output, distinguish
7092 between an unresolved state (non-empty chain of semantic options) and
7093 an incomplete one (signaled by an empty chain).
7094 (yyresolveStates): Document the interface. Move all manipulation of a
7095 successfully or unsuccessfully resolved yyGLRState to...
7096 (yyresolveValue): ... here so that yyresolveValue always leaves a
7097 yyGLRState with consistent data and thus is easier to understand.
7098 Remove the yyvalp and yylocp parameters since they are always just
7099 taken from the yys parameter. When reporting a discarded merged value
7100 in debugging output, note that it is incompletely merged. Document the
7101 interface.
7102 (yyresolveAction): If resolving any of the RHS states fails, destroy
7103 them all rather than leaking them. Thus, as long as user actions are
7104 written to clean up the RHS correctly, yyresolveAction always cleans up
7105 the RHS of a semantic option. Document the interface.
7106
7107 2006-02-27 Paul Eggert <eggert@cs.ucla.edu>
7108
7109 * data/glr.c (yyexpandGLRStack): Catch an off-by-one error that
7110 led to a segmentation fault in GNU Pascal. Problem reported
7111 by Waldek Hebisch.
7112
7113 2006-02-21 Joel E. Denny <jdenny@ces.clemson.edu>
7114
7115 * doc/bison.texinfo (Mid-Rule Actions): Explain how to bury a
7116 mid-rule action inside a nonterminal symbol in order to declare a
7117 destructor for its semantic value.
7118
7119 2006-02-16 Paul Eggert <eggert@cs.ucla.edu>
7120
7121 * data/yacc.c [(! defined yyoverflow || YYERROR_VERBOSE) && !
7122 YYSTACK_USE_ALLOCA && ! defined YYSTACK_ALLOC && defined
7123 __cplusplus && ! defined _STDLIB_H && !
7124 ((defined YYMALLOC || defined malloc) && (defined YYFREE ||
7125 defined free))]: Include <stdlib.h> rather than rolling our own
7126 declarations of malloc and free, to avoid problems with
7127 incompatible declarations (using 'throw') C++'s stdlib.h. This
7128 should fix Debian bug 340012
7129 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=340012>,
7130 reported by Guillaume Melquiond.
7131
7132 2006-02-13 Paul Eggert <eggert@cs.ucla.edu>
7133
7134 * NEWS: Clarify symbols versus types in unused-value warnings.
7135
7136 * configure.ac (AC_INIT): Bump version number.
7137
7138 2006-02-13 Paul Eggert <eggert@cs.ucla.edu>
7139
7140 * NEWS: Version 2.1a.
7141 * tests/headers.at (AT_TEST_CPP_GUARD_H): Declare yyerror and yylex,
7142 since C99 requires this.
7143
7144 2006-02-11 Paul Eggert <eggert@cs.ucla.edu>
7145
7146 * m4/c-working.m4: New file.
7147 * configure.ac (BISON_TEST_FOR_WORKING_C_COMPILER): Use it.
7148
7149 2006-02-10 Paul Eggert <eggert@cs.ucla.edu>
7150
7151 * Makefile.maint: Merge from coreutils.
7152
7153 2006-02-09 Paul Eggert <eggert@cs.ucla.edu>
7154
7155 More portability fixes for problems summarized by Nelson H. F. Beebe.
7156
7157 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Catch a
7158 configuration screwup "./configure CC=/opt/SUNWspro/bin/c89
7159 CFLAGS="-xarch=generic64" CXX=/opt/SUNWspro/bin/CC
7160 LDFLAGS="-xarch=generic64" with Sun C 5.7 on Solaris 10; this
7161 messes up because C++ code is compiled in 32-bit mode but linked
7162 in 64-bit mode.
7163
7164 2006-02-08 Paul Eggert <eggert@cs.ucla.edu>
7165
7166 More portability fixes for problems summarized by Nelson H. F. Beebe.
7167
7168 * doc/bison.texinfo (Calc++ Scanner): Work around a bug in flex
7169 2.5.31. This resembles the 2005-10-10 patch to src/scan-skel.l.
7170
7171 * examples/calc++/Makefile.am (check_PROGRAMS): Renamed from
7172 nodist_PROGRAMS, since we don't need to actually compile the
7173 example if we're just doing a plain 'make'. This avoids bothering
7174 the installer unnecessarily about problems due to weird C++
7175 compilers.
7176
7177 2006-02-06 Paul Eggert <eggert@cs.ucla.edu>
7178
7179 More portability fixes for problems summarized by Nelson H. F. Beebe.
7180
7181 * tests/headers.at (AT_TEST_CPP_GUARD_H): Use #include <...> rather
7182 than #include "...", and compile with -I'.'. The old method was
7183 not portable, according to Posix and the C standard, and it does
7184 not work with Sun C 5.7, where previous #line directives affect
7185 the working directory used in later #include "..." directives.
7186
7187 2006-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
7188
7189 Various DJGGP specific issues in /djgpp
7190
7191 2006-02-02 Paul Eggert <eggert@cs.ucla.edu>
7192
7193 More portability fixes for problems summarized by Nelson H. F. Beebe.
7194
7195 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check that
7196 '#include <map>' works and that you can apply ++ to iterators.
7197
7198 2006-02-01 Paul Eggert <eggert@cs.ucla.edu>
7199
7200 Work around portability problems summarized by Nelson H. F. Beebe in
7201 <http://lists.gnu.org/archive/html/bug-bison/2005-09/msg00021.html>.
7202
7203 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
7204 that '#include <string>' works.
7205
7206 * data/lalr1.cc (yytranslate_): No longer inline, to work around a
7207 porting problem to g++ 3.4.3 on Darwin 7.9.0, where g++ complained
7208 "warning: sorry: semantics of inline function static data `const
7209 unsigned char translate_table[262]' are wrong (you'll wind up with
7210 multiple copies)".
7211
7212 * lib/bbitset.h (struct bitset_vtable): Rename members not, and,
7213 or, xor to not_, and_, or_, and xor_, respectively. This works
7214 around a bug in GCC 3.4.3 on Irix 6.5, which apparently has a
7215 random system header somewhere that includes the equivalent of
7216 <iso646.h>.
7217
7218 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that "$CC
7219 -E" works; it apparently doesn't work with PathScale EKO Compiler
7220 Suite Version 2.0.
7221
7222 2006-01-30 Joel E. Denny <jdenny@ces.clemson.edu>
7223
7224 During deterministic GLR operation, user actions should be able to
7225 influence the parse by changing yychar. To make this easier to fix and
7226 to make glr.c easier to evolve in general, don't maintain yytoken in
7227 parallel with yychar; just compute yytoken when needed.
7228 * tests/glr-regression.at (Incorrect lookahead during deterministic
7229 GLR): Check that setting yychar in a user action has the intended
7230 effect.
7231 * data/glr.c (yyGLRStack): Remove yytokenp member.
7232 (yyclearin): Don't set *yytokenp.
7233 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Examine
7234 yychar rather than *yytokenp to determine the current lookahead.
7235 Compute yytoken locally when needed.
7236 (yyparse): Likewise. Remove the local yytoken that yytokenp used to
7237 point to.
7238
7239 * doc/bison.texinfo (Bison Options): Remove stray sentence fragment
7240 after `--report' documentation.
7241
7242 2006-01-30 Paul Eggert <eggert@cs.ucla.edu>
7243
7244 * src/parse-gram.y (grammar_declaration): Location of printer
7245 symbol is @1, not list->location. Bug reported by twlevo.
7246 * tests/input.at (Incompatible Aliases): Adjust to above change.
7247
7248 2006-01-29 Paul Eggert <eggert@cs.ucla.edu>
7249
7250 * tests/input.at (AT_CHECK_UNUSED_VALUES): Remove. Instead, do
7251 all the test at once. This makes the output easier to read in the
7252 normal case.
7253
7254 Fix a longstanding bug uncovered by bro-0.9a9/src/parse.y, which I
7255 got from <http://bro-ids.org/download.html>. The bug is that
7256 when two actions appeared in succession, the second one was
7257 scanned before the first one was added to the grammar rule
7258 as a midrule action. Bison then output the incorrect warning
7259 "parse.y:905.17-906.36: warning: unused value: $3".
7260 * src/parse-gram.y (BRACED_CODE, action): These are no longer
7261 associated with a value.
7262 (rhs): Don't invoke grammar_current_rule_action_append.
7263 (action): Invoke it here instead.
7264 * src/reader.c (grammar_midrule_action): Now extern.
7265 (grammar_current_rule_action_append): Don't invoke
7266 grammar_midrule_action; that is now the scanner's job.
7267 * src/reader.h (last_string, last_braced_code_loc):
7268 (grammar_midrule_action): New decls.
7269 * src/scan-gram.l (last_string): Now extern, sigh.
7270 (last_braced_code_loc): New extern variable.
7271 (<INITIAL>"{"): Invoke grammar_midrule_action if the current
7272 rule already has an action.
7273 (<SC_BRACED_CODE>"}"): Set last_braced_code_loc before returning.
7274 * tests/input.at (AT_CHECK_UNUSED_VALUES):
7275 Add some tests to check that the above changes fixed the bug.
7276
7277 2006-01-27 Paul Eggert <eggert@cs.ucla.edu>
7278
7279 * src/reader.c (symbol_should_be_used): Renamed from symbol_typed_p.
7280 All used changed. Check whether the symbol has a destructor,
7281 not whether it is typed.
7282 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add a destructor, so
7283 that the values are still reported as unused. All line numbers
7284 adjusted.
7285
7286 2006-01-23 Paul Eggert <eggert@cs.ucla.edu>
7287
7288 Work around a bug in bro 0.8, which underparenthesizes its
7289 definition of YYLLOC_DEFAULT.
7290 * data/glr.c: Change all uses of YYLLOC_DEFAULT to parenthesize
7291 their arguments.
7292 * data/lalr1.cc: Likewise.
7293 * data/yacc.cc: Likewise.
7294
7295 2006-01-22 Paul Eggert <eggert@cs.ucla.edu>
7296
7297 Work around a bug in Pike 7.0, and give the Pike folks a
7298 better way to override the usual int widths.
7299 * data/yacc.c (b4_int_type): Use yytype_uint8, etc., so that the
7300 user can override the types.
7301 (short): #undef, to work around a bug in Pike 7.0.
7302 (yytype_uint8, yytype_int8, yytype_uint16, yytype_int16): New types.
7303 (union yyalloc.yyss): Use yytype_int16 rather than short.
7304 All uses changed.
7305 (yysigned_char): Remove.
7306 * src/parse-gram.y (YYTYPE_UINT8, YYTYPE_INT8, YYTYPE_UINT16):
7307 (YYTYPE_INT16): New macros, to test the new facility in yacc.c.
7308 * tests/regression.at (Web2c Actions): Adjust to above changes.
7309
7310 * src/reader.c (check_and_convert_grammar): New function.
7311 (reader): Close the input file even if something went wrong during
7312 parsing. Minor file descriptor leak reported by twlevo.
7313
7314 * src/assoc.c (assoc_to_string): Use a default: abort (); case
7315 to pacify gcc -Wswitch-default.
7316 * src/scan-gram.l (adjust_location): Use a default: break; case
7317 to pacify gcc -Wswitch-default.
7318 * src/scan-skel.h (skel_get_lineno, skel_get_in, skel_get_out):
7319 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
7320 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
7321 Move these decls to scan-skel.l, since they don't need to be
7322 visible elsewhere.
7323 * src/scan-skel.l: Accept the above decls.
7324 (skel_lex): New decl, to pacify GCC when unpatched flex 2.5.31
7325 is used.
7326
7327 2006-01-21 Paul Eggert <eggert@cs.ucla.edu>
7328
7329 * Makefile.cfg (local-checks-to-skip): Add changelog-check,
7330 since we don't want to insist on a version number at the start
7331 of the changelog every time.
7332 * Makefile.maint: Sync from coreutils a bit better.
7333 (sc_trailing_blank): Renamed from sc_trailing_space.
7334 All uses changed.
7335 (sc_no_if_have_config_h, sc_require_config_h):
7336 (sc_prohibit_assert_without_use): New rules.
7337 (sc_obsolete_symbols): Don't catch Makefile.maint itself.
7338 (sc_dd_max_sym_length): Fix leading spaces in rule.
7339 (sc_system_h_headers): Prefix with @.
7340 (sc_useless_cpp_parens, m4-check): Output line numbers.
7341 (changelog-check): Allow version only in head.
7342 * data/c.m4: Use "defined FOO" instead of "defined (FOO)", to
7343 satisfy new Makefile.maint rule.
7344 * data/glr.c: Likewise.
7345 * data/glr.cc: Likewise.
7346 * data/lalr1.cc: Likewise.
7347 * data/yacc.c: Likewise.
7348 * lib/ebitsetv.c: Likewise.
7349 * lib/lbitset.c: Likewise.
7350 * lib/subpipe.c: Likewise.
7351 * lib/timevar.c: Likewise.
7352 * src/system.h: Likewise.
7353 * data/yacc.c (YYSTYPE): Don't generate trailing spaces in output.
7354 * djgpp/Makefile.maint: Add copyright notice.
7355 * djgpp/README.in: Likewise.
7356 * djgpp/config.bat: Likewise.
7357 * djgpp/config.site: Likewise.
7358 * djgpp/config_h.sed: Likewise.
7359 * djgpp/djunpack.bat: Likewise.
7360 * djgpp/config.sed: Fix copyright notice to match standard format.
7361 * djgpp/subpipe.h: Likewise.
7362 * lib/bitsetv-print.c: Likewise.
7363 * lib/bitsetv.c: Likewise.
7364 * lib/subpipe.h: Likewise.
7365 * lib/timevar.c: Likewise.
7366 * lib/timevar.h: Likewise.
7367 * djgpp/subpipe.c: Use standard recipe for config.h.
7368 * lib/abitset.c: Likewise.
7369 * lib/bitset.c: Likewise.
7370 * lib/bitset_stats.c: Likewise.
7371 * lib/bitsetv-print.c: Likewise.
7372 * lib/bitsetv.c: Likewise.
7373 * lib/ebitsetv.c: Likewise.
7374 * lib/get-errno.c: Likewise.
7375 * lib/lbitset.c: Likewise.
7376 * lib/subpipe.c: Likewise.
7377 * lib/timevar.c: Likewise.
7378 * lib/vbitset.c: Likewise.
7379 * tests/local.at: Likewise.
7380 * src/scan-gram.l: Don't include verify.h, since system.h does
7381 that for us.
7382 * .x-sc_require_config_h: New file.
7383 * .x-sc_unmarked_diagnostics: New file.
7384
7385 2006-01-20 Paul Eggert <eggert@cs.ucla.edu>
7386
7387 Be a bit more systematic about using 'abort'.
7388 * lib/abitset.c (abitset_test): Remove ATTRIBUTE_UNUSED; not needed.
7389 * lib/bitset.c (bitset_bytes, bitset_init, bitset_op4_cmp):
7390 Put 'default: abort ();' before some other case, to satisfy older
7391 pedantic compilers.
7392 * lib/bitset_stats.c (bitset_stats_init): Likewise.
7393 * lib/ebitset.c (ebitset_elt_find, ebitset_op3_cmp): Likewise.
7394 * lib/lbitset.c (lbitset_elt_find, lbitset_op3_cmp): Likewise.
7395 * src/conflicts.c (resolve_sr_conflict): Likewise.
7396 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str):
7397 (get_decision_str, get_orientation_str, get_node_alignment_str):
7398 (get_arrow_mode_str, get_crossing_type_str, get_view_str):
7399 (get_linestyle_str, get_arrowstyle_str): Likewise.
7400 * src/conflicts.c (resolve_sr_conflict):
7401 Use a default case rather than one for the one remaining enum
7402 value, to catch invalid enum values as well.
7403 * src/lalr.c (set_goto_map, map_goto):
7404 Prefer "assert (FOO);" to "if (!FOO) abort ();".
7405 * src/nullable.c (nullable_compute, token_definitions_output):
7406 Likewise.
7407 * src/reader.c (packgram, reader): Likewise.
7408 * src/state.c (transitions_to, state_new, state_reduction_find):
7409 Likewise.
7410 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias):
7411 (symbol_pack): Likewise.
7412 * src/tables.c (conflict_row, pack_vector): Likewise.
7413 * src/scan-skel.l (QPUTS): Remove unnecessary parens.
7414 (BASE_QPUTS, "@output ".*\n): Remove unnecessary asserts.
7415 * src/system.h: Don't include <assert.h>.
7416 (assert): New macro.
7417
7418 * doc/bison.texinfo (Prologue, Rules, Actions, Union Decl, Action Decl):
7419 (Destructor Decl, Parser Function, Pure Calling):
7420 Describe rules for braces inside C code more carefully.
7421
7422 2006-01-19 Paul Eggert <eggert@cs.ucla.edu>
7423
7424 Fix some porting glitches found by Nelson H. F. Beebe.
7425 * lib/abitset.c (abitset_resize): Rewrite to avoid warnings from
7426 compilers that don't understand that abort () does not return.
7427 * src/state.c (transitions_to): Likewise.
7428 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
7429 that '#include <cstdlib>' works.
7430 * src/system.h (INT8_MIN, INT16_MIN, INT32_MIN, INT8_MAX):
7431 (INT16_MAX, UINT8_MAX, INT32_MAX, UINT16_MAX, UINT32_MAX):
7432 #undef if ! defined __STDC_VERSION__ || __STDC_VERSION__ < 199901,
7433 for the benefit of some pre-C99 compilers.
7434
7435 * bootstrap: Undo changes to gnulib files that autoreconf made.
7436
7437 Minor fixups to get 'make maintainer-check' to work.
7438 * configure.ac: Don't use -Wnested-externs, as it's incompatible
7439 with the new verify.h implementation.
7440 * data/c.m4 (b4_yy_symbol_print_generate): YYUSE (yyoutput).
7441 * data/glr.c (YYUSE): Depend on __GNUC__ as well.
7442 * data/yacc.c (YYUSE): Likewise.
7443 * data/lalr1.cc (yysyntax_error_): YYUSE (yystate).
7444 * lib/subpipe.c (end_of_output_subpipe): The args are unused.
7445 * src/parse-gram.y (declaration): Don't pass a string constant
7446 to a function that expects char *, since GCC might complain
7447 about the constant value.
7448 * src/reader.c (symbol_typed_p): Add parens to pacify GCC.
7449 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): #undef yylloc and yylval
7450 before #defining them.
7451 * tests/glr-regression.at
7452 (Incorrectly initialized location for empty right-hand side in GLR):
7453 In yyerror, use the msg arg.
7454 (Corrupted semantic options if user action cuts parse):
7455 (Incorrect lookahead during deterministic GLR):
7456 (Incorrect lookahead during nondeterministic GLR):
7457 Don't name a local var 'index'; it shadows string.h's 'index'.
7458
7459 2006-01-19 Akim Demaille <akim@epita.fr>
7460
7461 * tests/calc.at (_AT_DATA_CALC_Y): Initialize the whole initial
7462 location, not just parts of it.
7463
7464 2006-01-18 Paul Eggert <eggert@cs.ucla.edu>
7465
7466 * NEWS: Document the fact that multiple %unions are now allowed.
7467 * doc/bison.texinfo (Union Decl): Likewise.
7468 * TODO: This feature is now implemented, so remove it from
7469 the wishlist.
7470
7471 * Makefile.maint: Merge with coreutils Makefile.maint.
7472 (CVS_LIST): Use build-aux version if available.
7473 (VERSION_REGEXP): New macro.
7474 (syntax-check-rules): Add sc_no_if_have_config_h,
7475 sc_prohibit_assert_without_use, sc_require_config_h,
7476 sc_useless_cpp_parens.
7477 (sc_obsolete_symbols): Check for O_NDELAY.
7478 (sc_dd_max_sym_length): Track coreutils.
7479 (sc_unmarked_diagnostics): Look in all files, not just *.c.
7480 (sc_useless_cpp_parens): New rule.
7481 (news-date-check): Look for version or today's date.
7482 (changelog-check): Don't require version number near head.
7483 (copyright-check): Use current year instead of hardwiring 2005.
7484 (my-distcheck): Depend on $(release_archive_dir)/$(prev-tgz).
7485 (announcement): Add --gpg-key-ID.
7486
7487 * djgpp/config.sed: Add copyright notice, and replace "filesystem"
7488 with "file system".
7489
7490 Avoid undefined behavior that addressed just before the start of an
7491 array. Problem reported by twlevo.
7492 * src/reader.c (packgram): Prepend a new sentinel before ritem.
7493 * src/lalr.c (build_relations): Rely on new sentinel.
7494 * src/gram.c (gram_free): Adjust to new sentinel.
7495
7496 2006-01-12 Joel E. Denny <jdenny@ces.clemson.edu>
7497
7498 * data/glr.c (yyGLRStateSet): Rename yylookaheadStatuses to
7499 yylookaheadNeeds. All uses updated.
7500 (yysplitStack): Rename local yynewLookaheadStatuses to
7501 yynewLookaheadNeeds.
7502 * data/glr-regression.at (Incorrect lookahead during nondeterministic
7503 GLR): In comments, change `lookahead status' to `lookahead need'.
7504
7505 2006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
7506
7507 * data/glr.c (yysplitStack): A little stylistic rewrite.
7508
7509 2006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
7510
7511 * data/glr.c (yyaddDeferredAction): Flesh out the comment.
7512
7513 2006-01-11 Joel E. Denny <jdenny@ces.clemson.edu>
7514
7515 * doc/bison.texinfo: Fix some typos.
7516 (GLR Semantic Actions): New subsection discussing special
7517 considerations because GLR semantic actions might be deferred.
7518 (Actions): Mention look-ahead usage of yylval.
7519 (Actions and Locations): Mention look-ahead usage of yylloc.
7520 (Special Features for Use in Actions): Add YYEOF entry and mention it
7521 in the yychar entry.
7522 In the yychar entry, remove mention of the local yychar case (pure
7523 parser) since this is irrelevant information when writing semantic
7524 actions and since it's already discussed in `Table of Symbols' where
7525 yychar is otherwise described as an external variable.
7526 In the yychar entry, don't call it the `current' look-ahead since it
7527 isn't when semantic actions are deferred.
7528 In the yychar and yyclearin entries, add note about deferred semantic
7529 actions.
7530 Add yylloc and yylval entries discussing look-ahead usage.
7531 (Look-Ahead Tokens): When discussing yychar, don't call it the
7532 `current' look-ahead, and do mention yylval and yylloc.
7533 (Error Recovery): Cross-reference `Action Features' when mentioning
7534 yyclearin.
7535 (Table of Symbols): In the yychar entry, don't call it the `current'
7536 look-ahead.
7537 In the yylloc and yylval entries, mention look-ahead usage.
7538
7539 2006-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
7540
7541 * tests/glr-regression.at: Update copyright year to 2006.
7542
7543 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
7544
7545 * data/glr.c (yyGLRStateSet): Add yybool* yylookaheadStatuses member to
7546 use during nondeterministic operation to track which stacks have
7547 actually needed the current lookahead.
7548 (yyinitStateSet, yyfreeStateSet, yyremoveDeletes, yysplitStack):
7549 Allocate, deallocate, resize, and otherwise shuffle space for
7550 yylookaheadStatuses in parallel with yystates member of yyGLRStateSet.
7551 (yysplitStack, yyprocessOneStack, yyparse): Set lookahead status
7552 appropriately during nondeterministic operation.
7553 (yySemanticOption): Add int yyrawchar, YYSTYPE yyval, and YYLTYPE yyloc
7554 members to store the current lookahead to be used by the deferred
7555 user action.
7556 (yyaddDeferredAction): Add size_t yyk parameter specifying the stack
7557 from which the RHS is taken. Set the lookahead members of the new
7558 yySemanticOption according to the lookahead status for stack yyk.
7559 (yyglrShiftDefer, yyglrReduce): Pass yyk parameter on to
7560 yyaddDeferredAction.
7561 (yyresolveAction): Set yychar, yylval, and yylloc to the lookahead
7562 members of yySemanticOption before invoking yyuserAction, and then set
7563 them back to their current values afterward.
7564 (yyparse): Set yychar = YYEMPTY where yytoken = YYEMPTY.
7565 (yyreportAmbiguity): Add /*ARGSUSED*/ to pacify lint.
7566 * tests/glr-regression.at: Remove `.' from the ends of recent test case
7567 titles for consistency.
7568 (Leaked merged semantic value if user action cuts parse): In order to
7569 suppress lint warnings, use arguments in merge function, and assign
7570 char value < 128 in main.
7571 (Incorrect lookahead during deterministic GLR): New test case.
7572 (Incorrect lookahead during nondeterministic GLR): New test case.
7573
7574 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
7575
7576 * data/c.m4 (b4_yy_symbol_print_generate): In yy_symbol_print, accept
7577 !yyvaluep as signal that no semantic value is available to print.
7578 * data/glr.c (yydestroyGLRState): If state is not resolved, don't try
7579 to print a semantic value.
7580
7581 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
7582
7583 * tests/glr-regression.at: For consistency with my newer test cases,
7584 don't thank myself.
7585
7586 2006-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
7587
7588 * data/glr.c (yyresolveValue): When merging semantic options, if at
7589 least one user action succeeds but a later one cuts the parse, then
7590 destroy the semantic value before returning rather than leaking it.
7591 (yyresolveStates): If a user action cuts the parse and thus
7592 yyresolveValue fails, ignore the (unset) semantic value rather than
7593 corrupting the yyGLRState, and empty the semantic options list since
7594 the user actions should have called all necessary destructors.
7595 Simplify code with YYCHK.
7596 * tests/glr-regression.at (Corrupted semantic options if user action
7597 cuts parse): New test case.
7598 (Undesirable destructors if user action cuts parse): New test case.
7599 Before applying any of this patch, this test case never actually failed
7600 for me... but only because the corrupted semantic options usually
7601 masked this bug.
7602 (Leaked merged semantic value if user action cuts parse): New test
7603 case.
7604
7605 2006-01-05 Akim Demaille <akim@epita.fr>
7606
7607 * src/reader.c, src/symlist.h, src/symlist.c: s/mid_rule/midrule/.
7608
7609 2006-01-04 Paul Eggert <eggert@cs.ucla.edu>
7610
7611 * data/c.m4 (b4_c_modern): New macro, with a new provision for
7612 _MSC_VER. Problem reported by Cenzato Marco.
7613 (b4_c_function_def): Use it.
7614 * data/yacc.c (YYMODERN_C): Remove. All uses replaced by
7615 b4_c_modern.
7616 (yystrlen, yystpcpy, yyparse): Use b4_c_function... macros rather
7617 than rolling our own.
7618
7619 2006-01-04 Akim Demaille <akim@epita.fr>
7620
7621 Also warn about non-used mid-rule values.
7622 * src/symlist.h, src/symlist.c (symbol_list): Add a mid_rule
7623 member.
7624 (symbol_list_new): Adjust.
7625 * src/reader.c (symbol_typed_p): New.
7626 (grammar_rule_check): Use it.
7627 (grammar_midrule_action): Bind a mid-rule LHS to its rule.
7628 Check its rule.
7629 * tests/input.at (AT_CHECK_UNUSED_VALUES): New.
7630 Use it.
7631 * tests/actions.at (Exotic Dollars): Adjust.
7632
7633 2006-01-04 Akim Demaille <akim@epita.fr>
7634
7635 * src/reader.c (grammar_midrule_action): If $$ is set in a
7636 mid-rule, move the `used' bit to its lhs.
7637 * tests/input.at (Unused values): New.
7638 * tests/actions.at (Exotic Dollars): Adjust: exp is not typed.
7639
7640 2006-01-03 Paul Eggert <eggert@cs.ucla.edu>
7641
7642 * doc/bison.texinfo (Bison Options): Say more accurately what
7643 --yacc does.
7644 * src/parse-gram.y (rules_or_grammar_declaration): Don't complain
7645 about declarations in the grammar when in Yacc mode, as POSIX does
7646 not require a diagnostic when the grammar uses extensions.
7647
7648 * src/reduce.c (reduce_grammar): Remove unnecessary cast to bool.
7649
7650 Warn about dubious constructions like "%token T T".
7651 Reported by twlevo.
7652 * src/symtab.h (struct symbol.declared): New member.
7653 * src/symtab.c (symbol_new): Initialize it to false.
7654 (symbol_class_set): New arg DECLARING, specifying whether
7655 this is a declaration that we want to warn about, if there
7656 is more than one of them. All uses changed.
7657
7658 * data/glr.c, data/glr.cc, data/lalr1.cc, data/yacc.c:
7659 Allow multiple %union directives, whose contents concatenate.
7660 * src/parse-gram.y (grammar_declaration): Likewise.
7661 Use muscle_code_grow, so that we don't need stype_line any more.
7662 All uses changed.
7663
7664 * src/muscle_tab.c (muscle_grow): Fix comment.
7665
7666 * ChangeLog, data/c.m4, data/glr.c, data/glr.cc, data/location.cc:
7667 * data/yacc.c, src/getargs.c, src/output.c, tests/cxx-type.at:
7668 Update copyright year to 2006.
7669
7670 2006-01-03 Akim Demaille <akim@epita.fr>
7671
7672 Have glr.cc pass (some of) the calc.at tests.
7673 * data/glr.cc (b4_parse_param_orig): New.
7674 (b4_parse_param): Improve its definition, and bound it more
7675 clearly in the skeleton.
7676 (b4_epilogue): Append, instead of prepending, in order to keep
7677 #line consistency.
7678 Simplify the generation of auxiliary functions: locations and
7679 purity are mandated.
7680 (b4_global_tokens_and_yystype): Honor it.
7681 * data/location.cc (c++.m4): Don't include it.
7682 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Define AT_GLR_CC_IF
7683 and AT_SKEL_CC_IF.
7684 * tests/calc.at (AT_CHECK_CALC): Rely on AT_SKEL_CC_IF instead of
7685 AT_LALR1_CC_IF.
7686 Be sure to initialize the first position's filename.
7687 (AT_CHECK_CALC_LALR1_CC): Add %location and %defines, they are
7688 mandated anyway.
7689 (AT_CHECK_CALC_GLR_CC): New.
7690 Use it to exercise glr.cc as a lalr1.cc drop-in replacement.
7691
7692 2006-01-02 Akim Demaille <akim@epita.fr>
7693
7694 * src/output.c (output_skeleton): Don't hard wire the inclusion of
7695 c.m4.
7696 * data/c++.m4, data/glr.c, data/yacc.c: Include c.m4.
7697 * data/glr.cc: Do not include stack.hh.
7698
7699 2006-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
7700
7701 * data/glr.c: Reformat whitespace with tabs.
7702 (b4_lpure_formals): Remove this unused m4 macro.
7703 * tests/cxx-type.at: Reformat whitespace with tabs.
7704 (_AT_TEST_GLR_CXXTYPES): In union Node, rename node_info to nodeInfo
7705 since it's a member. Rename type to isNterm for clarity.
7706
7707 2005-12-29 Akim <akim@sulaco.local>
7708
7709 Let glr.cc catch up with symbol_value_print.
7710 * data/glr.cc (b4_yysymprint_generate): Replace by...
7711 (b4_yy_symbol_print_generate): this.
7712 (yy_symbol_print, yy_symbol_value_print): Declare them.
7713
7714 2005-12-28 Paul Eggert <eggert@cs.ucla.edu>
7715
7716 * src/location.h (boundary): Note that a line or column equal
7717 to INT_MAX indicates an overflow.
7718 * src/scan-gram.l: Include verify.h. Don't include get-errno.h.
7719 (rule_length_overflow, increment_rule_length, add_column_width):
7720 New functions.
7721 (<INITIAL>{id}, <SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'"):
7722 (<SC_BRACED_CODE>"}"):
7723 Use increment_rule_length rather than incrementing it by hand.
7724 (adjust_location, handle_syncline): Diagnose overflow.
7725 (handle_action_dollar, handle_action_at):
7726 Fix bug with monstrosities like $-2147483648.
7727 Remove now-unnecessary checks.
7728 (scan_integer): Verify assumptions and remove now-unnecessary checks.
7729 (convert_ucn_to_byte): Verify assumptions.
7730 (handle_syncline): New arg LOC. All callers changed.
7731 Don't store through a value derived from char const * pointer.
7732
7733 * src/reader.c (grammar_rule_check): Rewrite slightly to avoid
7734 GCC warnings.
7735
7736 2005-12-27 Paul Eggert <eggert@cs.ucla.edu>
7737
7738 * src/reader.c (grammar_midrule_action, grammar_symbol_append):
7739 Remove unnecessary forward static decls.
7740
7741 2005-12-27 Akim Demaille <akim@epita.fr>
7742
7743 * src/reader.c (grammar_current_rule_check): Also check that $$
7744 is used.
7745 Take the rule to check as argument, hence rename as...
7746 (grammar_rule_check): this.
7747 * src/reader.h, src/reader.c (grammar_rule_begin, grammar_rule_end):
7748 Rename as...
7749 (grammar_rule_begin, grammar_rule_end): these, for consistency.
7750 (grammar_midrule_action, grammar_symbol_append): Now static.
7751 * tests/torture.at (input): Don't rely on the default action
7752 being always performed.
7753 * tests/calc.at: "Set" $$ even when the action is "cut" with
7754 YYERROR or other.
7755 * tests/actions.at (Exotic Dollars): Instead of using unused
7756 values, check that the warning is issued.
7757
7758 2005-12-22 Paul Eggert <eggert@cs.ucla.edu>
7759
7760 * NEWS: Improve wording for unused-value warnings.
7761
7762 2005-12-22 Akim Demaille <akim@epita.fr>
7763
7764 * data/lalr1.cc, data/yacc.c, data/glr.c, data/c.m4
7765 (b4_yysymprint_generate): Rename as...
7766 (b4_yy_symbol_print_generate): this.
7767 Generate yy_symbol_print instead of yysymprint.
7768 Generate also yy_symbol_value_print, and use it.
7769
7770 2005-12-22 Akim Demaille <akim@epita.fr>
7771
7772 * NEWS: Warn about unused values.
7773 * src/symlist.h, src/symlist.c (symbol_list, symbol_list_new): Add
7774 a `used' member.
7775 (symbol_list_n_get, symbol_list_n_used_set): New.
7776 (symbol_list_n_type_name_get): Use symbol_list_n_get.
7777 * src/scan-gram.l (handle_action_dollar): Flag used symbols.
7778 * src/reader.c (grammar_current_rule_check): Check that values are
7779 used.
7780 * src/symtab.c (symbol_print): Accept 0.
7781 * tests/existing.at: Remove the type information.
7782 Empty the actions.
7783 Remove useless actions (beware of mid-rule actions: perl -000
7784 -pi -e 's/\s*\{\}(?=[\n\s]*[|;])//g').
7785 * tests/actions.at (Exotic Dollars): Use unused values.
7786 * tests/calc.at: Likewise.
7787 * tests/glr-regression.at (No users destructors if stack 0 deleted):
7788 Likewise.
7789
7790 * src/gram.c (rule_useful_p, rule_never_reduced_p): Use
7791 rule_useful_p.
7792
7793 2005-12-21 Paul Eggert <eggert@cs.ucla.edu>
7794
7795 Undo 2005-12-01 tentative license wording change. The wording is
7796 still being reviewed by the lawyers, and we don't want to wait for
7797 them before publishing a test release. For now, revert to the
7798 previous wording.
7799 * NEWS: Undo 2005-12-01 change.
7800 * data/glr.c: Revert to previous license wording.
7801 * data/glr.cc: Likewise.
7802 * data/lalr1.cc: Likewise.
7803 * data/location.cc: Likewise.
7804 * data/yacc.c: Likewise.
7805
7806 * NEWS: Reword %destructor vs YYABORT etc.
7807 * data/glr.c: Use American spacing, for consistency.
7808 * data/glr.cc: Likewise.
7809 * data/lalr1.cc: Likewise.
7810 * data/yacc.c: Likewise.
7811 * data/yacc.c: Reformat comments slightly.
7812 * doc/bison.texinfo: Replace "non-" with "non" when that makes sense,
7813 for consistency. Fix some spelling errors and reword recently-included
7814 text slightly.
7815 * tests/cxx-type.at: Cast results of malloc, for C++.
7816
7817 2005-12-21 Joel E. Denny <address@hidden>
7818
7819 * tests/cxx-type.at: Construct a tree, count the parents of shared
7820 nodes, and free each node once and only once. Previously, the memory
7821 for semantic values was leaked instead.
7822
7823 2005-12-21 Joel E. Denny <address@hidden>
7824
7825 * data/glr.c (struct yyGLRStack): If pure, add yyval and yyloc members.
7826 (yylval, yylloc): If pure, #define to yystackp->yyval and
7827 yystackp->yyloc similar to yychar and yynerrs.
7828 (yyparse): If pure, remove local yylval and yylloc. Add local
7829 yystackp to accommodate pure definitions of yylval and yylloc.
7830 (b4_lex_param, b4_lyyerror_args, b4_lpure_args): If pure, change
7831 yylvalp and yyllocp to &yylval and &yylloc.
7832 (nerrs, char, lval, lloc): If pure, add #define's for b4_prefix[]
7833 namespace. Previously, nerrs and char were missing, but lval and lloc
7834 weren't necessary.
7835 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Remove
7836 yylvalp and yyllocp parameters since, if pure, these are now always
7837 accessible through yystackp. If not pure, they are still accessible
7838 globally.
7839 * data/glr.c, data/yacc.c (YYLLOC_DEFAULT): Change `if (N)' to
7840 `if (YYID (N))' to pacify lint.
7841
7842 2005-12-21 Akim Demaille <akim@epita.fr>
7843
7844 YYACCEPT, YYERROR, and YYABORT, as user actions, should not
7845 destroy the RHS symbols of a rule.
7846 * data/yacc.c (yylen): Initialize to 0.
7847 Keep its value to the number of items to possibly shift.
7848 In particular, a regular successful parse that ends on YYFINAL by
7849 a (internal) YYACCEPT must not have yylen != 0.
7850 (yyerrorlab, yyreturn): Pop the RHS.
7851 Reorder a bit to emphasize the `shifting' bits of code.
7852 (YYPOPSTACK): Now accept a number of items to pop.
7853 * data/lalr1.cc: Likewise.
7854 * data/glr.c: Formatting changes.
7855 Use goto instead of fall through.
7856 * doc/bison.texinfo (Destructor Decl): Complete.
7857
7858 2005-12-20 Juan Manuel Guerrero <juan.guerrero@gmx.de>
7859
7860 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
7861 * djgpp/Makefile.maint: Fix PACKAGE variable computation.
7862 * djgpp/config.bat: Replace every occurence of the file name
7863 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
7864 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
7865 * djgpp/config.sed: Replace every occurence of the file name
7866 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
7867 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
7868 * djgpp/djunpack.bat: DJGPP specific file.
7869 * djgpp/fnchange.lst: DJGPP specific file.
7870 * djgpp/README.in: Add new information about how to unpack the bison
7871 source on MSDOS and other systems which have 8.3 file name restrictions
7872 using djunpack.bat and fnchange.lst.
7873
7874 2005-12-12 Paul Eggert <eggert@cs.ucla.edu>
7875
7876 * bootstrap (build_cvs_prefix): Remove; unused.
7877 (CVS_PREFIX): Adjust to yesterday's Savannah reorganization
7878 when getting gnulib.
7879
7880 2005-12-12 "Joel E. Denny" <jdenny@ces.clemson.edu>
7881
7882 * data/glr.c: Reorder typedef declarations for structs to match order
7883 of struct declarations.
7884 Rename yystack everywhere to yystackp except in yyparse where it's not
7885 a pointer.
7886 (yyglrShift): Change parameter YYSTYPE yysval to YYSTYPE* yyvalp for
7887 consistency.
7888 (yyis_table_ninf): Change 0 to YYID (0) to pacify lint.
7889 (yyreportSyntaxError): Add /*ARGSUSED*/ to pacify lint.
7890 (yyparse): Change while (yytrue) to while ( YYID (yytrue)) to pacify
7891 lint.
7892
7893 2005-12-09 Paul Eggert <eggert@cs.ucla.edu>
7894
7895 * tests/sets.at (Accept): Fix typos in regular expression used to
7896 sed out the final state number.
7897
7898 Work around portability problem on Solaris 10: flex-generated
7899 files include <stdio.h> before <config.h>, which messes up
7900 because the latter defines __EXTENSIONS__. Address the problem
7901 by creating two new little files that include <config.h> first,
7902 then include the flex-generated files. Rewrite everyone else
7903 to include <config.h> first, as well.
7904 * lib/timevar.c: Always include "config.h".
7905 * src/Makefile.am (bison_SOURCES): Replace scan-gram.l with
7906 scan-gram-c.c, and scan-skel.l with scan-skel-c.c.
7907 (EXTRA_bison_SOURCES): New macro.
7908 * src/scan-gram-c.c, src/scan-skel-c.c: New files.
7909 * src/system.h: Don't include config.h.
7910 * src/LR0.c: Include <config.h> first.
7911 * src/assoc.c: Likewise.
7912 * src/closure.c: Likewise.
7913 * src/complain.c: Likewise.
7914 * src/conflicts.c: Likewise.
7915 * src/derives.c: Likewise.
7916 * src/files.c: Likewise.
7917 * src/getargs.c: Likewise.
7918 * src/gram.c: Likewise.
7919 * src/lalr.c: Likewise.
7920 * src/location.c: Likewise.
7921 * src/main.c: Likewise.
7922 * src/muscle_tab.c: Likewise.
7923 * src/nullable.c: Likewise.
7924 * src/output.c: Likewise.
7925 * src/parse-gram.y: Likewise.
7926 * src/print.c: Likewise.
7927 * src/print_graph.c: Likewise.
7928 * src/reader.c: Likewise.
7929 * src/reduce.c: Likewise.
7930 * src/relation.c: Likewise.
7931 * src/state.c: Likewise.
7932 * src/symlist.c: Likewise.
7933 * src/symtab.c: Likewise.
7934 * src/tables.c: Likewise.
7935 * src/uniqstr.c: Likewise.
7936 * src/vcg.c: Likewise.
7937
7938 * src/parse-gram.y: Fix minor problems uncovered by lint.
7939 (current_lhs, current_lhs_location): Now static.
7940 (current_assoc): Remove unused variable.
7941
7942 Cleanups so that Bison-generated parsers have less lint.
7943 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate):
7944 Prepend /*ARGSUSED*/, for lint's sake.
7945 * data/glr.c (YYUSE): Properly parenthesize, and use an alternate
7946 definition if 'lint' is defined.
7947 (YYID): New macro (or function, if lint).
7948 All uses of /*CONSTCOND*/0 replaced by YYID(0).
7949 * data/yacc.c: Likewise.
7950 * data/glr.c (yyuserAction, yyuserMerge, yy_reduce_print):
7951 (yyrecoverSyntaxError): Prepend /*ARGSUSED*/.
7952 * data/glr.cc (YYLLOC_DEFAULT): Omit /*CONSTCOND*/ since this code
7953 is C++ only.
7954 * data/lalr1.cc (YYUSE): Just use a cast, since this code is C++ only.
7955 * data/yacc.c (YYSTACK_FREE) [defined YYSTACK_ALLOC]:
7956 Use YYID(0) rather than 0, for lint.
7957 (yystrlen): Rewrite to avoid lint warning about ptrdiff_t overflow.
7958 (yysyntax_error): Rewrite to avoid lint warnings about parenthesization.
7959
7960 2005-12-07 Paul Eggert <eggert@cs.ucla.edu>
7961
7962 * tests/glr-regression.at
7963 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
7964 Close memory leak reported by twlevo.
7965
7966 2005-12-06 "Joel E. Denny" <jdenny@ces.clemson.edu>
7967
7968 * data/glr.c (yyprocessOneStack, yyparse): Synchronize the shift for
7969 all stacks.
7970 (yyparse): Iterate another stack in order to call user destructors.
7971 * tests/glr-regression.at (No users destructors if stack 0 deleted):
7972 New test case.
7973 (Duplicated user destructor for lookahead): This test now is expected
7974 to succeed.
7975
7976 2005-12-01 Paul Eggert <eggert@cs.ucla.edu>
7977
7978 * NEWS: Document the following change.
7979 * data/yacc.c: Say "parser skeleton" rather than "file", since
7980 it's no longer just a file.
7981 * data/glr.c: Grant a special exception for C GLR parsers, that
7982 reads like the already-existing exception for C LALR(1) parsers.
7983 * data/glr.cc: Likewise.
7984 * data/lalr1.cc: Likewise.
7985 * data/location.cc: Likewise.
7986 * data/yacc.c: Reword the "written by" statement to clarify that
7987 it was the parser skeleton, not the entire output file.
7988 * data/glr.c: Written by Paul Hilfinger.
7989 * data/glr.cc: Written by Akim Demaille.
7990 * data/lalr1.cc: Likewise.
7991
7992 2005-11-18 Paul Eggert <eggert@cs.ucla.edu>
7993
7994 * data/yacc.c (yy_reduce_print, YY_REDUCE_PRINT):
7995 Fix typos in previous change that broke 'make check'.
7996 YY_REDUCE_PRINT cannot be a pseudo-varargs macro; that isn't
7997 supported in C.
7998 * tests/calc.at (_AT_CHECK_CALC,_AT_CHECK_CALC_ERROR):
7999 Don't check NUM-STDERR-LINES, since the output format is fluctuating.
8000 We can revert this once things settle down.
8001
8002 * src/conflicts.c (conflicts_print): Don't print file name twice
8003 when %expect fails because there were no conflicts.
8004 * doc/bison.texinfo (Expect Decl): Tighten up wording in previous
8005 change.
8006 * tests/conflicts.at (%expect not enough, %expect too much):
8007 (%expect with reduce conflicts): Adjust to new behavior.
8008
8009 2005-11-18 Akim Demaille <akim@epita.fr>
8010
8011 * src/conflicts.c (conflicts_print): Unsatisfied %expectation are
8012 errors.
8013 * NEWS: Document this.
8014 * doc/bison.texinfo (Expect Decl): Likewise.
8015
8016 2005-11-16 Akim Demaille <akim@epita.fr>
8017
8018 Generalize the display of semantic values and locations in traces.
8019 * data/glr.c (yy_reduce_print): Fix indices (again).
8020 * data/c++.m4 (b4_rhs_value, b4_rhs_location): Don't expect
8021 literal integers.
8022 * data/lalr1.cc (yyreduce_print): Rename as...
8023 (yy_reduce_print): this.
8024 Display values and locations.
8025 * data/yacc.c (yy_reduce_print): Likewise.
8026 (YY_REDUCE_PRINT): Adjust to pass the required arguments.
8027 (yysymprint): Move higher to be visible from yy_reduce_print).
8028 (yyparse): Adjust.
8029 * tests/calc.at: Adjust the expected length of the traces.
8030
8031 2005-11-14 Akim Demaille <akim@epita.fr>
8032
8033 * data/glr.c (yy_reduce_print): The loop was quite wrong: type are
8034 from 1 to N, while values and location start at 0.
8035 (b4_rhs_location, b4_rhs_value): Add parens around $1 and $2.
8036
8037 2005-11-14 Akim Demaille <akim@epita.fr>
8038
8039 * data/glr.c (yy_reduce_print): Fix the $ number.
8040
8041 2005-11-14 Akim Demaille <akim@epita.fr>
8042
8043 "Use" parse parameters.
8044 * data/c.m4 (b4_parse_param_for, b4_parse_param_use): New.
8045 * data/glr.c, data/glr.cc: Use them.
8046 * data/glr.c (YYUSE): Have a C++ definition that supports
8047 non-pointer types.
8048
8049 2005-11-14 Akim Demaille <akim@epita.fr>
8050
8051 * data/glr.c (yyexpandGLRStack): Declare only if defined.
8052
8053 2005-11-14 Akim Demaille <akim@epita.fr>
8054
8055 * data/glr.cc: New.
8056 * data/m4sugar/m4sugar.m4 (m4_prepend): New.
8057
8058 2005-11-12 Akim Demaille <akim@epita.fr>
8059
8060 Let position and location be PODs.
8061 * data/location.cc (position::initialize, location::initialize): New.
8062 (position::position, location::location): Define only if
8063 b4_location_constructors is defined.
8064 * data/lalr1.cc (b4_location_constructors): Define it for backward
8065 compatibility.
8066 * doc/bison.texinfo (Initial Action Decl): Use initialize.
8067
8068 2005-11-12 Akim Demaille <akim@epita.fr>
8069
8070 * data/lalr1.cc: Move the body of the ctor and dtor into the
8071 parser file (instead of the header).
8072 Wrap the implementations in a "namespace yy".
8073
8074 2005-11-12 Akim Demaille <akim@epita.fr>
8075
8076 Have glr.c include its header file when created.
8077 * data/glr.c (b4_shared_declarations): New.
8078 Output them verbatim in the parser if !%defines, otherwise
8079 output then in the header file, and include it instead.
8080
8081 2005-11-11 Akim Demaille <akim@epita.fr>
8082
8083 * data/glr.c: Comment changes.
8084
8085 2005-11-11 Akim Demaille <akim@epita.fr>
8086
8087 When yydebug, report semantic and location values for reductions.
8088 * data/glr.c (yy_reduce_print): Report the semantic values and the
8089 locations.
8090 (YY_REDUCE_PRINT): Adjust.
8091 (yyglrReduce): Use them.
8092 (b4_rhs_value, b4_rhs_location): Remove m4_eval invocations.
8093 * data/c.m4 (b4_yysymprint_generate): Specify the const arguments.
8094 * tests/calc.at (_AT_CHECK_CALC_ERROR): Remove the reduction
8095 traces.
8096
8097 2005-11-10 Akim Demaille <akim@epita.fr>
8098
8099 * data/glr.c (yynewGLRStackItem, YY_RESERVE_GLRSTACK): New.
8100 (yyaddDeferredAction, yyglrShift, yyglrShiftDefer): Use them.
8101 (yyexpandGLRStack, YYRELOC): Define only when YYSTACKEXPANDABLE.
8102
8103 2005-11-09 Albert Chin-A-Young <china@thewrittenword.com>
8104
8105 * m4/cxx.m4, examples/Makefile.am: Don't build
8106 examples/calc++ if no C++ compiler is available. (trivial change)
8107
8108 2005-11-09 Akim Demaille <akim@epita.fr>
8109
8110 * src/scan-skel.l: Use a couple of asserts.
8111
8112 2005-11-03 Akim Demaille <akim@epita.fr>
8113
8114 In some (weird) cases, the final state number is incorrect.
8115 Reported by Alexandre Duret-Lutz.
8116 * src/LR0.c (state_list_append): Remove the computation of
8117 final_state.
8118 (save_reductions): Do it here.
8119 (get_state): Alpha conversion.
8120 (generate_states): Use a for loop.
8121 * src/gram.h (item_number_is_rule_number)
8122 (item_number_is_symbol_number): New.
8123 * src/state.c: Use assert.
8124 * src/system.h: Include assert.h.
8125 * tests/sets.at (Accept): New.
8126
8127 2005-10-30 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
8128
8129 * data/glr.c (yyfill): Adjust comment.
8130 (yyresolveAction): Initialize default location properly
8131 for empty right-hand sides.
8132 (yydoAction): Ditto.
8133 Add comment explaining apparently dead code.
8134 * tests/glr-regression.at
8135 (Incorrectly initialized location for empty right-hand side in GLR):
8136 New test.
8137
8138 2005-10-30 Paul Eggert <eggert@cs.ucla.edu>
8139
8140 * bootstrap (cleanup_gnulib): New function. Use it to clean up
8141 gnulib when interrupted. This fixes some race conditions and
8142 works around some portability problems (one noted by Paul
8143 Hilfinger).
8144
8145 2005-10-22 Akim <akim@epita.fr>
8146
8147 * Makefile.cfg: Adjust to config -> build-aux.
8148 Reported by twledo.
8149
8150 2005-10-21 Akim Demaille <akim@epita.fr>
8151
8152 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Pass
8153 the %parse-params.
8154 * data/glr.c (YY_SYMBOL_PRINT, yydestroyGLRState): Adjust.
8155 * data/yacc.c (b4_Pure_if): Rename as...
8156 (b4_yacc_pure_if): this.
8157 (YY_SYMBOL_PRINT, yyparse): Adjust.
8158 * doc/bison.texinfo: Formatting changes.
8159
8160 2005-10-21 Akim Demaille <akim@epita.fr>
8161
8162 Finish the transition config -> build-aux.
8163 * configure.ac, Makefile.am: Use build-aux.
8164 * config/prev-version, config/announce-gen, config/Makefile.am:
8165 Move to...
8166 * build-aux/prev-version, build-aux/announce-gen,
8167 * build-aux/Makefile.am: here.
8168
8169 2005-10-14 Akim Demaille <akim@epita.fr>
8170
8171 * examples/calc++/test: Use set -x only when VERBOSE.
8172
8173 2005-10-13 Paul Eggert <eggert@cs.ucla.edu>
8174
8175 * NEWS: Bison now warns if it finds a stray `$' or `@' in an action.
8176 * src/scan-gram.l (<SC_BRACED_CODE>[$@]): Implement this.
8177
8178 2005-10-13 Akim Demaille <akim@epita.fr>
8179
8180 * src/scan-skel.l: Output the base name parts of the parser and
8181 header file names.
8182 * tests/output.at (AT_CHECK_OUTPUT): Support subdirectories, and
8183 additional checks.
8184 Use this to exercise C++ outputs in subdirs.
8185 Reported by Oleg Smolsky.
8186
8187 2005-10-12 Paul Eggert <eggert@cs.ucla.edu>
8188
8189 * data/c.m4 (b4_c_function_def): Look at __C99_FUNC__, not at
8190 __STDC_VERSION__, as IBM cc 7.0 doesn't define the latter either.
8191 Problem reported by John P. Hartmann.
8192 * data/yacc.c (YYMODERN_C): Likewise. Don't define if the user has
8193 already defined it.
8194
8195 2005-10-12 Akim Demaille <akim@epita.fr>
8196
8197 * src/parse-gram.y (version_check): Exit 63 to please missing
8198 (stands for "version mismatch).
8199 * tests/input.at, doc/bison.texinfo: Adjust.
8200
8201 2005-10-10 Paul Eggert <eggert@cs.ucla.edu>
8202
8203 Work around portability problems with Visual Age C compiler
8204 (xlc and xlC_r) reported by John P. Hartmann.
8205 * data/location.cc (initial_column, initial_line): Remove.
8206 All uses replaced by 0 and 1.
8207 * src/scan-gram.l (gram_wrap): Redefine to avoid bug in flex 2.5.31
8208 that xlc complains about.
8209 * src/scan-skel.l (skel_wrap): Likewise.
8210 * data/c.m4 (b4_c_function_def): Look at __STDC_VERSION__ as well
8211 as __STDC__.
8212 * data/yacc.c (YYMODERN_C): New macro, which also looks at
8213 __STDC_VERSION__. Use it everywhere instead of looking at
8214 __STDC__ and __cplusplus.
8215
8216 2005-10-10 Akim Demaille <akim@epita.fr>
8217
8218 * examples/calc++/test: Be quiet unless VERBOSE.
8219
8220 2005-10-05 Paul Eggert <eggert@cs.ucla.edu>
8221
8222 * data/c.m4 (yydestruct, yysymprint):
8223 Use YYUSE instead of casting to void.
8224 * data/glr.c (YYUSE): New macro.
8225 (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
8226 Use it instead of rolling our own.
8227 (YYLLOC_DEFAULT, YYCHK, YYDPRINTF, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
8228 (YYCHK1):
8229 Use /*CONSTCOND*/ to suppress lint warnings.
8230 * data/lalr1.cc (YYLLOC_DEFAULT, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
8231 (YY_STACK_PRINT): Use 'false' not '0'.
8232 (YYUSE): New macro.
8233 (yysymprint_, yydestruct_): Use it instead of rolling our own.
8234 * data/yacc.c (YYUSE): New macro.
8235 (YYCOPY, YYSTACK_RELOCATE, YYBACKUP, YYLLOC_DEFAULT):
8236 (YYDPRINTF, YY_SYMBOL_PRINT, YY_STACK_PRINT, YY_REDUCE_PRINT):
8237 (yyerrorlab): Use /*CONSTCOND*/ to suppress lint warnings.
8238
8239
8240 * data/m4sugar/m4sugar.m4 (_m4_map): New macro.
8241 (m4_map, m4_map_sep): Use it. Handle the empty list correctly.
8242
8243 2005-10-04 Paul Eggert <eggert@cs.ucla.edu>
8244
8245 Undo the parts of the unlocked-I/O change that substituted
8246 putc or puts for printf. This might hurt performance a bit,
8247 but some people prefer the printf style.
8248 * data/c.m4 (yysymprint): Prefer printf to puts and putc.
8249 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): Remove.
8250 All uses replaced by YYFPRINTF and YYDPRINTF.
8251 * data/yacc.c: Likewise.
8252 * lib/bitset.c (bitset_print): Likewise.
8253 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer printf to
8254 putc and puts.
8255 * lib/lbitset.c (debug_lbitset): Likewise.
8256 * src/closure.c (print_firsts, print_fderives): Likewise.
8257 * src/gram.c (grammar_dump): Likewise.
8258 * src/lalr.c (look_ahead_tokens_print): Likewise.
8259 * src/output.c (escaped_output): Likewise.
8260 (user_actions_output): Break apart two printfs.
8261 * src/parse-gram.y (%printer): Prefer printf to putc and puts.
8262 * src/reduce.c (reduce_print): Likewise.
8263 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
8264 * src/system.h: Include unlocked-io.h rathe than stdio.h.
8265
8266 * data/glr.c (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
8267 Use assignments rather than casts-to-void to suppress
8268 unused-variable warnings. This pacifies 'lint'.
8269 * data/lalr1.cc (yysymprint_, yydestruct_): Use a call to suppress
8270 unused-variable warnings.
8271
8272 2005-10-03 Juan Manuel Guerrero <juan.guerrero@gmx.de>
8273
8274 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
8275
8276 2005-10-02 Paul Eggert <eggert@cs.ucla.edu>
8277
8278 Use unlocked I/O for a minor performance improvement on hosts like
8279 GNU/Linux and Solaris that support unlocked I/O. The basic idea
8280 is to use the gnlib unlocked-io module, and to prefer putc and
8281 puts to printf when either will work (since the latter doesn't
8282 come in an unlocked flavor).
8283 * bootstrap (gnulib_modules): Add unlocked-io.
8284 * data/c.m4 (yysymprint): Prefer puts and putc to printf.
8285 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): New macros.
8286 Prefer them to YYFPRINTF and YYDPRINTF if either will do,
8287 and similarly for puts and putc and printf.
8288 * data/yacc.c: Likewise.
8289 * lib/bitset.c (bitset_print): Likewise.
8290 * lib/bitset.h [USE_UNLOCKED_IO]: Include unlocked-io.h.
8291 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer putc and puts
8292 to printf.
8293 * lib/lbitset.c (debug_lbitset): Likewise.
8294 * src/closure.c (print_firsts, print_fderives): Likewise.
8295 * src/gram.c (grammar_dump): Likewise.
8296 * src/lalr.c (look_ahead_tokens_print): Likewise.
8297 * src/output.c (escaped_output): Likewise.
8298 (user_actions_output): Coalesce two printfs.
8299 * src/parse-gram.y (%printer): Prefer putc and puts to printf.
8300 * src/reduce.c (reduce_print): Likewise.
8301 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
8302 * src/system.h: Include unlocked-io.h rather than stdio.h.
8303
8304 * data/lalr1.cc: Don't put an unmatched ' in a dnl comment, as
8305 this confuses xgettext.
8306
8307 2005-10-02 Akim Demaille <akim@epita.fr>
8308
8309 * bootstrap (gnulib_modules): Add strverscmp.
8310 * lib/.cvsignore: Add strverscmp.c, strverscmp.h.
8311 * m4/.cvsignore: Add strverscmp.m4.
8312 * src/parse-gram.y (%require): New token, new rule.
8313 (version_check): New.
8314 * src/scan-gram.l (%require): Adjust.
8315 * tests/input.at (AT_REQUIRE): New.
8316 Use it.
8317 * doc/bison.texinfo (Require Decl): New.
8318 (Calc++ Parser): Use %require.
8319
8320 2005-10-02 Akim Demaille <akim@epita.fr>
8321
8322 * data/location.cc: New.
8323
8324 2005-10-02 Paul Eggert <eggert@cs.ucla.edu>,
8325 Akim Demaille <akim@epita.fr>
8326
8327 Make sure -odir/foo.cc creates dir/location.hh etc.
8328 * src/files.h (spec_outfile, parser_file_name, spec_name_prefix)
8329 (spec_file_prefix, spec_verbose_file, spec_graph_file)
8330 (spec_defines_file): Now const.
8331 (dir_prefix): New.
8332 (short_base_name): Remove.
8333 * src/files.c: Adjust.
8334 (dirname.h): Include.
8335 (base_name): Don't prototype it.
8336 (finput): Remove, duplicates gram_in.
8337 (full_base_name, short_base_name): Replace by...
8338 (all_but_ext, all_but_tab_ext): these.
8339 (compute_base_names): Rename as...
8340 (compute_file_name_parts): this.
8341 Update to compute the new variables, including dir_prefix.
8342 Adjust dependencies.
8343 * src/output.c (prepare): Output them.
8344 * src/reader.c: Adjust to use gram_in, not finput.
8345 * src/scan-skel.l (@dir_prefix@): New.
8346
8347 2005-10-02 Juan Manuel Guerrero <juan.guerrero@gmx.de>
8348
8349 * lib/subpipe.c: New function end_of_output_subpipe() added
8350 to allow support for non-posix systems. This is a no-op function
8351 for posix systems.
8352
8353 * lib/subpipe.h: New function end_of_output_subpipe() added
8354 to allow support for non-posix systems. This is a no-op function
8355 for posix systems.
8356
8357 * src/output.c (output_skeleton): Use end_of_output_subpipe() to
8358 handle the lack of pipe/fork functionality on non-posix systems.
8359
8360 * djgpp/Makefile.maint: DJGPP specific file.
8361
8362 * djgpp/README.in: DJGPP specific file.
8363
8364 * djgpp/config.bat: DJGPP specific configuration file.
8365
8366 * djgpp/config.sed: DJGPP specific configuration file.
8367
8368 * djgpp/config.site: DJGPP specific configuration file.
8369
8370 * djgpp/config_h.sed: DJGPP specific configuration file.
8371
8372 * djgpp/subpipe.c: DJGPP specific replacement file for lib/subpipe.c.
8373
8374 * djgpp/subpipe.h: DJGPP specific replacement file for lib/subpipe.h.
8375
8376 2005-10-02 Akim Demaille <akim@epita.fr>
8377
8378 * data/location.cc: New, extract from...
8379 * data/lalr1.cc: here.
8380 (location.hh): Include it after the user prologue, in case the
8381 filename type is defined by the user.
8382 Forward declation location and position before the pre-prologue.
8383 (yyresult_): Rename as...
8384 (yyresult): this, it's a local variable, not an attribute.
8385 * data/Makefile.am (dist_pkgdata_DATA): Adjust.
8386
8387 2005-10-01 Akim Demaille <akim@epita.fr>
8388
8389 * examples/extexi: Restore the #line generation.
8390
8391 2005-09-30 Akim Demaille <akim@epita.fr>,
8392 Alexandre Duret-Lutz <adl@gnu.org>
8393
8394 Move the token type and YYSTYPE in the parser class.
8395 * data/lalr1.cc (stack.hh, location.hh): Include earlier.
8396 (parser::token): New, from the moved free definition of tokens.
8397 (parser::semantic_value): Now a full definition instead of an
8398 indirection to YYSTYPE.
8399 (b4_post_prologue): No longer included in the header file, but
8400 in the implementation file.
8401 * doc/bison.texi (C+ Language Interface): Update.
8402 * src/parse-gram.y: Support unary %define.
8403 * tests/actions.at: Define global_tokens_and_yystype for backward
8404 compatibility until we update the tests.
8405 * tests/calc.at: Idem.
8406 (first_line, first_column, last_line, last_column): Define for lalr1.cc
8407 to simplify the code.
8408
8409 2005-09-29 Paul Eggert <eggert@cs.ucla.edu>
8410
8411 Port to SunOS 4.1.4, which lacks strtoul and strerror.
8412 Ah, the good old days! Problem reported by Peter Klein.
8413 * bootstrap (gnulib_modules): Add strerror, strtoul.
8414 * lib/.cvsignore: Add strerror.c, strtol.c, strtoul.c
8415 * m4/.cvsignore: Add strerror.m4, strtol.m4, strtoul.m4.
8416
8417 2005-09-29 Akim Demaille <akim@epita.fr>
8418
8419 * data/c.m4 (b4_error_verbose_if): New.
8420 * data/lalr1.cc: Use it.
8421 (YYERROR_VERBOSE_IF): Remove.
8422 (yyn_, yylen_, yystate_, yynerrs_, yyerrstatus_): Remove as
8423 parser members, replaced by...
8424 (yyn, yylen, yystate, yynerss, yyerrstatus): these parser::parse
8425 local variables.
8426 (yysyntax_error_): Takes the state number as argument.
8427 (yyreduce_print_): Use the argument yyrule, not the former
8428 attribute yyn_.
8429
8430 2005-09-26 Paul Eggert <eggert@cs.ucla.edu>
8431
8432 * bootstrap (gnulib_modules): Add verify.
8433 * lib/.cvsignore: Add verify.h.
8434 * src/getargs.c: Use ARGMATCH_VERIFY rather than verify.
8435 * src/system.h (verify): Remove.
8436 Include verify.h instead.
8437 * src/tables.c (tables_generate): Use new API for 'verify'.
8438
8439 2005-09-21 Paul Eggert <eggert@cs.ucla.edu>
8440
8441 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Do not use
8442 local variables whose names begin with 'yy'.
8443 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
8444 Trivial changes from Joel E. Denny.
8445
8446 * bootstrap (gnulib_modules): Remove alloca. Bison doesn't need
8447 it itself.
8448 * src/main.c (main) [C_ALLOCA]: Don't flush alloca'ed memory; we
8449 don't use alloca any more.
8450
8451 * data/yacc.c [YYSTACK_USE_ALLOCA && !defined __GNUC__ && ! defined
8452 __BUILTIN_VA_ARG_INCR && ! defined _AIX && ! defined _MSC_VER &&
8453 defined _ALLOCA_H]: Don't include <stdlib.h>; not needed in this case.
8454 * tests/torture.at (Exploding the Stack Size with Alloca): Adjust
8455 to match yacc.c, to test more hosts.
8456
8457 2005-09-20 Paul Eggert <eggert@cs.ucla.edu>
8458
8459 * data/yacc.c (YYSIZE_T): Reindent to make it clearer. This
8460 doesn't affect behavior.
8461 (YYSTACK_ALLOC) [YYSTACK_USE_ALLOCA]: Improve support for
8462 Solaris, AIX, MSC.
8463 (_STDLIB_H): Renamed from YYINCLUDED_STDLIB_H. All uses changed.
8464 This works a bit better with glibc, if user code has already included
8465 stdlib.h.
8466 * doc/bison.texinfo (Bison Parser): Document that users can't
8467 arbitrarily use malloc and free for other purposes. Document
8468 that <alloca.h> and <malloc.h> might be included.
8469 (Table of Symbols): Under YYSTACK_USE_ALLOCA, Don't claim that the
8470 user must declare alloca.
8471
8472 * HACKING (release): Forwarn the Translation Project about
8473 stable releses.
8474
8475 2005-09-20 Akim Demaille <akim@epita.fr>
8476
8477 * data/glr.c: Use b4_token_enums, not b4_token_enums_defines.
8478
8479 2005-09-19 Paul Eggert <eggert@cs.ucla.edu>
8480
8481 * data/yacc.c (YYSIZE_MAXIMUM): New macro.
8482 (YYSTACK_ALLOC_MAXIMUM): Use it.
8483 (yysyntax_error): New function.
8484 (yyparse) [YYERROR_VERBOSE]: Don't leak memory indefinitely if
8485 multiple syntax errors are reported, and alloca is being used.
8486 Instead, reallocate buffers twice as big each time, so that
8487 we waste at most half the allocated memory. Start with a small
8488 (128-byte) buffer that will suffice in most cases anyway.
8489 Use yysyntax_error to do most of the work.
8490
8491 * doc/bison.texinfo (Error Reporting, Table of Symbols):
8492 yynerrs is the number of errors reported, not the number of
8493 errors encountered.
8494
8495 * tests/glr-regression.at (Duplicated user destructor for lookahead):
8496 Mark it as expected to fail.
8497 Cast result of malloc; problem reported by twlevo@xs4all.nl.
8498 * tests/actions.at, tests/calc.at, tests/glr-regression.at:
8499 Don't start user-code symbols with "yy", to avoid name space problems.
8500
8501 2005-09-19 Akim Demaille <akim@epita.fr>
8502
8503 Remove the traits, failed experiment.
8504 It never proved useful, and anyway because of the current
8505 definition, it was not possible to have several specialization of
8506 this traits, making it useless.
8507 * data/lalr1.cc (yy:traits): Remove.
8508 Inline its definitions in the parser class.
8509
8510 2005-09-19 Akim Demaille <akim@epita.fr>
8511
8512 * tests/atlocal.in (LIBS): Pass INTLLIBS to address failures on at
8513 least Mac OSX with a /usr/local install of gettext.
8514
8515 2005-09-19 Akim Demaille <akim@epita.fr>
8516
8517 * data/lalr1.cc (yyparse): Rename yylooka and yyilooka as yychar
8518 and yytoken for similarity with the other skeletons.
8519
8520 2005-09-19 Akim Demaille <akim@epita.fr>
8521
8522 * NEWS, configure.ac: update version number to 2.1a.
8523
8524 2005-09-16 Paul Eggert <eggert@cs.ucla.edu>
8525
8526 * NEWS: Version 2.1.
8527
8528 * NEWS: Remove notice of yytname change, since it was never in an
8529 official release.
8530 * data/glr.c (yydestroyGLRState): Rename local var to avoid shadowing
8531 diagnostic.
8532 * src/output.c (prepare): Likewise.
8533 * data/lalr1.cc (YYERROR_VERBOSE_IF): New macro.
8534 (yysyntax_error_): Use it to avoid GCC warning when YYERROR_VERBOSE
8535 is not defined. This is an awful hack, but it's enough for now.
8536 All callers changed.
8537 * tests/glr-regression-at (make_value): Args are const pointers now,
8538 to avoid GCC warning.
8539 (Duplicated user destructor for lookahead): New test. Currently
8540 skipped. It fails on my host but I'm not sure it'll always fail.
8541
8542 2005-09-16 Akim Demaille <akim@epita.fr>
8543
8544 * src/symtab.h (struct symbol): Declare the printer and destructor
8545 as const, to avoid accidental calls to free.
8546 (symbol_destructor_set, symbol_printer_set): Adjust.
8547 * src/symtab.c: Adjust.
8548
8549 2005-09-16 Akim Demaille <akim@epita.fr>
8550
8551 * data/c.m4 (b4_token_enums): New.
8552 (b4_token_defines): Rename as...
8553 (b4_token_enums_defines): this.
8554 (b4_token_defines): New, output only the #defines.
8555 * data/yacc.c, data/glr.c: Adjust.
8556 * data/lalr1.cc: Use b4_token_enums instead of b4_token_enums_defines.
8557 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Define
8558 as default values.
8559
8560 2005-09-16 Akim Demaille <akim@epita.fr>
8561
8562 * data/lalr1.cc (yylex_): Remove, inline its code.
8563 (yyreport_syntax_error_): Remove, replaced by...
8564 (yysyntax_error_): this which returns a string and leaves to the
8565 caller the call to the users' error function.
8566 (yylooka_, yyilooka_, yylval, yylloc, yyerror_range_, yyval, yyloc):
8567 Move from members of the parser object...
8568 (yylooka, yyilooka, yylval, yylloc, yyerror_range, yyval, yyloc):
8569 to local variables of the parse function.
8570
8571 2005-09-16 Akim Demaille <akim@epita.fr>
8572
8573 * doc/bison.texinfo (Calc++ Parser): Don't promote defining YYEOF
8574 since it's in Bison's name space.
8575
8576 2005-09-15 Paul Eggert <eggert@cs.ucla.edu>
8577
8578 * data/glr.c (yyresolveValue): Add default case to pacify
8579 gcc -Wswitch-default. Problem reported by twlevo@xs4all.nl.
8580
8581 * NEWS: Document when yyparse started to return 2.
8582 * doc/bison.texinfo (Parser Function): Document when yyparse
8583 returns 2.
8584
8585 * data/lalr1.cc: Revert part of previous change, as it's incompatible.
8586 (b4_filename_type): Renamed back from b4_file_name_type. All uses
8587 changed.
8588 (class position): file_name -> filename (reverting). All uses changed.
8589
8590 2005-09-14 Paul Eggert <eggert@cs.ucla.edu>
8591
8592 * examples/calc++/Makefile.am ($(calc_sources_generated)): Don't
8593 do anything if $@ exists. This reverts part of the 2005-07-07
8594 patch.
8595
8596 2005-09-11 Paul Eggert <eggert@cs.ucla.edu>
8597
8598 * Makefile.am (EXTRA_DIST): Do not distribute REFERENCES; it
8599 contains obsolete information and isn't worth distributing as a
8600 separate file anyway.
8601 * data/glr.c [defined YYSETJMP]: Don't include <setjmp.h>.
8602 (YYJMP_BUF, YYSETJMP, YYLONGJMP) [!defined YYSETJMP]: New macros.
8603 All uses of jmp_buf, setjmp, longjmp changed to use these instead.
8604 (yyparse): Abort if user code uses longjmp to throw an unexpected
8605 value.
8606
8607 2005-09-09 Paul Eggert <eggert@cs.ucla.edu>
8608
8609 * data/c.m4 (b4_identification): Define YYBISON_VERSION.
8610 Suggested by twlevo@xs4all.nl.
8611
8612 * data/glr.c (YYCHK1): Do not assume YYE is in range.
8613 This avoids a diagnostic from gcc -Wswitch-enum.
8614 Problem reported by twlevo@xs4all.nl.
8615
8616 * doc/bison.texinfo: Don't use "filename", as per GNU coding
8617 standards. Use "file name" or "file" or "name", depending on
8618 the context.
8619 (Invocation): The output of "bison hack/foo.y" goes to foo.tab.c,
8620 not to hack/foo.tab.c.
8621 (Calc++ Top Level): 2nd arg of main is not const.
8622 * data/glr.c: b4_filename -> b4_file_name.
8623 * data/lalr1.cc: Likewise. Also, b4_filename_type -> b4_file_name_type.
8624 All uses changed.
8625 (class position): filename -> file_name. All uses changed.
8626 * data/yacc.c: b4_filename -> b4_file_name.
8627 * lib/bitset.h: filename -> file_name in local vars.
8628 * lib/bitset_stats.c: Likewise.
8629 * src/files.c: Likewise.
8630 * src/scan-skel.l ("@output ".*\n): Likewise.
8631 * src/files.c (file_name_split): Renamed from filename_split.
8632 * src/muscle_tab.c (muscle_init): Output b4_file_name, not b4_filename.
8633
8634 2005-09-08 Paul Eggert <eggert@cs.ucla.edu>
8635
8636 * lib/.cvsignore: Add pipe-safer.c, stdio--.h, unistd--.h,
8637 to accommodate latest gnulib.
8638
8639 * tests/glr-regression.at (Duplicate representation of merged trees):
8640 Add casts to pacify g++. Problem reported by twlevo@xs4all.nl.
8641
8642 * bootstrap: Add comment as to why the AM_LANGINFO_CODESET hack is
8643 needed.
8644
8645 2005-08-26 Paul Eggert <eggert@cs.ucla.edu>
8646
8647 * data/glr.c (yydestroyGLRState): Renamed from yydestroyStackItem.
8648 All uses changed. Invoke user destructor after an error during a
8649 split parse (trivial change from Joel E. Denny).
8650
8651 * tests/glr-regression.at
8652 (User destructor after an error during a split parse): New test case.
8653 Problem reported by Joel E. Denny in:
8654 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00029.html
8655
8656 2005-08-25 Paul Eggert <eggert@cs.ucla.edu>
8657
8658 * README-cvs: Give URLs for recommended tools.
8659 Mention Gzip version problem, and bootstrapping issues.
8660 Remove troubleshooting section, as it's somewhat obsolete.
8661
8662 * bootstrap (no_cache): New var, to accommodate different wget
8663 variants. Use it instead of '-C off'. Problem reported by
8664 twlevo@xs4all.nl.
8665
8666 * data/glr.c (yydestroyStackItem): New function.
8667 (yyrecoverSyntaxError, yyreturn): Use it to improve quality of
8668 debugging information. Problem reported by Joel E. Denny.
8669
8670 2005-08-25 Akim Demaille <akim@epita.fr>
8671
8672 * tests/local.at (AT_COMPILE_CXX): Pass $LINKS too.
8673
8674 2005-08-24 Paul Eggert <eggert@cs.ucla.edu>
8675
8676 * data/glr.c (yyrecoverSyntaxError, yyreturn):
8677 Don't invoke destructor on unresolved entries.
8678 * tests/glr-regression.at
8679 (User destructor for unresolved GLR semantic value): New test case.
8680 Problem reported by Joel E. Denny in:
8681 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00016.html
8682
8683 2005-08-21 Paul Eggert <eggert@cs.ucla.edu>
8684
8685 * lib/.cvsignore: Remove realloc.c, strncasecmp.c, xstrdup.c.
8686 Add strnlen.c.
8687 * m4/.cvsignore: Remove codeset.m4, gettext.m4, lib-ld.m4,
8688 lib-prefix.m4, po.m4.
8689
8690 * data/glr.c (yyreturn): Use "Cleanup:" rather than "Error:"
8691 in yydestruct diagnostic, since it might not be an error.
8692 Problem reported by Joel Denny near end of
8693 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
8694 * data/lalr1.cc (yyerturn): Likewise.
8695 * data/yacc.c (yyreturn): Likewise.
8696 * tests/calc.at (_AT_CHECK_CALC_ERROR): Adjust to the above change.
8697
8698 * src/files.c: Remove obsolete FIXME comment.
8699
8700 * data/glr.c (YY_SYMBOL_PRINT): Append a newline, for consistency
8701 with the other templates, and to fix bogus run-on messages such
8702 as the one reported at the end of
8703 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
8704 All callers changed to avoid the newline.
8705 (yyprocessOneStack): Output two lines rather than one, to accommodate
8706 the above change. This changes the debug output format slightly.
8707
8708 * data/glr.c (yyresolveValue): Fix redundant parse tree problem
8709 reported by Joel E. Denny in
8710 <http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00004.html>
8711 (trivial change).
8712 * tests/glr-regression.at (Duplicate representation of merged trees):
8713 New test, from Joel E. Denny in:
8714 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00013.html>.
8715 * THANKS: Add Joel E. Denny.
8716
8717 * configure.ac (AC_INIT): Bump to 2.0c.
8718
8719 2005-07-24 Paul Eggert <eggert@cs.ucla.edu>
8720
8721 * NEWS: Version 2.0b.
8722
8723 * Makefile.am (SUBDIRS): Put examples before tests, so that
8724 "make check" doesn't finish with "All 1 tests passed".
8725
8726 * tests/regression.at (Token definitions): Don't rely on
8727 AT_PARSER_CHECK for data that contains backslashes. It currently
8728 uses 'echo', and 'echo' isn't portable if its argument contains
8729 backslashes. Problem found on OpenBSD 3.4. Also, do not assume
8730 that the byte '\0xff' is not printable in the C locale; it is,
8731 under OpenBSD 3.4 (!). Luckily, '\0x80' through '\0x9e' are
8732 not printable, so use '\0x81' to test.
8733
8734 * data/glr.c (YYOPTIONAL_LOC): Define even if it's not a recent
8735 version of GCC, since the macro is used with non-GCC compilers.
8736
8737 Fix core dump reported by Pablo De Napoli in
8738 <http://lists.gnu.org/archive/html/bug-bison/2005-07/msg00053.html>.
8739 * tests/regression.at (Invalid inputs with {}): New test.
8740 * src/parse-gram.y (token_name): Translate type before using
8741 it as an index.
8742
8743 * data/glr.c (ATTRIBUTE_UNUSED): Remove, since it infringes on
8744 the user's name space. All uses changed to __attribute__
8745 ((__unused__)).
8746 (yyFail, yyMemoryExhausted, yyreportAmbiguity):
8747 Add __attribute__ ((__noreturn__)).
8748
8749 * etc/clcommit: Remove. We weren't using it, and it failed
8750 "make maintainer-distcheck".
8751 * Makefile.maint: Merge from coreutils.
8752 (CVS_LIST, CVS_LIST_EXCEPT): New macros.
8753 (syntax-check-rules): Change list of rules as described below.
8754 (sc_cast_of_alloca_return_value, sc_dd_max_sym_length):
8755 (sc_file_system, sc_obsolete_symbols, sc_prohibit_atoi_atof):
8756 (sc_prohibit_jm_in_m4, sc_root_tests, sc_tight_scope):
8757 (sc_trailing_space): New rules.
8758 (sc_xalloc_h_in_src): Remove.
8759 (sc_cast_of_argument_to_free, sc_cast_of_x_alloc_return_value):
8760 (sc_space_tab, sc_error_exit_success, sc_changelog):
8761 (sc_system_h_headers, sc_sun_os_names, sc_unmarked_diagnostics):
8762 (makefile-check, po-check, author_mark_check):
8763 (makefile_path_separator_check, copyright-check):
8764 Use grep -n, to make it easier to find violations.
8765 Use CVS_LIST and CVS_LIST_EXCEPT.
8766 (header_regexp, h_re): Remove.
8767 (dd_c): New macro.
8768 (sc_dd_max_sym_length, .re-list, news-date-check): New rules.
8769 (my-distcheck): Use more-modern GCC flags.
8770 (signatures, %.asc): Remove.
8771 (rel-files, announcement): Remove signatures.
8772 Restore old updating code, even though we don't use it, so
8773 that we're the same as coreutils.
8774 (alpha, beta, major): Depend on news-date-check.
8775 Make the upload commands.
8776
8777 * data/c.m4, data/lalr1.cc, data/yacc.c: Normalize white space.
8778 * lib/abitset.h, lib/bbitset.h, lib/bitset.h: Likewise.
8779 * lib/bitset_stats.c, lib/ebitset.h, lib/lbitset.c: Likewise.
8780 * lib/libitset.h, lib/timevar.c, lib/vbitset.h: Likewise.
8781 * src/Makefile.am, src/gram.c, src/muscle_tab.h: Likewise.
8782 * src/parse-gram.y, src/system.h, src/tables.c, src/vcg.c: Likewise.
8783 * src/vcg_defaults.h, tests/cxx-type.at, tests/existing.at: Likewise.
8784 * tests/sets.at: Likewise.
8785
8786 * data/m4sugar/m4sugar.m4: Sync from Autoconf, except that
8787 we comment out the Autoconf version number.
8788 * doc/bison.texinfo (Calc++ Scanner): Don't use atoi, as
8789 it's error-prone and "make maintainer-distcheck" rejects it.
8790
8791 * lib/subpipe.c: Include <fcntl.h> without checking for HAVE_FCNTL_H.
8792 Indent calls to "error" to pacify "make maintainer-distcheck",
8793 when the calls are not intended to be translated.
8794 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't check for fcntl.h.
8795
8796 * src/Makefile.am (DEFS): Use +=, to pacify
8797 "make maintainer-distcheck".
8798 (bison_SOURCES): Add scan-skel.h.
8799 (sc_tight_scope): New rule, from coreutils.
8800
8801 * src/files.c (src_extension, header_extension):
8802 Now static, not extern.
8803 * src/getargs.c (short_options): Likewise.
8804 * src/muscle_tab.c (muscle_table): Likewise.
8805 * src/parse-gram.y (current_class, current_type, current_prec):
8806 Likewise.
8807 * src/reader.c (grammar_end, previous_rule_end): Likewise.
8808 * src/getargs.h: Redo comments to pacify "make maintainer-distcheck".
8809 * src/main.c (main): Cast bindtextdomain and textdomain calls to
8810 void, to avoid warning when NLS is disabled.
8811 * src/output.c: Include scan-skel.h.
8812 (scan_skel): Remove decl, since scan-skel.h does this.
8813 (output_skeleton):
8814 Indent calls to "error" to pacify "make maintainer-distcheck".
8815 * src/print_graph.c: Don't include <obstack.h>, as system.h does this.
8816 * src/reader.h (gram_end, gram_lineno): New decls to pacify
8817 "make maintainer-distcheck".
8818 * src/scan-skel.l (skel_lex, skel_get_lineno, skel_get_in):
8819 (skel_get_out, skel_get_leng, skel_get_text, skel_set_lineno):
8820 (skel_set_in, skel_set_out, skel_get_debug, skel_set_debug):
8821 (skel_lex_destroy, scan_skel): Move these decls to...
8822 * src/scan-skel.h: New file.
8823 * src/uniqstr.c (uniqstr_assert):
8824 Indent calls to "error" to pacify "make maintainer-distcheck".
8825
8826 * tests/Makefile.am ($(srcdir)/package.m4): Use $(VAR),
8827 not @VAR@.
8828
8829 * tests/torture.at: Revamp to avoid misuse of atoi that
8830 "make maintainer-distcheck" complained about.
8831
8832 * examples/extexi (message): Don't print a message more than once,
8833 and omit line-number decoration that makes Emacs compile think
8834 that informative messages are worth worrying about.
8835
8836 2005-07-22 Paul Eggert <eggert@cs.ucla.edu>
8837
8838 * configure.ac: Update version number.
8839
8840 * Makefile.am (SUBDIRS): Add examples; somehow this got removed
8841 accidentally.
8842 * examples/calc++/calc++-parser.yy: Remove from CVS, as it's
8843 autogenerated by the maintainer.
8844 * examples/calc++/.cvsignore: Add *.yy.
8845
8846 * lib/bitset.c (bitset_alloc): Don't cast xcalloc result.
8847 * lib/bitset_stats.c (bitset_stats_init): Likewise.
8848 * lib/bitsetv.c (bitsetv_alloc): Likewise.
8849
8850 * po/POTFILES.in: Add lib/xalloc-die.c; remove lib/xmalloc.c.
8851
8852 * src/relation.c (relation_transpose): Rewrite to avoid bogus complaint
8853 from maintainer-distcheck about casting the argument of 'free'.
8854
8855 * NEWS: Mention recent yytname changes.
8856 * THANKS: Add Anthony Heading, twlevo@xs4all.nl.
8857
8858 * bootstrap: For translations that have not yet been upgraded to
8859 the new runtime-po domain, prime the pump by extracting the
8860 relevant strings from the obsolete translations. This code can be
8861 removed once the bison-runtime domain has been translated by each
8862 team.
8863
8864 * src/scan-gram.l (<SC_PRE_CODE>.): Don't double-quote token names,
8865 now that token names are already quoted.
8866
8867 Fix problem reported by Anthony Heading.
8868 * data/glr.c (YYTOKEN_TABLE): New macro.
8869 (yytname): Define if YYTOKEN_TABLE.
8870 * data/yacc.c (YYTOKEN_TABLE, yytname): Likewise.
8871 * data/lalr1.cc (YYTOKEN_TABLE, yytname_): Likewise.
8872 (YYERROR_VERBOSE): Define the same way the other skeletons do.
8873 * src/output.c (prepare_symbols): Output token_table_flag.
8874
8875 2005-07-21 Paul Eggert <eggert@cs.ucla.edu>
8876
8877 * data/glr.c (yyinitGLRStack, yyreturn): Don't call malloc
8878 again if the first call fails.
8879
8880 * data/glr.c (yytnamerr): New function.
8881 (yyreportSyntaxError): Use it to dequote most string literals.
8882 * data/lalr1.c (yytname_): Renamed from yyname_, for compatibility
8883 with other skeletons. All uses changed.
8884 (yytnameerr_): New function.
8885 (yyreport_syntax_error): Use it to dequote most string literals.
8886 * data/yacc.c (yytnamerr): New function.
8887 (yyerrlab): Use it to decode most string literals.
8888 * doc/bison.texinfo (Decl Summary, Calling Convention):
8889 Clarify quoting convention of yytname.
8890 * src/output.c (prepare_symbols): Quote all names. This undoes
8891 the 2005-04-17 change, which is now accomplished (mostly) via
8892 changes in the parsers as described above.
8893 * tests/regression.at (Token definitions, Web2c Actions):
8894 Undo most 2005-04-17 change here, too.
8895
8896 2005-07-20 Paul Eggert <eggert@cs.ucla.edu>
8897
8898 Fix more problems reported by twlevo@xs4all.nl.
8899 * tests/cxx-type.at: Don't pipe output of ./types through sed to
8900 remove trailing spaces. This loses the exit status of ./types,
8901 and isn't needed since ./types shouldn't be emitting trailing
8902 spaces.
8903 * data/glr.c (yyreturn): Don't pop stack if yyinitStateSet failed,
8904 as the stack isn't valid in that case.
8905
8906 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
8907 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
8908 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
8909 Add declarations to pacify "gcc -Wmissing-prototypes" when flex 2.5.31
8910 is used.
8911 * src/scan-skel.l (skel_get_lineno, skel_get_in, skel_get_out):
8912 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
8913 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
8914 Likewise.
8915
8916 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Work even with
8917 overly-picky compilers that reject 'char *foo = "bar";'.
8918
8919 * src/symtab.c (SYMBOL_ATTR_PRINT, symbol_print): Direct output
8920 to FILE * parameter, not to stderr. This fixes a typo introduced
8921 in the 2005-07-12 change.
8922
8923 * lib/subpipe.c (create_subpipe): Rewrite slightly to avoid
8924 warnings from GCC 4.
8925
8926 * data/glr.c (yyexpandGLRStack, yyaddDeferredAction, yyexpandGLRStack):
8927 (yyglrShiftDefer, yysplitStack):
8928 Remove unused parameters b4_pure_formals. All uses changed.
8929 (yyglrShift): Remove unused parameters b4_user_formals.
8930 All uses changed.
8931 (yyglrReduce): Removed unused parameter yylocp. All uses changed.
8932
8933 2005-07-18 Paul Eggert <eggert@cs.ucla.edu>
8934
8935 Destructor cleanups and regularization among the three skeletons.
8936 * NEWS: Document the behavior changes.
8937 * data/glr.c (yyrecoverSyntaxError): Don't bother to pop the
8938 stack before failing, as the cleanup code will do it for us now.
8939 * data/lalr1.cc (yyerrlab): Likewise.
8940 * data/glr.c (yyparse): Pop everything off the stack before
8941 freeing it, so that destructors get called properly.
8942 * data/lalr1.cc (yyreturn): Likewise.
8943 * data/yacc.c (yyreturn): Pop and destroy the start symbol, too.
8944 This is more consistent.
8945 * doc/bison.texinfo (Destructor Decl): Mention more reasons
8946 why destructors might be called. 1.875 -> 2.1.
8947 (Destructor Decl, Decl Summary, Table of Symbols):
8948 Some English-language cleanups for %destructor.
8949 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
8950 Add output line for destructor of start symbol.
8951 * tests/calc.at (AT_CHECK_CALC): Add one to line counts,
8952 because of that same extra output line.
8953
8954 * NEWS: Document minor wording changes in diagnostics of
8955 Bison-generated parsers.
8956 * data/glr.c (yyMemoryExhausted): Renamed from yyStackOverflow.
8957 Remove unused formals. All uses changed.
8958 (yyreportAmbiguity): "ambiguity detected" -> "syntax is ambiguous".
8959 (yyparse): Rename yyoverflowlab to yyexhaustedlab.
8960 * data/yacc.c (yyparse): "parser stack overflow" -> "memory exhausted".
8961 Rename yyoverflowab to yyexhaustedlab.
8962 When memory exhaustion occurs during syntax-error reporting,
8963 report it separately rather than in a single diagnostic; this
8964 eases translation.
8965 * doc/bison.texinfo (Memory Management): Renamed from Stack Overflow.
8966 (Memory Exhausted): Renamed from Parser Stack Overflow.
8967 Revamp wording slightly to prefer "memory exhaustion".
8968 * tests/actions.at: "parser stack overflow" -> "memory exhausted".
8969
8970 * data/c.m4 (b4_yysymprint_generate): Use YYFPRINTF, not fprintf.
8971
8972 Add i18n support to the GLR skeleton. Partially fix the C++
8973 skeleton; a C++ expert needs to finish this. Remove debugging
8974 msgids; there's little point to having them translated, since they
8975 can be understood only by someone who can read the
8976 (English-language) source code.
8977
8978 Generate runtime-po/bison-runtime.pot automatically, so that we
8979 don't have to worry about garbage getting in that file. We'll
8980 make sure after the next official release that old msgids don't
8981 get lost. See
8982 <http://lists.gnu.org/archive/html/bison-patches/2005-07/msg00119.html>.
8983
8984 * runtime-po/Makefile.in.in, runtime-po/bison-runtime.pot: Remove.
8985 Now auto-generated.
8986 * PACKAGING: Don't claim that Gawk, GCC, Perl use this method yet.
8987 Fix typos in explanations of the runtime file.
8988 * bootstrap: Change gettext keyword from YYI18N to YY_.
8989 Use standard Makefile.in.in in runtime-po, since we'll arrange
8990 for backward-compatible bison-runtime.po files in a different way.
8991 * data/glr.c (YY_): New macro, from yacc.c.
8992 (yyuserAction, yyreportAmbiguity, yyreportSyntaxError, yyparse):
8993 Translate messages intended for users.
8994 (yyreportSyntaxError): Change "virtual memory" to "memory" to match
8995 the wording in the other skeletons. We don't know that the memory
8996 is virtual.
8997 * data/lalr1.cc (YY_): Renamed from _. All uses changed.
8998 Use same method that yacc.c uses.
8999 Don't translate debugging messages.
9000 (yy::yyreport_syntax_error): Put in a FIXME for the i18n stuff;
9001 it doesn't work (yet), and requires C++ expertise to fix.
9002 * data/yacc.c (YY_): Renamed from YY18N. All uses changed.
9003 Move defn to a more logical place, to be consistent with other
9004 skeletons.
9005 Don't translate debugging messages.
9006 Don't assume line numbers fit in unsigned int; use unsigned long fmts.
9007 * doc/bison.texinfo: Mention <libintl.h>. Change glibc cross reference
9008 to gettext cross reference. Add indexing terms. Mention YYENABLE_NLS.
9009 * runtime-po/POTFILES.in: Add data/glr.c, data/lalr1.cc.
9010
9011 Fix yyerror / yylex test glitches noted by twlevo@xs4all.nl.
9012 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Have yyerror return
9013 void, not int.
9014 * tests/glr-regression.at (Badly Collapsed GLR States):
9015 Likewise.
9016 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
9017 yylex should return 0 at EOF rather than aborting.
9018
9019 Improve tests for stack overflow in GLR parser.
9020 Problem reported by twlevo@xs4all.nl.
9021 * data/glr.c (struct yyGLRStack): Remove yyerrflag member.
9022 All uses removed.
9023 (yyStackOverflow): Just longjmp, but with value 2 so that caller
9024 can handle the problem.
9025 (YYCHK1): Use goto (a la yacc.c) rather than setting a flag.
9026 (yyparse): New local variable yyresult to record the result.
9027 Use result of setjmp to set it, rather than storing itinto
9028 struct.
9029 (yyDone): Remove label.
9030 (yyacceptlab, yyabortlab, yyoverflowlab, yyreturn): New labels,
9031 to mimic yacc.c. Do not discard lookahead if it's EOF (possible
9032 if YYABORT is used).
9033 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Exit with
9034 yyparse status; put status > 1 into diagnostic.
9035 Check that status==2 works.
9036 * tests/calc.at, tests/cxx-type.at, tests/glr-regression.at:
9037 Use exit status 3 for failure to open (which shouldn't happen).
9038
9039 2005-07-17 Paul Eggert <eggert@cs.ucla.edu>
9040
9041 * tests/conflicts.at (%nonassoc and eof): Don't exit with status
9042 1 on syntax error; just let yyparse do its thing.
9043 * tests/glr-regression.at (Badly Collapsed GLR States): Likewise.
9044 * tests/torture.at (AT_DATA_STACK_TORTURE): Likewise.
9045 (Exploding the Stack Size with Alloca):
9046 (Exploding the Stack Size with Malloc):
9047 Expect exit status 2, not 1, since the parser is supposed to blow
9048 its stack. Problem reported by twlevo@xs4all.nl.
9049
9050 * data/glr.c (yyparse): Don't assume that the initial calls
9051 to YYMALLOC succeed; in that case, yyparse incorrectly returned 0.
9052 Print a stack-overflow message and fail instead.
9053 Initialize the line-number information before creating the stack,
9054 so that the stack-overflow message can report line zero safely.
9055
9056 2005-07-14 Paul Eggert <eggert@cs.ucla.edu>
9057
9058 Fix problems reported by twlevo@xs4all.nl.
9059 * data/glr.c (YYSTACKEXPANDABLE): Don't define if already defined.
9060 (yyuserMerge): Provide a default case if b4_mergers is empty.
9061 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Define YYSTACKEXPANDABLE.
9062 * tests/glr-regression.at
9063 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
9064 Add casts to pacify C++ compilers.
9065 * tests/glr-regression.at (Improper merging of GLR delayed action
9066 sets): Declare yylex before using it.
9067 * tests/Makefile.am (maintainer-check-g++): Fix a stray
9068 $(GXX) that escaped the renaming of GXX to CXX. Remove bogus
9069 test for valgrind; valgrind is independent of g++.
9070 (maintainer-check-posix): Add _POSIX2_VERSION=200112, to check
9071 for compatibility with POSIX 1003.1-2001 (if running coreutils).
9072 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Port to stricter C++.
9073 Use a destructor, so that we can expand the stack. Change
9074 YYSTYPE to char * so that we can free it. Cast result of malloc.
9075
9076 2005-07-13 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
9077
9078 * data/glr.c (yyuserAction): Fix uninitialized variable that caused
9079 a valgrind failure. Problem reported by twlevo@xs4all.nl.
9080
9081 2005-07-13 Paul Eggert <eggert@cs.ucla.edu>
9082
9083 * PACKAGING: New file, suggested by Bruno Haible and taken from
9084 similar wording in gettext's PACKAGING file.
9085 * NEWS: Mention PACKAGING.
9086 * Makefile.am (EXTRA_DIST): Add PACKAGING.
9087
9088 2005-07-12 Paul Eggert <eggert@cs.ucla.edu>
9089
9090 * NEWS: Document recent i18n improvements.
9091 * bootstrap: Get runtime translations into runtime-po.
9092 Create runtime-po files automatically, if possible.
9093 * configure.ac: Invoke BISON_I18N, so that we eat our own dog food.
9094 * data/yacc.c: Rewrite inclusion of <libintl.h> so that ENABLE_NLS
9095 does not infringe on the user's name space.
9096 (YYENABLE_NLS): Renamed from ENABLE_BISON_NLS.
9097 * doc/bison.texinfo (Internationalization): Revamp the English
9098 and Texinfo syntax a bit, to try to make it clearer.
9099 (Bison Options, Option Cross Key): Mention --print-localedir.
9100 * m4/bison-i18n.m4 (BISON_I18N): Rename ENABLE_BISON_NLS to
9101 YYENABLE_NLS. Quote a bit more.
9102 * runtime-po/.cvsignore: New file.
9103 * runtime-po/Makefile.in.in (mostlyclean): Remove *.old.pot.
9104 * runtime-po/Rules-quot: Remove; now created by bootstrap.
9105 * runtime-po/quot.sed: Likewise.
9106 * runtime-po/boldquot.sed: Likewise.
9107 * runtime-po/en@quot.header: Likewise.
9108 * runtime-po/en@boldquot.header: Likewise.
9109 * runtime-po/insert-header.sin: Likewise.
9110 * runtime-po/remove-potcdate.sin: Likewise.
9111 * runtime-po/Makevars: Likewise.
9112 * runtime-po/LINGUAS: Likewise.
9113 * runtime-po/de.po: Likewise; we will rely on the translation project
9114 to maintain this, so "bootstrap" should get it.
9115 * src/getarg.c (PRINT_LOCALEDIR_OPTION): Let the C compiler determine
9116 its value.
9117 * src/main.c (main): Bind the bison-runtime domain, too.
9118
9119 2005-07-12 Bruno Haible <bruno@clisp.org>
9120
9121 * data/yacc.c: Include <libintl.h> when NLS is enabled.
9122 (YYI18N): Renamed from _. Use dgettext when NLS is enabled.
9123 * po/POTFILES.in: Remove autogenerated file src/parse-gram.c.
9124 * runtime-po: New directory.
9125 * runtime-po/Makefile.in.in: New file, copied from po/, with modified
9126 $(DOMAIN).pot-update rule, so that old messages are never dropped.
9127 * runtime-po/Rules-quot: New file, copied from po/.
9128 * runtime-po/quot.sed: Likewise.
9129 * runtime-po/boldquot.sed: Likewise.
9130 * runtime-po/en@quot.header: Likewise.
9131 * runtime-po/en@boldquot.header: Likewise.
9132 * runtime-po/insert-header.sin: Likewise.
9133 * runtime-po/remove-potcdate.sin: Likewise.
9134 * runtime-po/Makevars: New file.
9135 * runtime-po/POTFILES.in: New file.
9136 * runtime-po/LINGUAS: New file.
9137 * runtime-po/bison-runtime.pot: New file.
9138 * runtime-po/de.po: New file.
9139 * m4/bison.m4: New file.
9140 * Makefile.am (SUBDIRS): Add runtime-po.
9141 (aclocaldir, aclocal_DATA): New variables.
9142 * configure.ac: Add AC_CONFIG_FILES of runtime-po/Makefile.in.
9143 Define aclocaldir.
9144 * src/getargs.c (usage): Document --print-localedir option.
9145 (PRINT_LOCALEDIR_OPTION): New enum item.
9146 (long_options): Add --print-localedir option.
9147 (getargs): Handle --print-localedir option.
9148 * doc/bison.texinfo (Bison Parser): Remove paragraph about _().
9149 (Internationalization): New section.
9150
9151 2005-07-12 Akim Demaille <akim@epita.fr>
9152
9153 * src/symtab.h, src/symtab.c (symbol_print): Swap the arguments,
9154 for consistency with the rest of the code.
9155 * src/symlist.h, src/symlist.c (symbol_list_print): Ditto.
9156 Add separators.
9157
9158 2005-07-12 Akim Demaille <akim@epita.fr>
9159
9160 * src/parse-gram.y: Use %printer instead of YYPRINT.
9161
9162 2005-07-12 Akim Demaille <akim@epita.fr>
9163
9164 * src/symtab.h, src/symtab.c (symbol_print): New.
9165 * src/symlist.h, src/symlist.c (symbol_list_print): New.
9166 * src/symlist.c (symbol_list_n_type_name_get): Report the culprit.
9167
9168 2005-07-12 Akim Demaille <akim@epita.fr>
9169
9170 * data/glr.c (b4_syncline): Fix (swap) the definitions of
9171 b4_at_dollar and b4_dollar_dollar.
9172
9173 2005-07-11 Paul Eggert <eggert@cs.ucla.edu>
9174
9175 * doc/bison.texinfo (Mystery Conflicts): Add reference to DeRemer
9176 and Pennello's paper.
9177
9178 2005-07-09 Paul Eggert <eggert@cs.ucla.edu>
9179
9180 * data/yacc.c (yyparse): Undo previous patch. Instead,
9181 set yylsp[0] and yyvsp[0] only if the initial action
9182 sets yylloc and yylval, respectively.
9183
9184 * data/yacc.c (yyparse): In the initial action, set
9185 yylsp[0] and yyvsp[0] rather than yylloc and yylval.
9186 This avoids the use of undefined variables if the initial
9187 action does not set yylloc and/or yylval.
9188
9189 2005-07-07 Paul Eggert <eggert@cs.ucla.edu>
9190
9191 * examples/calc++/calc++-driver.cc, examples/calc++/calc++-driver.hh:
9192 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc:
9193 Remove from CVS. These files are automatically generated.
9194 * examples/extexi: Clarify that this file is now part of Bison,
9195 not GNU M4, and that it works with any POSIX-compatible Awk.
9196 * examples/calc++/Makefile.am (run_extexi): Remove; not used.
9197 ($(calc_extracted)): Renamed from $(calc_sources_extracted),
9198 so that we also get calc++-parser.yy. Geneate it.
9199 Use $(AWK), not gawk, since any conforming Awk will do.
9200 Put comment before action, since older 'make' can't handle comment
9201 in action.
9202 $(BUILT_SOURCES): List all built sources, not just some of them.
9203 $(MAINTAINERCLEANFILES): Remove *.stamp, and all built sources.
9204 $($(srcdir)/calc++-parser.stamp): Work even if POSIXLY_CORRECT.
9205 $($(calc_sources_generated)): Remove unnecessary test for existence
9206 of target. (This had a shell syntax error anyway; a stray "x".)
9207 (calc_extracted): List $(srcdir)/calc++-parser.yy, not
9208 calc++-parser.yy.
9209 * examples/.cvsignore, examples/calc++/.cvsignore: New files.
9210
9211 * bootstrap (gnulib_modules): Add gettext, now that it's no longer
9212 implied by the other modules.
9213
9214 2005-07-06 Akim Demaille <akim@epita.fr>
9215
9216 Bind examples/calc++ to the package.
9217 * examples/calc++/Makefile: Remove, replaced by...
9218 * examples/calc++/Makefile.am: ... this new file.
9219 * examples/calc++/test: Remove input.
9220 * examples/calc++/compile: Remove.
9221 * examples/Makefile.am: New.
9222 * configure.ac, Makefile.am: Adjust.
9223 * doc/Makefile.am (clean-local): New, for more recent texi2dvis.
9224
9225 2005-07-05 Paul Eggert <eggert@cs.ucla.edu>
9226
9227 * data/glr.c (yyFail): Drastically simplify; since the format argument
9228 never had any % directives, we can simply pass it to yyerror.
9229 (yyparse): Use "t a; a=b;" rather than "t a = b;" when a will
9230 be modified later, as that is the usual style in glr.c.
9231 Problems reported by Paul Hilfinger.
9232
9233 Rewrite GLR parser to catch more buffer overrun, storage exhaustion,
9234 and size overflow errors.
9235 * data/glr.c: Include <stdio.h> etc. after user prolog, not before,
9236 in case the user prolog sets feature-test macros like _GNU_SOURCE.
9237 (YYSIZEMAX): New macro.
9238 (yystpcpy): New function, taken from yacc.c.
9239 (struct yyGLRStack.yyspaceLeft): Now size_t, not int.
9240 (yyinitGLRStack, yyfreeGLRstack): Remove unnecessary forward decls,
9241 so that we don't have to maintain their signatures.
9242 (yyFail): Check for buffer overflow, by using vsnprintf rather
9243 than vsprintf. Allocate a bigger buffer if possible.
9244 Report an error if buffer allocation fails.
9245 (yyStackOverflow): New function.
9246 (yyinitStateSet, yyinitGLRStack): Return a boolean indicating whether
9247 the initialization was successful. It might fail if storage was
9248 exhausted.
9249 (yyexpandGLRStack): Add more checks for storage allocation failure.
9250 Use yyStackOverflow to report failures.
9251 (yymarkStackDeleted, yyglrShift, yyglrShiftDefer, yydoAction):
9252 (yysplitStack, yyprocessOneStack, yyparse, yypstack):
9253 Don't assume stack number fits in int.
9254 (yysplitStack): Check for storage allocation failure.
9255 (yysplitStack, yyprocessOneStack): Add pure_formals, so that we
9256 can print diagnostics on storage allocation failure. All callers
9257 changed.
9258 (yyresolveValue): Use yybool for boolean.
9259 (yyreportSyntaxError): Check for size-calculation overflow.
9260 This code is taken from yacc.c.
9261 (yyparse): Check for storage allocation errors when allocating
9262 the initial stack.
9263
9264 2005-07-05 Akim Demaille <akim@epita.fr>
9265
9266 Extract calc++ from the documentation.
9267 * doc/bison.texinfo (Calc++): Add the extraction marks.
9268 * examples/extexi: New, from the aborted GNU Programming 2E.
9269 Separate the different paragraph of a file with empty lines.
9270 * examples/Makefile: Use it to extract the whole calc++ example.
9271
9272 2005-06-24 Akim Demaille <akim@epita.fr>
9273
9274 * doc/bison.texinfo (C++ Parser Interface): Use defcv to define
9275 class typedefs.
9276
9277 2005-06-22 Akim Demaille <akim@epita.fr>
9278
9279 * doc/bison.texinfo (C++ Language Interface): First stab.
9280 (C++ Parsers): Remove.
9281
9282 2005-06-22 Akim Demaille <akim@epita.fr>
9283
9284 * data/lalr1.cc (yylex_): Honor %lex-param.
9285
9286 2005-06-22 Akim Demaille <akim@epita.fr>
9287
9288 Start a set of simple examples.
9289 * examples/calc++/Makefile, examples/calc++/calc++-driver.cc,
9290 * examples/calc++/calc++-driver.hh,
9291 * examples/calc++/calc++-parser.yy,
9292 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc,
9293 * examples/calc++/compile, examples/calc++/test: New.
9294
9295 2005-06-09 Paul Eggert <eggert@cs.ucla.edu>
9296
9297 * data/yacc.c (malloc, free) [defined __cplusplus]: Wrap inside
9298 extern "C" {}. This fixes a problem reported by Paul Hilfinger,
9299 which stems from the 2005-05-27 patch.
9300
9301 2005-06-06 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
9302
9303 * data/glr.c: Modify treatment of unused parameters to permit use
9304 of g++ (which doesn't allow __attribute__ ((unused)) for parameters).
9305
9306 2005-05-30 Paul Eggert <eggert@cs.ucla.edu>
9307
9308 Fix infringement on user name space reported by Janos Zoltan Szabo.
9309 * data/yacc.c (yyparse): strlen -> yystrlen.
9310
9311 2005-05-30 Akim Demaille <akim@epita.fr>
9312
9313 * data/lalr1.cc (_): New.
9314 Translate the various messages.
9315
9316 2005-05-27 Paul Eggert <eggert@cs.ucla.edu>
9317
9318 Fix infringement on user name space reported by Bruno Haible.
9319 * data/yacc.c (YYSIZE_T): Define first, so that later decls can use it.
9320 Prefer GCC's __SIZE_TYPE__ if available, so that we don't infringe on
9321 the user's name space.
9322 (alloca): Include <stdlib.h> to get it, if it's not built in.
9323 (YYMALLOC, YYFREE): Define only if needed.
9324 (malloc, free): Declare, but only if needed, as this infringes on
9325 the user name space.
9326
9327 2005-05-25 Paul Eggert <eggert@cs.ucla.edu>
9328
9329 Fix BeOS, FreeBSD, MacOS porting problems reported by Bruno Haible.
9330 * lib/bitset.c (bitset_print): Don't assume size_t can be printed
9331 with %d format.
9332 * lib/ebitset.c (min, max): Undef before defining.
9333 * lib/vbitset.c (min, max): Likewise.
9334 * lib/subpipe.c (create_subpipe): Save local variables in case
9335 vfork clobbers them.
9336
9337 2005-05-24 Bruno Haible <bruno@clisp.org>
9338
9339 * tests/synclines.at (AT_SYNCLINES_COMPILE): Add support for the
9340 error message syntax used by gcc-4.0.
9341
9342 2005-05-23 Paul Eggert <eggert@cs.ucla.edu>
9343
9344 * README: Mention m4 1.4.3. Remove obsolete advice about
9345 Sun Forte Developer 6 update 2, VMS, and MS-DOS.
9346
9347 * bootstrap: Remove workaround for problem I encountered with
9348 gettext 0.14.1; it seems to be fixed now.
9349
9350 2005-05-22 Paul Eggert <eggert@cs.ucla.edu>
9351
9352 * NEWS: Version 2.0a.
9353
9354 * src/files.c: Include "stdio-safer.h"; this fixes a typo in
9355 the previous change.
9356
9357 Various maintainer cleanups.
9358 * .cvsignore: Add a.exe, a.out, b.out,, conf[0-9]*, confdefs*,
9359 conftest*, for benefit of CVS commands run at the same time as
9360 "configure". Add build-aux, since "bootstrap" now creates it and
9361 its subfiles.
9362 * Makefile.cfg (move_if_change): Remove.
9363 * Makefile.maint: Remove the update stuff; we now use "bootstrap".
9364 (ftp-gnu, www-gnu, move_if_change, local_updates, update):
9365 (po_repo, do-po-update, po-update, wget_files, get-targets):
9366 (config.guess-url_prefix, config.sub-url_prefix):
9367 (ansi2knr.c-url_prefix, texinfo.tex-url_prefix):
9368 (standards.texi-url_prefix, make-stds.texi-url_prefix, taget, url):
9369 ($(get-targets), cvs-files, automake_repo, wget-update, cvs-update):
9370 Remove.
9371 * configure.ac (AC_CONFIG_AUX_DIR): Change from config to build-aux;
9372 this is now the recommended name.
9373 * config/.cvsignore: Remove config.guess, config.rpath, config.sub,
9374 depcomp, install-sh, mdate-sh, missing, mkinstalldirs, texinfo.tex,
9375 ylwrap. These files now go into build-aux.
9376 * config/move-if-change: Remove.
9377 * config/prev-version.txt: Bump from 1.75 to 2.0.
9378
9379 * bootstrap: Add stdio-safer, unistd-safer modules.
9380 Remove m4/glibc2.m4 (introduced by latest gnulib, but
9381 we don't need it).
9382 * lib/.cvsignore: Add dup-safer.c, fd-safer.c,
9383 fopen-safer.c, stdio-safer.h, unistd-safer.h.
9384 * lib/subpipe.c: Include "unistd-safer.h".
9385 (create_subpipe): Make sure all the newly-created
9386 file descriptors are > 2, so that diagnostics don't
9387 get sent down them (which might cause Bison to hang, in theory).
9388 * m4/.cvsignore: Add stdio-safer.m4, unistd-safer.m4.
9389 * src/files.c (xfopen): Use fopen_safer, not fopen.
9390
9391 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Port
9392 yesterday's yacc.c fix.
9393
9394 2005-05-21 Paul Eggert <eggert@cs.ucla.edu>
9395
9396 * data/glr.c, data/lalr1.cc: Update copyright date.
9397
9398 Fix a destructor bug reported by Wolfgang Spraul in
9399 <http://lists.gnu.org/archive/html/bug-bison/2005-05/msg00042.html>.
9400 * data/yacc.c (yyabortlab): Don't call destructor, and
9401 don't set yychar to EMPTY.
9402 (yyoverflowlab): Don't call destructor.
9403 (yyreturn): Call destructor, if yychar is neither YYEOF nor YYEMPTY.
9404 * tests/calc.at (AT_CHECK_CALC): Expect one fewer output lines,
9405 since we no longer output the message "discarding lookahead token
9406 end of input ()".
9407
9408 2005-05-20 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
9409
9410 * data/glr.c (YY_SYMBOL_PRINT): Don't print newline at end to
9411 fix a small glitch in debugging output.
9412 (yyprocessOneStack, yyrecoverSyntaxError, yyparse): Print newline
9413 after YY_SYMBOL_PRINT where needed.
9414
9415 (struct yyGLRState): Add some comments.
9416 (struct yySemanticOption): Add some comments.
9417 (union yyGLRStackItem): Add comment.
9418
9419 (yymergeOptionSets): Correct this to properly perform the union,
9420 avoiding infinite reported by Michael Rosien.
9421 Update comment.
9422
9423 * tests/glr-regression.at: Add test for GLR merging error reported
9424 by M. Rosien.
9425
9426 2005-05-13 Paul Eggert <eggert@cs.ucla.edu>
9427
9428 * COPYING, ChangeLog, GNUmakefile, HACKING, Makefile.am,
9429 Makefile.cfg, Makefile.maint, NEWS, README, README-alpha,
9430 README-cvs, TODO, bootstrap, configure.ac, data/Makefile.am,
9431 data/README, data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c,
9432 data/m4sugar/m4sugar.m4, doc/Makefile.am, doc/bison.texinfo,
9433 doc/fdl.texi, doc/gpl.texi, doc/refcard.tex, lib/Makefile.am,
9434 lib/abitset.c, lib/abitset.h, lib/bbitset.h, lib/bitset.c,
9435 lib/bitset.h, lib/bitset_stats.c, lib/bitset_stats.h,
9436 lib/bitsetv-print.c, lib/bitsetv-print.h, lib/bitsetv.c,
9437 lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/get-errno.c,
9438 lib/get-errno.h, lib/lbitset.c, lib/lbitset.h, lib/libiberty.h,
9439 lib/main.c, lib/subpipe.c, lib/subpipe.h, lib/timevar.c,
9440 lib/timevar.def, lib/timevar.h, lib/vbitset.c, lib/vbitset.h,
9441 lib/yyerror.c, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4, m4/timevar.m4,
9442 m4/warning.m4, src/LR0.c, src/LR0.h, src/Makefile.am, src/assoc.c,
9443 src/assoc.h, src/closure.c, src/closure.h, src/complain.c,
9444 src/complain.h, src/conflicts.c, src/conflicts.h, src/derives.c,
9445 src/derives.h, src/files.c, src/files.h, src/getargs.c,
9446 src/getargs.h, src/gram.c, src/gram.h, src/lalr.c, src/lalr.h,
9447 src/location.c, src/location.h, src/main.c, src/muscle_tab.c,
9448 src/muscle_tab.h, src/nullable.c, src/nullable.h, src/output.c,
9449 src/output.h, src/parse-gram.c, src/parse-gram.h,
9450 src/parse-gram.y, src/print.c, src/print.h, src/print_graph.c,
9451 src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c,
9452 src/reduce.h, src/relation.c, src/relation.h, src/scan-gram.l,
9453 src/scan-skel.l, src/state.c, src/state.h, src/symlist.c,
9454 src/symlist.h, src/symtab.c, src/symtab.h, src/system.h,
9455 src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h,
9456 src/vcg.c, src/vcg.h, src/vcg_defaults.h, tests/Makefile.am,
9457 tests/actions.at, tests/c++.at, tests/calc.at, tests/conflicts.at,
9458 tests/cxx-type.at, tests/existing.at, tests/glr-regression.at,
9459 tests/headers.at, tests/input.at, tests/local.at, tests/output.at,
9460 tests/reduce.at, tests/regression.at, tests/sets.at,
9461 tests/synclines.at, tests/testsuite.at, tests/torture.at:
9462 Update FSF postal mail address.
9463
9464 2005-05-11 Paul Eggert <eggert@cs.ucla.edu>
9465
9466 * tests/local.at (AT_COMPILE_CXX): Treat LDFLAGS like AT_COMPILE does.
9467 Problem reported by Ralf Menzel.
9468
9469 2005-05-01 Paul Eggert <eggert@cs.ucla.edu>
9470
9471 * tests/actions.at: Test that stack overflow invokes destructors.
9472 From Marcus Holland-Moritz.
9473 * data/yacc.c (yyerrlab): Move the code that destroys the stack
9474 from here....
9475 (yyreturn): to here. That way, destructors are called properly
9476 even if the stack overflows, or the user calls YYACCEPT or
9477 YYABORT. Stack-overflow problem reported by Marcus Holland-Moritz.
9478 (yyoverflowlab): Destroy the lookahead.
9479
9480 2005-04-24 Paul Eggert <eggert@cs.ucla.edu>
9481
9482 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): Add more-descriptive comment.
9483
9484 2005-04-17 Paul Eggert <eggert@cs.ucla.edu>
9485
9486 * NEWS: Bison-generated C parsers no longer quote literal strings
9487 associated with tokens.
9488 * src/output.c (prepare_symbols): Don't escape strings,
9489 since users don't want to see C escapes.
9490 * tests/calc.at (AT_CHECK_CALC): Adjust to lack of quotes
9491 in diagnostics.
9492 * tests/input.at (Torturing the Scanner): Likewise.
9493 * tests/regression.at (Token definitions, Web2c Actions): Likewise.
9494
9495 2005-04-16 Paul Eggert <eggert@cs.ucla.edu>
9496
9497 * tests/torture.at (AT_INCREASE_DATA_SIZE): Skip the test if
9498 the data size is known to be too small and we can't increase it.
9499 This works around an HP-UX 11.00 glitch reported by Andrew Benham.
9500
9501 2005-04-15 Paul Eggert <eggert@cs.ucla.edu>
9502
9503 * src/parse-gram.y: Include quotearg.h.
9504 (string_as_id): Quote $1 before using it as a key, since the
9505 lexer no longer quotes it for us.
9506 (string_content): Don't strip quotes, since lexer no longer
9507 quotes it for us.
9508 * src/scan-gram.l: Include quotearg.h.
9509 ("\""): Omit quote.
9510 ("'"<SC_ESCAPED_CHARACTER>): Quote symbol before using it as
9511 a key, since the rest of the lexer doesn't quote it.
9512 * src/symtab.c (symbol_get): Don't quote symbol; caller does it now.
9513 * tests/regression.at (Token definitions): Check for backslashes
9514 in token strings.
9515
9516 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): New macro.
9517 (YYSIZE_T): Define to unsigned long int when using an older compiler.
9518 (yyparse): Revamp code to generate long syntax error message, to
9519 make it easier to translate, and to avoid problems with arithmetic
9520 overflow. Change "virtual memory" to "memory" in diagnostic, since
9521 we don't know whether the memory is virtual.
9522
9523 2005-04-13 Paul Eggert <eggert@cs.ucla.edu>
9524
9525 * NEWS: Bison-generated C parsers now use the _ macro to
9526 translate strings.
9527 * data/yacc.c (_) [!defined _]: New macro.
9528 All English strings wrapped inside this macro.
9529 * doc/bison.texinfo (Bison Parser): Document _.
9530 * po/POTFILES.in: Include src/parse-gram.c, since it now
9531 includes translateable strings that parse-gram.y doesn't.
9532
9533 2005-04-12 Paul Eggert <eggert@cs.ucla.edu>
9534
9535 * src/symtab.c (symbol_make_alias): Call symbol_type_set,
9536 reverting the 2004-10-11 change to this function.
9537 (symbol_check_alias_consistency): Don't call symbol_type_set
9538 if the type name is already correct.
9539 * tests/input.at (Typed symbol aliases): New test, from Tim Van Holder.
9540
9541 2005-03-25 Paul Eggert <eggert@cs.ucla.edu>
9542
9543 * tests/regression.at (Token definitions): Don't use a token named
9544 c, as that generates a "#define c ..." that runs afoul of buggy
9545 stdlib.h that uses the identifier c as a member of struct
9546 drand48_data. Problem reported by Horst Wente.
9547
9548 2005-03-21 Paul Eggert <eggert@cs.ucla.edu>
9549
9550 * bootstrap: Change translation URL from
9551 http://www2.iro.umontreal.ca/~gnutra/po/maint/bison/ to
9552 http://www.iro.umontreal.ca/translation/maint/bison/ to avoid
9553 redirection glitches. Problem reported by twlevo@xs4all.nl.
9554
9555 2005-03-20 Paul Eggert <eggert@cs.ucla.edu>
9556
9557 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Don't put options
9558 after operands; POSIX says this isn't portable for the c99 command.
9559
9560 2005-03-18 Paul Eggert <eggert@cs.ucla.edu>
9561
9562 * tests/glr-regression.at (glr-regr2a.y): Try to dump core
9563 immediately if a data overrun has occurred; this may help us track
9564 down what may be a spurious failure on MacOS.
9565
9566 2005-03-17 Paul Eggert <eggert@cs.ucla.edu>
9567
9568 Respond to problems reported by twlevo@xs4all.nl.
9569
9570 * bootstrap: Use "trap - 0" rather than the unportable "trap 0".
9571
9572 * src/vcg.h: Comment fix.
9573 * src/vcg_defaults.h: Parenthesize macro bodies to make them safe.
9574 (G_CMAX): Change to -1 instead of INT_MAX.
9575
9576 * data/yacc.c (yyparse): Omit spaces before #line.
9577
9578 2005-03-15 Paul Eggert <eggert@cs.ucla.edu>
9579
9580 * src/tables.c (state_number_to_vector_number): Put it inside an
9581 "#if 0", since it's not currently used. Problem reported by
9582 Roland McGrath.
9583
9584 2005-03-06 Paul Eggert <eggert@cs.ucla.edu>
9585
9586 * src/output.c (escaped_output): Renamed from
9587 escaped_file_name_output, since we now use it for symbol tags as
9588 well. All uses changed.
9589 (symbol_destructors_output, symbol_printers_output):
9590 Escape symbol tags too.
9591 Problem reported by Matyas Forstner in
9592 <http://lists.gnu.org/archive/html/bug-bison/2005-03/msg00009.html>.
9593
9594 * src/muscle_tab.c (muscle_code_grow): Don't quote numbers; it's
9595 not needed.
9596 * src/output.c (user_actions_output, token_definitions_output,
9597 symbol_destructors_output, symbol_printers_output): Likewise.
9598 * src/reader.c (prologue_augment): Likewise.
9599 * src/scan-gram.l (handle_action_dollar, handle_action_at): Likewise.
9600
9601 * src/vcg.c (output_edge): Don't quote linestyle arg.
9602 Problem reported by twlevo@xs4all.nl.
9603
9604 2005-02-28 Paul Eggert <eggert@cs.ucla.edu>
9605
9606 * doc/bison.texinfo (Semantic Tokens): Fix scoping problem in
9607 example, reported by Derek M Jones. Also, make the example even
9608 more outrageous, to better illustrate how bad the problem is.
9609
9610 2005-02-24 Paul Eggert <eggert@cs.ucla.edu>
9611
9612 * doc/bison.texinfo (Mfcalc Symtab): Correct the prototype for
9613 putsym. Typo reported by Sebastian Piping.
9614
9615 2005-02-23 Paul Eggert <eggert@cs.ucla.edu>
9616
9617 * doc/bison.texinfo (Language and Grammar): some -> same
9618 (Epilogue): int he -> in the
9619 Typos reported by Sebastian Piping via Justin Pence.
9620
9621 2005-02-07 Paul Eggert <eggert@cs.ucla.edu>
9622
9623 * tests/glr-regression.at (Improper handling of embedded actions
9624 and dollar(-N) in GLR parsers): Renamed from "Improper handling of
9625 embedded actions and $-N in GLR parsers", work around an Autoconf bug
9626 with dollar signs in test names.
9627 * tests/input.at (Invalid dollar-n): Renamed from "Invalid \$n",
9628 for a similar reason.
9629
9630 2005-01-28 Paul Eggert <eggert@cs.ucla.edu>
9631
9632 * src/vcg.c (output_graph): G_VIEW -> normal_view in case someone
9633 wants to redefine G_VIEW.
9634
9635 2005-01-27 Paul Eggert <eggert@cs.ucla.edu>
9636
9637 * src/vcg.c (get_view_str): Remove case for normal_view.
9638 Problem reported by twlevo@xs4all.nl.
9639
9640 2005-01-24 Paul Eggert <eggert@cs.ucla.edu>
9641
9642 * configure.ac (O0CFLAGS, O0CXXFLAGS): Fix quoting bug.
9643 Problem reported by twlevo@xs4all.nl.
9644
9645 * doc/bison.texinfo: Change @dircategory from "GNU programming
9646 tools" to "Software development". Requested by Richard Stallman
9647 via Karl Berry.
9648
9649 2005-01-23 Paul Eggert <eggert@cs.ucla.edu>
9650
9651 * tests/c++.at (AT_CHECK_DOXYGEN): Don't use options after operands.
9652 Problem reported by twlevo@xs4all.nl.
9653
9654 2005-01-21 Paul Eggert <eggert@cs.ucla.edu>
9655
9656 * data/yacc.c (YYCOPY, yystpcpy, yyparse): Remove "register"
9657 keyword; it's not needed with modern compilers, and it doesn't
9658 affect correctness with older compilers. Suggested by
9659 twlevo@xs4all.nl.
9660
9661 2005-01-17 Paul Eggert <eggert@cs.ucla.edu>
9662
9663 * data/glr.c (yyuserAction): Add "default: break;" case to pacify
9664 gcc -Wswitch-default.
9665 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
9666 * data/yacc.c (yyparse): Likewise.
9667
9668 2005-01-12 Paul Eggert <eggert@cs.ucla.edu>
9669
9670 * src/system.h (OUTPUT_EXT, TAB_EXT): Define only if not defined
9671 already. Let config.h define any nonstandard values.
9672
9673 2005-01-10 Paul Eggert <eggert@cs.ucla.edu>
9674
9675 * tests/calc.at (_AT_DATA_CALC_Y): Use alarm (100), not alarm (10),
9676 for the benefit of slower hosts. Problem reported by
9677 Nelson H. F. Beebe.
9678
9679 2005-01-07 Paul Eggert <eggert@cs.ucla.edu>
9680
9681 * data/yacc.c (yyparse): Pacify non-GCC compilers about yyerrorlab
9682 being defined and not used.
9683 * data/lalr1.cc (yyparse): Likewise.
9684 Use "if (false)" rather than "if (0)".
9685
9686 2005-01-05 Paul Eggert <eggert@cs.ucla.edu>
9687
9688 * TODO: Mention that we should allow NUL bytes in tokens.
9689
9690 2005-01-02 Paul Eggert <eggert@cs.ucla.edu>
9691
9692 * src/scan-skel.l (<<EOF>>): Don't close standard output.
9693 Problem reported by Hans Aberg.
9694
9695 2005-01-01 Paul Eggert <eggert@cs.ucla.edu>
9696
9697 * src/getargs.c (version): Happy new year; update overall
9698 program copyright date from 2004 to 2005.
9699
9700 * src/scan-skel.l ("@output ".*\n): Don't close standard output.
9701 Problem reported by Hans Aberg.
9702 * tests/output.at (AT_CHECK_OUTPUT): New arg SHELLIO.
9703 (Output file names.): Add a test for the case when standard output
9704 is closed.
9705
9706 2004-12-26 Paul Eggert <eggert@cs.ucla.edu>
9707
9708 * doc/bison.texinfo (@copying): Update FDL version number to 1.2,
9709 to fix an oversight in the Bison 2.0 manual.
9710
9711 2004-12-25 Paul Eggert <eggert@cs.ucla.edu>
9712
9713 * NEWS: Version 2.0. Reformat the existing news items since
9714 1.875, so that related items are grouped together.
9715 * configure.ac (AC_INIT): Bump version to 2.0.
9716 * src/parse-gram.c, src/parse-gram.h: Regenerate with 2.0.
9717
9718 * tests/torture.at (Exploding the Stack Size with Alloca): Set
9719 YYSTACK_USE_ALLOCA to 1 if __GNUC__ or alloca are defined;
9720 otherwise, we're not testing alloca. Unfortunately there's no
9721 simple way to consult HAVE_ALLOCA here.
9722
9723 * data/lalr1.cc (yydestruct_): Pacify unused variable warning
9724 for yymsg, too.
9725
9726 * src/LR0.c (new_itemsets): Use memset rather than zeroing by
9727 hand. This avoids a warning about comparing int to size_t when
9728 GCC warnings are enabled.
9729
9730 2004-12-22 Paul Eggert <eggert@cs.ucla.edu>
9731
9732 * NEWS: Bison-generated parsers no longer default to using the
9733 alloca function (when available) to extend the parser stack, due
9734 to widespread problems in unchecked stack-overflow detection.
9735 * data/glr.c (YYMAXDEPTH): Remove undef when zero. It's the user's
9736 responsibility to set it to a positive value. This lets the user
9737 specify a value that is not a preprocessor constant.
9738 * data/yacc.c (YYMAXDEPTH): Likewise.
9739 (YYSTACK_ALLOC): Define only if YYSTACK_USE_ALLOCA is nonzero.
9740 * doc/bison.texinfo (Stack Overflow): YYMAXDEPTH no longer needs
9741 to be a compile-time constant. However, explain the constraints on it.
9742 Also, explain the constraints on YYINITDEPTH.
9743 (Table of Symbols): Explain that alloca is no longer the default.
9744 Explain the user's responsibility if they define YYSTACK_USE_ALLOCA
9745 to 1.
9746
9747 * doc/bison.texinfo (Location Default Action): Mention that n must
9748 be zero when k is zero. Suggested by Frank Heckenbach.
9749
9750 2004-12-22 Akim Demaille <akim@epita.fr>
9751
9752 * data/lalr1.cc (parser::token_number_type, parser::rhs_number_type)
9753 (parser::state_type, parser::semantic_type, parser::location_type):
9754 Private, not public.
9755 (parser::parse): Return ints, not bool.
9756 Returning a bool introduces a problem: 0 corresponds to false, and
9757 it seems weird to return false on success. Returning true changes
9758 the conventions for yyparse.
9759 Alternatively we could return void and send an exception.
9760 There is no clear consensus (yet?).
9761 (state_stack, semantic_stack, location_stack): Rename as...
9762 (state_stack_type, semantic_stack_type, location_stack_type): these.
9763 Private, not public.
9764 * tests/c++.at: New.
9765 * tests/testsuite.at, tests/Makefile.am: Adjust.
9766
9767 2004-12-21 Akim Demaille <akim@epita.fr>
9768
9769 * data/lalr1.cc (parser::parse): Return a bool instead of an int.
9770
9771 2004-12-21 Akim Demaille <akim@epita.fr>
9772
9773 Don't impose std::string for filenames.
9774
9775 * data/lalr1.cc (b4_filename_type): New.
9776 (position::filename): Use it.
9777 (parser.hh): Move the inclusion of stack.hh and location.hh below
9778 the user code, so that needed headers for the filename type can be
9779 included first.
9780 Forward declare them before the user code.
9781 * tests/Makefile.am (check-local, installcheck-local): Pass
9782 TESTSUITEFLAGS to the TESTSUITE.
9783
9784 2004-12-20 Akim Demaille <akim@epita.fr>
9785
9786 Use more STL like names: my_class instead of MyClass.
9787
9788 * data/lalr1.cc (LocationStack, LocationType, RhsNumberType)
9789 (SemanticStack, SemanticType, StateStack, StateType)
9790 (TokenNumberType, Stack, Slice, Traits, Parser::location)
9791 (Parser::value): Rename as...
9792 (location_stack, location_type, rhs_number_type, semantic_stack)
9793 (semantic_type, state_stack, state_type, token_number_type, stack)
9794 (slice, traits, parser::yylloc, parser::yylval): these.
9795
9796 * tests/calc.at, tests/regression.at, tests/actions.at: Adjust.
9797
9798 2004-12-19 Paul Eggert <eggert@cs.ucla.edu>
9799
9800 * data/glr.c (YYLLOC_DEFAULT): Use GNU spacing conventions.
9801 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
9802
9803 2004-12-17 Paul Eggert <eggert@cs.ucla.edu>
9804
9805 Remove uses of 'short int' and 'unsigned short int'. This raises
9806 some arbitrary limits. It uses more memory but nowadays that's
9807 not much of an issue.
9808
9809 This change does not affect the generated parsers; that's a different
9810 task, as some users will want to conserve memory there.
9811
9812 Ideally we should use size_t to represent all object counts, and
9813 something like ptrdiff_t to represent signed differences of object
9814 counts; but that will require more code-cleanup than I have the
9815 time to do right now.
9816
9817 * src/LR0.c (allocate_itemsets, new_itemsets, save_reductions):
9818 Use size_t, not int or short int, to count objects.
9819 * src/closure.c (nritemset, closure): Likewise.
9820 * src/closure.h (nritemset, closure): Likewise.
9821 * src/nullable.c (nullable_compute): Likewise.
9822 * src/print.c (print_core): Likewise.
9823 * src/print_graph.c (print_core): Likewise.
9824 * src/state.c (state_compare, state_hash): Likewise.
9825 * src/state.h (struct state): Likewise.
9826 * src/tables.c (default_goto, goto_actions): Likewise.
9827
9828 * src/gram.h (rule_number, rule): Use int, not short int.
9829 * src/output.c (prepare_rules): Likewise.
9830 * src/state.h (state_number, STATE_NUMBER_MAXIMUM, transitions,
9831 errs, reductions): Likewise.
9832 * src/symtab.h (symbol_number, SYMBOL_NUMBER_MAXIMUM, struct symbol):
9833 Likewise.
9834 * src/tables.c (vector_number, tally, action_number,
9835 ACTION_NUMBER_MINIMUM): Likewise.
9836 * src/output.c (muscle_insert_short_int_table): Remove.
9837
9838 2004-12-17 Akim Demaille <akim@epita.fr>
9839
9840 * data/lalr1.cc: Extensive Doxygenation.
9841 (error_): Rename as...
9842 (error): this, since it is visible to the user.
9843 Adjust callers.
9844 (Parser::message): Now an automatic variable from...
9845 (Parser::yyreport_syntax_error_): here.
9846 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust to
9847 Parser::error.
9848 * tests/input.at: Escape $.
9849
9850 2004-12-16 Paul Eggert <eggert@cs.ucla.edu>
9851
9852 * data/glr.c (b4_lhs_value, b4_rhs_value, b4_rhs-location):
9853 Parenthesize rhs to avoid obscure problems with mistakes like
9854 "foo$$bar = foo$1bar;". Problem reported by twlevo at xs4all.
9855 * data/lalr1.cc (b4_lhs_value, b4_rhs_value, b4_lhs_location,
9856 b4_rhs_location): Likewise.
9857 * data/yacc.c (b4_lhs_value, b4_rhs_value, b4_lhs_location,
9858 b4_rhs_location): Likewise.
9859
9860 2004-12-16 Akim Demaille <akim@epita.fr>
9861
9862 * data/lalr1.cc (yyreport_syntax_error_): Catch up with glr.c and
9863 yacc.c: be sure to stay within yycheck_.
9864 * tests/actions.at: Re-enable C++ tests.
9865
9866 2004-12-16 Akim Demaille <akim@epita.fr>
9867
9868 * src/print_graph.c (print_graph): Remove layoutalgorithm uses for
9869 real.
9870
9871 2004-12-16 Akim Demaille <akim@epita.fr>
9872
9873 Use #define to handle the %name-prefix.
9874
9875 * data/glr.c, data/yacc.c: Comment changes.
9876 * data/lalr1.cc (yylex): Use #define to select the name of yylex,
9877 so that one can refer to yylex in the parser file, and have it
9878 renamed, as is the case with other skeletons.
9879
9880 2004-12-16 Akim Demaille <akim@epita.fr>
9881
9882 Move lalr1.cc internals into yy*.
9883
9884 * data/lalr1.cc (semantic_stack_, location_stack_, state_stack_)
9885 (semantic_stack_, location_stack_, pact_, pact_ninf_, defact_)
9886 (pgoto_, defgoto_, table_, table_ninf_, check_, stos_, r1_, r2_)
9887 (name_, rhs_, prhs_, rline_, token_number_, eof_, last_, nnts_)
9888 (empty_, final_, terror_, errcode_, ntokens_)
9889 (user_token_number_max_, undef_token_, n_, len_, state_, nerrs_)
9890 (looka_, ilooka_, error_range_, nerrs_):
9891 Rename as...
9892 (yysemantic_stack_, yylocation_stack_, yystate_stack_)
9893 (yysemantic_stack_, yylocation_stack_, yypact_, yypact_ninf_)
9894 (yydefact_, yypgoto_, yydefgoto_, yytable_, yytable_ninf_)
9895 (yycheck_, yystos_, yyr1_, yyr2_, yyname_, yyrhs_, yyprhs_)
9896 (yyrline_, yytoken_number_, yyeof_, yylast_, yynnts_, yyempty_)
9897 (yyfinal_, yyterror_, yyerrcode_, yyntokens_)
9898 (yyuser_token_number_max_, yyundef_token_, yyn_, yylen_, yystate_)
9899 (yynerrs_, yylooka_, yyilooka_, yyerror_range_, yynerrs_):
9900 these.
9901
9902 2004-12-15 Paul Eggert <eggert@cs.ucla.edu>
9903
9904 Fix some problems reported by twlevo at xs4all.
9905 * src/symtab.c (symbol_new): Report an error if the input grammar
9906 contains too many symbols. This is better than calling abort() later.
9907 * src/vcg.h (enum layoutalgorithm): Remove. All uses removed.
9908 (struct node, struct graph):
9909 Rename member expand to stretch. All uses changed.
9910 (struct graph): Remove member layoutalgorithm. All uses removed.
9911 * src/vcg.c (get_layoutalgorithm_str): Remove. All uses removed.
9912 * src/vcg_defaults.h (G_STRETCH): Renamed from G_EXPAND.
9913 All uses changed.
9914 (N_STRETCH): Rename from N_EXPAND. All uses changed.
9915
9916 2004-12-15 Akim Demaille <akim@epita.fr>
9917
9918 * data/lalr1.cc: Normalize /** \brief ... */ to ///.
9919 Add more Doxygen comments.
9920 (symprint_, stack_print_, reduce_print_, destruct_, pop)
9921 (report_syntax_error_, translate_): Rename as...
9922 (yysymprint_, yystack_print_, yyreduce_print_, yydestruct_)
9923 (yypop_, yyreport_syntax_error_, yytranslate_): this.
9924
9925 2004-12-15 Akim Demaille <akim@epita.fr>
9926
9927 * data/lalr1.cc (lex_): Rename as...
9928 (yylex_): this.
9929 Move the trace here.
9930 Take the %name-prefix into account.
9931 Reported by Alexandre Duret-Lutz.
9932
9933 2004-12-15 Akim Demaille <akim@epita.fr>
9934
9935 Simplify the C++ parser constructor.
9936
9937 * data/lalr1.cc (debug_): Rename as...
9938 (yydebug_): so that the parser's internals are always in the yy*
9939 pseudo namespace.
9940 Adjust uses.
9941 (b4_parse_param_decl): Remove the leading comma as it is now only
9942 called as unique argument list.
9943 (Parser::Parser): Remove the constructor accepting a location and
9944 an initial debugging level.
9945 Remove from the other ctor the argument for the debugging level.
9946 (debug_level_type, debug_level, set_debug_level): New.
9947
9948 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust
9949 constructor calls.
9950
9951 2004-12-15 Akim Demaille <akim@epita.fr>
9952
9953 Remove b4_root related material: failure experiment
9954 (which goal was to allow to derive from a class).
9955
9956 * data/lalr1.cc (b4_root, b4_param, b4_constructor): Remove
9957 definitions and uses.
9958
9959 2004-12-14 Paul Eggert <eggert@cs.ucla.edu>
9960
9961 * data/glr.c (struct yyGLRStack): yyerror_range now has 3 items,
9962 not 2, since it's not portable to subtract 1 from the start of an
9963 array. The new item 0 is never set or used. All uses changed.
9964
9965 (yyrecoverSyntaxError): Use YYLLOC_DEFAULT instead of assuming
9966 the default definition of YYLLOC_DEFAULT. Problem reported
9967 by Frank Heckenbach.
9968
9969 2004-12-12 Paul Eggert <eggert@cs.ucla.edu>
9970
9971 * data/glr.c (YYRHSLOC): Don't have two definitions, one for
9972 the normal case and one for the error case. Just use the
9973 first one uniformly. Problem reported by Frank Heckenbach.
9974 (YYLLOC_DEFAULT): Use the conventions of yacc.c, so we can
9975 use exactly the same macro in both places.
9976 (yyerror_range): Now of type yyGLRStackItem, not YYLTYPE,
9977 so that the normal-case YYRHSLOC works for the error case too.
9978 All uses changed.
9979 * data/yacc.c (YYRHSLOC): New macro, taken from glr.c.
9980 (YYLLOC_DEFAULT): Use the same macro as glr.c.
9981 * doc/bison.texinfo (Location Default Action): Don't claim that
9982 we have an array of locations. Use the same macro for both glr
9983 and lalr parsers. Mention YYRHSLOC. Mention what happens when
9984 the index is 0.
9985
9986 2004-12-10 Paul Eggert <eggert@cs.ucla.edu>
9987
9988 * HACKING: Update email addresses to send announcements to.
9989
9990 * configure.ac (AC_INIT): Bump version to 1.875f.
9991
9992 2004-12-10 Paul Eggert <eggert@cs.ucla.edu>
9993
9994 * NEWS: Version 1.875e.
9995 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875e.
9996
9997 * src/scan-skel.l: Include "complain.h", for "fatal".
9998
9999 * src/relation.h (relation_print, relation_digraph):
10000 Relation sizes are of type relation_node, not size_t (this is
10001 merely a doc fix, since the two types are equivalent).
10002 (relation_transpose): Relation sizes are of type relation_node,
10003 not int.
10004 * src/relation.c: Likewise.
10005 (top, infinity): Now of type relation_node, not int.
10006 (traverse, relation_transpose): Use relation_node, not int.
10007
10008 * data/glr.c (yyuserAction, yyrecoverSyntaxError): Mark args
10009 with ATTRIBUTE_UNUSED if they're not used, to avoid GCC warning.
10010 (yyparse): Remove unused local introduced in 2004-10-25 patch.
10011
10012 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): New arg
10013 specifying whether the test should be skipped. Use it tp
10014 specify that the [%defines %skeleton "lalr1.cc"] tests currently
10015 fail on some hosts, and should be skipped.
10016
10017 2004-12-08 Paul Eggert <eggert@cs.ucla.edu>
10018
10019 * src/system.h (CALLOC, MALLOC, REALLOC): Remove. All callers
10020 changed to use xcalloc, xnmalloc, xnrealloc, respectively,
10021 unless otherwise specified below.
10022
10023 * src/LR0.c (allocate_itemsets): Use xnmalloc, not xcalloc,
10024 to allocate kernel_base, kernel_items, kernel_size, since
10025 they needn't be initialized to 0.
10026 (allocate_storgae): Likewise, for shiftset, redset, shift_symbol.
10027 * src/closure.c (new_closure): Likewise, for itemset.
10028 * src/derives.c (derives_compute): Likewise, for delts, derives, q.
10029 * src/lalr.c (set_goto_map): Likewise, for temp_map.
10030 (initialize_F): Likewise, for reads, edge, reads[i], includes[i].
10031 (build_relations): Likewise for edge, states1, includes.
10032 * src/nullable.c (nullable_compute): Likewise, for squeue, relts.
10033 * src/reader.c (packgram): Likewise, for ritem, rules.
10034 * src/reduce.c (nonterminals_reduce): Likewise for nontermmap.
10035 * src/relation.c (relation_digraph): Likewise for VERTICES.
10036 (relation_transpose): Likewise for new_R, end_R.
10037 * src/symtab.c (symbols_token_translations_init): Likewise for
10038 token_translations.
10039 * src/tables.c (save_row): Likewise for froms, tos, conflict_tos.
10040 (token_actions): Likewise for yydefact, actrow, conflrow,
10041 conflict_list.
10042 (save_column): Likewise for froms[symno], tos[symno].
10043 (goto_actions): Likewise for state_count.
10044 (pack_table): Likewise for base, pos, check.
10045 (tables_generate): Likewise for width.
10046
10047 * src/LR0.c (set_states): Don't reuse kernel_size and kernel_base
10048 for initial core. Just have a separate core, so we needn't worry
10049 about whether kernel_size and kernel_base are initialized.
10050
10051 * src/LR0.c (shift_symbol, redset, shiftset, kernel_base,
10052 kernel_size, kernel_items): Remove unnecessary initialization.
10053 * src/conflicts.c (conflicts): Likewise.
10054 * src/derives.c (derives): Likewise.
10055 * src/muscle_tablc (muscle_insert): Likewise.
10056 * src/relation.c (relation_digraph): Likewise.
10057 * src/tables.c (froms, tos, conflict_tos, tally, width, actrow, order,
10058 conflrow, conflict_table, conflict_list, table, check):
10059 Likewise.
10060
10061 * src/closure.c (new_closure): Arg is of type unsigned int, not int.
10062 This is because all callers pass unsigned int.
10063 * src/closure.h (new_closure): Likewise.
10064
10065 * src/lalr.c (initialize_F): Initialize reads[i] in all cases.
10066 (build_relations): Initialize includes[i] in all cases.
10067 * src/reader.c (packgram): Always initialize rules[ruleno].prec
10068 and rules[ruleno].precsym. Initialize members in order.
10069 * src/relation.c (relation_transpose): Always initialize new_R[i]
10070 and end_R[i].
10071 * src/table.c (conflict_row): Initialize 0 at end of conflict_list.
10072
10073 * src/output.c (prepare_actions): Pass 0 instead of conflict_list[0];
10074 conflict_list[0] was always 0, but now it isn't initialized.
10075
10076 * src/table.c (table_grow): When conflict_table grew, the grown
10077 area wasn't cleared. Fix this.
10078
10079 * lib/.cvsignore: Add strdup.c, strdup.h.
10080 * m4/.cvsignore: Add strdup.m4.
10081
10082 2004-12-07 Paul Eggert <eggert@cs.ucla.edu>
10083
10084 * src/lalr.h (GOTO_NUMBER_MAXIMUM): New macro.
10085 * src/lalr.c (set_goto_map): Don't allow ngotos to equal
10086 GOTO_NUMBER_MAXIMUM, since we occasionally compute
10087 ngotos + 1 without checking for overflow.
10088 (build_relations): Use END_NODE, not -1, to denote end of edges.
10089 * src/lalr.c (set_goto_map, map_goto, initialize_F, add_loopback_edge,
10090 build_relations): Use goto_number, not int, for goto numbers.
10091 * src/tables.c (save_column, default_goto): Likewise.
10092
10093 2004-11-23 Akim Demaille <akim@epita.fr>
10094
10095 * data/lalr1.cc (YYSTYPE): Define it as is done for C, instead
10096 of #defining from yystype.
10097 Don't typedef yystype, C++ does not need it.
10098 This lets it possible to forward declare it as union.
10099
10100 2004-11-23 Paul Eggert <eggert@cs.ucla.edu>
10101
10102 * bootstrap (gnulib_modules): Add extensions.
10103 Problem reported by Jim Meyering.
10104
10105 2004-11-22 Paul Eggert <eggert@cs.ucla.edu>
10106
10107 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c,
10108 src/lalr.c, src/nullable.c, src/relation.c, src/scan-skel.l,
10109 src/system.h, src/tables.c: XFREE -> free, to accommodate
10110 recent change to gnulib xalloc.h.
10111 Problem reported by Jim Meyering.
10112
10113 2004-11-17 Akim Demaille <akim@epita.fr>
10114
10115 * data/lalr1.cc (symprint_): Use cdebug_ to avoid warnings.
10116
10117 2004-11-17 Akim Demaille <akim@epita.fr>,
10118 Alexandre Duret-Lutz <adl@gnu.org>
10119
10120 * data/lalr1.cc (Parser::yycdebug_): New, a pointer, to allow
10121 changes.
10122 (YYCDEBUG): Adjust.
10123 Use it instead of cdebug_.
10124 (Parser::debug_stream, Parser::set_debug_stream): New.
10125 (Parser::symprint_): Define cdebug_ for temporary backward
10126 compatibility.
10127 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use
10128 debug_stream ().
10129
10130 2004-11-17 Akim Demaille <akim@epita.fr>
10131
10132 * data/lalr1.cc (Parser:print_): Remove, use %printer instead.
10133 * tests/regression.at (_AT_DATA_DANCER_Y): Adjust.
10134 * tests/calc.at (_AT_DATA_CALC_Y): Ditto.
10135 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
10136
10137 2004-10-27 Paul Eggert <eggert@cs.ucla.edu>
10138
10139 * data/glr.c (yyloc_default): Remove; not used.
10140 Problem reported by Frank Heckenbach.
10141
10142 2004-10-25 Akim Demaille <akim@epita.fr>
10143
10144 * data/glr.c (YYRHSLOC): Move its definition next to its uses.
10145 Introduce another definition to address simple location arrays.
10146 (yyGLRStack): New member: yyerror_range.
10147 (yyrecoverSyntaxError, yyparse): Update it.
10148 (yyrecoverSyntaxError): Use it when shifting the error token to
10149 have an accurate range, equivalent to the one computed by both
10150 yacc.c and lalr1.cc.
10151 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Change its yylex so
10152 that column numbers start at column 0, as per GNU Coding
10153 Standards, the others tests, and the doc.
10154 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT_WITH_LOC):
10155 Adjust to the above change (first column is 0).
10156 And adjust the location of the "<error>", now covering the whole
10157 line.
10158
10159 2004-10-22 Akim Demaille <akim@epita.fr>
10160 and Paul Eggert <eggert@cs.ucla.edu>
10161
10162 Remove some arbitrary limits on goto numbers and relations.
10163 * src/lalr.c (goto_map, ngotos, from_state, to_state): Omit
10164 initial values, since they're never used.
10165 (set_goto_map): ngotos is now unsigned, so test for overflow
10166 by seeing whether it wraps around to zero.
10167 * src/lalr.h (goto_number): Now size_t, not short int.
10168 (GOTO_NUMBER_MAXIMUM): Remove.
10169 * src/relation.c (relation_print, traverse, relation_transpose):
10170 Check for END_NODE rather than looking at sign.
10171 * src/relation.h (END_NODE): New macro.
10172 (relation_node): Now size_t, not short int.
10173
10174 2004-10-22 Paul Eggert <eggert@cs.ucla.edu>
10175
10176 * doc/bison.texinfo (Language and Grammar): In example, "int" is a
10177 keyword, not an identifier. Problem reported by Baron Schwartz in
10178 <http://lists.gnu.org/archive/html/bug-bison/2004-10/msg00017.html>.
10179
10180 2004-10-11 Akim Demaille <akim@epita.fr>
10181
10182 * src/symtab.c (symbol_check_alias_consistency): Also check
10183 type names, destructors, and printers.
10184 Reported by Alexandre Duret-Lutz.
10185 Recode the handling of associativity and precedence in terms
10186 of symbol_precedence_set.
10187 Accept no redeclaration at all, not even equal to the previous
10188 value.
10189 (redeclaration): New.
10190 Use it to factor redeclaration complaints.
10191 (symbol_make_alias): Don't set the type of the alias, let
10192 symbol_check_alias_consistency do it as for other features.
10193 * src/symtab.h (symbol): Add new member prec_location, and
10194 type_location.
10195 * src/symtab.c (symbol_precedence_set, symbol_type_set): Set them.
10196 * tests/input.at (Incompatible Aliases): New.
10197
10198 2004-10-09 Paul Eggert <eggert@cs.ucla.edu>
10199
10200 .cvsignore fixes to accommodate gnulib changes,
10201 and the practice of naming build directories "_build".
10202 * .cvsignore: Add "_*". Sort.
10203 * lib/.cvsignore: Add getopt_.h, xalloc-die.c.
10204 * m4/.cvsignore: Add "*_gl.m4".
10205
10206 2004-10-06 Akim Demaille <akim@epita.fr>
10207
10208 * src/parse-gram.y (add_param): Fix the truncation of trailing
10209 spaces.
10210
10211 2004-10-05 Akim Demaille <akim@epita.fr>
10212
10213 In Bison 1.875's yacc.c, YYLLOC_DEFAULT was called regardless
10214 whether the reducion was empty or not. This leaves room to
10215 improve the use of YYLLOC_DEFAULT in such a case.
10216 lalr1.cc is still experimental, so changing this is acceptable.
10217 And finally, there are probably not many users who changed the
10218 handling of locations in GLR, so changing is admissible too.
10219
10220 * data/glr.c, data/lalr1.cc, data/yacc.c (YYLLOC_DEFAULT): On an
10221 empty reduction, set @$ to an empty location ending the previously
10222 stacked symbol.
10223 Adjust uses to make sure the code is triggered on empty
10224 reductions.
10225 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust the
10226 expected output: empty reductions have empty locations.
10227
10228 2004-09-29 Akim Demaille <akim@epita.fr>
10229
10230 * data/lalr1.cc: Move towards a more standard C++ coding style
10231 for templates: Class < T > -> Class<T>.
10232
10233 2004-09-29 Akim Demaille <akim@epita.fr>
10234
10235 * data/lalr1.cc: Reinstall the former ctor, for sake of
10236 compatibility, but warn it will be removed.
10237 Move towards a more standard C++ coding style (i.e., type *var ->
10238 type* var).
10239
10240 2004-09-27 Paul Eggert <eggert@cs.ucla.edu>
10241
10242 * src/parse-gram.y (add_param): Rewrite to avoid strchr,
10243 since it's less likely to work if NULs are involved in the future.
10244
10245 2004-09-27 Akim Demaille <akim@epita.fr>
10246
10247 * data/yacc.c (YY_LOCATION_PRINT): Fix its default declaration.
10248
10249 2004-09-27 Akim Demaille <akim@epita.fr>
10250
10251 * data/lalr1.cc (b4_parse_param_decl_1): New.
10252 (b4_parse_param_decl): Use it to have different names between attribute
10253 and argument names.
10254 (b4_cc_constructor_call): Likewise.
10255
10256 2004-09-24 Akim Demaille <akim@epita.fr>
10257
10258 * src/parse-gram.y (add_param): Strip the leading and trailing
10259 blanks from a formal argument declaration.
10260 (YY_LOCATION_PRINT): New.
10261
10262 2004-09-24 Akim Demaille <akim@epita.fr>
10263
10264 * data/c.m4 (b4_yysymprint_generate): Move the YYINPUT invocation
10265 after the location.
10266
10267 2004-09-24 Akim Demaille <akim@epita.fr>
10268
10269 * doc/bison.texinfo (Table of Symbols): Sort.
10270
10271 2004-09-21 Akim Demaille <akim@epita.fr>
10272
10273 * data/yacc.c, data/glr.c (b4_at_dollar, b4_dollar_dollar): Remove
10274 the useless parentheses.
10275 Suggested by Paul Eggert.
10276
10277 2004-09-20 Akim Demaille <akim@epita.fr>
10278
10279 Let the initial-action act on the look-ahead, and use it for the
10280 "initial push" (corresponding to an hypothetical beginning-of-file).
10281 And let lalr1.cc honor %initial-action.
10282
10283 * doc/bison.texinfo (Initial Action Decl): Clarify, and add an
10284 example.
10285 * data/lalr1.cc (Parser::initlocation_): Remove, bad experiment.
10286 (Parser::Parser): Remove the ctor that used to initialize it.
10287 (Parser::parse): Like in the other skeletons, issue the "starting
10288 parse" message before any action.
10289 Honor %initial-action.
10290 Initialize the stacks with the lookahead.
10291 * data/yacc.c: Let $$ and @$ in %initial-action designate the
10292 look-ahead.
10293 Push them in the stacks.
10294 * tests/actions.at, tests/calc.at: Adjust the C++ ctor invocations.
10295
10296 2004-09-20 Akim Demaille <akim@epita.fr>
10297
10298 * doc/bison.texinfo (Initial Action Decl): New.
10299
10300 2004-09-20 Akim Demaille <akim@epita.fr>
10301
10302 * data/yacc.c (YY_LOCATION_PRINT): Use YYLTYPE_IS_TRIVIAL as a
10303 clearer criterion to define it.
10304 (parse): Initialize the initial location when YYLTYPE_IS_TRIVIAL.
10305 When reducing on an empty RHS, use the latest stacked location as
10306 location.
10307 yylloc is not always available.
10308 * data/glr.c: Likewise.
10309 Also, honor initial-actions.
10310
10311 2004-09-20 Akim Demaille <akim@epita.fr>
10312
10313 * data/yacc.c (YY_LOCATION_PRINT): New.
10314 Define when we know YYLTYPE's structure, i.e., when the default
10315 YYLLOC_DEFAULT is used.
10316 * data/c.m4 (b4_yysymprint_generate): Use it.
10317 * data/lalr1.cc (YYLLOC_DEFAULT): Stop relying on the initial
10318 value of the result.
10319 (error_start_): Replace with...
10320 (error_range_): this location array.
10321 This allows to replace code relying on the implementation of
10322 locations by portable code.
10323 * data/yacc.c (yylerrsp): Replace with...
10324 (yyerror_range): this.
10325 Every time a token is popped, update yyerror_range[0], to have an
10326 accurate location for the error token.
10327 * data/glr.c (YY_LOCATION_PRINT): New.
10328 (yyprocessOneStack): Fix an invocation of YY_SYMBOL_PRINT:
10329 deference a pointer.
10330 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): No longer
10331 report the location in %printers.
10332
10333 * src/scan-skel.l: Instead of abort, report error messages to ease
10334 understanding skeleton scanning failures.
10335
10336 2004-09-16 Akim Demaille <akim@epita.fr>
10337
10338 * data/lalr1.cc (Stack::Iterator, Stack::ConstIterator): Rename as...
10339 (iterator, const_iterator): these, to be more in the C++ spirit.
10340 Also, return reverse iterators so that when displaying the stack
10341 we display its bottom first.
10342 (Parser::stack_print_, Parser::reduce_print_): Match the messages
10343 from yacc.c.
10344 We should probably use vector here though.
10345
10346 2004-09-16 Akim Demaille <akim@epita.fr>
10347
10348 Have more complete shift traces.
10349
10350 * data/yacc.c, data/lalr1.c, data/glr.c: Use YY_SYMBOL_PRINT
10351 to report Shifts instead of ad hoc YYDPRINTF invocations,
10352 including for the error token.
10353 * data/lalr1.cc (symprint_): Output the location.
10354 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): In C++, don't
10355 output the location within the %printer.
10356 Activate GLR tests, at least to make sure they compile properly.
10357 They still don't pass though.
10358 * tests/calc.at: Adjust expect verbose output, since now "Entering
10359 state..." is on a different line than the "Shifting" message.
10360
10361 2004-09-08 Akim Demaille <akim@epita.fr>
10362
10363 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Move the
10364 Bison directive from the Bison file to the invocation of this
10365 macro, so that these directives are passed to
10366 AT_BISON_OPTION_PUSHDEFS to get correct help macros.
10367 Use these helping macros (e.g., AT_LOC, AT_VAL and so forth).
10368 Move the AT_SETUP/AT_CLEANUP outside, to report as test title
10369 the extra Bison directives instead of the whole series.
10370 Change the grammar so that there are recoverable errors, and
10371 unrecoverable errors. Now we can have the parser give up before
10372 consuming the whole input. As a result we now can observe that
10373 the lookahead is freed when needed.
10374 Change the parser source to parse argv[1] instead of a hard coded
10375 string.
10376 Simplify yylex, and give a value and location to EOF.
10377 Simplify some invocations of AT_CHECK_PRINTER_AND_DESTRUCTOR that
10378 passed directives already coded in the file.
10379 Add some tests to check the location of "error".
10380 For some tests, the C++ parser is correct, and not yacc.c.
10381 For other tests, they provide different, but unsatisfying, values,
10382 so keep the C++ value so that at least one parser is "correct"
10383 according to the test suite.
10384 (Actions after errors): Remove, this is subsumed by the
10385 AT_CHECK_PRINTER_AND_DESTRUCTOR series.
10386
10387 2004-09-06 Akim Demaille <akim@epita.fr>
10388
10389 * data/lalr1.cc: Adjust the indentation of the labels.
10390 (Parser::pop): New.
10391 Use it.
10392
10393 2004-09-06 Akim Demaille <akim@epita.fr>
10394
10395 * data/yacc.cc, data/glr.cc (yydestruct): Accept an additional
10396 argument, an informative message.
10397 Call YY_SYMBOL_PRINT.
10398 Adjust all callers: integrate the associated YY_SYMBOL_PRINT.
10399 * data/lalr1.cc (destruct_): Likewise.
10400 In addition, no longer depend on b4_yysymprint_generate and
10401 b4_yydestruct_generate to generate these functions, do it "by
10402 hand".
10403
10404 2004-09-03 Akim Demaille <akim@epita.fr>
10405
10406 * data/glr.c, data/lalr1.cc, data/yacc.c: When YYABORT was
10407 invoked, yydestruct the lookahead.
10408 * tests/calc.at (Calculator $1): Update the expected lengths of
10409 traces: there is an added line for the discarded lookahead.
10410 * doc/bison.texinfo (Destructor Decl): Some rewording.
10411 Define "discarded" symbols.
10412
10413 2004-09-02 Akim Demaille <akim@epita.fr>
10414
10415 * data/lalr1.cc (translate_, destruct_): No reason to be static.
10416
10417 2004-09-02 Akim Demaille <akim@epita.fr>
10418
10419 * data/glr.c, yacc.c (YYDSYMPRINT): Remove, not used.
10420 (YYDSYMPRINTF): Rename as...
10421 (YY_SYMBOL_PRINT): this.
10422 * data/lalr1.cc (YY_SYMBOL_PRINT): New, modeled after the previous
10423 two.
10424 Use it instead of direct symprint_ calls.
10425 (yybackup): Tweak the "Now at end of input" case to match yacc.c's
10426 one.
10427
10428 2004-09-02 Akim Demaille <akim@epita.fr>
10429
10430 * data/lalr1.cc (b4_yysymprint_generate): New.
10431 (symprint_): New member function, defined when YYDEBUG.
10432 Use it consistently instead of token/nterm debugging output by
10433 hand.
10434 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust
10435 %printer calls to use cdebug_ when using lalr1.cc.
10436
10437 2004-08-30 Florian Krohm <florian@edamail.fishkill.ibm.com>
10438
10439 * data/glr.c: Guard the declarations of yypstack and yypdumpstack
10440 with #ifdef YYDEBUG.
10441
10442 2004-08-26 Akim Demaille <akim@epita.fr>
10443
10444 * doc/bison.texinfo (Implementing Loops): Rename as...
10445 (Implementing Gotos/Loops): this.
10446
10447 2004-08-13 Paul Eggert <eggert@cs.ucla.edu>
10448
10449 Adjust to latest gnulib.
10450 * bootstrap (gnulib_modules): Add xalloc-die.
10451 Set LC_ALL=C so that file names sort consistently.
10452 Prefer the gnulib copies of gettext.m4, glibc21.m4,
10453 inttypes_h.m4, lib-ld.m4, lib-prefix.m4, po.m4, stdint_h.m4,
10454 uintmax_t.m4, ulonglong.m4.
10455 (intl_files_to_remove): Add gettext.m4, lib-ld.m4, lib-prefix.m4,
10456 po.m4 since we are now using _gl.m4 instead.
10457
10458 2004-08-10 Florian Krohm <florian@edamail.fishkill.ibm.com>
10459
10460 * src/scan-action.l: Remove. Scanning of semantic actions is
10461 handled in scan-gram.l.
10462
10463 2004-08-07 Florian Krohm <florian@edamail.fishkill.ibm.com>
10464
10465 * src/scan-gram.l (handle_syncline): Use uniqstr_new not xstrdup.
10466
10467 * src/location.h (struct): The file member is a uniqstr.
10468 (equal_boundaries): Use UNIQSTR_EQ for comparison.
10469
10470 2004-07-22 Paul Eggert <eggert@cs.ucla.edu>
10471
10472 Fix bug with non-%union parsers that have printers or destructors,
10473 which led to a Bison core dump. Reported by Peter Fales in
10474 <http://lists.gnu.org/archive/html/bug-bison/2004-07/msg00014.html>.
10475
10476 * data/c.m4 (b4_symbol_actions): Don't assume %union was used.
10477 * data/lalr1.cc (yystype) [defined YYSTYPE]: Define to YYSTYPE,
10478 not to our own type.
10479 * src/output.c (symbol_destructors_output, symbol_printers_output):
10480 Don't assume %union.
10481 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR,
10482 AT_CHECK_PRINTER_AND_DESTRUCTOR): New argument
10483 UNION-FLAG. All callers changed.
10484 (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't assume %union.
10485 Use type char, not unsigned int, when declaring an array of char;
10486 this lets us remove a cast.
10487 (Printers and Destructors): Add non-%union test cases.
10488
10489 2004-06-21 Paul Eggert <eggert@cs.ucla.edu>
10490
10491 * doc/bison.texinfo: Minor editorial changes, mostly to the new
10492 GLR writeups. E.g., avoid frenchspacing and the future tense,
10493 change "lookahead" to "look-ahead", and change "wrt" to "with
10494 respect to".
10495
10496 2004-06-21 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
10497
10498 * doc/bison.texinfo (Merging GLR Parses, Compiler Requirements):
10499 New sections, split off from the GLR Parsers section. Put the new
10500 Simple GLR Parser near the start of the GLR section, for clarity.
10501 Rewrite connective text.
10502
10503 2004-06-21 Frank Heckenbach <frank@g-n-u.de>
10504
10505 * doc/bison.texinfo (Simple GLR Parsers): New section.
10506
10507 2004-06-21 Paul Eggert <eggert@cs.ucla.edu>
10508
10509 * NEWS, TODO, doc/bison.texinfo:
10510 Use "look-ahead" instead of "lookahead", to be consistent.
10511 * REFERENCES: Fix incorrect reference to DeRemer and Pennello,
10512 while we're fixing "look-ahead".
10513 * src/conflicts.c (shift_set): Renamed from shiftset.
10514 (look_ahead_set): Renamed from lookaheadset.
10515 * src/print.c: Likewise.
10516 * src/getargs.c (report_args): Add "look-ahead" as the new canonical
10517 name for "lookahead".
10518 (report_types, usage): Likewise.
10519 * src/getargs.h (report_look_ahead_tokens): Renamed from
10520 report_lookaheads.
10521 * src/lalr.c (compute_look_ahead_tokens): Renamed from
10522 compute_lookaheads.
10523 (state_look_ahead_tokens_count): Renamed from state_lookaheads_count.
10524 (look_ahead_tokens_print): Renamed from lookaheads_print.
10525 * src/state.c (state_rule_look_ahead_tokens_print): Renamed from
10526 state_rule_lookaheads_print.
10527 * src/state.h: Likewise.
10528 (reductions.look_ahead_tokens): Renamed from lookaheads.
10529 * tests/torture.at (AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR): Renamed from
10530 AT_DATA_LOOKAHEADS_GRAMMAR.
10531
10532 2004-06-03 Paul Eggert <eggert@cs.ucla.edu>
10533
10534 * README: Update location of patched M4 distribution.
10535
10536 2004-05-30 Albert Chin-A-Young <china@thewrittenword.com>
10537
10538 Don't assume the C++ compiler takes the same arguments as the C compiler
10539 (trivial change).
10540 * configure.ac (O0CXXFLAGS): New var.
10541 * tests/atlocal.in (CXXFLAGS): Use it.
10542
10543 2004-05-29 Paul Eggert <eggert@cs.ucla.edu>
10544
10545 Fix some "make check" problems with C++ reported by
10546 Albert Chin-A-Young for Tru64 C++ in this thread:
10547 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00049.html
10548
10549 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check for std::cerr.
10550 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
10551 Output to a .cc file for C++, not to a .c file.
10552 * tests/calc.at (AT_CHECK_CALC): Likewise.
10553 * tests/regression.at (AT_CHECK_DANCER): Likewise.
10554 * tests/local.at (AT_COMPILE_CXX): Default to OUTPUT.cc, not OUTPUT.c.
10555
10556 2004-05-28 Albert Chin-A-Young <china@thewrittenword.com>
10557
10558 * tests/calc.at, tests/actions.at: Workaround for SGI
10559 C++ compiler. (trivial change)
10560
10561 2004-05-27 Paul Eggert <eggert@cs.ucla.edu>
10562
10563 Spent a few hours checking out which prerequisite versions the
10564 current sources actually require. I went all the way back to
10565 Gettext 0.10.40, Automake 1.4, and Autoconf 2.57 and investigated
10566 a seemingly endless set of combinations of versions more recent
10567 than that. The bottom line is that the current sources require
10568 fairly recent versions of the build tools, and it'll be some work
10569 to change this.
10570 * configure.ac (AC_PREREQ): Increase from 2.58 to 2.59.
10571 (AM_INIT_AUTOMAKE): Increase from 1.7 to 1.8.
10572 (AM_GNU_GETTEXT_VERSION): Increase from 0.11.5 to 0.12.
10573 Add comments explaining why those particular versions are
10574 currently needed.
10575
10576 * src/parse-gram.y (lloc_default): Rewrite to avoid compiler bug
10577 in SGI MIPSpro 7.4.1m. Problem reported by Albert Chin-A-Young in
10578 <http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00037.html>.
10579
10580 * configure.ac (AC_PREREQ): Bump to 2.58, since 2.57 doesn't work
10581 (it fails with a Autoconf-without-aclocal-m4 diagnostic).
10582
10583 2004-05-26 Paul Eggert <eggert@cs.ucla.edu>
10584
10585 * configure.ac (AM_GNU_GETTEXT_VERSION): Lower it from 0.14.1 to
10586 0.11.5. Suggested by Bruno Haible.
10587 * bootstrap: Remove gettext version checking.
10588
10589 * doc/bison.texinfo (Decl Summary): Also mention that %union
10590 can depend on prerequisite types. Problem reported by Tim
10591 Van Holder.
10592
10593 2004-05-25 Paul Eggert <eggert@cs.ucla.edu>
10594
10595 * README: Mention GNU m4 1.4 bugs and Akim's patched version.
10596 * README-alpha: Don't tell people not to package this.
10597
10598 * bootstrap: Don't assume $(...) works; use `...` instead.
10599 Problem reported by Paul Hilfinger. Also, diagnose non-GNU
10600 gettext better.
10601
10602 * doc/bison.texinfo (Decl Summary, Bison Options): Clarify what's
10603 put into the -d output file, and mention what to do if YYSTYPE is
10604 defined as a macro.
10605
10606 2004-05-24 Paul Eggert <eggert@cs.ucla.edu>
10607
10608 Undo change made earlier today: it caused autopoint to not bring
10609 in ABOUT-NLS. Ouch. Instead, substitute our own diagnostic for
10610 autopoint's.
10611
10612 * bootstrap: Check that gettext version matches what's in
10613 configure.ac. Warn users to ignore robots.txt ERROR 404.
10614 * bootstrap: Undo today's earlier change (logged below).
10615 * configure.ac (AM_GNU_GETTEXT_VERSION): Likewise.
10616
10617 The gettext version checking is causing more trouble than it's
10618 curing; remove it. Problem reported by Paul Hilfinger.
10619
10620 * bootstrap: Issue a warning that one can expect a message
10621 'AM_GNU_GETTEXT is used, but not AM_GNU_GETTEXT_VERSION'.
10622 * configure.ac (AM_GNU_GETTEXT_VERSION): Remove.
10623
10624 2004-05-23 Paul Eggert <eggert@cs.ucla.edu>
10625
10626 Ensure that the C++ compiler used for testing actually works on a
10627 simple test program; if not, skip the C++-related tests. Problem
10628 reported by Vin Shelton in:
10629 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00026.html
10630
10631 * m4/cxx.m4: New file.
10632 * configure.ac (BISON_TEST_FOR_WORKING_CXX_COMPILER): Add.
10633 * tests/atlocal.in (BISON_CXX_WORKS): Add.
10634 * tests/local.at (AT_COMPILE_CXX): Use it.
10635
10636 2004-05-21 Paul Eggert <eggert@cs.ucla.edu>
10637
10638 * data/glr.c (yylloc): Output this macro even if locations are not
10639 being generated, as the GLR parser needs it even in that case.
10640 Problem reported by Troy A. Johnson
10641 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=195946>.
10642
10643 * configure.ac (AC_INIT): Update to 1.875e.
10644
10645 2004-05-21 Paul Eggert <eggert@cs.ucla.edu>
10646
10647 * NEWS: Version 1.875d.
10648 * configure.ac (AC_INIT): Likewise.
10649 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875d.
10650
10651 * configure.ac (--enable-gcc-warnings): Do not enable -Wshadow,
10652 -Wmissing-prototypes, or -Wstrict-prototypes for C++. The current
10653 lalr1.cc runs afoul of the first, and the last two are no longer
10654 supported by GCC 3.4.0.
10655 * README: Mention GNU m4 1.4 or later; mention m4 patches.
10656 * HACKING: Use ./bootstrap, not "make update" to import foreign files.
10657
10658 2004-05-06 Paul Eggert <eggert@cs.ucla.edu>
10659
10660 * src/muscle_tab.c (hash_muscle): Accept and return size_t, not
10661 unsigned int, for compatibility with latest gnulib hash module.
10662 * src/state.c (state_hash, state_hasher): Likewise.
10663 * src/symtab.c (hash_symbol, hash_symbol_hasher): Likewise.
10664 * src/uniqstr.c (hash_uniqstr): Likewise.
10665
10666 2004-05-03 Paul Eggert <eggert@cs.ucla.edu>
10667
10668 * NEWS: Unescaped newlines are no longer allowed in char & strings.
10669
10670 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER,
10671 SC_CHARACTER,SC_STRING>): Reject unescaped newlines in
10672 character and string literals.
10673 (unexpected_end): New function.
10674 (unexpected_eof): Use it.
10675 (unexpected_newline): New function.
10676 (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>): Coalesce duplicate
10677 actions.
10678
10679 * NEWS: Document %expect-rr.
10680
10681 * bootstrap (--gnulib-srcdir=*, --cvs-user=*):
10682 Fix typo by replacing $1 with $option.
10683 Remove more 'intl'-related files.
10684 Don't DEFUN AM_INTL_SUBDIR twice.
10685
10686 * lib/.cvsignore: Add strndup.h. Remove memchr.c, memcmp.c,
10687 memrchr.c, strcasecmp.c, strchr.c, strrchr.c, strspn.c, strtol.c,
10688 strtoul.c.
10689 * m4/.cvsignore: Add exitfail.m4, extensions.m4, gnulib.m4,
10690 hard-locale.m4, mbstate_t.m4, strerror_r.m4, strndup.m4,
10691 xstrndup.m4. Remove glibc21.m4, intdiv0.m4, inttypes-pri.m4,
10692 inttypes.m4, inttypes_h.m4, isc-posix.m4, lcmessage.m4,
10693 stdint_h.m4, uintmax_t.m4, ulonglong.m4.
10694 * src/.cvsignore: Add *.output.
10695
10696 * src/parse-gram.y: Put copyright notice inside %{ %} so it
10697 gets copied to the output file.
10698
10699 2004-04-28 Paul Eggert <eggert@twinsun.com>
10700
10701 Get files from the gnulib and po repositories, instead of relying
10702 on them being in our CVS. Upgrade to latest versions of gnulib
10703 and Automake.
10704
10705 * Makefile.am (SUBDIRS): Remove m4; Automake now does m4.
10706 * bootstrap: Bootstrap from gnulib and po repositories.
10707 Much of this code was stolen from GNU diff and GNU tar's bootstrap.
10708 * README-cvs: Document these changes. Remove version numbers from
10709 mentions of build tools, since they change so often. Mention Flex.
10710
10711 * configure.ac (AC_CONFIG_MACRO_DIR): Add, with m4 as arg.
10712 (gl_USE_SYSTEM_EXTENSIONS): Add.
10713 (AC_GNU_SOURCE, AC_AIX, AC_MINIX):
10714 Remove; no longer needed, as gl_USE_SYSTEM_EXTENSIONS
10715 does this for us.
10716 (AC_ISC_POSIX): Remove; we no longer support this
10717 ancient OS, as it gets in the way of latest Autoconf & gnulib.
10718 (AC_HEADER_STDC): Remove: we now assume C89 or better.
10719 (AC_CHECK_HEADERS_ONCE): Use instead of AC_CHECK_HEADERS.
10720 Do not check for C89 headers, except for locale.h which is used
10721 by the Yacc library and must port to K&R hosts.
10722 (AC_CHECK_FUNCS_ONCE): Use instead of AC_CHECK_FUNCS.
10723 Do not check for C89 functions, except for setlocale which is
10724 used by the Yacc library.
10725 (AC_CHECK_DECLS, AC_REPLACE_FUNCS): Remove; no longer needed.
10726 (gl_DIRNAME, gl_ERROR, gl_FUNC_ALLOCA, gl_FUNC_MEMCHR,
10727 gl_FUNC_MEMRCHR, gl_FUNC_STPCPY, gl_FUNC_STRNLEN, gl_FUNC_STRTOL,
10728 gl_GETOPT, gl_HASH, gl_MBSWIDTH, gl_OBSTACK, gl_QUOTE,
10729 gl_QUOTEARG, gl_XALLOC, jm_FUNC_GLIBC_UNLOCKED_IO, jm_FUNC_MALLOC,
10730 AM_GNU_GETTEXT): Remove; now done by:
10731 (GNULIB_AUTOCONF_SNIPPET): Add. "bootstrap" builds this for us.
10732 (AC_CONFIG_FILES): Remove m4/Makefile, as Automake now does this
10733 for us.
10734
10735 * lib/Makefile.am: Include gnulib.mk, built for us by "bootstrap".
10736 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES):
10737 Define to empty, as gnulib.mk will do the rest for us.
10738 ($(libbison_a_OBJECTS), stdbool.h): Remove, as gnulib.mk does this
10739 for us.
10740 (libbison_a_SOURCES): Define to $(lib_SOURCES) now.
10741 (lib_SOURCES): New symbol, containing only the non-gnulib libs.
10742
10743 * src/files.c: Include gnulib's xstrndup.h.
10744
10745 * src/system.h (MALLOC): Use xnmalloc, for better overflow checking.
10746 (REALLOC): Use xnrealloc, for likewise.
10747 (xstrndup, stpcpy): Remove decls, as gnulib does this for us now.
10748 (strnlen, memrchr): Remove decls; functions no longer used.
10749 Include <stpcpy.h>.
10750
10751 * config/depcomp, config/install-sh, lib/alloca.c, lib/argmatch.c,
10752 lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
10753 lib/error.c, lib/error.h, lib/getopt.c, lib/getopt.h,
10754 lib/getopt1.c, lib/gettext.h, lib/hash.c, lib/hash.h,
10755 lib/malloc.c, lib/mbswidth.c, lib/mbswidth.h, lib/memchr.c,
10756 lib/memcmp.c, lib/memrchr.c, lib/obstack.c, lib/obstack.h,
10757 lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h,
10758 lib/realloc.c, lib/stdbool_.h, lib/stpcpy.c, lib/strcasecmp.c,
10759 lib/strchr.c, lib/strncasecmp.c, lib/strnlen.c, lib/strrchr.c,
10760 lib/strspn.c, lib/strtol.c, lib/strtoul.c, lib/unlocked-io.h,
10761 lib/xalloc.h, lib/xmalloc.c, lib/xstrdup.c, lib/xstrndup.c,
10762 m4/Makefile.am, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
10763 m4/error.m4, m4/getopt.m4, m4/hash.m4, m4/malloc.m4,
10764 m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4, m4/memcmp.m4,
10765 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/prereq.m4,
10766 m4/quote.m4, m4/quotearg.m4, m4/realloc.m4, m4/stdbool.m4,
10767 m4/stpcpy.m4, m4/strnlen.m4, m4/strtol.m4, m4/strtoul.m4,
10768 m4/unlocked-io.m4, m4/xalloc.m4, po/LINGUAS, po/Makefile.in.in,
10769 po/Makevars, po/da.po, po/de.po, po/es.po, po/et.po, po/fr.po,
10770 po/hr.po, po/id.po, po/it.po, po/ja.po, po/ms.po, po/nl.po,
10771 po/pt_BR.po, po/ro.po, po/ru.po, po/sv.po, po/tr.po:
10772 Remove, as these files are now generated automatically
10773 by bootstrap or automake.
10774
10775 * po/ChangeLog: Remove: all but one entry was a duplicate
10776 of this file, and I moved that 2000-11-02 entry here.
10777
10778 * config/.cvsignore: Add Makefile, depcomp, install-sh.
10779 * lib/.cvsignore: Add alloca.c, alloca.h, alloca_.h, argmatch.c,
10780 argmatch.h, basename.c, dirname.c, dirname.h, error.c, error.h,
10781 exit.h, exitfail.c, exitfail.h, getopt.c, getopt.h, getopt1.c,
10782 getopt_int.h, gettext.h, gnulib.mk, hard-locale.c, hard-locale.h,
10783 hash.c, hash.h, malloc.c, mbswidth.c, mbswidth.h, memchr.c,
10784 memcmp.c, memrchr.c, obstack.c, obstack.h, quote.c, quote.h,
10785 quotearg.c, quotearg.h, realloc.c, stdbool_.h, stpcpy.c, stpcpy.h,
10786 strcasecmp.c, strchr.c, stripslash.c, strncasecmp.c, strndup.c,
10787 strnlen.c, strrchr.c, strspn.c, strtol.c, strtoul.c,
10788 unlocked-io.h, xalloc.h, xmalloc.c, xstrdup.c, xstrndup.c,
10789 xstrndup.h.
10790 * m4/.cvsignore: Remove Makefile, Makefile.in. Add alloca.m4,
10791 dirname.m4, dos.m4, error.m4, getopt.m4, hash.m4, mbrtowc.m4,
10792 mbswidth.m4, obstack.m4, onceonly.m4, quote.m4, quotearg.m4,
10793 stdbool.m4, stpcpy.m4, strnlen.m4, unlocked-io.m4, xalloc.m4.
10794 * po/.cvsignore: Add *.po, LINGUAS, Makefile.in.in, Makevars.
10795 * src/.cvsignore: Remove *_.c.
10796
10797
10798 * Makefile.maint (GZIP_ENV): Don't use --rsyncable if gzip doesn't
10799 support it. (The latest stable gzip doesn't.)
10800
10801 2004-04-27 Paul Eggert <eggert@twinsun.com>
10802
10803 * data/lalr1.cc (Parser::stos_) [! YYDEBUG]: Define even in this
10804 case, as stos_ is now used by destructors due to the 2004-02-09
10805 change.
10806
10807 Remove more K&R C support.
10808 * lib/libiberty.y (PARAMS): Remove. All uses removed.
10809 * lib/subpipe.c (errno): Remove decl.
10810 Include <stdlib.h> unconditionally.
10811 (EXIT_FAILURE): Remove macro.
10812 * src/complain.c (vfprintf, strerror): Remove.
10813 * src/system.h: Include limits.h, stdlib.h, string.h, locale.h
10814 unconditionally.
10815 (EXIT_FAILURE, EXIT_SUCCESS, setlocale): Remove defns.
10816 Use latest Autoconf recommendations for including inttypes.h, stdint.h.
10817 (strchr, strspn, memchr): Remove decls.
10818 * tests/calc.at (_AT_DATA_CALC_Y): Include stdlib.h, string.h
10819 unconditionally. Do not declare perror.
10820 * tests/conflicts.at (%nonassoc and eof): Include stdlib.h
10821 unconditionally.
10822
10823 * src/complain.c (_): Remove useless defn, as system.h defines this.
10824
10825 * lib/bitset.h (__INT_TO_PTR): Remove; workaround no longer needed
10826 with latest obstack.h.
10827 * lib/ebitset.c (ebitset_elt_alloc): Don't bother to cast args
10828 to procedure types, as obstack.h now does that for us.
10829 * lib/lbitset.c (lbitset_elt_alloc): Likewise.
10830
10831 * lib/subpipe.h [HAVE_SYS_TYPES_H]: Include <sys/types.h>,
10832 so that this include file can stand alone.
10833 * lib/subpipe.c: Do not include <sys/types.h>, as subpipe.h
10834 does this now. Include subpipe.h first after config.h, to
10835 test whether it can stand alone.
10836
10837 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't
10838 declare yyerror when using lalr.cc, as GCC 3.4.0 warns about the
10839 unused declaration.
10840
10841 * tests/synclines.at (%union synch line): Put a dummy member in
10842 the union, because empty unions aren't allowed in C. Caught
10843 by GCC 3.4.0.
10844
10845 2004-04-13 Jim Meyering <jim@meyering.net>
10846
10847 * src/conflicts.c (conflicts_print): Correct format string typo:
10848 use `%%' to produce literal `%'. (trivial change)
10849
10850 2004-03-30 Paul Eggert <eggert@twinsun.com>
10851
10852 * src/getargs.c (version): Update copyright year to 2004.
10853
10854 * data/c.m4 (b4_int_type): Use 'short int' rather than
10855 'short', and similarly for 'long', 'unsigned', etc.
10856 * data/glr.c (YYTRANSLATE, yyconfl, yySymbol, yyItemNum,
10857 yygetLRActions, yyprocessOneStack, yyrecoverSyntaxError,
10858 yy_yypstack, yydumpstack): Likewise.
10859 * data/lalr1.cc (user_token_number_max_, user_token_number_max_,
10860 translate_, seq_, [], pop, Slice, range_, operator+, operator+=):
10861 Likewise.
10862 * data/yacc.c (b4_int_type, yyss, YYSTACK_BYTES, yysigned_char,
10863 yy_stack_print, yyparse): Likewise.
10864 * doc/bison.texinfo (Prologue, Multiple Types): Likewise.
10865 * lib/bbitset.h (bitset_word, BITSET_WORD_BITS): Likewise.
10866 * lib/bitset.c (bitset_print): Likewise.
10867 * lib/bitset_stats.c (bitste_log_histogram_print): Likewise.
10868 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
10869 * lib/bitsetv.c (bitsetv_dump): Likewise.
10870 * lib/ebitset.c (EBITSET_ELT_BITS, ebitset_elt_alloc): Likewise.
10871 * lib/lbitset.c (LBITSET_ELT_BITS, lbitset_elt_alloc, debug_lbitset):
10872 Likewise.
10873 * src/LR0.c (allocate_itemsets): Likewise.
10874 * src/gram.h (rule_number, rule): Likewise.
10875 * src/lalr.h (goto_number): Likewise.
10876 * src/nullable.c (nullable_compute): Likewise.
10877 * src/output.c (prepare_rules): Likewise.
10878 * src/relation.c (relation_print, relation_digraph): Likewise.
10879 * src/relation.h (relation_node): Likewise.
10880 * src/state.h (state_number, transitions, errs, reductions,
10881 struct state): Likewise.
10882 * src/symtab.h (symbol_number, struct symbol): Likewise.
10883 * src/tables.c (vector_number, tally, action_number,
10884 default_goto, goto_actions): Likewise.
10885 * tests/existing.at (GNU Cim Grammar): Likewise.
10886 * tests/regression.at (Web2c Actions): Likewise.
10887
10888 * src/output.c (muscle_insert_short_int_table): Renamed from
10889 muscle_insert_short_table. All uses changed.
10890
10891 2004-03-25 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
10892
10893 * src/parse-gram.y: Define PERCENT_EXPECT_RR.
10894 (declaration): Replace expected_conflicts with expected_sr_conflicts.
10895 Add %expect-rr rule.
10896
10897 * src/scan-gram.l: Recognize %expect-rr.
10898
10899 * src/conflicts.h (expected_sr_conflicts): Rename from
10900 expected_conflicts.
10901 (expected_rr_conflicts): Declare.
10902
10903 * src/conflicts.c (expected_sr_conflicts): Rename from
10904 expected_conflicts.
10905 (expected_rr_conflicts): Define.
10906 (conflicts_print): Check r/r conflicts against expected_rr_conflicts
10907 for GLR parsers.
10908 Use expected_sr_conflicts in place of expected_conflicts.
10909 Warn if expected_rr_conflicts used in non-GLR parser.
10910
10911 * doc/bison.texinfo: Add documentation for %expect-rr.
10912
10913 2004-03-08 Paul Eggert <eggert@gnu.org>
10914
10915 Add support for hex token numbers. Suggested by Odd Arild Olsen in
10916 <http://lists.gnu.org/archive/html/bison-patches/2004-03/msg00000.html>.
10917
10918 * NEWS: Document hexadecimal tokens, no NUL bytes, %destructor
10919 in lalr1.cc.
10920 * doc/bison.texinfo (Token Decl): Add hexadecimal token numbers.
10921 * src/scan-gram.l (scan_integer): New function.
10922 ({int}): Use it.
10923 (0[xX][0-9abcdefABCDEF]+): New pattern, to support hex numbers.
10924 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>, \\x[0-9abcdefABCDEF]+,
10925 handle_action_dollar, handle_action_at, convert_ucn_to_byte):
10926 Say "long int", not "long", for uniformity with GNU style.
10927
10928 2004-02-25 Paul Eggert <eggert@twinsun.com>
10929
10930 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Ignore stdout from
10931 compilers. This fixes a problem with Intel's C++ compiler being
10932 chatty, reported by Guido Trentalancia in
10933 <http://lists.gnu.org/archive/html/bug-bison/2004-02/msg00030.html>.
10934
10935 2004-02-09 Alexandre Duret-Lutz <adl@gnu.org>
10936
10937 Support %destructor and merge error locations in lalr1.cc.
10938
10939 * data/lalr1.cc (b4_cxx_destruct_def): New macro.
10940 (Parser::stos_): Define unconditionally.
10941 (Parser::destruct_): New method. Generate its body with
10942 b4_yydestruct_generate.
10943 (Parser::error_start_): New attribute.
10944 (Parser::parse) <yyerrlab, yyerrlab1>: Call destruct_ on erroneous
10945 token which are discarded.
10946 (Parser::parse) <yyerrlab, yyerrorlab, yyerrlab1>: Update
10947 error_start_ when erroneous token are discarded.
10948 (Parser::parse) <yyerrlab1>: Compute the location of the error
10949 token so that it covers all the discarded tokens.
10950 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust so
10951 it can be called with `%skeleton "lalr1.cc"', and do that.
10952
10953 2004-02-02 Paul Eggert <eggert@twinsun.com>
10954
10955 * src/Makefile.am (AM_CPPFLAGS): New macro. It mentions
10956 $(top_srcdir)/lib and ../lib. This fixes a bug reported
10957 by Paul Hilfinger; the old INCLUDES value didn't mention ../lib.
10958 There's no need to mention top_builddir since Automake does that
10959 for us.
10960 (INCLUDES): Remove, as Automake says it's obsolescent.
10961 Contents migrated into AM_CPPFLAGS as described above.
10962 * lib/Makefile.am (INCLUDES): Remove; obsolescent.
10963
10964 2004-01-14 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
10965
10966 * data/glr.c (yytokenName): Bullet-proof against YYEMPTY token.
10967 (yyreportSyntaxError): Handle case where lookahead token is
10968 YYEMPTY.
10969
10970 2004-01-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10971
10972 * data/glr.c: Put casts on uses of YYREALLOC and YYMALLOC so that
10973 resulting parsers are compilable with C++.
10974
10975 2003-12-23 Paul Eggert <eggert@twinsun.com>
10976
10977 * config/depcomp, config/install-sh: Sync with Automake 1.8.
10978 * src/output.c (output_skeleton): Rename local var.
10979 * tests/input.at (Torturing the Scanner): Don't use \x0 or \0 in
10980 Bison tokens, as this runs afoul of the 2003-10-07 change that
10981 disallowed NUL bytes in character constants or string literals.
10982
10983 * tests/local.at: Require Autoconf 2.59's Autotest.
10984 * tests/testsuite.at: Don't include local.at, since we now assume
10985 Autoconf 2.59 or later. Autoconf 2.59 had some problems with
10986 including it.
10987 * tests/Makefile.am ($(TESTSUITE)): Remove warning about ignoring
10988 multiple inclusion warnings.
10989
10990 2003-12-02 Akim Demaille <akim@epita.fr>
10991
10992 * doc/bison.texinfo (How Can I Reset the Parser): More about start
10993 conditions.
10994 From Bruno Haible.
10995
10996 2003-11-18 Alexandre Duret-Lutz <adl@gnu.org>
10997
10998 * doc/bison.texinfo (Bison Options): Escape `@' in `$@'.
10999
11000 2003-10-07 Paul Eggert <eggert@twinsun.com>
11001
11002 * tests/Makefile.am (clean-local): Don't run 'testsuite --clean'
11003 if testsuite doesn't exist.
11004
11005 * doc/bison.texinfo (Symbols): NUL bytes are not allowed in string
11006 literals, unfortunately.
11007 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
11008 Complain about NUL bytes in character constants or string literals.
11009
11010 2003-10-05 Paul Eggert <eggert@twinsun.com>
11011
11012 * NEWS: Don't document %no-default-prec, as it's still
11013 too experimental.
11014 * doc/bison.texinfo: Document %no-default-prec only if
11015 the defaultprec flag is set. Normally it's not.
11016
11017 2003-10-04 Paul Eggert <eggert@twinsun.com>
11018
11019 * data/glr.c (b4_rhs_value, b4_rhs_location): Yield a
11020 non-modifiable lvalue, instead of a modifiable one.
11021 * doc/bison.texinfo (Actions): Document that $$ can
11022 be assigned to. Do not claim that $$ and $N are
11023 array element references: user code should not rely on this.
11024
11025 2003-10-01 Paul Eggert <eggert@twinsun.com>
11026
11027 * src/parse-gram.h (PERCENT_NO_DEFAULT_PREC): New token.
11028 (grammar_declaration): Use it.
11029 * src/scan-gram.l: New token %no-default-prec.
11030 * tests/conflicts.at: Revamp tests to use %no-default-prec.
11031 * NEWS, doc/bison.texinfo: Document the above.
11032
11033 2003-10-01 Akim Demaille <akim@epita.fr>
11034
11035 VCG no longer supports long_straight_phase.
11036
11037 * src/vcg.c, src/vcg.h: Remove the handling of long_straight_phase.
11038 * src/print_graph.c (print_graph): Adjust.
11039
11040 2003-09-30 Frank Heckenbach <frank@g-n-u.de>
11041 and Paul Eggert <eggert@twinsun.com>
11042
11043 * doc/bison.texinfo (Decl Summary, Contextual Precedence,
11044 Table of Symbols): Document %default-prec.
11045 * src/parse-gram.y (PERCENT_DEFAULT_PREC): New token.
11046 (grammar_declaration): Set default_prec on %default-prec.
11047 * src/scan-gram.l (%default-prec): New token.
11048 * src/reader.h (default_prec): New flag.
11049 * src/reader.c: Likewise.
11050 (packgram): Handle it.
11051 * tests/conflicts.at (%default-prec without %prec,
11052 %default-prec with %prec, %default-prec 1): New tests.
11053
11054 2003-09-30 Paul Eggert <eggert@twinsun.com>
11055
11056 * tests/testsuite.at: Include local.at, not input.at, fixing
11057 a typo in the 2003-08-25 patch.
11058
11059 2003-08-27 Akim Demaille <akim@epita.fr>
11060
11061 * data/lalr1.cc (yyparse) [__GNUC__]: "Use" yyerrorlab to pacify
11062 GCC warnings.
11063
11064 2003-08-26 Akim Demaille <akim@epita.fr>
11065
11066 * config/announce-gen (print_changelog_deltas): Neutralize "<#" as
11067 "<\#" to avoid magic from Gnus when posting parts of this script.
11068
11069 2003-08-26 Akim Demaille <akim@epita.fr>
11070
11071 * data/lalr1.cc (Parser::report_syntax_error_): New, extracted from
11072 (Parser::parse): here.
11073 Adjust: nerrs and errstatus is now replaced by...
11074 (Parser::nerrs_, Parser::errstatus_): New.
11075
11076 2003-08-25 Akim Demaille <akim@epita.fr>
11077
11078 * config/announce-gen, Makefile.cfg: New.
11079 * Makefile.am: Adjust.
11080 * GNUmakefile, Makefile.maint: Update from CVS Autoconf, but
11081 keeping local WGET and WGETFLAGS modifications from Paul Eggert.
11082
11083 2003-08-25 Akim Demaille <akim@epita.fr>
11084
11085 When reducing initial empty rules, Bison parser read an initial
11086 location that is not defined. This results in garbage, and that
11087 affects Bison's own parser. Therefore we need (i) to extend Bison
11088 to support a means to initialize this location, and (ii) to use
11089 this CVS Bison to fix CVS Bison's parser.
11090
11091 * src/reader.h, reader.c (epilogue_augment): Remove, replace
11092 with...
11093 * src/muscle_tab.h, src/muscle_tab.c (muscle_code_grow): this.
11094 * src/parse-gram.y: Adjust.
11095 (%initial-action): New.
11096 (%error-verbose): Since we require CVS Bison, there is no reason
11097 not to use it.
11098 * src/scan-gram.l: Adjust.
11099 * src/Makefile.am (YACC): New, to make sure we use our own parser.
11100 * data/yacc.c (yyparse): Use b4_initial_action.
11101
11102 2003-08-25 Akim Demaille <akim@epita.fr>
11103
11104 * doc/bison.texinfo: Don't promote stdout for error messages.
11105
11106 2003-08-25 Akim Demaille <akim@epita.fr>
11107
11108 * data/lalr1.cc (Parser::reduce_print_): Remove unused yyi.
11109 From Alexandre Duret-Lutz.
11110
11111 2003-08-25 Akim Demaille <akim@epita.fr>
11112
11113 Version 1.875c.
11114
11115 2003-08-25 Akim Demaille <akim@epita.fr>
11116
11117 * data/lalr1.cc (Parser::stack_print_, YY_STACK_PRINT): New.
11118 Use them.
11119
11120 2003-08-25 Akim Demaille <akim@epita.fr>
11121
11122 * data/lalr1.cc (Parser::reduce_print_): New.
11123 Use it.
11124
11125 2003-08-25 Akim Demaille <akim@epita.fr>
11126
11127 Have lalr1.cc catch with Paul Eggert's patch to fix the infinite
11128 error recovery loops. This patch is based on
11129 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00000.html>.
11130 Also, augment the similarity between lalr1.cc and yacc.c.
11131 Note: the locations of error recovery rules are not correct yet.
11132
11133 * data/lalr1.cc: Comment changes to augment the similarity between
11134 lalr1.cc and yacc.c.
11135 (YYERROR): Goto to yyerrorlab, not yyerrlab1.
11136 (yyerrlab1): Remove, but where it used to be (now the bottom part of
11137 yyerrlab), when hitting EOF, pop the whole stack here instead of
11138 merely falling thru the default error handling mechanism.
11139 (yyerrorlab): New label, with the old contents of YYERROR,
11140 plus the following change: pop the stack of rhs corresponding
11141 to the production that invoked YYERROR. That is how Yacc
11142 behaves (required by POSIX).
11143 * tests/calc.at (AT_CHECK_CALC_LALR1_CC): No longer expected to
11144 fail.
11145
11146 2003-08-25 Akim Demaille <akim@epita.fr>
11147
11148 Tune local.at so that people can "autom4te -l autotest calc.at -o
11149 calc" for instance, to extract a sub test suite.
11150
11151 * tests/testsuite.at: Move the initialization, Autotest version
11152 requirement, and AT_TESTED invocation into...
11153 * tests/local.at: here.
11154 * tests/testsuite.at: Include it for compatibility with Autoconf
11155 2.57.
11156 * tests/Makefile.am ($(TESTSUITE)): Report that the warning should
11157 be ignore.
11158
11159 2003-08-04 Paul Eggert <eggert@twinsun.com>
11160
11161 Rework code slightly to avoid gcc -Wtraditional warnings.
11162 * data/glr.c (yyuserMerge): Return void, not YYSTYPE.
11163 The returned value is now stored in *YY0. All callers changed.
11164 * src/output.c (merge_output): Adjust to the above change.
11165
11166 2003-07-26 Paul Eggert <eggert@twinsun.com>
11167
11168 * data/glr.c (YYASSERT): New macro.
11169 (yyfillin, yydoAction, yyglrReduce, yysplitStack,
11170 yyresolveStates, yyprocessOneStack):
11171 Use `YYASSERT (FOO);' rather than `if (! (FOO)) abort ();'.
11172 Derived from a suggestion by Frank Heckenbach.
11173
11174 2003-07-25 Paul Eggert <eggert@twinsun.com>
11175
11176 * data/glr.c (yyglrReduce): Don't use C89 string concatenation,
11177 for portability to K&R C (after ansi2knr, presumably). See
11178 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>
11179 by Frank Heckenbach, though I have omitted the structure-initialization
11180 part of his glr-knr.diff patch since I recall that the Portable
11181 C Compiler didn't require that change.
11182
11183 Let the user specify how to allocate and free memory.
11184 Derived from a suggestion by Frank Heckenbach in
11185 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>.
11186 * data/glr.c (YYFREE, YYMALLOC, YYREALLOC): New macros.
11187 All uses of free, malloc, realloc changed to use these macros,
11188 and unnecessary casts removed.
11189 * data/yacc.c (YYFREE, YYMALLOC): Likewise.
11190
11191 2003-07-06 Matthias Mann <MatthiasMann@gmx.de>
11192
11193 * data/lalr1.cc (operator<<(std::ostream&, const Position&)):
11194 use s.empty() rather than s == "" to test for empty string; see
11195 <http://lists.gnu.org/archive/html/bison-patches/2003-07/msg00003.html>
11196 (trivial change)
11197
11198 2003-06-25 Akim Demaille <akim@epita.fr>
11199
11200 * config/depcomp, config/install-sh: Update from masters.
11201
11202 2003-06-20 Paul Eggert <eggert@twinsun.com>
11203
11204 * data/glr.c (YYLLOC_DEFAULT): Parenthesize arguments as needed,
11205 and return properly parenthesized result.
11206 * data/lalar1.cc (YYLLOC_DEFAULT): Likewise.
11207 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
11208 Remove unnecessary parentheses from uses.
11209 * doc/bison.texinfo (Location Default Action): Describe the
11210 conventions for parentheses.
11211
11212 2003-06-19 Paul Eggert <eggert@twinsun.com>
11213
11214 * data/glr.c (yyremoveDeletes, yy_reduce_print, yyglrReduce,
11215 yyreportTree): Do not assume that size_t is the same width as int,
11216 when printing sizes. Print sizes using an unsigned format.
11217 Problem reported by Frank Heckenbach in
11218 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00035.html>.
11219
11220 Port to Forte Developer 7 C compiler.
11221 * data/glr.c (struct YYLTYPE): If locations are not being used,
11222 declare a single dummy member, as empty structs do not conform
11223 to the C standard.
11224 (YYERROR, YYBACKUP): Do not use "do { ...; return foo; } while (0)";
11225 the Forte Developer 7 C compiler complains that end-of-loop
11226 code is not reached.
11227
11228 2003-06-17 Paul Eggert <eggert@twinsun.com>
11229
11230 * lib/libiberty.h (PARAMS): Spell argument as Args, not as X, to
11231 avoid warnings from picky compilers about redefinition of PARAMS.
11232
11233 2003-06-17 Paul Eggert <eggert@twinsun.com>
11234
11235 Version 1.875b.
11236
11237 * NEWS: Document 1.875b.
11238
11239 * lib/bbitset.h: Do not include config.h; that's the includer's job.
11240 Do not include <sys/types.h>; shouldn't be needed on a C89 host.
11241 * lib/bitset.h (bitset_compatible_p): Indent as per GNU standard.
11242 Don't use 'index' in comments, as it's a builtin fn on some hosts.
11243 * lib/bitset_stats.c: Include gettext.h unconditionally, as
11244 per recent gettext manual's suggestion.
11245 * lib/ebitset.c (ebitset_resize, ebitset_unused_clear):
11246 Use prototypes, not old-style definitions.
11247 * lib/lbitset.c (lbitset_unused_clear): Likewise.
11248 * lib/vbitset.c (vbitset_resize, vbitset_ones, vbitset_zero,
11249 vbitset_empty_p, vbitset_copy1, vbitset_not, vbitset_equal_p,
11250 vbitset_subset_p, vbitset_disjoint_p, vbitset_and, vbitset_and_cmp,
11251 vbitset_andn, vbitset_andn_cmp, vbitset_or, vbitset_or_cmp,
11252 vbitset_xor, vbitset_xor_cmp, vbitset_and_or, vbitset_and_or_cmp,
11253 vbitset_andn_or, vbitset_andn_or_cmp, vbitset_or_and,
11254 vbitset_or_and_cmp, vbitset_copy): Likewise.
11255
11256 * lib/libiberty.h: Do not include config.h; that's the includer's job.
11257 Do not include <stdlib.h>.
11258 (PARAMS): Define unconditionally for C89.
11259 (ATTRIBUTE_NORETURN): Remove.
11260 (ATTRIBUTE_UNUSED): Define unconditionally.
11261
11262 Upgrade to 2003-06-08 libbitset, submitted by Michael Hayes in:
11263 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00005.html>
11264 * lib/Makefile.am (bitsets_sources): Add vbitset.c, vbitset.h.
11265 * lib/vbitset.c, lib/vbitset.h: New files.
11266 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
11267 lib/bitset_stats.c, lib/ebitset.c, lib/lbitset.c: Import
11268 from libbitset.
11269
11270 * doc/bison.texinfo (How Can I Reset the Parser): Renamed from
11271 `How Can I Reset @code{yyparse}', since texinfo does not allow
11272 arbitrary @ in node names.
11273
11274 * m4/Makefile.am (EXTRA_DIST): Add the following files, which
11275 shouldn't be needed according to the gettext 0.12.1 documentation
11276 but which seem to be needed anyway: codeset.m4 glibc21.m4
11277 intdiv0.m4 inttypes-pri.m4 inttypes.m4 inttypes_h.m4 isc-posix.m4
11278 lcmessage.m4 nls.m4 po.m4 stdint_h.m4 uintmax_t.m4 ulonglong.m4.
11279 * po/Makefile.in.in: Upgrade to gettext 0.12.1 version.
11280
11281 * lib/.cvsignore: Add stdbool.h.
11282 * m4/.cvsignore: Add nls.m4, po.m4.
11283
11284 Upgrade to CVS gnulib.
11285 * stdbool_.h: File renamed from stdbool.h.in.
11286 * configure.ac (AM_STDBOOL_H): Invoke this instead of
11287 AC_HEADER_STDBOOL.
11288 (AM_GNU_GETTEXT): Put brackets around args, as latest manual suggests.
11289 (AM_GNU_GETTEXT_VERSION): Update to 0.12.1.
11290 * lib/Makefile.am (EXTRA_DIST): Add stdbool_.h.
11291 (MOSTLYCLEANFILES): New var.
11292 ($(libbison_a_OBJECTS)): Depend on $(STDBOOL_H).
11293 (stdbool.h): New rule.
11294 * lib/dirname.c, lib/dirname.h, lib/hash.c, lib/hash.h,
11295 lib/malloc.c, lib/obstack.h, lib/quote.c, lib/realloc.c,
11296 lib/strcasecmp.c, lib/xalloc.h, m4/alloca.m4, m4/onceonly.m4,
11297 m4/quote.m4: Upgrade to today's gnulib.
11298
11299 * tests/calc.at (AT_CHECK_CALC): New option EXPECTED-TO-FAIL.
11300 (AT_CHECK_CALC_LALR1_CC): Use it, since the C++ LALR parser fails
11301 the tests right now.
11302 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Ensure yylex and
11303 yyerror are declared before use; C99 requires this.
11304
11305 2003-06-09 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
11306
11307 * data/glr.c (YYERROR): Update definition to reset yyerrState to 0
11308 first.
11309 (yyrecoverSyntaxError): Correct the logic for setting and testing
11310 yyerrState.
11311 Correct comment on handling EOF.
11312 Allow states with only a default reduction, rather than failing
11313 (I can't quite reconstruct why these were not allowed before).
11314
11315 Fixes to avoid problem that $-N rules in GLR parsers can cause
11316 buffer overruns, corrupting state.
11317
11318 * src/output.c (prepare_rules): Output max_left_semantic_context
11319 definition.
11320 * src/reader.h (max_left_semantic_context): New variable declaration.
11321 * src/scan-gram.l (max_left_semantic_context): Define.
11322 (handle_action_dollar): Update max_left_semantic_context.
11323 * data/glr.c (YYMAXLEFT): New definition.
11324 (yydoAction): Increase size of yyrhsVals by YYMAXLEFT.
11325 (yyresolveAction): Ditto.
11326
11327 Fixes to problems with location handling in GLR parsers reported by
11328 Frank Heckenbach (2003/06/05).
11329
11330 * data/glr.c (YYLTYPE): Make trivial if locations not used.
11331 (YYRHSLOC): Add parentheses, and define only if locations used.
11332 (YYLLOC_DEFAULT): Add parentheses, and give trivial definition if
11333 locations not used.
11334 (yyuserAction): Use YYLLOC_DEFAULT to set *yylocp.
11335 (yydoAction): Remove redundant initialization of *yyvalp and *yylocp.
11336
11337 * tests/cxx-type.at: Exercise location information; update tests
11338 to differentiate output with and without locations.
11339 Remove forward declarations of yylex and yyerror---caused errors
11340 because default YYLTYPE not yet defined.
11341 Change semantic actions to compute strings, rather than printing
11342 them directly (to test proper passing of semantics values). Change
11343 output to prefix notation and update test data and expected results.
11344 (yylex): Track locations.
11345 (stmtMerge): Return value rather than printing, and include arguments
11346 in value.
11347
11348 2003-06-03 Paul Eggert <eggert@twinsun.com>
11349
11350 Avoid warnings generated by GCC 2.95.4 when Bison is
11351 configured with --enable-gcc-warnings.
11352 * data/lalr1.cc (yy::]b4_parser_class_name[::parse,
11353 yy::]b4_parser_class_name[::translate_,
11354 yy::Stack::operator[] (unsigned),
11355 yy::Stack::operator[] (unsigned) const,
11356 yy::Slice::operator[] (unsigned),
11357 yy::Slice::operator[] (unsigned) const):
11358 Rename local vars to avoid warnings.
11359 * tests/glr-regression.at (Improper handling of embedded actions
11360 and $-N in GLR parsers): Remove unused local variable from yylex.
11361 * tests/regression.at (_AT_DATA_DANCER_Y): Declare yylex to take
11362 (void) as arg when not pure, since we now assume C89 when building
11363 Bison. Pacify GCC by using parameter.
11364
11365 2003-06-02 Paul Eggert <eggert@twinsun.com>
11366
11367 * data/lalr1.cc (yy::Position::lines, yy::Position::columns,
11368 yy::Location::lines, yy::Location::columns): Rename arguments
11369 to avoid shadowing; this removes a warning generated by GCC 3.3.
11370
11371 2003-06-01 Paul Eggert <eggert@twinsun.com>
11372
11373 Don't pass C-only warning optins (e.g., -Wmissing-declarations)
11374 to g++, as GCC 3.3 complains if you do it.
11375 * configure.ac (WARNING_CXXFLAGS): New subst. Set it to
11376 everything that WARNING_CFLAGS has, except omit warnings
11377 not suitable for C++.
11378 (AC_PROG_CXX): Use this instead of AC_CHECK_PROGS([CXX], [g++]).
11379 * tests/atlocal.in (CXXFLAGS): New var.
11380 * tests/local.at (AT_COMPILE_CXX): Use it instead of CFLAGS.
11381
11382 Fix a GLR parser bug I reported in February; see
11383 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00008.html>.
11384 The problem was that GLR parsers did not conform to the C standard,
11385 because actions like { $1 = $2 + $3; } expanded to expressions
11386 that invoked YYFILL in separate subexpressions, and YYFILL assigned
11387 to a local variable. The C standard says that expressions
11388 like (var = f ()) + (var = f ()) have undefined behavior.
11389 Another problem was that GCC sometimes issues warnings that
11390 yyfill and its parameters are unused.
11391
11392 * data/glr.c (yyfillin): Renamed from the old yyfill. Mark
11393 as possibly unused.
11394 (yyfill): New function.
11395 (YYFILL): Use it.
11396 (yyuserAction): Change type of yynormal to bool, so that it matches
11397 the new yyfill signature. Mark it as possibly unused.
11398
11399
11400 Follow up on a bug I reported in February, where a Bison-generated
11401 parser can loop. Provide a test case and a fix for yacc.c. I
11402 don't have a fix for lalr1.cc or for glr.c, unfortunately.
11403 The original bug report is in:
11404 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00044.html>
11405
11406 * data/yacc.c (YYERROR): Now just 'goto yyerrorlab', since the
11407 macro's size was becoming unwieldy.
11408 (yyerrlab): Do not discard an empty lookahead symbol, as this
11409 might destroy garbage.
11410 (yyerrorlab): New label, with the old contents of YYERROR,
11411 plus the following change: pop the stack of rhs corresponding
11412 to the production that invoked YYERROR. That is how Yacc
11413 behaves, and POSIX requires this behavior.
11414 (yyerrlab1): Use YYPOPSTACK instead of its definiens.
11415 * tests/calc.at (_AT_DATA_CALC_Y): Include unistd.h if available.
11416 Define 'alarm' to do nothing if unistd.h is not available.
11417 Add a new rule "exp: '-' error;" to test the above change to
11418 data/yacc.c. Use 'alarm' to abort any test taking longer than
11419 10 seconds, as it's probably looping.
11420 (AT_CHECK_CALC): Test recovery from error in new grammar rule.
11421 Also, the new yacc.c generates two fewer diagnostics for an
11422 existing test.
11423
11424 2003-05-24 Paul Eggert <eggert@twinsun.com>
11425
11426 * data/glr.c (YYSTACKEXPANDABLE): Do not evaluate
11427 YYSTYPE_IS_TRIVIAL or YYSTYPE_IS_TRIVIAL unless they are defined.
11428 This fixes a problem reported by John Bowman when the Compaq/HP
11429 Alpha cxx compiler happy (e.g. using cxx -D__USE_STD_IOSTREAM
11430 -ansi -Wall -gall).
11431 * data/yacc.c (union yyalloc): Likewise.
11432 (YYCOPY): Do not evaluate __GNUC__ unless it is defined.
11433
11434 Switch from 'int' to 'bool' where that makes sense.
11435
11436 * lib/abitset.c (abitset_test, abitset_empty_p, abitset_equal_p,
11437 abitset_subset_p, abitset_disjoint_p, abitset_and_cmp,
11438 abitset_andn_cmp, abitset_or_cmp, abitset_xor_cmp, abitset_and_or,
11439 abitset_and_or_cmp, abitset_andn_or_cmp, abitset_or_and_cmp):
11440 Return or accept bool, not int. All callers changed.
11441 * lib/bbitset.h: (bitset_toggle_, bitset_copy_, bitset_and_or_cmp_,
11442 bitset_andn_or_cmp_, bitset_or_and_cmp_): Likewise.
11443 * lib/bitset.c (bitset_only_set_p, bitset_print, bitset_toggle_,
11444 bitset_copy_, bitset_op4_cmp, bitset_and_or_cmp_, bitset_andn_or_cmp_,
11445 bitset_or_and_cmp_): Likewise.
11446 * lib/bitset.h (bitset_test, bitset_only_set_p): Likewise.
11447 * lib/bitset_stats.c (bitset_stats_print, bitset_stats_toggle,
11448 bitset_stats_test, bitset_stats_empty_p, bitset_stats_disjoint_p,
11449 bitset_stats_equal_p, bitset_stats_subset_p, bitset_stats_and_cmp,
11450 bitset_stats_andn_cmp, bitset_stats_or_cmp, bitset_stats_xor_cmp,
11451 bitset_stats_and_or_cmp, bitset_stats_andn_or_cmp,
11452 bitset_stats_or_and_cmp): Likewise.
11453 * lib/ebitset.c (ebitset_elt_zero_p, ebitset_equal_p, ebitset_copy_cmp,
11454 ebitset_test, ebitset_empty_p, ebitset_subset_p, ebitset_disjoint_p,
11455 ebitset_op3_cmp, ebitset_and_cmp, ebitset_andn_cmp, ebitset_or_cmp,
11456 ebitset_xor_cmp): Likewise.
11457 * lib/lbitset.c (lbitset_elt_zero_p, lbitset_equal_p, lbitset_copy_cmp,
11458 lbitset_test, lbitset_empty_p, lbitset_subset_p, lbitset_disjoint_p,
11459 lbitset_op3_cmp, lbitset_and_cmp, lbitset_andn_cmp, lbitset_or_cmp,
11460 lbitset_xor_cmp): Likewise.
11461 * lib/bbitset.h: Include <stdbool.h>.
11462 (struct bitset_vtable): The following members now return bool, not
11463 int: toggle, test, empty_p, disjoint_p, equal_p, subset_p,
11464 and_cmp, andn_cmp, or_cmp, xor_cmp, and_or_cmp, andn_or_cmp,
11465 or_and_cmp).
11466 * src/conflicts.c (count_rr_conflicts): Likewise.
11467 * lib/bitset_stats.h (bitset_stats_enabled): Now bool, not int.
11468 All uses changed.
11469 * lib/ebitset.c (ebitset_obstack_init): Likewise.
11470 * lib/lbitset.c (lbitset_obstack_init): Likewise.
11471 * src/getargs.c (debug_flag, defines_flag, locations_flag,
11472 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
11473 graph_flag): Likewise.
11474 * src/getargs.h (debug_flag, defines_flag, locations_flag,
11475 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
11476 graph_flag): Likewise.
11477 * src/output.c (error_verbose): Likewise.
11478 * src/output.h (error_verbose): Likewise.
11479 * src/reader.c (start_flag, typed): Likewise.
11480 * src/reader.h (typed): Likewise.
11481 * src/getargs.c (LOCATIONS_OPTION): New constant.
11482 (long_options, getargs): Use it.
11483 * src/lalr.c (build_relations): Use bool, not int.
11484 * src/nullable.c (nullable_compute): Likewise.
11485 * src/print.c (print_reductions): Likewise.
11486 * src/tables.c (action_row, pack_vector): Likewise.
11487 * src/muscle_tab.h (MUSCLE_INSERT_BOOL): New macro.
11488 * src/output.c (prepare): Use it.
11489 * src/output.c (token_definitions_output,
11490 symbol_destructors_output, symbol_destructors_output): Use string,
11491 not boolean integer, to keep track of whether to output separator.
11492 * src/print_graph.c (print_core): Likewise.
11493 * src/state.c (state_rule_lookaheads_print): Likewise.
11494
11495 * config/install-sh: Sync from automake 1.7.5.
11496
11497 2003-05-14 Paul Eggert <eggert@twinsun.com>
11498
11499 * src/parse-gram.y (rules_or_grammar_declaration): Require a
11500 semicolon after a grammar declaration, in the interest of possible
11501 future changes to the Bison input language.
11502 Do not allow a stray semicolon at the start of the grammar.
11503 (rhses.1): Allow one or more semicolons after any rule, including
11504 just before "|" as required by POSIX.
11505 * tests/input.at (Torturing the Scanner): Add tests for ";|" in a
11506 grammar.
11507
11508 2003-05-14 Alexandre Duret-Lutz <adl@gnu.org>
11509
11510 %parse-param support for lalr1.cc.
11511
11512 * data/lalr1.cc (b4_parse_param_decl, b4_parse_param_cons,
11513 b4_cc_constructor_calls, b4_cc_constructor_call,
11514 b4_parse_param_vars, b4_cc_var_decls, b4_cc_var_decl): New m4
11515 definitions.
11516 (yy::b4_parser_class_name::b4_parser_class_name): Take extra
11517 parse-param arguments.
11518 (yy::b4_parser_class_name): Declare instance variables to
11519 hold parse-param arguments.
11520 * tests/calc.at: s/value/semantic_value/ because value clashes
11521 with a member of yy::b4_parser_class_name. Adjust C++ code
11522 to handle %parse-param. Enable %parse-param test in C++.
11523
11524 2003-05-12 Paul Eggert <eggert@twinsun.com>
11525
11526 * doc/bison.texinfo (How Can I Reset @code{yyparse}): Reword the
11527 English a bit. Fix fclose typo. Change "const char" to "char
11528 const", and use ANSI C rather than K&R for "main". Suggest
11529 YY_FLUSH_BUFFER over yyrestart (as that is what Flex recommends)
11530 and suggest yy_switch_to_buffer.
11531
11532 2003-05-05 Paul Eggert <eggert@twinsun.com>
11533
11534 * lib/bitset.h (__INT_TO_PTR): Define to a value that presumes
11535 C89. This avoids a diagnostic on compilers that define __STDC__
11536 to 0, fixing a problem with Tru64 cc reported by Martin Mokrejs in
11537 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
11538
11539 2003-05-03 Paul Eggert <eggert@twinsun.com>
11540
11541 * lib/bitset.h (BITSET_FOR_EACH, BITSET_FOR_EACH_REVERSE):
11542 Do not overrun array bounds.
11543 This should fix a bug reported today by Olatunji Oluwabukunmi in
11544 <http://lists.gnu.org/archive/html/bug-bison/2003-05/msg00004.html>.
11545
11546 2003-04-29 Akim Demaille <akim@epita.fr>
11547
11548 * src/gram.h, src/gram.c (pure_parser, glr_parser): Move to...
11549 * src/getargs.c, src/getargs.h: here, as bool, not int.
11550 (nondeterministic_parser): New.
11551 * src/parse-gram.y, src/scan-gram.l: Support
11552 %nondeterministic-parser.
11553 * src/output.c (prepare): Use nondeterministic_parser instead
11554 of glr_parser where appropriate.
11555 * src/tables.c (conflict_row, action_row, save_row)
11556 (token_actions, token_actions, pack_vector): Ditto.
11557
11558 2003-04-29 Akim Demaille <akim@epita.fr>
11559
11560 * doc/bison.texinfo (C++ Parsers, Implementing Loops): New.
11561
11562 2003-04-29 Akim Demaille <akim@epita.fr>
11563
11564 * tests/calc.at: Also test yacc.c and glr.c (but not lalr1.cc yet)
11565 with %pure-parser and %locations to exercise the patch from Yakov
11566 Markovitch below.
11567
11568 2003-04-28 Tim Van Holder <tim.van.holder@pandora.be>
11569
11570 * data/yacc.c: (b4_lex_param): Corrected for the case where
11571 %lex-param is provided and %pure-parser isn't.
11572
11573 2003-04-27 Paul Eggert <eggert@twinsun.com>
11574
11575 Avoid gcc -Wundef warnings reported by Gerald Pfeifer in
11576 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00044.html>.
11577 * data/yacc.c (YYSTACK_ALLOC): Don't evaluate YYSTACK_USE_ALLOCA
11578 if it is not defined.
11579 (YYMAXDEPTH): Don't evaluate YYMAXDEPTH if it is not defined.
11580
11581 2003-04-26 Paul Eggert <eggert@twinsun.com>
11582
11583 * data/lalr1.cc (yy::Parser::pact_ninf_, yy::Parser::table_ninf_):
11584 Declare to be of type suitable for the ninf value itself, not of
11585 type suitable for the corresponding table, since the latter might
11586 be unsigned but the ninf value might be negative. This fixes a
11587 bug reported by Alexandre Duret-Lutz in
11588 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00017.html>.
11589
11590 * configure.ac (AC_FUNC_ERROR_AT_LINE): Remove, since gl_ERROR
11591 invokes it. We shouldn't invoke it twice because it will attempt
11592 to put error.o in the archive twice. This fixes a glitch reported
11593 by Martin Mokrejs in
11594 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
11595
11596 2003-04-21 Paul Eggert <eggert@twinsun.com>
11597
11598 * m4/error.m4: Update from Bruno Haible's 2003-04-14 patch
11599 to gnulib.
11600
11601 2003-04-21 Yakov Markovitch <Markovitch@iso.ru>
11602
11603 * data/glr.c (yyexpandGLRStack) [!YYSTACKEXPANDABLE]:
11604 Fix obvious typo that results in uncompilable GLR parsers
11605 when both %pure-parser and %locations are used. (trivial change)
11606
11607 2003-04-17 Paul Eggert <eggert@twinsun.com>
11608
11609 * src/scan-gram.l: Add %option nounput, since we no longer use unput.
11610 (unexpected_eof): Renamed from unexpected_end_of_file, for brevity.
11611 Do not insert the expected token via unput, as this runs afoul
11612 of a POSIX-compatibility bug in flex 2.5.31.
11613 All uses changed to BEGIN the parent state,
11614 since we no longer insert the expected token via unput.
11615 * tests/regression.at (Invalid inputs): Remove cascaded diagnostic
11616 that is no longer emitted after the above change.
11617
11618 * src/conflicts.c (set_conflicts): Resolve all conflicts, not just
11619 the first one. This change is from Paul Hilfinger, and it fixes
11620 regression reported by Werner Lemberg in
11621 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
11622
11623 (resolve_sr_conflict): Don't invoke state_errs_set
11624 unless one or more tokens have been explicitly made errors.
11625 Otherwise, the above change causes Bison to abort.
11626
11627 * tests/existing.at (GNU pic Grammar): New test case, taken from
11628 Lemberg's email.
11629
11630 2003-03-31 Akim Demaille <akim@epita.fr>
11631
11632 * doc/Makefile.am (AM_MAKEINFOFLAGS): Don't split the info file.
11633
11634 2003-03-31 Akim Demaille <akim@epita.fr>
11635
11636 * src/output.c (prepare_symbols): Avoid trailing spaces in the
11637 output.
11638
11639 2003-03-31 Akim Demaille <akim@epita.fr>
11640
11641 * doc/bison.texinfo (Strings are Destroyed): s/losses/loses/.
11642 From Paul Hilfinger.
11643
11644 2003-03-29 Akim Demaille <akim@epita.fr>
11645
11646 * m4/error.m4: Do not put under dynamic conditions some code which
11647 expansion is under static control.
11648
11649 2003-03-29 Akim Demaille <akim@epita.fr>
11650
11651 * doc/bison.texinfo (How Can I Reset @code{yyparse}): New.
11652
11653 2003-03-29 Akim Demaille <akim@epita.fr>
11654
11655 * doc/bison.texinfo (Strings are Destroyed): New.
11656
11657 2003-03-13 Paul Eggert <eggert@twinsun.com>
11658
11659 * .cvsignore: Add configure.lineno.
11660 * src/.cvsignore: Add yacc.
11661 * tests/.cvsignore: Add testsuite.log.
11662 * doc/fdl.texi: Sync with latest FSF version.
11663
11664 2003-03-12 Paul Eggert <eggert@twinsun.com>
11665
11666 * scan-gram.l (YY_USER_INIT): Initialize code_start, too.
11667 (<INITIAL><<EOF>>, <SC_PRE_CODE><<EOF>>): Set *loc to the scanner
11668 cursor, instead of leaving it undefined. This fixes a bug
11669 reported by Tim Van Holder in
11670 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00023.html>.
11671 * tests/input.at (Torturing the Scanner): Test the scanner on
11672 an empty input file, which was Tim Van Holder's test case.
11673
11674 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): When checking whether
11675 <sys/resource.h> can be included, include sys/time.h and
11676 sys/times.h first, if available. This works around the SunOS
11677 4.1.4 porting bug reported by Bruce Becker in
11678 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00018.html>.
11679
11680 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't
11681 AC_CHECK_HEADERS([sys/wait.h]), as this interferes with
11682 AC_HEADER_SYS_WAIT.
11683
11684 Merge changes from gnulib. This was prompted because the CVS
11685 snapshot didn't build on Solaris 7 due to strnlen problems.
11686
11687 These changes need to be merged back into gnulib:
11688 * lib/hash.c: Include <stdbool.h> unconditionally.
11689 * m4/onceonly.m4 (m4_quote): New macro.
11690 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
11691 Quote AC_FOREACH variable-expansions properly.
11692 The 2003-01-03 obstack.h change also needs merging.
11693 {end of changes requiring merging}
11694
11695 * lib/stdbool.h.in, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
11696 m4/getopt.m4, m4/hash.m4, m4/malloc.m4, m4/memchr.m4,
11697 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/quote.m4,
11698 m4/quotearg.m4, m4/realloc.m4, m4/stpcpy.m4, m4/strnlen.m4,
11699 m4/strtol.m4, m4/strtoul.m4, m4/unlocked-io.m4, m4/xalloc.m4:
11700 New files, imported from gnulib.
11701 * m4/Makefile.am (EXTRA_DIST): Add the new m4/*.m4 files mentioned
11702 above.
11703
11704 * lib/mbswidth.c, m4/error.m4, m4/mbrtowc.m4, m4/mbswidth.m4,
11705 m4/memcmp.m4, m4/prereq.m4, m4/stdbool.m4: Update to current
11706 gnulib sources.
11707
11708 * configure.ac (gl_DIRNAME, gl_GETOPT, gl_HASH, gl_QUOTE, gl_XALLOC):
11709 Add.
11710 (gl_ERROR): New, replacing jm_PREREQ_ERROR.
11711 (gl_FUNC_ALLOCA): New, replacing AC_FUNC_ALLOCA.
11712 (gl_FUNC_STPCPY): New, replacing AC_REPLACE_FUNCS(stpcpy).
11713 (gl_FUNC_STRNLEN): New, replacing AC_FUNC_STRNLEN.
11714 (gl_MBSWIDTH): New, replacing jm_PREREQ_MBSWIDTH.
11715 (gl_OBSTACK): New, replacing AC_FUNC_OBSTACK.
11716 (gl_QUOTEARG): New, replacing jm_PREREQ_QUOTEARG.
11717 (jm_FUNC_GLIBC_UNLOCKED_IO, gl_FUNC_STPCPY, gl_FUNC_STRTOL): New.
11718 (jm_FUNC_MALLOC): New, replacing AC_FUNC_MALLOC.
11719 (jm_FUNC_REALLOC): New, replacing AC_FUNC_REALLOC.
11720 (jm_PREREQ_ARGMATCH): Remove.
11721 (AC_REPLACE_FUNCS): Remove memchr, memrchr, stpcpy, strtol, strtoul.
11722 * lib/Makefile.am (libbison_a_SOURCES): Add argmatch.c, argmatch.h.
11723
11724 * src/system.h: Include <stdbool.h> unconditionally.
11725
11726 * lib/bbitset.h: Include <limits.h> unconditionally. We have been
11727 assuming at least C89 in the bitset code for some time now.
11728
11729 2003-03-03 Akim Demaille <akim@epita.fr>
11730
11731 * ro.po: New.
11732
11733 2003-03-02 Akim Demaille <akim@epita.fr>
11734
11735 * doc/bison.texinfo (Table of Symbols): Reactivate the
11736 documentation for %lex-param, and %parse-param.
11737
11738 2003-03-02 Akim Demaille <akim@epita.fr>
11739
11740 * data/yacc.c, data/glr.c, data/lal1.cc: Use similar code to
11741 generate verbose error messages.
11742 Use the number of tokens as an upper bound in yytname, as it
11743 cannot be a non terminal.
11744
11745 2003-03-02 Akim Demaille <akim@epita.fr>
11746
11747 * tests/regression.at (_AT_DATA_DANCER_Y): Fix the expected error
11748 message.
11749
11750 2003-03-02 Akim Demaille <akim@epita.fr>
11751
11752 * tests/regression.at (_AT_DATA_DANCER_Y, AT_CHECK_DANCER): New.
11753 Use them to exercise yycheck overrun.
11754 Based on Andrew Suffield's grammar.
11755
11756 2003-03-02 Akim Demaille <akim@epita.fr>
11757
11758 Create tests/local.at for Bison generic testing macros.
11759
11760 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Move to...
11761 * tests/local.at (AT_BISON_OPTION_PUSHDEFS, AT_BISON_OPTION_POPDEFS):
11762 This new file.
11763 * tests/calc.at (AT_CHECK_CALC): Adjust.
11764 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR)
11765 (AT_COMPILE, AT_COMPILE_CXX, AT_PARSER_CHECK): Move to...
11766 * tests/local.at: here.
11767 (AT_COMPILE_CXX): Tags the tests using it as c++.
11768 Ignore the test if CXX is not functional.
11769
11770 2003-03-01 Paul Eggert <eggert@twinsun.com>
11771
11772 * src/scan-gram.l (code_start): Initialize it to scanner_cursor,
11773 not loc->end, since loc->end might contain garbage and this leads
11774 to undefined behavior on some platforms.
11775 (id_loc, token_start): Use (IF_LINTed) initial values that do not
11776 depend on *loc, so that the reader doesn't give the the false
11777 impression that *loc is initialized.
11778 (<INITIAL>"%%"): Do not bother setting code_start, since its value
11779 does not survive the return.
11780
11781 2003-03-01 Akim Demaille <akim@epita.fr>
11782
11783 * src/scan-gram.l (code_start): Always initialize it when entering
11784 into yylex, as SC_EPILOGUE is activated *before* the corresponding
11785 yylex invocation. An alternative would be making it static, but
11786 then it starts with the second %%'s beginning, instead of its end.
11787
11788 2003-02-28 Paul Eggert <eggert@twinsun.com>
11789
11790 * lib/mbswidth.c: Include <wchar.h> before "mbswidth.h", to work
11791 around a UnixWare 7.1.1 porting bug reported by John Hughes in
11792 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00030.html>.
11793
11794 2003-02-26 Paul Eggert <eggert@twinsun.com>
11795
11796 * README: Mention compiler bug in Sun Forte Developer 6 update 2.
11797 Remove Sequent/Pyramid discussion (nobody uses them any more).
11798 Merge VMS and MS-DOS discussion; these ports may well be dead
11799 but let's keep mentioning them for now. Put <> around email
11800 addresses. Add copyright notice.
11801
11802 2003-02-24 Paul Eggert <eggert@twinsun.com>
11803
11804 * data/glr.c (yy_reduce_print): yylineno -> yylno,
11805 to avoid collision with flex use of yylineno.
11806 Problem reported by Bruce Lilly in
11807 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00016.html>.
11808 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
11809 * data/yacc.c (yy_reduce_print): Likewise.
11810
11811 * config/depcomp: Sync with Automake 1.7.3.
11812
11813 2003-02-21 Akim Demaille <akim@epita.fr>
11814
11815 * data/lalr1.cc: Use temporary variables instead of casts to
11816 change integer types.
11817 Suggested by Paul Eggert.
11818
11819 2003-02-21 Akim Demaille <akim@epita.fr>
11820
11821 * doc/bison.texinfo: Use "location" consistently to refer to @n,
11822 to avoid confusions with lalr1.cc's notion of Position.
11823 Suggested by Paul Eggert.
11824
11825 2003-02-20 Akim Demaille <akim@epita.fr>
11826
11827 * data/lalr1.cc (position.hh): Make sure "columns" never pushes
11828 before initial_columns.
11829 (location.hh): Use consistent variable names when defining the
11830 operator<<.
11831 Use "last" so that we subtract from Positions, not from unsigned.
11832
11833 2003-02-20 Akim Demaille <akim@epita.fr>
11834
11835 * data/lalr1.cc (position.hh): New subfile, including the extended
11836 and Doxygen'ed documentation of class Position.
11837 (location.hh): Use it.
11838 Document a` la Doxygen.
11839 With the help of Benoit Perrot.
11840
11841 2003-02-20 Akim Demaille <akim@epita.fr>
11842
11843 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Define
11844 AT_YACC_IF.
11845 Redefine AT_YYERROR_SEES_LOC_IF using it.
11846 (_AT_DATA_CALC_Y): Don't declare yyerror when lalr1.cc, as it is
11847 not defined.
11848 Don't use the location in yy::Parser::error_ and
11849 yy::Parser::print_ when not %locations.
11850 Activate more lalr1.cc tests.
11851
11852 2003-02-19 Akim Demaille <akim@epita.fr>
11853
11854 * data/lalr1.cc: When displaying a line number, be sure to make it
11855 an int.
11856
11857 2003-02-19 Akim Demaille <akim@epita.fr>
11858
11859 * data/lalr1.cc (b4_stack_depth_init, yy::Parser::initdepth_):
11860 Remove, useless.
11861 (YYABORT, YYACCEPT, YYERROR): New.
11862 * tests/calc.at: Renable the lalr1.cc test.
11863
11864 2003-02-19 Akim Demaille <akim@epita.fr>
11865
11866 * tests/calc.at (AT_CHECK_CALC): Check different scenarios of
11867 error recovery, mixing with/without pops and discarding of the
11868 lookahead.
11869 Exercise YYERROR.
11870 Disable the lalr1.cc tests as currently it doesn't support YYERROR.
11871
11872 2003-02-17 Paul Eggert <eggert@twinsun.com>
11873
11874 * tests/atlocal.in (LDFLAGS, LIBS): New vars.
11875 * tests/testsuite.at (AT_COMPILE): Use them.
11876 This fixes the testsuite problem reported by Robert Lentz in
11877 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00011.html>.
11878
11879 2003-02-12 Paul Eggert <eggert@twinsun.com>
11880
11881 * data/yacc.c (yyerrlab) [YYERROR_VERBOSE]:
11882 Avoid subscript error in yycheck. Bug reported by Andrew Suffield in
11883 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00003.html>.
11884 * data/glr.c (yyreportSyntaxError) [YYERROR_VERBOSE]: Likewise.
11885 Check for malloc failure, for consistency with yacc.c.
11886 (yytname_size): Remove, for consistency with yacc.c.
11887
11888 The bug still remains in data/lalr1.cc, as I didn't have time
11889 to fix it there.
11890
11891 2003-02-06 Akim Demaille <akim@epita.fr>
11892
11893 * configure.ac (GXX): Rename as...
11894 (CXX): this, to keep the original Autoconf semantics.
11895 Require 2.57.
11896 * data/lalr1.cc: Fix b4_copyright invocations.
11897 If YYDEBUG is not defined, don't depend upon name_ being defined.
11898 (location.hh): Include string and iostream.
11899 (Position::filename): New member.
11900 (Position::Position ()): New.
11901 (operator<< (Position)): New.
11902 (operator- (Position, int)): New.
11903 (Location::first, Location::last): Rename as...
11904 (Location::begin, Location::end): these, to mock the conventional
11905 iterator names.
11906 (operator<< (Location)): New.
11907 * tests/atlocal.in (CXX): New.
11908 * tests/testsuite.at (AT_COMPILE_CXX): New.
11909 * tests/calc.at (_AT_DATA_CALC_Y): Adjust yyerror to report the
11910 locations in a more synthetic way.
11911 (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF is positive if
11912 lalr1.cc is used.
11913 Adjust the C locations to match those from Emacs: first column is
11914 column 0.
11915 Change all the expected results.
11916 Conform to the GCS: simplify the locations when applicable.
11917 (LOC, VAL, YYLLOC_FORMAL, YYLLOC_ARG, USE_YYLLOC, LEX_FORMALS)
11918 (LEX_ARGS, USE_LEX_ARGS, LEX_PRE_FORMALS, LEX_PRE_ARGS): Replace
11919 these CPP macros with the m4 macros new defined by...
11920 (AT_CHECK_PUSHDEFS): this, i.e.:
11921 (AT_LALR1_CC_IF, AT_PURE_LEX_IF, AT_LOC, AT_VAL, AT_LEX_FORMALS)
11922 (AT_LEX_ARGS, AT_USE_LEX_ARGS, AT_LEX_PRE_FORMALS, AT_LEX_PRE_ARGS)
11923 New macros.
11924 (AT_CHECK_POPDEFS): Undefine them.
11925 (AT_CHECK_CALC_LALR1_CC): New.
11926 Use it for the first lalr1.cc test.
11927
11928 2003-02-04 Akim Demaille <akim@epita.fr>
11929
11930 * data/lalr1.cc (YYLLOC_DEFAULT): Fix its definition: be based on
11931 Location as is defined.
11932
11933 2003-02-04 Akim Demaille <akim@epita.fr>
11934
11935 * data/lalr1.cc: If YYDEBUG is not defined, don't depend upon
11936 name_ being defined.
11937
11938 2003-02-03 Paul Eggert <eggert@twinsun.com>
11939
11940 * src/gram.h (start_symbol): Remove unused decl.
11941
11942 Use more-consistent naming conventions for local vars.
11943
11944 * src/derives.c (derives_compute): Change type of local var from
11945 int to rule_number.
11946 * src/gram.c (grammar_rules_partial_print): Likewise.
11947 * src/print.c (print_core): Likewise.
11948 * src/reduce.c (reduce_grammar_tables): Likewise.
11949
11950 * src/gram.c (grammar_dump): Change name of item_number *
11951 local var from r to rp.
11952 * src/nullable.c (nullable_compute): Likewise.
11953
11954 * src/gram.h (ISTOKEN, ISVAR): Use i, not s, for int var.
11955
11956 * src/gram.h (symbol_number_as_item_number): Use sym, not s,
11957 for symbol or symbol_number var.
11958 * src/reader.c (grammar_start_symbol_set): Likewise.
11959 * src/reader.h (grammar_start_symbol_set, grammar_symbol_append):
11960 Likewise.
11961 * src/state.c (transitions_to): Likewise.
11962 * src/state.h: Likewise.
11963 * src/tables.c (symbol_number_to_vector_number): Likewise.
11964
11965 * src/muscle_tab.h (MUSCLE_OBSTACK_SGROW): Use p, not s, for
11966 char * var.
11967
11968 * src/parse-gram.y (lloc_default): Use loc, not r, for YYLTYPE
11969 var.
11970
11971 * src/scan-gram.l (no_cr_read): Use bytes_read, not s, for size
11972 var.
11973
11974 * src/system.h (xstrndup, strchr, strspn, strnlen, memchr, memrchr):
11975 Use str, not s, for char * var. Use ch, not c, for character var.
11976 Use size for size var.
11977
11978 * src/uniqstr.c (uniqstr_new, uniqstr_assert): Use str, not s, for
11979 char * var.
11980 (uniqstr_print, uniqst_print_processor): Use ustr, not s, for
11981 uniqstr var.
11982 * src/uniqstr.h: Likewise.
11983
11984 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
11985 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
11986 get_node_alignment_str, get_arrow_mode_str, get_crossing_type_str,
11987 get_view_str, get_linestyle_str, get_arrowstyle_str): Rename
11988 param to have same name as that of enum, so that we don't use
11989 "s" to stand for a non-state.
11990
11991 2003-02-02 Akim Demaille <akim@epita.fr>
11992
11993 * src/scan-skel.l: Scan more than one inert character per yylex
11994 invocation.
11995
11996 2003-02-01 Paul Eggert <eggert@twinsun.com>
11997
11998 Version 1.875a.
11999
12000 * po/LINGUAS: Add ms.
12001
12002 2003-01-30 Akim Demaille <akim@epita.fr>
12003
12004 * doc/Makefile.am (CLEANFILES): Add bison.fns for distcheck.
12005
12006 2003-01-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
12007
12008 * tests/cxx-type.at: Correct apparent typo in Bison input: $$ instead
12009 of $1.
12010
12011 Changes in response to error report by S. Eken: GLR mode does not
12012 handle negative $ indices or $ indices in embedded rules correctly.
12013 See <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00076.html>.
12014
12015 * data/glr.c (b4_rhs_value): Change to use YYFILL macro.
12016 (b4_rhs_location): Ditto.
12017 (yyfill): New function to copy from stack tree into array
12018 incrementally.
12019 (yyuserAction): Modify to allow incremental move of semantic values
12020 to rhs array when in GLR mode.
12021 Define YYFILL to use in user-defined actions to fill semantic array
12022 as needed.
12023 Remove dummy use of yystack, as there is now a guaranteed use.
12024 (yydoAction): Modify to allow incremental move of semantic values
12025 to rhs array when in GLR mode.
12026 (yyresolveAction): Ditto.
12027 (yyglrShiftDefer): Update comment.
12028 (yyresolveStates): Use X == NULL for pointers, not !X.
12029 (yyglrReduce): Ditto.
12030 (yydoAction): Ditto
12031
12032 * tests/glr-regr1.at: Rename to ...
12033 * tests/glr-regression.at: Add new regression test for the problems
12034 described above (adapted from S. Eken).
12035 Update copyright notice.
12036 * tests/testsuite.at: Rename glr-regr1.at to glr-regression.at.
12037 * tests/Makefile.am: Ditto.
12038
12039 2003-01-28 Paul Eggert <eggert@twinsun.com>
12040
12041 * data/lalr1.cc: Do not use @output_header_name@ unless
12042 b4_defines_flag is set. This fixes two bugs reported by
12043 Tim Van Holder in
12044 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00071.html>
12045 and <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00073.html>.
12046
12047 2003-01-21 Paul Eggert <eggert@twinsun.com>
12048
12049 * data/yacc.c (YYERROR): Move code from yyerrlab1 to here, so that
12050 we don't need to worry about yyerrlab1 being reported as an
12051 "unused label" by non-GCC C compilers. The downside is that if
12052 locations are used then a couple of statements are duplicated each
12053 time YYERROR is invoked, but the upside is that the warnings
12054 should vanish.
12055 (yyerrlab1): Move code to YERROR.
12056 (yyerrlab2): Remove. Change uses back to yyerrlab1.
12057 This reverts some of the 2002-12-27 change.
12058
12059 2003-01-17 Paul Eggert <eggert@twinsun.com>
12060
12061 * src/output.c (symbol_printers_output): Fix typo that led
12062 to core dump. Problem reported by Antonio Rus in
12063 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00058.html>.
12064
12065 2003-01-13 Akim Demaille <akim@epita.fr>,
12066 Quoc Peyrot <chojin@lrde.epita.fr>,
12067 Robert Anisko <anisko_r@lrde.epita.fr>
12068
12069 * data/lalr1.cc (parse::yyerrlab1): When popping the stack, stop
12070 when the stacks contain one element, as the loop would otherwise
12071 free the last state, and then use the top state (the one we just
12072 popped). This means that the initial elements will not be freed
12073 explicitly, as is the case in yacc.c; it is not a problem, as
12074 these elements have fake values.
12075
12076 2003-01-11 Paul Eggert <eggert@twinsun.com>
12077
12078 * NEWS: %expect-violations are now just warnings, reverting
12079 to Bison 1.30 and 1.75 behavior. This fixes the GCC 3.2
12080 bootstrapping problem reported by Matthias Klose; see
12081 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00053.html>.
12082 * src/conflicts.c (conflicts_print): Likewise.
12083 * tests/conflicts.at (%expect not enough, %expect too much,
12084 %expect with reduce conflicts): Likewise.
12085 * doc/bison.texinfo (Expect Decl): Document this. Also mention
12086 that the warning is enabled if the number of conflicts changes
12087 (not necessarily increases).
12088
12089 * src/getargs.c (version): Update copyright year.
12090
12091 2003-01-09 Akim Demaille <akim@epita.fr>
12092
12093 * src/Makefile.am, lib/Makefile.am: Use $(VAR) instead of @VAR@.
12094
12095 2003-01-08 Paul Eggert <eggert@twinsun.com>
12096
12097 * Makefile.maint (WGETFLAGS):
12098 New macro, containing "-C off" to disable proxy caches.
12099 All uses of $(WGET) changed to $(WGET) $(WGETFLAGS).
12100 (rel-check): Use $(WGET) instead of wget.
12101
12102 2003-01-06 Paul Eggert <eggert@twinsun.com>
12103
12104 * doc/bison.texinfo (Generalized LR Parsing): Add a reference to
12105 the GLR paper of Scott, Johnstone and Hussain.
12106
12107 2003-01-04 Paul Eggert <eggert@twinsun.com>
12108
12109 * configure.ac (AC_ARG_ENABLE): Add --disable-yacc.
12110 (YACC_SCRIPT, YACC_LIBRARY): New vars to AC_SUBST.
12111 * lib/Makefile.am (lib_LIBRARIES): liby.a -> @YACC_LIBRARY@.
12112 (EXTRA_LIBRARIES): New var, for liby.a.
12113 * src/Makefile.am (bin_SCRIPTS): yacc -> @YACC_SCRIPT@.
12114 (EXTRA_SCRIPTS): New var, for yacc.
12115
12116 * data/yacc.c (yyerrlab1): Omit attribute if __cplusplus is defined,
12117 since GNU C++ (as of 3.2.1) does not allow attributes on labels.
12118 Problem reported by Nelson H. F. Beebe.
12119
12120 2003-01-03 Paul Eggert <eggert@twinsun.com>
12121
12122 * lib/obstack.h (__INT_TO_PTR) [__STDC__]: Cast result to
12123 (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
12124 when compiling Bison 1.875's `bitset bset = obstack_alloc
12125 (bobstack, bytes);'. Problem reported by Nelson H. F. Beebe.
12126
12127 * src/scan-skel.l (QPUTS): Omit redundant `;' from macro definition.
12128 ([^@\n]): Renamed from [^@\n]+ so that the token buffer does not
12129 grow to a huge size with typical invocation.
12130
12131 * lib/hash.c (_Bool, bool, false, true, __bool_true_false_are_defined):
12132 Use the pattern recommended by Autoconf 2.57, except also protect
12133 against double-definition.
12134 * src/system.h: Likewise.
12135 Portability issues reported by Nelson H. F. Beebe.
12136
12137 * data/glr.c (yybool): Renamed from bool, to avoid collisions in C.
12138 All uses changed. Provide a definition in both C and C++.
12139 (yytrue, yyfalse): Define even if defined (__cplusplus).
12140
12141 * lib/bitset_stats.c (bitset_stats_list): Remove unused var.
12142 Reported by Nelson H. F. Beebe.
12143
12144 * src/scan-skel.l ("@oline@"): Output lineno+1, not lineno.
12145
12146 2003-01-02 Paul Eggert <eggert@twinsun.com>
12147
12148 * data/yacc.c (yyerrlab1): Append `;' after attribute, to
12149 pacify the buggy "smart preprocessor" in MacOS 10.2.3.
12150 Bug reported by Nelson H. F. Beebe.
12151
12152 2003-01-01 Paul Eggert <eggert@twinsun.com>
12153
12154 * Version 1.875.
12155
12156 2002-12-30 Paul Eggert <eggert@twinsun.com>
12157
12158 * src/scan-gram.l (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>","):
12159 Moved here from...
12160 (<INITIAL>","): Here. This causes stray "," to be treated
12161 more uniformly.
12162
12163 * src/scan-gram.l (<SC_BRACED_CODE>"}"): Output ";" before the
12164 last brace in braced code when not in Yacc mode, for compatibility
12165 with Bison 1.35. This resurrects the 2001-12-15 patch to
12166 src/reader.c.
12167
12168 * src/reader.h (YYDECL): Use YYSTYPE, not its deprecated alias
12169 yystype. This follows up the 2002-12-24 YYSTYPE bug fix.
12170
12171 2002-12-28 Paul Eggert <eggert@twinsun.com>
12172
12173 * src/symtab.c (symbol_make_alias): Set type of SYMVAL to be
12174 that of SYM's type. This fixes Debian bug 168069, reported by
12175 Thomas Olsson.
12176
12177 2002-12-28 Paul Eggert <eggert@twinsun.com>
12178
12179 Version 1.75f.
12180
12181 Switch back to the Yacc style of conflict reports, undoing some
12182 of the 2002-07-30 change.
12183 * doc/bison.texinfo (Understanding): Use Yacc style for
12184 conflict reports. Also, use new way of locating rules.
12185 * src/conflicts.c (conflict_report):
12186 Renamed from conflict_report_yacc, removing the old
12187 'conflict_report'. Translate the entire conflict report at once,
12188 so that we don't assume that "," has the same interpretation in
12189 all languages.
12190 (conflicts_output): Use Yacc-style conflict report for each state,
12191 instead of our more-complicated style.
12192 (conflicts_print): Use Yacc-style conflict report, except print
12193 the input file name when not emulating Yacc.
12194 * tests/conflicts.at (Unresolved SR Conflicts, Defaulted
12195 Conflicted Reduction, %expect not enough, %expect too much,
12196 %expect with reduce conflicts): Switch to Yacc-style conflict reports.
12197 * tests/existing.at (GNU Cim Grammar): Likewise.
12198 * tests/glr-regr1.at (Badly Collapsed GLR States): Likewise.
12199
12200 * src/complain.c (warn_at, warn, complain_at, complain, fatal_at,
12201 fatal): Don't invoke fflush; it's not needed and it might even be
12202 harmful for stdout, as stdout might not be open.
12203 * src/reduce.c (reduce_print): Likewise.
12204
12205 2002-12-27 Paul Eggert <eggert@twinsun.com>
12206
12207 Fix a bug where error locations were not being recorded correctly.
12208 This problem was originally reported by Paul Hilfinger in
12209 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00086.html>.
12210
12211 * data/yacc.c (yyparse): New local var yylerrsp, to record the
12212 top of the location stack's error locations.
12213 (yyerrlab): Set it. When discarding a token, push its location
12214 onto yylerrsp so that we don't lose track of the error's end.
12215 (yyerrlab1): Now is only the target of YYERROR, so that we can
12216 properly record the location of the action that failed. For GCC
12217 2.93 and later, insert an __attribute__ ((__unused__)) to avoid
12218 GCC warning about yyerrlab1 being unused if YYERROR is unused.
12219 (yyerrlab2): New label, which yyerrlab now falls through to.
12220 Compute the error's location by applying YYLLOC_DEFAULT to
12221 the locations of all the symbols that went into the error.
12222 * doc/bison.texinfo (Location Default Action): Mention that
12223 YYLLOC_DEFAULT is also invoked for syntax errors.
12224 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
12225 Error locations include the locations of all the tokens that were
12226 discarded, not just the last token.
12227
12228 2002-12-26 Paul Eggert <eggert@twinsun.com>
12229
12230 * src/files.c: Include quote.h.
12231 (compute_output_file_names): Warn if we detect conflicting
12232 outputs to the same file. This should catch the misunderstanding
12233 exemplified by Debian Bug 165349, reported by Bruce Stephens..
12234
12235 * src/conflicts.c (conflicts_print): If the user specifies
12236 "%expect N", report an error if there are any reduce/reduce
12237 conflicts. This is what the manual says should happen.
12238 This fixes Debian bug 130890, reported by Anthony DeRobertis.
12239 * tests/conflicts.at (%expect with reduce conflicts): New test.
12240
12241 Don't use m4_include on relative file names, as it doesn't work as
12242 desired if there happens to be a file with that name under ".".
12243
12244 * m4sugar/version.m4: Remove; it was included but it wasn't used.
12245 * data/Makefile.am (dist_m4sugar_DATA): Remove m4sugar/version.m4.
12246 * data/m4sugar/m4sugar.m4: Don't include m4sugar/version.m4.
12247 * data/glr.c, data/lalr1.cc, data/yacc.c: Don't include c.m4.
12248 * src/output.c (output_skeleton): Use full path names when
12249 specifying a file to include; don't rely on include path, as
12250 it's unreliable when the working file contains a file with
12251 that name.
12252
12253 2002-12-25 Paul Eggert <eggert@twinsun.com>
12254
12255 Remove obsolete references to bison.simple and bison.hairy.
12256 Problem mentioned by Aubin Mahe in
12257 <http://lists.gnu.org/archive/html/help-bison/2002-12/msg00010.html>.
12258 * data/glr.c: Comment fix.
12259 * doc/bison.1: Remove references. Also, mention "yacc".
12260
12261 * src/getargs.c (getargs) [MSDOS]: Don't assume optarg != NULL
12262 with -g option.
12263
12264 * src/parse-gram.y (declaration): Use enum "report_states" rather
12265 than its numeric value 1.
12266
12267 * src/scan-skel.l ("@output ".*\n): Close any old yyout before
12268 opening a new one. This fixes Debian bug 165349, reported by
12269 Bruce Stephens.
12270
12271 2002-12-24 Paul Eggert <eggert@twinsun.com>
12272
12273 Version 1.75e.
12274
12275 * Makefile.maint (cvs-update): Don't assume that the shell
12276 supports $(...), as Solaris sh doesn't.
12277
12278 * src/parse-gram.y (lloc_default): Remove test for empty
12279 nonterminals at the end, since it didn't change the result.
12280
12281 2002-12-24 Paul Eggert <eggert@twinsun.com>
12282
12283 If the user does not define YYSTYPE as a macro, Bison now declares it
12284 using typedef instead of defining it as a macro. POSIX requires this.
12285 For consistency, YYLTYPE is also declared instead of defined.
12286
12287 %union directives can now have a tag before the `{', e.g., the
12288 directive `%union foo {...}' now generates the C code
12289 `typedef union foo { ... } YYSTYPE;'; this is for Yacc compatibility.
12290 The default union tag is `YYSTYPE', for compatibility with Solaris 9
12291 Yacc. For consistency, YYLTYPE's struct tag is now `YYLTYPE'
12292 instead of `yyltype'.
12293
12294 `yystype' and `yyltype' are now obsolescent macros instead of being
12295 typedefs or tags; they are no longer documented and will be
12296 withdrawn in a future release.
12297
12298 * data/glr.c (b4_location_type): Remove.
12299 (YYSTYPE): Renamed from yystype.
12300 (YYSTYPE_IS_DECLARED): New macro, used to prevent double-typedef.
12301 (struct YYLTYPE): Renamed from struct yyltype.
12302 (YYLTYPE): Renamed from yyltype.
12303 (yyltype, yystype): New (and obsolescent) macros,
12304 for backward compatibility.
12305 * data/yacc.c: Likewise.
12306
12307 * data/yacc.c (YYSTYPE): Declare as union YYSTYPE if the user
12308 does not specify a union tag. This is for compatibility with
12309 Solaris 9 yacc.
12310
12311 * src/parse-gram.y (add_param): 2nd arg is now char * not char
12312 const *, since it is now modified by stripping surrounding { }.
12313 (current_braced_code): Remove.
12314 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_UNION,
12315 PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Change names to include
12316 trailing " {...}". Now of type <chars>.
12317 (grammar_declaration): Adjust to bundled tokens.
12318 (code_content): Remove; stripping is now done by add_param.
12319 (print_token_value): Print contents of bundled tokens.
12320 (token_name): New function.
12321
12322 * src/reader.h (braced_code, current_braced_code): Remove.
12323 (token_name): New decl.
12324
12325 * src/scan-gram.l (handle_dollar, handle_at): Now takes int
12326 token_type, not braced_code code_kind. All uses changed.
12327 (SC_PRE_CODE): New state, for scanning after a keyword that
12328 has (or usually has) an immediately-following braced code.
12329 (token_type): New local var, to keep track of which token type
12330 to return when scanning braced code.
12331 (<INITIAL>"%destructor", <INITIAL>"%lex-param",
12332 <INITIAL>"%parse-param", <INITIAL>"%printer",
12333 <INITIAL>"%union"): Set token type and BEGIN SC_PRE_CODE
12334 instead of returning a token type immediately.
12335 (<INITIAL>"{"): Set token type.
12336 (<SC_BRACED_CODE>"}"): Use it.
12337 (handle_action_dollar, handle_action_at): Now returns bool
12338 indicating success. Fail if ! current_rule; this prevents a core dump.
12339 (handle_symbol_code_dollar, handle_symbol_code_at):
12340 Remove; merge body into caller.
12341 (handle_dollar, handle_at): Complain in invalid contexts.
12342
12343 * NEWS, doc/bison.texinfo: Document the above.
12344 * NEWS: Fix years and program names in copyright notice.
12345
12346 2002-12-17 Paul Eggert <eggert@twinsun.com>
12347
12348 * NEWS, doc/bison.texinfo (Parser Function, Pure Calling, Error
12349 Reporting, Table of Symbols): Omit mentions of %lex-param and
12350 %parse-param from the documentation for now.
12351
12352 2002-12-15 Paul Eggert <eggert@twinsun.com>
12353
12354 Undo most of the 2002-11-12 yychar -> yytoken patch, as it broke
12355 GCC 3.2.1 (which depends on yychar == YYEMPTY when there is no
12356 lookahead symbol, and which sets yychar in parser actions) and it
12357 disagreed with the Bison documentation. Bug
12358 reported by Andrew Walrond.
12359
12360 * data/yacc.c (YYTRANSLATE): Don't check for negative argument,
12361 as the caller now does that.
12362 (yyclearin, YYBACKUP, yyparse): Use yychar, not yytoken.
12363 (YYEMPTY): Parenthesize right hand side, since others use it.
12364 (yyparse): Don't assume that our generated code is the only code
12365 that sets yychar.
12366
12367 2002-12-13 Paul Eggert <eggert@twinsun.com>
12368
12369 Version 1.75d.
12370
12371 POSIX requires a "yacc" command.
12372 * src/Makefile.am (bin_SCRIPTS): New macro, for yacc.
12373 (MOSTLYCLEANFILES): Add yacc.
12374 (yacc): New rule.
12375 * doc/bison.texinfo (Invocation, Bison Options): Mention yacc
12376 as an alias for bison y.
12377
12378 * po/LINGUAS: Add da.
12379
12380 * src/getargs.c (__GNU_LIBRARY__) [lint]: Define to work around
12381 problem with latest <getopt.h>.
12382 (HACK_FOR___GNU_LIBRARY___PROTOTYPE): New macro.
12383
12384 * doc/fdl.texi: Upgrade to 1.2.
12385 * lib/alloca.c, lib/error.c, lib/getopt.c, lib/getopt.h
12386 lib/getopt1.c, lib/gettext.h, lib/memrchr.c, lib/obstack.c,
12387 lib/obstack.h, lib/strnlen.c, lib/unlocked-io.h: Sync with
12388 gnulib.
12389 * config/install-sh: Sync with autotools.
12390
12391 Fix a bad interaction with flex 2.5.23 reported by Bruce Lilly in
12392 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
12393 * data/yacc.c (YYLTYPE, struct yyltype): Do not define unless
12394 locations are requested.
12395 (union yyalloc): Do not depend on YYLTYPE_IS_TRIVIAL unless
12396 locations are requested.
12397
12398 2002-12-12 Paul Eggert <eggert@twinsun.com>
12399
12400 Remove unportable casts and storage allocation tricks.
12401 While we're at it, remove almost all casts, since they
12402 usually aren't needed and are a sign of trouble.
12403
12404 * configure.ac (AC_CHECK_TYPES): Check for uintptr_t.
12405
12406 * src/derives.c (derives_compute): Do not subtract NTOKENS from
12407 the pointer DSET returned by malloc; this isn't portable.
12408 Instead, always use DSET[i - NTOKENS] rather than DSET[i].
12409 Similarly for DERIVES.
12410 * src/lalr.c (set_goto_map): Likewise, for GOTO_MAP and TEMP_MAP.
12411 * src/nullable.c (nullable_compute): Likewise, for RSETS and NULLABLE.
12412 * src/reduce.c (reduce_grammar_tables): Likewise, for nontermmap
12413
12414 * src/derives.c (derives_compute): Do not bother invoking
12415 int_of_rule_number, since rule numbers are integers.
12416
12417 * src/files.c (concat2, tr, compute_base_name): Use xmalloc (N)
12418 rather than XMALLOC (char, N).
12419
12420 * src/files.c (filename_split): Rewrite to avoid cast.
12421
12422 * src/gram.h (symbol_number_as_item_number,
12423 item_number_as_symbol_number, rule_number_as_item_number,
12424 item_number_as_rule_number):
12425 Now inline functions rather than macros, to avoid casts.
12426 * src/state.h (state_number_as_int): Likewise.
12427 * src/tables.c (state_number_to_vector_number,
12428 symbol_number_to_vector_number): Likewise.
12429
12430 * src/gram.h (int_of_rule_number): Remove; no longer used.
12431
12432 * src/lalr.c (add_lookback_edge): Use malloc rather than calloc,
12433 since the resulting storage is always stored into.
12434
12435 * src/main.c (alloca) [C_ALLOCA]: Add decl here, the only place
12436 where it's needed.
12437
12438 * src/muscle_tab.c (muscle_m4_output):
12439 Now inline. Return bool, not int.
12440 * src/state.c (state_compare): Likewise.
12441 * src/symtab.c (symbol_check_defined,
12442 symbol_check_alias_consistency, symbol_pack, symbol_translation,
12443 hash_compare_symbol, hash_symbol):
12444 Likewise.
12445 * src/uniqstr.c (uniqstr_print): Likewise.
12446 * src/muscle_tab.c (muscle_m4_output_processor):
12447 New function, to avoid casts.
12448 * src/state.c (state_comparator, stage_hasher): Likewise.
12449 * src/symtab.c (symbol_check_defined_processor,
12450 symbol_check_alias_consistency_processor, symbol_pack_processor,
12451 symbol_translation_processor, hash_symbol_comparator,
12452 hash_symbol_hasher): Likewise.
12453 * src/uniqstr.c (uniqstr_print_processor): Likewise.
12454 * src/muscle_tab.c (muscles_m4_output):
12455 Use new functions instead of casting old functions unportably.
12456 * src/state.c (state_hash_new): Likewise.
12457 * src/symtab.c (symbols_new, symbols_do, symbols_check_defined,
12458 symbols_token_translations_init):
12459 Likewise.
12460 * src/uniqstr.c (uniqstrs_new, hash_initialize, uniqstrs_do): Likewise.
12461
12462 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): Use long local
12463 var instead of casting to long, to avoid casts.
12464 (prepare_states): Use MALLOC rather than alloca, so that we don't
12465 have to worry about alloca.
12466 * src/state.c (state_hash_lookup): Likewise.
12467
12468 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>"'"): Use unsigned char
12469 local var instead of casting to unsigned char, to avoid casts.
12470
12471 * src/state.c (TRANSITIONS_ALLOC, ERRS_ALLOC, REDUCTIONS_ALLOC,
12472 STATE_ALLOC): Remove.
12473 (transitions_new, errs_new, reductions_new, state_new): Use malloc
12474 rather than calloc, and use offsetof to avoid allocating slightly
12475 too much storage.
12476 (state_new): Initialize all members.
12477
12478 * src/state.c (state_hash): Use unsigned accumulator, not signed.
12479
12480 * src/symtab.c (symbol_free): Remove; unused.
12481 (symbol_get): Remove cast in lhs of assignment.
12482 (symbols_do): Now static. Accept generic arguments, not
12483 hashing-related ones.
12484
12485 * src/symtab.h: (NUMBER_UNDEFINED): Remove unnecessary cast.
12486 (symbol_processor): Remove.
12487 (symbols_do): Remove decl; now static.
12488
12489 * src/system.h (alloca): Remove; decl no longer needed.
12490 (<stddef.h>): Include, for offsetof.
12491 (<inttypes.>, <stdint.h>): Include if available.
12492 (uintptr_t): New type, if system lacks it.
12493 (CALLOC, MALLOC, REALLOC): New macros.
12494 All uses of XCALLOC, XMALLOC, and XREALLOC changed to use these
12495 new macros.
12496
12497 * src/tables.c (table_size): Now int, to pacify GCC.
12498 (table_grow, table_ninf_remap): Use signed table size.
12499 (save_row): Don't bother initializing locals when not needed.
12500 (default_goto, goto_actions, pack_vector): Remove unnecessary casts.
12501 * src/uniqstr.c (hash_compare_uniqstr): Likewise.
12502
12503 * src/vcg.h: Correct misspellings.
12504
12505 * src/vcg_defaults.h (G_CMAX): Now INT_MAX.
12506
12507
12508 * src/getargs.c (getargs): Don't assume EOF == -1.
12509
12510 2002-12-09 Paul Eggert <eggert@twinsun.com>
12511
12512 Change identifier spellings to avoid collisions with names
12513 that are reserved by POSIX.
12514
12515 Don't use names ending in _t, since POSIX reserves them.
12516 For consistency, remove _e and _s endings -- they're weren't
12517 needed to remove ambiguity. All uses changed.
12518 * src/uniqstr.h (uniqstr): Renamed from uniqstr_t, which in
12519 turn was just renamed from struniq_t.
12520 * src/uniqstr.c (uniqstr_processor): Renamed from struniq_processor,
12521 which in turn was just renamed from struniq_processor_t.
12522 (hash_compare_uniqstr): Renamed from hash_compare_struniq, which
12523 in turn was renamed from hash_compare_struniq_t.
12524 * src/LR0.c (struct state_list): Renamed from struct state_list_s.
12525 (state_list): Renamed from state_list_t.
12526 * src/assoc.h (assoc): Renamed from assoc_t.
12527 * src/conflicts.c (enum conflict_resolution): Renamed from
12528 enum conflict_resolution_e.
12529 * src/derives.c (struct rule_list): Renamed from struct rule_list_s.
12530 (rule_list): Renamed from rule_list_t.
12531 * src/getargs.h (enum trace): Renamed from enum trace_e.
12532 (enum report): Renamed from enum report_e.
12533 * src/gram.h (item_number): Renamed from item_number_t.
12534 (rule_number): Renamed from rule_number_t.
12535 (struct rule_s): Remove the "rule_s" part; not used.
12536 (rule): Renamed from rule_t.
12537 (rule_filter): Renamed from rule_filter_t.
12538 * src/lalr.c (struct goto_list): Renamed from struct goto_list_s.
12539 (goto_list): Renamed from goto_list_t.
12540 * src/lalr.h (goto_number): Renamed from goto_number_t.
12541 * src/location.h (location): Renamed from location_t.
12542 * src/muscle_tab.c (muscle_entry): Renamed from muscle_entry_t,
12543 and moved here from:
12544 * src/muscle_tab.h (muscle_entry_t): here.
12545 * src/nullable.c (struct rule_list): Renamed from struct rule_list_s.
12546 (rule_list): Renamed from rule_list_t.
12547 * src/print_graph.c (static_graph): Renamed from graph.
12548 * src/reader.h (braced_code): Renamed from braced_code_t.
12549 Remove brace_code_e tag.
12550 * src/relation.h (relation_node): Renamed from relation_node_t.
12551 (relation_nodes): Renamed from relation_nodes_t.
12552 (relation): Renamed from relation_t.
12553 * src/state.h (state_number): Renamed from state_number_t.
12554 (struct state): Renamed from struct state_s.
12555 (state): Renamed from state_t.
12556 (transitions): Renamed from transitions_t. Unused (and
12557 misspelled) transtion_s tag removed.
12558 (errs): Renamed from errs_t. Unused errs_s tag removed.
12559 (reductions): Renamed from reductions_t. Unused tag
12560 reductions_s removed.
12561 * src/symlist.h (symbol_list): Renamed from symbol_list_t.
12562 (struct symbol_list): Renamed from struct symbol_list_s.
12563 * src/symtab.h (symbol_number): Renamed from symbol_number_t.
12564 (struct symbol): Renamed from struct symbol_s.
12565 (symbol): Renamed from symbol_t.
12566 * src/tables.c (vector_number): Renamed from vector_number_t.
12567 (action_number): Renamed from action_t.
12568 * src/tables.h (base_number): Renamed from base_t.
12569 * src/vcg.h (enum color): Renamed from enum color_e.
12570 (enum textmode): Renamed from enum textmode_e.
12571 (enum shape): Renamed from enum shape_e.
12572 (struct colorentry): Renamed from struct colorentry_s.
12573 (struct classname): Renamed from struct classname_s.
12574 (struct infoname): Renamed from struct infoname_s.
12575 (enum layoutalgorithm): Renamed from enum layoutalgorithm_e.
12576 (enum decision): Renamed from enum decision_e.
12577 (enum orientation): Renamed from enum orientation_e.
12578 (enum alignment): Renamed from enum alignment_e.
12579 (enum arrow_mode): Renamed from enum arrow_mode_e.
12580 (enum crossing_type): Renamed from enum crossing_type_e.
12581 (enum view): Renamed from enum view_e.
12582 (struct node): Renamed from struct node_s.
12583 (node): Renamed from node_t.
12584 (enum linestyle): Renamed from enum linestyle_e.
12585 (enum arrowstyle): Renamed from enum arrowstyle_e.
12586 (struct edge): Renamed from struct edge.
12587 (edge): Renamed from edge_t.
12588 (struct graph): Renamed from struct graph_s.
12589 (graph): Renamed from graph_t.
12590 * tests/calc.at (_AT_DATA_CALC_Y, Simple LALR Calculator):
12591 Rename value_t -> value.
12592 * tests/input.at (Torturing the Scanner): Rename value_t -> value,
12593 value_t_as_yystype -> value_as_yystype.
12594
12595 Don't include <errno.h> in the mainstream code, since it
12596 reserves E[A-Z0-9]* and we want to use symbols like 'EQUALS'.
12597 * lib/get-errno.c, lib/get-errno.h: New files.
12598 * lib/Makefile.am (libbison_a_SOURCES): Add get-errno.h,
12599 get-errno.c.
12600 * src/files.c (xfopen, xfclose): Use get_errno instead of errno.
12601 * src/output.c (output_skeleton): Likewise.
12602 * src/scan-gram.l (<INITIAL>{int}): Use set_errno and get_errno
12603 instead of errno.
12604 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>\\x[0-9abcdefABCDEF]+):
12605 Likewise.
12606 (handle_action_dollar, handle_action_at): Likewise.
12607 * src/system.h: Do not include <errno.h>.
12608 (TAB_EXT): Renamed from EXT_TAB.
12609 (OUTPUT_EXT): Renamed from EXT_OUTPUT.
12610
12611 Avoid str[a-z]*, since <string.h> reserves that name space.
12612 Change all instances of "struniq" in names to "uniqstr", and
12613 likewise for "STRUNIQ" and "UNIQSTR".
12614 * src/uniqstr.c: Renamed from src/struniq.c.
12615 * src/uniqstr.h: Renamed from src/struniq.h.
12616 * src/Makefile.am (bison_SOURCES): Adjust to these renamings.
12617 * src/files.c (strsuffix): Remove; unused.
12618 (concat2): Renamed from stringappend. Now static.
12619 * src/files.h (strsuffix, stringappend): Remove; unused.
12620 * src/parse-gram.y (<chars>): Renamed from <string>.
12621 (<uniqstr>): Renamed from <struniq>.
12622 * src/scan-gram.l (obstack_for_string): Renamed from string_obstack.
12623 * src/vcg.h (struct node_s.expand): Renamed from struct node_s.stretch.
12624 (struct graph_s.expand): Renamed from struct graph_s.stretch.
12625 * src/vcg_defaults.h (G_EXPAND): Renamed from G_STRETCH.
12626 (G_LONG_STRAIGHT_PHASE): Renamed from G_STRAIGHT_PHASE.
12627 (N_EXPAND): Renamed from N_STRETCH.
12628
12629 Avoid *_MAX and *_MIN, since <limits.h> reserves that name space.
12630 * data/yacc.c (YYSTACK_GAP_MAXIMUM): Renamed from YYSTACK_GAP_MAX.
12631 * src/gram.h (ITEM_NUMBER_MAX, ITEM_NUMBER_MIN, RULE_NUMBER_MAX):
12632 Remove; unused.
12633 * src/lalr.h (GOTO_NUMBER_MAXIMUM): Renamed from GOTO_NUMBER_MAX.
12634 * src/state.h (STATE_NUMBER_MAXIMUM): Renamed from STATE_NUMBER_MAX.
12635 * src/symtab.h (SYMBOL_NUMBER_MAXIMUM): Renamed from SYMBOL_NUMBER_MAX.
12636 * src/tables.c (VECTOR_NUMBER_MAX, VECTOR_NUMBER_MIN): Remove; unused.
12637 (BASE_MAXIMUM): Renamed from BASE_MAX.
12638 (BASE_MINIMUM): Renamed from BASE_MIN.
12639 (ACTION_MAX): Remove; unused.
12640 (ACTION_NUMBER_MINIMUM): Renamed from ACTION_MIN.
12641 Unnecessary casts removed from above defines.
12642
12643
12644 Fix misspelling in names.
12645 * src/vcg.h (enum_alignment_e): Renamed from enum_alignement_e.
12646 * src/vcg_defaults.h (G_NODE_ALIGNMENT): Renamed from
12647 G_NODE_ALIGNEMENT.
12648
12649
12650 * lib/timevar.c (timevar_report): Renamed from time_report,
12651 for consistency with other names.
12652 * lib/timevar.h (timevar_report): New decl.
12653 * src/system.h (time_report): Remove; decl is now in lib/timevar.h.
12654
12655
12656 Sort include-file uses.
12657
12658 Reorder all include files under src to be in the order "system.h".
12659 then the ../lib include files in angle brackets (alphabetized),
12660 then the . include files in double-quotes (alphabetized). Fix
12661 dependency breakages encountered in this process, as follows:
12662 * src/closure.h, src/derives.h, src/state.h: Include "gram.h".
12663 * src/complain.c: Don't include stdlib.h, string.h _LIBC stuff.
12664 * src/state.h: Include "symtab.h".
12665
12666 2002-12-08 Paul Eggert <eggert@twinsun.com>
12667
12668 * data/glr.c, data/lalr1.cc, data/yacc.c: Do not use __file__,
12669 since this causes problems when __file__ contains character
12670 sequences like "@" that are treated specially by src/scan-skel.l.
12671 Instead, just use the file's basename. This fixes the bug
12672 reported by Martin Mokrejs in
12673 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00007.html>.
12674
12675 2002-12-06 Paul Eggert <eggert@twinsun.com>
12676
12677 Add support for rules that do not have trailing semicolons, as
12678 POSIX requires. Improve the quality of locations in Bison
12679 diagnostics.
12680
12681 * src/location.c: Include <quotearg.h>.
12682 (empty_location): Now const.
12683 (location_print): New function. Follow the recommendation of the
12684 GNU Coding Standards for locations that span file boundaries.
12685 * src/location.h: Do not include <quotearg.h>; no longer needed.
12686 (boundary): New type.
12687 (location_t): Use it. This allows locations to span file boundaries.
12688 All member uses changed: file -> start.file or end.file (as needed),
12689 first_line -> start.line, first_column -> start.column,
12690 last_line -> end.line, last_column -> end.column.
12691 (equal_boundaries): New function.
12692 (LOCATION_RESET, LOCATION_STEP): Remove.
12693 (LOCATION_PRINT): Remove. All callers changed to use location_print.
12694 (empty_location): Now const.
12695 (location_print): New decl.
12696 * src/parse-gram.y (lloc_default): New function, which handles
12697 empty locations more accurately.
12698 (YYLLOC_DEFAULT): Use it.
12699 (%token COLON): Remove.
12700 (%token ID_COLON): New token.
12701 (rules): Use it.
12702 (declarations, rules): Remove trailing semicolon.
12703 (declaration, rules_or_grammar_declaration):
12704 Allow empty (";") declaration.
12705 (symbol_def): Remove empty actions; no longer needed.
12706 (rules_or_grammar_declaration): Remove trailing semicolon.
12707 (semi_colon.opt): Remove.
12708 * src/reader.h: Include location.h.
12709 (scanner_cursor): New decl.
12710 * src/reduce.c (nonterminals_reduce): Use warn_at rather than
12711 rolling our own.
12712 * src/scan-gram.l (YY_USER_INIT): Initialize scanner_cursor instead
12713 of *loc.
12714 (STEP): Remove. No longer needed, now that adjust_location does
12715 the work. All uses removed.
12716 (scanner_cursor): New var.
12717 (adjust_location): Renamed from extend_location. It now sets
12718 *loc and adjusts the scanner cursor. All uses changed.
12719 Don't bother testing for CR.
12720 (handle_syncline): Remove location arg; now updates scanner cursor.
12721 All callers changed.
12722 (unexpected_end_of_file): Now accepts start boundary of token or
12723 comment, not location. All callers changed. Update scanner cursor,
12724 not the location.
12725 (SC_AFTER_IDENTIFIER): New state.
12726 (context_state): Renamed from c_context. All uses changed.
12727 (id_loc, code_start, token_start): New local vars.
12728 (<INITIAL,SC_AFTER_IDENTIFIER>): New initial context. Move all
12729 processing of Yacc white space and equivalents here.
12730 (<INITIAL>{id}): Save id_loc. Begin state SC_AFTER_IDENTIFIER
12731 instead of returning ID immediately, since we need to search for
12732 a subsequent colon.
12733 (<INITIAL>"'", "\""): Save token_start.
12734 (<INITIAL>"%{", "{", "%%"): Save code_start.
12735 (<SC_AFTER_IDENTIFIER>): New state, looking for a colon.
12736 (<SC_YACC_COMMENT>, <SC_COMMENT>, <SC_LINE_COMMENT>):
12737 BEGIN context_state at end, not INITIAL.
12738 (<SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'",
12739 <SC_BRACED_CODE>"}", <SC_PROLOGUE>"%}", <SC_EPILOGUE><<EOF>>):
12740 Return correct token start.
12741 (<SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>): Save start boundary when
12742 the start of a character, string or multiline comment is found.
12743 * tests/conflicts.at (S/R in initial, Defaulted Conflicted
12744 Reduction): Adjust reported locations to match the more-precise
12745 results now expected.
12746 * tests/input.at (Invalid $n, Invalid @n, Type Clashes): Likewise.
12747 * tests/reduce.at (Useless Rules, Reduced Automaton,
12748 Underivable Rules): Likewise.
12749 * tests/regression.at (Invalid inputs): No longer `expecting ";"
12750 or "|"' now that so many other tokens are allowed by the new grammar.
12751
12752 * src/complain.h (current_file): Remove duplicate decl;
12753 current_file is now owned by files.h.
12754 * src/complain.c, src/scan-gram.l: Include files.h.
12755
12756 2002-12-06 Paul Eggert <eggert@twinsun.com>
12757
12758 * data/glr.c (yy_reduce_print): Don't assume that yyrline[yyrule]
12759 promotes to int; it might be unsigned int.
12760 * data/yacc.c (yy_reduce_print): Likewise.
12761
12762 * doc/bison.texinfo (Table of Symbols): YYERROR_VERBOSE should
12763 be #defined in the prologue, not in the Bison declarations.
12764 This fixes Debian Bug 102878, reported by Shaul Karl.
12765
12766 2002-12-02 Paul Eggert <eggert@twinsun.com>
12767
12768 * configure.ac (AC_REPLACE_FUNCS): Add strtoul.
12769 * lib/strtoul.c: New file, from gnulib.
12770 This fixes a porting bug reported by Peter Klein in
12771 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00000.html>.
12772
12773 2002-11-30 Paul Eggert <eggert@twinsun.com>
12774
12775 * src/scan-gram.l (no_cr_read, extend_location): Move to epilogue,
12776 and put only a forward declaration in the prologue. This is for
12777 consistency with the other scanner helper functions.
12778
12779 Type clashes now generate warnings, not errors, since it
12780 appears that POSIX may allow some grammars with type clashes.
12781 * src/reader.c (grammar_current_rule_check): Warn about
12782 type clashes instead of complaining.
12783 * tests/input.at (Type Clashes): Expect warnings, not complaints.
12784
12785 Add Yacc library, since POSIX requires it.
12786 * doc/bison.texinfo (Yacc Library): New node. Regenerate top menu.
12787 * lib/Makefile.am (lib_LIBRARIES, liby_a_SOURCES): New macros.
12788 * lib/main.c, lib/yyerror.c: New files.
12789
12790 gram_error can be static; it need not be extern.
12791 * src/reader.h (gram_error): Remove decl.
12792 * src/parse-gram.y (gram_error): Now static. Add static decl.
12793 (print_token_value): Omit parameter names from forward decl,
12794 for consistency.
12795
12796 2002-11-29 Paul Eggert <eggert@twinsun.com>
12797
12798 * doc/bison.texinfo: Emphasize that yylex and yyerror must
12799 be declared before being used. E.g., one should typically
12800 declare them in the prologue. Use GNU coding style in examples.
12801 Put "const" consistently after the type it modifies. Mention
12802 that C99 supports "inline". Mention that yyerror traditionally
12803 returns "int".
12804
12805 %parse-param and %lex-param now take just one argument, the
12806 declaration; the argument name is deduced from the declaration.
12807
12808 * doc/bison.texinfo (Parser Function, Pure Calling, Error
12809 Reporting, Table of Symbols): Document this.
12810 * src/parse-gram.y (add_param): New function.
12811 (COMMA): Remove.
12812 (declaration): Implement new rule for %parse-param and %lex-param.
12813 * src/scan-gram.l: "," now elicits a warning, rather than being
12814 a token; this is more compatible with byacc.
12815 * tests/calc.at (Simple LALR Calculator): Adopt new convention.
12816
12817 2002-11-27 Paul Eggert <eggert@twinsun.com>
12818
12819 Rename identifiers to avoid real and potential collisions.
12820
12821 * data/c.m4 (b4_yysymprint_generate): yyout -> yyoutput,
12822 to avoid collision with lex macro described by Bruce Lilly in
12823 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
12824 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
12825 * doc/bison.texinfo (Prologue, Tracing): yyprint -> print_token_value.
12826 * src/parse-gram.y (print_token_value): Renamed from yyprint.
12827 All uses changed.
12828 (YYPARSE_PARAM, YYLEX_PARAM, yycontrol): Remove. All uses changed.
12829 The name "yycontrol" violates the name space rules, and this stuff
12830 wasn't being used anyway.
12831 (input): Remove action; this stuff wasn't being used.
12832 (gram_error): Rename local variable yylloc -> loc.
12833 * src/reader.h (struct gram_control_s, gram_control_t): Remove.
12834 (YY_DECL): Don't use "yy" at start of local variables.
12835 All uses changed, e.g., yylloc -> loc.
12836 * src/scan-gram.l (STEP): Renamed from YY_STEP. All uses changed.
12837 (STRING_GROW): Renamed from YY_OBS_GROW. All uses changed.
12838 (STRING_FINISH): Renamed from YY_OBS_FINISH. All uses changed.
12839 (STRING_FREE): Renamed from YY_OBS_FREE. All uses changed.
12840
12841 * src/parse-gram.y (gram_error): loc is now const *.
12842 * src/reader.h (gram_error): Likewise.
12843
12844 2002-11-24 Paul Eggert <eggert@twinsun.com>
12845
12846 Version 1.75c.
12847
12848 * tests/actions.at (Actions after errors): Use an output format
12849 more similar to that of the Printers and Destructors test.
12850 Test the position of the ';' token too.
12851 (Printers and Destructors): Likewise.
12852 (Printers and Destructors: %glr-parser): Remove for now, to avoid
12853 unnecessarily alarming people when the test fails.
12854
12855 * data/yacc.c (yyerrlab1): Move this label down, so that the
12856 parser does not discard the lookahead token if the user code
12857 invokes YYERROR. This change is required for POSIX conformance.
12858
12859 * lib/error.c: Sync with gnulib.
12860
12861 2002-11-22 Paul Eggert <eggert@twinsun.com>
12862
12863 * lib/quotearg.c, lib/quotearg.h: Sync with gnulib.
12864 * lib/mbswidth.c, lib/mbswidth.h: Likewise.
12865 * lib/xmalloc.c: Likewise.
12866
12867 2002-11-20 Paul Eggert <eggert@twinsun.com>
12868
12869 * lib/argmatch.c, lib/argmatch.h: Sync with gnulib.
12870
12871 2002-11-20 Paul Eggert <eggert@twinsun.com>
12872
12873 Avoid use of <assert.h>, as the GNU Coding Standards hint that one
12874 should use `if (! x) abort ();' rather than `assert (x);', and
12875 anyway it's one less thing to worry about configuring.
12876
12877 * data/glr.c, lib/hash.c, src/system.h: Do not include <assert.h>.
12878 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise,
12879 and replace all instances of assert with abort.
12880 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
12881 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Likewise.
12882
12883 * data/glr.c (yydoAction, yyglrReduce, yysplitStack, yyresolveStates,
12884 yyresolveAction, yyprocessOneStack): Use abort rather than assert.
12885 * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
12886 hash_find_entry, hash_rehash, hash_insert): Likewise.
12887 * src/conflicts.c (resolve_sr_conflict): Likewise.
12888 * src/lalr.c (set_goto_map, map_goto): Likewise.
12889 * src/nullable.c (nullable_compute): Likewise.
12890 * src/output.c (prepare_rules, token_definitions_output): Likewise.
12891 * src/reader.c (packgram, reader): Likewise.
12892 * src/state.c (state_new, state_free, state_transitions_set,
12893 state_reduction_find): Likewise.
12894 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias,
12895 symbol_pack): Likewise.
12896 * src/tables.c (conflict_row, pack_vector): Likewise.
12897 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
12898 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
12899 get_node_alignement_str, get_arrow_mode_str, get_crossing_type_str,
12900 get_view_str, get_linestyle_str, get_arrowstyle_str): Likewise.
12901
12902 * lib/argmatch.h (ARRAY_CARDINALITY): Do not bother to #undef.
12903 (ARGMATCH_CONSTRAINT): New macro.
12904 (ARGMATCH_ASSERT): Use it.
12905
12906 * src/system.h (verify): New macro.
12907 * src/getargs.c (trace_argmatch, report_argmatch): Use verify
12908 rather than assert.
12909 * src/tables.c (tables_generate): Likewise.
12910
12911 * src/struniq.c (struniq_assert): Now returns void, and aborts
12912 if the assertion is false.
12913 (struniq_assert_p): Remove.
12914 * src/struniq.h: Likewise.
12915
12916 2002-11-18 Paul Eggert <eggert@twinsun.com>
12917
12918 * data/glr.c (yygetLRActions): Replace `yyindex' with
12919 `yytable[yyindex]' to fix typo introduced in my 2002-11-09 patch.
12920 This fixes the regression with Sun ONE Studio 7 cc that I reported in
12921 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00077.html>.
12922
12923 2002-11-18 Akim Demaille <akim@epita.fr>
12924
12925 * doc/bison.texinfo (Tracing): `yyprint' shouldn't prepend a
12926 space.
12927 From Tim Van Holder.
12928
12929 2002-11-17 Paul Eggert <eggert@twinsun.com>
12930
12931 Pacify Sun ONE Studio 7 lint. Also, rename "ParseError"
12932 to "SyntaxError" for consistency with my 2002-11-15 change.
12933
12934 * data/glr.c (YYDPRINTF, YYDSYMPRINT, YYDSYMPRINTF) [!YYDEBUG]: Do
12935 not define to {}, since this breaks the common use of `YYDPRINTF
12936 ((...));' if a single statement is desired (e.g. before `else').
12937 Work around GCC warnings by surrounding corresponding calls with
12938 {} if needed.
12939 (yyhasResolvedValue): Remove unused function.
12940 (yymergeOptionSets, yyresolvStack): Use `continue;' for empty
12941 loop body.
12942 (yyreportSyntaxError): Renamed from yyreportParseError.
12943 (yyrecoverSyntaxError): Renamed from yyrecoverParseError.
12944 All uses changed.
12945 * tests/calc.at (_AT_DATA_CALC_Y): Make vars static instead of
12946 extern when possible. Remove unused initializations.
12947
12948 2002-11-16 Akim Demaille <akim@epita.fr>
12949
12950 Augment the similarity between GLR and LALR traces.
12951
12952 * data/yacc.c (yy_stack_print, YY_STACK_PRINT, yy_reduce_print)
12953 (YY_REDUCE_PRINT): New.
12954 (yyparse): Use them.
12955 * data/glr.c (yy_reduce_print): Use YYFPRINTF, no need for
12956 YYDPRINT here.
12957 (yyglrReduce, yyrecoverParseError, yyparse): Don't report the
12958 state reached after the reduction/recovery, since...
12959 (yyparse, yyprocessOneStack): Report the state we are entering in.
12960
12961 2002-11-16 Akim Demaille <akim@epita.fr>
12962
12963 * src/getargs.h, src/getargs.c (trace_e, trace_args, trace_types):
12964 Add support for --trace=skeleton.
12965 * src/scan-skel.l: %option debug.
12966 Scan strings of non-@ or \n instead of character by character.
12967 (scan_skel): Handle trace_skeleton.
12968 (QPUTS): New.
12969 (@output_parser_name@, @output_header_name@): ``Restore'' their
12970 support (used to be M4 macros).
12971 * data/yacc.c: Quote larger chunks, a la glr.c.
12972 * data/lalr1.cc: Likewise.
12973 The header guards are no longer available, so use some other
12974 string than `YYLSP_NEEDED'.
12975
12976 2002-11-16 Akim Demaille <akim@epita.fr>
12977
12978 Make the ``Printers and Destructors'' test more verbose, taking
12979 `yacc.c''s behavior as (possibly wrong) reference.
12980
12981 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use printf
12982 instead of fprint on stdout.
12983 Set and report the last_line of the symbols.
12984 Consistently display values and locations.
12985
12986 2002-11-16 Paul Eggert <eggert@twinsun.com>
12987
12988 * data/yacc.c: Avoid over-quoting of __line__ and __file__.
12989
12990 2002-11-15 Paul Eggert <eggert@twinsun.com>
12991
12992 * tests/actions.at (Actions after errors): New test case.
12993
12994 * data/glr.c, data/lalr1.cc, data/yacc.cc, doc/bison.texinfo,
12995 src/conflicts.c, src/parse-gram.y, src/tables.c, src/tables.h,
12996 tests/action.at, tests/calc.at, tests/conflicts.at,
12997 tests/cxx-type.at, tests/regression.at:
12998 "parse error" -> "syntax error" for POSIX compatibility.
12999 "parsing stack overflow..." -> "parser stack overflow" so
13000 that code matches Bison documentation.
13001
13002 2002-11-15 Akim Demaille <akim@epita.fr>
13003
13004 * src/parse-gram.y (declaration): Have %parse-param and %lex-param
13005 take two BRACED_CODE, not two string_content.
13006 Free the scanner's obstack when we are done.
13007 (code_content): New.
13008 * tests/calc.at: Adjust.
13009 * doc/bison.texinfo: Adjust.
13010 Also, make sure to include the `,' for these declarations.
13011
13012 2002-11-15 Tim Van Holder <tim.van.holder@pandora.be>
13013
13014 * m4/prereq.m4: Removed the commented jm_PREREQ_HASH
13015 definition; avoids potential autoreconf problems.
13016
13017 2002-11-15 Akim Demaille <akim@epita.fr>
13018
13019 Always check the value returned by yyparse.
13020
13021 * tests/calc.at (_AT_DATA_CALC_Y): Have `main' exit with the value
13022 returned by yyparse.
13023 (_AT_CHECK_CALC_ERROR): Take the expected exit value as argument.
13024 Adjust calls.
13025 * tests/glr-regr1.at (glr-regr1.y): Have `main' exit with the value
13026 returned by yyparse.
13027
13028 2002-11-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13029
13030 * data/glr.c (yyFail): Always set yyerrflag. Corrects regression
13031 on input.at test.
13032
13033 2002-11-14 Paul Eggert <eggert@twinsun.com>
13034
13035 * src/output.c (output_skeleton): Call xfopen instead of
13036 duplicating xfopen's body.
13037
13038 Fix bugs reported by Nelson H. F. Beebe in
13039 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00078.html>.
13040
13041 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that
13042 "$CC -E foo.h" is allowed, as this doesn't work with the Portland
13043 Group compiler. Instead, use "$CC -E bar.c". Include the .h
13044 file twice in the grammar, as an extra check.
13045
13046 * tests/input.at (Torturing the Scanner): Surround the
13047 backslash-newline tests with "#if 0", to make it less likely that
13048 we'll run into compiler bugs. Bring back solitary \ inside
13049 comment, but add a closing comment to work around HP C bug. Don't
13050 test backslash-newline in C character constant.
13051
13052 2002-11-14 Akim Demaille <akim@epita.fr>
13053
13054 * tests/synclines.at (AT_SYNCLINES_COMPILE): Ignore the exit
13055 status of the compiler.
13056 Calling `exit 1' is no longer needed.
13057 Reported by Nelson H. F. Beebe.
13058
13059 2002-11-14 Akim Demaille <akim@epita.fr>
13060
13061 * tests/atlocal.in (CPPFLAGS): We have config.h.
13062 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR):
13063 New.
13064 * tests/actions.at, tests/calc.at, tests/conflicts.at,
13065 * tests/cxx-type.at, tests/glr-regr1.at, tests/headers.at,
13066 * tests/regression.at, tests/torture.at: Use them for all the
13067 grammars that are to be compiled.
13068 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Rename as...
13069 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): this.
13070 * doc/bison.texinfo (GLR Parsers): Document `inline'.
13071
13072 2002-11-14 Akim Demaille <akim@epita.fr>
13073
13074 * doc/bison.texinfo: Various formatting changes (alignments in
13075 samples, additional @group/@end group, GCS in samples.
13076 Use @deffn instead of simple @table to define the directives,
13077 macros, variables etc.
13078
13079 2002-11-13 Paul Eggert <eggert@twinsun.com>
13080
13081 Fix some bugs reported by Albert Chin-A-Young in
13082 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00066.html>.
13083
13084 * tests/input.at (Torturing the Scanner): Don't invoke "cc a.c b.c
13085 -o c"; the HP C compiler chatters during compilation.
13086 Instead, invoke "cc -c a.c -o a.o; cc -c b.c -o b.o; cc a.o b.o -o c".
13087 * tests/headers.at (export YYLTYPE): Likewise.
13088
13089 * tests/input.at (Torturing the Scanner): Remove lines containing
13090 solitary backslashes, as they tickle a bug in the HP C compiler.
13091
13092 * tests/glr-regr1.at (Badly Collapsed GLR States): Avoid //
13093 comments, since they're not portable. Use GNU coding style.
13094
13095 2002-11-13 Akim Demaille <akim@epita.fr>
13096
13097 * data/yacc.c: Leave bigger chunks of quoted text.
13098 (YYDSYMPRINTF): New.
13099 Use it to report symbol activities.
13100 * data/glr.c (YYDSYMPRINTF): New.
13101 Use it.
13102
13103 2002-11-12 Paul Eggert <eggert@twinsun.com>
13104
13105 Version 1.75b.
13106
13107 * data/glr.c (yydoAction): Return YYRESULTTAG, not int.
13108 (yyglrReduce): Return yyok, not 0.
13109 This should avoid the enumerated-type warnings reported
13110 by Nelson H. F. Beebe in
13111 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00057.html>.
13112
13113 * lib/bbitset.h (BITSET_INLINE): Remove.
13114 * lib/bitset.h [! BITSET_INLINE]: Remove.
13115 (bitset_set, bitset_reset, bitset_test): Rename local vars
13116 to avoid shadowing warnings by GCC.
13117
13118 * data/glr.c (inline): Remove #define. It's the user's
13119 responsibility to #define it away, just like 'const'.
13120 This fixes one of the bugs reported by Nelson H. F. Beebe in
13121 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00058.html>.
13122
13123 * Makefile.maint (po-check): Scan .l and .y files instead of the
13124 .c and the .h files that they generate. This fixes the bug
13125 reported by Tim Van Holder in:
13126 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00062.html>
13127 Look for N_ as well as for _. Try to avoid matching #define for
13128 N_ and _.
13129 * po/POTFILES.in: Remove src/parse-gram.c, src/scan-gram.c,
13130 src/system.h. Add src/parse-gram.y, src/scan-gram.l.
13131 * src/scan-gram.l: Revamp regular expressions so that " and '
13132 do not confuse xgettext.
13133
13134 * src/struniq.h (struniq_new): Do not declare the return type
13135 to be 'const'; this violates the C standard.
13136 * src/struniq.c (struniq_new): Likewise.
13137
13138 2002-11-12 Albert Chin-A-Young <china@thewrittenword.com>
13139
13140 * src/Makefile.am (LDADD): Link $(LIBINTL) last to avoid the
13141 duplicate definition of optind on Tru64 UNIX 4.0D with the Compaq
13142 linker.
13143
13144 2002-11-12 Akim Demaille <akim@epita.fr>
13145
13146 * Makefile.maint: Sync with Autoconf:
13147 (local_updates): New.
13148
13149 2002-11-12 Akim Demaille <akim@epita.fr>
13150
13151 * po/POTFILES.in (src/lalr.c, src/state.c): Remove
13152
13153 2002-11-12 Akim Demaille <akim@epita.fr>
13154
13155 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Display the
13156 locations.
13157
13158 2002-11-12 Akim Demaille <akim@epita.fr>
13159
13160 * data/c.m4 (b4_yysymprint_generate): Pass *yyvaluep to YYPRINT,
13161 not yyvalue.
13162
13163 2002-11-12 Akim Demaille <akim@epita.fr>
13164
13165 * tests/actions.at (AT_CHECK_PRINTER_AND_DESTRUCTOR): New.
13166 Use it to test the GLR parser.
13167
13168 2002-11-12 Akim Demaille <akim@epita.fr>
13169
13170 * tests/regression.at (input.y): s/YYEOF/MYEOF/, as the skeleton
13171 defines it.
13172 * data/glr.c (yystos): New.
13173 (b4_yysymprint_generate, b4_yydestruct_generate): Invoke.
13174 (YYDSYMPRINT): New.
13175 (yyval): Don't define it, it is handled via M4.
13176 (yyrecoverParseError): Free verbosely the discarded symbols.
13177 * data/yacc.c (yysymprint): Remove, rather...
13178 (b4_yysymprint_generate): invoke.
13179 * data/c.m4 (b4_yysymprint_generate): New.
13180 Accept pointers as arguments, as opposed to the version from
13181 yacc.c.
13182 (b4_yydestruct_generate): Likewise.
13183 * tests/cations.at (Printers and Destructors): Use Bison directives
13184 instead of CPP macros.
13185 Don't rely on internal details.
13186
13187 2002-11-12 Akim Demaille <akim@epita.fr>
13188
13189 * data/c.m4 (b4_yydestruct_generate, b4_symbol_actions): New.
13190 * data/yacc.c: Rename yychar1 as yytoken, as in glr.c.
13191 Don't work on yychar (i.e., do set it to YYEMPTY, don't match
13192 it against YYEMPTY and so forth), work on yytoken (i.e., set
13193 it to YYEMPTY etc.).
13194 (yydestruct): Replace with a b4_yydestruct_generate invocation.
13195 (b4_symbol_actions): Remove.
13196 * data/glr.c (YYTRANSLATE): As for yacc.c, if negative, it stands
13197 for 0, end-of-input.
13198
13199 2002-11-12 Akim Demaille <akim@epita.fr>
13200
13201 * doc/bison.texinfo (Destructor Decl): New.
13202
13203 2002-11-12 Akim Demaille <akim@epita.fr>
13204
13205 * src/tables.c (tables_generate): Use free for pointers that
13206 cannot be NULL, not XFREE.
13207 (pack_vector): Use assert, not fatal, for bound violations.
13208 * src/state.c (state_new): Likewise.
13209 * src/reader.c (reader): Likewise.
13210 * src/lalr.c (set_goto_map): Likewise.
13211 * src/location.h (LOCATION_PRINT): If first_line is 0, just issue
13212 the file name.
13213
13214 2002-11-12 Akim Demaille <akim@epita.fr>
13215
13216 * src/scan-gram.l, src/reader.h (scanner_last_string_free):
13217 Restore.
13218 * src/scan-gram.l (last_string): Is global to the file, not to
13219 yylex.
13220 * src/parse-gram.y (input): Don't append the epilogue here,
13221 (epilogue.opt): do it here, and free the scanner's obstack.
13222 * src/reader.c (epilogue_set): Rename as...
13223 (epilogue_augment): this.
13224 * data/c.m4 (b4_epilogue): Defaults to empty.
13225
13226 2002-11-12 Akim Demaille <akim@epita.fr>
13227
13228 * src/getargs.c (long_options): Remove duplicates.
13229 * src/vmsgetargs.c, src/build.com, src/bison.cld, src/vmshlp.mar:
13230 Remove.
13231 * doc/bison.rnh: Remove.
13232 * doc/bison.texinfo (VMS Invocation): Remove.
13233
13234 2002-11-12 Akim Demaille <akim@epita.fr>
13235
13236 * src/struniq.h, src/struniq.c (struniq_t): Is const.
13237 (STRUNIQ_EQ, struniq_assert, struniq_assert_p): New.
13238
13239 Use struniq for symbols.
13240
13241 * src/symtab.h (symbol_t): The tag member is a struniq.
13242 (symbol_type_set): Adjust.
13243 * src/symtab.c (symbol_new): Takes a struniq.
13244 (symbol_free): Don't free the tag member.
13245 (hash_compare_symbol_t, hash_symbol_t): Rename as...
13246 (hash_compare_symbol, hash_symbol): these.
13247 Use the fact that tags as struniqs.
13248 (symbol_get): Use struniq_new.
13249 * src/symlist.h, src/symlist.c (symbol_list_n_type_name_get):
13250 Returns a strniq.
13251 * src/reader.h (merger_list, grammar_currentmerge_set): The name
13252 and type members are struniqs.
13253 * src/reader.c (get_merge_function)
13254 (grammar_current_rule_merge_set): Adjust.
13255 (TYPE, current_type): Are struniq.
13256
13257 Use struniq for file names.
13258
13259 * src/files.h, src/files.c (infile): Split into...
13260 (grammar_file, current_file): these.
13261 * src/scan-gram.c (YY_USER_INIT, handle_syncline): Adjust.
13262 * src/reduce.c (reduce_print): Likewise.
13263 * src/getargs.c (getargs): Likewise.
13264 * src/complain.h, src/complain.c: Likewise.
13265 * src/main.c (main): Call struniqs_new early enough to use it for
13266 file names.
13267 Don't free the input file name.
13268
13269 2002-11-12 Akim Demaille <akim@epita.fr>
13270
13271 * src/symtab.c (symbol_free): Remove dead deactivated code:
13272 type_name are properly removed.
13273 Don't use XFREE to free items that cannot be NULL.
13274 * src/struniq.h, src/struniq.c: New.
13275 * src/main.c (main): Initialize/free struniqs.
13276 * src/parse-gram.y (%union): Add astruniq member.
13277 (yyprint): Adjust.
13278 * src/scan-gram.l (<{tag}>): Return a struniq.
13279 Free the obstack bit that used to store it.
13280 * src/symtab.h (symbol_t): The 'type_name' member is a struniq.
13281
13282 2002-11-11 Paul Eggert <eggert@twinsun.com>
13283
13284 Revamp to fix many (but not all) of the C- and M4-related quoting
13285 problems. Among other things, this fixes the Bison bug reported
13286 by Jan Hubicka when processing the Bash grammar; see:
13287 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00039.html>
13288
13289 Use new @ escapes consistently. Represent brackets with @{ and @}
13290 rather than @<:@ and @:>@, since this works a bit better with dumb
13291 editors like vi. Represent @ with @@, since @ is now consistently
13292 an escape. Use @oline@ and @ofile@ rather than __oline__ and
13293 __ofile__, to avoid unexpected expansions. Similarly, use @output
13294 rather than #output.
13295
13296 * data/c.m4 (b4_copyright): Omit file name from comment, since
13297 the file name could contain "*/".
13298 (b4_synclines_flag): Don't quote the 2nd argument; it should already
13299 be quoted. All uses changed.
13300
13301 * data/glr.c: Use new @ escapes consistently.
13302 (b4_input_suffix, b4_output_parser_suffix, b4_output_parser_name,
13303 b4_output_header_suffix, b4_output_header_name, b4_header_guard):
13304 Remove, since they couldn't handle arbitrary characters in file
13305 names.
13306 * data/lalr1.cc: Likewise.
13307 * data/yacc.c: Likewise.
13308
13309 * src/files.c (output_infix): Remove; all uses removed.
13310 * src/files.h: Likewise.
13311
13312 * data/glr.c: Remove use of "#ifdef b4_header_guard", since it
13313 mishandled funny characters in file names, and anyway it isn't
13314 needed any more.
13315 * data/yacc.c: Likewise.
13316 * data/lalr1.cc: Use YYSLP_NEEDED instead of b4_header_guard.
13317
13318 * data/glr.c (YYSTYPE_IS_TRIVIAL): Define when the .h file would.
13319 * data/yacc.c: Likewise.
13320
13321 * src/muscle_tab.c: Include quotearg.h, since we need to quote C
13322 strings now.
13323 (muscle_init): Quote filename as a C string.
13324 * src/muscle_tab.h (MUSCLE_GROW_STRING_PAIR): Remove; unused.
13325 (MUSCLE_OBSTACK_SGROW, MUSCLE_INSERT_C_STRING): New macros.
13326 * src/output.c (escaped_file_name_output): New function.
13327 (prepare_symbols): Quote tokens for M4.
13328 (prepare): Don't insert output_infix, output_prefix,
13329 output_parser_name, output_header_name; this is now down by scan-skel.
13330 Insert skeleton as a C string.
13331
13332 * src/output.c (user_actions_output, symbol_destructors_output,
13333 symbol_printers_output): Quote filenames for C and M4.
13334 * src/reader.c (prologue_augment, epilogue_set): Likewise.
13335
13336 * src/scan-gram.l (<SC_CHARACTER>): Don't worry about any backslash
13337 escapes other than \\ and \'; this simplifies the code.
13338 (<SC_STRING>): Likewise, for \\ and \".
13339 (<SC_COMMENT,SC_LINE_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,
13340 SC_PROLOGUE,SC_EPILOGUE>): Escape $ and @, too.
13341 Use new escapes @{ and @} for [ and ].
13342
13343 * src/scan-skel.l (yylineno, yyoutname): Remove static vars, replacing
13344 them with auto vars.
13345 Switch to new escape scheme, where @ is the escape character uniformly.
13346 Abort if a stray escape character is found. Avoid unbounded input
13347 buffer when parsing non-escaped text.
13348
13349 * tests/input.at (Torturing the Scanner): Add tests that @oline@,
13350 __oline__, #output, $@, and @{ do not have unintended meanings.
13351
13352 2002-11-09 Paul Eggert <eggert@twinsun.com>
13353
13354 Fix the test failure due to GCC warnings described in
13355 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00000.html>.
13356 * data/glr.c (yyis_pact_ninf, yyis_table_ninf): New macros, which
13357 evaluate to 0 if it's impossible for NINF to be in the respective
13358 table.
13359 (yygetLRActions, yyrecoverParseError): Use them.
13360
13361 * src/scan-gram.l (unexpected_end_of_file): Fix bug: columns were
13362 counted in the token inserted at end of file. Now takes
13363 location_t *, not location_t, so that the location can be
13364 adjusted. All uses changed.
13365
13366 * tests/regression.at (Invalid inputs): Adjust wording in
13367 diagnostic to match the new behavior.
13368
13369 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR,
13370 AT_DATA_HORIZONTAL_GRAMMAR, AT_DATA_LOOKAHEADS_GRAMMAR,
13371 AT_DATA_STACK_TORTURE): Replace `assert (x);' with `if (! (x))
13372 abort ();'. This reduces the runtime of the "Many lookaheads"
13373 test from 27.6 to 2.7 minutes on a 440 MHz Ultrasparc III running
13374 GCC 3.2.
13375
13376 2002-11-07 Paul Eggert <eggert@twinsun.com>
13377
13378 * src/parse-gram.y (CHARACTER): Remove unused token.
13379 All uses removed.
13380
13381 * src/scan-gram.l: Remove stack option. We no longer use the
13382 stack, since the stack was never deeper than 1; instead, use the
13383 new auto var c_context to record the stacked value.
13384
13385 Remove nounput option. At an unexpected end of file, we now unput
13386 the minimal input necessary to end cleanly; this simplifies the
13387 code.
13388
13389 Avoid unbounded token sizes where this is easy.
13390
13391 (unexpected_end_of_file): New function.
13392 Use it to systematize the error message on unexpected EOF.
13393 (last-string): Now auto, not static.
13394 (YY_OBS_FREE): Remove unnecessary do while (0) wrapper.
13395 (scanner_last_string_free): Remove; not used.
13396 (percent_percent_count): Move decl to just before use.
13397 (SC_ESCAPED_CHARACTER): Return ID at unexpected end of file,
13398 not the (never otherwised-used) CHARACTER.
13399
13400 2002-11-07 Akim Demaille <akim@epita.fr>
13401
13402 Let yyerror always receive the msg as last argument, so that
13403 yyerror can be variadic.
13404
13405 * data/yacc.c (b4_yyerror_args): New.
13406 Use it when calling yyerror.
13407 * data/glr.c (b4_yyerror_args, b4_lyyerror_args): New.
13408 Use it when calling yyerror.
13409 * doc/bison.texinfo (Error Reporting): Adjust.
13410 * tests/calc.at (_AT_DATA_CALC_Y): Adjust.
13411 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Adjust.
13412
13413 2002-11-06 Akim Demaille <akim@epita.fr>
13414
13415 #line should have quoted strings.
13416 Ideally, this should be done by m4_quotearg.
13417
13418 * src/scan-skel.l: Include quotearg.h.
13419 Quote __ofile__.
13420 * src/output.c (symbol_printers_output)
13421 (symbol_destructors_output): Quote the file name.
13422
13423 2002-11-06 Akim Demaille <akim@epita.fr>
13424
13425 * tests/regression.at (Invalid inputs): Adjust to the recent
13426 messages.
13427
13428 2002-11-06 Akim Demaille <akim@epita.fr>
13429
13430 Restore --no-lines.
13431 Reported by Jim Kent.
13432
13433 * data/c.m4 (b4_syncline): New.
13434 * data/glr.c, data/yacc.c, data/lalr1.cc: Use it.
13435 * src/reader.c (prologue_augment, epilogue_set): Use b4_syncline.
13436 * src/output.c (user_actions_output): Likewise.
13437 (prepare): Define 'b4_synclines_flag'.
13438 * src/muscle_tab.c (muscle_init): Don't define b4_linef.
13439
13440 2002-11-06 Akim Demaille <akim@epita.fr>
13441
13442 * src/main.c (main): Free `infile'.
13443 * src/scan-gram.l (handle_syncline): New.
13444 Recognize `#line'.
13445 * src/output.c (user_actions_output, symbol_destructors_output)
13446 (symbol_printers_output): Use the location's file name, not
13447 infile.
13448 * src/reader.c (prologue_augment, epilogue_set): Likewise.
13449
13450 2002-11-05 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13451
13452 * src/tables.c (matching_state): Don't allow states to match if
13453 either has GLR conflict entries.
13454
13455 2002-11-05 Paul Eggert <eggert@twinsun.com>
13456
13457 * src/scan-gram.l: Use more accurate diagnostics, e.g.
13458 "integer out of range" rather than "invalid value".
13459 * tests/input.at (Invalid $n, Invalid @n): Change expected wording
13460 accordingly.
13461
13462 Scan <% and %> digraphs in C code as POSIX 1003.1-2001 requires.
13463 Also, remove one static variable in the scanner.
13464
13465 * src/scan-gram.l (braces_level): Now auto, not static.
13466 Initialize to zero if the compiler is being picky.
13467 (INITIAL): Clear braces_level instead of incrementing it.
13468 (SC_BRACED_CODE): Treat <% and %> as { and } when inside C code,
13469 as POSIX 1003.1-2001 requires.
13470 * src/system.h (IF_LINT): New macro, taken from coreutils.
13471 * configure.ac: Define "lint" if --enable-gcc-warnings.
13472
13473 2002-11-05 Akim Demaille <akim@epita.fr>
13474
13475 * src/scan-gram.l: When it starts with `%', complain about the
13476 whole directive, not just that `invalid character: %'.
13477
13478 2002-11-04 Akim Demaille <akim@epita.fr>
13479
13480 * Makefile.maint: Update from Autoconf.
13481 (update, cvs-update, po-update, do-po-update): New.
13482
13483 2002-11-04 Akim Demaille <akim@epita.fr>
13484
13485 * tests/glr-regr1.at (Badly Collapsed GLR States): Prototype yylex
13486 and yyerror.
13487 Have yyerror `use' its arguments.
13488 * tests/calc.at (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF
13489 returns true when location & yacc & pure & parse-param.
13490 (_AT_DATA_CALC_Y): Let yyerror ``use'' its arguments.
13491
13492 2002-11-04 Akim Demaille <akim@epita.fr>
13493
13494 * src/location.h (LOCATION_PRINT): Use quotearg slot 3 to avoid
13495 clashes.
13496 * src/scan-gram.l: Use [\'] instead of ['] to pacify
13497 font-lock-mode.
13498 Use complain_at.
13499 Use quote, not quote_n since LOCATION_PRINT no longer uses the
13500 slot 0.
13501
13502 2002-11-03 Paul Eggert <eggert@twinsun.com>
13503
13504 * src/reader.c (get_merge_function, grammar_current_rule_check):
13505 Use consistent diagnostics for reporting type name clashes.
13506 Quote the types with <>, for consistency with Yacc.
13507 * tests/input.at (Type Clashes): Adjust to diagnostic changes.
13508
13509 2002-11-03 Akim Demaille <akim@epita.fr>
13510
13511 * data/c.m4 (b4_identification, b4_user_args, b4_parse_param):
13512 New.
13513 * data/yacc.m4 (b4_pure_args, b4_Pure_args): New.
13514 (b4_parse_param): Remove.
13515 Use b4_identification.
13516 Propagate b4_pure_args where needed to pass them to yyerror.
13517 * data/glr.m4 (b4_parse_param): Remove.
13518 (b4_user_formals, b4_pure_args, b4_pure_formals, b4_lpure_args)
13519 (b4_lpure_formals): New.
13520 Use b4_identification.
13521 (YY_USER_FORMALS, YY_USER_ARGS): Remove, replaced by
13522 b4_user_formals and b4_user_args.
13523 (yyexpandGLRStack, yyFail, yyaddDeferredAction, yyglrShiftDefer)
13524 (yyreportAmbiguity): When using a pure parser, also need
13525 the location, and the parse-params.
13526 Adjust callers.
13527 (yyuserAction, yyglrShift, yyreportParseError, yyrecoverParseError):
13528 When using a pure parser, also need the parse-params.
13529 Adjust callers.
13530 * tests/calc.at: Test pure (%pure-parser) and absolutely pure
13531 (%pure-parser + %parse-param) LALR and GLR parsers.
13532 (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): New, define AT_PARAM_IF,
13533 AT_LOCATION_IF, AT_PURE_IF, AT_GLR_IF, AAT_PURE_AND_LOC_IF,
13534 AT_GLR_OR_PARAM_IF, AT_YYERROR_ARG_LOC_IF, AT_YYERROR_SEES_LOC_IF.
13535 (_AT_DATA_CALC_Y): Equip for purity of yyerror.
13536 (_AT_CHECK_CALC_ERROR): Use AT_YYERROR_SEES_LOC_IF.
13537 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Equip for yyerror purity.
13538 * doc/bison.texinfo: Untabify the whole file.
13539 (Parser Function): Document %parse-param, deprecate YYPARSE_PARAM.
13540 (Pure Calling): Document %lex-param, deprecate YYLEX_PARAM.
13541 (Error Reporting): Adjust to these new directives.
13542 Document %error-verbose, deprecate YYERROR_VERBOSE.
13543
13544 2002-11-03 Akim Demaille <akim@epita.fr>
13545
13546 * tests/calc.at: Change all the AT_CHECK_CALC_LALR and
13547 AT_CHECK_CALC_GLR invocations to use % directives, instead of
13548 command line options.
13549 * tests/cxx-type.at: Formatting changes.
13550
13551 2002-11-03 Paul Eggert <eggert@twinsun.com>
13552
13553 * src/scan-gram.l: Revamp to fix POSIX incompatibilities,
13554 to count columns correctly, and to check for invalid inputs.
13555
13556 Use mbsnwidth to count columns correctly. Account for tabs, too.
13557 Include mbswidth.h.
13558 (YY_USER_ACTION): Invoke extend_location rather than LOCATION_COLUMNS.
13559 (extend_location): New function.
13560 (YY_LINES): Remove.
13561
13562 Handle CRLF in C code rather than in Lex code.
13563 (YY_INPUT): New macro.
13564 (no_cr_read): New function.
13565
13566 Scan UCNs, even though we don't fully handle them yet.
13567 (convert_ucn_to_byte): New function.
13568
13569 Handle backslash-newline correctly in C code.
13570 (SC_LINE_COMMENT, SC_YACC_COMMENT): New states.
13571 (eols, blanks): Remove. YY_USER_ACTION now counts newlines etc.;
13572 all uses changed.
13573 (tag, splice): New EREs. Do not allow NUL or newline in tags.
13574 Use {splice} wherever C allows backslash-newline.
13575 YY_STEP after space, newline, vertical-tab.
13576 ("/*"): BEGIN SC_YACC_COMMENT, not yy_push_state (SC_COMMENT).
13577
13578 (letter, id): Don't assume ASCII; e.g., spell out a-z.
13579
13580 ({int}, handle_action_dollar, handle_action_at): Check for integer
13581 overflow.
13582
13583 (YY_STEP): Omit trailing semicolon, so that it's more like C.
13584
13585 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>): Allow \0 and \00
13586 as well as \000. Check for UCHAR_MAX, not 255.
13587 Allow \x with an arbitrary positive number of digits, as in C.
13588 Check for overflow here.
13589 Allow \? and UCNs, for compatibility with C.
13590
13591 (handle_symbol_code_dollar): Use quote_n slot 1 to avoid collision
13592 with quote slot used by complain_at.
13593
13594 * tests/input.at: Add tests for backslash-newline, m4 quotes
13595 in symbols, long literals, and funny escapes in strings.
13596
13597 * configure.ac (jm_PREREQ_MBSWIDTH): Add.
13598 * lib/Makefile.am (libbison_a_SOURCES): Add mbswidth.h, mbswidth.c.
13599 * lib/mbswidth.h, lib/mbswidth.c: New files, from GNU gettext.
13600 * m4/Makefile.am (EXTRA_DIST): Add mbswidth.m4.
13601 * m4/mbswidth.m4: New file, from GNU coreutils.
13602
13603 * doc/bison.texinfo (Grammar Outline): Document // comments.
13604 (Symbols): Document that trigraphs have no special meaning in Bison,
13605 nor is backslash-newline allowed.
13606 (Actions): Document that trigraphs have no special meaning.
13607
13608 * src/location.h (LOCATION_COLUMNS, LOCATION_LINES): Remove;
13609 no longer used.
13610
13611 2002-11-02 Paul Eggert <eggert@twinsun.com>
13612
13613 * src/reader.c: Don't include quote.h; not needed.
13614 (get_merge_function): Reword warning to be consistent with
13615 type clash diagnostic in grammar_current_rule_check.
13616
13617 * lib/quotearg.c (quotearg_buffer_restyled): Fix off-by-two
13618 bug in trigraph handling.
13619
13620 * src/output.c (prepare_symbols): When printing token names,
13621 escape "[" as "@<:@" and likewise for "]".
13622
13623 * src/system.h (errno): Remove declaration, as we are now
13624 assuming C89 or better, and C89 guarantees errno.
13625
13626 2002-10-30 Paul Eggert <eggert@twinsun.com>
13627
13628 * lib/bitset_stats.c (bitset_stats_read, bitset_stats_write):
13629 Check for close failures.
13630 * src/files.h (xfclose): Return void, not int, since it always
13631 returned zero.
13632 * src/files.c (xfclose): Likewise. Report I/O error if ferror
13633 indicates one.
13634 * src/output.c (output_skeleton): Use xfclose rather than fclose
13635 and ferror. xfclose now checks ferror.
13636
13637 * data/glr.c (YYLEFTMOST_STATE): Remove.
13638 (yyreportTree): Use a stack-based leftmost state. This avoids
13639 our continuing battles with bogus warnings about initializers.
13640
13641 2002-10-30 Akim Demaille <akim@epita.fr>
13642
13643 * src/system.h: Don't use #ifdef/#ifndef on HAVE_ values, only
13644 #if.
13645
13646 2002-10-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13647
13648 * tests/glr-regr1.at: New test for reported regressions.
13649 * tests/testsuite.at: Add glr-regr1.at test.
13650 * tests/Makefile.am: Add glr-regr1.at test.
13651
13652 2002-10-24 Paul Eggert <eggert@twinsun.com>
13653
13654 Version 1.75a.
13655
13656 * tests/calc.at (_AT_DATA_CALC_Y): Remove unused strcat declaration.
13657 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Include stdlib.h, since
13658 we use malloc. Don't assume 'A' through 'Z' are contiguous.
13659 Don't assume strdup exists; POSIX says its an XSI extension.
13660 Check for buffer overflow on input.
13661
13662 2002-10-24 Akim Demaille <akim@epita.fr>
13663
13664 * src/output.c (output_skeleton): Don't disable M4sugar comments
13665 too soon: it results in comments being expanded.
13666 * data/yacc.c, data/glr.c, data/lalr1.cc: Do it right before the
13667 first output.
13668
13669 2002-10-24 Akim Demaille <akim@epita.fr>
13670
13671 * data/yacc.c (m4_int_type): New.
13672 * data/c.m4 (m4_int_type): Don't use yysigned_char, but `signed
13673 char' as only yacc.c wants K&R portability.
13674 * data/glr.c (yysigned_char): Remove.
13675 * data/lalr1.cc: Rename the trailing b4_name as b4_parser_class_name.
13676 Reported by Quoc Peyrot.
13677
13678 2002-10-23 Paul Eggert <eggert@twinsun.com>
13679
13680 * src/main.c (main): With --trace=time, report times even if a
13681 non-fatal error occurs. Formerly, the times were reported in some
13682 such cases but not in others.
13683 * src/reader.c (reader): Just return if a complaint has been issued,
13684 instead of exiting, so that 'main' can report times.
13685
13686 2002-10-22 Akim Demaille <akim@epita.fr>
13687
13688 * src/system.h: Include sys/types.
13689 Reported by Bert Deknuydt.
13690
13691 2002-10-23 Paul Eggert <eggert@twinsun.com>
13692
13693 * configure.ac (AC_PROG_LEX): Use instead of AM_PROG_LEX.
13694 Suggested by Art Haas.
13695
13696 2002-10-22 Paul Eggert <eggert@twinsun.com>
13697
13698 * src/complain.c (exit) [! (STDC_HEADERS || _LIBC)]: Remove exit
13699 decl; not needed any more.
13700 * src/main.c (main): Use return to exit, undoing yesterday's change.
13701 The last OS that we could find where this wouldn't work is
13702 SunOS 3.5, and that's too old to worry about now.
13703
13704 * data/glr.c (struct yyltype): Define members even when not
13705 doing locations. This is more consistent with yacc.c, and it
13706 works around the following bug reports:
13707 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00106.html
13708 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00111.html
13709
13710 * doc/bison.texinfo: Minor spelling and typographical fixes. Use
13711 @acronym consistently. Standardize on "Yacc" instead of "YACC",
13712 "Algol" instead of "ALGOL". Give a bit more history about BNF.
13713
13714 2002-10-22 Akim Demaille <akim@epita.fr>
13715
13716 * data/README: New.
13717
13718 2002-10-21 Paul Eggert <eggert@twinsun.com>
13719
13720 Be consistent about 'bool'; the old code used an enum in one
13721 module and an int in another, and this violates the C standard.
13722 * m4/stdbool.m4: New file, from coreutils 4.5.3.
13723 * configure.ac (AC_HEADER_STDBOOL): Add.
13724 * m4/Makefile.am (EXTRA_DIST): Add stdbool.m4.
13725 * src/muscle_tab.c (hash_compare_muscles): (a ? FALSE : TRUE) -> (! a)
13726 * src/symtab.c (hash_compare_symbol_t): Likewise.
13727 * src/system.h (bool, false, true): Use a definition consistent
13728 with ../lib/hash.c. All uses changed.
13729
13730 * src/complain.c (warning_issued): Renamed from warn_message_count,
13731 so that we needn't worry about integer overflow (!).
13732 Now of type bool. All uses changed.
13733 (complaint_issued): Renamed from complain_message_count; likewise.
13734
13735 * src/main.c (main): Use exit to exit with failure.
13736
13737 * src/complain.c (fatal_at, fatal): Use EXIT_FAILURE and EXIT_SUCCESS
13738 rather than 1 and 0.
13739 * src/main.c (main): Likewise.
13740 * src/getargs.c (getargs): Likewise.
13741 * src/reader.c (reader): Likewise.
13742
13743 * src/getarg.c (getargs): Remove duplicate code for
13744 "Try `bison --help'".
13745
13746 * src/files.c (xfopen, xfclose): Use EXIT_FAILURE rather than 2.
13747 What was that "2" for?
13748
13749 * src/complain.h (fatal, fatal_at): Add __attribute__((__noreturn__)).
13750 * src/getargs.c (usage): Likewise.
13751
13752 * src/getargs.c (getargs): When there are too few operands, report
13753 the last one. When there are too many, report the first extra
13754 one. This is how diffutils does it.
13755
13756 2002-10-20 Paul Eggert <eggert@twinsun.com>
13757
13758 Remove K&R vestiges.
13759 * configure.ac (AC_C_CONST, AM_C_PROTOTYPES): Remove.
13760 * src/complain.c (VA_START): Remove. Assume prototypes.
13761 (vfprintf) [! (HAVE_VPRINTF || defined vfprintf)]: New macro.
13762 (private_strerror, warn_at, warn, complain_at, complain, fatal_at,
13763 fatal): Assume prototypes.
13764 * src/complain.h: Assume prototypes.
13765 * src/system.h (PARAMS): Remove.
13766 Include <limits.h> unconditionally, since it's guaranteeed even
13767 for a freestanding C89 compiler.
13768 (SHRT_MIN, SHRT_MAX): Remove, since C89 guarantees them.
13769 * src/vmsgetargs.c (getargs, cli_present, cli_get_value): Prototype.
13770
13771 2002-10-20 Akim Demaille <akim@epita.fr>
13772
13773 * src/muscle_tab.c (muscle_grow): Remove trailing debugging code.
13774 * data/glr.c (YY_USER_FORMALS, YY_USER_ARGS): New.
13775 (yyuserAction, yydoAction, yyglrReduce, yyresolveValue)
13776 (yyresolveStates, yyresolveAction, yyresolveStack)
13777 (yyprocessOneStack): Use them.
13778 (yy_reduce_print): New.
13779 * tests/calc.at (_AT_DATA_CALC_Y): Exercise %parse-param.
13780
13781 2002-10-20 Akim Demaille <akim@epita.fr>
13782
13783 * data/c.m4 (b4_c_ansi_args): Recognize functions with no
13784 arguments and output `void'.
13785 (b4_c_function): Rename as...
13786 (b4_c_function_def): this.
13787 (b4_c_function_decl, b4_c_ansi_function_def)
13788 (b4_c_ansi_function_decl): New.
13789 Change the interpretation of the arguments: before `int, foo', now
13790 `int foo, foo'.
13791 * data/yacc.c (yyparse): Prototype and define thanks to these.
13792 Adjust b4_c_function_def uses.
13793 * data/glr.c (yyparse): Likewise, but ANSI only.
13794
13795 2002-10-20 Akim Demaille <akim@epita.fr>
13796
13797 * src/output.c (prepare): Move the definition of `tokens_number',
13798 `nterms_number', `undef_token_number', `user_token_number_max'
13799 to...
13800 (prepare_tokens): Here.
13801 (prepare_tokens): Rename as...
13802 (prepare_symbols): this.
13803 (prepare): Move the definition of `rules_number' to...
13804 (prepare_rules): here.
13805 (prepare): Move the definition of `last', `final_state_number',
13806 `states_number' to...
13807 (prepare_states): here.
13808 * data/yacc.c, data/lalr1.cc, data/glr.c: Normalize `>' into `<'.
13809
13810 2002-10-20 Akim Demaille <akim@epita.fr>
13811
13812 * src/tables.h, src/tables.c, src/output.c: Comment changes.
13813
13814 2002-10-20 Akim Demaille <akim@epita.fr>
13815
13816 * data/yacc.c, data/yacc.c (b4_location_if, b4_pure_if): Move to...
13817 * data/c.m4: here.
13818
13819 2002-10-20 Akim Demaille <akim@epita.fr>
13820
13821 * src/output.c (prepare): Use MUSCLE_INSERT_STRING.
13822 * src/muscle_tab.c (muscle_pair_list_grow): Rename `val as
13823 `pair'.
13824 (muscle_init): Move the `b4_ltype', `b4_maxdepth', `b4_initdepth',
13825 `name' to...
13826 * data/glr.c, data/lalr1.cc, data/yacc.c (b4_location_type)
13827 (b4_stack_depth_init, b4_stack_depth_max, b4_parser_class_name):
13828 These.
13829
13830 2002-10-19 Paul Eggert <eggert@twinsun.com>
13831
13832 Do not create a temporary file, as that involves security and
13833 cleanup headaches. Instead, use a pair of pipes.
13834 Derived from a suggestion by Florian Krohm.
13835 * lib/subpipe.c, lib/subpipe.h, m4/subpipe.m4: New files.
13836 * lib/mkstemp.c, lib/readpipe.c, lib/tempname.c, m4/mkstemp.m4: Remove.
13837 * configure.ac (UTILS_FUNC_MKSTEMP, jm_PREREQ_TEMPNAME): Remove.
13838 (BISON_PREREQ_SUBPIPE): Add.
13839 * lib/Makefile.am (libbison_a_SOURCES): Remove readpipe.c.
13840 Add subpipe.h, subpipe.c.
13841 * m4/Makefile.am (EXTRA_DIST): Remove mkstemp.m4. Add subpipe.m4.
13842 * po/POTFILES.in: Add lib/subpipe.c.
13843 * src/output.c: Include "subpipe.h".
13844 (m4_invoke): Remove decl.
13845 (scan_skel): New decl.
13846 (output_skeleton): Use pipe rather than temporary file for m4 input.
13847 Check that m4sugar.m4 is readable, to avoid deadlock.
13848 Check for pipe I/O error.
13849 * src/scan-skel.l (readpipe): Remove decl.
13850 (scan_skel): New function, to be used in place of m4_invoke.
13851 Read from stream rather than file.
13852
13853 * lib/timevar.c (TICKS_TO_MSEC, CLOCKS_TO_MSEC): Do not cast to
13854 float, as this generates a warning on Solaris 8 + GCC 3.2 with
13855 --enable-gcc-warnings. Instead, divide into 1.0 rather than 1;
13856 this generates a more-accurate value anyway.
13857
13858 * lib/timevar.c (timervar_accumulate): Rename locals to
13859 avoid confusion with similarly-named more-global.
13860 * src/muscle_tab.c (muscle_pair_list_grow): Likewise.
13861
13862 * src/output.c (prepare): Use xstrdup to convert char const *
13863 to char *, to avoid GCC warning.
13864
13865 2002-10-19 Akim Demaille <akim@epita.fr>
13866
13867 * tests/calc.at (_AT_DATA_CALC_Y): Define VAL, LOC, LEX_FORMALS,
13868 LEX_PRE_FORMALS, LEX_ARGS, LEX_PRE_ARGS, USE_LEX_ARGS.
13869 Use them to have `calc.y' ready for %pure-parser.
13870 * data/yacc.c (YYLEX): Pass a yylex return type to
13871 b4_c_function_call.
13872
13873 2002-10-19 Akim Demaille <akim@epita.fr>
13874
13875 Prototype support of %lex-param and %parse-param.
13876
13877 * src/parse-gram.y: Add the definition of the %lex-param and
13878 %parse-param tokens, plus their rules.
13879 Drop the `_' version of %glr-parser.
13880 Add the "," token.
13881 * src/scan-gram.l (INITIAL): Scan them.
13882 * src/muscle_tab.c: Comment changes.
13883 (muscle_insert, muscle_find): Rename `pair' as `probe'.
13884 * src/muscle_tab.h (MUSCLE_INSERT_PREFIX): Remove unused.
13885 (muscle_entry_s): The `value' member is no longer const.
13886 Adjust all dependencies.
13887 * src/muscle_tab.c (muscle_init): Adjust: use
13888 MUSCLE_INSERT_STRING.
13889 Initialize the obstack earlier.
13890 * src/muscle_tab.h, src/muscle_tab.c (muscle_grow)
13891 (muscle_pair_list_grow): New.
13892 * data/c.m4 (b4_c_function_call, b4_c_args): New.
13893 * data/yacc.c (YYLEX): Use b4_c_function_call to honor %lex-param.
13894 * tests/calc.at: Use %locations, not --locations.
13895 (AT_CHECK_CALC_GLR): Use %glr-parser, not %glr_parser.
13896
13897 2002-10-19 Akim Demaille <akim@epita.fr>
13898
13899 * src/getargs.c (usage): Take status as argument and exit
13900 accordingly.
13901 Report the traditional `Try ... --help' message when status != 0.
13902 (usage, version): Don't take a FILE * as arg, it is pointless.
13903 (getargs): When there is an incorrect number of arguments, make it
13904 an error, and report it GNUlically thanks to `usage ()'.
13905
13906 2002-10-18 Paul Eggert <eggert@twinsun.com>
13907
13908 * data/glr.c (yyreportParseError): Don't assume that sprintf
13909 yields the length of the printed string, as this is not true
13910 on SunOS 4.1.4. Reported by Peter Klein.
13911
13912 * tests/calc.at (_AT_DATA_CALC_Y): #undef memcmp and realloc.
13913 * tests/conflicts.at (%nonassoc and eof): Likewise.
13914 Fixes SunOS 4.1.4 test failure reported by Peter Klein.
13915
13916 2002-10-17 Akim Demaille <akim@epita.fr>
13917
13918 * src/getargs.h (trace_e): Add trace_scan, and trace_parse.
13919 * src/getargs.c (trace_types, trace_args): Adjust.
13920 * src/reader.c (grammar_current_rule_prec_set)
13921 (grammar_current_rule_dprec_set, grammar_current_rule_merge_set):
13922 Standardize error messages.
13923 And s/@prec/%prec/!
13924 (reader): Use trace_flag to enable scanner/parser debugging,
13925 instead of an adhoc scheme.
13926 * src/scan-gram.l: Remove trailing debugging code.
13927
13928 2002-10-16 Paul Eggert <eggert@twinsun.com>
13929
13930 * src/muscle_tab.h (MUSCLE_TAB_H_): Was misspelled as
13931 MUSCLE_TAB_H.
13932
13933 * NEWS: Officially drop support for building Bison with K&R C,
13934 since it didn't work anyway and it's not worth worrying about.
13935 * Makefile.maint (wget_files): Remove ansi2knr.c.
13936 (ansi2knr.c-url_prefix): Remove.
13937 * lib/.cvsignore: Remove ansi2knr, ansi2knr.*.
13938 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
13939 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
13940
13941 2002-10-15 Paul Eggert <eggert@twinsun.com>
13942
13943 Stop using the "enum_" trick for K&R-style function definitions;
13944 it confused me, and I was the author! Instead, assume that people
13945 who want to use K&R C compilers (when using these modules in GCC,
13946 perhaps?) will run ansi2knr.
13947
13948 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): Remove.
13949 All uses of "enum_" changed to "enum ".
13950 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
13951 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
13952
13953 * lib/abitset.c (abitset_and, abitset_and_cmp, abitset_and_or,
13954 abitset_and_or_cmp, abitset_andn, abitset_andn_cmp,
13955 abitset_andn_or, abitset_andn_or_cmp, abitset_bytes, abitset_copy,
13956 abitset_copy1, abitset_disjoint_p, abitset_empty_p,
13957 abitset_equal_p, abitset_init, abitset_list, abitset_list_reverse,
13958 abitset_not, abitset_ones, abitset_or, abitset_or_and,
13959 abitset_or_and_cmp, abitset_or_cmp, abitset_reset, abitset_set,
13960 abitset_size, abitset_small_list, abitset_subset_p, abitset_test,
13961 abitset_unused_clear, abitset_xor, abitset_xor_cmp, abitset_zero):
13962 Use function prototypes; this removes the need for declaring
13963 static functions simply to provide their prototypes.
13964 * lib/bitset.c (bitset_alloc, bitset_and_or_, bitset_and_or_cmp_,
13965 bitset_andn_or_, bitset_andn_or_cmp_, bitset_bytes, bitset_copy_,
13966 bitset_count_, bitset_create, bitset_dump, bitset_first,
13967 bitset_free, bitset_init, bitset_last, bitset_next,
13968 bitset_obstack_alloc, bitset_obstack_free, bitset_only_set_p,
13969 bitset_op4_cmp, bitset_or_and_, bitset_or_and_cmp_, bitset_prev,
13970 bitset_print, bitset_release_memory, bitset_toggle_,
13971 bitset_type_choose, bitset_type_get, bitset_type_name_get,
13972 debug_bitset): Likewise.
13973 * lib/bitset.h (bitset_set, bitset_reset, bitset_test): Likewise.
13974 * lib/bitset_stats.c (bitset_log_histogram_print,
13975 bitset_percent_histogram_print, bitset_stats_and,
13976 bitset_stats_and_cmp, bitset_stats_and_or,
13977 bitset_stats_and_or_cmp, bitset_stats_andn, bitset_stats_andn_cmp,
13978 bitset_stats_andn_or, bitset_stats_andn_or_cmp, bitset_stats_copy,
13979 bitset_stats_count, bitset_stats_disable, bitset_stats_disjoint_p,
13980 bitset_stats_dump, bitset_stats_empty_p, bitset_stats_enable,
13981 bitset_stats_equal_p, bitset_stats_free, bitset_stats_init,
13982 bitset_stats_list, bitset_stats_list_reverse, bitset_stats_not,
13983 bitset_stats_ones, bitset_stats_or, bitset_stats_or_and,
13984 bitset_stats_or_and_cmp, bitset_stats_or_cmp, bitset_stats_print,
13985 bitset_stats_print_1, bitset_stats_read, bitset_stats_reset,
13986 bitset_stats_set, bitset_stats_size, bitset_stats_subset_p,
13987 bitset_stats_test, bitset_stats_toggle, bitset_stats_type_get,
13988 bitset_stats_write, bitset_stats_xor, bitset_stats_xor_cmp,
13989 bitset_stats_zero): Likewise.
13990 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
13991 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
13992 bitsetv_dump, debug_bitsetv): Likewise.
13993 * lib/ebitset.c (ebitset_and, ebitset_and_cmp, ebitset_andn,
13994 ebitset_andn_cmp, ebitset_bytes, ebitset_copy, ebitset_copy_,
13995 ebitset_copy_cmp, ebitset_disjoint_p, ebitset_elt_add,
13996 ebitset_elt_alloc, ebitset_elt_calloc, ebitset_elt_find,
13997 ebitset_elt_free, ebitset_elt_last, ebitset_elt_remove,
13998 ebitset_elt_zero_p, ebitset_elts_grow, ebitset_empty_p,
13999 ebitset_equal_p, ebitset_free, ebitset_init, ebitset_list,
14000 ebitset_list_reverse, ebitset_not, ebitset_ones, ebitset_op3_cmp,
14001 ebitset_or, ebitset_or_cmp, ebitset_release_memory, ebitset_reset,
14002 ebitset_set, ebitset_size, ebitset_subset_p, ebitset_test,
14003 ebitset_weed, ebitset_xor, ebitset_xor_cmp, ebitset_zero):
14004 Likewise.
14005 * lib/lbitset.c (debug_lbitset, lbitset_and, lbitset_and_cmp,
14006 lbitset_andn, lbitset_andn_cmp, lbitset_bytes, lbitset_copy,
14007 lbitset_copy_cmp, lbitset_disjoint_p, lbitset_elt_alloc,
14008 lbitset_elt_calloc, lbitset_elt_find, lbitset_elt_free,
14009 lbitset_elt_link, lbitset_elt_unlink, lbitset_elt_zero_p,
14010 lbitset_empty_p, lbitset_equal_p, lbitset_free, lbitset_init,
14011 lbitset_list, lbitset_list_reverse, lbitset_not, lbitset_ones,
14012 lbitset_op3_cmp, lbitset_or, lbitset_or_cmp, lbitset_prune,
14013 lbitset_release_memory, lbitset_reset, lbitset_set, lbitset_size,
14014 lbitset_subset_p, lbitset_test, lbitset_weed, lbitset_xor,
14015 lbitset_xor_cmp, lbitset_zero): Likewise.
14016
14017 2002-10-14 Akim Demaille <akim@epita.fr>
14018
14019 Version 1.75.
14020
14021 2002-10-14 Akim Demaille <akim@epita.fr>
14022
14023 * tests/Makefile.am (maintainer-check-posix): New.
14024
14025 2002-10-14 Akim Demaille <akim@epita.fr>
14026
14027 * data/glr.c [YYDEBUG] (YYLEFTMOST_STATE): Initialize the yyloc
14028 member.
14029
14030 2002-10-14 Akim Demaille <akim@epita.fr>
14031
14032 * src/tables.c (table_ninf_remap): base -> tab.
14033 Reported by Matt Rosing.
14034
14035 2002-10-14 Paul Eggert <eggert@twinsun.com>
14036
14037 * tests/action.at, tests/calc.at, tests/conflicts.at,
14038 tests/cxx-type.at, tests/headers.at, tests/input.at,
14039 tests/regression.at, tests/synclines.at, tests/torture.at:
14040 Say "bison -o foo.c foo.y", not "bison foo.y -o foo.c",
14041 so that the tests still work even if POSIXLY_CORRECT is set.
14042 * doc/bison.texinfo (Rpcalc Compile, Invocation): Likewise.
14043
14044 * data/c.m4 (b4_int_type): Use yysigned_char instead of signed char,
14045 for portability to K&R hosts. Fix typo: signed char is guaranteed
14046 only to 127, not to 128.
14047 * data/glr.c (yysigned_char): New type.
14048 * data/yacc.c (yysigned_char): Likewise.
14049 * tests/regression.at (Web2c Actions): signed char -> yysigned_char.
14050
14051 2002-10-13 Paul Eggert <eggert@twinsun.com>
14052
14053 * data/yacc.c (yyparse): Rewrite to avoid "comparison is always
14054 true due to limited range of data type" warning from GCC.
14055
14056 * data/c.m4 (b4_token_defines): Protect against double-inclusion
14057 by wrapping enum yytokentype's definition inside #ifndef
14058 YYTOKENTYPE. This undoes a bug I introduced on 2002-10-12.
14059
14060 2002-10-13 Akim Demaille <akim@epita.fr>
14061
14062 * data/glr.c (yyglrShiftDefer, yyaddDeferredAction, yydoAction):
14063 Un yy- yyrhs to avoid the name clash with the global YYRHS.
14064
14065 2002-10-13 Akim Demaille <akim@epita.fr>
14066
14067 * Makefile.maint: Update from Autoconf 2.54.
14068 * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Remove, shipped with 2.54.
14069
14070 2002-10-13 Akim Demaille <akim@epita.fr>
14071
14072 * src/print.c (print_state): Separate the list of solved conflicts
14073 from the other items.
14074 * tests/conflicts.at (Resolved SR Conflicts): Adjust.
14075
14076 2002-10-13 Akim Demaille <akim@epita.fr>
14077
14078 Let nondeterministic skeletons be usable with deterministic
14079 tables.
14080
14081 With the patch, GAWK compiled by GCC without -O2 passes its test
14082 suite using a GLR parser driven by LALR tables. It fails with -O2
14083 because `struct stat' gives two different answers on my machine:
14084 88 (definition of an auto var) and later 96 (memset on this var).
14085 Hence the stack is badly corrumpted. The headers inclusion is to
14086 blame: if I move the awk.h inclusion before GLR's system header
14087 inclusion, the two struct stat have the same size.
14088
14089 * src/tables.c (pack_table): Always create conflict_table.
14090 (token_actions): Always create conflict_list.
14091 * data/glr.c (YYFLAG): Remove, unused.
14092
14093 2002-10-13 Akim Demaille <akim@epita.fr>
14094
14095 * configure.ac (AC_GNU_SOURCE): Use it instead of hand written code.
14096 (O0FLAGS): New.
14097 (VALGRIND, GXX): New.
14098 * tests/atlocal.in (CFLAGS): Use O0FLAGS.
14099 * tests/bison.in: Run $PREBISON a pre-command.
14100 * tests/Makefile.am (maintainer-check, maintainer-check-valgrind)
14101 (maintainer-check-g++): New.
14102 * Makefile.am (maintainer-check): New.
14103
14104 2002-10-13 Akim Demaille <akim@epita.fr>
14105
14106 * data/glr.c: Formatting changes.
14107 Tweak some trace messages to match yacc.c's.
14108
14109 2002-10-13 Akim Demaille <akim@epita.fr>
14110
14111 GLR parsers sometimes raise parse errors instead of performing the
14112 default reduction.
14113 Reported by Charles-Henry de Boysson.
14114
14115 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Don't
14116 check the length of the traces when %glr.
14117 (_AT_CHECK_CALC_ERROR): Also skip `^Stack' lines, coming from
14118 GLR's traces.
14119 (AT_CHECK_CALC_LALR, AT_CHECK_CALC_GLR): New.
14120 Test GLR parsers.
14121 * data/glr.c (YYLEFTMOST_STATE): Fix its value.
14122 (yyltype): Remove the yy prefix from the member names.
14123 (yytable): Complete its comment.
14124 (yygetLRActions): Map error action number from YYTABLE from
14125 YYTABLE_NINF to 0.
14126 (yyisErrorAction): No longer compare YYACTION to YYPACT_NINF
14127 (which was a bug: it should have been YYTABEL_NINF, and yet it was
14128 not satisfying as we could compare an YYACTION computed from
14129 YYDEFACT to YYTABLE_NINF although they are unrelated): 0 is the
14130 only value for error actions.
14131 (yyreportParseError): In verbose parse error messages, don't issue
14132 `error' in the list of expected tokens.
14133 * data/yacc.c (yyparse) <yybackup>: Rewrite the decoding of the
14134 next action to perform to match glr.c's decoding.
14135 (yytable): Complete its comment.
14136
14137 2002-10-13 Paul Eggert <eggert@twinsun.com>
14138
14139 Fix problem reported by Henrik Grubbstroem in
14140 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00098.html>:
14141 "nonterm: { $$ = 123; } { $$ = $1; };" was wrongly rejected,
14142 because the Bison parser reads the second action before reducing
14143 the first one.
14144 * src/scan-gram.l (rule_length): New static var.
14145 Use it to keep track of the rule length in the scanner, since
14146 we can't expect the parser to be in lock-step sync with the scanner.
14147 (handle_action_dollar, handle_action_at): Use this var.
14148 * tests/actions.at (Exotic Dollars): Test for the problem.
14149
14150 2002-10-12 Paul Eggert <eggert@twinsun.com>
14151
14152 * lib/timevar.c [! IN_GCC && HAVE_SYS_TIME_H]: Include <sys/time.h>.
14153 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): Check for <sys/time.h>.
14154 Include <sys/time.h> when checking for clock_t and struct tms.
14155 Use same include order as source.
14156 This is for the SunOS 4.1.4 porting bug reported by Peter Klein in
14157 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00016.html>.
14158
14159 * lib/timevar.c: Update copyright date and clarify comments.
14160 (get_time) [IN_GCC]: Keep the GCC version for reference.
14161
14162 * lib/timevar.c, lib/timevar.h, lib/timevar.def: Import
14163 GCC version as of today, then merge Bison's changes.
14164 Change "GCC" to "Bison" in copyright notice. timevar.def's
14165 author is Akim, so change that too.
14166
14167 * src/reader.c (grammar_current_rule_check):
14168 Don't worry about the default action if $$ is untyped.
14169 Prevents bogus warnings reported by Jim Gifford in
14170 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00015.html>.
14171
14172 * data/c.m4 (b4_token_enum): Do not define YYTOKENTYPE.
14173 * data/glr.c, data/lalr1.cc, data/yacc.c:
14174 Output token definitions before the first part of user declarations.
14175 Fixes compatibility problem reported by Jim Gifford for kbd in
14176 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00014.html>.
14177
14178 2002-10-11 Paul Eggert <eggert@twinsun.com>
14179
14180 * data/yacc.c (yyreport_parse_error): Remove, putting its body into...
14181 (yyparse): here. This undoes some of the 2002-07-25 change.
14182 Compatibility problem reported by Ralf S. Engelschall with
14183 OSSP cfg <http://www.ossp.org/pkg/lib/cfg/>.
14184
14185 2002-10-11 Akim Demaille <akim@epita.fr>
14186
14187 * tests/regression.at Characters Escapes): New.
14188 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Accept \' in strings and
14189 characters.
14190 Reported by Jan Nieuwenhuizen.
14191
14192 2002-10-11 Akim Demaille <akim@epita.fr>
14193
14194 * po/id.po: New.
14195
14196 2002-10-10 Paul Eggert <eggert@twinsun.com>
14197
14198 Portability fixes for bitsets; this also avoids several GCC
14199 warnings.
14200
14201 * lib/abitset.c: Include <stddef.h>, for offsetof.
14202 * lib/lbitset.c: Likewise.
14203
14204 * lib/abitset.c (abitset_bytes): Return a size that is aligned
14205 properly for vectors of objects. Do not assume that adding a
14206 header size to a multiple of a word size yields a value that is
14207 properly aligned for the whole union.
14208 * lib/bitsetv.c (bitsetv_alloc): Likewise.
14209
14210 * lib/bitset_stats.c (bitset_stats_bytes): Adjust to new,
14211 unique names for structures.
14212 * lib/ebitset.c (ebitset_bytes): Likewise.
14213 * lib/lbitset.c (lbitset_bytes): Likewise.
14214
14215 * lib/abitset.c (abitset_ones, abitset_zero, abitset_empty_p,
14216 abitset_copy1, abitset_not, abitset_equal_p, abitset_subset_p,
14217 abitset_disjoint_p, abitset_and, abitset_and_cmp, abitset_andn,
14218 abitset_andn_cmp, abitset_or, abitset_or_cmp, abitset_xor,
14219 abitset_xor_cmp, abitset_and_or, abitset_and_or_cmp,
14220 abitset_andn_or, abitset_andn_or_cmp, abitset_or_and,
14221 abitset_or_and_cmp, abitset_copy): Supply prototype decls,
14222 to improve the type-checking that GCC can do.
14223 * lib/bitset.c (bitset_op4_cmp): Likewise.
14224 * lib/bitset_stats.c (bitset_stats_count,
14225 bitset_stats_empty_p, bitset_stats_ones, bitset_stats_zero,
14226 bitset_stats_copy, bitset_stats_disjoint_p,
14227 bitset_stats_equal_p, bitset_stats_not, bitset_stats_subset_p,
14228 bitset_stats_and, bitset_stats_and_cmp, bitset_stats_andn,
14229 bitset_stats_andn_cmp, bitset_stats_or, bitset_stats_or_cmp,
14230 bitset_stats_xor, bitset_stats_xor_cmp, bitset_stats_and_or,
14231 bitset_stats_and_or_cmp, bitset_stats_andn_or,
14232 bitset_stats_andn_or_cmp, bitset_stats_or_and,
14233 bitset_stats_or_and_cmp): Likewise.
14234 * lib/lbitset.c (lbitset_and, lbitset_and_cmp, lbitset_andn,
14235 lbitset_andn_cmp, lbitset_or, lbitset_or_cmp, lbitset_xor,
14236 lbitset_xor_cmp, lbitset_empty_p, lbitset_ones, lbitset_not,
14237 lbitset_subset_p, lbitset_disjoint_p, debug_lbitset): Likewise.
14238
14239 * lib/abitset.h: Include bitset.h, not bbitset.h.
14240 * lib/ebitset.h: Likewise.
14241 * lib/lbitset.h: Likewise.
14242
14243 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): New types.
14244 All instances of parameters of type enum bitset_opts are now of
14245 type enum_bitset_opts, to conform to the C Standard, and similarly
14246 for enum_bitset_type.
14247 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
14248 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
14249
14250 Do not use "struct bitset_struct" to mean different things in
14251 different modules. Not only is this confusing, it violates
14252 the C Standard, which requires that structure types in different
14253 modules must be compatible if one is to be passed to the other.
14254 * lib/bbitset.h (bitset): Now points to a union, not to a struct.
14255 All instances of "struct bitset_struct *" replaced with "bitset".
14256 * lib/bitset.h (struct bitset_struct): Remove, replacing with....
14257 (union bitset_union, struct abitset_struct, struct ebitset_struct,
14258 struct lbitset_struct, struct bitset_stats_struct): New types.
14259 All uses of struct bitset_struct changed to union bitset_union,
14260 etc.
14261 * lib/abitset.c (struct abitset_struct, abitset,
14262 struct bitset_struct): Remove.
14263 * lib/bitset_stats.c (struct bitset_stats_struct, bitset_stats,
14264 struct bitset_struct): Remove.
14265 * lib/ebitset.c (struct ebitset_struct, ebitset, struct
14266 bitset_struct): Remove.
14267 * lib/lbitset.c (struct lbitset_struct, lbitset, bitset_struct):
14268 Likewise.
14269
14270 Do not call a function of type T using a call that assumes the
14271 function is of a different type U. Standard C requires that a
14272 function must be called with a type that is compatible with its
14273 definition.
14274 * lib/bbitset.h (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
14275 New decls.
14276 * lib/bitset.c (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
14277 New functions.
14278 * lib/ebitset.c (PFV): Remove.
14279 * lib/lbitset.c (PFV): Likewise.
14280 * lib/ebitset.c (ebitset_and, ebitset_andn, ebitset_or,
14281 ebitset_xor, ebitset_copy, ebitset_ones, ebitset_empty_p): New
14282 decls.
14283 (ebitset_and, ebitset_andn, ebitset_or, ebitset_xor): New functions.
14284 (ebitset_vtable): Use them.
14285 * lib/lbitset.c (lbitset_and, lbitset_andn, lbitset_or,
14286 lbitset_xor): New functions.
14287 (lbitset_vtable): Use them.
14288
14289 * lib/bitset.h (bitset_next, bitset_prev, bitset_only_set_p):
14290 Declare.
14291
14292 * lib/bitsetv.c (bitsetv_alloc): Add a cast to (void *) to avoid a
14293 GCC warning.
14294 * lib/lbitset.c (LBITSET_CURRENT1): Likewise.
14295 Use offsetof, for simplicity.
14296
14297 2002-10-06 Paul Eggert <eggert@twinsun.com>
14298
14299 * lib/bitset.h (bitset_reset): Do not assume that bitset_word is
14300 the same width as int. This reapplies a hunk of the 2002-08-12 patch
14301 <http://lists.gnu.org/archive/html/bison-patches/2002-08/msg00007.html>,
14302 which was inadvertently undone by the 2002-09-30 patch.
14303 * lib/lbitset.c (debug_lbitset): Do not assume that bitset_word is
14304 the same width as int.
14305
14306 2002-10-04 Paul Eggert <eggert@twinsun.com>
14307
14308 Version 1.50.
14309
14310 * configure.ac (AC_INIT), NEWS: Increment version number.
14311
14312 * doc/bison.texinfo: Minor spelling, grammar, and white space
14313 fixes.
14314 (Symbols): Mention that any negative value returned from yylex
14315 signifies end-of-input. Warn about negative chars. Mention
14316 the portable Standard C character set.
14317
14318 The GNU coding standard says CFLAGS and YFLAGS are reserved
14319 for the installer to set.
14320 * lib/Makefile.am (AM_CFLAGS): Renamed from CFLAGS.
14321 * src/Makefile.am (AM_CFLAGS): Likewise.
14322 (AM_YFLAGS): Renamed from YFLAGS.
14323
14324 Fix some MAX and MIN problems.
14325 * src/gram.h (ITEM_NUMBER_MIN): MIN_MAX -> INT_MIN.
14326 * src/lalr.h (GOTO_NUMBER_MAX): INT_MAX -> SHRT_MAX.
14327 * src/symtab.h (SYMBOL_NUMBER_MAX): New macro.
14328 * src/reader.c (reader): Use it.
14329
14330 * tests/regression.at (Braces parsing): Use grep, not fgrep, as
14331 POSIX 1003.1-2001 has removed fgrep.
14332
14333 2002-10-04 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
14334
14335 * lib/bbitset.h (BITSET_WINDEX_MAX): Redefine so that it cannot be
14336 interpreted as signed.
14337 * lib/ebitset.c (ebitset_list): Fix bug.
14338
14339 2002-10-01 Paul Eggert <eggert@twinsun.com>
14340
14341 More fixes for 64-bit hosts and large bitsets.
14342
14343 * lib/abitset.c (struct abitset_struct.n_bits, abitset_small_list,
14344 abitset_size, abitset_list, abitset_list_reverse, abitset_list):
14345 Use bitset_bindex, not int or unsigned int or size_t, to count bits.
14346 * lib/bbitset.h (struct bitset_vtable.size, struct bitset_vtable.count,
14347 struct bitset_vtable.list, struct bitset_vtable.list_reverse,
14348 bitset_count_, bitset_next, bitset_prev, bitset_first, bitset_last,
14349 bitset_count_): Likewise.
14350 * lib/bitset.h (bitset_iterator.num, bitset_iterator.i,
14351 bitset_first, bitset_last): Likewise.
14352 * lib/bitset_stats.c (bitset_stats_size, bitset_stats_list,
14353 bitset_stats_list_reverse, bitset_stats_size,
14354 bitset_stats_count, bitset_stats_list, bitset_stat_list_reverse):
14355 Likewise.
14356 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
14357 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
14358 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
14359 bitsetv_reflexive_transitive_closure): Likewise.
14360 * lib/bitsetv.h (bitsetv_alloc, bitsetv_create): Likewise.
14361 * lib/ebitset.c (ebitset_size, ebitset_list, ebitset_list_reverse):
14362 Likewise.
14363 * lib/lbitset.c (lbitset_size, lbitset_list, lbitset_list_merge):
14364 Likewise.
14365
14366 * lib/abitset.c (abitset_ones, abitset_zero, abitset_bytes):
14367 Use size_t, not unsigned int, to count bytes.
14368 * lib/abitset.h (abitset_bytes): Likewise.
14369 * lib/bitset.c (bitset_bytes, bitset_alloc, bitset_obstack_alloc):
14370 Likewise.
14371 * lib/bitset.h (bitset_bytes): Likewise.
14372 * lib/bitset_stats.c (bitset_stats_bytes, bitset_stats_init): Likewise.
14373 * lib/bitset_stats.h (bitset_stats_bytes): Likewise.
14374 * lib/bitsetv.c (bitsetv_alloc): Likewise.
14375 * lib/ebitset.c (ebitset_bytes): Likewise.
14376 * lib/ebitset.h (ebitset_bytes): Likewise.
14377 * lib/lbitset.c (lbitset_bytes): Likewise.
14378 * lib/lbitset.h (lbitset_bytes): Likewise.
14379
14380 * lib/abitset.c (abitset_empty_p, abitset_not, abitset_equal_p,
14381 abitset_subset_p, abitset_disjoint_p, abitset_and,
14382 abitset_and_cmp, abitset_andn, abitset_andn_cmp, abitset_or,
14383 abitset_or_cmp, abitset_xor, abitset_xor_cmp, abitset_and_or,
14384 abitset_and_or_cmp, abitset_andn_or, abitset_andn_or_cmp,
14385 abitset_or_and, abitset_or_and_cmp):
14386 Use bitset_windex instead of unsigned int.
14387 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
14388 * lib/ebitset.c (struct ebitset_struct.size, ebitset_elts_grow,
14389 ebitset_elt_add, ebitset_elt_remove, ebitset_weed,
14390 ebitset_elt_find, ebitset_list_reverse, ebitset_list, ebitset_init):
14391 Likewise.
14392 * lib/lbitset.c (lbitset_ones, lbitset_not): Likewise.
14393
14394 * lib/bitset.c (bitset_print):
14395 Use proper printf formats for widths of integer types.
14396 * lib/bitset_stats.c (bitset_percent_histogram_print,
14397 bitset_log_histogram_print, bitset_stats_print_1): Likewise.
14398 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
14399 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
14400 * lib/lbitset.c (lbitset_bytes): Likewise.
14401
14402 * lib/bbitset.h (BITSET_BINDEX_MAX, BITSET_WINDEX_MAX,
14403 BITSET_SIZE_MAX): New macros.
14404 (BITSET_INDEX_MAX): Remove. It wasn't right, since it assumed that
14405 sizeof (bitset_word) == sizeof (bitset_windex). All uses changed
14406 to BITSET_WINDEX_MAX.
14407
14408 * lib/bitset.c (bitset_next, bitset_prev, bitset_first,
14409 bitset_last): Return BITSET_BINDEX_MAX (not -1) for no value,
14410 since we now return the bitset_bindex type (not int).
14411
14412 * lib/bitsetv.c (bitsetv_alloc): Check for arithmetic overflow
14413 when computing sizes.
14414 * lib/ebitset.c (ebitset_elts_grow): Likewise.
14415
14416 * lib/lbitset.c (lbitset_elt_find): Simplify windex calculation
14417 and avoid cast to unsigned.
14418
14419 2002-09-30 Akim Demaille <akim@epita.fr>
14420
14421 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
14422 * lib/bitset_stats.c, lib/bitsetv.c, lib/ebitset.c, lib/lbitset.c:
14423 Updates from Michael Hayes.
14424
14425 2002-09-30 Art Haas <ahaas@neosoft.com>
14426
14427 * configure.ac: Update AC_OUTPUT and AM_CONFIG_HEADER
14428 invocations.
14429 * tests/cxx-type.at (declarator): Don't rely on NDEBUG being not
14430 defined.
14431
14432 2002-09-27 Akim Demaille <akim@epita.fr>
14433
14434 Version 1.49c.
14435
14436 2002-09-27 Akim Demaille <akim@epita.fr>
14437
14438 * configure.ac (AM_INIT_AUTOMAKE): We _need_ 1.7.
14439 (Because of AC_LIBSOURCE).
14440
14441 2002-09-27 Akim Demaille <akim@epita.fr>
14442
14443 Playing with Autoscan.
14444
14445 * configure.ac: Remove the old LIBOBJ tweaks.
14446 (AC_REPLACE_FUNCS): Add strrchr and strtol.
14447 * lib/strrchr.c: New.
14448 * lib/strtol.c: New, from the Coreutils 4.5.1.
14449
14450 2002-09-27 Akim Demaille <akim@epita.fr>
14451
14452 Playing with Autoscan.
14453
14454 * m4/prereq.m4 (jm_PREREQ_ARGMATCH, jm_FUNC_ARGMATCH): New.
14455 * lib/Makefile.am (libbison_a_SOURCES): No longer include
14456 argmatch.c and argmatch.h, since they are AC_LIBSOURCE'd.
14457 * lib/strcasecmp.c, lib/strncasecmp.c, lib/memcmp.c: New, from the
14458 Coreutils 4.5.1.
14459
14460 2002-09-24 Akim Demaille <akim@epita.fr>
14461
14462 * doc/bison.texinfo (Stack Overflow): xref to Recursion.
14463 (Frequently Asked Questions, Parser Stack Overflow): New.
14464
14465 2002-09-13 Akim Demaille <akim@epita.fr>
14466
14467 Playing with autoscan.
14468
14469 * src/reader.c (get_merge_function): Use xstrdup, not strdup.
14470 * src/files.c (skeleton_find): Remove, unused.
14471 * m4/memcmp.m4: New, from the Coreutils 4.5.1.
14472 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Run jm_FUNC_MEMCMP.
14473
14474 2002-09-13 Akim Demaille <akim@epita.fr>
14475
14476 * configure.ac (AM_INIT_AUTOMAKE): Require Automake 1.6.3.
14477 * Makefile.am (AUTOMAKE_OPTIONS): Don't.
14478
14479 2002-09-13 Akim Demaille <akim@epita.fr>
14480
14481 * configure.ac: Require 2.54.
14482 s/jm_FUNC_MALLOC/AC_FUNC_MALLOC/.
14483 s/jm_FUNC_REALLOC/AC_FUNC_REALLOC/.
14484 * m4/c-bs-a.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/realloc.m4:
14485 Remove, provided by Autoconf macros.
14486
14487 2002-09-12 Akim Demaille <akim@epita.fr>
14488
14489 * m4/prereq.m4: Update, from Coreutils 4.5.1.
14490
14491 2002-09-12 Akim Demaille <akim@epita.fr>
14492
14493 * m4/prereq.m4: Update, from Fileutils 4.1.5.
14494 * configure.ac (jm_PREREQ_TEMPNAME): Invoke it.
14495 Reported by Martin Mokrejs.
14496
14497 2002-09-10 Akim Demaille <akim@epita.fr>
14498
14499 * src/parse-gram.y: Associate a human readable string to each
14500 token type.
14501 * tests/regression.at (Invalid inputs): Adjust.
14502
14503 2002-09-10 Gary V. Vaughan <gary@gnu.org>
14504
14505 * tests/Makefile.am ($(srcdir)/package.m4): Bison now ships
14506 with an Autoconf-2.5x style configure.ac.
14507
14508 2002-09-06 Paul Eggert <eggert@twinsun.com>
14509
14510 * doc/bison.texinfo (Conditions): Make explicit that the GPL
14511 exception applies only to yacc.c. This is a modification of a
14512 patch originally suggested by Akim Demaille.
14513
14514 2002-09-06 Akim Demaille <akim@epita.fr>
14515
14516 * data/c.m4 (b4_copyright): Move the GPL exception comment from
14517 here to...
14518 * data/yacc.c: here.
14519
14520 * data/lalr1.cc (struct yyltype): Don't define it, since we use
14521 LocationType.
14522 (b4_ltype): Default to yy::Location from location.hh.
14523
14524 2002-09-04 Jim Meyering <jim@meyering.net>
14525
14526 * data/yacc.c: Guard the declaration of yytoknum also with
14527 `#ifdef YYPRINT', so it is declared only when used.
14528
14529 2002-09-04 Akim Demaille <akim@epita.fr>
14530
14531 * configure.in: Rename as...
14532 * configure.ac: this.
14533 Bump to 1.49c.
14534
14535 2002-09-04 Akim Demaille <akim@epita.fr>
14536
14537 * src/assoc.c, src/closure.c, src/gram.c, src/injections.c,
14538 * src/lalr.c, src/LR0.c, src/relation.c, src/tables.c: Don't
14539 translate maintainer only messages.
14540
14541 2002-08-12 Paul Eggert <eggert@twinsun.com>
14542
14543 Version 1.49b.
14544
14545 * Makefile.am (SUBDIRS): Remove intl.
14546 (DISTCLEANFILES): Remove.
14547 * NEWS: Mention that GNU M4 is now required. Clarify what is
14548 meant by "larger grammars". Mention the pt_BR translation.
14549 * configure.in (AC_CHECK_DECLS): Add getenv, getopt.
14550 (AM_GNU_GETTEXT_VERSION): New macro, replacing GETTEXT_VERSION var.
14551 Bump version from 0.11.2 to 0.11.5.
14552 (BISON_PREREQ_STAGE): Remove.
14553 (AM_GNU_GETTEXT): Use external gettext.
14554 (AC_OUTPUT): Remove intl/Makefile.
14555
14556 * config/depcomp, config/install-sh: Sync with Automake 1.6.3.
14557
14558 * data/glr.c: Include string.h, for strlen.
14559 (yyreportParseError): Use size_t for yysize.
14560 (yy_yypstack): No longer nested inside yypstates, as nested
14561 functions are not portable. Do not assume size_t is the
14562 same width as int.
14563 (yypstates): Do not assume that ptrdiff_t is the same width
14564 as int, and similarly for yyposn and YYINDEX.
14565
14566 * data/yacc.c: Fix comment about `$$ = $1': it can copy garbage.
14567
14568 * lib/Makefile.am (INCLUDES): Do not include from the intl
14569 directory, which has been removed.
14570 * src/Makefile.am (INCLUDES): Likewise.
14571
14572 * lib/Makefile.am (libbison_a_SOURCES): Add unlocked-io.h.
14573 (bitsets_sources, additional_bitsets_sources, timevars_sources):
14574 New vars.
14575
14576 * lib/Makefile.am (libbison_a_SOURCES): Avoid +=, a GNU make extension.
14577 * tests/Makefile.am (EXTRA_DIST): Likewise.
14578
14579 * lib/abitset.c (abitset_reverse_list, ebitset_reverse_list):
14580 Do not assume that bitset_windex is the same width as unsigned.
14581
14582 * lib/abitset.c (abitset_unused_clear): Do not assume that
14583 bitset_word is the same width as int.
14584 * lib/bbitset.h (BITSET_INDEX_MAX, BITSET_MSB): Likewise.
14585 * lib/bitset.h (bitset_set, bitset_reset): Likewise.
14586 * lib/bitset_stats.c (bitset_stats_set, bitset_stats_reset): Likewise.
14587 * lib/ebitset.c (ebitset_set, ebitset_reset): Likewise.
14588 * lib/lbitset.c (lbitset_set, lbitset_reset): Likewise.
14589
14590 * lib/abitset.c (abitset_op1): Use -1, not ~0, as memset arg (for
14591 portability to one's complement hosts!).
14592 * lib/ebitset.c (ebitset_op1): Likewise.
14593 * lib/lbitset.c (lbitset_op1): Likewise.
14594
14595 * lib/argmatch.c, lib/quotearg.c, quotearg.h: Sync with GNU tar.
14596 * lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
14597 lib/hash.c, lib/hash.h, lib/strnlen.c, lib/xmalloc.c:
14598 Sync with fileutils.
14599 * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
14600 lib/gettext.h: Sync with diffutils.
14601
14602 * lib/memrchr.c, lib/mkstemp.c, lib/strchr.c, lib/strnlen.c,
14603 lib/strspn.c, lib/tempname.c: Use GPL, not LGPL.
14604
14605 * lib/obstack.c, lib/obstack.h: Sync with fileutils, except use
14606 PROTOTYPES to check for prototypes, and "defined __STDC__" to
14607 check for void *.
14608
14609 * lib/bbitset.h (BITSET_WORD_BITS): Now of type unsigned, not
14610 size_t; the old version tried to do this but casted improperly.
14611 (bitset_bindex, bitset_windex): Now size_t, not unsigned long.
14612 (bitset_test): Now returns int, not unsigned long.
14613
14614 * lib/bitset_stats.c: Include "gettext.h".
14615 (_): New macro.
14616 (bitset_stats_set, bitset_stats_reset, bitset_stats_test): Don't
14617 name locals "index", as it generates unnecessary warnings on some
14618 hosts that have an "index" function.
14619
14620 * lib/bitset_stats.c (bitset_stats_print_1, bitset_stats_print,
14621 bitset_stats_read, bitset_stats_write): Wrap strings in _() if
14622 they need translation.
14623 * src/LR0.c (state_list_append, new_itemsets, get_state,
14624 append_states, generate_states): Likewise.
14625 * src/assoc.c (assoc_to_string): Likewise.
14626 * src/closure.c (print_closure, set_firsts, closure): Likewise.
14627 * src/gram.c (grammar_dump): Likewise.
14628 * src/injections.c (injections_compute): Likewise.
14629 * src/lalr.c (lookaheads_print): Likewise.
14630 * src/relation.c (relation_transpose): Likewise.
14631 * src/scan-gram.l: Likewise.
14632 * src/tables.c (table_grow, pack_vector): Likewise.
14633
14634 * m4/Makefile.am (EXTRA_DIST): Remove codeset.m4,
14635 glibc21.m4, isc-posix.m4 lcmessage.m4, stage.m4.
14636 * m4/malloc.m4, m4/realloc.m4: Sync with diffutils.
14637 * m4/mbstate_t.m4: Sync with fileutils.
14638 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): AC_MBSTATE_T -> AC_TYPE_MBSTATE_T.
14639
14640 * po/LINGUAS: Add pt_BR.
14641 * po/POTFILES.in: Add src/assoc.c, src/closure.c, src/gram.c,
14642 src/main.c, src/relation.c, src/state.c, lib/bitset_stats.c,
14643 lib/timevar.c.
14644 Use src/parse-gram.y instead of src/parse-gram.c, as the gettext
14645 manual recommends.
14646 Similarly, use src/scan-gram.l instead of src/scan-gram.c.
14647
14648 * src/complain.c (strerror_r): Remove decl; not needed.
14649 (strerror): Use same pattern as ../lib/error.c.
14650
14651 * src/files.c, src/files.h (compute_header_macro): Remove; unused.
14652
14653 * src/gram.c (grammar_dump): Do not assume ptrdiff_t fits in int.
14654
14655 * src/main.c (main): Cast result of bindtextdomain and textdomain
14656 to void, to avoid a GCC warning when --disable-nls is in effect.
14657
14658 * src/scan-gram.l: Use strings rather than escapes when possible,
14659 to minimize the number of warnings from xgettext.
14660 (handle_action_dollar, handle_action_at): Don't use isdigit,
14661 as it mishandles negative chars and it may not work as expected
14662 outside the C locale.
14663
14664 * src/symtab.c (symbol_get): Don't cast LHS of an assignment;
14665 this is a GCC extension and is not portable to other compilers.
14666
14667 * src/system.h (alloca): Use same pattern as ../lib/error.c.
14668 Do not include <ctype.h>; no longer needed.
14669 Do not include <malloc.h>; no longer needed (and generates
14670 warnings on OpenBSD 3.0).
14671
14672 * tests/cxx-type.at (yylex): Do not pass signed char to isupper;
14673 it's not portable.
14674
14675 * tests/regression.at: Do not use 'cc -c input.c -o input';
14676 Sun C rejects this. Instead, use 'cc -c input.c -o input.o'.
14677
14678 * tests/synclines.at (AC_SYNCLINES_COMPILE): Accept any nonzero
14679 exit status as failure, not just exit status 1. Sun C exits
14680 with status 2 sometimes.
14681
14682 * tests/torture.at (AT_INCREASE_DATA_SIZE): New macro.
14683 Use it for the two large tests.
14684
14685 2002-08-02 Akim Demaille <akim@epita.fr>
14686
14687 * src/conflicts.c (conflicts_output): Don't output rules never
14688 reduced here, since anyway that computation doesn't work.
14689 * src/gram.h, src/gram.h (rule_filter_t, rule_useful_p)
14690 (rule_useless_p, rule_never_reduced_p): New.
14691 (grammar_rules_partial_print): Use a filter instead of a range.
14692 Display the title only if needed.
14693 (grammar_rules_print): Adjust.
14694 (grammar_rules_never_reduced_report): New.
14695 * src/tables.c (action_row): Move the computation of rules never
14696 reduced to...
14697 (token_actions): here.
14698 * src/main.c (main): Make the parser before making the report, so
14699 that rules never reduced are computed.
14700 Call grammar_rules_never_reduced_report.
14701 * src/print.c (print_results): Report rules never reduced.
14702 * tests/conflicts.at, tests/reduce.at: Adjust.
14703
14704 2002-08-01 Akim Demaille <akim@epita.fr>
14705
14706 Instead of attaching lookaheads and duplicating the rules being
14707 reduced by a state, attach the lookaheads to the reductions.
14708
14709 * src/state.h (state_t): Remove the `lookaheads',
14710 `lookaheads_rule' member.
14711 (reductions_t): Add a `lookaheads' member.
14712 Use a regular array for the `rules'.
14713 * src/state.c (reductions_new): Initialize the lookaheads member
14714 to 0.
14715 (state_rule_lookaheads_print): Adjust.
14716 * src/state.h, src/state.c (state_reductions_find): New.
14717 * src/conflicts.c (resolve_sr_conflict, set_conflicts)
14718 (count_rr_conflicts): Adjust.
14719 * src/lalr.c (LArule): Remove.
14720 (add_lookback_edge): Adjust.
14721 (state_lookaheads_count): New.
14722 (states_lookaheads_initialize): Merge into...
14723 (initialize_LA): this.
14724 (lalr_free): Adjust.
14725 * src/main.c (main): Don't free nullable and derives too early: it
14726 is used by --verbose.
14727 * src/print.c, src/print_graph.c, src/tables.c: Adjust.
14728
14729 2002-08-01 Akim Demaille <akim@epita.fr>
14730
14731 * src/derives.h, src/derives.c (derives): A `rule_t***' instead of
14732 `rule_number_t**'.
14733 (set_derives, free_derives): Rename as...
14734 (derives_compute, derives_free): this.
14735 Adjust all dependencies.
14736 * src/nullable.c (set_nullable, free_nullable): Rename as...
14737 (nullable_compute, nullable_free): these.
14738 (rule_list_t): Store rule_t *, not rule_number_t.
14739 * src/state.c (state_rule_lookaheads_print): Directly compare rule
14740 pointers, instead of their numbers.
14741 * src/main.c (main): Call nullable_free, and derives_free earlier,
14742 as they were lo longer used.
14743
14744 2002-08-01 Akim Demaille <akim@epita.fr>
14745
14746 * lib/timevar.c (get_time): Include children time.
14747 * src/lalr.h (LA, LArule): Don't export them: used with the
14748 state_t.
14749 * src/lalr.c (LA, LArule): Static.
14750 * src/lalr.h, src/lalr.c (lalr_free): New.
14751 * src/main.c (main): Call it.
14752 * src/tables.c (pack_vector): Check whether loc is >= to the
14753 table_size, not >.
14754 (pack_tables): Don't free froms, tos, conflict_tos, and pos...
14755 (tables_generate): do it, since that's also it which allocates
14756 them.
14757 Don't free LA and LArule, main does.
14758
14759 2002-07-31 Akim Demaille <akim@epita.fr>
14760
14761 Separate parser tables computation and output.
14762
14763 * src/output.c (nvectors, base_t, base, base_ninf, conflict_table)
14764 (conflict_list, conflict_list_cnt, table, check, table_ninf)
14765 (yydefgoto, yydefact, high): Move to...
14766 * src/tables.h, src/tables.c: here.
14767 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
14768 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
14769 (symbol_number_to_vector_number, nvectors, BASE_MAX, BASE_MIN)
14770 (froms, tos, conflict_tos, tally, width, action_t, ACTION_MAX)
14771 (ACTION_MIN, actrow, order, nentries, pos, conflrow)
14772 (conflict_list_free, table_size, lowzero, table_grow, conflict_row)
14773 (action_row, save_row, token_actions, save_column, default_goto)
14774 (goto_actions, sort_actions, matching_state, pack_vector)
14775 (table_ninf_remap, pack_table, prepare_actions): Move to...
14776 * src/tables.c: here.
14777 * src/tables.h, src/tables.c(tables_generate, tables_free): New.
14778 * src/output.c (token_actions, output_base, output_conflicts)
14779 (output_check): Merge into...
14780 (prepare_actions): this.
14781 (actions_output): Rename as...
14782 (user_actions_output): this.
14783 * src/main.c (main): Call tables_generate and tables_free.
14784
14785 2002-07-31 Akim Demaille <akim@epita.fr>
14786
14787 Steal GCC's --time-report support.
14788
14789 * lib/timevar.c, lib/timevar.h, lib/timevar.def: New,
14790 stolen/adjusted from GCC.
14791 * m4/stage.m4: Remove time related checks.
14792 * m4/timevar.m4: New.
14793 * configure.in: Adjust.
14794 * src/system.h: Adjust to using timevar.h.
14795 * src/getargs.h, src/getargs.c: Support trace_time for
14796 --trace=time.
14797 * src/main.c (stage): Remove.
14798 (main): Replace `stage' invocations with timevar calls.
14799 * src/output.c: Insert pertinent timevar calls.
14800
14801 2002-07-31 Akim Demaille <akim@epita.fr>
14802
14803 Let --trace have arguments.
14804
14805 * src/getargs.h (enum trace_e): New.
14806 * src/getargs.c (trace_args, trace_types, trace_argmatch): New.
14807 (long_options, short_options): --trace/-T takes an optional
14808 argument.
14809 Change all the uses of trace_flag to reflect the new flags.
14810 * tests/sets.at (Firsts, Nullable, Broken Closure): Use --trace=sets.
14811
14812 Strengthen `stage' portability.
14813
14814 * m4/stage.m4 (BISON_PREREQ_STAGE): New.
14815 * configure.in: Use it.
14816 Don't check for malloc.h and sys/times.h.
14817 * src/system.h: Include them when appropriate.
14818 * src/main.c (stage): Compile only when mallinfo, struct mallinfo,
14819 times and struct tms are available.
14820
14821 2002-07-30 Akim Demaille <akim@epita.fr>
14822
14823 In verbose parse error message, don't report `error' as an
14824 expected token.
14825 * tests/actions.at (Printers and Destructors): Adjust.
14826 * tests/calc.at (Calculator $1): Adjust.
14827 * data/yacc.c, data/glr.c, data/lalr1.c: When making the verbose
14828 error message, do not report the parser accepts the error token in
14829 that state.
14830
14831 2002-07-30 Akim Demaille <akim@epita.fr>
14832
14833 Normalize conflict related messages.
14834
14835 * src/complain.h, src/complain.c (warn, complain): New.
14836 * src/conflicts.c (conflicts_print): Use them.
14837 (conflict_report_yacc): New, extracted from...
14838 (conflicts_print): here.
14839 * tests/conflicts.at, tests/existing.at: Adjust.
14840
14841 2002-07-30 Akim Demaille <akim@epita.fr>
14842
14843 Report rules which are never reduced by the parser: those hidden
14844 by conflicts.
14845
14846 * src/LR0.c (save_reductions): Don't make the final state too
14847 different: save its reduction (accept) instead of having a state
14848 without any action (no shift or goto, no reduce).
14849 Note: the final state is now a ``regular'' state, i.e., the
14850 parsers now contain `reduce 0' as default reduction.
14851 Nevertheless, since they decide to `accept' when yystate =
14852 final_state, they still will not reduce rule 0.
14853 * src/print.c (print_actions, print_reduction): Adjust.
14854 * src/output.c (action_row): Track reduced rules.
14855 (token_actions): Report rules never reduced.
14856 * tests/conflicts.at, tests/regression.at: Adjust.
14857
14858 2002-07-30 Akim Demaille <akim@epita.fr>
14859
14860 `stage' was accidently included in a previous patch.
14861 Initiate its autoconfiscation.
14862
14863 * configure.in: Look for malloc.h and sys/times.h.
14864 * src/main.c (stage): Adjust.
14865 Report only when trace_flag.
14866
14867 2002-07-29 Akim Demaille <akim@epita.fr>
14868
14869 * src/state.h, src/state.c (transitions_t): Holds state_t*'s, not
14870 state_number_t.
14871 (errs_t): symbol_t*, not symbol_number_t.
14872 (reductions_t): rule_t*, not rule_number_t.
14873 (FOR_EACH_SHIFT): New.
14874 * src/LR0.c, src/conflicts.c, src/lalr.c, src/output.c
14875 * src/print.c, src/print_graph.c: Adjust.
14876
14877 2002-07-29 Akim Demaille <akim@epita.fr>
14878
14879 Use $accept and $end, as BYacc and BTYacc do, instead of $axiom and $.
14880
14881 * src/symtab.h, src/symtab.c (eoftoken, axiom): Rename as...
14882 (endtoken, accept): these.
14883 * src/reader.c (reader): Set endtoken's default tag to "$end".
14884 Set undeftoken's tag to "$undefined" instead of "$undefined.".
14885 * doc/bison.texinfo (Table of Symbols): Mention $accept and $end.
14886 Adjust.
14887
14888 2002-07-29 Akim Demaille <akim@epita.fr>
14889
14890 * src/reduce.c (reduce_grammar): When the language is empty,
14891 complain about the start symbol, not the axiom.
14892 Use its location.
14893 * tests/reduce.at (Empty Language): New.
14894
14895 2002-07-26 Akim Demaille <akim@epita.fr>
14896
14897 * src/reader.h, src/reader.c (gram_error): ... can't get
14898 yycontrol without making too strong assumptions on the parser
14899 itself.
14900 * src/output.c (prepare_tokens): Use the real 0th value of
14901 token_translations instead of `0'.
14902 * src/parse-gram.y (yyerror): Don't rely on yycontrol being
14903 visible here.
14904 * data/yacc.c (yyreport_parse_error): Rename yylocation as yylloc
14905 for the time being: %locations ought to provide it to yyerror.
14906
14907 2002-07-25 Akim Demaille <akim@epita.fr>
14908
14909 * src/output.c (prepare_tokens): Go up to ntokens, not ntokens + 1.
14910 * doc/bison.texinfo (Decl Summary): s/$illegal/$undefined./.
14911 * tests/regression.at (Web2c Actions): Adjust.
14912
14913 2002-07-25 Akim Demaille <akim@epita.fr>
14914
14915 Stop storing rules from 1 to nrules + 1.
14916
14917 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c, src/lalr.c
14918 * src/nullable.c, src/output.c, src/print.c, src/reader.c
14919 * src/reduce.c: Allocate and free from &rules[0], not &rules[1].
14920 Iterate from 0 to nrules.
14921 Use rule_number_as_item_number and item_number_as_rule_number.
14922 Adjust to `derive' now containing possibly 0.
14923 * src/gram.h (rule_number_as_item_number, item_number_as_rule_number):
14924 Handle the `- 1' part in rule numbers from/to item numbers.
14925 * src/conflicts.c (log_resolution): Fix the message which reversed
14926 shift and reduce.
14927 * src/output.c (action_row): Initialize default_rule to -1.
14928 (token_actions): Adjust.
14929 * tests/sets.at (Nullable, Firsts): Fix the previously bogus
14930 expected output.
14931 * tests/conflicts.at (Resolved SR Conflicts): Likewise.
14932
14933 2002-07-25 Akim Demaille <akim@epita.fr>
14934
14935 * data/c.m4 (b4_c_function, b4_c_ansi_args, b4_c_ansi_arg)
14936 (b4_c_knr_arg_names, b4_c_knr_arg_name, b4_c_knr_arg_decls)
14937 (b4_c_knr_arg_decl): New.
14938 * data/yacc.c: Use it to define yysymprint, yydestruct, and
14939 yyreport_parse_error.
14940
14941 2002-07-25 Akim Demaille <akim@epita.fr>
14942
14943 * data/yacc.c (yyreport_parse_error): New, extracted from...
14944 (yyparse): here.
14945 (yydestruct, yysymprint): Move above yyparse.
14946 Be K&R compliant.
14947
14948 2002-07-25 Akim Demaille <akim@epita.fr>
14949
14950 * data/c.m4 (b4_ints_in, b4_int_type, b4_int_type_for): New,
14951 replace...
14952 (b4_sint_type, b4_uint_type): these.
14953 * data/yacc.c, data/glr.c, data/lalr1.cc: Use b4_int_type_for.
14954 * tests/regression.at (Web2c Actions): Adjust.
14955
14956 2002-07-25 Akim Demaille <akim@epita.fr>
14957
14958 * src/gram.h (TIEM_NUMBER_MAX): New.
14959 (item_number_of_rule_number, rule_number_of_item_number): Rename
14960 as...
14961 (rule_number_as_item_number, item_number_as_rule_number): these.
14962 Adjust dependencies.
14963 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
14964 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
14965 (symbol_number_to_vector_number): New.
14966 (order): Of vector_number_t* type.
14967 (base_t, BASE_MAX, BASE_MIN): New.
14968 (froms, tos, width, pos, check): Of base_t type.
14969 (action_number_t, ACTION_MIN, ACTION_MAX): New.
14970 (actrow): Of action_number_t type.
14971 (conflrow): Of unsigned int type.
14972 (table_ninf, base_ninf): New.
14973 (GENERATE_MUSCLE_INSERT_TABLE): Also output the `*_min' value.
14974 (muscle_insert_int_table, muscle_insert_base_table)
14975 (muscle_insert_rule_number_table): New.
14976 (prepare_tokens): Output `toknum' as int_table.
14977 (action_row): Returns a rule_number_t.
14978 Use ACTION_MIN, not SHRT_MIN.
14979 (token_actions): yydefact is rule_number_t*.
14980 (table_ninf_remap): New.
14981 (pack_table): Use it for `base' and `table'.
14982 * data/yacc.c, data/glr.c, data/lalr1.cc (YYFLAG): Remove,
14983 replaced with...
14984 (YYPACT_NINF, YYTABLE_NINF): these.
14985 (yypact, yytable): Compute their types instead of hard-coded
14986 `short'.
14987 * tests/regression.at (Web2c Actions): Adjust.
14988
14989 2002-07-19 Akim Demaille <akim@epita.fr>
14990
14991 * src/scan-gram.l (id): Can start with an underscore.
14992
14993 2002-07-16 Akim Demaille <akim@epita.fr>
14994
14995 * src/assoc.c, src/asssoc.h (assoc_t, assoc_to_string): New.
14996 Adjust all former `associativity' dependencies.
14997 * src/symtab.c (symbol_new): Default associativity is `undef', not
14998 `right'.
14999 (symbol_check_alias_consistence): Adjust.
15000
15001 2002-07-09 Akim Demaille <akim@epita.fr>
15002
15003 * doc/bison.texinfo: Properly set the ``header'' part.
15004 Use @dircategory ``GNU programming tools'' as per Texinfo's
15005 documentation.
15006 Use @copying.
15007
15008 2002-07-09 Akim Demaille <akim@epita.fr>
15009
15010 * lib/quotearg.h: Protect against multiple inclusions.
15011 * src/location.h (location_t): Add a `file' member.
15012 (LOCATION_RESET, LOCATION_PRINT): Adjust.
15013 * src/complain.c (warn_at, complain_at, fatal_at): Drop
15014 `error_one_per_line' support.
15015
15016 2002-07-09 Akim Demaille <akim@epita.fr>
15017
15018 * src/complain.h, src/complain.c (warn, complain): Remove, unused.
15019 * src/reader.c (lineno): Remove.
15020 Adjust all dependencies.
15021 (get_merge_function): Take a location and use complain_at.
15022 * src/symtab.h, src/symtab.c (symbol_make_alias): Likewise.
15023 * tests/regression.at (Invalid inputs, Mixing %token styles):
15024 Adjust.
15025
15026 2002-07-09 Akim Demaille <akim@epita.fr>
15027
15028 * src/parse-gram.y (rules_or_grammar_declaration): Add an error
15029 recovery rule, and forbid extensions when --yacc.
15030 (gram_error): Use complain_at.
15031 * src/reader.c (reader): Exit if there were parse errors.
15032
15033 2002-07-09 Akim Demaille <akim@epita.fr>
15034
15035 * tests/synclines.at (AT_SYNCLINES_COMPILE): New.
15036 (AT_TEST_SYNCLINE): Adjust to unusual GCC outputs.
15037 Reported by R Blake <blakers@mac.com>.
15038
15039 2002-07-09 Akim Demaille <akim@epita.fr>
15040
15041 * data/yacc.c: Output the copyright notive in the header.
15042
15043 2002-07-03 Akim Demaille <akim@epita.fr>
15044
15045 * src/output.c (froms, tos): Are state_number_t.
15046 (save_column): sp, sp1, and sp2 are state_number_t.
15047 (prepare): Rename `final' as `final_state_number', `nnts' as
15048 `nterms_number', `nrules' as `rules_number', `nstates' as
15049 `states_number', and `ntokens' as `tokens_number'. Remove `nsym',
15050 unused.
15051 * data/yacc.c, data/glr.c, data/lalr1.cc: Adjust.
15052 * data/lalr1.cc (nsym_): Remove, unused.
15053
15054 2002-07-03 Akim Demaille <akim@epita.fr>
15055
15056 * src/lalr.h, src/lalr.c (goto_number_t): New.
15057 * src/lalr.c (goto_list_t): New.
15058 Propagate them.
15059 * src/nullable.c (rule_list_t): New.
15060 Propagate.
15061 * src/types.h: Remove.
15062
15063 2002-07-03 Akim Demaille <akim@epita.fr>
15064
15065 * src/closure.c (print_fderives): Use rule_rhs_print.
15066 * src/derives.c (print_derives): Use rule_rhs_print.
15067 (rule_list_t): New, replaces `shorts'.
15068 (set_derives): Add comments.
15069 * tests/sets.at (Nullable, Firsts): Adjust.
15070
15071 2002-07-03 Akim Demaille <akim@epita.fr>
15072
15073 * src/output.c (prepare_actions): Free `tally' and `width'.
15074 (prepare_actions): Allocate and free `order'.
15075 * src/symtab.c (symbols_free): Free `symbols'.
15076 * src/scan-gram.l (scanner_free): Clear Flex's scanners memory.
15077 * src/output.c (m4_invoke): Move to...
15078 * src/scan-skel.l: here.
15079 (<<EOF>>): Close yyout, and free its name.
15080
15081 2002-07-03 Akim Demaille <akim@epita.fr>
15082
15083 Fix some memory leaks, and fix a bug: state 0 was examined twice.
15084
15085 * src/LR0.c (new_state): Merge into...
15086 (state_list_append): this.
15087 (new_states): Merge into...
15088 (generate_states): here.
15089 (set_states): Don't ensure a proper `errs' state member here, do it...
15090 * src/conflicts.c (conflicts_solve): here.
15091 * src/state.h, src/state.c: Comment changes.
15092 (state_t): Rename member `shifts' as `transitions'.
15093 Adjust all dependencies.
15094 (errs_new): For consistency, also take the values as argument.
15095 (errs_dup): Remove.
15096 (state_errs_set): New.
15097 (state_reductions_set, state_transitions_set): Assert that no
15098 previous value was assigned.
15099 (state_free): New.
15100 (states_free): Use it.
15101 * src/conflicts.c (resolve_sr_conflict): Don't use an `errs_t' as
15102 temporary storage: use `errs' and `nerrs' as elsewhere.
15103 (set_conflicts): Allocate and free this `errs'.
15104
15105 2002-07-02 Akim Demaille <akim@epita.fr>
15106
15107 * lib/libiberty.h: New.
15108 * lib: Update the bitset implementation from upstream.
15109 * src/closure.c, src/lalr.c, src/output.c, src/print_graph.c,
15110 * src/state.c: Use BITSET_FOR_EACH, not BITSET_EXECUTE.
15111 * src/main.c: Adjust bitset stats calls.
15112
15113 2002-07-01 Paul Eggert <eggert@twinsun.com>
15114
15115 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>): Convert to unsigned
15116 char, so that negative chars don't collide with $.
15117
15118 2002-06-30 Akim Demaille <akim@epita.fr>
15119
15120 Have the GLR tests be `warning' checked, and fix the warnings.
15121
15122 * data/glr.c (YYFPRINTF): Always define it, not only when YYDEBUG
15123 (yyuserAction, yyreportAmbiguity): `Use' all the arguments.
15124 (yyremoveDeletes): `yyi' and `yyj' are size_t.
15125 Use YYFPRINTF when under if (YYDEBUG) to avoid empty `if' bodies.
15126 (yyaddDeferredAction): static.
15127 (yyglrReduce): yyi, yyk, amd yyposn are size_t.
15128 (yyreportParseError): yyprefix is const.
15129 yytokenp is used only when verbose.
15130 (yy__GNUC__): Replace with __GNUC__.
15131 (yypdumpstack): yyi is size_t.
15132 (yypreference): Un-yy local variables and arguments, to avoid
15133 clashes with `yyr1'. Anyway, we are not in the user name space.
15134 (yytname_size): be an int, as is compared with ints.
15135 * tests/testsuite.at (AT_COMPILE, AT_PARSER_CHECK): New.
15136 Use them.
15137 * tests/cxx-gram.at: Use quotation to protect $1.
15138 Use AT_COMPILE to enable warnings hunts.
15139 Prototype yylex and yyerror.
15140 `Use' argc.
15141 Include `string.h', not `strings.h'.
15142 Produce and prototype stmtMerge only when used.
15143 yylex takes a location.
15144
15145 2002-06-30 Akim Demaille <akim@epita.fr>
15146
15147 We spend a lot of time in quotearg, in particular when --verbose.
15148
15149 * src/symtab.c (symbol_get): Store a quoted version of the key.
15150 (symbol_tag_get, symbol_tag_get_n, symbol_tag_print): Remove.
15151 Adjust all callers.
15152
15153 2002-06-30 Akim Demaille <akim@epita.fr>
15154
15155 * src/state.h (reductions_t): Rename member `nreds' as num.
15156 (errs_t): Rename members `nerrs' and `errs' as `num' and `symbols'.
15157 * src/state.c (ERRS_ALLOC, REDUCTIONS_ALLOC): Use the correct types.
15158
15159 2002-06-30 Akim Demaille <akim@epita.fr>
15160
15161 * src/state.h, src/state.c (shift_t, SHIFT_SYMBOL, SHIFT_IS_SHIFT)
15162 (SHIFT_IS_GOTO, SHIFT_IS_ERROR, SHIFT_DISABLE, SHIFT_IS_DISABLED)
15163 (shifts_to): Rename as...
15164 (transition_t, TRANSITION_SYMBOL, TRANSITION_IS_TRANSITION)
15165 (TRANSITION_IS_GOTO, TRANSITION_IS_ERROR, TRANSITION_DISABLE)
15166 (TRANSITION_IS_DISABLED, transitions_to): these.
15167
15168 2002-06-30 Akim Demaille <akim@epita.fr>
15169
15170 * src/print.c (print_shifts, print_gotos): Merge into...
15171 (print_transitions): this.
15172 (print_transitions, print_errs, print_reductions): Align the
15173 lookaheads columns.
15174 (print_core, print_transitions, print_errs, print_state,
15175 print_grammar): Output empty lines separator before, not after.
15176 (state_default_rule_compute): Rename as...
15177 (state_default_rule): this.
15178 * tests/conflicts.at (Defaulted Conflicted Reduction),
15179 (Unresolved SR Conflicts, Resolved SR Conflicts): Adjust.
15180 * tests/regression.at (Rule Line Numbers, Web2c Report): Adjust.
15181
15182 2002-06-30 Akim Demaille <akim@epita.fr>
15183
15184 Display items as we display rules.
15185
15186 * src/gram.h, src/gram.c (rule_lhs_print): New.
15187 * src/gram.c (grammar_rules_partial_print): Use it.
15188 * src/print.c (print_core): Likewise.
15189 * tests/conflicts.at (Defaulted Conflicted Reduction),
15190 (Unresolved SR Conflicts): Adjust.
15191 (Unresolved SR Conflicts): Adjust and rename as...
15192 (Resolved SR Conflicts): this, as was meant.
15193 * tests/regression.at (Web2c Report): Adjust.
15194
15195 2002-06-30 Akim Demaille <akim@epita.fr>
15196
15197 * src/print.c (state_default_rule_compute): New, extracted from...
15198 (print_reductions): here.
15199 Pessimize, but clarify the code.
15200 * tests/conflicts.at (Defaulted Conflicted Reduction): New.
15201
15202 2002-06-30 Akim Demaille <akim@epita.fr>
15203
15204 * src/output.c (action_row): Let default_rule be always a rule
15205 number.
15206
15207 2002-06-30 Akim Demaille <akim@epita.fr>
15208
15209 * src/closure.c (print_firsts, print_fderives, closure):
15210 Use BITSET_EXECUTE.
15211 * src/lalr.c (lookaheads_print): Likewise.
15212 * src/state.c (state_rule_lookaheads_print): Likewise.
15213 * src/print_graph.c (print_core): Likewise.
15214 * src/print.c (print_reductions): Likewise.
15215 * src/output.c (action_row): Likewise.
15216 Use SHIFT_IS_DISABLED, SHIFT_IS_SHIFT and SHIFT_SYMBOL.
15217
15218 2002-06-30 Akim Demaille <akim@epita.fr>
15219
15220 * src/print_graph.c: Use report_flag.
15221
15222 2002-06-30 Akim Demaille <akim@epita.fr>
15223
15224 * src/lalr.c (traverse, digraph, matrix_print, transpose): Move
15225 to...
15226 * src/relation.h, src/relation.c (traverse, relation_digraph)
15227 (relation_print, relation_transpose): New.
15228
15229 2002-06-30 Akim Demaille <akim@epita.fr>
15230
15231 * src/state.h, src/state.c (shifts_to): New.
15232 * src/lalr.c (build_relations): Use it.
15233
15234 2002-06-30 Akim Demaille <akim@epita.fr>
15235
15236 * src/gram.h (rule_number_t, RULE_NUMBER_MAX, int_of_rule_number)
15237 (item_number_of_rule_number, rule_number_of_item_number): New.
15238 * src/LR0.c, src/closure.c, src/derives.c, src/derives.h,
15239 * src/gram.c, src/lalr.c, src/nullable.c, src/output.c, src/print.c,
15240 * src/print_graph.c, src/reader.c, src/reduce.c, src/reduce.h:
15241 Propagate their use.
15242 Much remains to be done, in particular wrt `shorts' from types.h.
15243
15244 2002-06-30 Akim Demaille <akim@epita.fr>
15245
15246 * src/symtab.c (symbol_new): Initialize the `printer' member.
15247
15248 2002-06-30 Akim Demaille <akim@epita.fr>
15249
15250 * src/LR0.c (save_reductions): Remove, replaced by...
15251 * src/state.h, src/state.c (state_reductions_set): New.
15252 (reductions, errs): Rename as...
15253 (reductions_t, errs_t): these.
15254 Adjust all dependencies.
15255
15256 2002-06-30 Akim Demaille <akim@epita.fr>
15257
15258 * src/LR0.c (state_list_t, state_list_append): New.
15259 (first_state, last_state): Now symbol_list_t.
15260 (this_state): Remove.
15261 (new_itemsets, append_states, save_reductions): Take a state_t as
15262 argument.
15263 (set_states, generate_states): Adjust.
15264 (save_shifts): Remove, replaced by...
15265 * src/state.h, src/state.c (state_shifts_set): New.
15266 (shifts): Rename as...
15267 (shifts_t): this.
15268 Adjust all dependencies.
15269 * src/state.h (state_t): Remove the `next' member.
15270
15271 2002-06-30 Akim Demaille <akim@epita.fr>
15272
15273 * src/vcg.c (quote): Use slot 2, since we often pass symbol tag
15274 escaped in slot 0.
15275
15276 2002-06-30 Akim Demaille <akim@epita.fr>
15277
15278 Use hash.h for the state hash table.
15279
15280 * src/LR0.c (STATE_HASH_SIZE, state_hash): Remove.
15281 (allocate_storage): Use state_hash_new.
15282 (free_storage): Use state_hash_free.
15283 (new_state, get_state): Adjust.
15284 * src/lalr.h, src/lalr.c (states): Move to...
15285 * src/states.h (state_t): Remove the `link' member, no longer
15286 used.
15287 * src/states.h, src/states.c: here.
15288 (state_hash_new, state_hash_free, state_hash_lookup)
15289 (state_hash_insert, states_free): New.
15290 * src/states.c (state_table, state_compare, state_hash): New.
15291 * src/output.c (output_actions): Do not free states now, since we
15292 still need to know the final_state number in `prepare', called
15293 afterwards. Do it...
15294 * src/main.c (main): here: call states_free after `output'.
15295
15296 2002-06-30 Akim Demaille <akim@epita.fr>
15297
15298 * src/state.h, src/state.c (state_new): New, extracted from...
15299 * src/LR0.c (new_state): here.
15300 * src/state.h (STATE_ALLOC): Move to...
15301 * src/state.c: here.
15302 * src/LR0.h, src/LR0.c (nstates, final_state): Move to...
15303 * src/state.h, src/state.c: here.
15304
15305 2002-06-30 Akim Demaille <akim@epita.fr>
15306
15307 * src/reader.c (gensym): Rename as...
15308 * src/symtab.h, src/symtab.c (dummy_symbol_get): this.
15309 (getsym): Rename as...
15310 (symbol_get): this.
15311
15312 2002-06-30 Akim Demaille <akim@epita.fr>
15313
15314 * src/state.h (state_number_t, STATE_NUMBER_MAX): New.
15315 * src/LR0.c, src/LR0.h, src/conflicts.c, src/lalr.c, src/lalr.h,
15316 * src/output.c, src/print.c, src/print_graph.c: Propagate.
15317 * src/LR0.h, src/LR0.h (final_state): Is a state_t*.
15318
15319 2002-06-30 Akim Demaille <akim@epita.fr>
15320
15321 Make the test suite pass with warnings checked.
15322
15323 * tests/actions.at (Printers and Destructors): Improve.
15324 Avoid unsigned vs. signed issues.
15325 * tests/calc.at: Don't exercise the scanner here, do it...
15326 * tests/input.at (Torturing the Scanner): here.
15327
15328 2002-06-28 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15329
15330 * data/glr.c: Correct typo in Emacs-mode directive. Slightly
15331 reorganize first lines parallel to yacc.c.
15332
15333 2002-06-28 Akim Demaille <akim@epita.fr>
15334
15335 * data/c.m4 (b4_copyright, b4_sint_type, b4_uint_type, b4_token_define)
15336 (b4_token_enum, b4_token_defines): New, factored from...
15337 * data/lalr1.cc, data/yacc.c, glr.c: here.
15338
15339 2002-06-28 Akim Demaille <akim@epita.fr>
15340
15341 * data/yacc.c (yydestruct, yysymprint): Pacify GCC warnings for
15342 unused variables.
15343 * src/output.c (merger_output): static.
15344
15345 2002-06-28 Akim Demaille <akim@epita.fr>
15346
15347 * src/reader.h: s/grammer_current_rule_merge_set/grammar_.../.
15348 * src/conflicts.c (conflicts_total_count): `i' is unsigned, to
15349 pacify GCC.
15350 * src/output.c (save_row): Initialize all the variables to pacify GCC.
15351
15352 2002-06-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15353
15354 Accumulated changelog for new GLR parsing features.
15355
15356 * src/conflicts.c (count_total_conflicts): Change name to
15357 conflicts_total_count.
15358 * src/conflicts.h: Ditto.
15359 * src/output.c (token_actions): Use the new name.
15360 (output_conflicts): Change conflp => conflict_list_heads, and
15361 confl => conflict_list for better readability.
15362 * data/glr.c: Use the new names.
15363 * NEWS: Add self to GLR announcement.
15364
15365 * src/reader.c (free_merger_functions): Cleanup: XFREE->free.
15366
15367 * doc/bison.texinfo (GLR Parsers): Make corrections suggested by
15368 Akim Demaille.
15369
15370 * data/bison.glr: Change name to glr.c
15371 * data/glr.c: Renamed from bison.glr.
15372 * data/Makefile.am: Add glr.c
15373
15374 * src/getargs.c:
15375
15376 * src/symlist.h: Add dprec and merger fields to symbol_list_s.
15377 * src/symlist.c (symbol_list_new): Initialize dprec and merger fields.
15378
15379 Originally 2002-06-16 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15380
15381 * data/bison.glr: Be sure to restore the
15382 current #line when returning to the skeleton contents after having
15383 exposed the input file's #line.
15384
15385 Originally 2002-06-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15386
15387 * data/bison.glr: Bring up to date with changes to bison.simple.
15388
15389 Originally 2002-06-03 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15390
15391 * data/bison.glr: Correct definitions that use b4_prefix.
15392 Various reformatting.
15393 (GLRStack): Make yychar (in YYPURE case) and yytokenp as part of stack.
15394 (yyreportParseError, yyrecoverParseError, yyprocessOneStack): remove
15395 yytokenp argument; now part of stack.
15396 (yychar): Define to behave as documented.
15397 (yyclearin): Ditto.
15398
15399 Originally 2002-05-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15400
15401 * src/reader.h: Add declaration for free_merger_functions.
15402
15403 * src/reader.c (merge_functions): New variable.
15404 (get_merge_function): New function.
15405 (free_merger_functions): New function.
15406 (readgram): Check for %prec that is not followed by a symbol.
15407 Handle %dprec and %merge declarations.
15408 (packgram): Initialize dprec and merger fields in rules array.
15409
15410 * src/output.c (conflict_tos, conflrow, conflict_table, conflict_list,
15411 conflict_list_cnt, conflict_list_free): New variables.
15412 (table_grow): Also grow conflict_table.
15413 (prepare_rules): Output dprec and merger tables.
15414 (conflict_row): New function.
15415 (action_row): Output conflict lists for GLR parser. Don't use
15416 default reduction in conflicted states for GLR parser so that there
15417 are spaces for the conflict lists.
15418 (save_row): Also save conflict information.
15419 (token_actions): Allocate conflict list.
15420 (merger_output): New function.
15421 (pack_vector): Pack conflict table, too.
15422 (output_conflicts): New function to output yyconflp and yyconfl.
15423 (output_check): Allocate conflict_tos.
15424 (output_actions): Output conflict tables, also.
15425 (output_skeleton): Output b4_mergers definition.
15426 (prepare): Output b4_max_rhs_length definition.
15427 Use 'bison.glr' as default skeleton for GLR parsers.
15428
15429 * src/gram.c (glr_parser): New flag.
15430 (grammar_free): Call free_merger_functions.
15431
15432 * src/conflicts.c (count_rr_conflicts): Augment to optionally count
15433 all pairs of conflicting reductions, rather than just all tokens
15434 causing conflicts. Needed to size conflict tables.
15435 (conflicts_output): Modify call to count_rr_conflicts for new
15436 interface.
15437 (conflicts_print): Ditto.
15438 (count_total_conflicts): New function.
15439
15440 * src/reader.h (merger_list): New type.
15441 (merge_functions): New variable.
15442
15443 * src/lex.h (tok_dprec, tok_merge): New token types.
15444
15445 * src/gram.h (rule_s): Add dprec and merger fields.
15446 (glr_parser): New flag.
15447
15448 * src/conflicts.h (count_total_conflicts): New function.
15449
15450 * src/options.c (option_table): Add %dprec, %merge, and %glr-parser.
15451
15452 * doc/bison.texinfo (Generalized LR Parsing): New section.
15453 (GLR Parsers): New section.
15454 (Language and Grammar): Mention GLR parsing.
15455 (Table of Symbols): Add %dprec, %glr-parser, %merge, GLR
15456 Correct typo ("tge" -> "the").
15457
15458 * data/bison.glr: New skeleton for GLR parsing.
15459
15460 * tests/cxx-gram.at: New tests for GLR parsing.
15461
15462 * tests/testsuite.at: Include cxx-gram.at.
15463
15464 * tests/Makefile.am: Add cxx-gram.at.
15465
15466 * src/parse-gram.y:
15467
15468 * src/scan-gram.l: Add %dprec, %glr-parser, %merge.
15469
15470 * src/parse-gram.y: Grammar for %dprec, %merge, %glr-parser.
15471
15472 2002-06-27 Akim Demaille <akim@epita.fr>
15473
15474 * src/options.h, src/options.c: Remove.
15475 * src/getargs.c (short_options, long_options): New.
15476
15477 2002-06-27 Akim Demaille <akim@epita.fr>
15478
15479 * data/bison.simple, data/bison.c++: Rename as...
15480 * data/yacc.c, data/lalr1.cc: these.
15481 * doc/bison.texinfo (Environment Variables): Remove.
15482
15483 2002-06-25 Raja R Harinath <harinath@cs.umn.edu>
15484
15485 * src/getargs.c (report_argmatch): Initialize strtok().
15486
15487 2002-06-20 Akim Demaille <akim@epita.fr>
15488
15489 * data/bison.simple (b4_symbol_actions): New, replaces...
15490 (b4_symbol_destructor, b4_symbol_printer): these.
15491 (yysymprint): Be sure to call YYPRINT only for tokens, and using
15492 user token numbers.
15493
15494 2002-06-20 Akim Demaille <akim@epita.fr>
15495
15496 * data/bison.simple (yydestructor): Rename as...
15497 (yydestruct): this.
15498
15499 2002-06-20 Akim Demaille <akim@epita.fr>
15500
15501 * src/symtab.h, src/symtab.c (symbol_type_set)
15502 (symbol_destructor_set, symbol_precedence_set): The location is
15503 the last argument.
15504 Adjust all callers.
15505
15506 2002-06-20 Akim Demaille <akim@epita.fr>
15507
15508 * src/parse-gram.y (YYPRINT, yyprint): Don't mess with the parser
15509 internals.
15510 * src/reader.h, src/reader.c (grammar_current_rule_prec_set):
15511 Takes a location.
15512 * src/symtab.h, src/symtab.c (symbol_class_set)
15513 (symbol_user_token_number_set): Likewise.
15514 Adjust all callers.
15515 Promote complain_at.
15516 * tests/input.at (Type Clashes): Adjust.
15517
15518 2002-06-20 Akim Demaille <akim@epita.fr>
15519
15520 * data/bison.simple (YYLEX): Fix the declaration when
15521 %pure-parser.
15522
15523 2002-06-20 Akim Demaille <akim@epita.fr>
15524
15525 * data/bison.simple (yysymprint): Don't print the token number,
15526 just its name.
15527 * tests/actions.at (Destructors): Rename as...
15528 (Printers and Destructors): this.
15529 Also exercise %printer.
15530
15531 2002-06-20 Akim Demaille <akim@epita.fr>
15532
15533 * data/bison.simple (YYDSYMPRINT): New.
15534 Use it to remove many of the #if YYDEBUG/if (yydebug).
15535
15536 2002-06-20 Akim Demaille <akim@epita.fr>
15537
15538 * src/symtab.h, src/symtab.c (symbol_t): printer and
15539 printer_location are new members.
15540 (symbol_printer_set): New.
15541 * src/parse-gram.y (PERCENT_PRINTER): New token.
15542 Handle its associated rule.
15543 * src/scan-gram.l: Adjust.
15544 (handle_destructor_at, handle_destructor_dollar): Rename as...
15545 (handle_symbol_code_at, handle_symbol_code_dollar): these.
15546 * src/output.c (symbol_printers_output): New.
15547 (output_skeleton): Call it.
15548 * data/bison.simple (yysymprint): New. Cannot be named yyprint
15549 since there are already many grammar files with a user `yyprint'.
15550 Replace the calls to YYPRINT to calls to yysymprint.
15551 * tests/calc.at: Adjust.
15552 * tests/torture.at (AT_DATA_STACK_TORTURE): Remove YYPRINT: it was
15553 taking advantage of parser very internal details (stack size!).
15554
15555 2002-06-20 Akim Demaille <akim@epita.fr>
15556
15557 * src/scan-gram.l: Complete the scanner with the missing patterns
15558 to pacify Flex.
15559 Use `quote' and `symbol_tag_get' where appropriate.
15560
15561 2002-06-19 Akim Demaille <akim@epita.fr>
15562
15563 * tests/actions.at (Destructors): Augment to test locations.
15564 * data/bison.simple (yydestructor): Pass it the current location
15565 if locations are enabled.
15566 Prototype only when __STDC__ or C++.
15567 Change the argument names to move into the yy name space: there is
15568 user code here.
15569
15570 2002-06-19 Akim Demaille <akim@epita.fr>
15571
15572 * data/bison.simple (b4_pure_if): New.
15573 Use it instead of #ifdef YYPURE.
15574
15575 2002-06-19 Akim Demaille <akim@epita.fr>
15576
15577 * data/bison.simple (b4_location_if): New.
15578 Use it instead of #ifdef YYLSP_NEEDED.
15579
15580 2002-06-19 Akim Demaille <akim@epita.fr>
15581
15582 Prepare @$ in %destructor, but currently don't bind it in the
15583 skeleton, as %location use is not cleaned up yet.
15584
15585 * src/scan-gram.l (handle_dollar, handle_destructor_at)
15586 (handle_action_at): New.
15587 (handle_at, handle_action_dollar, handle_destructor_dollar): Take
15588 a braced_code_t and a location as additional arguments.
15589 (handle_destructor_dollar): Instead of requiring `b4_eval', just
15590 unquote one when outputting `b4_dollar_dollar'.
15591 Adjust callers.
15592 * data/bison.simple (b4_eval): Remove.
15593 (b4_symbol_destructor): Adjust.
15594 * tests/input.at (Invalid @n): Adjust.
15595
15596 2002-06-19 Zack Weinberg <zack@codesourcery.com>
15597
15598 * doc/bison.texinfo: Document ability to have multiple
15599 prologue sections.
15600
15601 2002-06-18 Akim Demaille <akim@epita.fr>
15602
15603 * src/files.c (compute_base_names): When computing the output file
15604 names from the input file name, strip the directory part.
15605
15606 2002-06-18 Akim Demaille <akim@epita.fr>
15607
15608 * data/bison.simple.new: Comment changes.
15609 Reported by Andreas Schwab.
15610
15611 2002-06-18 Matt Kraai <kraai@alumni.cmu.edu>
15612
15613 * data/bison.simple (yyoverflowlab): #ifndef yyoverflow, so that
15614 there are no `label `yyoverflowlab' defined but not used' warnings
15615 when yyoverflow is defined.
15616
15617 2002-06-18 Akim Demaille <akim@epita.fr>
15618
15619 * src/symtab.h, src/symtab.c (symbol_t): destructor_location is a
15620 new member.
15621 (symbol_destructor_set): Adjust.
15622 * src/output.c (symbol_destructors_output): Output the destructor
15623 locations.
15624 Output the symbol name.
15625 * data/bison.simple (b4_symbol_destructor): Adjust.
15626
15627 2002-06-18 Cris Bailiff <c.bailiff@awayweb.com>
15628 and Akim Demaille <akim@epita.fr>
15629
15630 * data/bison.simple.new (yyerrlab1): Be sure to pop and destroy
15631 what's left on the stack when the error recovery hits EOF.
15632 * tests/actions.at (Destructors): Complete to exercise this case.
15633
15634 2002-06-17 Akim Demaille <akim@epita.fr>
15635
15636 * data/m4sugar/m4sugar.m4 (m4_map): Recognize when the list of
15637 arguments is really empty, not only equal to `[]'.
15638 * src/symtab.h, src/symtab.c (symbol_t): `destructor' is a new
15639 member.
15640 (symbol_destructor_set): New.
15641 * src/output.c (symbol_destructors_output): New.
15642 * src/reader.h (brace_code_t, current_braced_code): New.
15643 * src/scan-gram.l (BRACED_CODE): Use it to branch on...
15644 (handle_dollar): Rename as...
15645 (handle_action_dollar): this.
15646 (handle_destructor_dollar): New.
15647 * src/parse-gram.y (PERCENT_DESTRUCTOR): New.
15648 (grammar_declaration): Use it.
15649 * data/bison.simple (yystos): Is always defined.
15650 (yydestructor): New.
15651 * tests/actions.at (Destructors): New.
15652 * tests/calc.at (_AT_CHECK_CALC_ERROR): Don't rely on egrep.
15653
15654 2002-06-17 Akim Demaille <akim@epita.fr>
15655
15656 * src/symlist.h, src/symlist.c (symbol_list_length): New.
15657 * src/scan-gram.l (handle_dollar, handle_at): Compute the
15658 rule_length only when needed.
15659 * src/output.c (actions_output, token_definitions_output): Output
15660 the full M4 block.
15661 * src/symtab.c: Don't access directly to the symbol tag, use
15662 symbol_tag_get.
15663 * src/parse-gram.y: Use symbol_list_free.
15664
15665 2002-06-17 Akim Demaille <akim@epita.fr>
15666
15667 * src/reader.h, src/reader.c (symbol_list, symbol_list_new)
15668 (symbol_list_prepend, get_type_name): Move to...
15669 * src/symlist.h, src/symlist.c (symbol_list_t, symbol_list_new)
15670 (symbol_list_prepend, symbol_list_n_type_name_get): here.
15671 Adjust all callers.
15672 (symbol_list_free): New.
15673 * src/scan-gram.l (handle_dollar): Takes a location.
15674 * tests/input.at (Invalid $n): Adjust.
15675
15676 2002-06-17 Akim Demaille <akim@epita.fr>
15677
15678 * src/reader.h, src/reader.c (symbol_list_new): Export it.
15679 (symbol_list_prepend): New.
15680 * src/parse-gram.y (%union): `list' is a new member.
15681 (symbols.1): New, replaces...
15682 (terms_to_prec.1, nterms_to_type.1): these.
15683 * src/symtab.h, src/symtab.c (symbol_type_set, symbol_precedence_set)
15684 Take a location as additional argument.
15685 Adjust all callers.
15686
15687 2002-06-15 Akim Demaille <akim@epita.fr>
15688
15689 * src/parse-gram.y: Move %token in the declaration section so that
15690 we don't depend upon CVS Bison.
15691
15692 2002-06-15 Akim Demaille <akim@epita.fr>
15693
15694 * src/state.h, src/state.c (state_rule_lookaheads_print): New.
15695 * src/print.c (print_core): Use it.
15696
15697 2002-06-15 Akim Demaille <akim@epita.fr>
15698
15699 * src/conflicts.c (log_resolution): Accept the rule involved in
15700 the sr conflicts instead of the lookahead number that points to
15701 that rule.
15702 (flush_reduce): Accept the current lookahead vector as argument,
15703 instead of the index in LA.
15704 (resolve_sr_conflict): Accept the current number of lookahead
15705 bitset to consider for the STATE, instead of the index in LA.
15706 (set_conflicts): Adjust.
15707 * src/lalr.c, src/lalr.h, src/state.h: Comment changes.
15708
15709 2002-06-15 Akim Demaille <akim@epita.fr>
15710
15711 * src/state.h (state_t): Replace the `lookaheadsp' member, a
15712 short, with `lookaheads' (bitsetv), `lookaheads_rule' (rule_t**).
15713 Adjust all dependencies.
15714 * src/lalr.c (initialize_lookaheads): Split into...
15715 (states_lookaheads_count, states_lookaheads_initialize): these.
15716 (lalr): Adjust.
15717
15718 2002-06-15 Akim Demaille <akim@epita.fr>
15719
15720 * src/gram.h, src/gram.c (grammar_rules_partial_print): New, eved
15721 out of...
15722 (grammar_rules_print): here.
15723 * src/reduce.c (reduce_output): Use it.
15724 * tests/reduce.at (Useless Rules, Reduced Automaton)
15725 (Underivable Rules): Adjust.
15726
15727 2002-06-15 Akim Demaille <akim@epita.fr>
15728
15729 Copy BYacc's nice way to report the grammar.
15730
15731 * src/gram.h, src/gram.c (grammar_rhs_print, grammar_rules_print):
15732 New.
15733 Don't print the rules' location, it is confusing and useless.
15734 (rule_print): Use grammar_rhs_print.
15735 * src/print.c (print_grammar): Use grammar_rules_print.
15736
15737 2002-06-15 Akim Demaille <akim@epita.fr>
15738
15739 Complete and rationalize `useless thing' warnings.
15740
15741 * src/symtab.h, src/symtab.c (symbol_tag_get, symbol_tag_get_n)
15742 (symbol_tag_print): New.
15743 Use them everywhere in place of accessing directly the tag member.
15744 * src/gram.h, src/gram.c (rule_print): New.
15745 Use it where a rule used to be printed `by hand'.
15746 * src/reduce.c (nonterminals_reduce): Report the use nonterminals.
15747 (reduce_grammar_tables): Report the useless rules.
15748 (reduce_print): Useless things are a warning, not an error.
15749 Report it as such.
15750 * tests/reduce.at (Useless Nonterminals, Useless Rules):
15751 (Reduced Automaton, Underivable Rules): Adjust.
15752 * tests/regression.at (Web2c Report, Web2c Report): Adjust.
15753 * tests/conflicts.at (Unresolved SR Conflicts)
15754 (Solved SR Conflicts): Adjust.
15755
15756 2002-06-15 Akim Demaille <akim@epita.fr>
15757
15758 Let symbols have a location.
15759
15760 * src/symtab.h, src/symtab.c (symbol_t): Location is a new member.
15761 (getsym): Adjust.
15762 Adjust all callers.
15763 * src/complain.h, src/complain.c (complain_at, fatal_at, warn_at):
15764 Use location_t, not int.
15765 * src/symtab.c (symbol_check_defined): Take advantage of the
15766 location.
15767 * tests/regression.at (Invalid inputs): Adjust.
15768
15769 2002-06-15 Akim Demaille <akim@epita.fr>
15770
15771 * src/parse-gram.y (YYLLOC_DEFAULT, current_lhs_location): New.
15772 (input): Don't try to initialize yylloc here, do it in the
15773 scanner.
15774 * src/scan-gram.l (YY_USER_INIT): Initialize yylloc.
15775 * src/gram.h (rule_t): Change line and action_line into location
15776 and action_location, of location_t type.
15777 Adjust all dependencies.
15778 * src/location.h, src/location.c (empty_location): New.
15779 * src/reader.h, src/reader.c (grammar_start_symbol_set)
15780 (grammar_symbol_append, grammar_rule_begin, grammar_rule_end)
15781 (grammar_current_rule_symbol_append)
15782 (grammar_current_rule_action_append): Expect a location as argument.
15783 * src/reader.c (grammar_midrule_action): Adjust to attach an
15784 action's location as dummy symbol location.
15785 * src/symtab.h, src/symtab.c (startsymbol_location): New.
15786 * tests/regression.at (Web2c Report, Rule Line Numbers): Adjust
15787 the line numbers.
15788
15789 2002-06-14 Akim Demaille <akim@epita.fr>
15790
15791 Grammar declarations may be found in the grammar section.
15792
15793 * src/parse-gram.y (rules_or_grammar_declaration): New.
15794 (declarations): Each declaration may end with a semicolon, not
15795 just...
15796 (grammar_declaration): `"%union"'.
15797 (grammar): Branch to rules_or_grammar_declaration.
15798
15799 2002-06-14 Akim Demaille <akim@epita.fr>
15800
15801 * src/main.c (main): Invoke scanner_free.
15802
15803 2002-06-14 Akim Demaille <akim@epita.fr>
15804
15805 * src/output.c (m4_invoke): Extracted from...
15806 (output_skeleton): here.
15807 Free tempfile.
15808
15809 2002-06-14 Akim Demaille <akim@epita.fr>
15810
15811 * src/parse-gram.y (directives, directive, gram)
15812 (grammar_directives, precedence_directives, precedence_directive):
15813 Rename as...
15814 (declarations, declaration, grammar, grammar_declaration)
15815 (precedence_declaration, precedence_declarator): these.
15816 (symbol_declaration): New.
15817
15818 2002-06-14 Akim Demaille <akim@epita.fr>
15819
15820 * src/files.c (action_obstack): Remove, unused.
15821 (output_obstack): Remove it, and all its dependencies, as it is no
15822 longer needed.
15823 * src/reader.c (epilogue_set): Build the epilogue in the
15824 muscle_obstack.
15825 * src/output.h, src/output.c (muscle_obstack): Move to...
15826 * src/muscle_tab.h, src/muscle_tab.h: here.
15827 (muscle_init): Initialize muscle_obstack.
15828 (muscle_free): New.
15829 * src/main.c (main): Call it.
15830
15831 2002-06-14 Akim Demaille <akim@epita.fr>
15832
15833 * src/location.h: New, extracted from...
15834 * src/reader.h: here.
15835 * src/Makefile.am (noinst_HEADERS): Merge into
15836 (bison_SOURCES): this.
15837 Add location.h.
15838 * src/parse-gram.y: Use location_t instead of Bison's.
15839 * src/reader.h, src/reader.c (prologue_augment, epilogue_set):
15840 Use location_t instead of ints.
15841
15842 2002-06-14 Akim Demaille <akim@epita.fr>
15843
15844 * data/bison.simple, data/bison.c++: Be sure to restore the
15845 current #line when returning to the skeleton contents after having
15846 exposed the input file's #line.
15847
15848 2002-06-12 Akim Demaille <akim@epita.fr>
15849
15850 * src/scan-gram.l (SC_BRACED_CODE): Don't use `<.*>', it is too
15851 eager.
15852 * tests/actions.at (Exotic Dollars): New.
15853
15854 2002-06-12 Akim Demaille <akim@epita.fr>
15855
15856 * src/scan-gram.l (SC_PROLOGUE): Don't eat characters amongst
15857 ['"/] too eagerly.
15858 * tests/input.at (Torturing the Scanner): New.
15859
15860 2002-06-11 Akim Demaille <akim@epita.fr>
15861
15862 * src/scan-gram.l (YY_OBS_INIT): Remove, replace with...
15863 [SC_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE]
15864 [SC_EPILOGUE]: Output the quadrigraphs only when not in a comment.
15865 * src/reader.h, src/scan-gram.l (scanner_initialize): this.
15866 * src/reader.c (reader): Use it.
15867
15868 2002-06-11 Akim Demaille <akim@epita.fr>
15869
15870 * src/scan-gram.l (YY_OBS_FINISH): Don't set yylval.
15871 Adjust all callers.
15872 (scanner_last_string_free): New.
15873
15874 2002-06-11 Akim Demaille <akim@epita.fr>
15875
15876 * src/scan-gram.l (YY_INIT, YY_GROW, YY_FINISH): Rename as...
15877 (YY_OBS_INIT, YY_OBS_GROW, YY_OBS_FINISH): these.
15878 (last_string, YY_OBS_FREE): New.
15879 Use them when returning an ID.
15880
15881 2002-06-11 Akim Demaille <akim@epita.fr>
15882
15883 Have Bison grammars parsed by a Bison grammar.
15884
15885 * src/reader.c, src/reader.h (prologue_augment): New.
15886 * src/reader.c (copy_definition): Remove.
15887
15888 * src/reader.h, src/reader.c (gram_start_symbol_set, prologue_augment)
15889 (grammar_symbol_append, grammar_rule_begin, grammar_midrule_action)
15890 (grammar_current_rule_prec_set, grammar_current_rule_check)
15891 (grammar_current_rule_symbol_append)
15892 (grammar_current_rule_action_append): Export.
15893 * src/parse-gram.y (symbol_list_new, symbol_list_symbol_append_
15894 (symbol_list_action_append): Remove.
15895 Hook the routines from reader.
15896 * src/scan-gram.l: In INITIAL, characters and strings are tokens.
15897 * src/system.h (ATTRIBUTE_NORETURN, ATTRIBUTE_UNUSED): Now.
15898
15899 * src/reader.c (read_declarations): Remove, unused.
15900
15901 * src/parse-gram.y: Handle the epilogue.
15902 * src/reader.h, src/reader.c (gram_start_symbol_set): Rename as...
15903 (grammar_start_symbol_set): this.
15904 * src/scan-gram.l: Be sure to ``use'' yycontrol to keep GCC quiet.
15905 * src/reader.c (readgram): Remove, unused.
15906 (reader): Adjust to insert eoftoken and axiom where appropriate.
15907
15908 * src/reader.c (copy_dollar): Replace with...
15909 * src/scan-gram.h (handle_dollar): this.
15910 * src/parse-gram.y: Remove `%thong'.
15911
15912 * src/reader.c (copy_at): Replace with...
15913 * src/scan-gram.h (handle_at): this.
15914
15915 * src/complain.h, src/complain.c (warn_at, complain_at, fatal_at):
15916 New.
15917
15918 * src/scan-gram.l (YY_LINES): Keep lineno synchronized for the
15919 time being.
15920
15921 * src/reader.h, src/reader.c (grammar_rule_end): New.
15922
15923 * src/parse.y (current_type, current_class): New.
15924 Implement `%nterm', `%token' support.
15925 Merge `%term' into `%token'.
15926 (string_as_id): New.
15927 * src/symtab.h, src/symtab.c (symbol_make_alias): Don't pass the
15928 type name.
15929
15930 * src/parse-gram.y: Be sure to handle properly the beginning of
15931 rules.
15932
15933 * src/parse-gram.y: Handle %type.
15934 * src/reader.c (grammar_rule_end): Call grammar_current_rule_check.
15935
15936 * src/parse-gram.y: More directives support.
15937 * src/options.c: No longer handle source directives.
15938
15939 * src/parse-gram.y: Fix %output.
15940
15941 * src/parse-gram.y: Handle %union.
15942 Use the prologue locations.
15943 * src/reader.c (parse_union_decl): Remove.
15944
15945 * src/reader.h, src/reader.c (epilogue_set): New.
15946 * src/parse-gram.y: Use it.
15947
15948 * data/bison.simple, data/bison.c++: b4_stype is now either not
15949 defined, then default to int, or to the contents of %union,
15950 without `union' itself.
15951 Adjust.
15952 * src/muscle_tab.c (muscle_init): Don't predefine `stype'.
15953
15954 * src/output.c (actions_output): Don't output braces, as they are
15955 already handled by the scanner.
15956
15957 * src/scan-gram.l (SC_CHARACTER): Set the user_token_number of
15958 characters to themselves.
15959
15960 * tests/reduce.at (Reduced Automaton): End the grammars with %% so
15961 that the epilogue has a proper #line.
15962
15963 * src/parse-gram.y: Handle precedence/associativity.
15964
15965 * src/symtab.c (symbol_precedence_set): Requires the symbol to be
15966 a terminal.
15967 * src/scan-gram.l (SC_BRACED_CODE): Catch strings and characters.
15968 * tests/calc.at: Do not use `%token "foo"' as it makes not sense
15969 at all to define terminals that cannot be emitted.
15970
15971 * src/scan-gram.l: Escape M4 characters.
15972
15973 * src/scan-gram.l: Working properly with escapes in user
15974 strings/characters.
15975
15976 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR)
15977 (AT_DATA_HORIZONTAL_GRAMMAR): Respect the `%token ID NUM STRING'
15978 grammar.
15979 Use more modest sizes, as for the time being the parser does not
15980 release memory, and therefore the process swallows a huge amount
15981 of memory.
15982
15983 * tests/torture.at (AT_DATA_LOOKAHEADS_GRAMMAR): Adjust to the
15984 stricter %token grammar.
15985
15986 * src/symtab.h (associativity): Add `undef_assoc'.
15987 (symbol_precedence_set): Do nothing when passed an undef_assoc.
15988 * src/symtab.c (symbol_check_alias_consistence): Adjust.
15989
15990 * tests/regression.at (Invalid %directive): Remove, as it is now
15991 meaningless.
15992 (Invalid inputs): Adjust to the new error messages.
15993 (Token definitions): The new grammar doesn't allow too many
15994 eccentricities.
15995
15996 * src/lex.h, src/lex.c: Remove.
15997 * src/reader.c (lastprec, skip_to_char, read_signed_integer)
15998 (copy_character, copy_string2, copy_string, copy_identifier)
15999 (copy_comment, parse_token_decl, parse_type_decl, parse_assoc_decl)
16000 (parse_muscle_decl, parse_dquoted_param, parse_skel_decl)
16001 (parse_action): Remove.
16002 * po/POTFILES.in: Adjust.
16003
16004 2002-06-11 Akim Demaille <akim@epita.fr>
16005
16006 * src/reader.c (parse_action): Don't store directly into the
16007 rule's action member: return the action as a string.
16008 Don't require `rule_length' as an argument: compute it.
16009 (grammar_current_rule_symbol_append)
16010 (grammar_current_rule_action_append): New, eved out from
16011 (readgram): here.
16012 Remove `action_flag', `rulelength', unused now.
16013
16014 2002-06-11 Akim Demaille <akim@epita.fr>
16015
16016 * src/reader.c (grammar_current_rule_prec_set).
16017 (grammar_current_rule_check): New, eved out from...
16018 (readgram): here.
16019 Remove `xaction', `first_rhs': useless.
16020 * tests/input.at (Type clashes): New.
16021 * tests/existing.at (GNU Cim Grammar): Adjust.
16022
16023 2002-06-11 Akim Demaille <akim@epita.fr>
16024
16025 * src/reader.c (grammar_midrule_action): New, Eved out from
16026 (readgram): here.
16027
16028 2002-06-11 Akim Demaille <akim@epita.fr>
16029
16030 * src/reader.c (grammar_rule_begin, previous_rule, current_rule):
16031 New.
16032 (readgram): Use them as replacement of inlined code, crule and
16033 crule1.
16034
16035 2002-06-11 Akim Demaille <akim@epita.fr>
16036
16037 * src/reader.c (grammar_end, grammar_symbol_append): New.
16038 (readgram): Use them.
16039 Make the use of `p' as local as possible.
16040
16041 2002-06-10 Akim Demaille <akim@epita.fr>
16042
16043 GCJ's parser requires the tokens to be defined before the prologue.
16044
16045 * data/bison.simple: Output the token definition before the user's
16046 prologue.
16047 * tests/regression.at (Braces parsing, Duplicate string)
16048 (Mixing %token styles): Check the output from bison.
16049 (Early token definitions): New.
16050
16051 2002-06-10 Akim Demaille <akim@epita.fr>
16052
16053 * src/symtab.c (symbol_user_token_number_set): Don't complain when
16054 assigning twice the same user number to a token, so that we can
16055 use it in...
16056 * src/lex.c (lex): here.
16057 Also use `symbol_class_set' instead of hand written code.
16058 * src/reader.c (parse_assoc_decl): Likewise.
16059
16060 2002-06-10 Akim Demaille <akim@epita.fr>
16061
16062 * src/symtab.c, src/symtab.c (symbol_class_set)
16063 (symbol_user_token_number_set): New.
16064 * src/reader.c (parse_token_decl): Use them.
16065 Use a switch instead of ifs.
16066 Use a single argument.
16067
16068 2002-06-10 Akim Demaille <akim@epita.fr>
16069
16070 Remove `%thong' support as it is undocumented, unused, duplicates
16071 `%token's job, and creates useless e-mail traffic with people who
16072 want to know what it is, why it is undocumented, unused, and
16073 duplicates `%token's job.
16074
16075 * src/reader.c (parse_thong_decl): Remove.
16076 * src/options.c (option_table): Remove "thong".
16077 * src/lex.h (tok_thong): Remove.
16078
16079 2002-06-10 Akim Demaille <akim@epita.fr>
16080
16081 * src/symtab.c, src/symtab.c (symbol_type_set)
16082 (symbol_precedence_set): New.
16083 * src/reader.c (parse_type_decl, parse_assoc_decl): Use them.
16084 (value_components_used): Remove, unused.
16085
16086 2002-06-09 Akim Demaille <akim@epita.fr>
16087
16088 Move symbols handling code out of the reader.
16089
16090 * src/reader.h, src/reader.c (errtoken, undeftoken, eoftoken)
16091 (axiom): Move to...
16092 * src/symtab.h, src/symtab.c: here.
16093
16094 * src/gram.c (start_symbol): Remove: use startsymbol->number.
16095 * src/reader.c (startval): Rename as...
16096 * src/symtab.h, src/symtab.c (startsymbol): this.
16097 * src/reader.c: Adjust.
16098
16099 * src/reader.c (symbol_check_defined, symbol_make_alias)
16100 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
16101 (token_translations_init)
16102 Move to...
16103 * src/symtab.c: here.
16104 * src/reader.c (packsymbols): Move to...
16105 * src/symtab.h, src/symtab.c (symbols_pack): here.
16106 * src/symtab.h, src/symtab.c (symbol_make_alias): Takes SYMVAL as
16107 argument.
16108
16109 2002-06-03 Akim Demaille <akim@epita.fr>
16110
16111 * src/muscle_tab.c (muscle_insert, muscle_find): Declarations,
16112 then statements.
16113
16114 2002-06-03 Akim Demaille <akim@epita.fr>
16115
16116 * src/muscle_tab.c (muscle_find, muscle_insert): Don't initialize
16117 structs with non literals.
16118 * src/scan-skel.l: never-interactive.
16119 * src/conflicts.c (enum conflict_resolution_e): No trailing
16120 comma.
16121 * src/getargs.c (usage): Split long literal strings.
16122 Reported by Hans Aberg.
16123
16124 2002-05-28 Akim Demaille <akim@epita.fr>
16125
16126 * data/bison.c++: Use C++ ostreams.
16127 (cdebug_): New member.
16128
16129 2002-05-28 Akim Demaille <akim@epita.fr>
16130
16131 * src/output.c (output_skeleton): Be sure to allocate enough room
16132 for `/' _and_ for `\0' in full_skeleton.
16133
16134 2002-05-28 Akim Demaille <akim@epita.fr>
16135
16136 * data/bison.c++: Catch up with bison.simple:
16137 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16138 and Paul Eggert <eggert@twinsun.com>: `error' handing.
16139 2002-05-26 Akim Demaille <akim@epita.fr>: stos_, token_number_,
16140 and popping traces.
16141
16142 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16143
16144 * src/output.c (output_skeleton): Put an explicit path in front of
16145 the skeleton file name, rather than relying on the -I directory,
16146 to partially alleviate effects of having a skeleton file lying around
16147 in the current directory.
16148
16149 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16150
16151 * src/conflicts.c (log_resolution): Correct typo:
16152 obstack_printf should be obstack_fgrow1.
16153
16154 2002-05-26 Akim Demaille <akim@epita.fr>
16155
16156 * src/state.h (state_t): `solved_conflicts' is a new member.
16157 * src/LR0.c (new_state): Set it to 0.
16158 * src/conflicts.h, src/conflicts.c (print_conflicts)
16159 (free_conflicts, solve_conflicts): Rename as...
16160 (conflicts_print, conflicts_free, conflicts_solve): these.
16161 Adjust callers.
16162 * src/conflicts.c (enum conflict_resolution_e)
16163 (solved_conflicts_obstack): New, used by...
16164 (log_resolution): this.
16165 Adjust to attach the conflict resolution to each state.
16166 Complete the description with the precedence/associativity
16167 information.
16168 (resolve_sr_conflict): Adjust.
16169 * src/print.c (print_state): Output its solved_conflicts.
16170 * tests/conflicts.at (Unresolved SR Conflicts)
16171 (Solved SR Conflicts): Exercise --report=all.
16172
16173 2002-05-26 Akim Demaille <akim@epita.fr>
16174
16175 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
16176 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
16177 * src/reader.c, src/reduce.c, src/state.h, src/symtab.h
16178 (token_number_t, item_number_as_token_number)
16179 (token_number_as_item_number, muscle_insert_token_number_table):
16180 Rename as...
16181 (symbol_number_t, item_number_as_symbol_number)
16182 (symbol_number_as_item_number, muscle_insert_symbol_number_table):
16183 these, since it is more appropriate.
16184
16185 2002-05-26 Akim Demaille <akim@epita.fr>
16186
16187 * tests/calc.at (AT_CHECK_CALC): Adjust: there are now additional
16188 `Error:' lines.
16189 * data/bison.simple (yystos) [YYDEBUG]: New.
16190 (yyparse) [YYDEBUG]: Display the symbols which are popped during
16191 error recovery.
16192 * tests/regression.at (Web2c Actions): Adjust: yystos is output now.
16193
16194 2002-05-25 Akim Demaille <akim@epita.fr>
16195
16196 * doc/bison.texinfo (Debugging): Split into...
16197 (Tracing): this new section, its former contents, and...
16198 (Understanding): this new section.
16199 * src/getargs.h, src/getargs.c (verbose_flag): Remove, replaced
16200 by...
16201 (report_flag): this.
16202 Adjust all dependencies.
16203 (report_args, report_types, report_argmatch): New.
16204 (usage, getargs): Report/support -r, --report.
16205 * src/options.h
16206 (struct option_table_struct): Rename as..,
16207 (struct option_table_s): this.
16208 Rename the `set_flag' member to `flag' to match with getopt_long's
16209 struct.
16210 * src/options.c (option_table): Split verbose into an entry for
16211 %verbose, and another for --verbose.
16212 Support --report/-r, so remove -r from the obsolete --raw.
16213 * src/print.c: Attach full item sets and lookaheads reports to
16214 report_flag instead of trace_flag.
16215 * lib/argmatch.h, lib/argmatch.c: New, from Fileutils 4.1.
16216
16217 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16218 and Paul Eggert <eggert@twinsun.com>
16219
16220 * data/bison.simple (yyparse): Correct error handling to conform to
16221 POSIX and yacc. Specifically, after syntax error is discovered,
16222 do not reduce further before shifting the error token.
16223 Clean up the code a bit by removing the labels yyerrdefault,
16224 yyerrhandle, yyerrpop.
16225 * NEWS: Document the above.
16226
16227 2002-05-20 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16228
16229 * data/bison.simple (yyr1): Don't use yy_token_number_type as element
16230 type; it isn't always big enough, since it doesn't necessarily
16231 include non-terminals.
16232 (yytranslate): Expand definition of yy_token_number_type, so that
16233 the latter can be removed.
16234 (yy_token_number_type): Remove, only one use.
16235 * data/bison.c++ (r1_): Parallel change to yyr1 in bison.simple---
16236 don't use TokenNumberType as element type.
16237
16238 * tests/regression.at: Modify expected output to agree with change
16239 to yyr1 and yytranslate.
16240
16241 2002-05-13 Florian Krohm <florian@edamail.fishkill.ibm.com>
16242
16243 * src/reader.c (parse_action): Use copy_character instead of
16244 obstack_1grow.
16245
16246 2002-05-13 Akim Demaille <akim@epita.fr>
16247
16248 * tests/regression.at (Token definitions): Prototype yylex and
16249 yyerror.
16250
16251 2002-05-12 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16252
16253 * src/scan-skel.l: Correct off-by-one error in handling of __oline__.
16254 * data/bison.simple (b4_sint_type, b4_uint_type): Correct to reflect
16255 32-bit arithmetic.
16256 * data/bison.c++ (b4_sint_type, b4_uint_type): Ditto.
16257
16258 2002-05-07 Akim Demaille <akim@epita.fr>
16259
16260 * tests/synclines.at: Be sure to prototype yylex and yyerror to
16261 avoid GCC warnings.
16262
16263 2002-05-07 Akim Demaille <akim@epita.fr>
16264
16265 Kill GCC warnings.
16266
16267 * src/reduce.c (nonterminals_reduce): Don't loop over RITEM: loop
16268 over the RHS of each rule.
16269 * src/gram.h, src/gram.c (nritems): Is `unsigned int', not int.
16270 * src/state.h (state_t): Member `nitems' is unsigned short.
16271 * src/LR0.c (get_state): Adjust.
16272 * src/reader.c (packgram): Likewise.
16273 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): `max' is of type
16274 `Type'.
16275 (muscle_insert_int_table): Remove, unused.
16276 (prepare_rules): Remove `max'.
16277
16278 2002-05-06 Akim Demaille <akim@epita.fr>
16279
16280 * src/closure.c (print_firsts): Display of the symbol tags.
16281 (bitmatrix_print): Move to...
16282 * lib/bitsetv-print.h, lib/bitsetv-print.c (bitsetv_matrix_dump):
16283 here.
16284 * tests/sets.at (Nullable, Broken Closure, Firsts): Adjust.
16285
16286 2002-05-06 Akim Demaille <akim@epita.fr>
16287
16288 * src/muscle_tab.c (muscle_m4_output): Must return TRUE for
16289 hash_do_for_each.
16290
16291 2002-05-06 Akim Demaille <akim@epita.fr>
16292
16293 * src/LR0.c (new_state, get_state): Instead of using the global
16294 `kernel_size' and `kernel_base', have two new arguments:
16295 `core_size' and `core'.
16296 Adjust callers.
16297
16298 2002-05-06 Akim Demaille <akim@epita.fr>
16299
16300 * src/reader.c (packgram): No longer end `ritem' with a 0
16301 sentinel: it is not used.
16302
16303 2002-05-05 Akim Demaille <akim@epita.fr>
16304
16305 New experimental feature: display the lookaheads in the report and
16306 graph.
16307
16308 * src/print (print_core): When --trace-flag, display the rules
16309 lookaheads.
16310 * src/print_graph.c (print_core): Likewise.
16311 Swap the arguments.
16312 Adjust caller.
16313
16314 2002-05-05 Akim Demaille <akim@epita.fr>
16315
16316 * tests/torture.at (Many lookaheads): New test.
16317
16318 2002-05-05 Akim Demaille <akim@epita.fr>
16319
16320 * src/output.c (GENERATE_OUTPUT_TABLE): Replace with...
16321 (GENERATE_MUSCLE_INSERT_TABLE): this.
16322 (output_int_table, output_unsigned_int_table, output_short_table)
16323 (output_token_number_table, output_item_number_table): Replace with...
16324 (muscle_insert_int_table, muscle_insert_unsigned_int_table)
16325 (muscle_insert_short_table, muscle_insert_token_number_table)
16326 (muscle_insert_item_number_table): these.
16327 Adjust all callers.
16328 (prepare_tokens): Don't free `translations', since...
16329 * src/reader.h, src/reader.c (grammar_free): do it.
16330 Move to...
16331 * src/gram.h, src/gram.c (grammar_free): here.
16332 * data/bison.simple, data/bison.c++: b4_token_number_max is now
16333 b4_translate_max.
16334
16335 2002-05-05 Akim Demaille <akim@epita.fr>
16336
16337 * src/output.c (output_unsigned_int_table): New.
16338 (prepare_rules): `i' is unsigned.
16339 `prhs', `rline', `r2' are unsigned int.
16340 Rename muscle `rhs_number_max' as `rhs_max'.
16341 Output muscles `prhs_max', `rline_max', and `r2_max'.
16342 Free rline and r1.
16343 * data/bison.simple, data/bison.c++: Adjust to use these muscles
16344 to compute types instead of constant types.
16345 * tests/regression.at (Web2c Actions): Adjust.
16346
16347 2002-05-04 Akim Demaille <akim@epita.fr>
16348
16349 * src/symtab.h (SALIAS, SUNDEF): Rename as...
16350 (USER_NUMBER_ALIAS, USER_NUMBER_UNDEFINED): these.
16351 Adjust dependencies.
16352 * src/output.c (token_definitions_output): Be sure not to output a
16353 `#define 'a'' when fed with `%token 'a' "a"'.
16354 * tests/regression.at (Token definitions): New.
16355
16356 2002-05-03 Paul Eggert <eggert@twinsun.com>
16357
16358 * data/bison.simple (b4_token_defines): Also define YYTOKENTYPE
16359 for K&R C.
16360
16361 2002-05-03 gettextize <bug-gnu-gettext@gnu.org>
16362
16363 * Makefile.am (SUBDIRS): Remove intl.
16364 (EXTRA_DIST): Add config/config.rpath.
16365
16366 2002-05-03 Akim Demaille <akim@epita.fr>
16367
16368 * data/bison.simple (m4_if): Don't output empty enums.
16369 And actually, output valid enum definitions :(.
16370
16371 2002-05-03 Akim Demaille <akim@epita.fr>
16372
16373 * configure.bat: Remove, completely obsolete.
16374 * Makefile.am (EXTRA_DIST): Adjust.
16375 Don't distribute config.rpath...
16376 * config/Makefile.am (EXTRA_DIST): Do it.
16377
16378 2002-05-03 Akim Demaille <akim@epita.fr>
16379
16380 * configure.in (GETTEXT_VERSION): New.
16381 Suggested by Bruno Haible for the forthcoming Gettext 0.10.3.
16382
16383 2002-05-03 Akim Demaille <akim@epita.fr>
16384
16385 * data/bison.simple (b4_token_enum): New.
16386 (b4_token_defines): Use it to output tokens both as #define and
16387 enums.
16388 Suggested by Paul Eggert.
16389 * src/output.c (token_definitions_output): Don't output spurious
16390 white spaces.
16391
16392 2002-05-03 Akim Demaille <akim@epita.fr>
16393
16394 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
16395
16396 2002-05-02 Robert Anisko <robert@lrde.epita.fr>
16397
16398 * data/bison.c++: Adapt expansion of $s and @s to the C++ parser.
16399 Update the stack class, give a try to deque as the default container.
16400
16401 2002-05-02 Akim Demaille <akim@epita.fr>
16402
16403 * data/bison.simple (yyparse): Do not implement @$ = @1.
16404 (YYLLOC_DEFAULT): Adjust to do it.
16405 * doc/bison.texinfo (Location Default Action): Fix.
16406
16407 2002-05-02 Akim Demaille <akim@epita.fr>
16408
16409 * src/reader.c (parse_braces): Merge into...
16410 (parse_action): this.
16411
16412 2002-05-02 Akim Demaille <akim@epita.fr>
16413
16414 * configure.in (ALL_LINGUAS): Remove.
16415 * po/LINGUAS, hr.po: New.
16416
16417 2002-05-02 Akim Demaille <akim@epita.fr>
16418
16419 Remove the so called hairy (semantic) parsers.
16420
16421 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove.
16422 * src/gram.h, src/gram.c (semantic_parser): Remove.
16423 (rule_t): Remove the guard and guard_line members.
16424 * src/lex.h (token_t): remove tok_guard.
16425 * src/options.c (option_table): Remove %guard and %semantic_parser
16426 support.
16427 * src/output.c, src/output.h (guards_output): Remove.
16428 (prepare): Adjust.
16429 (token_definitions_output): Don't output the `T'
16430 tokens (???).
16431 (output_skeleton): Don't output the guards.
16432 * src/files.c, src/files.c (attrsfile): Remove.
16433 * src/reader.c (symbol_list): Remove the guard and guard_line
16434 members.
16435 Adjust dependencies.
16436 (parse_guard): Remove.
16437 * data/bison.hairy: Remove.
16438 * doc/bison.texinfo (Environment Variables): Remove occurrences of
16439 BISON_HAIRY.
16440
16441 2002-05-02 Akim Demaille <akim@epita.fr>
16442
16443 * src/reader.c (copy_at, copy_dollarm parse_braces, parse_action)
16444 (parse_guard): Rename the formal argument `stack_offset' as
16445 `rule_length', which is more readable.
16446 Adjust callers.
16447 (copy_at, copy_dollar): Instead of outputting the hard coded
16448 values of $$, $n and so forth, output invocation to b4_lhs_value,
16449 b4_lhs_location, b4_rhs_value, and b4_rhs_location.
16450 Note: this patch partially drops `semantic-parser' support: it
16451 always does `rule_length - n', where semantic parsers ought to
16452 always use `-n'.
16453 * data/bison.simple, data/bison.c++ (b4_lhs_value)
16454 (b4_lhs_location, b4_rhs_value, and b4_rhs_location: New.
16455
16456 2002-05-02 Akim Demaille <akim@epita.fr>
16457
16458 * configure.in (AC_INIT): Bump to 1.49b.
16459 (AM_INIT_AUTOMAKE): Short invocation.
16460
16461 2002-05-02 Akim Demaille <akim@epita.fr>
16462
16463 Version 1.49a.
16464
16465 2002-05-01 Akim Demaille <akim@epita.fr>
16466
16467 * src/skeleton.h: Remove.
16468
16469 2002-05-01 Akim Demaille <akim@epita.fr>
16470
16471 * src/skeleton.h: Fix the #endif.
16472 Reported by Magnus Fromreide.
16473
16474 2002-04-26 Paul Eggert <eggert@twinsun.com>
16475
16476 * data/bison.simple (YYSTYPE_IS_TRIVIAL, YYLTYPE_IS_TRIVIAL):
16477 Define if we define YYSTYPE and YYLTYPE, respectively.
16478 (YYCOPY): Fix [] quoting problem in the non-GCC case.
16479
16480 2002-04-25 Robert Anisko <robert@lrde.epita.fr>
16481
16482 * src/scan-skel.l: Postprocess quadrigraphs.
16483
16484 * src/reader.c (copy_character): New function, used to output
16485 single characters while replacing `[' and `]' with quadrigraphs, to
16486 avoid troubles with M4 quotes.
16487 (copy_comment): Output characters with copy_character.
16488 (read_additionnal_code): Likewise.
16489 (copy_string2): Likewise.
16490 (copy_definition): Likewise.
16491
16492 * tests/calc.at: Exercise M4 quoting.
16493
16494 2002-04-25 Akim Demaille <akim@epita.fr>
16495
16496 * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
16497 between `!' and the command.
16498 Reported by Paul Eggert.
16499
16500 2002-04-24 Robert Anisko <robert@lrde.epita.fr>
16501
16502 * tests/calc.at: Exercise prologue splitting.
16503
16504 * data/bison.simple, data/bison.c++: Use `b4_pre_prologue' and
16505 `b4_post_prologue' instead of `b4_prologue'.
16506
16507 * src/output.c (prepare): Add the `pre_prologue' and `post_prologue'
16508 muscles.
16509 (output): Free pre_prologue_obstack and post_prologue_obstack.
16510 * src/files.h, src/files.c (attrs_obstack): Remove.
16511 (pre_prologue_obstack, post_prologue_obstack): New.
16512 * src/reader.c (copy_definition): Add a parameter to specify the
16513 obstack to fill, instead of using attrs_obstack unconditionally.
16514 (read_declarations): Pass pre_prologue_obstack to copy_definition if
16515 `%union' has not yet been seen, pass post_prologue_obstack otherwise.
16516
16517 2002-04-23 Paul Eggert <eggert@twinsun.com>
16518
16519 * data/bison.simple: Remove unnecessary commentary and white
16520 space differences from 1_29-branch.
16521 Depend on YYERROR_VERBOSE, not defined (YYERROR_VERBOSE).
16522
16523 (union yyalloc, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYCOPY,
16524 YYSTACK_RELOCATE): Do not define if yyoverflow is defined, or
16525 if this is a C++ parser and YYSTYPE or YYLTYPE has nontrivial
16526 constructors or destructors.
16527
16528 (yyparse) [! defined YYSTACK_RELOCATE]: Do not relocate the stack.
16529
16530 2002-04-23 Akim Demaille <akim@epita.fr>
16531
16532 * tests/sets.at (AT_EXTRACT_SETS): Don't use 8 char long sed labels.
16533 * tests/synclines.at (AT_TEST_SYNCLINE): Be robust to GCC's
16534 location with columns.
16535 * tests/conflicts.at (%nonassoc and eof): Don't use `error.h'.
16536 All reported by Paul Eggert.
16537
16538 2002-04-22 Akim Demaille <akim@epita.fr>
16539
16540 * src/reduce.c (dump_grammar): Move to...
16541 * src/gram.h, src/gram.c (grammar_dump): here.
16542 Be sure to separate long item numbers.
16543 Don't read the members of a rule's prec if its nil.
16544
16545 2002-04-22 Akim Demaille <akim@epita.fr>
16546
16547 * src/output.c (table_size, table_grow): New.
16548 (MAXTABLE): Remove, replace uses with table_size.
16549 (pack_vector): Instead of dying when the table is too big, grow it.
16550
16551 2002-04-22 Akim Demaille <akim@epita.fr>
16552
16553 * data/bison.simple (yyr1): Its type is that of a token number.
16554 * data/bison.c++ (r1_): Likewise.
16555 * tests/regression.at (Web2c Actions): Adjust.
16556
16557 2002-04-22 Akim Demaille <akim@epita.fr>
16558
16559 * src/reader.c (token_translations_init): 256 is now the default
16560 value for the error token, i.e., it will be assigned another
16561 number if the user assigned 256 to one of her tokens.
16562 (reader): Don't force 256 to error.
16563 * doc/bison.texinfo (Symbols): Adjust.
16564 * tests/torture.at (AT_DATA_HORIZONTAL_GRAMMAR)
16565 (AT_DATA_TRIANGULAR_GRAMMAR): Number the tokens as 1, 2, 3
16566 etc. instead of 10, 20, 30 (which was used to `jump' over error
16567 (256) and undefined (2)).
16568
16569 2002-04-22 Akim Demaille <akim@epita.fr>
16570
16571 Propagate more token_number_t.
16572
16573 * src/gram.h (token_number_as_item_number)
16574 (item_number_as_token_number): New.
16575 * src/output.c (GENERATE_OUTPUT_TABLE): New.
16576 Use it to create output_item_number_table and
16577 output_token_number_table.
16578 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
16579 * src/lex.c, src/nullable.c, src/output.c, src/print.c,
16580 * src/print_graph.c, src/reader.c, src/reduce.c, src/state.h,
16581 * src/symtab.c, src/symtab.h: Use token_number_t instead of shorts.
16582
16583 2002-04-22 Akim Demaille <akim@epita.fr>
16584
16585 * src/output.h, src/output.c (get_lines_number): Remove.
16586
16587 2002-04-19 Akim Demaille <akim@epita.fr>
16588
16589 * doc/bison.texinfo (Actions): Make clear that `|' is not the same
16590 as Lex/Flex'.
16591 (Debugging): More details about enabling the debugging features.
16592 (Table of Symbols): Describe $$, $n, @$, and @n.
16593 Suggested by Tim Josling.
16594
16595 2002-04-19 Akim Demaille <akim@epita.fr>
16596
16597 * doc/bison.texinfo: Remove the uses of the obsolete @refill.
16598
16599 2002-04-10 Akim Demaille <akim@epita.fr>
16600
16601 * src/system.h: Rely on HAVE_LIMITS_H.
16602 Suggested by Paul Eggert.
16603
16604 2002-04-09 Akim Demaille <akim@epita.fr>
16605
16606 * tests/calc.at (_AT_CHECK_CALC_ERROR): Receive as argument the
16607 full stderr, and strip it according to the bison options, instead
16608 of composing the error message from different bits.
16609 This makes it easier to check for several error messages.
16610 Adjust all the invocations.
16611 Add an invocation exercising the error token.
16612 Add an invocation demonstrating a stupid error message.
16613 (_AT_DATA_CALC_Y): Follow the GCS: initial column is 1, not 0.
16614 Adjust the tests.
16615 Error message are for stderr, not stdout.
16616
16617 2002-04-09 Akim Demaille <akim@epita.fr>
16618
16619 * src/gram.h, src/gram.c (error_token_number): Remove, use
16620 errtoken->number.
16621 * src/reader.c (reader): Don't specify the user token number (2)
16622 for $undefined, as it uselessly prevents using it.
16623 * src/gram.h (token_number_t): Move to...
16624 * src/symtab.h: here.
16625 (state_t.number): Is a token_number_t.
16626 * src/print.c, src/reader.c: Use undeftoken->number instead of
16627 hard coded 2.
16628 (Even though this 2 is not the same as above: the number of the
16629 undeftoken remains being 2, it is its user token number which
16630 might not be 2).
16631 * src/output.c (prepare_tokens): Rename the `maxtok' muscle with
16632 `user_token_number_max'.
16633 Output `undef_token_number'.
16634 * data/bison.simple, data/bison.c++: Use them.
16635 Be sure to map invalid yylex return values to
16636 `undef_token_number'. This saves us from gratuitous SEGV.
16637
16638 * tests/conflicts.at (Solved SR Conflicts)
16639 (Unresolved SR Conflicts): Adjust.
16640 * tests/regression.at (Web2c Actions): Adjust.
16641
16642 2002-04-08 Akim Demaille <akim@epita.fr>
16643
16644 * data/bison.c++: s/b4_item_number_max/b4_rhs_number_max/.
16645 Adding #line.
16646 Remove the duplicate `typedefs'.
16647 (RhsNumberType): Fix the declaration and various other typos.
16648 Use __ofile__.
16649 * data/bison.simple: Use __ofile__.
16650 * src/scan-skel.l: Handle __ofile__.
16651
16652 2002-04-08 Akim Demaille <akim@epita.fr>
16653
16654 * src/gram.h (item_number_t): New, the type of item numbers in
16655 RITEM. Note that it must be able to code symbol numbers as
16656 positive number, and the negation of rule numbers as negative
16657 numbers.
16658 Adjust all dependencies (pretty many).
16659 * src/reduce.c (rule): Remove this `short *' pointer: use
16660 item_number_t.
16661 * src/system.h (MINSHORT, MAXSHORT): Remove.
16662 Include `limits.h'.
16663 Adjust dependencies to using SHRT_MAX and SHRT_MIN.
16664 (shortcpy): Remove.
16665 (MAXTABLE): Move to...
16666 * src/output.c (MAXTABLE): here.
16667 (prepare_rules): Use output_int_table to output rhs.
16668 * data/bison.simple, data/bison.c++: Adjust.
16669 * tests/torture.at (Big triangle): Move the limit from 254 to
16670 500.
16671 * tests/regression.at (Web2c Actions): Ajust.
16672
16673 Trying with bigger grammars shows various phenomena: at 3000 (28Mb
16674 of grammar file) bison is killed by my system, at 2000 (12Mb) bison
16675 passes, but produces negative #line number, once fixed, GCC is
16676 killed while compiling 14Mb, at 1500 (6.7 Mb of grammar, 8.2Mb of
16677 C), it passes.
16678 * src/state.h (state_h): Code input lines on ints, not shorts.
16679
16680 2002-04-08 Akim Demaille <akim@epita.fr>
16681
16682 * src/reduce.c (reduce_grammar): First reduce the nonterminals,
16683 and then the grammar.
16684
16685 2002-04-08 Akim Demaille <akim@epita.fr>
16686
16687 * src/system.h: No longer using strndup.
16688
16689 2002-04-07 Akim Demaille <akim@epita.fr>
16690
16691 * src/muscle_tab.h (MUSCLE_INSERT_LONG_INT): New.
16692 * src/output.c (output_table_data): Return the longest number.
16693 (prepare_tokens): Output `token_number_max').
16694 * data/bison.simple, data/bison.c++ (b4_sint_type, b4_uint_type):
16695 New.
16696 Use them to define yy_token_number_type/TokenNumberType.
16697 Use this type for yytranslate.
16698 * tests/torture.at (Big triangle): Push the limit from 124 to
16699 253.
16700 * tests/regression.at (Web2c Actions): Adjust.
16701
16702 2002-04-07 Akim Demaille <akim@epita.fr>
16703
16704 * tests/torture.at (Big triangle): New.
16705 (GNU AWK Grammar, GNU Cim Grammar): Move to...
16706 * tests/existing.at: here.
16707
16708 2002-04-07 Akim Demaille <akim@epita.fr>
16709
16710 * src/gram.h, src/gram.c (nitems): Remove, it is an alias of
16711 nritems.
16712 Adjust dependencies.
16713
16714 2002-04-07 Akim Demaille <akim@epita.fr>
16715
16716 * src/reader.c: Normalize increments to prefix form.
16717
16718 2002-04-07 Akim Demaille <akim@epita.fr>
16719
16720 * src/reader.c, symtab.c: Remove debugging code.
16721
16722 2002-04-07 Akim Demaille <akim@epita.fr>
16723
16724 Rename all the `bucket's as `symbol_t'.
16725
16726 * src/gram.c, src/gram.h, src/lex.c, src/lex.h, src/output.c,
16727 * src/reader.c, src/reader.h, src/reduce.c, src/state.h,
16728 * src/symtab.c, src/symtab.h (bucket): Rename as...
16729 (symbol_t): this.
16730 (symbol_list_new, bucket_check_defined, bucket_make_alias)
16731 (bucket_check_alias_consistence, bucket_pack, bucket_translation)
16732 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
16733 (buckets_new, buckets_free, buckets_do): Rename as...
16734 (symbol_list_new, symbol_check_defined, symbol_make_alias)
16735 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
16736 (symbol_new, symbol_free, hash_compare_symbol_t, hash_symbol_t)
16737 (symbols_new, symbols_free, symbols_do): these.
16738
16739 2002-04-07 Akim Demaille <akim@epita.fr>
16740
16741 Use lib/hash for the symbol table.
16742
16743 * src/gram.c (ntokens): Initialize to 1, to reserve a slot for
16744 EOF.
16745 * src/lex.c (lex): Set the `number' member of new terminals.
16746 * src/reader.c (bucket_check_defined, bucket_make_alias)
16747 (bucket_check_alias_consistence, bucket_translation): New.
16748 (reader, grammar_free, readgram, token_translations_init)
16749 (packsymbols): Adjust.
16750 (reader): Number the predefined tokens.
16751 * src/reduce.c (inaccessable_symbols): Just use hard coded numbers
16752 for predefined tokens.
16753 * src/symtab.h (bucket): Remove all the hash table related
16754 members.
16755 * src/symtab.c (symtab): Replace by...
16756 (bucket_table): this.
16757 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
16758 (buckets_new, buckets_do): New.
16759
16760 2002-04-07 Akim Demaille <akim@epita.fr>
16761
16762 * src/gram.c (nitems, nrules, nsyms, ntokens, nvars, nritems)
16763 (start_symbol, max_user_token_number, semantic_parser)
16764 (error_token_number): Initialize.
16765 * src/reader.c (grammar, start_flag, startval, typed, lastprec):
16766 Initialize.
16767 (reader): Don't.
16768 (errtoken, eoftoken, undeftoken, axiom): Extern.
16769
16770 2002-04-07 Akim Demaille <akim@epita.fr>
16771
16772 * src/gram.h (rule_s): prec and precsym are now pointers
16773 to the bucket giving the priority/associativity.
16774 Member `associativity' removed: useless.
16775 * src/reduce.c, src/conflicts.c: Adjust.
16776
16777 2002-04-07 Akim Demaille <akim@epita.fr>
16778
16779 * src/lalr.c, src/LR0.c, src/closure.c, src/gram.c, src/reduce.c:
16780 Properly escape the symbols' TAG when outputting them.
16781
16782 2002-04-07 Akim Demaille <akim@epita.fr>
16783
16784 * src/lalr.h (LA): Is a bitsetv, not bitset*.
16785
16786 2002-04-07 Akim Demaille <akim@epita.fr>
16787
16788 * src/lalr.h, src/lalr.c (LAruleno): Replace with...
16789 (LArule): this, which is an array to rule_t*.
16790 * src/print.c, src/conflicts.c: Adjust.
16791
16792 2002-04-07 Akim Demaille <akim@epita.fr>
16793
16794 * src/gram.h (rule_t): Rename `number' as `user_number'.
16795 `number' is a new member.
16796 Adjust dependencies.
16797 * src/reduce.c (reduce_grammar_tables): Renumber rule_t.number.
16798
16799 2002-04-07 Akim Demaille <akim@epita.fr>
16800
16801 As a result of the previous patch, it is no longer needed
16802 to reorder ritem itself.
16803
16804 * src/reduce.c (reduce_grammar_tables): Don't sort RITEM.
16805
16806 2002-04-07 Akim Demaille <akim@epita.fr>
16807
16808 Be sure never to walk through RITEMS, but use only data related to
16809 the rules themselves. RITEMS should be banished.
16810
16811 * src/output.c (output_token_translations): Rename as...
16812 (prepare_tokens): this.
16813 In addition to `translate', prepare the muscles `tname' and
16814 `toknum', which were handled by...
16815 (output_rule_data): this.
16816 Remove, and move the remainder of its outputs into...
16817 (prepare_rules): this new routines, which also merges content from
16818 (output_gram): this.
16819 (prepare_rules): Be sure never to walk through RITEMS.
16820 (output_stos): Rename as...
16821 (prepare_stos): this.
16822 (output): Always invoke prepare_states, after all, just don't use it
16823 in the output if you don't need it.
16824
16825 2002-04-07 Akim Demaille <akim@epita.fr>
16826
16827 * src/LR0.c (new_state): Display `nstates' as the name of the
16828 newly created state.
16829 Adjust to initialize first_state and last_state if needed.
16830 Be sure to distinguish the initial from the final state.
16831 (new_states): Create the itemset of the initial state, and use
16832 new_state.
16833 * src/closure.c (closure): Now that the initial state has its
16834 items properly set, there is no need for a special case when
16835 creating `ruleset'.
16836
16837 As a result, now the rule 0, reducing to $axiom, is visible in the
16838 outputs. Adjust the test suite.
16839
16840 * tests/conflicts.at (Solved SR Conflicts)
16841 (Unresolved SR Conflicts): Adjust.
16842 * tests/regression.at (Web2c Report, Rule Line Numbers): Idem.
16843 * tests/conflicts.at (S/R in initial): New.
16844
16845 2002-04-07 Akim Demaille <akim@epita.fr>
16846
16847 * src/LR0.c (allocate_itemsets): Don't loop over ritem: loop over
16848 the RHS of the rules.
16849 * src/output.c (output_gram): Likewise.
16850
16851 2002-04-07 Akim Demaille <akim@epita.fr>
16852
16853 * src/gram.h (rule_t): `lhs' is now a pointer to the symbol's
16854 bucket.
16855 Adjust all dependencies.
16856 * src/reduce.c (nonterminals_reduce): Don't forget to renumber the
16857 `number' of the buckets too.
16858 * src/gram.h: Include `symtab.h'.
16859 (associativity): Move to...
16860 * src/symtab.h: here.
16861 No longer include `gram.h'.
16862
16863 2002-04-07 Akim Demaille <akim@epita.fr>
16864
16865 * src/gram.h, src/gram.c (rules_rhs_length): New.
16866 (ritem_longest_rhs): Use it.
16867 * src/gram.h (rule_t): `number' is a new member.
16868 * src/reader.c (packgram): Set it.
16869 * src/reduce.c (reduce_grammar_tables): Move the useless rules at
16870 the end of `rules', and count them out of `nrules'.
16871 (reduce_output, dump_grammar): Adjust.
16872 * src/print.c (print_grammar): It is no longer needed to check for
16873 the usefulness of a rule, as useless rules are beyond `nrules + 1'.
16874 * tests/reduce.at (Reduced Automaton): New test.
16875
16876 2002-04-07 Akim Demaille <akim@epita.fr>
16877
16878 * src/reduce.c (inaccessable_symbols): Fix a buglet: because of a
16879 lacking `+ 1' to nrules, Bison reported as useless a token if it
16880 was used solely to set the precedence of the last rule...
16881
16882 2002-04-07 Akim Demaille <akim@epita.fr>
16883
16884 * data/bison.c++, data/bison.simple: Don't output the current file
16885 name in #line, to avoid useless diffs between two identical
16886 outputs under different names.
16887
16888 2002-04-07 Akim Demaille <akim@epita.fr>
16889
16890 * src/closure.c, src/print.c, src/reader.c, src/reduce.c:
16891 Normalize loops to using `< nrules + 1', not `<= nrules'.
16892
16893 2002-04-07 Akim Demaille <akim@epita.fr>
16894
16895 * TODO: Update.
16896
16897 2002-04-07 Akim Demaille <akim@epita.fr>
16898
16899 * src/output.c, src/reader.c, src/symtab.c, src/symtab.h: Rename
16900 bucket.value as bucket.number.
16901
16902 2002-04-07 Akim Demaille <akim@epita.fr>
16903
16904 * src/closure.c, src/derives.c, src/gram.h, src/lalr.c,
16905 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
16906 * src/reader.c, src/reduce.c: Let rule_t.rhs point directly to the
16907 RHS, instead of being an index in RITEMS.
16908
16909 2002-04-04 Paul Eggert <eggert@twinsun.com>
16910
16911 * doc/bison.texinfo: Update copyright date.
16912 (Rpcalc Lexer, Symbols, Token Decl): Don't assume ASCII.
16913 (Symbols): Warn about running Bison in one character set,
16914 but compiling and/or running in an incompatible one.
16915 Warn about character code 256, too.
16916
16917 2002-04-03 Paul Eggert <eggert@twinsun.com>
16918
16919 * src/bison.data (YYSTACK_ALLOC): Depend on whether
16920 YYERROR_VERBOSE is nonzero, not whether it is defined.
16921
16922 Merge changes from bison-1_29-branch.
16923
16924 2002-03-20 Paul Eggert <eggert@twinsun.com>
16925
16926 Merge fixes from Debian bison_1.34-1.diff.
16927
16928 * configure.in (AC_PREREQ): 2.53.
16929
16930 2002-03-20 Akim Demaille <akim@epita.fr>
16931
16932 * src/conflicts.c (log_resolution): Argument `resolution' is const.
16933
16934 2002-03-19 Paul Eggert <eggert@twinsun.com>
16935
16936 * src/bison.simple (YYCOPY): New macro.
16937 (YYSTACK_RELOCATE): Use it.
16938 Remove Type arg; no longer needed. All callers changed.
16939 (yymemcpy): Remove; no longer needed.
16940
16941 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
16942 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
16943
16944 2002-03-19 Akim Demaille <akim@epita.fr>
16945
16946 Test and fix the #line outputs.
16947
16948 * tests/atlocal.at (GCC): New.
16949 * tests/synclines.at (AT_TEST_SYNCLINE): New macro.
16950 (Prologue synch line, %union synch line, Postprologue synch line)
16951 (Action synch line, Epilogue synch line): New tests.
16952 * src/reader.c (parse_union_decl): Define the muscle stype_line.
16953 * data/bison.simple, data/bison.c++: Use it.
16954
16955 2002-03-19 Akim Demaille <akim@epita.fr>
16956
16957 * tests/regression.at (%nonassoc and eof, Unresolved SR Conflicts)
16958 (Solved SR Conflicts, %expect not enough, %expect right)
16959 (%expect too much): Move to...
16960 * tests/conflicts.at: this new file.
16961
16962 2002-03-19 Akim Demaille <akim@epita.fr>
16963
16964 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
16965 * data/bison.simple, data/bison.c++: Handle the `#define' part, so
16966 that we can move to enums for instance.
16967 * src/output.c (token_definitions_output): Output a list of
16968 `token-name, token-number' instead of the #define.
16969 (output_skeleton): Name this list `b4_tokens', not `b4_tokendefs'.
16970
16971 2002-03-14 Akim Demaille <akim@epita.fr>
16972
16973 Use Gettext 0.11.1.
16974
16975 2002-03-09 Robert Anisko <robert@lrde.epita.fr>
16976
16977 * data/bison.c++: Make the user able to add members to the generated
16978 parser by subclassing.
16979
16980 2002-03-05 Robert Anisko <robert@lrde.epita.fr>
16981
16982 * src/reader.c (read_additionnal_code): `c' should be an integer, not
16983 a character.
16984 Reported by Nicolas Tisserand and Nicolas Burrus.
16985
16986 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
16987
16988 * src/reader.c: Warn about lacking semi-colons, do not complain.
16989
16990 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
16991
16992 * data/bison.c++: Remove a debug line.
16993
16994 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
16995
16996 * data/bison.c++: Unmerge value as yylval and value as yyval. Unmerge
16997 location as yylloc and location as yyloc. Use YYLLOC_DEFAULT, and
16998 provide a default implementation.
16999
17000 2002-03-04 Akim Demaille <akim@epita.fr>
17001
17002 * tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
17003 * tests/output.at (AT_CHECK_OUTPUT): Likewise.
17004 * tests/headers.at (AT_TEST_CPP_GUARD_H): Ditto.
17005 * tests/semantic.at (Parsing Guards): Similarly.
17006 * src/reader.at (readgram): Complain if the last rule is not ended
17007 with a semi-colon.
17008
17009 2002-03-04 Akim Demaille <akim@epita.fr>
17010
17011 * src/warshall.h, src/warshall.c (bitmatrix_print): Move to...
17012 * src/closure.c: here.
17013 (set_firsts): Use bitsetv_reflexive_transitive_closure instead of
17014 RTC.
17015 * src/warshall.h, src/warshall.c: Remove.
17016 * tests/sets.at (Broken Closure): Adjust.
17017
17018 2002-03-04 Akim Demaille <akim@epita.fr>
17019
17020 * src/output.c (output_skeleton): tempdir is const.
17021 bytes_read is unused.
17022
17023 2002-03-04 Akim Demaille <akim@epita.fr>
17024
17025 * lib/bbitset.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
17026 * lib/bitsetv.h, lib/ebitset.c, lib/lbitset.c, lib/sbitset.c:
17027 Update.
17028 From Michael Hayes.
17029
17030 2002-03-04 Akim Demaille <akim@epita.fr>
17031
17032 * src/closure.c (closure): `r' is unused.
17033
17034 2002-03-04 Akim Demaille <akim@epita.fr>
17035
17036 * tests/sets.at (Broken Closure): Add the ending `;'.
17037 * src/reader.at (readgram): Complain if a rule is not ended with a
17038 semi-colon.
17039
17040 2002-03-04 Akim Demaille <akim@epita.fr>
17041
17042 * src/conflicts.c (set_conflicts): Use bitset_disjoint_p.
17043 (count_sr_conflicts): Use bitset_count.
17044 * src/reduce.c (inaccessable_symbols): Ditto.
17045 (bits_size): Remove.
17046 * src/warshall.h, src/warshall.c: Convert to bitsetv.
17047
17048 2002-03-04 Akim Demaille <akim@epita.fr>
17049
17050 * src/closure.c, src/conflicts.c, src/lalr.c, src/print.c,
17051 * src/reduce.c: Remove the `bitset_zero's following the
17052 `bitset_create's, as now it is performed by the latter.
17053
17054 2002-03-04 Akim Demaille <akim@epita.fr>
17055
17056 * lib/bitset.c, lib/bitset.h, lib/bitsetv.c, lib/bitsetv.h,
17057 * lib/ebitset.c, lib/ebitset.h, lib/lbitset.c, lib/lbitset.h,
17058 * lib/sbitset.c, lib/sbitset.h, lib/bbitset.h: Update from the
17059 latest sources from Michael.
17060
17061 2002-03-04 Akim Demaille <akim@epita.fr>
17062
17063 * src/output.c (output): Don't free the grammar.
17064 * src/reader.c (grammar_free): New.
17065 * src/main.c (main): Call it and don't free symtab here.
17066
17067 2002-03-04 Akim Demaille <akim@epita.fr>
17068
17069 * src/lex.c (parse_percent_token): Be sure to 0-end token_buffer
17070 before returning.
17071 Reported by Benoit Perrot.
17072
17073 2002-03-04 Akim Demaille <akim@epita.fr>
17074
17075 Use bitset operations when possible, not loops over bits.
17076
17077 * src/conflicts.c (set_conflicts, count_sr_conflicts): Use
17078 bitset_or.
17079 * src/print.c (print_reductions): Use bitset_and, bitset_andn.
17080 * src/reduce.c (useless_nonterminals): Formatting changes.
17081 * src/warshall.c (TC): Use bitset_or.
17082
17083 2002-03-04 Akim Demaille <akim@epita.fr>
17084
17085 * src/lalr.h, src/lalr.c (tokensetsize): Remove, unused.
17086 * src/system.h (BITS_PER_WORD, WORDSIZE, SETBIT, RESETBIT, BITISSET):
17087 Ditto.
17088
17089 2002-03-04 Akim Demaille <akim@epita.fr>
17090
17091 * src/lalr.c (F): Now a bitset*.
17092 Adjust all dependencies.
17093
17094 2002-03-04 Akim Demaille <akim@epita.fr>
17095
17096 * src/conflicts.c (shiftset, lookaheadset): Now bitset.
17097 Adjust all dependencies.
17098
17099 2002-03-04 Akim Demaille <akim@epita.fr>
17100
17101 * src/L0.c, src/LR0.h (nstates): Be size_t.
17102 Adjust comparisons (signed vs unsigned).
17103 * src/conflics.c, src/lalr.c, src/lalr.h, src/output.c (LA): Now a
17104 bitset*.
17105 Adjust all dependencies.
17106
17107 2002-03-04 Akim Demaille <akim@epita.fr>
17108
17109 * src/closure.c (firsts): Now, also a bitset.
17110 Adjust all dependencies.
17111 (varsetsize): Remove, now unused.
17112 * src/warshall.h, src/warshall.c: Now work on arrays of bitsets.
17113
17114 2002-03-04 Akim Demaille <akim@epita.fr>
17115
17116 * src/print.c: Convert to use bitset.h, not hand coded iterations
17117 over ints.
17118
17119 2002-03-04 Akim Demaille <akim@epita.fr>
17120
17121 * src/reduce.c: Convert to use bitset.h, not hand coded BSet.
17122
17123 2002-03-04 Akim Demaille <akim@epita.fr>
17124
17125 * src/closure.c (ruleset): Be a bitset.
17126 (rulesetsize): Remove.
17127
17128 2002-03-04 Akim Demaille <akim@epita.fr>
17129
17130 * lib/bitset-int.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
17131 * lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/lbitset.c,
17132 * lib/lbitset.h, lib/sbitset.c, lib/sbitset.h: New.
17133 * src/closure.c (fderives): Be an array of bitsets.
17134
17135 2002-02-28 Robert Anisko <robert@lrde.epita.fr>
17136
17137 * data/bison.c++: Merge the two generated headers. Insert a copyright
17138 notice in each output file.
17139
17140 2002-02-28 Akim Demaille <akim@epita.fr>
17141
17142 * data/bison.c++: Copy the prologue of bison.simple to fetch
17143 useful M4 definitions, such as b4_header_guard.
17144
17145 2002-02-25 Akim Demaille <akim@epita.fr>
17146
17147 * src/getargs.c (version): Give the name of the authors, and use a
17148 translator friendly scheme for the bgr
17149 copyright notice.
17150
17151 2002-02-25 Akim Demaille <akim@epita.fr>
17152
17153 * src/output.c (header_output): Remove, now handled completely via
17154 M4.
17155
17156 2002-02-25 Akim Demaille <akim@epita.fr>
17157
17158 * m4/m4.m4: New, from CVS Autoconf.
17159 * configure.in: Invoke it.
17160 * src/output.c (output_skeleton): Use its result instead of the
17161 hard coded name.
17162
17163 2002-02-25 Akim Demaille <akim@epita.fr>
17164
17165 * lib/tempname.c, lib/mkstemp.c, m4/mkstemp.m4: New, stolen from
17166 Fileutils 4.1.5.
17167 * configure.in: Invoke UTILS_FUNC_MKSTEMP.
17168 * src/output.c (output_skeleton): Use mkstemp to create a real
17169 temporary file.
17170 Move the filling of `skeleton' and its muscle to...
17171 (prepare): here.
17172 (output): Move the definition of the prologue muscle to...
17173 (prepare): here.
17174 * src/system.h (DEFAULT_TMPDIR): New.
17175
17176 2002-02-14 Paul Eggert <eggert@twinsun.com>
17177
17178 Remove the support for C++ namespace cleanliness; it was
17179 causing more problems than it was curing, since it didn't work
17180 properly on some nonstandard C++ compilers. This can wait
17181 for a proper C++ parser.
17182
17183 * NEWS: Document this.
17184 * doc/bison.texinfo (Bison Parser, Debugging): Remove special mention
17185 of C++, as it's treated like C now.
17186 * src/bison.simple (YYSTD): Remove.
17187 (YYSIZE_T, YYFPRINTF, YYPARSE_PARAM_ARG, YYPARSE_PARAM_DECL):
17188 Treat C++ just like Standard C instead of trying to support
17189 namespace cleanliness.
17190
17191 2002-02-14 Akim Demaille <akim@epita.fr>
17192
17193 * tests/regression.at (else): Adjust to Andreas' change.
17194
17195 2002-02-14 Akim Demaille <akim@epita.fr>
17196
17197 * lib/Makefile.am (EXTRA_DIST): Ship strnlen.c.
17198
17199 2002-02-13 Andreas Schwab <schwab@suse.de>
17200
17201 * src/output.c (output_rule_data): Don't output NULL, it might
17202 not be defined yet.
17203
17204 2002-02-11 Robert Anisko <robert@lrde.epita.fr>
17205
17206 * data/bison.c++ (YYDEBUG, YYERROR_VERBOSE): After the prologue.
17207 (Copyright notice): Update.
17208
17209 2002-02-11 Akim Demaille <akim@epita.fr>
17210
17211 * tests/regression.at (%nonassoc and eof): Don't include
17212 nonportable headers.
17213
17214 2002-02-08 Robert Anisko <robert@lrde.epita.fr>
17215
17216 * data/bison.c++: Correct error recovery. Make the user able to
17217 initialize the starting location.
17218
17219 2002-02-07 Akim Demaille <akim@epita.fr>
17220
17221 * tests/input.at: New.
17222
17223 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
17224
17225 * data/bison.c++: Replace some direct m4 expansions by constants. Be
17226 more consistent when naming methods and variables. Put preprocessor
17227 directives around tables only needed for debugging.
17228
17229 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
17230
17231 * data/bison.c++ (yy::b4_name::print_): New method, replaces yyprint in
17232 C++ parsers.
17233 (yy::b4_name::parse): Use print_.
17234
17235 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
17236
17237 * data/bison.c++ (yy::b4_name::parse): Error recovery is back.
17238
17239 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
17240
17241 * data/bison.c++ (yy::b4_name::error_): New method, replaces yyerror in
17242 C++ parsers.
17243 (yy::b4_name::parse): Build verbose error messages, and use error_.
17244
17245 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
17246
17247 * data/bison.c++: Fix m4 quoting in comments.
17248
17249 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
17250
17251 * data/bison.c++: Adjust the parser code. Fix some muscles that were
17252 not expanded by m4.
17253
17254 2002-02-05 Akim Demaille <akim@epita.fr>
17255
17256 * data/bison.c++: Adjust to the M4 back end.
17257 More is certainly needed.
17258
17259 2002-02-05 Akim Demaille <akim@epita.fr>
17260
17261 Give a try to M4 as a back end.
17262
17263 * lib/readpipe.c: New, from wdiff.
17264 * src/Makefile.am (DEFS): Define PKGDATADIR, not BISON_SIMPLE and
17265 BISON_HAIRY.
17266 * src/system.h (BISON_HAIRY, BISON_SIMPLE): Remove the DOS and VMS
17267 specific values. Now it is m4 that performs the lookup.
17268 * src/parse-skel.y: Remove.
17269 * src/muscle_tab.c, src/muscle_tab.h (muscles_m4_output): New.
17270 * src/output.c (actions_output, guards_output)
17271 (token_definitions_output): No longer keeps track of the output
17272 line number, hence remove the second argument.
17273 (guards_output): Check against the guard member of a rule, not the
17274 action member.
17275 Adjust callers.
17276 (output_skeleton): Don't look for the skeleton location, let m4 do
17277 that.
17278 Create `/tmp/muscles.m4'. This is temporary, a proper temporary
17279 file will be used.
17280 Invoke `m4' on m4sugar.m4, muscles.m4, and the skeleton.
17281 (prepare): Given that for the time being changesyntax is not
17282 usable in M4, rename the muscles using `-' to `_'.
17283 Define `defines_flag', `output_parser_name' and `output_header_name'.
17284 * src/output.h (actions_output, guards_output)
17285 (token_definitions_output): Adjust prototypes.
17286 * src/scan-skel.l: Instead of scanning the skeletons, it now
17287 processes the output of m4: `__oline__' and `#output'.
17288 * data/bison.simple: Adjust to be used by M4(sugar).
17289 * tests/Makefile.am: Use check_SCRIPTS to make sure `bison' is up
17290 to date.
17291 * tests/bison.in: Use the secrete envvar `BISON_PKGDATADIR'
17292 instead of the dead `BISON_SIMPLE' and `BISON_HAIRY'.
17293 * data/m4sugar/m4sugar.m4, data/m4sugar/version.m4: New,
17294 shamelessly stolen from CVS Autoconf.
17295
17296 2002-02-05 Akim Demaille <akim@epita.fr>
17297
17298 * lib/hash.c, lib/hash.h: Replace with Fileutils 4.1's version.
17299 * configure.in: Check for the declarations of free and malloc.
17300 * src/muscle_tab.c: Adjust.
17301
17302 2002-02-05 Akim Demaille <akim@epita.fr>
17303
17304 * src/muscle_tab.c (muscle_init): Don't default to NULL muscle
17305 which have no values.
17306
17307 2002-02-05 Akim Demaille <akim@epita.fr>
17308
17309 * src/bison.simple, src/bison.hairy, src/bison.c++: Move to...
17310 * data/: here.
17311
17312 2002-01-29 Paul Eggert <eggert@twinsun.com>
17313
17314 * src/bison.simple (YYSIZE_T): Do not define merely because
17315 YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
17316 On some platforms, <alloca.h> does not declare YYSTD (size_t).
17317
17318 2002-01-27 Akim Demaille <akim@epita.fr>
17319
17320 Fix `%nonassoc and eof'.
17321
17322 * src/state.c (errs_dup): Aaaah! The failure was due to bytes
17323 which were not properly copied! Replace
17324 memcpy (res->errs, src->errs, src->nerrs);
17325 with
17326 memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
17327 !!!
17328 * tests/regression.at (%nonassoc and eof): Adjust to newest
17329 Autotest: `.' is not in the PATH.
17330
17331 2002-01-27 Akim Demaille <akim@epita.fr>
17332
17333 * tests/sets.at (AT_EXTRACT_SETS): New.
17334 (Nullable): Use it.
17335 (Firsts): New.
17336
17337 2002-01-26 Akim Demaille <akim@epita.fr>
17338
17339 * tests/actions.at, tests/calc.at, tests/headers.at,
17340 * tests/torture.at: Adjust to the newest Autotest which no longer
17341 forces `.' in the PATH.
17342
17343 2002-01-25 Akim Demaille <akim@epita.fr>
17344
17345 * tests/regression.at (%nonassoc and eof): New.
17346 Suggested by Robert Anisko.
17347
17348 2002-01-24 Akim Demaille <akim@epita.fr>
17349
17350 Bison dumps core when trying to complain about broken input files.
17351 Reported by Cris van Pelt.
17352
17353 * src/lex.c (parse_percent_token): Be sure to set token_buffer.
17354 * tests/regression.at (Invalid input: 1, Invalid input: 2): Merge
17355 into...
17356 (Invalid inputs): Strengthen: exercise parse_percent_token.
17357
17358 2002-01-24 Robert Anisko <robert.anisko@epita.fr>
17359
17360 * src/Makefile.am: Add bison.c++.
17361 * src/bison.c++: New skeleton.
17362
17363 2002-01-21 Paolo Bonzini <bonzini@gnu.org>
17364
17365 * po/it.po: New.
17366
17367 2002-01-21 Kees Zeelenberg <kzlg@users.sourceforge.net>
17368
17369 * src/files.c (skeleton_find) [MSDOS]: Fix cp definition.
17370
17371 2002-01-20 Marc Autret <marc@gnu.org>
17372
17373 * src/files.c (compute_output_file_names): Fix
17374
17375 2002-01-20 Marc Autret <marc@gnu.org>
17376
17377 * tests/output.at: New test.
17378 * src/files.c (compute_base_names): Don't map extensions when
17379 the YACC flag is set, use defaults.
17380 Reported by Evgeny Stambulchik.
17381
17382 2002-01-20 Marc Autret <marc@gnu.org>
17383
17384 * src/system.h: Need to define __attribute__ away for non-GCC
17385 compilers as well (i.e., the vendor C compiler).
17386 Suggested by Albert Chin-A-Young.
17387
17388 2002-01-11 Tim Van Holder <tim.van.holder@pandora.be>
17389
17390 * lib/hash.h, lib/hash.c: Renamed __P to PARAMS and used the
17391 canonical definition.
17392 * src/system.h: Use the canonical definition for PARAMS (avoids
17393 a conflict with the macro from lib/hash.h).
17394
17395 2002-01-11 Akim Demaille <akim@epita.fr>
17396
17397 * configure.in: Use AC_FUNC_STRNLEN.
17398 Fixes the failures observed on AIX 4.3 by H.Merijn Brand.
17399
17400 2002-01-09 Akim Demaille <akim@epita.fr>
17401
17402 * src/files.c, src/files.h (output_infix): New.
17403 (tab_extension): Remove.
17404 (compute_base_names): Compute the former, drop the latter.
17405 * src/output.c (prepare): Insert the muscles `output-infix', and
17406 `output-suffix'.
17407 * src/parse-skel.y (string, string.1): New.
17408 (section.header): Use it.
17409 (section.yacc): Remove.
17410 (prefix): Remove too.
17411 * src/scan-skel.l: Adjust.
17412 * src/bison.simple, src/bison.hairy: Adjust.
17413
17414 2002-01-09 Akim Demaille <akim@epita.fr>
17415
17416 * configure.in (WERROR_CFLAGS): Compute it.
17417 * src/Makefile.am (CFLAGS): Pass it.
17418 * tests/atlocal.in (CFLAGS): Idem.
17419 * src/files.c: Fix a few warnings.
17420 (get_extension_index): Remove, unused.
17421
17422 2002-01-08 Akim Demaille <akim@epita.fr>
17423
17424 * src/getargs.c (AS_FILE_NAME): New.
17425 (getargs): Use it to convert DOSish file names.
17426 * src/files.c (base_name): Rename as full_base_name to avoid
17427 clashes with `base_name ()'.
17428 (filename_split): New.
17429 (compute_base_names): N-th rewrite, using filename_split.
17430
17431 2002-01-08 Akim Demaille <akim@epita.fr>
17432
17433 * lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
17434 New, stolen from the Fileutils 4.1.
17435 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
17436 * configure.in: Check for the presence of memrchr, and of its
17437 prototype.
17438
17439 2002-01-07 Tim Van Holder <tim.van.holder@pandora.be>
17440
17441 * lib/hash.h (__P): Added definition for this macro.
17442 * src/Makefile.am: Add parse-skel.c and scan-skel.c to
17443 BUILT_SOURCES, to ensure they are generated first.
17444 * src/parse-skel.y: Use YYERROR_VERBOSE instead of
17445 %error-verbose to allow bootstrapping with bison 1.30x.
17446
17447 2002-01-06 Akim Demaille <akim@epita.fr>
17448
17449 * src/reader.c (parse_braces): Don't fetch the next char, the
17450 convention is to fetch on entry.
17451 * tests/torture.at (GNU Cim Grammar): Reintroduce their weird
17452 'switch' without a following semicolon.
17453 * tests/regression.at (braces parsing): New.
17454
17455 2002-01-06 Akim Demaille <akim@epita.fr>
17456
17457 Bison is dead wrong in its RR conflict reports.
17458
17459 * tests/torture.at (GNU Cim Grammar): New.
17460 * src/conflicts.c (count_rr_conflicts): Fix.
17461
17462 2002-01-06 Akim Demaille <akim@epita.fr>
17463
17464 Creating package.m4 from configure.ac causes too many problems.
17465
17466 * tests/Makefile.am (package.m4): Create it by hand,
17467 AC_CONFIG_TESTDIR no longer does in the most recent CVS Autoconf.
17468
17469 2002-01-06 Akim Demaille <akim@epita.fr>
17470
17471 * src/Makefile.am (bison_SOURCES): Add parse-skel.h and
17472 skeleton.h.
17473
17474 2002-01-04 Paul Eggert <eggert@twinsun.com>
17475
17476 * doc/bison.texinfo (Debugging):
17477 Remove YYSTDERR; it's no longer defined or used.
17478 Also, s/cstdio.h/cstdio/.
17479
17480 2002-01-03 Akim Demaille <akim@epita.fr>
17481
17482 * tests/bison.in, tests/atlocal.in: Adjust to CVS Autoconf.
17483
17484 2002-01-03 Akim Demaille <akim@epita.fr>
17485
17486 * src/parse-skel.y (process_skeleton): Don't bind the parser's
17487 tracing code to --trace, wait for a better --trace option, with
17488 args.
17489
17490 2002-01-03 Akim Demaille <akim@epita.fr>
17491
17492 * src/bison.simple (YYSTDERR): Remove, replace `stderr'.
17493 The ISO C++ standard is extremely clear about it: stderr is
17494 considered a macro, not a regular symbol (see table 94 `Header
17495 <cstdio> synopsis', [lib.c.files] 27.8.2 C Library files).
17496 Therefore std:: does not apply to it. It still does with fprintf.
17497 Also, s/cstdio.h/cstdio/.
17498
17499 2002-01-03 Akim Demaille <akim@epita.fr>
17500
17501 * lib/quotearg.c: Use `#include "..."' instead of `#include <...>'
17502 for non system headers.
17503
17504 2002-01-02 Akim Demaille <akim@epita.fr>
17505
17506 Equip the skeleton chain with location tracking, runtime trace,
17507 pure parser and scanner.
17508
17509 * src/parse-skel.y: Request a pure parser, locations, and prefix
17510 renaming.
17511 (%union): Having several members with the same type does not help
17512 type mismatches, simplify.
17513 (YYPRINT, yyprint): New.
17514 (yyerror): ``Rename'' (there is a #define yyerror skel_error) as...
17515 (skel_error): this.
17516 Handle locations.
17517 * src/scan-skel.l: Adjust to these changes.
17518 * src/skeleton.h (LOCATION_RESET, LOCATION_LINES, LOCATION_STEP)
17519 (LOCATION_PRINT, skel_control_t): New.
17520
17521 2001-12-30 Akim Demaille <akim@epita.fr>
17522
17523 * src/parse-skel.y: Get rid of the shift/reduce conflict:
17524 replace `gb' with BLANKS.
17525 * src/scan-skel.l: Adjust.
17526
17527 2001-12-30 Akim Demaille <akim@epita.fr>
17528
17529 * src/system.h: We don't need nor want bcopy.
17530 Throw away MS-DOS crap: we don't need getpid.
17531 * configure.in: We don't need strndup. It was even causing
17532 problems: because Flex includes the headers *before* us,
17533 _GNU_SOURCE is not defined by config.h, and therefore strndup was
17534 not visible.
17535 * lib/xstrndup.c: New.
17536 * src/scan-skel.l: Use it.
17537 Be sure to initialize yylval.muscle member when scanning a MUSCLE.
17538 * src/parse-skel.y: Use %directives instead of #defines.
17539
17540 2001-12-30 Akim Demaille <akim@epita.fr>
17541
17542 * src/skeleton.h: New.
17543 * src/output.c (output_parser, output_master_parser): Remove, dead
17544 code.
17545 * src/output.h (get_lines_number, actions_output, guards_output)
17546 (token_definitions_output): Prototype them.
17547 * src/parse-skel.y: Add the license notice.
17548 Include output.h and skeleton.h.
17549 (process_skeleton): Returns void, and takes a single parameter.
17550 * src/scan-skel.l: Add the license notice.
17551 Include skeleton.h.
17552 Don't use %option yylineno: it seems that then Flex imagines
17553 REJECT has been used, and therefore it won't reallocate its
17554 buffers (which makes no other sense to me than a bug). It results
17555 in warnings for `unused: yy_flex_realloc'.
17556
17557 2001-12-30 Robert Anisko <robert.anisko@epita.fr>
17558
17559 * src/muscle_tab.h (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
17560 (MUSCLE_INSERT_PREFIX): ...to there.
17561 * src/output.c (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
17562 (MUSCLE_INSERT_PREFIX): Move from here...
17563
17564 * src/bison.hairy: Add a section directive. Put braces around muscle
17565 names. This parser skeleton is still broken, but Bison should not
17566 choke on a bad muscle 'syntax'.
17567 * src/bison.simple: Add a section directive. Put braces around muscle
17568 names.
17569
17570 * src/files.h (strsuffix, stringappend): Add declarations.
17571 (tab_extension): Add declaration.
17572 (short_base_name): Add declaration.
17573
17574 * src/files.c (strsuffix, stringappend): No longer static. These
17575 functions are used in the skeleton parser.
17576 (tab_extension): New.
17577 (compute_base_names): Use the computations done in this function
17578 to guess if the generated parsers should have '.tab' in their
17579 names.
17580 (short_base_name): No longer static.
17581
17582 * src/output.c (output_skeleton): New.
17583 (output): Disable call to output_master_parser, and give a try to
17584 a new skeleton handling system.
17585 (guards_output, actions_output): No longer static.
17586 (token_definitions_output, get_lines_number): No longer static.
17587
17588 * configure.in: Use AM_PROG_LEX and AC_PROG_YACC.
17589
17590 * src/Makefile.am (bison_SOURCES): Add scan-skel.l and
17591 parse-skel.y.
17592
17593 * src/parse-skel.y: New file.
17594 * src/scan-skel.l: New file.
17595
17596 2001-12-29 Akim Demaille <akim@epita.fr>
17597
17598 %name-prefix is broken.
17599
17600 * src/files.c (spec_name_prefix): Initialize to NULL, not to "yy".
17601 Adjust all dependencies.
17602 * tests/headers.at (export YYLTYPE): Strengthen this test: use
17603 %name-prefix.
17604
17605 Renaming yylval but not yylloc is not consistent. Now we do.
17606
17607 * src/bison.simple: Prefix yylloc if used.
17608 * doc/bison.texinfo (Decl Summary): Document that.
17609
17610 2001-12-29 Akim Demaille <akim@epita.fr>
17611
17612 * doc/bison.texinfo: Promote `%long-directive' over
17613 `%long_directive'.
17614 Remove all references to fixed-output-files, yacc is enough.
17615
17616 2001-12-29 Akim Demaille <akim@epita.fr>
17617
17618 * src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the
17619 user prologue. These are defaults.
17620 * tests/actions.at (Mid-rule actions): Make sure the user can
17621 define YYDEBUG and YYERROR_VERBOSE.
17622
17623 2001-12-29 Akim Demaille <akim@epita.fr>
17624
17625 * src/output.c (header_output): Don't forget to export YYLTYPE and
17626 yylloc.
17627 * tests/headers.at (export YYLTYPE): New, make sure it does.
17628 * tests/regression.at (%union and --defines, Invalid CPP headers):
17629 Move to...
17630 * tests/headers.at: here.
17631
17632 2001-12-29 Akim Demaille <akim@epita.fr>
17633
17634 * src/gram.h (rule_s): Member `assoc' is of type `associativity'.
17635
17636 2001-12-29 Akim Demaille <akim@epita.fr>
17637
17638 * tests/actions.at (Mid-rule actions): Output on a single line
17639 instead of several.
17640
17641 2001-12-29 Akim Demaille <akim@epita.fr>
17642
17643 * doc/bison.texinfo: Formatting changes.
17644
17645 2001-12-29 Akim Demaille <akim@epita.fr>
17646
17647 Don't store the token defs in a muscle, just be ready to output it
17648 on command. Now possible via `symbols'. Fixes a memory leak.
17649
17650 * src/output.c (token_definitions_output): New.
17651 (output_parser, header_output): Use it.
17652 * src/reader.c (symbols_save): Remove.
17653
17654 2001-12-29 Akim Demaille <akim@epita.fr>
17655
17656 * src/bison.simple: Do not provide a default for YYSTYPE and
17657 YYLTYPE before the user's prologue. Otherwise it's hardly... a
17658 default.
17659
17660 2001-12-29 Akim Demaille <akim@epita.fr>
17661
17662 Mid-rule actions are simply... ignored!
17663
17664 * src/reader.c (readgram): Be sure to attach mid-rule actions to
17665 the empty-rule associated to the dummy symbol, not to the host
17666 rule.
17667 * tests/actions.at (Mid-rule actions): New.
17668
17669 2001-12-29 Akim Demaille <akim@epita.fr>
17670
17671 Memory leak.
17672
17673 * src/reader.c (reader): Free grammar.
17674
17675 2001-12-29 Akim Demaille <akim@epita.fr>
17676
17677 Memory leak.
17678
17679 * src/LR0.c (new_itemsets): Don't allocate `shift_symbol' here,
17680 since it allocates it for each state, although only one is needed.
17681 (allocate_storage): Do it here.
17682
17683 2001-12-29 Akim Demaille <akim@epita.fr>
17684
17685 * src/options.h, src/options.c (create_long_option_table): Rename
17686 as...
17687 (long_option_table_new): this, with a clearer prototype.
17688 (percent_table): Remove, unused,
17689 * src/getargs.c (getargs): Adjust.
17690
17691 2001-12-29 Akim Demaille <akim@epita.fr>
17692
17693 * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
17694 * src/print.c, src/print_graph.c, src/state.h: Rename state_table
17695 as states.
17696
17697 2001-12-29 Akim Demaille <akim@epita.fr>
17698
17699 * src/lalr.c (build_relations): Rename `states' as `states1'.
17700 Sorry, I don't understand exactly what it is, no better name...
17701
17702 2001-12-29 Akim Demaille <akim@epita.fr>
17703
17704 * src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
17705 * src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
17706 * src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
17707 as rules.
17708
17709 2001-12-29 Akim Demaille <akim@epita.fr>
17710
17711 * src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
17712 ago.
17713
17714 2001-12-29 Akim Demaille <akim@epita.fr>
17715
17716 * src/reader.c, src/reader.h (user_toknums): Remove.
17717 Adjust all users to use symbols[i]->user_token_number.
17718
17719 2001-12-29 Akim Demaille <akim@epita.fr>
17720
17721 * src/gram.c, src/gram.h (sprec, sassoc): Remove.
17722 Adjust all users to use symbols[i]->prec or ->assoc.
17723
17724 2001-12-29 Akim Demaille <akim@epita.fr>
17725
17726 * src/reader.c, src/reader.h (tags): Remove.
17727 Adjust all users to use symbols[i]->tag.
17728
17729 2001-12-29 Akim Demaille <akim@epita.fr>
17730
17731 * src/gram.h, src/gram.c (symbols): New, similar to state_table
17732 and rule_table.
17733 * src/reader.c (packsymbols): Fill this table.
17734 Drop sprec.
17735 * src/conflicts.c (resolve_sr_conflict): Adjust.
17736 * src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
17737 single table.
17738 Use symbols[i]->tag instead of tags[i].
17739
17740 2001-12-29 Akim Demaille <akim@epita.fr>
17741
17742 * tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
17743 In addition, put a comment in there, to replace...
17744 * tests/regression.at (%union and C comments): Remove.
17745
17746 2001-12-29 Akim Demaille <akim@epita.fr>
17747
17748 * tests/regression.at (Web2c Actions): Blindly move the actual
17749 output as expected output. The contents *seem* right to me, but I
17750 can't pretend reading perfectly parser tables... Nonetheless, all
17751 the other tests pass correctly, the table look OK, even though the
17752 presence of `$axiom' is to be noted: AFAICS it is useless (but
17753 harmless).
17754
17755 2001-12-29 Akim Demaille <akim@epita.fr>
17756
17757 * src/reader.c (readgram): Don't add the rule 0 if there were no
17758 rules read. In other words, add it _after_ having performed
17759 grammar sanity checks.
17760 Fixes the `tests/regression.at (Invalid input: 1)' Failure.
17761
17762 2001-12-29 Akim Demaille <akim@epita.fr>
17763
17764 * tests/regression.at (Web2c Report): Catch up: the rule 0 is now
17765 visible, and some states have now a different number.
17766
17767 2001-12-29 Akim Demaille <akim@epita.fr>
17768
17769 * src/reader.c (readgram): Bind the initial rule's lineno to that
17770 of the first rule.
17771 * tests/regression.at (Rule Line Numbers, Unresolved SR Conflicts):
17772 (Solved SR Conflicts): Adjust rule 0's line number.
17773
17774 2001-12-29 Akim Demaille <akim@epita.fr>
17775
17776 Fix the `GAWK Grammar' failure.
17777
17778 * src/LR0.c (final_state): Initialize to -1 so that we do compute
17779 the reductions of the first state which was mistakenly confused
17780 with the final state because precisely final_state was initialized
17781 to 0.
17782 * tests/sets.at (Nullable): Adjust: state 0 does have lookaheads,
17783 now noticed by Bison.
17784 * tests/regression.at (Rule Line Numbers): Adjust: state 0 does
17785 have a reduction on $default.
17786
17787 2001-12-29 Akim Demaille <akim@epita.fr>
17788
17789 * src/gram.c (ritem_print): Be sure to subtract 1 when displaying
17790 rule line numbers.
17791 * src/closure.c (print_closure): Likewise.
17792 * src/derives.c (print_derives): Likewise.
17793 * tests/sets.at (Nullable): Adjust: the rule numbers are correct
17794 now.
17795
17796 2001-12-29 Akim Demaille <akim@epita.fr>
17797
17798 * src/lalr.c (lookaheads_print): New.
17799 (lalr): Call it when --trace-flag.
17800 * tests/sets.at (Nullable): Adjust: when tracing, the lookaheads
17801 are dumped.
17802
17803 2001-12-29 Akim Demaille <akim@epita.fr>
17804
17805 * src/derives.c (print_derives): Be sure to use `>= 0', not `> 0',
17806 when walking through ritem, even via rule->rhs.
17807 * src/reduce.c (dump_grammar, useful_production, reduce_output)
17808 (useful_production, useless_nonterminals): Likewise.
17809 (reduce_grammar_tables): Likewise, plus update nritems.
17810 * src/nullable.c (set_nullable): Likewise.
17811 * src/lalr.c (build_relations): Likewise.
17812 * tests/sets.at (Nullable): Adjust.
17813 Fortunately, now, the $axiom is no longer nullable.
17814
17815 2001-12-29 Akim Demaille <akim@epita.fr>
17816
17817 * src/LR0.c (generate_states): Use nritems, not nitems, nor using
17818 the 0-sentinel.
17819 * src/gram.c (ritem_longest_rhs): Likewise.
17820 * src/reduce.c (nonterminals_reduce): Likewise.
17821 * src/print_graph.c (print_graph): Likewise.
17822 * src/output.c (output_rule_data): Likewise.
17823 * src/nullable.c (set_nullable): Likewise.
17824
17825 2001-12-29 Akim Demaille <akim@epita.fr>
17826
17827 * src/output.c: Comment changes.
17828
17829 2001-12-27 Paul Eggert <eggert@twinsun.com>
17830
17831 * src/bison.simple (YYSTACK_ALLOC, YYSIZE_T): Remove special
17832 cases for non-GNU systems like AIX, HP-UX, SGI, Sun, and
17833 Sparc, as they were causing more porting problems than the
17834 (minor) performance improvement was worth.
17835
17836 Also, catch up with 1.31's YYSTD.
17837
17838 2001-12-27 Akim Demaille <akim@epita.fr>
17839
17840 * src/output.c (output_gram): Rely on nritems, not the
17841 0-sentinel. See below.
17842 Use -1 as separator, not 0.
17843 * src/bison.simple (yyparse): Subtract 1 to the rule numbers.
17844 Rely on -1 as separator in yyrhs, instead of 0.
17845 * tests/calc.at (AT_CHECK_CALC): Now, the parsers no longer issue
17846 twice `Now at end of input', therefore there are two lines less to
17847 expect.
17848
17849 2001-12-27 Akim Demaille <akim@epita.fr>
17850
17851 * tests/regression.at (Unresolved SR Conflicts):
17852 (Solved SR Conflicts, Rule Line Numbers): Adjust to the changes
17853 below.
17854
17855 2001-12-27 Akim Demaille <akim@epita.fr>
17856
17857 * src/LR0.c (new_state): Recognize the final state by the fact it
17858 is reached by eoftoken.
17859 (insert_start_shifting_state, insert_eof_shifting_state)
17860 (insert_accepting_state, augment_automaton): Remove, since now
17861 these states are automatically computed from the initial state.
17862 (generate_states): Adjust.
17863 * src/print.c: When reporting a rule number to the user, substract
17864 1, so that the axiom rule is rule 0, and the first user rule is 1.
17865 * src/reduce.c: Likewise.
17866 * src/print_graph.c (print_core): For the time being, just as for
17867 the report, depend upon --trace-flags to dump the full set of
17868 items.
17869 * src/reader.c (readgram): Once the grammar read, insert the rule
17870 0: `$axiom: START-SYMBOL $'.
17871 * tests/set.at: Adjust: rule 0 is now displayed, and since the
17872 number of the states has changed (the final state is no longer
17873 necessarily the last), catch up.
17874
17875 2001-12-27 Akim Demaille <akim@epita.fr>
17876
17877 Try to make the use of the eoftoken valid. Given that its value
17878 is 0 which was also used as a sentinel in ritem, (i) make sure >= 0
17879 is used instead of > 0 where appropriate, (ii), depend upon nritems
17880 instead of the 0-sentinel.
17881
17882 * src/gram.h, src/gram.c (nritems): New.
17883 Expected to be duplication of nitems, but for the time being...
17884 * src/reader.c (packgram): Assert nritems and nitems are equal.
17885 * src/LR0.c (allocate_itemsets, new_itemsets): Adjust.
17886 * src/closure.c (print_closure, print_fderives): Likewise.
17887 * src/gram.c (ritem_print): Likewise.
17888 * src/print.c (print_core, print_grammar): Likewise.
17889 * src/print_graph.c: Likewise.
17890
17891 2001-12-27 Akim Demaille <akim@epita.fr>
17892
17893 * src/main.c (main): If there are complains after grammar
17894 reductions, then output the report anyway if requested, then die.
17895 * src/symtab.c (bucket_new): Initialize `value' to -1, not 0.
17896 * src/reader.c (eoftoken): New.
17897 (parse_token_decl): If the token being defined has value `0', it
17898 is the eoftoken.
17899 (packsymbols): No longer hack `tags' to insert `$' by hand.
17900 Be sure to preserve the value of the eoftoken.
17901 (reader): Make sure eoftoken is defined.
17902 Initialize nsyms to 0: now eoftoken is created just like the others.
17903 * src/print.c (print_grammar): Don't special case the eof token.
17904 * src/regression.at: Adjust: `$' has value 0, not -1, which was a
17905 lie anyway, albeit pleasant.
17906 * tests/calc.at: Exercise error messages with eoftoken.
17907 Change the grammar so that empty input is invalid.
17908 Adjust expectations.
17909 When yyungeting, be sure to use a valid yylloc: use last_yylloc.
17910
17911 2001-12-27 Akim Demaille <akim@epita.fr>
17912
17913 * configure.in: Check the protos of strchr ans strspn.
17914 Replace strchr if needed.
17915 * src/system.h: Provide the protos of strchr, strspn and memchr if
17916 missing.
17917 * lib/strchr.c: New.
17918 * src/reader.c (symbols_save): Use strchr.
17919
17920 2001-12-27 Akim Demaille <akim@epita.fr>
17921
17922 * src/print.c, src/print_graph.c (escape): New.
17923 Use it to quote the TAGS outputs.
17924 * src/print_graph.c (print_state): Now errors are in red, and
17925 reductions in green.
17926 Prefer high to wide: output the state number on a line of its own.
17927
17928 2001-12-27 Akim Demaille <akim@epita.fr>
17929
17930 * src/state.h, src/state.c (reductions_new): New.
17931 * src/LR0.c (set_state_table): Let all the states have a
17932 `reductions', even if reduced to 0.
17933 (save_reductions): Adjust.
17934 * src/lalr.c (initialize_LA, initialize_lookaheads): Adjust.
17935 * src/print.c (print_reductions, print_actions): Adjust.
17936 * src/output.c (action_row): Adjust.
17937
17938 2001-12-27 Akim Demaille <akim@epita.fr>
17939
17940 * src/state.h, src/state.c (errs_new, errs_dup): New.
17941 * src/LR0.c (set_state_table): Let all the states have an errs,
17942 even if reduced to 0.
17943 * src/print.c (print_errs, print_reductions): Adjust.
17944 * src/output.c (output_actions, action_row): Adjust.
17945 * src/conflicts.c (resolve_sr_conflict): Adjust.
17946
17947 2001-12-27 Akim Demaille <akim@epita.fr>
17948
17949 * src/lalr.c (set_goto_map, initialize_F): Use SHIFT_SYMBOL.
17950
17951 2001-12-27 Akim Demaille <akim@epita.fr>
17952
17953 * src/conflicts.c, src/conflicts.h (print_reductions): Move to...
17954 * src/print.c: here.
17955 (lookaheadset, shiftset): New, used as additional storage by
17956 print_reductions.
17957 (print_results): Adjust.
17958 (print_shifts, print_gotos, print_errs): New, extracted from...
17959 (print_actions): here.
17960 * src/print_graph.c (print_actions): Remove dead code.
17961
17962 2001-12-27 Akim Demaille <akim@epita.fr>
17963
17964 * src/reader.c (copy_dollar, copy_at): Better checking of `n' in
17965 `$n' and `@n'.
17966
17967 2001-12-27 Akim Demaille <akim@epita.fr>
17968
17969 * src/lalr.c (add_lookback_edge): Use state_t instead of ints.
17970 (build_relations): Adjust.
17971
17972 2001-12-27 Akim Demaille <akim@epita.fr>
17973
17974 * src/lalr.c (set_goto_map): Remove a wrong but benign loop
17975 duplication.
17976
17977 2001-12-27 Akim Demaille <akim@epita.fr>
17978
17979 * src/reader.c (packgram): Catch nitems overflows.
17980
17981 2001-12-27 Akim Demaille <akim@epita.fr>
17982
17983 * src/files.c, src/files.h (guard_obstack): Remove.
17984 * src/output.c (output): Adjust.
17985 * src/reader.c (parse_braces): New, factoring...
17986 (copy_action, copy_guard): these two which are renamed as...
17987 (parse_action, parse_guard): these.
17988 As a voluntary consequence, using braces around guards is now
17989 mandatory.
17990
17991 2001-12-27 Akim Demaille <akim@epita.fr>
17992
17993 * src/gram.h (rule_t): `guard' and `guard_line' are new members.
17994 * src/reader.c (symbol_list): `guard' and `guard_line' are new
17995 members.
17996 (symbol_list_new): Adjust.
17997 (copy_action): action_line is the first line, not the last.
17998 (copy_guard): Just as for actions, store the `action' only, not
17999 the switch/case/break flesh.
18000 Don't parse the user action that might follow the guard, let...
18001 (readgram): do it, i.e., now, there can be an action after a
18002 guard.
18003 In other words the guard is just explicitly optional.
18004 (packgram): Adjust.
18005 * src/output.c (guards_output): New.
18006 (output_parser): Call it when needed.
18007 (output): Also free the guard and attrs obstacks.
18008 * src/files.c, src/files.h (obstack_save): Remove.
18009 (output_files): Remove.
18010 As a result, if one needs the former `.act' file, using an
18011 appropriate skeleton which requires actions and guards is now
18012 required.
18013 * src/main.c (main): Adjust.
18014 * tests/semantic.at: New.
18015 * tests/regression.at: Use `input.y' as input file name.
18016 Avoid 8+3 problems by requiring input.c when the test needs the
18017 parser.
18018
18019 2001-12-27 Akim Demaille <akim@epita.fr>
18020
18021 * src/reader.c (symbol_list_new): Be sure to initialize all the
18022 fields.
18023
18024 2001-12-27 Akim Demaille <akim@epita.fr>
18025
18026 All the hacks using a final pseudo state are now useless.
18027
18028 * src/LR0.c (set_state_table): state_table holds exactly nstates.
18029 * src/lalr.c (nLA): New.
18030 (initialize_LA, compute_lookaheads, initialize_lookaheads): Use it
18031 instead of lookaheadsp from the pseudo state (nstate + 1).
18032
18033 2001-12-27 Akim Demaille <akim@epita.fr>
18034
18035 * src/output.c (action_row, token_actions): Use a state_t instead
18036 of a integer, and nlookaheads instead of the following state's
18037 lookaheadsp.
18038
18039 2001-12-27 Akim Demaille <akim@epita.fr>
18040
18041 * src/conflicts.c (log_resolution, flush_shift)
18042 (resolve_sr_conflict, set_conflicts, solve_conflicts)
18043 (count_sr_conflicts, count_rr_conflicts, conflicts_output)
18044 (conflicts_print, print_reductions): Use a state_t instead of an
18045 integer when referring to a state.
18046 As much as possible, depend upon nlookaheads, instead of the
18047 `lookaheadsp' member of the following state (since lookaheads of
18048 successive states are successive, the difference between state n + 1
18049 and n served as the number of lookaheads for state n).
18050 * src/lalr.c (add_lookback_edge): Likewise.
18051 * src/print.c (print_core, print_actions, print_state)
18052 (print_results): Likewise.
18053 * src/print_graph.c (print_core, print_actions, print_state)
18054 (print_graph): Likewise.
18055 * src/conflicts.h: Adjust.
18056
18057 2001-12-27 Akim Demaille <akim@epita.fr>
18058
18059 * src/bison.hairy: Formatting/comment changes.
18060 ANSIfy.
18061 Remove `register' indications.
18062 Add plenty of `static'.
18063
18064 2001-12-27 Akim Demaille <akim@epita.fr>
18065
18066 * src/output.c (prepare): Drop the muscle `ntbase' which
18067 duplicates ntokens.
18068 * src/bison.simple: Formatting/comment changes.
18069 Use YYNTOKENS only, which is documented, but not YYNTBASE, which
18070 is an undocumented synonym.
18071
18072 2001-12-22 Akim Demaille <akim@epita.fr>
18073
18074 * src/output.c (output_table_data): Change the prototype to use
18075 `int' for array ranges: some invocations do pass an int, not a
18076 short.
18077 Reported by Wayne Green.
18078
18079 2001-12-22 Akim Demaille <akim@epita.fr>
18080
18081 Some actions of web2c.y are improperly triggered.
18082 Reported by Mike Castle.
18083
18084 * src/lalr.c (traverse): s/F (i)[k] = F (j)[k]/F (j)[k] = F (i)[k]/.
18085 * tests/regression.at (Web2c): Rename as...
18086 (Web2c Report): this.
18087 (Web2c Actions): New.
18088
18089 2001-12-22 Akim Demaille <akim@epita.fr>
18090
18091 Reductions in web2c.y are improperly reported.
18092 Reported by Mike Castle.
18093
18094 * src/conflicts.c (print_reductions): Fix.
18095 * tests/regression.at (Web2c): New.
18096
18097 2001-12-18 Akim Demaille <akim@epita.fr>
18098
18099 Some host fail on `assert (!"foo")', which expands to
18100 ((!"foo") ? (void)0 : __assert("!"foo."", __FILE__, __LINE__))
18101 Reported by Nelson Beebee.
18102
18103 * src/output.c, src/vcg.c: Replace `assert (!"it succeeded")' with
18104 `#define it_succeeded 0' and `assert (it_succeeded)'.
18105
18106 2001-12-17 Marc Autret <autret_m@epita.fr>
18107
18108 * src/bison.simple: Don't hard code the skeleton line and filename.
18109 * src/output.c (output_parser): Rename 'line' as 'output_line'.
18110 New line counter 'skeleton_line' (skeleton-line muscle).
18111
18112 2001-12-17 Paul Eggert <eggert@twinsun.com>
18113
18114 * NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
18115 YYDEBUG must be defined to a nonzero value.
18116
18117 * src/bison.simple (yytname): Do not assume that the user defines
18118 YYDEBUG to a properly parenthesized expression.
18119
18120 2001-12-17 Akim Demaille <akim@epita.fr>
18121
18122 * src/state.h (state_t): Rename lookaheads as lookaheadsp.
18123 nlookaheads is a new member.
18124 Adjust all users.
18125 * src/lalr.h (nlookaheads): Remove this orphan declaration.
18126 * src/lalr.c (initialize_lookaheads): Set nlookaheads for each
18127 state.
18128
18129 2001-12-17 Akim Demaille <akim@epita.fr>
18130
18131 * src/files.h, src/files.c (open_files, close_files): Remove.
18132 * src/main.c (main): Don't open/close files, nor invoke lex_free,
18133 let...
18134 * src/reader.c (reader): Do it.
18135
18136 2001-12-17 Akim Demaille <akim@epita.fr>
18137
18138 * src/conflicts.c (print_reductions): Formatting changes.
18139
18140 2001-12-17 Akim Demaille <akim@epita.fr>
18141
18142 * src/conflicts.c (flush_shift): Also adjust lookaheadset.
18143 (flush_reduce): New.
18144 (resolve_sr_conflict): Adjust.
18145
18146 2001-12-17 Akim Demaille <akim@epita.fr>
18147
18148 * src/output.c (output_obstack): Be static and rename as...
18149 (format_obstack): this, to avoid any confusion with files.c's
18150 output_obstack.
18151 * src/reader.h (muscle_obstack): Move to...
18152 * src/output.h: here, since it's defined in output.c.
18153
18154 2001-12-17 Akim Demaille <akim@epita.fr>
18155
18156 * src/output.c (action_row, save_column, default_goto)
18157 (sort_actions, matching_state, pack_vector): Better variable
18158 locality.
18159
18160 2001-12-17 Akim Demaille <akim@epita.fr>
18161
18162 * src/output.c: Various formatting changes.
18163
18164 2001-12-17 Akim Demaille <akim@epita.fr>
18165
18166 * src/files.c (output_files): Free the output_obstack.
18167 * src/main.c (main): Call print and print_graph conditionally.
18168 * src/print.c (print): Work unconditionally.
18169 * src/print_graph.c (print_graph): Work unconditionally.
18170 * src/conflicts.c (log_resolution): Output only if verbose_flag.
18171
18172 2001-12-16 Marc Autret <autret_m@epita.fr>
18173
18174 * src/output.c (actions_output): Fix. When we use %no-lines,
18175 there is one less line per action.
18176
18177 2001-12-16 Marc Autret <autret_m@epita.fr>
18178
18179 * src/bison.simple: Remove a useless #line directive.
18180 s/#line %%line %%skeleton/#line %%line "%%parser-file-name"/'.
18181 * src/output.c (get_lines_number): New.
18182 (output_parser): Adjust, now takes care about the lines of a
18183 output muscles.
18184 Fix line numbering.
18185 (actions_output): Computes the number of lines taken by actions.
18186 (output_master_parser): Insert new skeleton which is the name of
18187 the output parser file name.
18188
18189 2001-12-15 Marc Autret <autret_m@epita.fr>
18190
18191 * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
18192
18193 2001-12-15 Marc Autret <autret_m@epita.fr>
18194
18195 * src/output.c (output_gram): Keep track of the hairy one.
18196
18197 2001-12-15 Akim Demaille <akim@epita.fr>
18198
18199 Make `make distcheck' work.
18200
18201 * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses
18202 system.h which uses libgettext.h.
18203
18204 2001-12-15 Akim Demaille <akim@epita.fr>
18205
18206 * src/nullable.c (set_nullable): Useless rules must be skipped,
18207 otherwise, since we range over their symbols, we might look at a
18208 nonterminal which no longer ``exists'', i.e., it is not counted in
18209 `nvars', hence we overflow our arrays.
18210
18211 2001-12-15 Akim Demaille <akim@epita.fr>
18212
18213 The header can also be produced directly, without any obstack!
18214 Yahoo!
18215
18216 * src/files.c, src/files.h (defines_obstack): Remove.
18217 (compute_header_macro): Global.
18218 (defines_obstack_save): Remove.
18219 * src/reader.c (parse_union_decl): No longer output to
18220 defines_obstack: its content can be found in the `stype' muscle
18221 anyway.
18222 (output_token_translations): Merge into...
18223 (symbols_output): this.
18224 Rename as...
18225 (symbols_save): this.
18226 (reader): Adjust.
18227 * src/output.c (header_output): New.
18228 (output): Call it.
18229
18230 2001-12-15 Akim Demaille <akim@epita.fr>
18231
18232 * src/reader.c (parse_union_decl): Instead of handling two obstack
18233 simultaneously, use one to define the `stype' muscle, and use the
18234 value of the latter to fill defines_obstack.
18235 (copy_comment): Remove.
18236 (copy_comment2): Work for a single obstack.
18237 Rename as...
18238 (copy_comment): this.
18239
18240 2001-12-15 Akim Demaille <akim@epita.fr>
18241
18242 * src/lex.c, src/lex.h (xgetc): No longer static.
18243 * src/reader.c (parse_union_decl): Revamp.
18244
18245 2001-12-15 Akim Demaille <akim@epita.fr>
18246
18247 Still making progress in separating Bison into (i) input, (ii)
18248 process, (iii) output: now we can directly output the parser file
18249 without using table_obstack at all.
18250
18251 * src/files.c, src/files.h (table_obstack): Bye bye.
18252 (parser_file_name): New.
18253 * src/files.c (compute_output_file_names): Compute it.
18254 * src/output.c (actions_output, output_parser)
18255 (output_master_parser): To a file instead of an obstack.
18256
18257 2001-12-15 Akim Demaille <akim@epita.fr>
18258
18259 Attach actions to rules, instead of pre-outputting them to
18260 actions_obstack.
18261
18262 * src/gram.h (rule_t): action and action_line are new members.
18263 * src/reader.c (symbol_list): Likewise.
18264 (copy_action): Save the actions within the rule.
18265 (packgram): Save them in rule_table.
18266 * src/output.c (actions_output): New.
18267 (output_parser): Use it on `%%actions'.
18268 (output_rule_data): Don't free rule_table.
18269 (output): Do it.
18270 (prepare): Don't save the `action' muscle.
18271 * src/bison.simple: s/%%action/%%actions/.
18272
18273 2001-12-15 Akim Demaille <akim@epita.fr>
18274
18275 * src/reader.c (copy_action): When --yacc, don't append a `;'
18276 to the user action: let it fail if lacking.
18277 Suggested by Arnold Robbins and Tom Tromey.
18278
18279 2001-12-14 Akim Demaille <akim@epita.fr>
18280
18281 * src/lex.c (literalchar): Simply return the char you decoded, non
18282 longer mess around with obstacks and int pointers.
18283 Adjust all callers.
18284
18285 2001-12-14 Akim Demaille <akim@epita.fr>
18286
18287 * src/lex.c (literalchar): Don't escape the special characters,
18288 just decode them, and keep them as char (before, eol was output as
18289 the 2 char string `\n' etc.).
18290 * src/output.c (output_rule_data): Use quotearg to output the
18291 token strings.
18292
18293 2001-12-13 Paul Eggert <eggert@twinsun.com>
18294
18295 * src/bison.simple (YYSIZE_T, YYSTACK_ALLOC, YYSTACK_FREE):
18296 Do not infringe on the global user namespace when using C++.
18297 (YYFPRINTF, YYSTDERR): New macros, needed for the above.
18298 All uses of `fprintf' and `stderr' changed.
18299
18300 * doc/bison.texinfo: Document YYFPRINTF, YYSTDERR.
18301
18302 2001-12-13 Akim Demaille <akim@epita.fr>
18303
18304 The computation of nullable is broken: it doesn't handle empty
18305 RHS's properly.
18306
18307 * tests/torture.at (GNU AWK Grammar): New.
18308 * tests/sets.at (Nullable): New.
18309 * src/nullable.c (set_nullable): Instead of blindly looping over
18310 `ritems', loop over the rules, and then over their rhs's.
18311
18312 Work around Autotest bugs.
18313
18314 * src/warshall.c (bitmatrix_print): Don't use `+--+' as table
18315 frame, because Autotest understand lines starting with a `+' as
18316 traces from the shell. Then, they are not processed properly.
18317 Admittedly an Autotest bug, but we don't have time to wait for
18318 Autotest to catch up.
18319 * tests/regression.at (Broken Closure): Adjust to the new table
18320 frames.
18321 Move to...
18322 * tests/sets.at: here.
18323
18324 2001-12-13 Akim Demaille <akim@epita.fr>
18325
18326 * src/closure.c (closure): Use nrules instead of playing tricks
18327 with BITS_PER_WORD.
18328
18329 2001-12-13 Akim Demaille <akim@epita.fr>
18330
18331 * src/print.c (print_actions): Output the handling of `$' as the
18332 traces do: shifting the token EOF. Before EOF was treated as a
18333 nonterminal.
18334 * tests/regression.at: Adjust some tests.
18335 * src/print_graph.c (print_core): Complete the set of items via
18336 closure. The next-to-final and final states are still unsatisfying,
18337 but that's to be addressed elsewhere.
18338 No longer output the rule numbers, but do output the state number.
18339 A single loop for the shifts + gotos is enough, but picked a
18340 distinct color for each.
18341 (print_graph): Initialize and finalize closure.
18342
18343 2001-12-13 Akim Demaille <akim@epita.fr>
18344
18345 * src/reader.c (readgram): Remove dead code, an strip useless
18346 braces.
18347 (get_type): Remove, unused.
18348
18349 2001-12-12 Akim Demaille <akim@epita.fr>
18350
18351 * src/complain.h, src/complain.c: Remove error_one_per_line, rely
18352 on that of lib/error.c.
18353
18354 2001-12-12 Akim Demaille <akim@epita.fr>
18355
18356 Some hosts don't like `/' in includes.
18357
18358 * src/system.h: Include libgettext.h without qualifying the path.
18359 * src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
18360 $(top_srcdir).
18361
18362 2001-12-11 Marc Autret <autret_m@epita.fr>
18363
18364 * src/output.c (output_parser): Remove useless muscle.
18365
18366 2001-12-11 Marc Autret <autret_m@epita.fr>
18367
18368 * src/bison.simple: Remove #line just before %%epilogue. It
18369 is now handled in ...
18370 * src/reader.c (read_additionnal_code): Add the output of a
18371 #line for the epilogue.
18372
18373 2001-12-10 Marc Autret <autret_m@epita.fr>
18374
18375 * src/reader.c (copy_definition): Re-use CPP-outed code which
18376 replace precedent remove.
18377 * src/bison.simple: Remove #line before %%prologue because
18378 %%input-line is wrong at this time.
18379
18380 2001-12-10 Marc Autret <autret_m@epita.fr>
18381
18382 * src/reader.c (symbols_output): Clean up.
18383 * src/output.c (output_gram, output): Clean up.
18384
18385 2001-12-10 Akim Demaille <akim@epita.fr>
18386
18387 * src/lalr.c (initialize_lookaheads): New. Extracted from...
18388 * src/LR0.c (set_state_table): here.
18389 * src/lalr.c (lalr): Call it.
18390
18391 2001-12-10 Akim Demaille <akim@epita.fr>
18392
18393 * src/state.h (shifts): Remove the `number' member: shifts are
18394 attached to state, hence no longer need to be labelled with a
18395 state number.
18396
18397 2001-12-10 Akim Demaille <akim@epita.fr>
18398
18399 Now that states have a complete set of members, the linked list of
18400 shifts is useless: just fill directly the state's shifts member.
18401
18402 * src/state.h (shifts): Remove the `next' member.
18403 * src/LR0.c (first_state, last_state): Remove.
18404 Adjust the callers.
18405 (augment_automaton): Don't look for the shifts that must be added
18406 a shift on EOF: it is those of the state we looked for! But now,
18407 since shifts are attached, it is no longer needed to looking
18408 merely by its id: its number.
18409
18410 2001-12-10 Akim Demaille <akim@epita.fr>
18411
18412 * src/LR0.c (augment_automaton): Better variable locality.
18413 Remove an impossible branch: if there is a state corresponding to
18414 the start symbol being shifted, then there is shift for the start
18415 symbol from the initial state.
18416
18417 2001-12-10 Akim Demaille <akim@epita.fr>
18418
18419 * src/LR0.c (augment_automaton): Call `insert_eof_shifting_state'
18420 only when appropriate: when insert_start_shifting_state' is not
18421 invoked.
18422 * tests/regression.at (Rule Line Numbers): Adjust.
18423
18424 2001-12-10 Akim Demaille <akim@epita.fr>
18425
18426 * src/LR0.c (augment_automaton): Now that all states have shifts,
18427 merge the two cases addition shifts to the initial state.
18428
18429 2001-12-10 Akim Demaille <akim@epita.fr>
18430
18431 * src/lalr.c (set_state_table): Move to...
18432 * src/LR0.c: here.
18433 * src/lalr.c (lalr): Don't call it...
18434 * src/LR0.c (generate_states): do it.
18435 * src/LR0.h (first_state): Remove, only the table is used.
18436
18437 2001-12-10 Akim Demaille <akim@epita.fr>
18438
18439 * src/LR0.h (first_shift, first_reduction): Remove.
18440 * src/lalr.c: Don't use first_shift: find shifts through the
18441 states.
18442
18443 2001-12-10 Akim Demaille <akim@epita.fr>
18444
18445 * src/LR0.c: Attach shifts to states as soon as they are
18446 computed.
18447 * src/lalr.c (set_state_table): Instead of assigning shifts to
18448 state, just assert that the mapping was properly done.
18449
18450 2001-12-10 Akim Demaille <akim@epita.fr>
18451
18452 * src/LR0.c (insert_start_shift): Rename as...
18453 (insert_start_shifting_state): this.
18454 (insert_eof_shifting_state, insert_accepting_state): New.
18455 (augment_automaton): Adjust.
18456 Better locality of the variables.
18457 When looking if the start_symbol is shifted from the initial
18458 state, using `while (... symbol != start_symbol ...)' sounds
18459 better than `while (... symbol < start_symbol ...)': If fail
18460 to see how the order between symbols could be relevant!
18461
18462 2001-12-10 Akim Demaille <akim@epita.fr>
18463
18464 * src/getargs.h: Don't declare `spec_name_prefix' and
18465 `spec_file_prefix', declared by src/files.h.
18466 * src/files.c, src/files.h: Default for spec_name_prefix is "yy".
18467 * src/muscle_tab.c (muscle_init): Default prefix to NULL.
18468 * src/output.c (prepare): Adjust.
18469 * src/reader.c (symbols_output): Likewise.
18470 * src/vmsgetargs.c: Vaguely adjust, but who cares?
18471
18472 2001-12-10 Akim Demaille <akim@epita.fr>
18473
18474 * src/muscle_tab.c (muscle_init): NULL is a better default than
18475 `"0"'.
18476
18477 2001-12-10 Akim Demaille <akim@epita.fr>
18478
18479 * src/reader.c (reader): Calling symbols_output once is enough.
18480
18481 2001-12-10 Akim Demaille <akim@epita.fr>
18482
18483 Now that states have a complete set of members, the linked list of
18484 reductions is useless: just fill directly the state's reductions
18485 member.
18486
18487 * src/state.h (struct reductions): Remove member `number' and
18488 `next'.
18489 * src/LR0.c (first_reduction, last_reduction): Remove.
18490 (save_reductions): Don't link the new reductions, store them in
18491 this_state.
18492 * src/lalr.c (set_state_table): No need to attach reductions to
18493 states, it's already done.
18494 * src/output.c (output_actions): No longer free the shifts, then
18495 the reductions, then the states: free all the states and their
18496 members.
18497
18498 2001-12-10 Akim Demaille <akim@epita.fr>
18499
18500 * src/options.c (OPTN, DRTV, BOTH): New.
18501 (option_table): Use them.
18502
18503 * src/muscle_tab.c: Don't include xalloc.h and string.h: that's
18504 the job of system.h.
18505 * src/options.c: Don't include stdio.h and xalloc.h for the same
18506 reasons.
18507
18508 2001-12-10 Akim Demaille <akim@epita.fr>
18509
18510 * src/output.c (output, prepare): Make sure the values of the
18511 muscles `action' and `prologue' are 0-terminated.
18512
18513 2001-12-10 Akim Demaille <akim@epita.fr>
18514
18515 Clean up GCC warnings.
18516
18517 * src/reader.c (copy_action): `buf' is not used.
18518 (parse_skel_decl): Be static.
18519 * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'.
18520 * src/options.h (create_long_option_table): Have a real prototype.
18521 * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete)
18522 (hash_delete_at): Return const void *.
18523 Adjust casts to preserve the const.
18524
18525 2001-12-10 Akim Demaille <akim@epita.fr>
18526
18527 * configure.in: Require 2.52g.
18528 M4 is not needed, but AUTOM4TE is.
18529 * m4/m4.m4: Remove.
18530 * tests/Makefile.am: Adjust.
18531
18532 2001-12-10 Akim Demaille <akim@epita.fr>
18533
18534 One structure for states is enough, even though theoretically
18535 there are LR(0) states and LALR(1) states.
18536
18537 * src/lalr.h (state_t): Remove.
18538 (state_table): Be state_t **, not state_t *.
18539 * src/state.h (core, CORE_ALLOC): Rename as...
18540 (state_t, STATE_ALLOC): this.
18541 Add the LALR(1) members: shifts, reductions, errs.
18542 * src/LR0.c (state_table): Rename as...
18543 (state_hash): this, to avoid name clashes with the global
18544 `state_table'.
18545 * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c
18546 * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust.
18547
18548 2001-12-10 Akim Demaille <akim@epita.fr>
18549
18550 Bison dumps core on bash.y.
18551 Reported by Pascal Bart.
18552
18553 * src/warshall.c (bitmatrix_print): New.
18554 (TC): Use it.
18555 When performing a transitive closure R(i, j) && R(j, k) => R(i, k),
18556 j must be the outer loop.
18557 * tests/regression.at (Broken Closure): New.
18558
18559 2001-12-05 Akim Demaille <akim@epita.fr>
18560
18561 * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
18562 its argument.
18563 Reported by Peter Hamorsky.
18564
18565 2001-12-05 Akim Demaille <akim@epita.fr>
18566
18567 * src/conflicts.c (err_table): Remove.
18568 (resolve_sr_conflict): Adjust.
18569 * src/lalr.h (state_t.reduction_table, state_t.shift_table):
18570 Rename as...
18571 (state_t.reductions, state_t.shifts): this.
18572
18573 2001-12-05 Akim Demaille <akim@epita.fr>
18574
18575 * src/reduce.c (reduce_grammar_tables): No longer disable the
18576 removal of useless rules via CPP but via `if (0)', so that the
18577 compiler still check the code is valid.
18578 For instance, it should have noticed `rline' no longer exists: use
18579 the `line' member of rule_t.
18580 * src/gram.c (dummy, rline): Remove, unused.
18581
18582 2001-12-05 Akim Demaille <akim@epita.fr>
18583
18584 * src/output.c (pack_vector): Use assert, not berror.
18585 * src/main.c (berror): Remove, unused.
18586
18587 2001-12-05 Akim Demaille <akim@epita.fr>
18588
18589 New experimental feature: if --verbose --trace output all the
18590 items of a state, not only its kernel.
18591
18592 * src/print.c (print_core): If `trace_flag', then invoke closure
18593 before outputting the items of the state (print_core is no longer
18594 a correct name them).
18595 (print_results): Invoke new_closure/free_closure if needed.
18596
18597 2001-12-05 Akim Demaille <akim@epita.fr>
18598
18599 * src/LR0.c (new_itemsets): Use nshifts only, not shiftcount.
18600 * src/closure.c, src/closure.h (itemsetsize): Rename as...
18601 (nitemset): for consistency with the rest of the project.
18602
18603 2001-12-05 Akim Demaille <akim@epita.fr>
18604
18605 * src/closure.c (print_closure): Improve.
18606 (closure): Use it for printing input and output.
18607
18608 2001-12-05 Akim Demaille <akim@epita.fr>
18609
18610 * src/closure.c (FIRSTS, FDERIVES): Adjust to reality: they are
18611 indexed by nonterminals.
18612
18613 2001-12-05 Akim Demaille <akim@epita.fr>
18614
18615 * src/warshall.c (TC, RTC): De-obsfucate (source reduced to 22% of
18616 what it was!).
18617 * src/warshall.h: Remove accidental duplication of the content.
18618
18619 2001-12-05 Akim Demaille <akim@epita.fr>
18620
18621 * src/closure.c (set_fderives): De-obfuscate.
18622
18623 2001-12-05 Akim Demaille <akim@epita.fr>
18624
18625 * src/closure.c (print_firsts, print_fderives): De-obfuscate.
18626
18627 2001-12-05 Akim Demaille <akim@epita.fr>
18628
18629 * src/closure.c (set_firsts): De-obfuscate.
18630
18631 2001-12-05 Akim Demaille <akim@epita.fr>
18632
18633 * src/output.c (action_row): De-obfuscate
18634 using the good o' techniques: arrays not pointers, variable
18635 locality, BITISSET, RESETBIT etc.
18636
18637 2001-12-05 Akim Demaille <akim@epita.fr>
18638
18639 Pessimize the code to simplify it: from now on, all the states
18640 have a valid SHIFTS, which NSHIFTS is possibly 0.
18641
18642 * src/LR0.c (shifts_new): Be global and move to..
18643 * src/state.c, src/state.h: here.
18644 * src/conflicts, src/lalr.c, src/output.c, src/print.c,
18645 * src/print_graph: Adjust.
18646
18647 2001-12-05 Akim Demaille <akim@epita.fr>
18648
18649 * src/state.h (SHIFT_DISABLE, SHIFT_IS_DISABLED): New.
18650 * src/conflicts.c: Use it.
18651 Restore a few missing `if (!SHIFT_IS_DISABLED)' which were
18652 incorrectly ``simplified''.
18653
18654 2001-12-05 Akim Demaille <akim@epita.fr>
18655
18656 * src/conflicts.c (flush_shift, resolve_sr_conflict): De-obfuscate
18657 using the good o' techniques: arrays not pointers, variable
18658 locality, BITISSET, RESETBIT etc.
18659
18660 2001-12-05 Akim Demaille <akim@epita.fr>
18661
18662 * src/state.h (SHIFT_SYMBOL): New.
18663 * src/conflicts.c: Use it to deobfuscate.
18664
18665 2001-12-05 Akim Demaille <akim@epita.fr>
18666
18667 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts)
18668 (print_reductions): De-obfuscate using the good o' techniques:
18669 arrays not pointers, variable locality, BITISSET.
18670
18671 2001-12-05 Akim Demaille <akim@epita.fr>
18672
18673 * src/conflicts.c (print_reductions): Arrays, not pointers.
18674 Use BITISSET.
18675
18676 2001-12-05 Akim Demaille <akim@epita.fr>
18677
18678 * src/conflicts.c (print_reductions): Pessimize, but clarify.
18679
18680 2001-12-05 Akim Demaille <akim@epita.fr>
18681
18682 * src/conflicts.c (print_reductions): Improve variable locality.
18683
18684 2001-12-05 Akim Demaille <akim@epita.fr>
18685
18686 * src/conflicts.c (print_reductions): Pessimize, but clarify.
18687
18688 2001-12-05 Akim Demaille <akim@epita.fr>
18689
18690 * src/conflicts.c (print_reductions): Improve variable locality.
18691
18692 2001-12-05 Akim Demaille <akim@epita.fr>
18693
18694 * src/state.h (SHIFT_IS_ERROR, SHIFT_IS_GOTO, SHIFT_IS_SHIFT): New.
18695 * src/lalr.c: Use them.
18696
18697 2001-12-05 Akim Demaille <akim@epita.fr>
18698
18699 * src/LR0.c (augment_automaton): Formatting changes.
18700 Better variable locality.
18701
18702 2001-12-05 Akim Demaille <akim@epita.fr>
18703
18704 * src/lalr.c (matrix_print): New.
18705 (transpose): Use it.
18706 Use arrays instead of pointers.
18707
18708 2001-12-05 Akim Demaille <akim@epita.fr>
18709
18710 * src/lalr.c (maxrhs): Move to...
18711 * src/gram.c, src/gram.h (ritem_longest_rhs): here.
18712 * src/lalr.c (build_relations): Adjust.
18713
18714 2001-12-05 Akim Demaille <akim@epita.fr>
18715
18716 * src/lalr.c (transpose): Free the memory allocated to the
18717 argument, as it is replaced by the results by the unique caller.
18718 (build_relations): Merely invoke transpose: it handles the memory
18719 deallocation.
18720 Improve variable locality.
18721 Avoid variables used as mere abbreviations.
18722 (compute_lookaheads): Use arrays instead of pointers.
18723
18724 2001-12-05 Akim Demaille <akim@epita.fr>
18725
18726 * src/lalr.c (initialize_F): Improve variable locality.
18727 Avoid variables used as mere abbreviations.
18728
18729 2001-12-05 Akim Demaille <akim@epita.fr>
18730
18731 * src/derives.c (print_derives): Display the ruleno.
18732 * src/lalr.c (initialize_F, transpose): Better variable locality
18733 to improve readability.
18734 Avoid variables used as mere abbreviations.
18735
18736 2001-12-05 Akim Demaille <akim@epita.fr>
18737
18738 * src/lalr.c (traverse): Use arrays instead of pointers.
18739
18740 2001-12-05 Akim Demaille <akim@epita.fr>
18741
18742 * src/nullable.c (set_nullable): Use a for loop to de-obfuscate
18743 the handling of squeue.
18744 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
18745
18746 2001-12-05 Akim Demaille <akim@epita.fr>
18747
18748 Because useless nonterminals are now kept alive (instead of being
18749 `destroyed'), we now sometimes examine them, and store information
18750 related to them. Hence we need to know their number, and adjust
18751 memory allocations.
18752
18753 * src/reduce.c, src/reduce.h (nuseless_nonterminals): No longer
18754 static.
18755 * src/LR0.c (allocate_itemsets): The memory allocated to
18756 `symbol_count' was used for two different purpose: once to count
18757 the number of occurrences of each symbol, and later reassigned to
18758 `shift_symbol', containing the symbol that can be shifted from a
18759 given state.
18760 Deobfuscate, i.e., allocate, use and free `symbol_count' here
18761 only, and...
18762 (new_itemsets): Allocate `shift_symbol' here.
18763 (allocate_itemsets): symbol_count includes useless nonterminals.
18764 Make room for them.
18765 (free_storage): Use `free', not `XFREE', for pointers that cannot
18766 be null.
18767
18768 2001-12-05 Akim Demaille <akim@epita.fr>
18769
18770 * src/nullable.c (set_nullable): Deobfuscate the handling of
18771 ritem.
18772 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
18773
18774 2001-12-05 Akim Demaille <akim@epita.fr>
18775
18776 * src/gram.c, src/gram.h (ritem_print): New.
18777 * src/gram.c (dummy): Remove, now there is actual code in gram.c.
18778 (This useless function was defined only to work around VMS linkers
18779 that can't handle compilation units with variables only).
18780 * src/reduce.c (dump_grammar): Use it to trace the construction of
18781 ritem.
18782
18783 2001-12-04 Paul Eggert <eggert@twinsun.com>
18784
18785 * src/bison.simple (union yyalloc): Change member names
18786 to be the same as the stack names.
18787 (yyparse): yyptr is now union yyalloc *, not char *.
18788 (YYSTACK_RELOCATE): Likewise. This avoids a GCC warning,
18789 and may generate better code on some machines.
18790 (yystpcpy): Use prototype if __STDC__ is defined, not just
18791 if __cplusplus is defined.
18792
18793 2001-11-30 Akim Demaille <akim@epita.fr>
18794
18795 * configure.in (WARNING_CFLAGS): Add -Werror when possible.
18796 (CFLAGS): Do not include the WARNING_CFLAGS here, since GNU
18797 Gettext doesn't compile cleanly, and dies with -Werror.
18798 * src/Makefile.am, lib/Makefile.am, tests/atlocal.in (CFLAGS):
18799 Include WARNING_CFLAGS here.
18800 * lib/xstrdup.c: Include xalloc.h, so that xstrdup be declared
18801 before being defined.
18802
18803 2001-11-27 Paul Eggert <eggert@twinsun.com>
18804
18805 * lib/quotearg.h (quotearg_n, quotearg_n_style):
18806 First arg is int, not unsigned.
18807 * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
18808 (SIZE_MAX, UINT_MAX): New macros.
18809 (quotearg_n_options): Abort if N is negative.
18810 Avoid overflow check on hosts where size_t is 64 bits and int
18811 is 32 bits, as overflow is impossible there.
18812 Fix off-by-one typo that caused unnecessary reallocation.
18813
18814 2001-11-29 Paul Eggert <eggert@twinsun.com>
18815
18816 Name space cleanup in generated parser.
18817
18818 * doc/bison.texinfo (Bison Parser): Discuss system headers
18819 and their effect on the user name space.
18820
18821 * src/bison.simple:
18822 (YYSTACK_ALLOC, YYSTACK_FREE, union yyalloc, YYSTACK_GAP_MAX,
18823 YYSTACK_BYTES, YYSTACK_RELOCATE): Do not define unless necessary,
18824 i.e. unless ! defined (yyoverflow) || defined (YYERROR_VERBOSE).
18825
18826 (YYSIZE_T): New macro. Use it instead of size_t, to avoid infringing
18827 on user names when possible.
18828
18829 (YYSTACK_USE_ALLOCA): Do not define; just use any existing defn.
18830 Simplify test for whather <alloca.h> exists.
18831
18832 (<stdlib.h>): Include if we will use malloc, and if standard C or C++.
18833
18834 (<stdio.h>): Include if YYDEBUG.
18835
18836 (yymemcpy): Renamed from __yy_memcpy. Do not define unless
18837 ! defined (yyoverflow) && ! defined (yymemcpy).
18838
18839 (yymemcpy, yyparse): Rename local variables as needed so that
18840 they all begin with 'yy'.
18841
18842 (yystrlen, yystpcpy): New functions.
18843
18844 (YY_DECL_NON_LSP_VARIABLES): Renamed from _YY_DECL_VARIABLES.
18845 All uses changed.
18846
18847 (yyparse): size_t -> YYSIZE_T. Use yystrlen and yystpcpy
18848 instead of relying on string.h functions. Use YYSTACK_ALLOC
18849 and YYSTACK_FREE instead of malloc and free.
18850
18851 2001-11-30 Akim Demaille <akim@epita.fr>
18852
18853 * src/bison.simple (YYSTYPE, YYLTYPE): Move their definitions
18854 before their first uses.
18855 (YYBISON, YYPURE): Move to the top of the output.
18856
18857 2001-11-30 Akim Demaille <akim@epita.fr>
18858
18859 * tests/reduce.at (Useless Nonterminals): Fix.
18860
18861 2001-11-30 Akim Demaille <akim@epita.fr>
18862
18863 * src/bison.simple (YYSTACK_FREE): Use `do {;} while (0)' as empty
18864 if body instead of `;' to pacify GCC's warnings.
18865
18866 2001-11-30 Akim Demaille <akim@epita.fr>
18867
18868 Instead of mapping the LHS of unused rules to -1, keep the LHS
18869 valid, but flag the rules as invalid.
18870
18871 * src/gram.h (rule_t): `useful' is a new member.
18872 * src/print.c (print_grammar): Adjust.
18873 * src/derives.c (set_derives): Likewise.
18874 * src/reader.c (packgram, reduce_output): Likewise.
18875 * src/reduce.c (reduce_grammar_tables): Likewise.
18876 * tests/reduce.at (Underivable Rules, Useless Rules): New.
18877
18878 2001-11-30 Akim Demaille <akim@epita.fr>
18879
18880 * src/reduce.c (reduce_output): Formatting changes.
18881 * src/print.c (print_results, print_grammar): Likewise.
18882 * tests/regression.at (Rule Line Numbers)
18883 (Solved SR Conflicts, Unresolved SR Conflicts): Adjust.
18884
18885 2001-11-30 Akim Demaille <akim@epita.fr>
18886
18887 * src/reduce.c (nonterminals_reduce): Instead of throwing away
18888 useless nonterminals, move them at the end of the symbol arrays.
18889 (reduce_output): Adjust.
18890 * tests/reduce.at (Useless Nonterminals): Adjust.
18891
18892 2001-11-30 Akim Demaille <akim@epita.fr>
18893
18894 * src/reduce.c: Various comment/formatting changes.
18895 (nonterminals_reduce): New, extracted from...
18896 (reduce_grammar_tables): here.
18897 (reduce_grammar): Call nonterminals_reduce.
18898
18899 2001-11-29 Paul Eggert <eggert@twinsun.com>
18900
18901 * src/bison.simple (YYSTACK_REALLOC): Remove.
18902 (YYSTACK_ALLOC): Resurrect this macro, with its old meaning.
18903 (YYSTACK_FREE, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYSTACK_RELOCATE):
18904 New macros.
18905 (union yyalloc): New type.
18906 (__yy_memcpy): Last arg is size_t, not unsigned int, to remove
18907 an arbitrary restriction on hosts where size_t is wider than int.
18908
18909 (yyparse): Don't dump core if alloca or malloc fails; instead, report
18910 a parser stack overflow. Allocate just one block of memory for all
18911 three stacks, instead of allocating three blocks; this typically is
18912 faster and reduces fragmentation.
18913
18914 Do not limit the number of items in the stack to a value that fits
18915 in 'int', as this is an arbitrary limit on hosts with 64-bit
18916 size_t and 32-bit int.
18917
18918 2001-11-29 Marc Autret <autret_m@epita.fr>
18919
18920 * tests/calc.at [AT_DATA_CALC_Y]: Use %error-verbose instead
18921 of defining YYERROR_VERBOSE.
18922 [AT_DATA]: $4 is now out of C declarations in the prologue.
18923
18924 2001-11-28 Marc Autret <autret_m@epita.fr>
18925
18926 * src/reader.c (parse_dquoted_param): New.
18927 (parse_skel_decl): Use it.
18928 * src/lex.h: Add its prototype.
18929 * src/lex.c (literalchar): Become not static.
18930
18931 2001-11-28 Marc Autret <autret_m@epita.fr>
18932
18933 * src/output.h: And put its extern declaration here.
18934 * src/output.c (error_verbose): Define here.
18935 (prepare): Echo name modification.
18936 * src/getargs.h: Clean its extern declaration.
18937 * src/getargs.c (error_verbose_flag): Remove.
18938 (getargs): Remove case 'e'.
18939 * src/options.c (option_table): 'error-verbose' is now seen as simple
18940 percent option.
18941 Include output.h.
18942
18943 * src/reader.c (read_declarations): Remove case tok_include.
18944 (parse_include_decl): Remove.
18945 * src/lex.h (token_t): Remove tok_include.
18946 * src/options.c (option_table): 'include' is now a simple command line
18947 option.
18948
18949 2001-11-28 Marc Autret <autret_m@epita.fr>
18950
18951 * src/bison.simple: Adjust muscle names.
18952 * src/muscle_tab.c (muscle_init): Also rename the muscles.
18953 * src/output.c (prepare): s/_/-/ for the muscles names.
18954 (output_parser): When scanning for a muscle, allow '-' instead of '_'.
18955
18956 2001-11-28 Marc Autret <autret_m@epita.fr>
18957
18958 * src/bison.simple: Fix debug.
18959 [YYERROR_VERBOSE]: Re-integrate as an internal macro.
18960
18961 2001-11-28 Akim Demaille <akim@epita.fr>
18962
18963 * src/LR0.c (shifts_new): New.
18964 (save_shifts, insert_start_shift, augment_automaton): Use it.
18965
18966 2001-11-28 Akim Demaille <akim@epita.fr>
18967
18968 * src/closure.c (closure): `b' and `ruleno' denote the same value:
18969 keep ruleno only.
18970
18971 2001-11-28 Akim Demaille <akim@epita.fr>
18972
18973 * src/closure.c (closure): Instead of looping over word in array
18974 then bits in words, loop over bits in array.
18975
18976 2001-11-28 Akim Demaille <akim@epita.fr>
18977
18978 * src/closure.c (closure): No longer optimize the special case
18979 where all the bits of `ruleset[r]' are set to 0, to make the code
18980 clearer.
18981
18982 2001-11-28 Akim Demaille <akim@epita.fr>
18983
18984 * src/closure.c (closure): `r' and `c' are new variables, used to
18985 de-obfuscate accesses to RULESET and CORE.
18986
18987 2001-11-28 Akim Demaille <akim@epita.fr>
18988
18989 * src/reduce.c (reduce_print): Use ngettext.
18990 (dump_grammar): Improve the trace accuracy.
18991
18992 2001-11-28 Akim Demaille <akim@epita.fr>
18993
18994 * src/reduce.c (dump_grammar): Don't translate trace messages.
18995
18996 2001-11-28 Akim Demaille <akim@epita.fr>
18997
18998 * tests/reduce.at (Useless Terminals, Useless Nonterminals): New.
18999 * src/reduce.c (reduce_grammar_tables): Do not free useless tags,
19000 as all tags are free'ed afterwards.
19001 From Enrico Scholz.
19002
19003 2001-11-27 Paul Eggert <eggert@twinsun.com>
19004
19005 * src/bison.simple (YYSTACK_REALLOC): Fix typo that caused us to
19006 use alloca when we didn't want to, and vice versa.
19007
19008 2001-11-27 Marc Autret <autret_m@epita.fr>
19009
19010 * src/muscle_tab.c (muscle_init): Remove 'verbose' muscle
19011 initialization.
19012 * src/output.c (prepare): Remove its update.
19013
19014 2001-11-27 Marc Autret <autret_m@epita.fr>
19015
19016 * tests/torture.at [AT_DATA]: Remove YYERROR_VERBOSE definition.
19017 Use %error-verbose.
19018
19019 2001-11-27 Marc Autret <autret_m@epita.fr>
19020
19021 * src/bison.simple: Remove YYERROR_VERBOSE using.
19022 Use %%error_verbose.
19023 (yyparse): Likewise.
19024 * src/output.c (prepare): Give its final value.
19025 * src/muscle_tab.c (muscle_init): Init new muscle 'error_verbose'.
19026 * src/getargs.h: Add its extern declaration.
19027 * src/getargs.c (error_verbose_flag): New int.
19028 (getargs): Update to catch new case.
19029 * src/options.c (option_table): 'error-verbose' is a new option.
19030 (shortopts): Update.
19031
19032 2001-11-27 Akim Demaille <akim@epita.fr>
19033
19034 * src/system.h: Use intl/libgettext.h.
19035 * src/Makefile.am (INCLUDES): Add -I $(top_srcdir).
19036
19037 2001-11-27 Akim Demaille <akim@epita.fr>
19038
19039 * tests/torture.at (Exploding the Stack Size with Malloc):
19040 s/YYSTACK_USE_ALLOCA_ALLOCA/YYSTACK_USE_ALLOCA/.
19041
19042 2001-11-27 Akim Demaille <akim@epita.fr>
19043
19044 * src/files.c: Include error.h.
19045 Reported by Hans Aberg.
19046
19047 2001-11-26 Marc Autret <autret_m@epita.fr>
19048
19049 * src/reader.c (parse_include_decl): New, not yet implemented.
19050 (read_declarations): Add case tok_include.
19051 * src/getargs.h (include): Add its extern definition.
19052 * src/getargs.c (include): New const char *.
19053 (getargs): Add case '-I'.
19054 * src/options.c (option_table): Add include as command line and
19055 percent option.
19056 * src/lex.h (token_t): Add tok_include.
19057
19058 2001-11-26 Akim Demaille <akim@epita.fr>
19059
19060 * src/reader.c (readgram): Make sure rules for mid-rule actions
19061 have a lineno equal to that of their host rule.
19062 Reported by Hans Aberg.
19063 * tests/regression.at (Rule Line Numbers): New.
19064
19065 2001-11-26 Akim Demaille <akim@epita.fr>
19066
19067 * src/LR0.c (allocate_itemsets): kernel_size contains ints, not
19068 size_ts.
19069
19070 2001-11-26 Akim Demaille <akim@epita.fr>
19071
19072 * src/complain.c, src/complain.h (error): Remove, provided by
19073 lib/error.[ch].
19074
19075 2001-11-26 Akim Demaille <akim@epita.fr>
19076
19077 * src/reader.c (read_declarations): Don't abort on tok_illegal,
19078 issue an error message.
19079 * tests/regression.at (Invalid %directive): New.
19080 Reported by Hans Aberg.
19081
19082 2001-11-26 Akim Demaille <akim@epita.fr>
19083
19084 * configure.in: Invoke AC_FUNC_OBSTACK and AC_FUNC_ERROR_AT_LINE.
19085 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
19086
19087 2001-11-26 Akim Demaille <akim@epita.fr>
19088
19089 * src/conflicts.c (conflicts_print): Don't complain at all when
19090 there are no reduce/reduce conflicts, and as many shift/reduce
19091 conflicts as expected.
19092 * tests/regression.at (%expect right): Adjust.
19093
19094 2001-11-23 Akim Demaille <akim@epita.fr>
19095
19096 * lib/alloca.c: Update, from fileutils.
19097
19098 2001-11-23 Akim Demaille <akim@epita.fr>
19099
19100 * lib/Makefile.am (libbison_a_LIBADD): Add @ALLOCA@.
19101
19102 2001-11-23 Akim Demaille <akim@epita.fr>
19103
19104 * src/system.h: Include alloca.h.
19105 * src/main.c (main) [C_ALLOCA]: Call alloca (0).
19106
19107 2001-11-23 Akim Demaille <akim@epita.fr>
19108
19109 * src/print_graph.c (print_actions): Remove `rule', unused.
19110 * src/LR0.c (kernel_size): Contain `int' instead of `size_t' to
19111 pacify GCC's signed < unsigned warnings.
19112 * src/closure.c (itemsetsize): Likewise.
19113 * src/reader.c (symbol_list_new): Static.
19114
19115 2001-11-23 Akim Demaille <akim@epita.fr>
19116
19117 Attaching lineno to buckets is stupid, since only one copy of each
19118 symbol is kept, only the line of the first occurrence is kept too.
19119
19120 * src/symtab.h, src/symtab.c (bucket): Remove the line member.
19121 * src/reader.c (rline_allocated): Remove, unused.
19122 (symbol_list): Have a `line' member.
19123 (symbol_list_new): New.
19124 (readgram): Use it.
19125 * src/print.c (print_grammar): Output the rule line numbers.
19126 * tests/regression.at (Solved SR Conflicts)
19127 (Unresolved SR Conflicts): Adjust.
19128 Reported by Hans Aberg.
19129
19130 2001-11-22 Marc Autret <autret_m@epita.fr>
19131
19132 * src/bison.simple [YYERROR_VERBOSE]: Force its value to be 1 or 0.
19133
19134 2001-11-22 Marc Autret <autret_m@epita.fr>
19135
19136 * src/muscle_tab.c (muscle_init): Remove initialization of
19137 skeleton muscle.
19138 * src/output.c (output_master_parser): Do it here.
19139
19140 2001-11-20 Akim Demaille <akim@epita.fr>
19141
19142 * po/sv.po: New.
19143 * configure.in (ALL_LINGUAS): Adjust.
19144 * po/POTFILE.in: Remove `nullable.c' and `derives.c' which no
19145 longer contains strings to translate.
19146
19147 2001-11-19 Akim Demaille <akim@epita.fr>
19148
19149 * src/conflicts.c (conflicts_print): Add a missing \n.
19150
19151 2001-11-19 Akim Demaille <akim@epita.fr>
19152
19153 * src/nullable.c (nullable_print): New.
19154 (set_nullable): Call it when tracing.
19155 Better locality of variables.
19156
19157 2001-11-19 Akim Demaille <akim@epita.fr>
19158
19159 * src/print.c (print_actions): Better locality of variables.
19160
19161 2001-11-19 Akim Demaille <akim@epita.fr>
19162
19163 * src/derives.c (print_derives): Fix and enrich.
19164 * src/closure.c (print_fderives): Likewise.
19165
19166 2001-11-19 Akim Demaille <akim@epita.fr>
19167
19168 * src/closure.c (itemsetend): Remove, replaced with...
19169 (itemsetsize): new.
19170
19171 2001-11-19 Akim Demaille <akim@epita.fr>
19172
19173 * src/LR0.c (kernel_end): Remove, replaced with...
19174 (kernel_size): new.
19175
19176 2001-11-19 Akim Demaille <akim@epita.fr>
19177
19178 * src/conflicts.c (set_conflicts): Use arrays instead of pointers
19179 to clarify.
19180
19181 2001-11-19 Akim Demaille <akim@epita.fr>
19182
19183 * src/closure.c (closure): Use arrays instead of pointers to clarify.
19184
19185 2001-11-19 Akim Demaille <akim@epita.fr>
19186
19187 * src/closure.c, src/derives.c, src/nullable.c: Adjust various
19188 trace messages.
19189 * src/LR0.c: Likewise.
19190 (allocate_itemsets): Use arrays instead of pointers to clarify.
19191
19192 2001-11-19 Akim Demaille <akim@epita.fr>
19193
19194 * src/getargs.c (statistics_flag): Replace with...
19195 (trace_flag): New.
19196 (longopts): Accept --trace instead of --statistics.
19197 * src/getargs.h, src/options.c: Adjust.
19198 * src/LR0.c, src/closure.c, src/derives.c, src/nullable.c,
19199 * src/reduce.c: Use trace_flags instead of the CPP conditional TRACE.
19200
19201 2001-11-19 Akim Demaille <akim@epita.fr>
19202
19203 * src/LR0.c (new_itemsets, get_state): Use more arrays and fewer
19204 pointers to clarify the code.
19205 (save_reductions, save_shifts): Factor common parts of alternatives.
19206
19207 2001-11-19 Akim Demaille <akim@epita.fr>
19208
19209 * src/LR0.c (new_state, get_state): Complete TRACE code.
19210 * src/closure.c: Include `reader.h' to get `tags', needed by the
19211 trace code.
19212 Rename the conditional DEBUG as TRACE.
19213 Output consistently TRACEs to stderr, not stdout.
19214 * src/derives.c: Likewise.
19215 * src/reduce.c: (inaccessable_symbols): Using if is better style
19216 than goto.
19217 Use `#if TRACE' instead of `#if 0' for tracing code.
19218
19219 2001-11-19 Akim Demaille <akim@epita.fr>
19220
19221 * src/system.h (LIST_FREE, shortcpy): New.
19222 * src/LR0.c: Use them.
19223 * src/output.c (free_itemsets, free_reductions, free_shifts):
19224 Remove, replaced by LIST_FREE.
19225
19226 2001-11-19 Akim Demaille <akim@epita.fr>
19227
19228 * src/state.h (CORE_ALLOC, SHIFTS_ALLOC, ERRS_ALLOC)
19229 (REDUCTIONS_ALLOC): New.
19230 * src/LR0.c, src/conflicts.c: Use them to de-obfuscate memory
19231 allocation.
19232
19233 2001-11-19 Akim Demaille <akim@epita.fr>
19234
19235 * src/LR0.c (new_state): Complete trace code.
19236 * src/nullable.c (set_nullable): Don't translate traces.
19237
19238 2001-11-19 Akim Demaille <akim@epita.fr>
19239
19240 * src/print_graph.c (print_core): Better locality of variables.
19241 * src/print.c (print_core): Likewise.
19242
19243 2001-11-19 Akim Demaille <akim@epita.fr>
19244
19245 * src/vcg.c: You do the output, so you are responsible of the
19246 handling of VCG syntax, in particular: use quotearg.
19247 * src/print_graph.c: Don't.
19248 (print_actions): Don't output the actions as part of the nodes,
19249 since that's the job of the edges.
19250 (print_state): Don't output by hand: fill the node description,
19251 and ask for its output.
19252
19253 2001-11-19 Akim Demaille <akim@epita.fr>
19254
19255 * src/bison.simple (yyparse): When verbosely reporting an error,
19256 no longer put additional quotes around token names.
19257 * tests/calc.at: Adjust.
19258
19259 2001-11-19 Akim Demaille <akim@epita.fr>
19260
19261 * src/symtab.h, src/symtab.c: `line' is a new member of `bucket'.
19262 * src/reader.c (record_rule_lines, rline, rline_allocated): Remove.
19263 * src/output.c: Adjust.
19264
19265 2001-11-19 Akim Demaille <akim@epita.fr>
19266
19267 * src/gram.h (rprec, rprecsym, rassoc): Remove, now part of...
19268 (rule_t): this.
19269 * src/conflicts.c, src/reader.c, src/reduce.c: Adjust.
19270
19271 2001-11-19 Akim Demaille <akim@epita.fr>
19272
19273 * src/gram.h (rule_t): New.
19274 (rule_table): New.
19275 (rrhs, rlhs): Remove, part of state_t.
19276 * src/print_graph.c, src/closure.c, src/conflicts.c, src/derives.c,
19277 * src/lalr.c, src/nullable.c, src/output.c, src/print.c,
19278 * src/reader.c, src/reduce.c: Adjust.
19279
19280 2001-11-19 Akim Demaille <akim@epita.fr>
19281
19282 * src/reader.c (symbols_output): New, extracted from...
19283 (packsymbols): Here.
19284 (reader): Call it.
19285
19286 2001-11-19 Akim Demaille <akim@epita.fr>
19287
19288 * src/lalr.c (set_maxrhs, maxrhs): Remove, replaced with...
19289 (maxrhs): this new function.
19290
19291 2001-11-19 Akim Demaille <akim@epita.fr>
19292
19293 * src/lalr.c (F): New macro to access the variable F.
19294 Adjust.
19295
19296 2001-11-19 Akim Demaille <akim@epita.fr>
19297
19298 * src/lalr.h (LA): New macro to access the variable LA.
19299 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
19300 * src/lalr.c: Adjust.
19301
19302 2001-11-19 Akim Demaille <akim@epita.fr>
19303
19304 * src/lalr.c (initialize_LA): Only initialize LA. Let...
19305 (set_state_table): handle the `lookaheads' members.
19306
19307 2001-11-19 Akim Demaille <akim@epita.fr>
19308
19309 * src/lalr.h (lookaheads): Removed array, whose contents is now
19310 a member of...
19311 (state_t): this structure.
19312 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
19313 Adjust.
19314
19315 2001-11-19 Akim Demaille <akim@epita.fr>
19316
19317 * src/lalr.h (consistent): Removed array, whose contents is now
19318 a member of...
19319 (state_t): this structure.
19320 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
19321 Adjust.
19322
19323 2001-11-19 Akim Demaille <akim@epita.fr>
19324
19325 * src/lalr.h (reduction_table, shift_table): Removed arrays, whose
19326 contents are now members of...
19327 (state_t): this structure.
19328 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
19329 Adjust.
19330
19331 2001-11-19 Akim Demaille <akim@epita.fr>
19332
19333 * src/lalr.h (state_t): New.
19334 (state_table): Be a state_t * instead of a core **.
19335 (accessing_symbol): Remove, part of state_t.
19336 * src/lalr.c: Adjust.
19337 (set_accessing_symbol): Merge into...
19338 (set_state_table): this.
19339 * src/print_graph.c, src/conflicts.c: Adjust.
19340
19341 2001-11-14 Akim Demaille <akim@epita.fr>
19342
19343 * tests/calc.at, tests/output.at, tests/regression.at,
19344 * tests/testsuite.at, tests/torture.at: Rely on Autotest 2.52g:
19345 now the tests are run in private dirs, therefore AC_CLEANUP and
19346 family can be simplified to 0-ary.
19347 * tests/atlocal.in: Now that we run `elsewhere' than in tests/,
19348 use abs. path to find config.h.
19349 * tests/calc.at (AT_CHECK_CALC): Don't try to check the compiler's
19350 stderr, there can be way too much random noise.
19351 Instead pass -Werror to GCC and rely on the exit status.
19352 Reported by Wolfram Wagner.
19353
19354 2001-11-14 Akim Demaille <akim@epita.fr>
19355
19356 * src/bison.simple (yyparse): Let yyls1, yyss1 and yyvs1 be
19357 defined only if yyoverflow is defined, to avoid `warning: unused
19358 variable `yyvs1''.
19359 Reported by The Test Suite.
19360
19361 2001-11-14 Akim Demaille <akim@epita.fr>
19362
19363 * src/print.c: Include reduce.h.
19364 Reported by Hans Aberg.
19365
19366 2001-11-14 Akim Demaille <akim@epita.fr>
19367
19368 * src/lex.c, src/lex.h (token_buffer, unlexed_token_buffer):
19369 Revert a previous patch: these are really const.
19370 * src/conflicts.c (conflict_report): Additional useless pair of
19371 braces to pacify GCC's warnings for `if () if () {} else {}'.
19372 * src/lex.c (parse_percent_token): Replace equal_offset with
19373 arg_offset.
19374 arg is const.
19375 Be sure to strdup `arg' when used, since there is no reason for
19376 token_buffer not to change.
19377
19378 2001-11-14 Akim Demaille <akim@epita.fr>
19379
19380 * src/system.h (EXIT_SUCCESS, EXIT_FAILURE): Ensure a proper
19381 definition.
19382 * src/main.c (main): Use them.
19383 Suggested by Hans Aberg.
19384
19385 2001-11-12 Akim Demaille <akim@epita.fr>
19386
19387 * src/system.h (ngettext): Now that we use ngettext, be sure to
19388 provide a default definition when NLS are not used.
19389
19390 2001-11-12 Akim Demaille <akim@epita.fr>
19391
19392 * doc/bison.texinfo: Use `$' as shell prompt, not `%'.
19393 Use @kbd to denote user input.
19394 (Language and Grammar): ANSIfy the example.
19395 Adjust its layout for info/notinfo.
19396 (Location Tracking Calc): Output error messages to stderr.
19397 Output locations in a more GNUtically correct way.
19398 Fix a couple of Englishos.
19399 Adjust @group/@end group pairs.
19400
19401 2001-11-12 Akim Demaille <akim@epita.fr>
19402
19403 %expect was not functioning at all.
19404
19405 * src/conflicts.c (expected_conflicts): Set to -1.
19406 (conflict_report): Use ngettext.
19407 (conflicts_print): Check %expect and make its violation an error.
19408 * doc/bison.texinfo (Expect Decl): Adjust.
19409 * configure.in (AM_GNU_GETTEXT): Ask for ngettext.
19410 * tests/regression.at (%expect not enough, %expect right)
19411 (%expect too much): New.
19412
19413 2001-11-12 Akim Demaille <akim@epita.fr>
19414
19415 * tests/regression.at (Conflicts): Rename as...
19416 (Unresolved SR Conflicts): this.
19417 (Solved SR Conflicts): New.
19418
19419 2001-11-12 Akim Demaille <akim@epita.fr>
19420
19421 * src/reduce.c (print_results): Rename as...
19422 (reduce_output): This.
19423 Output to OUT, passed as argument, instead of output_obstack.
19424 (dump_grammar): Likewise.
19425 (reduce_free): New.
19426 Also free V1.
19427 (reduce_grammar): No longer call reduce_output, since...
19428 * src/print.c (print_results): do it.
19429 * src/main.c (main): Call reduce_free;
19430
19431 2001-11-12 Akim Demaille <akim@epita.fr>
19432
19433 * src/conflicts.c (print_reductions): Accept OUT as argument.
19434 Output to it, not to output_obstack.
19435 * src/print.c (print_actions): Adjust.
19436
19437 2001-11-12 Akim Demaille <akim@epita.fr>
19438
19439 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts): Return
19440 the result instead of using...
19441 (src_total, rrc_total, src_count, rrc_count): Remove.
19442 (any_conflicts): Remove.
19443 (print_conflicts): Split into...
19444 (conflicts_print, conflicts_output): New.
19445 * src/conflicts.h: Adjust.
19446 * src/main.c (main): Invoke both conflicts_output and conflicts_print.
19447 * src/print.c (print_grammar): Issue `\n' between two rules.
19448 * tests/regression.at (Conflicts): New.
19449 Reported by Tom Lane.
19450
19451 2001-11-12 Akim Demaille <akim@epita.fr>
19452
19453 * tests/regression.at (Invalid input): Remove, duplicate with
19454 ``Invalid input: 1''.
19455
19456 2001-11-12 Akim Demaille <akim@epita.fr>
19457
19458 * tests/torture.at (AT_DATA_STACK_TORTURE)
19459 (Exploding the Stack Size with Alloca)
19460 (Exploding the Stack Size with Malloc): New.
19461
19462 2001-11-12 Akim Demaille <akim@epita.fr>
19463
19464 * src/bison.simple (YYSTACK_REALLOC): New.
19465 (yyparse) [!yyoverflow]: Use it and free the old stack.
19466 Reported by Per Allansson.
19467
19468 2001-11-12 Pascal Bart <pascal.bart@epita.fr>
19469
19470 * src/bison.simple: Define type yystype instead of YYSTYPE, and
19471 define CPP macro, which substitute YYSTYPE by yystype.
19472 * src/reader.c (parse_union_decl): Output yystype/YYSTYPE as we do
19473 with yyltype/YYLTYPE. This allows inclusion of the generated
19474 header within the parser if the compiler, such as GGC, accepts
19475 multiple equivalent #defines.
19476 From Akim.
19477
19478 2001-11-05 Akim Demaille <akim@epita.fr>
19479
19480 * src/reader.c (symbols_output): New, extracted from...
19481 (packsymbols): here.
19482 (reader): Adjust.
19483
19484 2001-11-05 Akim Demaille <akim@epita.fr>
19485
19486 * src/lex.c (parse_percent_token): s/quotearg/quote/.
19487
19488 2001-11-05 Akim Demaille <akim@epita.fr>
19489
19490 * tests/regression.at (AT_TEST_CPP_GUARD_H): Adjust the clean up
19491 pattern.
19492
19493 2001-11-05 Akim Demaille <akim@epita.fr>
19494
19495 * src/options.h (struct option_table_struct): set_flags is void*.
19496 * src/options.c (longopts): Support `--output' and `%output'.
19497 (usage): Adjust.
19498 * src/lex.h (tok_setopt): Remove, replaced with...
19499 (tok_intopt, tok_stropt): these new guys.
19500 * src/lex.c (getopt.h): Not needed.
19501 (token_buffer, unlexed_token_buffer): Not const.
19502 (percent_table): Promote `-' over `_' in directive names.
19503 Active `%name-prefix', `file-prefix', and `output'.
19504 (parse_percent_token): Accept possible arguments to directives.
19505 Promote `-' over `_' in directive names.
19506
19507 2001-11-04 Akim Demaille <akim@epita.fr>
19508
19509 * doc/bison.texinfo (Decl Summary): Split the list into
19510 `directives for grammars' and `directives for bison'.
19511 Sort'em.
19512 Add description of `%name-prefix', `file-prefix', and `output'.
19513 Promote `-' over `_' in directive names.
19514 (Bison Options): s/%locactions/%locations/. Nice Freudian slip.
19515 Simplify the description of `--name-prefix'.
19516 Promote `-' over `_' in directive names.
19517 Promote `--output' over `--output-file'.
19518 Fix the description of `--defines'.
19519 * tests/output.at: Exercise %file-prefix and %output.
19520
19521 2001-11-02 Akim Demaille <akim@epita.fr>
19522
19523 * doc/refcard.tex: Update.
19524
19525 2001-11-02 Akim Demaille <akim@epita.fr>
19526
19527 * src/symtab.h (SUNDEF): New.
19528 * src/symtab.c (bucket_new): Init user_token_number to SUNDEF to
19529 stand for `uninitialized', instead of 0.
19530 * src/reader.c (packsymbols, parse_thong_decl): Adjust.
19531 * src/lex.c (lex): Adjust.
19532
19533 * tests/calc.at (_AT_DATA_CALC_Y): Declare a token for EOF.
19534 Number it 0.
19535 Let yylex return it instead of a plain 0.
19536 Reported by Dick Streefland.
19537
19538 2001-11-02 Akim Demaille <akim@epita.fr>
19539
19540 * tests/regression.at (Mixing %token styles): New test.
19541
19542 2001-11-02 Akim Demaille <akim@epita.fr>
19543
19544 * src/reader.c (parse_thong_decl): Formatting changes.
19545 (token_translations_init): New, extracted from...
19546 (packsymbols): Here.
19547 Adjust.
19548
19549 2001-11-01 Akim Demaille <akim@epita.fr>
19550
19551 * tests/regression.at (AT_TEST_CPP_GUARD_H): New.
19552 Check that `9foo.y' produces correct cpp guards.
19553 * src/files.c (compute_header_macro): Prepend `BISON_' to CPP
19554 guards.
19555 Reported by Wwp.
19556
19557 2001-11-01 Akim Demaille <akim@epita.fr>
19558
19559 * tests/regression.at (Invalid input: 2): New.
19560 * src/lex.c (unlexed_token_buffer): New.
19561 (lex, unlex): Adjust: when unlexing, be sure to save token_buffer
19562 too.
19563 Reported by Wwp.
19564
19565 2001-11-01 Akim Demaille <akim@epita.fr>
19566
19567 * tests/calc.at: Catch up with 1.30.
19568 * configure.in: Bump to 1.49a.
19569 Adjust to newer Autotest.
19570
19571 2001-10-19 Pascal Bart <pascal.bart@epita.fr>
19572
19573 * src/conflicts.c: Move global variables rrc_total and src_total ...
19574 (print_conflicts): here.
19575 * src/output.c (output): Free global variable user_toknums.
19576 * src/lex.c (token_obstack): Become static.
19577
19578 2001-10-18 Akim Demaille <akim@epita.fr>
19579
19580 * tests/atlocal.in (GCC): Add.
19581 * tests/calc.at: s/m4_match/m4_bmatch/.
19582 s/m4_patsubst/m4_bpatsubst/.
19583 (AT_CHECK_CALC): Check the compiler's stderr only if it's GCC.
19584 * configure.in: AC_SUBST(GCC).
19585
19586 2001-10-14 Marc Autret <autret_m@epita.fr>
19587
19588 * src/options.c (create_long_option_table): Fix.
19589
19590 2001-10-10 Akim Demaille <akim@epita.fr>
19591
19592 * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
19593
19594 2001-10-04 Akim Demaille <akim@epita.fr>
19595
19596 * src/reader.c (parse_union_decl): Push the caracters in
19597 union_obstack, not attrs_obstack.
19598
19599 2001-10-04 Akim Demaille <akim@epita.fr>
19600
19601 Merge in the branch 1.29.
19602
19603 * src/reader.c (packsymbols): Use a temporary obstack for
19604 `%%tokendef', since output_stack is already used elsewhere.
19605
19606 2001-10-02 Akim Demaille <akim@epita.fr>
19607
19608 Bump 1.29d.
19609
19610 2001-10-02 Akim Demaille <akim@epita.fr>
19611
19612 Version 1.29c.
19613
19614 2001-10-02 Akim Demaille <akim@epita.fr>
19615
19616 * tests/regression.at (Invalid CPP headers): New.
19617 From Alexander Belopolsky.
19618 * src/files.c (compute_header_macro): Map non alnum chars to `_'.
19619
19620 2001-10-02 Akim Demaille <akim@epita.fr>
19621
19622 * tests/regression.at (Invalid input): New.
19623 * src/lex.c (lex): Be sure to set `token_buffer' in any case.
19624 Reported by Shura.
19625
19626 2001-10-02 Akim Demaille <akim@epita.fr>
19627
19628 * tests/calc.at: Now that --debug works, the tests must be adjusted.
19629
19630 2001-10-02 Akim Demaille <akim@epita.fr>
19631
19632 * src/output.c (output_parser): Assert `skeleton'.
19633 * src/files.c (skeleton_find): Look harder for skeletons on DOSish
19634 systems.
19635 From Shura.
19636
19637 2001-10-01 Marc Autret <autret_m@epita.fr>
19638
19639 * src/lex.h: Echo modifications.
19640 * src/lex.c (unlex): Parameter is now token_t.
19641 From Hans Aberg.
19642
19643 2001-10-01 Marc Autret <autret_m@epita.fr>
19644
19645 * src/main.c: Include lex.h.
19646 From Hans Aberg.
19647
19648 2001-09-29 Akim Demaille <akim@epita.fr>
19649
19650 * src/getargs.c (longopts): `--debug' is `-t', not `-d'.
19651
19652 2001-09-28 Akim Demaille <akim@epita.fr>
19653
19654 * tests/testsuite.at: Update to newer Autotest.
19655 * tests/Makefile.am (EXTRA_DIST): bison is not to be shipped.
19656
19657 2001-09-27 Akim Demaille <akim@epita.fr>
19658
19659 Position independent wrapper.
19660
19661 * tests/bison: Remove.
19662 * tests/bison.in: New.
19663 * configure.in: Adjust.
19664
19665 2001-09-27 Paul Eggert <eggert@twinsun.com>
19666
19667 Port quotearg fixes from tar 1.13.24.
19668
19669 * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
19670 tm to be declared.
19671 (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
19672 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
19673
19674 * m4/Makefile.am (EXTRA_DIST): Add mbrtowc.m4.
19675 * m4/mbrtowc.m4: New file.
19676 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit and stddef.h.
19677 Use jm_FUNC_MBRTOWC instead of AC_CHECK_FUNCS(mbrtowc).
19678
19679 2001-09-27 Akim Demaille <akim@epita.fr>
19680
19681 Bump to 1.29c.
19682
19683 2001-09-27 Akim Demaille <akim@epita.fr>
19684
19685 Version 1.29b.
19686
19687 2001-09-25 Akim Demaille <akim@epita.fr>
19688
19689 * src/system.h: Include `xalloc.h'.
19690 Remove it from the C files.
19691 * src/files.c (output_files): Free the obstacks.
19692 * src/lex.c (init_lex): Rename as...
19693 (lex_init): this.
19694 (lex_free): New.
19695 * src/main.c (main): Use it.
19696
19697 2001-09-24 Marc Autret <autret_m@epita.fr>
19698
19699 * src/vcg.c (open_edge, close_edge, open_node, close_node): Change
19700 to output informations in fout (FILE*).
19701 (open_graph, close_graph): Likewise.
19702 (output_graph, output_edge, output_node): Likewise.
19703 * src/vcg.h: Update function prototypes.
19704 * src/print_graph.c (print_graph): Open output graph file.
19705 (print_actions): Adjust.
19706 * src/files.h: Remove extern declaration.
19707 * src/files.c: Remove graph_obstack declaration.
19708 (open_files): Remove graph_obstack initialization.
19709 (output_files): Remove graph_obstack saving.
19710
19711 2001-09-24 Marc Autret <autret_m@epita.fr>
19712
19713 * src/files.c (compute_output_file_names): Fix.
19714
19715 2001-09-24 Marc Autret <autret_m@epita.fr>,
19716 Akim Demaille <akim@epita.fr>
19717
19718 * src/reader.c (reader): Remove call to free_symtab ().
19719 * src/main.c (main): Call it here.
19720 Include symtab.h.
19721 * src/conflicts.c (initialize_conflicts): Rename as...
19722 (solve_conflicts): this.
19723 * src/print.c (print_core, print_actions, print_state)
19724 (print_grammar): Dump to a file instead a `output_obstack'.
19725 (print_results): Dump `output_obstack', and then proceed with the
19726 FILE *.
19727 * src/files.c (compute_output_file_names, close_files): New.
19728 (output_files): Adjust.
19729 * src/main.c (main): Adjust.
19730
19731 2001-09-23 Marc Autret <autret_m@epita.fr>
19732
19733 * src/files.c (compute_header_macro): Computes header macro name
19734 from spec_defines_file when given.
19735
19736 2001-09-23 Marc Autret <autret_m@epita.fr>
19737
19738 * src/files.c (output_files): Add default extensions.
19739
19740 2001-09-22 Akim Demaille <akim@epita.fr>
19741
19742 * src/conflicts.c (finalize_conflicts): Rename as...
19743 (free_conflicts): this.
19744
19745 2001-09-22 Akim Demaille <akim@epita.fr>
19746
19747 * src/gram.c (gram_free): Rename back as...
19748 (dummy): this.
19749 (output_token_translations): Free `token_translations'.
19750 * src/symtab.c (free_symtab): Free the tag field.
19751
19752 2001-09-22 Akim Demaille <akim@epita.fr>
19753
19754 Remove `translations' as it is always set to true.
19755
19756 * src/gram.h: Adjust.
19757 * src/reader.c (packsymbols, parse_token_decl): Adjust
19758 * src/print.c (print_grammar): Adjust.
19759 * src/output.c (output_token_translations): Adjust.
19760 * src/lex.c (lex): Adjust.
19761 * src/gram.c: Be sure the set pointers to NULL.
19762 (dummy): Rename as...
19763 (gram_free): this.
19764
19765 2001-09-22 Akim Demaille <akim@epita.fr>
19766
19767 * configure.in: Invoke AM_LIB_DMALLOC.
19768 * src/system.h: Use dmalloc.
19769 * src/LR0.c: Be sure to have pointers initialized to NULL.
19770 (allocate_itemsets): Allocate kernel_items only if needed.
19771
19772 2001-09-22 Akim Demaille <akim@epita.fr>
19773
19774 * configure.in: Bump to 1.29b.
19775 * tests/Makefile.am (DISTCLEANFILES): Add package.m4.
19776 * tests/calc.at (_AT_DATA_CALC_Y): #undef malloc so that we don't
19777 need xmalloc.c in calc.y.
19778 From Pascal Bart.
19779
19780 2001-09-21 Akim Demaille <akim@epita.fr>
19781
19782 Version 1.29a.
19783 * Makefile.maint, config/config.guess, config/config.sub,
19784 * config/missing: Update from masters.
19785 * tests/Makefile.am ($(srcdir)/$(TESTSUITE)): No longer depend
19786 upon package.m4.
19787 * configure.in (ALL_LINGUAS): Add `tr'.
19788
19789 2001-09-21 Akim Demaille <akim@epita.fr>
19790
19791 * tests/Makefile.am (package.m4): Move to...
19792 ($(srcdir)/$(TESTSUITE)): here.
19793
19794 2001-09-20 Akim Demaille <akim@epita.fr>
19795
19796 * src/complain.c: No longer try to be standalone: use system.h.
19797 Don't assume __STDC__ is defined to 1. Just test if it is defined.
19798 * src/complain.h: Likewise.
19799 * src/reduce.c (useless_nonterminals, inaccessable_symbols):
19800 Remove the unused variable `n'.
19801 From Albert Chin-A-Young.
19802
19803 2001-09-18 Marc Autret <autret_m@epita.fr>
19804
19805 * doc/bison.1: Update.
19806 * doc/bison.texinfo (Bison Options): Update --defines and --graph
19807 descriptions.
19808 (Option Cross Key): Update.
19809 Add --graph.
19810
19811 2001-09-18 Marc Autret <autret_m@epita.fr>
19812
19813 * tests/regression.at: New test (comment in %union).
19814
19815 2001-09-18 Marc Autret <autret_m@epita.fr>
19816
19817 * src/reader.c (parse_union_decl): Do not output '/'. Let copy_comment
19818 do that.
19819 Reported by Keith Browne.
19820
19821 2001-09-18 Marc Autret <autret_m@epita.fr>
19822
19823 * tests/output.at: Add tests for --defines and --graph.
19824
19825 2001-09-18 Marc Autret <autret_m@epita.fr>
19826
19827 * tests/output.at: Removes tests of %{header,src}_extension features.
19828
19829 2001-09-18 Akim Demaille <akim@epita.fr>
19830
19831 * tests/Makefile.am (package.m4): New.
19832 * tests/calc.at (_AT_CHECK_CALC): Just run `calc input'.
19833 (_AT_CHECK_CALC_ERROR): Likewise.
19834 Factor the `, ' part of verbose error messages.
19835
19836 2001-09-18 Marc Autret <autret_m@epita.fr>
19837
19838 * src/getargs.c (longopts): Declare --defines and --graph as options
19839 with optional arguments.
19840 * src/files.h: Add extern declarations.
19841 * src/files.c (spec_graph_file, spec_defines_file): New.
19842 (output_files): Update.
19843 Remove CPP-outed code.
19844
19845 2001-09-18 Marc Autret <autret_m@epita.fr>
19846
19847 Turn off %{source,header}_extension feature.
19848
19849 * src/files.c (compute_exts_from_gf): Update.
19850 (compute_exts_from_src): Update.
19851 (output_files): CPP-out useless code.
19852 * src/files.h: Remove {header,source}_extension extern declarations.
19853 * src/reader.c (parse_dquoted_param): CPP-out.
19854 (parse_header_extension_decl): Remove.
19855 (parse_source_extension_decl): Remove.
19856 (read_declarations): Remove cases tok_{hdrext,srcext}.
19857 * src/lex.c (percent_table): Remove {header,source}_extension entries.
19858 * src/lex.h (token_t): Remove tok_hdrext and tok_srcext.
19859
19860 2001-09-10 Akim Demaille <akim@epita.fr>
19861
19862 * tests/output.at (AT_CHECK_BISON_FLAGS, AT_CHECK_BISON_PERCENT):
19863 (AT_CHECK_BISON_PERCENT_FLAGS): Merge into...
19864 (AT_CHECK_OUTPUT): this.
19865 Merely check ls' exit status, its output is useless.
19866
19867 2001-09-10 Akim Demaille <akim@epita.fr>
19868
19869 * tests/calc.at: Use m4_match.
19870 (_AT_DATA_CALC_Y): Check `yyin != NULL', not `stdin != NULL'.
19871
19872 2001-09-10 Marc Autret <autret_m@epita.fr>,
19873 Akim Demaille <akim@epita.fr>
19874
19875 * src/vcg.h (graph_s): color, textcolor, bordercolor are now
19876 enum color_e.
19877 * src/print_graph.c (print_graph): Initalize graph.layoutalgorithm
19878 to `normal'.
19879 * src/reader.c (parse_token_decl): Initialize token with tok_eof.
19880 * src/lex.h: Adjust prototype.
19881 (token_t): Add `tok_undef'.
19882 * src/lex.c (struct percent_table_struct): Retval is now a token_t.
19883 (parse_percent_token): Now returns token_t.
19884 Add default statement in switch.
19885 (lex): Separate `c' as an input variable, from the token_t result
19886 part.
19887 (unlexed): Is a token_t.
19888
19889 2001-09-10 Akim Demaille <akim@epita.fr>
19890
19891 * configure.in: Bump to 1.29a.
19892
19893 2001-09-07 Akim Demaille <akim@epita.fr>
19894
19895 Version 1.29.
19896
19897 2001-08-30 Akim Demaille <akim@epita.fr>
19898
19899 * tests/atgeneral.m4, tests/atconfig.in, tests/suite.at: Remove.
19900 * m4/atconfig.m4: Remove.
19901 * tests/testsuite.at, tests/atlocal.in, tests/output.at,
19902 * tests/bison: New.
19903 * tests/regression.at, tests/calc.at: Use m4_define, AT_BANNER,
19904 m4_if, m4_patsubst, and m4_regexp.
19905 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Use an
19906 `input' file instead of echo.
19907
19908 2001-08-29 Akim Demaille <akim@epita.fr>
19909
19910 Bump to 1.28e.
19911
19912 2001-08-29 Akim Demaille <akim@epita.fr>
19913
19914 Version 1.28d.
19915
19916 2001-08-29 Paul Eggert <eggert@twinsun.com>
19917
19918 * src/bison.simple (yyparse): Don't take the address of an
19919 item before the start of an array, as that doesn't conform to
19920 the C Standard.
19921
19922 2001-08-29 Robert Anisko <anisko_r@epita.fr>
19923
19924 * doc/bison.texinfo (Location Tracking Calc): New node.
19925
19926 2001-08-29 Paul Eggert <eggert@twinsun.com>
19927
19928 * src/output.c (output): Do not define const, as this now
19929 causes more problems than it cures.
19930
19931 2001-08-29 Akim Demaille <akim@epita.fr>
19932
19933 * doc/bison.texinfo: Modernize `@node' and `@top' use: just name
19934 the nodes.
19935 Be sure to tag the `detailmenu'.
19936
19937 2001-08-29 Akim Demaille <akim@epita.fr>
19938
19939 * Makefile.maint (do-po-update): Wget refuses to overwrite files:
19940 download in a tmp dir.
19941
19942 2001-08-28 Marc Autret <autret_m@epita.fr>
19943
19944 * config/depcomp: New file.
19945
19946 2001-08-28 Marc Autret <autret_m@epita.fr>
19947
19948 * doc/bison.1 (mandoc): Adjust.
19949 From Juan Manuel Guerrero.
19950
19951 2001-08-28 Marc Autret <autret_m@epita.fr>
19952
19953 * src/print_graph.c (print_state): Fix.
19954
19955 2001-08-27 Marc Autret <autret_m@epita.fr>
19956
19957 * src/vcg.h (classname_s, infoname_s, node_s): Constify the
19958 char * members.
19959 Echo modifications to the functions prototypes.
19960 * src/vcg.c (add_classname, add_infoname): Adjust arguments.
19961
19962 2001-08-27 Marc Autret <autret_m@epita.fr>
19963
19964 * src/vcg.c: Include `xalloc.h'.
19965 (add_colorentry): New.
19966 (add_classname): New.
19967 (add_infoname): New.
19968 * src/vcg.h: Add new prototypes.
19969
19970 2001-08-27 Akim Demaille <akim@epita.fr>
19971
19972 * Makefile.maint: Sync. again with CVS Autoconf.
19973
19974 2001-08-27 Akim Demaille <akim@epita.fr>
19975
19976 * Makefile.maint: Formatting changes.
19977 (po-update, cvs-update, update): New targets.
19978 (AMTAR): Remove.
19979
19980 2001-08-27 Akim Demaille <akim@epita.fr>
19981
19982 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
19983 * Makefile.maint: Sync. with CVS Autoconf.
19984
19985 2001-08-27 Marc Autret <autret_m@epita.fr>
19986
19987 * src/vcg.h (struct infoname_s): New.
19988 (struct colorentry_s): New.
19989 (graph_s): New fields {vertical,horizontal}_order in structure.
19990 Add `infoname' field.
19991 Add `colorentry' field;
19992 * src/vcg_defaults.h (G_VERTICAL_ORDER): New.
19993 (G_HORIZONTAL_ORDER): New.
19994 (G_INFONAME): New.
19995 (G_COLORENTRY): New.
19996 * src/vcg.c (output_graph): Add output of {vertical,horizontal}_order.
19997 Add output of `infoname'.
19998 Add output of `colorentry'.
19999
20000 2001-08-27 Marc Autret <autret_m@epita.fr>
20001
20002 * src/reader.c (parse_dquoted_param): Rename variable `index' to `i'.
20003 This one shadowed a global parameter.
20004
20005 2001-08-24 Marc Autret <autret_m@epita.fr>
20006
20007 * src/print_graph.c (node_output_size): Declared POSIX `size_t' type,
20008 instead of `unsigned'.
20009 (print_state): Do not call obstack_object_size () in obstack_grow ()
20010 to avoid macro variables shadowing.
20011
20012 2001-08-23 Marc Autret <autret_m@epita.fr>
20013
20014 * src/lex.c (percent_table): Typo: s/naem/name/.
20015 Add graph option.
20016 Normalize new options declarations.
20017
20018 2001-08-20 Pascal Bart <pascal.bart@epita.fr>
20019
20020 * tests/suite.at: Exercise %header_extension and %source_extension.
20021
20022 2001-08-16 Marc Autret <autret_m@epita.fr>
20023
20024 * src/reader.c (parse_dquoted_param): New.
20025 (parse_header_extension_decl): Use it.
20026 (parse_source_extension_decl): Likewise.
20027
20028 2001-08-16 Marc Autret <autret_m@epita.fr>
20029
20030 * src/vcg.c: Remove includes of `complain.h' and `xalloc.h'.
20031 (get_xxxx_str): Use assert () instead of complain ().
20032 Remove return invokations in default cases.
20033 (get_decision_str): Modify default behaviour. Remove second argument.
20034 Echo modifications on calls.
20035 (output_graph): Fix.
20036
20037 2001-08-16 Marc Autret <autret_m@epita.fr>
20038
20039 * src/getargs.c (usage): Update with ``-g, --graph''.
20040
20041 2001-08-16 Marc Autret <autret_m@epita.fr>
20042
20043 * doc/bison.texinfo (Bison Options): Add items `-g', `--graph'.
20044 (Option Cross Key): Likewise.
20045 * doc/bison.1: Update.
20046
20047 2001-09-25 Pascal Bart <pascal.bart@epita.fr>
20048
20049 * src/output.c (output_master_parser): Don't finish action_obstack.
20050 (output_parser): Don't care about the muscle action, here.
20051 (prepare): Copy the action_obstack in the action muscle.
20052 (output): Free action_obstack.
20053
20054 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
20055
20056 * src/reader.c (parse_union_decl): Add new obstack union_obstack. Which
20057 will contain `%union' declaration.
20058 (parse_union_decl): Delete #line directive output.
20059 (parse_union_decl): Substitute /attrs_obstack/union_obstack for all
20060 informations about %union.
20061 (parse_union_decl): Copy the union_obstack in the muscle stype.
20062 * src/bison.simple: Add new #line directive.
20063 Add typdef %%stype YYSTYPE.
20064
20065 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
20066
20067 * src/bison.simple: Add new `#line' directive.
20068
20069 2001-09-22 Pascal Bart <pascal.bart@epita.fr>
20070
20071 * src/bison.simple: New `#line' directive.
20072 * src/output.c (output_parser): Support new dynamic muscle input_line.
20073
20074 2001-09-22 Marc Autret <autret_m@epita.fr>
20075
20076 * src/output.c (output_master_parser): New.
20077 (output_parser): Be more re-entrant.
20078
20079 2001-09-21 Marc Autret <autret_m@epita.fr>
20080
20081 * src/reader.c (copy_definition, parse_union_decl): Update and use
20082 `linef' muscle.
20083 (copy_action): Likewise.
20084 Use obstack_1grow ().
20085 * src/muscle_tab.c (muscle_init): Add muscle `linef'.
20086
20087 2001-09-21 Marc Autret <autret_m@epita.fr>
20088
20089 * src/options.c (option_table): Adjust.
20090 * src/lex.c (parse_percent_token): Fix.
20091
20092 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
20093
20094 * src/options.c (symtab.h): Include it, need by lex.h.
20095
20096 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
20097
20098 * src/lex.c (parse_percent_token): Change type of variable `tx', which
20099 is now an option_table_struct*.
20100 (option_strcmp): New function option_strcmp.
20101 (parse_percent_token): Call option_strcmp.
20102 * src/getargs.c (xalloc.h, options.h): Include it.
20103 (getargs): Call create_long_option_table.
20104 (getargs): Free longopts at the end of the function.
20105 (shortopts): Move in options.c.
20106 * src/options.c (create_long_option_table): New function. Convert
20107 information from option_table to option structure.
20108 * src/reader.c (options.h): Include it.
20109
20110 * src/Makefile.am: Adjust.
20111 * src/options.c (option_table): Create from longopts and percent_table.
20112 * src/getargs.c (longopts): Delete.
20113 * src/lex.c (struct percent_table_struct): Delete.
20114 (percent_table): Delete.
20115 (options.h): Include it.
20116 * src/options.c: Create.
20117 * src/options.h: Create.
20118 Declare enum opt_access_e.
20119 Define struct option_table_struct.
20120
20121 2001-09-20 Marc Autret <autret_m@epita.fr>
20122
20123 * doc/bison.texinfo: Adjust terminologies about prologue and epilogue
20124 sections of Bison.
20125
20126 2001-09-19 Pascal Bart <pascal.bart@epita.fr>
20127
20128 * src/bison.simple: s/%%filename/%%skeleton.
20129 * src/muscle_tab.c (getargs.h): Include it.
20130 (muscle_init): Insert new muscle skeleton.
20131
20132 2001-09-18 Pascal Bart <pascal.bart@epita.fr>
20133
20134 * src/output.c (output_parser): Delete unused variable actions_dumped.
20135
20136 2001-09-07 Pascal Bart <pascal.bart@epita.fr>
20137
20138 * src/output.c (output): Delete call to reader_output_yylsp.
20139 * src/reader.c (reader): Likewise.
20140 * src/reader.h: Delete declaration of reader_output_yylsp.
20141
20142 2001-09-02 Marc Autret <autret_m@epita.fr>
20143
20144 * src/reader.c: Include muscle_tab.h.
20145 (parse_union_decl): Update.
20146 (parse_macro_decl): Rename parse_muscle_decl.
20147 Update to use renamed functions and variable.
20148 (read_declarations, copy_action, read_additionnal_code, : Updated
20149 with correct variables and functions names.
20150 (packsymbols, reader): Likewise.
20151
20152 * src/reader.h (muscle_obstack): Extern declaration update.
20153
20154 * src/output.c: Include muscle_tab.h
20155 In all functions using macro_insert, change by using muscle_insert ().
20156 (macro_obstack): Rename muscle_obstack.
20157 Echo modifications in the whole file.
20158 (MACRO_INSERT_INT): Rename MUSCLE_INSERT_INT.
20159 (MACRO_INSERT_STRING): Rename MUSCLE_INSERT_STRING.
20160 (MACRO_INSERT_PREFIX): Rename MUSCLE_INSERT_PREFIX.
20161
20162 * src/muscle_tab.h: Update double inclusion macros.
20163 (macro_entry_s): Rename muscle_entry_s.
20164 Update prototypes.
20165
20166 * src/muscle_tab.c: Include muscle_tab.h.
20167 Rename macro_tabble to muscle_table.
20168 (mhash1, mhash2, mcmp): Use muscle_entry.
20169 (macro_init): Rename muscle_init. Update.
20170 (macro_insert): Rename muscle_insert. Update.
20171 (macro_find): Rename muscle_find. Update.
20172
20173 * src/main.c: Include muscle_tab.h.
20174 (main): Call muscle_init ().
20175 * src/Makefile.am (bison_SOURCES): Echo modifications.
20176
20177 2001-09-02 Marc Autret <autret_m@epita.fr>
20178
20179 Now the files macro_tab.[ch] are named muscle_tab.[ch].
20180
20181 * src/muscle_tab.c, src/muscle_tab.h: Add files.
20182
20183 2001-09-02 Marc Autret <autret_m@epita.fr>
20184
20185 * src/macrotab.c, src/macrotab.h: Remove.
20186
20187 2001-09-01 Pascal Bart <pascal.bart@epita.fr>
20188
20189 * src/reader.c (copy_guard): Use muscle to specify the `#line'
20190 filename.
20191
20192 2001-09-01 Marc Autret <autret_m@epita.fr>
20193
20194 * tests/calc.at (exp): Now, YYERROR_VERBOSE need to be set
20195 to an explicit value to activate the feature. We do it here.
20196
20197 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
20198
20199 * src/output.c (prepare): Delete the `filename' muscule insertion.
20200 * src/reader.c (copy_action): Use `filename' muscule with `#line'.
20201 (parse_union_decl): Likewise.
20202 * src/macrotab.c (macro_init): Initialize filename by infile.
20203
20204 2001-08-31 Marc Autret <autret_m@epita.fr>
20205
20206 * src/bison.simple (YYLSP_NEEDED): New definition.
20207 * src/output.c (prepare): Add macro insertion of `locations_flag'
20208
20209 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
20210
20211 * src/output.c (prepare): Delete insertion of previous muscles,
20212 and insert the `prefix' muscles.
20213 * src/macrotab.c (macro_init): Likewise.
20214 (macro_init): Initialization prefix directive by `yy'.
20215 * src/bison.simple: Substitute all %%yylex, %%yychar, %%yylval,
20216 %%yydebug, %%yyerror, %%yynerrs and %%yyparse by yylex, yychar,
20217 yylval, yydebug, yyerror, yynerrs and yyparse.
20218 New directive `#define' to substitute yydebug, ... with option
20219 name_prefix.
20220
20221 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
20222
20223 * src/main.c (main): Standardize.
20224 * src/output.c (output_table_data, output_parser): Likewise.
20225 * src/macrotab.h, src/macrotab.c, src/bison.simple: Likewise.
20226
20227 2001-08-31 Pascal Bart <pascal.bart@epita.fr>, Marc Autret <autret_m@epita.fr>
20228
20229 * src/reader.c (read_additionnal_code): Rename %%user_code to
20230 %%epilogue.
20231 * src/output.c (output): Rename %%declarations to %%prologue.
20232 * src/bison.simple: Echo modifications.
20233
20234 2001-08-31 Marc Autret <autret_m@epita.fr>
20235
20236 * src/reader.c (readgram): CleanUp.
20237 (output_token_defines): Likewise.
20238 (packsymbols): Likewise.
20239 (reader): Likewise.
20240 * src/output.c (output): CPP-out useless code.
20241
20242 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
20243
20244 * src/reader.c (reader): Delete obsolete call to function
20245 output_trailers and output_headers.
20246 * src/output.h: Remove obsolete functions prototypes of output_headers
20247 and output_trailers.
20248
20249 2001-08-30 Pascal Bart <pascal.bart@epita.fr>
20250
20251 * src/main.c: Include macrotab.h.
20252 * src/macrotab.h (macro_entry_s): Constify fields.
20253 Adjust functions prototypes.
20254 * src/macrotab.c (macro_insert): Constify key and value.
20255 (macro_find): Constify key.
20256 (macro_insert): Include 'xalloc.h'
20257 (macro_insert): Use XMALLOC.
20258 (macro_find): Constify return value.
20259 * src/output.c (output_table_data): Rename table to table_data.
20260 (output_parser): Constify macro_key, macro_value.
20261
20262 2001-08-30 Marc Autret <autret_m@epita.fr>
20263
20264 * src/reader.c (parse_skel_decl): New.
20265 (read_declarations): Add case `tok_skel', call parse_skel_decl ().
20266 * src/lex.h (token_t): New token `tok_skel'.
20267 * src/lex.c (percent_table): Add skeleton option entry.
20268 Standardize.
20269
20270 2001-08-29 Marc Autret <autret_m@epita.fr>
20271
20272 * src/bison.simple: Add %%user_code directive at the end.
20273 * src/reader.c (read_additionnal_code): New.
20274 (reader): Use it.
20275 * src/output.c (output_program): Remove.
20276 (output): Update.
20277
20278 2001-08-28 Marc Autret <autret_m@epita.fr>
20279
20280 * src/output.c (output_actions): Clean up.
20281 (output_gram): CPP-out useless code.
20282 * src/reader.c (reader): Clean up, CPP-out useless code.
20283
20284 2001-08-28 Pascal Bart <pascal.bart@epita.fr>
20285
20286 * src/output.c (output): Copy attrs_obstack in the '%%definitions'
20287 directive.
20288 * src/bison.simple: Add `%%definitions'.
20289
20290 2001-08-28 Marc Autret <autret_m@epita.fr>
20291
20292 * config/depcomp: New file.
20293
20294 2001-08-27 Paul Eggert <eggert@twinsun.com>
20295
20296 * src/bison.simple (yyparse): Don't take the address of an
20297 item before the start of an array, as that doesn't conform to
20298 the C Standard.
20299
20300 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
20301
20302 * src/output.c (output): Remove the initialization of the macro
20303 obstack. It was done too late here.
20304
20305 * src/reader.c (parse_macro_decl): Fix. Use of the macro obstack was
20306 completely wrong.
20307 (reader): Initialize the macro obstack here, since we need it to grow
20308 '%define' directives.
20309
20310 * src/reader.h: Declare the macro obstack as extern.
20311
20312 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
20313
20314 * src/output.c (output_parser): Fix. Store single '%' characters in
20315 the output obstack instead of throwing them away.
20316
20317 2001-08-27 Akim Demaille <akim@epita.fr>
20318
20319 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
20320
20321 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
20322
20323 * lib/Makefile.am: Adjust.
20324
20325 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
20326
20327 * src/bison.simple: Update and add '%%' directives.
20328
20329 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
20330
20331 * src/reader.c (reader): Remove calls to 'output_headers' and
20332 'output_trailers'. Remove some C output.
20333 (readgram): Disable a piece of code that was writing a default
20334 definition for 'YYSTYPE'.
20335 (reader_output_yylsp): Remove.
20336 (packsymbols): Output token defintions to a macro.
20337 (copy_definition): Disable C output.
20338
20339 * src/reader.c (parse_macro_decl): New function used to parse macro
20340 declarations.
20341 (copy_string2): Put the body of copy_string into this new function.
20342 Add a parameter to let the caller choose whether he wants to copy the
20343 string delimiters or not.
20344 (copy_string): Be a simple call to copy_string2 with the last argument
20345 bound to true.
20346 (read_declarations): Add case for macro definition.
20347 (copy_identifier): New.
20348 (parse_macro_decl): Read macro identifiers using copy_identifier
20349 rather than lex.
20350
20351 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
20352
20353 * src/output.c (prepare): Add prefixed names.
20354 (output_parser): Output semantic actions.
20355 (output_parser): Fix bug on '%%line' directives.
20356
20357 * src/output.c (output_headers): Remove. The C code printed by this
20358 function should now be in the skeletons.
20359 (output_trailers): Remove.
20360 (output): Disable call to 'reader_output_yylsp'.
20361 (output_rule_data): Do not output tables to the table obstack.
20362
20363 * src/output.c: Remove some C dedicated output.
20364 Improve the use of macro and output obstacks.
20365 (output_defines): Remove.
20366
20367 * src/output.c (output_token_translations): Associate 'translate'
20368 table with a macro. No output to the table obstack.
20369 (output_gram): Same for 'rhs' and 'prhs'.
20370 (output_stos): Same for 'stos'.
20371 (output_rule_data): Same for 'r1' and 'r2'.
20372 (token_actions): Same for 'defact'.
20373 (goto_actions): Same for 'defgoto'.
20374 (output_base): Same for 'pact' and 'pgoto'.
20375 (output_table): Same for 'table'.
20376 (output_check): Same for 'check'.
20377
20378 * src/output.c (output_table_data): New function.
20379 (output_short_table): Remove.
20380 (output_short_or_char_table): Remove.
20381
20382 * src/output.c (output_parser): Replace most of the skeleton copy code
20383 with something new. Skeletons are now processed character by character
20384 rather than line by line, and Bison looks for '%%' macros. This is the
20385 first step in making Bison's output process (a lot) more flexible.
20386 (output_parser): Use the macro table.
20387
20388 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
20389
20390 * src/main.c (main): Initialize the macro table.
20391
20392 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
20393
20394 * src/lex.c (percent_table): Add tok_define.
20395 * src/lex.h: Add tok_define.
20396
20397 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
20398
20399 * src/macrotab.c: New file.
20400 * src/macrotab.h: New file.
20401 * src/Makefile.am: Update.
20402
20403 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
20404
20405 * lib/hash.c: New file.
20406 * lib/hash.h: New file.
20407 * lib/Makefile.am: Update.
20408
20409 2001-08-15 Akim Demaille <akim@epita.fr>
20410
20411 Version 1.28c.
20412
20413 2001-08-15 Marc Autret <autret_m@epita.fr>
20414
20415 * src/reader.c (readgram): Indent output macro YYSTYPE.
20416 (packsymbols): Likewise.
20417 (output_token_defines): Likewise.
20418 * src/files.c: Standardize.
20419 (compute_header_macro): New.
20420 (defines_obstack_save): New. Use compute_header_macro.
20421 (output_files): Update. Use defines_obstack_save.
20422
20423 2001-08-15 Akim Demaille <akim@epita.fr>
20424
20425 * doc/bison.texinfo (Table of Symbols): Document
20426 YYSTACK_USE_ALLOCA.
20427
20428 2001-08-15 Akim Demaille <akim@epita.fr>
20429
20430 * missing: Update from CVS Automake.
20431 * config/config.guess, config/config.sub, config/texinfo.tex:
20432 Update from gnu.org.
20433
20434 2001-08-15 Akim Demaille <akim@epita.fr>
20435
20436 * Makefile.maint: Sync with CVS Autoconf.
20437
20438 2001-08-14 Pascal Bart <pascal.bart@epita.fr>
20439
20440 * doc/bison.texinfo: Include GNU Free Documentation License from
20441 `fdl.texi'.
20442 * doc/fdl.texi: Add to package.
20443
20444 2001-08-14 Marc Autret <autret_m@epita.fr>
20445
20446 Turn on %{source,header}_extension features.
20447
20448 * src/lex.c (percent_table): Un-CPP out header_extension and
20449 source_extension.
20450 * src/files.c (compute_exts_from_gf): Compare pointers with NULL.
20451 (compute_exts_from_src): Remove conditions. It restores priorities
20452 between options.
20453
20454 2001-08-14 Marc Autret <autret_m@epita.fr>
20455
20456 * src/files.c (compute_base_names): Add extensions computing when
20457 `--file-prefix' used.
20458 Standardize function calls.
20459
20460 2001-08-13 Marc Autret <autret_m@epita.fr>
20461
20462 * src/bison.simple (YYSTACK_USE_ALLOCA): Changed to allow users
20463 defining it (defined but null disables alloca).
20464
20465 2001-08-13 Marc Autret <autret_m@epita.fr>
20466
20467 * src/bison.simple (_yy_memcpy): CPP reformat.
20468
20469 2001-08-13 Pascal Bart <pascal.bart@epita.fr>
20470
20471 * tests/atconfig.in (CPPFLAGS): Fix.
20472
20473 2001-08-10 Pascal Bart <pascal.bart@epita.fr>
20474
20475 * doc/bison.texinfo: Include GNU General Public License from
20476 `gpl.texi'.
20477 * doc/gpl.texi: Add to package.
20478
20479 2001-08-10 Marc Autret <autret_m@epita.fr>
20480
20481 * src/print_graph.h: Fix.
20482 * src/reader.c (read_declarations): Use parse_header_extension_decl ().
20483
20484 2001-08-10 Akim Demaille <akim@epita.fr>
20485
20486 * src/system.h: Provide default declarations for stpcpy, strndup,
20487 and strnlen.
20488
20489 2001-08-10 Robert Anisko <anisko_r@epita.fr>
20490
20491 * doc/bison.texinfo (Locations): Update @$ stuff.
20492
20493 2001-08-09 Robert Anisko <anisko_r@epita.fr>
20494
20495 * src/bison.simple (YYLLOC_DEFAULT): Update.
20496 (yyparse): Adjust.
20497
20498 2001-08-08 Marc Autret <autret_m@epita.fr>
20499
20500 * doc/bison.texinfo: Change @samp{$<@dots{}>} to
20501 @samp{$<@dots{}>@var{n}} in Section Actions in Mid-Rule.
20502 Reported by Fabrice Bauzac.
20503
20504 2001-08-08 Marc Autret <autret_m@epita.fr>
20505
20506 * src/vcg_default.h: Use NULL instead of 0 to initialize pointers.
20507 * src/vcg.c (output_node): Fix.
20508 * src/vcg.h: Cleanup.
20509 * src/print_graph.c: Add comments.
20510 (node_output_size): New global variable. Simplify the formatting of
20511 the VCG graph output.
20512 (print_actions): Unused code is now used. It notifies the final state
20513 and no action states in the VCG graph. It also give the reduce actions.
20514 The `shift and goto' edges are red and the `go to state' edges are
20515 blue.
20516 Get the current node name and node_obstack by argument.
20517 (node_obstack): New variable.
20518 (print_state): Manage node_obstack.
20519 (print_core): Use node_obstack given by argument.
20520 A node is not only computed here but in print_actions also.
20521 (print_graph): CPP out useless code instead of commenting it.
20522
20523 2001-08-07 Pascal Bart <pascal.bart@epita.fr>
20524
20525 * tests/atconfig.in (CPPFLAGS): Fix.
20526
20527 2001-08-07 Akim Demaille <akim@epita.fr>
20528
20529 * src/print_graph.c (quote): New.
20530 (print_core): Use it.
20531
20532 2001-08-06 Akim Demaille <akim@epita.fr>, Marc Autret <autret_m@epita.fr>
20533
20534 * src/vcg.c (complain.h): Include it.
20535 Unepitaize `return' invocations.
20536 [NDEBUG] (main): Remove.
20537 * src/vcg.h (node_t, edge_t, graph_t): Constify the char * members.
20538 * src/files.c (open_files): Initialize graph_obstack.
20539 * src/print_graph.c (print_actions): CPP out useless code.
20540 (print_core): Don't output the last `\n' in labels.
20541 Use `quote'.
20542 * src/files.c (output_files): Output the VCG file.
20543 * src/main.c (main): Invoke print_graph ();
20544
20545 2001-08-06 Marc Autret <autret_m@epita.fr>
20546
20547 Automaton VCG graph output.
20548 Using option ``-g'' or long option ``--graph'', you can generate
20549 a gram_filename.vcg file containing a VCG description of the LALR (1)
20550 automaton of your grammar.
20551
20552 * src/main.c: Call to print_graph() function.
20553 * src/getargs.h: Update.
20554 * src/getargs.c (options): Update to catch `-g' and `--graph' options.
20555 (graph_flag): New flag.
20556 (longopts): Update.
20557 (getargs): Add case `g'.
20558 * src/files.c (graph_obstack): New obstack struct.
20559 (open_files): Initialize new obstack.
20560 (output_files): Saves graph_obstack if required.
20561 * src/files.h (graph_obstack): New extern declaration.
20562 * src/Makefile.am: Add new source files.
20563
20564 2001-08-06 Marc Autret <autret_m@epita.fr>
20565
20566 * src/print_graph.c, src/print_graph.h (graph): New.
20567 * src/vcg.h: New file.
20568 * src/vcg.c: New file, VCG graph handling.
20569
20570 2001-08-06 Marc Autret <autret_m@epita.fr>
20571
20572 Add of %source_extension and %header_extension which specify
20573 the source or/and the header output file extension.
20574
20575 * src/files.c (compute_base_names): Remove initialisation of
20576 src_extension and header_extension.
20577 (compute_exts_from_gf): Update.
20578 (compute_exts_from_src): Update.
20579 (output_files): Update.
20580 * src/reader.c (parse_header_extension_decl): New.
20581 (parse_source_extension_decl): New.
20582 (read_declarations): New case statements for the new tokens.
20583 * src/lex.c (percent_table): Add entries for %source_extension
20584 and %header_extension.
20585 * src/lex.h (token_e): New tokens tok_hdrext and tok_srcext.
20586
20587 2001-08-06 Marc Autret <autret_m@epita.fr>
20588
20589 * configure.in: Bump to 1.28c.
20590 * doc/bison.texinfo: Texinfo thingies.
20591
20592 2001-08-04 Pascal Bart <pascal.bart@epita.fr>
20593
20594 * tests/atconfig.in (CPPFLAGS): Add.
20595 * tests/calc.at (AT_CHECK): Use CPPFLAGS.
20596
20597 2001-08-03 Akim Demaille <akim@epita.fr>
20598
20599 Version 1.28b.
20600
20601 2001-08-03 Akim Demaille <akim@epita.fr>
20602
20603 * tests/Makefile.am (check-local): Ship testsuite.
20604 * tests/calc.at (_AT_DATA_CALC_Y): Prototype all the functions.
20605 Include `string.h'.
20606
20607 2001-08-03 Akim Demaille <akim@epita.fr>
20608
20609 * configure.in: Try using -Wformat when compiling.
20610
20611 2001-08-03 Akim Demaille <akim@epita.fr>
20612
20613 * configure.in: Bump to 1.28b.
20614
20615 2001-08-03 Akim Demaille <akim@epita.fr>
20616
20617 * src/complain.c: Adjust strerror_r portability issues.
20618
20619 2001-08-03 Akim Demaille <akim@epita.fr>
20620
20621 Version 1.28a.
20622
20623 2001-08-03 Akim Demaille <akim@epita.fr>
20624
20625 * src/getargs.c, src/getarg.h (skeleton)): Constify.
20626 * src/lex.c (literalchar): Avoid name clashes on `buf'.
20627 * src/getargs.c: Include complain.h.
20628 * src/files.c, src/files.h (skeleton_find): Avoid name clashes.
20629 * lib/quotearg.c, lib/quotearg.h: Update from fileutils 4.1.
20630
20631 2001-08-03 Akim Demaille <akim@epita.fr>
20632
20633 * src/reader.c (readgram): Display hidden chars in error messages.
20634
20635 2001-08-03 Akim Demaille <akim@epita.fr>
20636
20637 Update to gettext 0.10.39.
20638
20639 2001-08-03 Akim Demaille <akim@epita.fr>
20640
20641 * lib/strspn.c: New.
20642
20643 2001-08-01 Marc Autret <autret_m@epita.fr>
20644
20645 * doc/bison.texinfo: Update.
20646 * doc/bison.1 (mandoc): Update.
20647 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove .c and .h.
20648 * src/files.c: Support output files extensions computing.
20649 (src_extension): New static variable.
20650 (header_extension): New static variable.
20651 (tr): New function.
20652 (get_extension_index): New function, gets the index of an extension
20653 filename in a string.
20654 (compute_exts_from_gf): New function, computes extensions from the
20655 grammar file extension.
20656 (compute_exts_from_src): New functions, computes extensions from the
20657 C source file extension, file given by ``-o'' option.
20658 (compute_base_names): Update.
20659 (output_files): Update.
20660
20661 2001-08-01 Robert Anisko <anisko_r@epita.fr>
20662
20663 * doc/bison.texi: Document @$.
20664 (Locations): New section.
20665
20666 2001-07-18 Akim Demaille <akim@epita.fr>
20667
20668 * Makefile.maint, GNUmakefile: New, from Autoconf 2.52.
20669 * config/prev-version.txt, config/move-if-change: New.
20670 * Makefile.am: Adjust.
20671
20672 2001-07-08 Pascal Bart <pascal.bart@epita.fr>
20673
20674 * src/bison.simple (yyparse): Suppress warning `comparaison
20675 between signed and unsigned'.
20676
20677 2001-07-05 Pascal Bart <pascal.bart@epita.fr>
20678
20679 * src/getargs.h (raw_flag): Remove.
20680 * src/getargs.c: Die on `-r'/`--raw'.
20681 * src/lex.c (parse_percent_token): Die on `%raw'.
20682 * src/reader.c (output_token_defines): Suppress call to `raw_flag'.
20683 * tests/calc.at: Suppress test with option `--raw'.
20684
20685 2001-07-14 Akim Demaille <akim@epita.fr>
20686
20687 * config/: New.
20688 * configure.in: Require Autoconf 2.50.
20689 Update to gettext 0.10.38.
20690
20691 2001-03-16 Akim Demaille <akim@epita.fr>
20692
20693 * doc/bison.texinfo: ANSIfy the examples.
20694
20695 2001-03-16 Akim Demaille <akim@epita.fr>
20696
20697 * getargs.c (skeleton): New variable.
20698 (longopts): --skeleton is a new option.
20699 (shortopts, getargs): -S is a new option.
20700 * getargs.h: Declare skeleton.
20701 * output.c (output_parser): Use it.
20702
20703 2001-03-16 Akim Demaille <akim@epita.fr>
20704
20705 * m4/strerror_r.m4: New.
20706 * m4/error.m4: Run AC_FUNC_STRERROR_R.
20707 * lib/error.h, lib/error.c: Update.
20708
20709 2001-03-16 Akim Demaille <akim@epita.fr>
20710
20711 * src/getargs.c (longopts): Clean up.
20712
20713 2001-02-21 Akim Demaille <akim@epita.fr>
20714
20715 * src/reader.c (gensym): `gensym_count' is your own.
20716 Use a static buf to create the symbol name, as token_buffer is no
20717 longer a buffer.
20718
20719 2001-02-08 Akim Demaille <akim@epita.fr>
20720
20721 * src/conflicts.c (conflict_report): Be sure not to append to res
20722 between two calls, which could happen if both first sprintf were
20723 skipped, but not the first cp += strlen.
20724
20725 2001-02-08 Akim Demaille <akim@epita.fr>
20726
20727 * lib/memchr.c, lib/stpcpy.c, lib/strndup.c, lib/strnlen.c:
20728 New, from fileutils 4.0.37.
20729 * configure.in: Require Autoconf 2.49c. I took some time before
20730 making this decision. This is the only way out for portability
20731 issues in Bison, it would mean way too much duplicate effort to
20732 import in Bison features implemented in 2.49c since 2.13.
20733 AC_REPLACE_FUNCS and AC_CHECK_DECLS the functions above.
20734
20735 2001-02-02 Akim Demaille <akim@epita.fr>
20736
20737 * lib/malloc.c, lib/realloc.c: New, from the fileutils 4.0.37.
20738 * lib/xalloc.h, lib/xmalloc.c: Update.
20739
20740 2001-01-19 Akim Demaille <akim@epita.fr>
20741
20742 Get rid of the ad hoc handling of token_buffer in the scanner: use
20743 the obstacks.
20744
20745 * src/lex.c (token_obstack): New.
20746 (init_lex): Initialize it. No longer call...
20747 (grow_token_buffer): this. Remove it.
20748 Adjust all the places which used it to use the obstack.
20749
20750 2001-01-19 Akim Demaille <akim@epita.fr>
20751
20752 * src/lex.h: Rename all the tokens:
20753 s/\bENDFILE\b/tok_eof/g;
20754 s/\bIDENTIFIER\b/tok_identifier/g;
20755 etc.
20756 Let them be enums, not #define, to ease debugging.
20757 Adjust all the code.
20758
20759 2001-01-18 Akim Demaille <akim@epita.fr>
20760
20761 * src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
20762 * src/lex.c (maxtoken, grow_token_buffer): Static.
20763
20764 2001-01-18 Akim Demaille <akim@epita.fr>
20765
20766 Since we now use obstacks, more % directives can be enabled.
20767
20768 * src/lex.c (percent_table): Also accept `%yacc',
20769 `%fixed_output_files', `%defines', `%no_parser', `%verbose', and
20770 `%debug'.
20771 Handle the actions for `%semantic_parser' and `%pure_parser' here,
20772 instead of returning a token.
20773 * src/lex.h (SEMANTIC_PARSER, PURE_PARSER): Remove, unused.
20774 * src/reader.c (read_declarations): Adjust.
20775 * src/files.c (open_files): Don't call `compute_base_names', don't
20776 compute `attrsfile' since they depend upon data which might be
20777 *in* the input file now.
20778 (output_files): Do it here.
20779 * src/output.c (output_headers): Document the fact that this patch
20780 introduces a guaranteed SEGV for semantic parsers.
20781 * doc/bison.texinfo: Document them.
20782 * tests/suite.at: Exercise these %options.
20783
20784 2000-12-20 Akim Demaille <akim@epita.fr>
20785
20786 Also handle the output file (--verbose) with obstacks.
20787
20788 * files.c (foutput): Remove.
20789 (output_obstack): New.
20790 Adjust all dependencies.
20791 * src/conflicts.c: Return a string.
20792 * src/system.h (obstack_grow_string): Rename as...
20793 (obstack_sgrow): this. Be ready to work with non literals.
20794 (obstack_fgrow4): New.
20795
20796 2000-12-20 Akim Demaille <akim@epita.fr>
20797
20798 * src/files.c (open_files): Fix the computation of short_base_name
20799 in the case of `-o foo.tab.c'.
20800
20801 2000-12-20 Akim Demaille <akim@epita.fr>
20802
20803 * src/reader.c (copy_string, copy_comment, copy_comment2, copy_at)
20804 (copy_dollar): Now that everything uses obstacks, get rid of the
20805 FILE * parameters.
20806
20807 2000-12-20 Akim Demaille <akim@epita.fr>
20808
20809 * src/files.c (open_files): Actually the `.output' file is based
20810 on the short_base_name, not base_name.
20811 * tests/suite.at (Checking output file names): Adjust.
20812
20813 2000-12-20 Akim Demaille <akim@epita.fr>
20814
20815 * src/bison.s1: Remove, we now use directly...
20816 * src/bison.simple: this.
20817 * src/Makefile.am: Use pkgdata instead of data.
20818
20819 2000-12-20 Akim Demaille <akim@epita.fr>
20820
20821 * src/files.c (guard_obstack): New.
20822 (open_files): Initialize it.
20823 (output_files): Dump it...
20824 * src/files.h: Export it.
20825 * src/reader.c (copy_guard): Use it.
20826
20827 2000-12-19 Akim Demaille <akim@epita.fr>
20828
20829 * src/files.c (outfile, defsfile, actfile): Removed as global
20830 vars.
20831 (open_files): Don't compute them.
20832 (output_files): Adjust.
20833 (base_name, short_base_name): Be global.
20834 Adjust dependencies.
20835
20836 2000-12-19 Akim Demaille <akim@epita.fr>
20837
20838 * src/files.c (strsuffix): New.
20839 (stringappend): Be just like strcat but allocate.
20840 (base_names): Eve out from open_files.
20841 Try to simplify the rather hairy computation of base_name and
20842 short_base_name.
20843 (open_files): Use it.
20844 * tests/suite.at (Checking output file names): New test.
20845
20846 2000-12-19 Akim Demaille <akim@epita.fr>
20847
20848 * src/system.h (obstack_grow_literal_string): Rename as...
20849 (obstack_grow_string): this.
20850 * src/output.c (output_parser): Recognize `%% actions' instead of
20851 `$'.
20852 * src/bison.s1: s/$/%% actions/.
20853 * src/bison.hairy: Likewise.
20854
20855 2000-12-19 Akim Demaille <akim@epita.fr>
20856
20857 * src/output.c (output_parser): Compute the `#line' lines when
20858 there are.
20859 * src/Makefile.am (bison.simple): Be a simple copy of bison.s1.
20860 Suggested by Hans Aberg.
20861
20862 2000-12-19 Akim Demaille <akim@epita.fr>
20863
20864 Let the handling of the skeleton files be local to the procedures
20865 that use it.
20866
20867 * src/files.c (xfopen, xfclose, skeleton_find, guardfile): No
20868 longer static.
20869 (fparser, open_extra_files): Remove.
20870 (open_files, output_files): Don't take care of fparser.
20871 * src/files.h: Adjust.
20872 * src/output.c (output_parser): Open and close the file to the
20873 skeleton.
20874 * src/reader.c (read_declarations): When %semantic_parser, open
20875 fguard.
20876
20877 2000-12-19 Akim Demaille <akim@epita.fr>
20878
20879 * src/file.h (BISON_SIMPLE, BISON_HAIRY): Move from here...
20880 * src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
20881
20882 2000-12-19 Akim Demaille <akim@epita.fr>
20883
20884 * src/files.c (open_files): Yipee! We no longer need all the code
20885 looking for `/tmp' since we have no tmp file.
20886
20887 2000-12-19 Akim Demaille <akim@epita.fr>
20888
20889 * src/system.h (EXT_TAB, EXT_OUTPUT, EXT_STYPE_H, EXT_GUARD_C):
20890 New macros.
20891 * src/files.c (open_files): Less dependency on MSDOS etc.
20892
20893 2000-12-14 Akim Demaille <akim@epita.fr>
20894
20895 * src/bison.s1 (YYLLOC_DEFAULT): New macro.
20896 Provide a default definition.
20897 Use it when executing the default @ action.
20898 * src/reader.c (reader_output_yylsp): No longer include
20899 `timestamp' and `text' in the default YYLTYPE.
20900
20901 2000-12-12 Akim Demaille <akim@epita.fr>
20902
20903 * src/reader.c (copy_definition, parse_union_decl, copy_action)
20904 (copy_guard): Quote the file names.
20905 Reported by Laurent Mascherpa.
20906
20907 2000-12-12 Akim Demaille <akim@epita.fr>
20908
20909 * src/output.c (output_headers, output_program, output): Be sure
20910 to escape special characters when outputting filenames.
20911 (ACTSTR_PROLOGUE, ACTSTR_EPILOGUE): Remove.
20912 (output_headers): Don't depend on them, Use ACTSTR.
20913
20914 2000-11-17 Akim Demaille <akim@epita.fr>
20915
20916 * lib/obstack.h: Formatting changes.
20917 (obstack_grow, obstack_grow0): Don't cast WHERE at all: it
20918 prevents type checking.
20919 (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
20920 cast the value to (void *): assigning a `foo *' to a `void *'
20921 variable is valid.
20922 (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
20923 * src/reader.c (parse_union_decl): Typo: use obstack_1grow to
20924 append characters.
20925
20926 2000-11-17 Akim Demaille <akim@epita.fr>
20927
20928 * tests/Makefile.am (suite.m4, regression.m4, calc.m4): Rename
20929 as...
20930 (suite.m4, regression.m4, calc.m4): these.
20931 * tests/atgeneral.m4: Update from CVS Autoconf.
20932
20933 2000-11-17 Akim Demaille <akim@epita.fr>
20934
20935 * tests/regression.m4 (%union and --defines): New test,
20936 demonstrating a current bug in the obstack implementation.
20937
20938 2000-11-17 Akim Demaille <akim@epita.fr>
20939
20940 * src/bison.s1 (_YY_DECL_VARIABLES, YY_DECL_VARIABLES): New
20941 macros.
20942 Use them to declare the variables which are global or local to
20943 `yyparse'.
20944
20945 2000-11-17 Akim Demaille <akim@epita.fr>
20946
20947 * acconfig.h: Remove, no longer used.
20948
20949 2000-11-07 Akim Demaille <akim@epita.fr>
20950
20951 * src: s/Copyright (C)/Copyright/g.
20952
20953 2000-11-07 Akim Demaille <akim@epita.fr>
20954
20955 * src/reader.c (reader): #define YYLSP_NEEDED to 1 instead of just
20956 defining.
20957 * src/bison.s1: s/#ifdef YYLSP_NEEDED/#if YYLSP_NEEDED/.
20958
20959 2000-11-07 Akim Demaille <akim@epita.fr>
20960
20961 * src/bison.s1 (YYLEX): Use #if instead of #ifdef.
20962 Merge in a single CPP if/else.
20963
20964 2000-11-07 Akim Demaille <akim@epita.fr>
20965
20966 * src/output.c (output): Remove useless variables.
20967 * lib/obstack.c (obstack_grow, obstack_grow0): Rename the second
20968 argument `data' for consistency with the prototypes.
20969 Qualify it `const'.
20970 (obstack_copy, obstack_copy0): Rename the second argument as
20971 `address' for consistency. Qualify it `const'.
20972 * lib/obstack.h (obstack_copy, obstack_copy0, obstack_grow)
20973 (obstack_grow0, obstack_ptr_grow, obstack_ptr_grow_fast): Qualify
20974 `const' their input argument (`data' or `address').
20975 Adjust the corresponding macros to include `const' in casts.
20976
20977 2000-11-03 Akim Demaille <akim@epita.fr>
20978
20979 * src/Makefile.am (INCLUDES): s/PFILE/BISON_SIMPLE/.
20980 s/PFILE1/BISON_HAIRY/.
20981 Adjust dependencies.
20982
20983 2000-11-03 Akim Demaille <akim@epita.fr>
20984
20985 For some reason, this was not applied.
20986
20987 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
20988 `unlink': it's no longer used.
20989
20990 2000-11-03 Akim Demaille <akim@epita.fr>
20991
20992 * src/files.c (skeleton_find): New function, eved out of...
20993 (open_files, open_extra_files): here.
20994
20995 2000-11-03 Akim Demaille <akim@epita.fr>
20996
20997 Don't use `atexit'.
20998
20999 * src/files.c (obstack_save): New function.
21000 (done): Rename as...
21001 (output_files): this.
21002 Use `obstack_save'.
21003 * src/main.c (main): Don't use `atexit' to register `done', since
21004 it no longer has to remove tmp files, just call `output_files'
21005 when there are no errors.
21006
21007 2000-11-02 Akim Demaille <akim@epita.fr>
21008
21009 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
21010 `unlink': it's no longer used.
21011 * src/files.h: Formatting changes.
21012
21013 2000-11-02 Akim Demaille <akim@epita.fr>
21014
21015 Remove the last uses of mktemp and unlink/delete.
21016
21017 * src/files.c (fdefines, ftable): Removed.
21018 (defines_ostack, table_obstack): New.
21019 Adjust dependencies of the former into uses of the latter.
21020 * src/output.c (output_short_or_char_table, output_short_table):
21021 Convert to using obstacks.
21022 * src/reader.c (copy_comment2): Accept one FILE * and two
21023 obstacks.
21024 (output_token_defines, reader_output_yylsp): Use obstacks.
21025 * src/system.h (obstack_fgrow3): New.
21026 * po/POTFILES.in: Adjust.
21027
21028 2000-11-01 Akim Demaille <akim@epita.fr>
21029
21030 Change each use of `fattrs' into a use of `attrs_obstack'.
21031
21032 * src/reader.c (copy_at): Typo: s/yylloc/yyloc/.
21033 * src/files.c (fattrs): Remove.
21034 (attrs_obstack): New.
21035 Adjust all dependencies.
21036 (done): If SEMANTIC_PARSER, dump attrs_obstack into attrsfile.
21037
21038 2000-11-01 Akim Demaille <akim@epita.fr>
21039
21040 Introduce obstacks.
21041 Change each use of `faction' into a use of `action_obstack'.
21042
21043 * lib/obstack.h, lib/obstack.c: New files.
21044 * src/files.c (faction): Remove.
21045 (action_obstack): New.
21046 Adjust all dependencies.
21047
21048 2000-10-20 Akim Demaille <akim@epita.fr>
21049
21050 * lib/quote.h (PARAMS): New macro. Use it.
21051
21052 2000-10-16 Akim Demaille <akim@epita.fr>
21053
21054 * src/output.c (output_short_or_char_table): New function.
21055 (output_short_table, output_token_translations): Use it.
21056 (goto_actions): Use output_short_table.
21057
21058 2000-10-16 Akim Demaille <akim@epita.fr>
21059
21060 * src/symtab.c (bucket_new): New function.
21061 (getsym): Use it.
21062
21063 * src/output.c (output_short_table): New argument to display the
21064 comment associated with the table.
21065 Adjust dependencies.
21066 (output_gram): Use it.
21067 (output_rule_data): Nicer output layout for YYTNAME.
21068
21069 2000-10-16 Akim Demaille <akim@epita.fr>
21070
21071 * src/lex.c (read_typename): New function.
21072 (lex): Use it.
21073 * src/reader.c (copy_dollar): Likewise.
21074
21075 2000-10-16 Akim Demaille <akim@epita.fr>
21076
21077 * src/reader.c (copy_comment2): Expect the input stream to be on
21078 the `/' which is suspected to open a comment, instead of being
21079 called after `//' or `/*' was read.
21080 (copy_comment, copy_definition, parse_union_decl, copy_action)
21081 (copy_guard): Adjust.
21082
21083 2000-10-16 Akim Demaille <akim@epita.fr>
21084
21085 * src/reader.c (parse_expect_decl): Use `skip_white_space' and
21086 `read_signed_integer'.
21087
21088 2000-10-16 Akim Demaille <akim@epita.fr>
21089
21090 * src/reader.c (copy_dollar): New function.
21091 (copy_guard, copy_action): Use it.
21092
21093 2000-10-16 Akim Demaille <akim@epita.fr>
21094
21095 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
21096 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
21097 New files, from Fileutils 4.0.27.
21098 * src/main.c (printable_version): Remove.
21099 * src/lex.c, src/reader.c: Use `quote'.
21100
21101 2000-10-04 Akim Demaille <akim@epita.fr>
21102
21103 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
21104
21105 2000-10-04 Akim Demaille <akim@epita.fr>
21106
21107 * doc/bison.texinfo: Various typos spotted by Neil Booth.
21108
21109 2000-10-04 Akim Demaille <akim@epita.fr>
21110
21111 When a literal string is used to define two different tokens,
21112 `bison -v' segfaults.
21113 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
21114
21115 * tests/regression.m4: New file.
21116 Include the core of the sample provided by Piotr Gackiewicz.
21117 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
21118 properly.
21119
21120 2000-10-04 Akim Demaille <akim@epita.fr>
21121
21122 * src/reader.c (parse_expect_decl): Keep `count' within the size
21123 of `buffer'.
21124 From Neil Booth.
21125
21126 2000-10-02 Paul Eggert <eggert@twinsun.com>
21127
21128 * bison.s1 (yyparse): Assign the default value
21129 unconditionally, to avoid a GCC warning and make the parser a
21130 tad smaller.
21131
21132 2000-10-02 Akim Demaille <akim@epita.fr>
21133
21134 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
21135 options.
21136
21137 2000-10-02 Akim Demaille <akim@epita.fr>
21138
21139 * src/derives.c, src/print.c, src/reduce.c: To ease the
21140 translation, move some `\n' out of the translated strings.
21141
21142 2000-10-02 Akim Demaille <akim@epita.fr>
21143
21144 The location tracking mechanism is precious for parse error
21145 messages. Nevertheless, it is enabled only when `@n' is used in
21146 the grammar, which is a different issue (you can use it in error
21147 message, but not in the grammar per se). Therefore, there should
21148 be another means to enable it.
21149
21150 * src/getargs.c (getargs): Support `--locations'.
21151 (usage): Report it.
21152 * src/getargs.h (locationsflag): Export it.
21153 * src/lex.c (percent_table): Support `%locations'.
21154 * src/reader.c (yylsp_needed): Remove this variable, now replaced
21155 with `locationsflag'.
21156 * doc/bison.texinfo: Document `--locations' and `%locations'.
21157 Sort the options.
21158 * tests/calc.m4: Test it.
21159
21160 For regularity of the names, replace each
21161 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
21162 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
21163 In addition replace each `flag' with `_flag'.
21164
21165 2000-10-02 Akim Demaille <akim@epita.fr>
21166
21167 Also test parse error messages, including with YYERROR_VERBOSE.
21168
21169 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
21170 associative).
21171 Use it to check the computations.
21172 Use it to check `nonassoc' is honored.
21173 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
21174 `--yyerror-verbose'.
21175 (_AT_CHECK_CALC): Adjust to this option.
21176 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
21177
21178 2000-10-02 Akim Demaille <akim@epita.fr>
21179
21180 Test also `--verbose', `--defines' and `--name-prefix'. Testing
21181 the latter demonstrates a flaw in the handling of non debugging
21182 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
21183 was used in order to simplify:
21184
21185 #if YYDEBUG
21186 if (yydebug)
21187 {
21188 ...
21189 }
21190 #endif
21191
21192 into
21193
21194 if (yydebug)
21195 {
21196 ...
21197 }
21198
21199 unfortunately this leads to a CPP conflict when
21200 `--name-prefix=foo' is used since it produces `#define yydebug
21201 foodebug'.
21202
21203 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
21204 (YYDPRINTF): New macro.
21205 Spread its use.
21206 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
21207 the bison options.
21208 Also test `--verbose', `--defines' and `--name-prefix'.
21209
21210 2000-10-02 Akim Demaille <akim@epita.fr>
21211
21212 Improve the readability of the produced parsers.
21213
21214 * src/bison.s1: Formatting changes.
21215 Improve the comment related to the `$' mark.
21216 (yydefault): Don't fall through to `yyresume': `goto' there.
21217 * src/output.c (output_parser): When the `$' is met, skip the end
21218 of its line.
21219 New variable, `number_of_dollar_signs', to check there's exactly
21220 one `$' in the parser skeleton.
21221
21222 2000-10-02 Akim Demaille <akim@epita.fr>
21223
21224 * lib/xstrdup.c: New file, from the fileutils.
21225 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
21226 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
21227 instead of strlen + xmalloc + strcpy.
21228 * src/symtab.c (copys): Remove, use xstrdup instead.
21229
21230 2000-10-02 Akim Demaille <akim@epita.fr>
21231
21232 * src/gram.h (associativity): New enum type which replaces the
21233 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
21234 `right_assoc', `left_assoc' and `non_assoc'.
21235 Adjust all dependencies.
21236 * src/reader.c: Formatting changes.
21237 (LTYPESTR): Don't define it, use it as a literal in
21238 `reader_output_yylsp'.
21239 * src/symtab.h (symbol_class): New enum type which replaces the
21240 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
21241 `sunknown', `stoken and `snterm'.
21242
21243 2000-10-02 Akim Demaille <akim@epita.fr>
21244
21245 * src/getargs.c (fixed_outfiles): Rename as...
21246 (yaccflag): for consistency and accuracy.
21247 Adjust dependencies.
21248
21249 2000-10-02 Akim Demaille <akim@epita.fr>
21250
21251 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
21252 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
21253 difficult and introduced a lot of core dump. It turns out that
21254 Bison used an implementation of `xmalloc' based on `calloc', and
21255 at various places it does depend upon the initialization to 0. I
21256 have not tried to isolate the pertinent places, and all the former
21257 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
21258 someone should address this issue.
21259
21260 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
21261 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
21262 files.
21263 Adjust dependencies.
21264 * src/warshall.h: New file.
21265 Propagate.
21266
21267 2000-10-02 Akim Demaille <akim@epita.fr>
21268
21269 Various anti-`extern in *.c' changes.
21270
21271 * src/system.h: Include `assert.h'.
21272
21273 2000-10-02 Akim Demaille <akim@epita.fr>
21274
21275 * src/state.h (nstates, final_state, first_state, first_shift)
21276 (first_reduction): Move their exportation from here...
21277 * src/LR0.h: to here.
21278 Adjust dependencies.
21279 * src/getargs.c (statisticsflag): New variable.
21280 Add support for `--statistics'.
21281 Adjust dependencies.
21282
21283 Remove a lot of now useless `extern' statements in most files.
21284
21285 2000-10-02 Akim Demaille <akim@epita.fr>
21286
21287 * src/LR0.h: New file.
21288 Propagate its use.
21289
21290 2000-10-02 Akim Demaille <akim@epita.fr>
21291
21292 * src/print.h: New file.
21293 Propagate its use.
21294 * src/print.c: Formatting and ordering changes.
21295 (verbose, terse): Replace with...
21296 (print_results): this new function.
21297 Adjust dependencies.
21298
21299 2000-10-02 Akim Demaille <akim@epita.fr>
21300
21301 * src/conflicts.c (conflict_report): New function.
21302 (conflict_log, verbose_conflict_log): Replace with...
21303 (print_conflicts): this function.
21304 Adjust dependencies.
21305 * src/conflicts.h: New file.
21306 Propagate its inclusion.
21307
21308 2000-10-02 Akim Demaille <akim@epita.fr>
21309
21310 * src/nullable.h: New file.
21311 Propagate its inclusion.
21312 * src/nullable.c: Formatting changes.
21313
21314 2000-10-02 Akim Demaille <akim@epita.fr>
21315
21316 * src/reduce.h: New file.
21317 Propagate its inclusion.
21318 * src/reduce.c: Topological sort and other formatting changes.
21319 (bool, TRUE, FALSE): Move their definition to...
21320 * src/system.h: here.
21321
21322 2000-10-02 Akim Demaille <akim@epita.fr>
21323
21324 * src/files.c: Formatting changes.
21325 (tryopen, tryclose, openfiles): Rename as...
21326 (xfopen, xfclose, open_files): this.
21327 (stringappend): static.
21328 * src/files.h: Complete the list of exported symbols.
21329 Propagate its use.
21330
21331 2000-10-02 Akim Demaille <akim@epita.fr>
21332
21333 * src/reader.h: New file.
21334 Propagate its use instead of tedious list of `extern' and
21335 prototypes.
21336 * src/reader.c: Formatting changes, topological sort,
21337 s/register//.
21338
21339 2000-10-02 Akim Demaille <akim@epita.fr>
21340
21341 * src/lex.h: Prototype `lex.c' exported functions.
21342 * src/reader.c: Adjust.
21343 * src/lex.c: Formatting changes.
21344 (safegetc): Rename as...
21345 (xgetc): this.
21346
21347 2000-10-02 Akim Demaille <akim@epita.fr>
21348
21349 * src/lalr.h: New file.
21350 Propagate its inclusion instead of prototypes and `extern'.
21351 * src/lalr.c: Formatting changes, topological sorting etc.
21352
21353 2000-10-02 Akim Demaille <akim@epita.fr>
21354
21355 * src/output.c (token_actions): Introduce a temporary array,
21356 YYDEFACT, that makes it possible for this function to use
21357 output_short_table.
21358
21359 2000-10-02 Akim Demaille <akim@epita.fr>
21360
21361 `user_toknums' is output as a `short[]' in `output.c', while it is
21362 defined as a `int[]' in `reader.c'. For consistency with the
21363 other output tables, `user_toknums' is now defined as a table of
21364 shorts.
21365
21366 * src/reader.c (user_toknums): Be a short table instead of an int
21367 table.
21368 Adjust dependencies.
21369
21370 Factor the short table outputs.
21371
21372 * src/output.c (output_short_table): New function.
21373 * src/output.c (output_gram, output_stos, output_rule_data)
21374 (output_base, output_table, output_check): Use it.
21375
21376 2000-10-02 Akim Demaille <akim@epita.fr>
21377
21378 * src/output.c (output): Topological sort of the functions, in
21379 order to get rid of the `static' prototypes.
21380 No longer use `register'.
21381 * src/output.h: New file.
21382 Propagate its inclusion in files explicitly prototyping functions
21383 from output.c.
21384
21385 2000-09-21 Akim Demaille <akim@epita.fr>
21386
21387 * src/atgeneral.m4: Update from Autoconf.
21388
21389 2000-09-21 Akim Demaille <akim@epita.fr>
21390
21391 * src/closure.h: New file.
21392 * src/closure.c: Formatting changes, topological sort over the
21393 functions, use of closure.h.
21394 (initialize_closure, finalize_closure): Rename as...
21395 (new_closure, free_closure): these. Adjust dependencies.
21396 * src/LR0.c: Formatting changes, topological sort, use of
21397 cloture.h.
21398 (initialize_states): Rename as...
21399 (new_states): this.
21400 * src/Makefile.am (noinst_HEADERS): Adjust.
21401
21402 2000-09-20 Akim Demaille <akim@epita.fr>
21403
21404 * src/acconfig.h: Don't protect config.h against multiple
21405 inclusion.
21406 Don't define PARAMS.
21407 * src/system.h: Define PARAMS.
21408 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
21409 purpose of config.h. system.h must not try to fix wrong
21410 definitions in config.h.
21411
21412 2000-09-20 Akim Demaille <akim@epita.fr>
21413
21414 * src/derives.h: New file.
21415 * src/main.c, src/derives.h: Use it.
21416 Formatting changes.
21417 * src/Makefile.am (noinst_HEADERS): Adjust.
21418
21419 2000-09-20 Akim Demaille <akim@epita.fr>
21420
21421 * tests/atgeneral.m4: Update from Autoconf.
21422 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
21423 (AT_CHECK_CALC): New macros.
21424 Use these macros to test bison with options `', `--raw',
21425 `--debug', `--yacc', `--yacc --debug'.
21426
21427 2000-09-19 Akim Demaille <akim@epita.fr>
21428
21429 * src/output.c: Formatting changes.
21430 * src/machine.h: Remove, leaving its contents in...
21431 * src/system.h: here.
21432 Include stdio.h.
21433 Adjust all dependencies on stdio.h and machine.h.
21434 * src/getargs.h: New file.
21435 Let all `extern' declarations about getargs.c be replaced with
21436 inclusion of `getargs.h'.
21437 * src/Makefile.am (noinst_HEADERS): Adjust.
21438
21439 * tests/calc.m4 (yyin): Be initialized in main, not on the global
21440 scope.
21441 (yyerror): Returns void, not int.
21442 * doc/bison.texinfo: Formatting changes.
21443
21444 2000-09-19 Akim Demaille <akim@epita.fr>
21445
21446 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
21447 portable.
21448
21449 2000-09-18 Akim Demaille <akim@epita.fr>
21450
21451 * configure.in: Append WARNING_CFLAGS to CFLAGS.
21452 * src/Makefile.am (INCLUDES): Don't.
21453 Be ready to fetch headers in lib/.
21454
21455 2000-09-18 Akim Demaille <akim@epita.fr>
21456
21457 * doc/bison.texinfo: Update the copyright.
21458 ANSIfy and GNUify the examples.
21459 Remove the old menu.
21460
21461 2000-09-18 Akim Demaille <akim@epita.fr>
21462
21463 First set of tests: use the `calc' example from the documentation.
21464
21465 * src/bison.s1 (yyparse): Condition the code using `yytname' which
21466 is defined only when YYDEBUG is.
21467 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
21468 * src/files.c (tryopen, tryclose): Formatting changes.
21469 Move to the top and be static.
21470 * src/reader.c (read_signed_integer): Likewise.
21471 * tests/calc.m4: New file.
21472 * Makefile.am, suite.m4: Adjust.
21473 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
21474
21475 2000-09-18 Akim Demaille <akim@epita.fr>
21476
21477 Add support for an Autotest test suite for Bison.
21478
21479 * m4/m4.m4, m4/atconfig.m4: New files.
21480 * m4/Makefile.am (EXTRA_DIST): Adjust.
21481 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
21482 files.
21483 * src/getargs.c: Display a more standard --version message.
21484 * src/reader.c (reader): Formatting changes.
21485 No longer depend upon VERSION_STRING.
21486 * configure.in: No longer use `dnl'.
21487 Set up the test suite and the new directory `tests/.
21488 (VERSION_STRING): Remove.
21489
21490 2000-04-14 Akim Demaille <akim@epita.fr>
21491
21492 * src/reader.c (copy_comment2): New function, same as former
21493 `copy_comment', but outputs into two FILE *.
21494 (copy_comment): Use it.
21495 (parse_union_decl): Use it.
21496 (get_type, parse_start_decl): Use the same `invalid' message.
21497 (parse_start_decl, parse_union_decl): Use the same `multiple'
21498 message.
21499 (parse_union_decl, copy_guard, copy_action): Use the same
21500 `unmatched' message.
21501 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
21502
21503 2000-03-31 Akim Demaille <akim@epita.fr>
21504
21505 * src/files.c (tryopen, tryclose): Move to the top.
21506 Be static.
21507
21508 2000-03-31 Akim Demaille <akim@epita.fr>
21509
21510 * src/main.c (main): Don't call `done', exit does it.
21511
21512 2000-03-31 Akim Demaille <akim@epita.fr>
21513
21514 * allocate.c: s/return (foo)/return foo/.
21515 * lalr.c: Likewise.
21516 * LR0.c: Likewise.
21517 * output.c: Likewise.
21518 * reader.c: Likewise.
21519 * symtab.c: Likewise.
21520 * vmsgetargs.c: Likewise.
21521
21522 2000-03-31 Akim Demaille <akim@epita.fr>
21523
21524 Clean up the error reporting functions.
21525
21526 * src/report.c: New file.
21527 * src/report.h: Likewise.
21528 * src/Makefile.am: Adjust.
21529 * m4/error.m4: New file.
21530 * m4/Makefile.am: Adjust.
21531 * configure.in (jm_PREREQ_ERROR): Call it.
21532 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
21533 Remove.
21534 (fatal, fatals): Remove. All callers use complain.c::fatal.
21535 (warn, warni, warns, warnss, warnss): Remove. All callers use
21536 complain.c::complain.
21537 (toomany): Remove, use fatal instead.
21538 * src/files.c (done): No argument, use complain_message_count.
21539 * src/main.c (main): Register `done' to `atexit'.
21540
21541 * src/getargs.c (usage): More `fputs', less `fprintf'.
21542
21543 2000-03-28 Akim Demaille <akim@epita.fr>
21544
21545 * lib/: New directory.
21546 * Makefile.am (SUBDIRS): Adjust.
21547 * configure.in: Adjust.
21548 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
21549 useless.
21550 * src/alloca.c: Moved to lib/.
21551 * src/getopt.c: Likewise.
21552 * src/getopt1.c: Likewise.
21553 * src/getopt.h: Likewise.
21554 * src/ansi2knr.c: Likewise.
21555 * src/ansi2knr.1: Likewise.
21556 * src/Makefile.am: Adjust.
21557 * lib/Makefile.am: New file.
21558
21559 2000-03-28 Akim Demaille <akim@epita.fr>
21560
21561 * src/getargs.c (usage): Refresh the help message.
21562
21563 2000-03-17 Akim Demaille <akim@epita.fr>
21564
21565 * src/getopt1.c: Updated from textutils 2.0e
21566 * src/getopt.c: Likewise.
21567 * src/getopt.h: Likewise.
21568
21569 2000-03-17 Akim Demaille <akim@epita.fr>
21570
21571 * src/Makefile.am (bison.simple): Fix the awk program: quote only
21572 the file name, not the whole `#line LINE FILE'.
21573
21574 2000-03-17 Akim Demaille <akim@epita.fr>
21575
21576 On syntax errors, report the token on which we choked.
21577
21578 * src/bison.s1 (yyparse): In the label yyerrlab, when
21579 YYERROR_VERBOSE, add yychar in msg.
21580
21581 2000-03-17 Akim Demaille <akim@epita.fr>
21582
21583 * src/reader.c (copy_at): New function.
21584 (copy_guard): Use it.
21585 (copy_action): Use it.
21586
21587 2000-03-17 Akim Demaille <akim@epita.fr>
21588
21589 Be kind to translators, save some useless translations.
21590
21591 * src/main.c (banner): New function.
21592 (fatal_banner): Use it.
21593 (warn_banner): Use it.
21594
21595 2000-03-17 Akim Demaille <akim@epita.fr>
21596
21597 * src/reader.c (copy_definition): Use copy_string and
21598 copy_comment. Removed now unused `match', `ended',
21599 `cplus_comment'.
21600 (copy_comment, copy_string): Moved, to be visible from
21601 copy_definition.
21602
21603 2000-03-17 Akim Demaille <akim@epita.fr>
21604
21605 * src/reader.c (copy_string): Declare `static inline'. No
21606 problems with inline, since it is checked by configure.
21607 (copy_comment): Likewise.
21608
21609 2000-03-17 Akim Demaille <akim@epita.fr>
21610
21611 * src/reader.c (packsymbols): Formatting changes.
21612
21613 2000-03-17 Akim Demaille <akim@epita.fr>
21614
21615 * src/reader.c (copy_comment): New function, factored out from:
21616 (copy_action): Use it. Removed now unused `match', `ended',
21617 `cplus_comment'.
21618 (copy_guard): Likewise.
21619
21620 2000-03-17 Akim Demaille <akim@epita.fr>
21621
21622 * src/reader.c (copy_string): New function, factored out from:
21623 (copy_action): Use it.
21624 (copy_guard): Likewise.
21625
21626 2000-03-17 Akim Demaille <akim@epita.fr>
21627
21628 Change the handling of @s so that they behave exactly like $s.
21629 There is now a pseudo variable @$ (readble and writable), location
21630 of the lhs of the rule (by default ranging from the location of
21631 the first symbol of the rhs, to the location of the last symbol,
21632 or, if the rhs is empty, YYLLOC).
21633
21634 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
21635 yyval.
21636 (yyparse): When providing a default semantic action, provide a
21637 default location action.
21638 (after the $): No longer change `*YYLSP', just stack YYLOC the
21639 same way you stack YYVAL.
21640 * src/reader.c (read_declarations): Use warns.
21641 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
21642 (copy_action, case '@'): Likewise.
21643 Use a standard error message, to save useless work from
21644 translators.
21645
21646 2000-03-17 Akim Demaille <akim@epita.fr>
21647
21648 * src/bison.s1: Formatting and cosmetics changes.
21649 * src/reader.c: Likewise.
21650 Update the Copyright notice.
21651
21652 2000-03-17 Akim Demaille <akim@epita.fr>
21653
21654 * src/bison.s1 (#line): All set to `#line' only, since the
21655 Makefile now handles them.
21656
21657 2000-03-16 Akim Demaille <akim@epita.fr>
21658
21659 * src/output.c (output_rule_data): Output the documentation of
21660 some of the tables.
21661 (Copyright notice): Update.
21662 Formatting changes.
21663
21664 2000-03-16 Akim Demaille <akim@epita.fr>
21665
21666 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
21667 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
21668 One `#if YYDEBUG' remains, since it uses variables which are
21669 defined only if `YYDEBUG != 0'.
21670
21671 2000-03-16 Akim Demaille <akim@epita.fr>
21672
21673 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
21674 and related variables so that the similarities are highlighted.
21675
21676 2000-03-16 Akim Demaille <akim@epita.fr>
21677
21678 * src/bison.s1: Properly indent CPP directives.
21679
21680 2000-03-16 Akim Demaille <akim@epita.fr>
21681
21682 * src/bison.s1: Properly indent the `alloca' CPP section.
21683
21684 2000-03-16 Akim Demaille <akim@epita.fr>
21685
21686 Do not hard code values of directories in `configure.in'.
21687 Update the `configure' tool chain.
21688
21689 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
21690 src/makefile.am.
21691 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
21692 (AC_OUTPUT): Add m4/Makefile.
21693 Bump to bison 1.28a, 1.29 has never been released.
21694 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
21695 handled via src/Makefile.am.
21696 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
21697 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
21698 autoheader.
21699 * Makefile.am (SUBDIRS): Add m4.
21700 (ACLOCAL_AM_FLAGS): New variable.
21701 (AUTOMAKE_OPTIONS): Add check-news.
21702 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
21703 the proper line number and file name.
21704 (DEFS): Propagate the location of bison library files and of the
21705 locale files.
21706 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
21707 builddir.
21708 * acinclude.m4: Remove, replaced by the directory m4.
21709 * m4/Makefile.am (EXTRA_DIST): New variable.
21710 * m4/gettext.m4: New file, from the fileutils.
21711 * m4/lcmessage.m4: Likewise
21712 * m4/progtest.m4: Likewise.
21713 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
21714
21715 2000-03-10 Akim Demaille <akim@epita.fr>
21716
21717 * src/closure.c:
21718 Formatting changes of various comments.
21719 Respect the GNU coding standards at various places.
21720 Don't use `_()' when no translation is needed.
21721
21722 1999-12-13 Jesse Thilo <jthilo@gnu.org>
21723
21724 * src/files.c:
21725 OS/2 honors TMPDIR environment variable.
21726
21727 1999-12-13 Jesse Thilo <jthilo@gnu.org>
21728
21729 * doc/bison.texinfo: Tweaked spelling and grammar.
21730 Updated ISBN.
21731 Removed reference to price of printed copy.
21732 Mention BISON_SIMPLE and BISON_HAIRY.
21733
21734 1999-12-13 Jesse Thilo <jthilo@gnu.org>
21735
21736 * configure.in, NEWS:
21737 Bison 1.29 released.
21738
21739 1999-10-27 Jesse Thilo <jthilo@gnu.org>
21740
21741 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
21742 Added reference card.
21743
21744 1999-07-26 Jesse Thilo <jthilo@gnu.org>
21745
21746 * po/ru.po: Added Russian translation.
21747
21748 1999-07-26 Jesse Thilo <jthilo@gnu.org>
21749
21750 * configure.in: Added Russian translation.
21751
21752 1999-07-06 Jesse Thilo <jthilo@gnu.org>
21753
21754 * configure.in, NEWS, README:
21755 Released version 1.28.
21756
21757 1999-06-14 Jesse Thilo <jthilo@gnu.org>
21758
21759 * src/system.h:
21760 Squashed redefinition warning on some systems.
21761
21762 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
21763 Have configure build version string instead of relying on ANSI string
21764 concatentation.
21765
21766 1999-06-14 Jesse Thilo <jthilo@gnu.org>
21767
21768 * po/POTFILES.in: Got rid of version.c.
21769
21770 1999-06-14 Jesse Thilo <jthilo@gnu.org>
21771
21772 * acconfig.h, configure.in:
21773 Have configure build version string instead of relying on ANSI string
21774 concatentation.
21775
21776 1999-06-08 Jesse Thilo <jthilo@gnu.org>
21777
21778 * doc/bison.1:
21779 Dropped mention of `+' for long-named options.
21780
21781 1999-05-30 Jesse Thilo <jthilo@gnu.org>
21782
21783 * src/files.c: Added <unistd.h> for unlink().
21784
21785 * src/Makefile.am, src/system.h:
21786 I18n fixes.
21787
21788 1999-05-30 Jesse Thilo <jthilo@gnu.org>
21789
21790 * README: Added a FAQ list.
21791
21792 * configure.in, acconfig.h:
21793 I18n fixes.
21794
21795 1999-05-30 Jesse Thilo <jthilo@gnu.org>
21796
21797 * doc/FAQ, doc/Makefile.am:
21798 Added a FAQ list.
21799
21800 1999-05-19 Jesse Thilo <jthilo@gnu.org>
21801
21802 * src/alloc.h, src/symtab.h, src/version.c:
21803 Protected inclusion of "config.h" with HAVE_CONFIG_H.
21804
21805 1999-04-18 Jesse Thilo <jthilo@gnu.org>
21806
21807 * src/.cvsignore, src/Makefile.am:
21808 Reorganized: sources in `src', documentation in `doc'.
21809
21810 * src/lex.c (literalchar):
21811 fixed the code for escaping double quotes (thanks
21812 Jonathan Czisny.)
21813
21814 1999-04-18 Jesse Thilo <jthilo@gnu.org>
21815
21816 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
21817 Adjusted paths to reflect directory reorganization.
21818
21819 1999-04-18 Jesse Thilo <jthilo@gnu.org>
21820
21821 * doc/.cvsignore, doc/Makefile.am:
21822 Reorganized: sources in `src', documentation in `doc'.
21823
21824 1999-04-18 Jesse Thilo <jthilo@gnu.org>
21825
21826 * configure.in:
21827 Updated AC_INIT file to reflect directory reorganization.
21828
21829 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
21830 Reorganized: sources in `src', documentation in `doc'.
21831
21832 1999-04-13 Jesse Thilo <jthilo@gnu.org>
21833
21834 * src/allocate.c:
21835 Don't declare calloc() and realloc() if not necessary.
21836
21837 1999-04-13 Jesse Thilo <jthilo@gnu.org>
21838
21839 * configure.in, acconfig.h, acinclude.m4:
21840 Don't declare calloc() and realloc() if not necessary.
21841
21842 1999-03-23 Jesse Thilo <jthilo@gnu.org>
21843
21844 * po/.cvsignore: Added i18n support.
21845
21846 1999-03-23 Jesse Thilo <jthilo@gnu.org>
21847
21848 * acconfig.h, configure.in, Makefile.am:
21849 Added i18n support.
21850
21851 1999-03-22 Jesse Thilo <jthilo@gnu.org>
21852
21853 * src/bison.s1: Fixed #line numbers.
21854
21855 1999-03-15 Jesse Thilo <jthilo@gnu.org>
21856
21857 * po/es.po, po/fr.po, po/nl.po, po/de.po:
21858 Added PO files from Translation Project.
21859
21860 1999-03-03 Jesse Thilo <jthilo@gnu.org>
21861
21862 * Makefile.am:
21863 Added support for non-ANSI compilers (ansi2knr).
21864
21865 1999-02-16 Jesse Thilo <jthilo@gnu.org>
21866
21867 * configure.in: Bumped version number to 1.27.
21868
21869 * Makefile.am:
21870 Added `bison.simple' to list of files removed by `make distclean'.
21871
21872 1999-02-12 Jesse Thilo <jthilo@gnu.org>
21873
21874 * src/files.c, src/files.h:
21875 Defined locations of parser files in config.h instead of Makefile.
21876
21877 1999-02-12 Jesse Thilo <jthilo@gnu.org>
21878
21879 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
21880 Defined locations of parser files in config.h instead of Makefile.
21881
21882 1999-02-09 Jesse Thilo <jthilo@gnu.org>
21883
21884 * Makefile.am:
21885 Removed inappropriate use of $< macro.
21886
21887 1999-02-05 Jesse Thilo <jthilo@gnu.org>
21888
21889 * po/Makefile.in.in, po/POTFILES.in:
21890 Add `po' directory skeleton.
21891
21892 1999-01-27 Jesse Thilo <jthilo@gnu.org>
21893
21894 * README: Document help-bison list.
21895
21896 * configure.in: Add check for mkstemp().
21897
21898 1999-01-20 Jesse Thilo <jthilo@gnu.org>
21899
21900 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
21901 Hush a few compiler warnings.
21902
21903 * src/files.c:
21904 Add tryclose(), which verifies that fclose was successful.
21905 Hush a couple of compiler warnings.
21906
21907 1999-01-20 Jesse Thilo <jthilo@gnu.org>
21908
21909 * Makefile.am, OChangeLog:
21910 ChangeLog is now automatically generated. Include the old version as
21911 OChangeLog.
21912
21913 1999-01-14 Jesse Thilo <jthilo@gnu.org>
21914
21915 * 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:
21916 Update FSF address.
21917
21918 1999-01-14 Jesse Thilo <jthilo@gnu.org>
21919
21920 * doc/bison.texinfo: Fix formatting glitch.
21921
21922 * doc/bison.texinfo: Update FSF address.
21923
21924 1999-01-14 Jesse Thilo <jthilo@gnu.org>
21925
21926 * acconfig.h: Update FSF address.
21927
21928 1999-01-08 Jesse Thilo <jthilo@gnu.org>
21929
21930 * src/system.h:
21931 Don't define PACKAGE here, since config.h defines it.
21932
21933 1998-12-30 Jesse Thilo <jthilo@gnu.org>
21934
21935 * src/reader.c: Update copyright date.
21936
21937 * src/main.c:
21938 Ditch sprintf to statically-sized buffers in fatal/warn functions in
21939 favor of output directly to stderr (avoids buffer overruns).
21940
21941 * src/reader.c: Some checks for premature EOF.
21942
21943 * 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:
21944 Use prototypes if the compiler understands them.
21945
21946 * src/files.c: Honor TMPDIR on Unix hosts.
21947 Use prototypes if the compiler understands them.
21948
21949 * src/reader.c:
21950 Fix a couple of buffer overrun bugs.
21951 Use prototypes if the compiler understands them.
21952
21953 * src/system.h: Include unistd.h and ctype.h.
21954 Use #ifdef instead of #if for NLS symbols.
21955
21956 1998-12-30 Jesse Thilo <jthilo@gnu.org>
21957
21958 * doc/bison.texinfo:
21959 Delete comment "consider using @set for edition number, etc..." since
21960 we now are doing so.
21961
21962 1998-12-30 Jesse Thilo <jthilo@gnu.org>
21963
21964 * configure.in:
21965 Use prototypes if the compiler understands them.
21966
21967 * NEWS: Document 1.26 highlights.
21968
21969 * Makefile.am: Require Automake 1.3 or later.
21970
21971 * acconfig.h:
21972 Use prototypes if the compiler understands them.
21973
21974 1998-12-29 Jesse Thilo <jthilo@gnu.org>
21975
21976 * src/version.c:
21977 Use VERSION symbol from automake for version number.
21978
21979 1998-12-29 Jesse Thilo <jthilo@gnu.org>
21980
21981 * acconfig.h, configure.in, version.cin:
21982 Use VERSION symbol from automake for version number.
21983
21984 1998-11-28 Jesse Thilo <jthilo@gnu.org>
21985
21986 * Makefile.am:
21987 Distribute original version of simple parser (bison.s1), not built
21988 version (bison.simple).
21989
21990 1998-11-28 Jesse Thilo <jthilo@gnu.org>
21991
21992 * doc/bison.texinfo: Add info dir entry.
21993
21994 * doc/bison.texinfo:
21995 Let automake put version number into documentation.
21996
21997 1998-11-26 Jesse Thilo <jthilo@gnu.org>
21998
21999 * src/bison.cld, src/build.com, src/vmshlp.mar:
22000 Add non-RCS files from /gd/gnu/bison.
22001
22002 1998-11-26 Jesse Thilo <jthilo@gnu.org>
22003
22004 * doc/bison.1:
22005 Document the BISON_HAIRY and BISON_SIMPLE variables.
22006
22007 1998-11-25 Jesse Thilo <jthilo@gnu.org>
22008
22009 * src/version.c: Build version.c automatically.
22010
22011 * src/reader.c:
22012 Fix token numbering (used to start at 258, not 257).
22013
22014 * src/system.h: Include config.h.
22015
22016 * src/getargs.c: Update bug report address.
22017
22018 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
22019 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
22020
22021 1998-11-25 Jesse Thilo <jthilo@gnu.org>
22022
22023 * Makefile.am:
22024 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
22025
22026 * configure.in, version.cin:
22027 Build version.c automatically.
22028
22029 * AUTHORS: Add AUTHORS file.
22030
22031 * README: Update bug report address.
22032
22033 * bison.simple:
22034 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
22035
22036 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
22037 Add automake stuff.
22038
22039 1998-11-25 Jesse Thilo <jthilo@gnu.org>
22040
22041 * doc/bison.texinfo: Clean up some formatting.
22042
22043 1998-05-05 Richard Stallman <rms@gnu.org>
22044
22045 * doc/bison.texinfo:
22046 Explain better why to make a pure parser.
22047
22048 1998-01-05 Richard Stallman <rms@gnu.org>
22049
22050 * src/files.c (openfiles):
22051 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
22052 find a temporary directory, if possible. Do not unlink files while
22053 they are open.
22054
22055 1997-08-25 Richard Stallman <rms@gnu.org>
22056
22057 * src/reader.c (stack_offset;):
22058 Change some warni to warns.
22059
22060 * src/lex.c (literalchar): Use warns, not warni.
22061
22062 1997-06-28 Richard Stallman <rms@gnu.org>
22063
22064 * src/bison.s1: Add a Bison version comment.
22065
22066 * src/main.c (fatal, warn, berror):
22067 Use program_name.
22068
22069 1997-06-28 Richard Stallman <rms@gnu.org>
22070
22071 * Makefile.in (bison_version): New variable.
22072 (dist): Use that variable.
22073 (bison.s1): Substitute the Bison version into bison.simple.
22074
22075 * bison.simple: Add a Bison version comment.
22076
22077 1997-06-18 Richard Stallman <rms@gnu.org>
22078
22079 * src/main.c (fatal, warn, berror):
22080 Make error messages standard.
22081 (toomany): Improve error message text.
22082
22083 * 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:
22084 new.h renamed to alloc.h.
22085
22086 1997-06-18 Richard Stallman <rms@gnu.org>
22087
22088 * Makefile.in: new.h renamed to alloc.h.
22089
22090 1997-05-24 Richard Stallman <rms@gnu.org>
22091
22092 * src/lex.c (literalchar):
22093 Fix the code for escaping \, " and '.
22094
22095 (lex): Avoid trouble when there are many chars
22096 to discard in a char literal with just several chars in it.
22097
22098 1997-05-17 Richard Stallman <rms@gnu.org>
22099
22100 * src/bison.s1:
22101 Use malloc, if using alloca is troublesome.
22102 (YYSTACK_USE_ALLOCA): New flag macro.
22103 Define it for some systems and compilers.
22104 (YYSTACK_ALLOC): New macro.
22105 (yyparse): Use YYSTACK_ALLOC to allocate stack.
22106 If it was malloc'd, free it.
22107
22108 1997-05-17 Richard Stallman <rms@gnu.org>
22109
22110 * bison.simple:
22111 Use malloc, if using alloca is troublesome.
22112 (YYSTACK_USE_ALLOCA): New flag macro.
22113 Define it for some systems and compilers.
22114 (YYSTACK_ALLOC): New macro.
22115 (yyparse): Use YYSTACK_ALLOC to allocate stack.
22116 If it was malloc'd, free it.
22117
22118 1997-04-23 Richard Stallman <rms@gnu.org>
22119
22120 * src/bison.s1:
22121 (alloca) [__hpux]: Always define as __builtin_alloca.
22122
22123 1997-04-23 Richard Stallman <rms@gnu.org>
22124
22125 * bison.simple:
22126 (alloca) [__hpux]: Always define as __builtin_alloca.
22127
22128 1997-04-22 Richard Stallman <rms@gnu.org>
22129
22130 * src/bison.s1:
22131 [__hpux]: Include alloca.h (right for HPUX 10)
22132 instead of declaring alloca (right for HPUX 9).
22133
22134 * src/bison.s1 (__yy_memcpy):
22135 Declare arg `count' as unsigned int.
22136 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
22137
22138 1997-04-22 Richard Stallman <rms@gnu.org>
22139
22140 * bison.simple:
22141 [__hpux]: Include alloca.h (right for HPUX 10)
22142 instead of declaring alloca (right for HPUX 9).
22143
22144 * bison.simple (__yy_memcpy):
22145 Declare arg `count' as unsigned int.
22146 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
22147
22148 1997-01-03 Richard Stallman <rms@gnu.org>
22149
22150 * src/allocate.c: [__STDC__ or _MSC_VER]:
22151 Declare calloc and realloc to return void *.
22152
22153 1997-01-02 Richard Stallman <rms@gnu.org>
22154
22155 * src/system.h:
22156 [_MSC_VER]: Include stdlib.h and process.h.
22157 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
22158
22159 * src/main.c (main): Return FAILURE as a value.
22160 (printable_version): Declare arg as int, not char.
22161
22162 1997-01-02 Richard Stallman <rms@gnu.org>
22163
22164 * Makefile.in (dist):
22165 Explicitly check for symlinks, and copy them.
22166
22167 1996-12-19 Richard Stallman <rms@gnu.org>
22168
22169 * src/files.c:
22170 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
22171
22172 1996-12-18 Paul Eggert <eggert@gnu.org>
22173
22174 * src/bison.s1 (yyparse):
22175 If __GNUC__ and YYPARSE_PARAM are both defined,
22176 declare yyparse to have a void * argument.
22177
22178 1996-12-18 Paul Eggert <eggert@gnu.org>
22179
22180 * bison.simple (yyparse):
22181 If __GNUC__ and YYPARSE_PARAM are both defined,
22182 declare yyparse to have a void * argument.
22183
22184 1996-12-17 Richard Stallman <rms@gnu.org>
22185
22186 * src/reduce.c (nbits): Add some casts.
22187
22188 1996-08-12 Richard Stallman <rms@gnu.org>
22189
22190 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
22191
22192 1996-08-12 Richard Stallman <rms@gnu.org>
22193
22194 * bison.simple: Test _MSDOS as well as _MSDOS_.
22195
22196 1996-07-31 Richard Stallman <rms@gnu.org>
22197
22198 * src/bison.s1:
22199 [__sun && __i386]: Include alloca.h.
22200
22201 1996-07-31 Richard Stallman <rms@gnu.org>
22202
22203 * bison.simple:
22204 [__sun && __i386]: Include alloca.h.
22205
22206 1996-07-30 Richard Stallman <rms@gnu.org>
22207
22208 * src/bison.s1: Comment change.
22209
22210 * src/bison.s1: Test _MSDOS_, not MSDOS.
22211
22212 1996-07-30 Richard Stallman <rms@gnu.org>
22213
22214 * bison.simple: Comment change.
22215
22216 * bison.simple: Test _MSDOS_, not MSDOS.
22217
22218 1996-06-01 Richard Stallman <rms@gnu.org>
22219
22220 * 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:
22221 Insert `_' macro around many string constants.
22222
22223 * src/main.c:
22224 Insert `_' macro around many string constants.
22225
22226 (main): Call setlocale, bindtextdomain and textdomain.
22227
22228 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
22229 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
22230 [ENABLE_NLS]: Include libintl.h.
22231 [ENABLE_NLS] (gettext): Define.
22232 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
22233 (N_, PACKAGE, LOCALEDIR): New macros.
22234
22235 1996-06-01 Richard Stallman <rms@gnu.org>
22236
22237 * POTFILES.in: New file.
22238
22239 * Makefile.in (allocate.o):
22240 Define target explicitly.
22241
22242 * Makefile.in (CFLAGS): Set to @CFLAGS@.
22243 (LDFLAGS): Set to @LDFLAGS@.
22244 (configure): Run autoconf only if preceding `cd' succeeds.
22245 (bison.s1): Redirect output to temporary file then move the
22246 temporary to the target, rather than redirecting directly to bison.s1.
22247 (clean): Remove config.status and config.log.
22248 (distclean): Don't remove config.status here.
22249
22250 1996-05-12 Richard Stallman <rms@gnu.org>
22251
22252 * src/bison.s1:
22253 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
22254
22255 1996-05-12 Richard Stallman <rms@gnu.org>
22256
22257 * bison.simple:
22258 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
22259
22260 1996-05-11 Richard Stallman <rms@gnu.org>
22261
22262 * src/bison.s1 (__yy_memcpy):
22263 Really reorder the args, as was supposedly done on Feb 14 1995.
22264 (yyparse): Calls changed accordingly.
22265
22266 1996-05-11 Richard Stallman <rms@gnu.org>
22267
22268 * Makefile.in (dist): Don't use $(srcdir).
22269
22270 * bison.simple (__yy_memcpy):
22271 Really reorder the args, as was supposedly done on Feb 14 1995.
22272 (yyparse): Calls changed accordingly.
22273
22274 1996-01-27 Richard Stallman <rms@gnu.org>
22275
22276 * src/output.c (output_rule_data):
22277 Test YYERROR_VERBOSE in the conditional
22278 around the definition of ttyname.
22279
22280 1995-12-29 Richard Stallman <rms@gnu.org>
22281
22282 * src/bison.s1:
22283 Fix line numbers in #line commands.
22284
22285 1995-12-29 Richard Stallman <rms@gnu.org>
22286
22287 * bison.simple:
22288 Fix line numbers in #line commands.
22289
22290 1995-12-27 Richard Stallman <rms@gnu.org>
22291
22292 * src/bison.s1 (YYPARSE_PARAM_DECL):
22293 In C++, make it always null.
22294 (YYPARSE_PARAM_ARG): New macro.
22295 (yyparse): Use YYPARSE_PARAM_ARG.
22296
22297 1995-12-27 Richard Stallman <rms@gnu.org>
22298
22299 * bison.simple (YYPARSE_PARAM_DECL):
22300 In C++, make it always null.
22301 (YYPARSE_PARAM_ARG): New macro.
22302 (yyparse): Use YYPARSE_PARAM_ARG.
22303
22304 1995-11-29 Richard Stallman <rms@gnu.org>
22305
22306 * doc/bison.texinfo:
22307 Describe literal string tokens, %raw, %no_lines, %token_table.
22308
22309 1995-11-29 Daniel Hagerty <hag@gnu.org>
22310
22311 * doc/bison.texinfo: Fixed update date
22312
22313 1995-10-16 Richard Stallman <rms@gnu.org>
22314
22315 * src/version.c: Version 1.25.
22316
22317 1995-10-16 Richard Stallman <rms@gnu.org>
22318
22319 * NEWS: *** empty log message ***
22320
22321 1995-10-16 Richard Stallman <rms@gnu.org>
22322
22323 * doc/bison.1, doc/bison.rnh:
22324 Add new options.
22325
22326 1995-10-15 Richard Stallman <rms@gnu.org>
22327
22328 * src/vmsgetargs.c, src/getargs.c:
22329 Added -n, -k, and -raw switches.
22330 (noparserflag, toknumflag, rawtoknumflag): New variables.
22331
22332 * src/symtab.h (SALIAS):
22333 New #define for adding aliases to %token.
22334 (struct bucket): Added `alias' field.
22335
22336 * src/reduce.c (reduce_grammar):
22337 Revise error message.
22338 (print_notices): Remove final `.' from error message.
22339
22340 * src/reader.c (reader_output_yylsp):
22341 New function.
22342 (readgram): Use `#if 0' around code that accepted %command
22343 inside grammar rules: The documentation doesn't allow it,
22344 and it will fail since the %command processors scan for the next %.
22345 (parse_token_decl): Extended the %token
22346 declaration to allow a multi-character symbol as an alias.
22347 (parse_thong_decl): New function.
22348 (read_declarations): Added %thong declarations.
22349 (read_declarations): Handle NOOP to deal with allowing
22350 % declarations as another means to specify the flags.
22351 (readgram): Allow %prec prior to semantics embedded in a rule.
22352 (skip_to_char, read_declarations, copy_definition)
22353 (parse_token_decl, parse_start_decl, parse_type_decl)
22354 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
22355 (get_type_name, copy_guard, copy_action, readgram)
22356 (get_type, packsymbols): Revised most error messages.
22357 Changed `fatal' to `warnxxx' to avoid aborting for error.
22358 Revised and use multiple warnxxx functions to avoid using VARARGS1.
22359 (read_declarations): Improve the error message for
22360 an invalid character. Do not abort.
22361 (read_declarations, copy_guard, copy_action): Use
22362 printable_version to avoid unprintable characters in printed output.
22363 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
22364 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
22365 Allow the type of a non-terminal can be given
22366 more than once, as long as all specifications give the same type.
22367
22368 * src/output.c:
22369 (output_headers, output_trailers, output, output_gram)
22370 (output_rule_data): Implement noparserflag variable.
22371 Implement toknumflag variable.
22372 (output): Call reader_output_yylsp to output LTYPESTR.
22373
22374 * src/main.c (main):
22375 If reader sees an error, don't process the grammar.
22376 (fatals): Updated to not use VARARGS1.
22377 (printable_version, int_to_string, warn, warni, warns, warnss)
22378 (warnsss): New error reporting functions. Avoid abort for error.
22379
22380 * src/lex.h:
22381 Added THONG and NOOP for alias processing.
22382 Added SETOPT for the new code that allows setting options with %flags.
22383
22384 * src/lex.c:
22385 Include getopt.h. Add some extern decls.
22386 (safegetc): New function to deal with EOF gracefully.
22387 (literalchar); new function to deal with reading \ escapes.
22388 (lex): Use literalchar.
22389 (lex): Implemented "..." tokens.
22390 (literalchar, lex, parse_percent_token): Made tokenbuffer
22391 always contain the token. This includes growing the token
22392 buffer while reading an integer.
22393 (parse_percent_token): Replaced if-else statement with percent_table.
22394 (parse_percent_token): Added % declarations as another
22395 way to specify the flags -n, -l, and -r. Also added hooks for
22396 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
22397 major changes to files.c.
22398 (lex) Retain in the incoming stream a character following
22399 an incorrect '/'.
22400 (skip_white_space, lex): Revised most error messages
22401 and changed fatal to warn to avoid aborting.
22402 (percent_table): Added %thong declarations.
22403
22404 * src/gram.h: Comment changes.
22405
22406 * src/files.c (openfiles, open_extra_files, done):
22407 Add faction flag
22408 and actfile file. Handle noparserflag. Both for -n switch.
22409
22410 * src/conflicts.c (resolve_sr_conflict):
22411 Remove use of alloca.
22412
22413 1995-06-01 Jim Meyering <meyering@gnu.org>
22414
22415 * doc/bison.texinfo: *** empty log message ***
22416
22417 1995-05-06 Richard Stallman <rms@gnu.org>
22418
22419 * src/bison.s1: Comment change.
22420
22421 1995-05-06 Richard Stallman <rms@gnu.org>
22422
22423 * bison.simple: Comment change.
22424
22425 1995-05-03 Richard Stallman <rms@gnu.org>
22426
22427 * src/version.c: Version now 1.24.
22428
22429 * src/bison.s1: Change distribution terms.
22430
22431 * src/version.c: Version now 1.23.
22432
22433 1995-05-03 Richard Stallman <rms@gnu.org>
22434
22435 * doc/bison.texinfo:
22436 Rewrite "Conditions for Using Bison".
22437 Update version to 1.24.
22438
22439 1995-05-03 Richard Stallman <rms@gnu.org>
22440
22441 * bison.simple: Change distribution terms.
22442
22443 1995-02-23 Richard Stallman <rms@gnu.org>
22444
22445 * src/files.c: Test __VMS_POSIX as well as VMS.
22446
22447 1995-02-14 Jim Meyering <meyering@gnu.org>
22448
22449 * src/bison.s1 (__yy_memcpy):
22450 Renamed from __yy_bcopy to avoid
22451 confusion. Reverse FROM and TO arguments to be consistent with
22452 those of memcpy.
22453
22454 1995-02-14 Jim Meyering <meyering@gnu.org>
22455
22456 * bison.simple (__yy_memcpy):
22457 Renamed from __yy_bcopy to avoid
22458 confusion. Reverse FROM and TO arguments to be consistent with
22459 those of memcpy.
22460
22461 1994-11-10 David J. MacKenzie <djm@gnu.org>
22462
22463 * NEWS: reformat
22464
22465 * NEWS: New file.
22466
22467 * Makefile.in (DISTFILES): Include NEWS.
22468
22469 * Makefile.in (DISTFILES):
22470 Include install-sh, not install.sh.
22471
22472 * configure.in: Update to Autoconf v2 macro names.
22473
22474 1994-10-05 David J. MacKenzie <djm@gnu.org>
22475
22476 * Makefile.in: fix typo
22477
22478 * Makefile.in (prefix, exec_prefix):
22479 Let configure set them.
22480
22481 1994-09-28 David J. MacKenzie <djm@gnu.org>
22482
22483 * Makefile.in: Set datadir to $(prefix)/share.
22484
22485 1994-09-15 Richard Stallman <rms@gnu.org>
22486
22487 * src/bison.s1:
22488 Update copyright notice and GPL version.
22489
22490 1994-09-15 Richard Stallman <rms@gnu.org>
22491
22492 * bison.simple:
22493 Update copyright notice and GPL version.
22494
22495 1994-07-12 Richard Stallman <rms@gnu.org>
22496
22497 * src/reduce.c, src/reader.c:
22498 entered into RCS
22499
22500 1994-05-05 David J. MacKenzie <djm@gnu.org>
22501
22502 * Makefile.in: entered into RCS
22503
22504 1994-03-26 Richard Stallman <rms@gnu.org>
22505
22506 * src/bison.s1: entered into RCS
22507
22508 1994-03-26 Richard Stallman <rms@gnu.org>
22509
22510 * bison.simple: entered into RCS
22511
22512 1994-03-25 Richard Stallman <rms@gnu.org>
22513
22514 * src/main.c: entered into RCS
22515
22516 1994-03-24 Richard Stallman <rms@gnu.org>
22517
22518 * src/conflicts.c: entered into RCS
22519
22520 1994-01-02 Richard Stallman <rms@gnu.org>
22521
22522 * Makefile.in: *** empty log message ***
22523
22524 1993-11-21 Richard Stallman <rms@gnu.org>
22525
22526 * src/bison.s1: *** empty log message ***
22527
22528 1993-11-21 Richard Stallman <rms@gnu.org>
22529
22530 * doc/bison.texinfo: entered into RCS
22531
22532 * doc/bison.texinfo: *** empty log message ***
22533
22534 1993-11-21 Richard Stallman <rms@gnu.org>
22535
22536 * bison.simple: *** empty log message ***
22537
22538 1993-10-25 David J. MacKenzie <djm@gnu.org>
22539
22540 * doc/bison.texinfo: *** empty log message ***
22541
22542 1993-10-19 Richard Stallman <rms@gnu.org>
22543
22544 * src/bison.s1: *** empty log message ***
22545
22546 1993-10-19 Richard Stallman <rms@gnu.org>
22547
22548 * bison.simple: *** empty log message ***
22549
22550 1993-10-14 Richard Stallman <rms@gnu.org>
22551
22552 * src/bison.s1: *** empty log message ***
22553
22554 1993-10-14 Richard Stallman <rms@gnu.org>
22555
22556 * bison.simple: *** empty log message ***
22557
22558 1993-09-14 David J. MacKenzie <djm@gnu.org>
22559
22560 * doc/bison.texinfo: *** empty log message ***
22561
22562 1993-09-13 Noah Friedman <friedman@gnu.org>
22563
22564 * Makefile.in: *** empty log message ***
22565
22566 1993-09-10 Richard Stallman <rms@gnu.org>
22567
22568 * src/conflicts.c: *** empty log message ***
22569
22570 * src/system.h: entered into RCS
22571
22572 1993-09-10 Richard Stallman <rms@gnu.org>
22573
22574 * doc/bison.1: entered into RCS
22575
22576 1993-09-06 Noah Friedman <friedman@gnu.org>
22577
22578 * src/version.c: entered into RCS
22579
22580 1993-09-06 Noah Friedman <friedman@gnu.org>
22581
22582 * Makefile.in: *** empty log message ***
22583
22584 1993-07-30 David J. MacKenzie <djm@gnu.org>
22585
22586 * Makefile.in: *** empty log message ***
22587
22588 1993-07-24 Richard Stallman <rms@gnu.org>
22589
22590 * src/bison.s1: *** empty log message ***
22591
22592 1993-07-24 Richard Stallman <rms@gnu.org>
22593
22594 * bison.simple: *** empty log message ***
22595
22596 1993-07-08 David J. MacKenzie <djm@gnu.org>
22597
22598 * Makefile.in: *** empty log message ***
22599
22600 1993-07-04 Richard Stallman <rms@gnu.org>
22601
22602 * src/bison.s1: *** empty log message ***
22603
22604 1993-07-04 Richard Stallman <rms@gnu.org>
22605
22606 * bison.simple: *** empty log message ***
22607
22608 1993-06-26 David J. MacKenzie <djm@gnu.org>
22609
22610 * src/getargs.c: entered into RCS
22611
22612 1993-06-26 David J. MacKenzie <djm@gnu.org>
22613
22614 * doc/bison.texinfo: *** empty log message ***
22615
22616 * doc/bison.1: New file.
22617
22618 1993-06-25 Richard Stallman <rms@gnu.org>
22619
22620 * src/getargs.c: New file.
22621
22622 1993-06-16 Richard Stallman <rms@gnu.org>
22623
22624 * src/bison.s1: *** empty log message ***
22625
22626 1993-06-16 Richard Stallman <rms@gnu.org>
22627
22628 * bison.simple: *** empty log message ***
22629
22630 1993-06-03 Richard Stallman <rms@gnu.org>
22631
22632 * src/bison.s1: New file.
22633
22634 1993-06-03 Richard Stallman <rms@gnu.org>
22635
22636 * doc/bison.texinfo: *** empty log message ***
22637
22638 1993-06-03 Richard Stallman <rms@gnu.org>
22639
22640 * bison.simple: New file.
22641
22642 1993-05-19 Richard Stallman <rms@gnu.org>
22643
22644 * doc/bison.texinfo: New file.
22645
22646 1993-05-07 Noah Friedman <friedman@gnu.org>
22647
22648 * Makefile.in: *** empty log message ***
22649
22650 1993-04-28 Noah Friedman <friedman@gnu.org>
22651
22652 * src/reader.c: *** empty log message ***
22653
22654 1993-04-23 Noah Friedman <friedman@gnu.org>
22655
22656 * src/alloc.h: entered into RCS
22657
22658 1993-04-20 David J. MacKenzie <djm@gnu.org>
22659
22660 * src/version.c: *** empty log message ***
22661
22662 * src/files.c, src/allocate.c:
22663 entered into RCS
22664
22665 * src/reader.c: *** empty log message ***
22666
22667 * src/lex.c: entered into RCS
22668
22669 * src/conflicts.c: New file.
22670
22671 * src/symtab.c: entered into RCS
22672
22673 * src/alloc.h: New file.
22674
22675 * src/LR0.c: entered into RCS
22676
22677 1993-04-18 Noah Friedman <friedman@gnu.org>
22678
22679 * src/reader.c: New file.
22680
22681 * src/version.c: *** empty log message ***
22682
22683 1993-04-18 Noah Friedman <friedman@gnu.org>
22684
22685 * Makefile.in: *** empty log message ***
22686
22687 1993-04-17 Noah Friedman <friedman@gnu.org>
22688
22689 * Makefile.in: *** empty log message ***
22690
22691 1993-04-15 Richard Stallman <rms@gnu.org>
22692
22693 * src/main.c, src/files.c:
22694 New file.
22695
22696 1993-04-15 Noah Friedman <friedman@gnu.org>
22697
22698 * configure.in: entered into RCS
22699
22700 * configure.in: *** empty log message ***
22701
22702 * configure.in: New file.
22703
22704 1993-04-14 Richard Stallman <rms@gnu.org>
22705
22706 * Makefile.in: New file.
22707
22708 1993-04-13 Richard Stallman <rms@gnu.org>
22709
22710 * src/version.c: New file.
22711
22712 1993-03-25 Richard Stallman <rms@gnu.org>
22713
22714 * src/output.c: entered into RCS
22715
22716 1992-09-25 Richard Stallman <rms@gnu.org>
22717
22718 * configure.bat: entered into RCS
22719
22720 1992-06-22 Richard Stallman <rms@gnu.org>
22721
22722 * src/vmsgetargs.c: entered into RCS
22723
22724 1992-06-22 Richard Stallman <rms@gnu.org>
22725
22726 * doc/bison.rnh: entered into RCS
22727
22728 1992-04-20 David J. MacKenzie <djm@gnu.org>
22729
22730 * README: entered into RCS
22731
22732 1992-01-22 Richard Stallman <rms@gnu.org>
22733
22734 * src/machine.h: entered into RCS
22735
22736 1991-12-21 Richard Stallman <rms@gnu.org>
22737
22738 * src/lalr.c, src/closure.c:
22739 entered into RCS
22740
22741 1991-12-20 Richard Stallman <rms@gnu.org>
22742
22743 * src/state.h: entered into RCS
22744
22745 1991-12-18 Richard Stallman <rms@gnu.org>
22746
22747 * src/print.c, src/nullable.c, src/derives.c:
22748 entered into RCS
22749
22750 1991-11-03 David J. MacKenzie <djm@gnu.org>
22751
22752 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
22753 entered into RCS
22754
22755 1988-09-09 Richard Stallman <rms@gnu.org>
22756
22757 * src/bison.hairy: entered into RCS
22758
22759 1987-12-16 Richard Stallman <rms@gnu.org>
22760
22761 * REFERENCES: entered into RCS
22762
22763
22764 -----
22765
22766 Copyright (C) 1987, 1988, 1991, 1992, 1993, 1994, 1995, 1996,
22767 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
22768 Free Software Foundation, Inc.
22769
22770 Copying and distribution of this file, with or without
22771 modification, are permitted provided the copyright notice and this
22772 notice are preserved.