]> git.saurik.com Git - bison.git/blob - ChangeLog
Fix last warning from --enable-gcc-warnings.
[bison.git] / ChangeLog
1 2008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
2
3 Fix last warning from --enable-gcc-warnings.
4 * src/getargs.c (getargs): Don't assign const address to non-const
5 pointer.
6
7 2008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
8
9 Don't let maintainer-*-check targets force a version update.
10 * cfg.mk (_is-dist-target): Implement. maintainer-check* was already
11 handled.
12
13 2008-11-17 Di-an Jan <dianj@freeshell.org>
14
15 * doc/bison.texinfo: Synchronize ``Detail Node Listing''.
16 Align menus. Adjust word wrapping. Use node names for menu names.
17 (Examples): Don't abbreviate node names.
18 (LocalWords): Remove abbreviations.
19 (Copying): Make description a sentence.
20 (Java Action Features): Remove period to match the rest of menu.
21
22 2008-11-17 Di-an Jan <dianj@freeshell.org>
23
24 Handles several --enable-gcc-warnings.
25 * src/getargs.c (command_line_location): Set parameters to void.
26 * src/output.c (symbol_type_name_cmp): Make static.
27 (symbols_by_type_name): Set parameters to void.
28 (symbol_definitions_output): Remove unused parameter. Rename as...
29 (prepare_symbol_definitions): this.
30 (muscles_output): Move symbol_definitions_output to...
31 (output): here as prepare_symbol_definitions.
32 * tests/c++.at (AT_CHECK_VARIANTS): Remove unused parameters of main.
33 (AT_CHECK_NAMESPACE): Make unused parameter lloc unnamed.
34
35 2008-11-17 Di-an Jan <dianj@freeshell.org>
36
37 * tests/c++.at (AT_CHECK_VARIANTS): Fixes tests 198-202.
38 Use AT_DATA_GRAMMAR instead of AT_DATA for compiled tests.
39
40 2008-11-16 Akim Demaille <demaille@gostai.com>
41
42 Add missing $(EXEEXT).
43 * doc/local.mk ($(CROSS_OPTIONS_TEXI)): The target is
44 "src/bison$(EXEEXT)".
45 Reported by Di-an Jan.
46
47 2008-11-15 Akim Demaille <demaille@gostai.com>
48
49 * TODO: Update.
50
51 2008-11-15 Akim Demaille <demaille@gostai.com>
52
53 Formatting changes.
54 * tests/input.at: here.
55
56 2008-11-15 Akim Demaille <demaille@gostai.com>
57
58 Remove duplicate header inclusion.
59 * src/LR0.c: here.
60
61 2008-11-15 Akim Demaille <demaille@gostai.com>
62
63 * src/parse-gram.h, src/parse-gram.c: Regen.
64
65 2008-11-15 Akim Demaille <demaille@gostai.com>
66
67 Support parametric types.
68
69 There are two issues to handle: first scanning nested angle
70 bracket pairs to support types such as std::pair< std::string,
71 std::list<std::string> > >.
72
73 Another issue is to address idiosyncracies of C++: do not glue two
74 closing angle brackets together (otherwise it's operator>>), and
75 avoid sticking blindly a TYPE to the opening <, as it can result
76 in '<:' which is a digraph for '['.
77
78 * src/scan-gram.l (brace_level): Rename as...
79 (nesting): this.
80 (SC_TAG): New.
81 Implement support for complex tags.
82 (tag): Accept
83 , but not <.
84 * data/lalr1.cc (b4_symbol_value, b4_symbol_value_template)
85 (b4_symbol_variant): Leave space around types as parameters.
86 * examples/variant.yy: Use nested template types and leading ::.
87 * src/parse-gram.y (TYPE, TYPE_TAG_ANY, TYPE_TAG_NONE, type.opt):
88 Rename as...
89 (TAG, TAG_ANY, TAG_NONE, tag.opt): these.
90 * tests/c++.at: Test parametric types.
91
92 2008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
93
94 Test token.prefix.
95 This is not sufficient, but we test at least that the make_SYMBOL
96 interface is not affected by token.prefix. A more general test
97 will be implemented when the support of token.prefix is generalized
98 to more skeletons.
99
100 * tests/c++.at: One more variant test, using token.prefix.
101
102 2008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
103
104 Test the make_TOKEN interface.
105 * tests/c++.at (AT_CHECK_VARIANTS): Require and use locations.
106 Factor the common code in yylex.
107 Use it to test "%define lex_symbol".
108
109 2008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
110
111 Formatting change.
112
113 2008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
114
115 Simplify code for variants bench marks.
116 * etc/bench.pl.in (&generate_grammar_list): Define and use
117 location_type.
118 Factor the common code in yylex.
119
120 2008-11-15 Akim Demaille <demaille@gostai.com>
121
122 Better error message.
123 * bootstrap (find_tool): Fix the error message.
124
125 2008-11-15 Akim Demaille <demaille@gostai.com>
126
127 Update variant.yy to newest interface.
128 * examples/variant.yy: Define lex_symbol.
129 Adjust.
130
131 2008-11-15 Akim Demaille <demaille@gostai.com>
132
133 Don't use locations in variant.yy.
134 * examples/variant.yy: Adjust to not using locations.
135
136 2008-11-15 Akim Demaille <demaille@gostai.com>
137
138 Comment changes.
139 * data/local.mk, etc/local.mk, examples/local.mk: Use Automake
140 comments for the license.
141
142 2008-11-15 Akim Demaille <demaille@gostai.com>
143
144 Remove tests/Makefile.am.
145 * tests/Makefile.am: Rename as...
146 * tests/local.mk: this.
147 * Makefile.am, configure.ac: Adjust.
148 * Makefile.am (DISTCLEANFILES): Define.
149 (maintainer-check, maintainer-xml-check, maintainer-push-check):
150 Remove, we no longer need to bounce to the real targets.
151
152 2008-11-15 Akim Demaille <demaille@gostai.com>
153
154 Comment changes.
155
156 2008-11-15 Akim Demaille <demaille@gostai.com>
157
158 djgpp/local.mk.
159 * Makefile.am (EXTRA_DIST): Move djgpp related part to...
160 * djgpp/local.mk: this new file.
161
162 2008-11-15 Akim Demaille <demaille@gostai.com>
163
164 Remove doc/Makefile.am.
165 * doc/Makefile.am: Rename as...
166 * doc/local.mk: this.
167 Adjust paths
168 * Makefile.am, configure.ac: Adjust.
169 * Makefile.am (MOSTLYCLEANFILES): New.
170 * src/local.mk: Adjust.
171
172 2008-11-15 Akim Demaille <demaille@gostai.com>
173
174 Move sc_tight_scope into maint.mk.
175 It does not work, and I don't know how it was supposed to work: it
176 seems to be looking for sources in the build tree. I just moved
177 it at a better place, fixing it is still required.
178
179 * src/local.mk (echo): Remove.
180 (sc_tight_scope): Move to...
181 * maint.mk: here.
182
183 2008-11-15 Akim Demaille <demaille@gostai.com>
184
185 Regen.
186 * src/parse-gram.h, src/parse-gram.h: Regen.
187
188 2008-11-15 Akim Demaille <demaille@gostai.com>
189
190 Remove src/Makefile.am.
191 * src/Makefile.am: Rename as...
192 * src/local.mk: this.
193 Prefix all the paths with src/.
194 (AUTOMAKE_OPTIONS): Build object files in the sub dirs.
195 (AM_CPPFLAGS): Find find in builddir/src.
196 (YACC): Move the flags into...
197 (AM_YFLAGS): here.
198 * maint.mk (sc_tight_scope): Disable.
199 It used to bounce to the version in src/Makefile.am which is now
200 part of this very Makefile.
201 * Makefile.am, configure.ac: Adjust.
202 * src/scan-code-c.c, src/scan-code.l: We can no longer rely on
203 include "..." to find files "here": we are no longer in src/, so
204 qualify the includes with src/.
205 * doc/Makefile.am (PREPATH): No longer include the top_builddir
206 prefix.
207 (.x.1): Adjust to be able to create src/foo from the top level
208 Makefile, instead of going bounce to src/Makefile the creation of
209 foo.
210
211 2008-11-15 Akim Demaille <demaille@gostai.com>
212
213 Remove useless variable.
214 * doc/Makefile.am (srcsrcdir): Remove.
215
216 2008-11-15 Akim Demaille <demaille@gostai.com>
217
218 Remove data/Makefile.am.
219 * data/Makefile.am: Rename as...
220 * data/local.mk: this.
221 Adjust paths.
222 * Makefile.am, configure.ac: Adjust.
223
224 2008-11-15 Akim Demaille <demaille@gostai.com>
225
226 Remove etc/Makefile.am.
227 * etc/Makefile.am: Rename as...
228 * etc/local.mk: this.
229 Adjust.
230 * Makefile.am, configure.ac: Adjust.
231
232 2008-11-15 Akim Demaille <demaille@gostai.com>
233
234 Remove examples/local.mk.
235 examples/calc++/Makefile.am might be interesting to keep as is, since
236 it is an example in itself.
237
238 * examples/Makefile.am: Rename as...
239 * examples/local.mk: this.
240 Adjust.
241 * Makefile.am, configure.ac: Adjust.
242
243 2008-11-15 Akim Demaille <demaille@gostai.com>
244
245 Remove build-aux/Makefile.am.
246 Recursive Makefiles are really way too slow, let's get rid of some of
247 them.
248
249 * build-aux/Makefile.am: Rename as...
250 * build-aux/local.mk: this.
251 Adjust paths.
252 * Makefile.am, configure.ac: Adjust.
253
254 2008-11-15 Akim Demaille <demaille@gostai.com>
255
256 Provide convenience constructors for locations and positions.
257 * data/location.cc (position::position): Accept file, line and
258 column as arguments with default values.
259 Always qualify initial line and column literals as unsigned.
260 (location::location): Provide convenience constructors.
261
262 2008-11-15 Akim Demaille <demaille@gostai.com>
263
264 Instead of using make_symbol<TOK_FOO>, generate make_FOO for each
265 token type.
266 Using template buys us nothing, and makes it uselessly complex to
267 construct a symbol. Besides, it could not be generalized to other
268 languages, while make_FOO would work in C/Java etc.
269
270 * data/lalr1.cc (b4_symbol_): New.
271 (b4_symbol): Use it.
272 (b4_symbol_constructor_declaration_)
273 (b4_symbol_constructor_definition_): Instead of generating
274 specializations of an overloaded template function, just generate
275 several functions whose names are forged from the token names
276 without the token.prefix.
277 (b4_symbol_constructor_declarations): Generate them for all the
278 symbols, not just by class of symbol type, now that instead of
279 specializing a function template by the token, we generate a
280 function named after the token.
281 (b4_symbol_constructor_specialization_)
282 (b4_symbol_constructor_specializations): Remove.
283 * etc/bench.pl.in: Adjust to this new API.
284
285 2008-11-13 Akim Demaille <demaille@gostai.com>
286
287 %define token.prefix.
288 Provide a means to add a prefix to the name of the tokens as
289 output in the generated files. Because of name clashes, it is
290 good to have such a prefix such as TOK_ that protects from names
291 such as EOF, FILE etc. But it clutters the grammar itself.
292
293 * data/bison.m4 (token.prefix): Empty by default.
294 * data/c.m4 (b4_token_enum, b4_token_define): Use it.
295 * data/lalr1.cc (b4_symbol): Ditto.
296
297 2008-11-13 Akim Demaille <demaille@gostai.com>
298
299 Compute at M4 time some of the subtractions.
300 * data/lalr1.cc (b4_subtract): New.
301 (b4_rhs_data): Use it.
302
303 2008-11-13 Akim Demaille <demaille@gostai.com>
304
305 symbol::token.
306 This allows the user to get the type of a token returned by yylex.
307
308 * data/lalr1.cc (symbol::token): New.
309 (yytoknum_): Define when %define lex_symbol, independently of
310 %debug.
311 (yytoken_number_): Move into...
312 (symbol::token): here, since that's the only use.
313 The other one is YYPRINT which was not officially supported
314 by lalr1.cc, and anyway it did not work since YYPRINT uses this
315 array under a different name (yytoknum).
316
317 2008-11-13 Akim Demaille <demaille@gostai.com>
318
319 YYERRCODE.
320 * TODO (YYERRCODE): Mention the case of $undef.
321
322 2008-11-13 Akim Demaille <demaille@gostai.com>
323
324 TODO: YYPRINT.
325 * TODO (YYPRINT): New.
326
327 2008-11-13 Akim Demaille <demaille@gostai.com>
328
329 Comment changes.
330 * data/lalr1.cc, data/yacc.c: Fix the description of the
331 yytranslate and yytoknum tables.
332
333 2008-11-13 Akim Demaille <demaille@gostai.com>
334
335 Define make_symbol in the header.
336 To reach good performances these functions should be inlined (yet
337 this is to measure precisely). To this end they must be available
338 to the caller.
339
340 * data/lalr1.cc (b4_symbol_constructor_definition_): Qualify
341 location_type with the class name.
342 Since will now be output in the header, declare "inline".
343 No longer use b4_symbol_constructor_specializations, but
344 b4_symbol_constructor_definitions in the header.
345 Don't call it in the *.cc file.
346
347 2008-11-13 Akim Demaille <demaille@gostai.com>
348
349 Define yytranslate in the header for lex_symbol.
350 * data/lalr1.cc: Move the invocation of b4_yytranslate_definition
351 into the header file when using %define lex_symbol.
352 (yytranslate_): Declare inline.
353
354 2008-11-13 Akim Demaille <demaille@gostai.com>
355
356 Define the constructors of symbol_type in
357 b4_symbol_constructor_definitions.
358 The constructors are called by the make_symbol functions, which a
359 forthcoming patch will move elsewhere. Hence the interest of
360 putting them together.
361
362 The stack_symbol_type does not need to be moved, it is used only
363 by the parser.
364
365 * data/lalr1.cc: Move symbol_type and symbol_base_type
366 constructors into...
367 (b4_symbol_constructor_definitions): here.
368 Adjust.
369
370 2008-11-13 Akim Demaille <demaille@gostai.com>
371
372 Make it easier to move the definition of yytranslate_.
373 Forthcoming changes will make it possible to use yytranslate_
374 from outside the parser implementation file.
375
376 * data/lalr1.cc (b4_yytranslate_definition): New.
377 Use it.
378
379 2008-11-13 Akim Demaille <demaille@gostai.com>
380
381 Remove useless class specification.
382 * data/lalr1.cc (b4_symbol_constructor_specialization_): No need
383 to refer to the class name to use a type defined by the class for
384 arguments of member functions.
385
386 2008-11-13 Akim Demaille <demaille@gostai.com>
387
388 Finer input type for yytranslate.
389 This patch is debatable: the tradition expects yylex to return an int
390 which happens to correspond to token_number (which is an enum). This
391 allows for instance to return characters (such as '*' etc.). But this
392 goes against the stronger typing I am trying to have with the new
393 lex interface which return a symbol_type. So in this case, feed
394 yytranslate_ with a token_type.
395
396 * data/lalr1.cc (yytranslate_): When in %define lex-symbol,
397 expect a token_type.
398
399 2008-11-13 Akim Demaille <demaille@gostai.com>
400
401 Honor lex-params in %define lex_symbol mode.
402 * data/lalr1.cc: Use b4_lex_param.
403
404 2008-11-13 Akim Demaille <demaille@gostai.com>
405
406 Simplify names.
407 * src/output.c (symbol_definitions_output): Rename symbol
408 attributes type_name and has_type_name as type and has_type.
409 * data/lalr1.cc: Adjust uses.
410
411 2008-11-13 Akim Demaille <demaille@gostai.com>
412
413 Use b4_type_names for the union type.
414 The union used to compute the size of the variant used to iterate
415 over the type of all the symbols, with a lot of redundancy. Now
416 iterate over the lists of symbols having the same type-name.
417
418 * data/lalr1.cc (b4_char_sizeof_): New.
419 (b4_char_sizeof): Use it.
420 Adjust to be called with a list of numbers instead of a single
421 number.
422 Adjust its caller for new-line issues.
423
424 2008-11-13 Akim Demaille <demaille@gostai.com>
425
426 Define the "identifier" of a symbol.
427 Symbols may have several string representations, for instance if
428 they have an alias. What I call its "id" is a string that can be
429 used as an identifier. May not exist.
430
431 Currently the symbols which have the "tag_is_id" flag set are
432 those that don't have an alias. Look harder for the id.
433
434 * src/output.c (is_identifier): Move to...
435 * src/symtab.c (is_identifier): here.
436 * src/symtab.h, src/symtab.c (symbol_id_get): New.
437 * src/output.c (symbol_definitions_output): Use it to define "id"
438 and "has_id".
439 Remove the definition of "tag_is_id".
440 * data/lalr1.cc: Use the "id" and "has_id" whereever "tag" and
441 "tag_is_id" were used to produce code.
442 We still use "tag" for documentation.
443
444 2008-11-11 Akim Demaille <demaille@gostai.com>
445
446 Locations are no longer required by lalr1.cc.
447 * data/lalr1.cc (_b4_args, b4_args): New.
448 Adjust all uses of locations to make them optional.
449 * tests/c++.at (AT_CHECK_VARIANTS): No longer use the locations.
450 (AT_CHECK_NAMESPACE): Check the use of locations.
451 * tests/calc.at (_AT_DATA_CALC_Y): Adjust to be usable with or
452 without locations with lalr1.cc.
453 Test these cases.
454 * tests/output.at: Check lalr1.cc with and without location
455 support.
456 * tests/regression.at (_AT_DATA_EXPECT2_Y, _AT_DATA_DANCER_Y):
457 Don't use locations.
458
459 2008-11-11 Akim Demaille <demaille@gostai.com>
460
461 AT_FULL_COMPILE.
462 * tests/local.at (AT_FULL_COMPILE): New.
463 * tests/actions.at, tests/calc.at, tests/regression.at: Use it.
464
465 2008-11-11 Akim Demaille <demaille@gostai.com>
466
467 Support parens in calc++.
468 * doc/bison.texinfo (Calc++ Scanner, Calc++ Parser): Support parens.
469 * examples/calc++/test (run): Check the expected output.
470 Adjust callers.
471 Check parens too.
472
473 2008-11-11 Akim Demaille <demaille@gostai.com>
474
475 Simplify lalr1.cc since %defines is mandatory.
476 * data/lalr1.cc: Remove useless calls to b4_defines_if.
477
478 2008-11-11 Akim Demaille <demaille@gostai.com>
479
480 TODO: yyfmt.
481 * TODO (yysyntax_error): New item.
482
483 2008-11-11 Akim Demaille <demaille@gostai.com>
484
485 Prefer M4 to CPP.
486 * data/lalr1.cc: Use b4_error_verbose_if instead of #if
487 YYERROR_VERBOSE.
488
489 2008-11-11 Akim Demaille <demaille@gostai.com>
490
491 Support i18n of the parse error messages.
492 * TODO (lalr1.cc/I18n): Remove.
493 * data/lalr1.cc (yysyntax_error_): Support the translation of the
494 error messages, as done in yacc.c.
495 Stay within the yy* pseudo namespace.
496
497 2008-11-11 Akim Demaille <demaille@gostai.com>
498
499 More TODO.
500 * TODO (single stack, yysyntax_error): New.
501
502 2008-11-11 Akim Demaille <demaille@gostai.com>
503
504 Make it possible to return a symbol_type from yylex.
505 * data/lalr1.cc (b4_lex_symbol_if): New.
506 (parse): When lex_symbol is defined, expected yylex to return the
507 complete lookahead.
508 * etc/bench.pl.in (generate_grammar_list): Extend to support this
509 yylex interface.
510 (bench_variant_parser): Exercise it.
511
512 2008-11-11 Akim Demaille <demaille@gostai.com>
513
514 Remove useless bench case.
515 * etc/bench.pl.in (bench_variant_parser): VARIANT_DESTROY is
516 no longer used.
517
518 2008-11-11 Akim Demaille <demaille@gostai.com>
519
520 Improve display of directives.
521 * etc/bench.pl.in (parse_term): Don't add useless eol.
522
523 2008-11-11 Akim Demaille <demaille@gostai.com>
524
525 Use string_cast in the bench.
526 * etc/bench.pl.in (generate_grammar_list): Define and use
527 string_cast.
528
529 2008-11-11 Akim Demaille <demaille@gostai.com>
530
531 Replace yychar with a Boolean.
532 * data/lalr1.cc (parse::yychar): Replace by...
533 (parse::yyempty): this.
534
535 2008-11-11 Akim Demaille <demaille@gostai.com>
536
537 Factor the tables.
538 * TODO: New item.
539
540 2008-11-11 Akim Demaille <demaille@gostai.com>
541
542 Let yytranslate handle the eof case.
543 * data/lalr1.cc (yytranslate_): Handle the EOF case.
544 Adjust callers.
545 No longer expect yychar to be equal to yyeof_, rather, test the
546 lookahead's (translated) kind.
547
548 2008-11-11 Akim Demaille <demaille@gostai.com>
549
550 yychar cannot be empty in yyerrlab.
551 * TODO (yychar == yyempty_): New.
552 * data/lalr1.cc: Remove the handling of this case.
553 This eases forthcoming changes related to yychar and yytranslate.
554
555 2008-11-11 Akim Demaille <demaille@gostai.com>
556
557 Bench: syntactic sugar for %define/#define.
558 * etc/bench.pl.in (parse_dirs): Support %d and #d with arguments.
559 (&bench_push_parser, bench_variant_parser): Use this feature.
560 (&eat): New.
561 Use it.
562
563 2008-11-11 Akim Demaille <demaille@gostai.com>
564
565 Less memory pressure on the "list" bench.
566 * etc/bench.pl.in (generate_grammar_list): Do not accumulate all
567 the values, to limit memory pressure.
568
569 2008-11-11 Akim Demaille <demaille@gostai.com>
570
571 Introduce make_symbol.
572 make_symbol provides a means to construct a full symbol (kind,
573 value, location) in a single shot. It is meant to be a Symbol
574 constructor, parameterized by the symbol kind so that overloading
575 would prevent incorrect kind/value pairs. Unfortunately
576 parameterized constructors do not work well in C++ (unless the
577 parameter also appears as an argument, which is not acceptable),
578 hence the use of a function instead of a constructor.
579
580 * data/lalr1.cc (b4_symbol_constructor_declaration_)
581 (b4_symbol_constructor_declarations)
582 (b4_symbol_constructor_specialization_)
583 (b4_symbol_constructor_specializations)
584 (b4_symbol_constructor_definition_)
585 (b4_symbol_constructor_definitions): New.
586 Use them where appropriate to generate declaration, declaration of
587 the specializations, and implementations of the templated
588 overloaded function "make_symbol".
589 (variant::variant): Always define a default ctor.
590 Also provide a copy ctor.
591 (symbol_base_type, symbol_type): New ctor overloads for value-less
592 symbols.
593 (symbol_type): Now public, so that functions such as yylex can use
594 it.
595
596 2008-11-11 Akim Demaille <demaille@gostai.com>
597
598 Inform m4 whether a tag is a valid id.
599 * src/output.c (is_identifier): New.
600 (symbol_definitions_output): Use it to define tag_is_id.
601 But maybe this should be done at m4 level?
602
603 2008-11-11 Akim Demaille <demaille@gostai.com>
604
605 Test 214 was failing: it greps with a pattern containing [ ]*
606 which obviously meant to catch spaces and tabs, but contained only
607 spaces. Tabulations in sources are a nuisance, so to simplify the
608 matter, get rid of all the tabulations in the Java sources. The
609 other skeletons will be treated equally later.
610
611 * data/java.m4, data/lalr1.java: Untabify.
612 * tests/java.at: Simplify AT_CHECK_JAVA_GREP invocations:
613 tabulations are no longer generated.
614
615 2008-11-11 Paolo Bonzini <bonzini@gnu.org>
616
617 * bootstrap.conf: Replace m4/warning.m4 with warnings module.
618 * configure.ac: Adjust usage.
619 * lib/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
620 * src/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
621 * tests/atlocal.in: Replace $(WARNING_*FLAGS) with $(WARN_*FLAGS).
622
623 2008-11-10 Di-an Jan <dianj@freeshell.org>
624
625 Workaround Java's ``code too large'' problem for parser tables
626 in most cases, by using one function per initialization.
627 * data/java.m4 (b4_typed_parser_table, b4_integral_parser_table): New.
628 * data/lalr1.java (yypact_, yydefact_, yypgoto_, yydefgoto_,
629 yytable_, yycheck_, yystos_, yytoken_number_, yyr1_, yyr2_, yyrhs_
630 yyprhs_, yyrline_, yytranslate_table_): Use b4_integral_parser_table.
631 (yytname_): Use b4_typed_parser_table.
632 * doc/bison.texinfo (Java Bison Interface): Add note on Java's
633 ``code too large'' error.
634
635 2008-11-10 Di-an Jan <dianj@freeshell.org>
636
637 * NEWS: Document them.
638
639 General Java skeleton improvements.
640 * configure.ac (gt_JAVACOMP): Request target of 1.4, which allows
641 using gcj < 4.3 in the testsuite, according to comments in
642 gnulib/m4/javacomp.m4.
643 * data/java.m4 (stype, parser_class_name, lex_throws, throws,
644 location_type, position_type): Remove extraneous brackets from
645 b4_percent_define_default.
646 (b4_lex_param, b4_parse_param): Remove extraneous brackets from
647 m4_define and m4_define_default.
648 * data/lalr1.java (b4_pre_prologue): Change to b4_user_post_prologue,
649 which marks the end of user code with appropriate syncline, like all
650 the other skeletons.
651 (b4_user_post_prologue): Add. Don't silently drop.
652 (yylex): Remove.
653 (parse): Inline yylex.
654 * doc/bison.texinfo (bisonVersion, bisonSkeleton): Document.
655 (%{...%}): Fix typo of %code imports.
656 * tests/java.at (AT_JAVA_COMPILE): Add "java" keyword.
657
658 Support annotations on parser class with %define annotations.
659 * data/lalr1.java (annotations): Add to parser class modifier.
660 * doc/bison.texinfo (Java Parser Interface): Document
661 %define annotations.
662 (Java Declarations Summary): Document %define annotations.
663 * tests/java.at (Java parser class modifiers): Test annotations.
664
665 Do not generate code for %error-verbose unless requested.
666 * data/lalr1.java (errorVerbose): Rename to yyErrorVerbose.
667 Make private. Make conditional on %error-verbose.
668 (getErrorVerbose, setErrorVerbose): New.
669 (yytnamerr_): Make conditional on %error-verbose.
670 (yysyntax_error): Make some code conditional on %error-verbose.
671 * doc/bison.texinfo (Java Bison Interface): Remove the parts
672 about %error-verbose having no effect.
673 (getErrorVerbose, setErrorVerbose): Document.
674
675 Move constants for token names to Lexer interface.
676 * data/lalr1.java (Lexer): Move EOF, b4_token_enums(b4_tokens) here.
677 * data/java.m4 (b4_token_enum): Indent for move to Lexer interface.
678 (parse): Qualify EOF to Lexer.EOF.
679 * doc/bison.texinfo (Java Parser Interface): Move documentation of
680 EOF and token names to Java Lexer Interface.
681 * tests/java.at (_AT_DATA_JAVA_CALC_Y): Remove Calc qualifier.
682
683 Make yyerror public.
684 * data/lalr1.java (Lexer.yyerror): Use longer parameter name.
685 (yyerror): Change to public. Add Javadoc comments. Use longer
686 parameter names. Make the body rather than the declarator
687 conditional on %locations.
688 * doc/bison.texinfo (yyerror): Document. Don't mark as protected.
689
690 Allow user to add code to the constructor with %code init.
691 * data/java.m4 (b4_init_throws): New, for %define init_throws.
692 * data/lalr1.java (YYParser.YYParser): Add b4_init_throws.
693 Add %code init to the front of the constructor body.
694 * doc/bison.texinfo (YYParser.YYParser): Document %code init
695 and %define init_throws.
696 (Java Declarations Summary): Document %code init and
697 %define init_throws.
698 * tests/java.at (Java %parse-param and %lex-param): Adjust grep.
699 (Java constructor init and init_throws): Add tests.
700
701 2008-11-10 Akim Demaille <demaille@gostai.com>
702
703 Update TODO.
704 * TODO (-D): is implemented.
705 (associativity): Same precedence must have the same associativity.
706 For instance, how can a * b / c be parsed if * is %left and / is
707 %right?
708 (YYERRORCODE, YYFAIL, YYBACKUP): New.
709
710 2008-11-10 Akim Demaille <demaille@gostai.com>
711
712 Formatting changes.
713
714 2008-11-10 Akim Demaille <demaille@gostai.com>
715
716 More information about the symbols.
717 * src/output.c (type_names_output): Document all the symbols,
718 including those that don't have a type-name.
719 (symbol_definitions_output): Define "is_token" and
720 "has_type_name".
721 * data/lalr1.cc (b4_type_action_): Skip symbols that have an empty
722 type-name, now that they are defined too in b4_type_names.
723
724 2008-11-10 Akim Demaille <demaille@gostai.com>
725
726 Regen.
727
728 2008-11-10 Akim Demaille <demaille@gostai.com>
729
730 Make parser::yytranslate static.
731 Small speedup (1%) on the list grammar. And makes yytranslate_
732 available in non member functions.
733
734 * data/lalr1.cc (yytranslate_): Does not need to be a instance
735 function.
736
737 2008-11-10 Akim Demaille <demaille@gostai.com>
738
739 Avoid trailing spaces.
740 * data/c.m4: b4_comment(TEXT): Don't indent empty lines.
741 * data/lalr1.cc: Don't indent before rule and symbol actions, as
742 they can be empty, and anyway this incorrectly indents the first
743 action.
744
745 2008-11-10 Akim Demaille <demaille@gostai.com>
746
747 Comment changes.
748
749 2008-11-10 Akim Demaille <demaille@gostai.com>
750
751 Use "enum" for integral constants.
752 This is just nicer to read, I observed no speedup.
753
754 * data/lalr1.cc (yyeof_, yylast_, yynnts_, yyempty_, yyfinal_)
755 (yterror_, yyerrcode_, yyntokens_): Define as members of an enum.
756 (yyuser_token_number_max_, yyundef_token_): Move into...
757 (yytranslate_): here.
758
759 2008-11-10 Akim Demaille <demaille@gostai.com>
760
761 Shortcuts in bench directives.
762 * etc/bench.pl.in (parse_dirs): New.
763 Use it.
764 (bench_variant_parser, bench_fusion_parser): Use %s and %d.
765 Create the benches in "benches/".
766
767 2008-11-10 Akim Demaille <demaille@gostai.com>
768
769 Formatting changes.
770 * data/lalr1.cc: here.
771
772 2008-11-10 Akim Demaille <demaille@gostai.com>
773
774 Adjust verbose message to using emacs.
775 * etc/bench.pl.in: Inform compilation-mode when we change the
776 directory.
777 (generate_grammar_list): Recognize %define "variant" in addition
778 to %define variant.
779
780 2008-11-10 Akim Demaille <demaille@gostai.com>
781
782 Classify symbols by type-name.
783 * src/uniqstr.h (UNIQSTR_CMP): New.
784 * src/output.c (symbol_type_name_cmp, symbols_by_type_name)
785 (type_names_output): New.
786 (muscles_output): Use it.
787 * data/lalr1.cc (b4_symbol_action_): Remove.
788 (b4_symbol_case_, b4_type_action_): New.
789 Adjust uses of b4_symbol_action_ to use b4_type_action_.
790
791 2008-11-10 Akim Demaille <demaille@gostai.com>
792
793 Change the handling of the symbols in the skeletons.
794 Before we were using tables which lines were the symbols and which
795 columns were things like number, tag, type-name etc. It is was
796 difficult to extend: each time a column was added, all the numbers had
797 to be updated (you asked for colon $2, not for "tag"). Also, it was
798 hard to filter these tables when only a subset of the symbols (say the
799 tokens, or the nterms, or the tokens that have and external number
800 *and* a type-name) was of interest.
801
802 Now instead of monolithic tables, we define one macro per cell. For
803 instance "b4_symbol(0, tag)" is a macro name which contents is
804 self-decriptive. The macro "b4_symbol" provides easier access to
805 these cells.
806
807 * src/output.c (type_names_output): Remove.
808 (symbol_numbers_output, symbol_definitions_output): New.
809 (muscles_output): Call them.
810 (prepare_symbols): Define b4_symbols_number.
811
812 2008-11-10 Akim Demaille <demaille@gostai.com>
813
814 --trace=muscles
815 * src/getargs.h, src/getargs.c (trace_muscle): New.
816 (trace_types, trace_args): Support it.
817 * src/output.c (output_skeleton): Use it.
818
819 2008-11-10 Akim Demaille <demaille@gostai.com>
820
821 muscles_output.
822 * src/output.c (muscles_output): New, extracted from...
823 (output_skeleton): here.
824 Adjust.
825
826 2008-11-10 Akim Demaille <demaille@gostai.com>
827
828 Formatting changes.
829
830 2008-11-10 Akim Demaille <demaille@gostai.com>
831
832 Update the variant example.
833 * examples/variant.yy: Formatting changes.
834 One stage build.
835
836 2008-11-10 Akim Demaille <demaille@gostai.com>
837
838 Support constructor with an argument.
839 This improves the "list" bench by 2%.
840
841 * data/lalr1.cc (variant::build): Add an overloaded version with
842 an argument.
843 * tests/c++.at (AT_CHECK_VARIANT): Check it.
844
845 2008-11-10 Akim Demaille <demaille@gostai.com>
846
847 Test variants.
848 * tests/c++.at (AT_CHECK_VARIANTS): New.
849 Use it with and without %define assert.
850
851 2008-11-10 Akim Demaille <demaille@gostai.com>
852
853 Add %precedence support.
854 Unfortunately it is not possible to reuse the %prec directive. This
855 is because to please POSIX, we do not require to end the rules with a
856 semicolon. As a result,
857
858 foo: bar %prec baz
859
860 is ambiguous: either a rule which precedence is that of baz, or a rule,
861 and then a declaration of the precedence of the token baz.
862
863 * doc/bison.texinfo: Document %precedence.
864 (Precedence Only): New.
865 * src/assoc.h, src/assoc.c (precedence_assoc): New.
866 * src/conflicts.c (resolve_sr_conflict): Support it.
867 * src/scan-gram.l, src/parse-gram.y (%precedence): New token.
868 Parse it.
869 * tests/calc.at: Use %precedence for NEG.
870 * tests/conflicts.at (%precedence does not suffice)
871 (%precedence suffices): New tests.
872
873 2008-11-09 Akim Demaille <demaille@gostai.com>
874
875 Make benches in a sub dirs.
876 * etc/bench.pl.in ($dir): New.
877 Use it.
878 Check the use of constructors with an argument.
879 (bench_variant_parser): Fix.
880
881 2008-11-09 Akim Demaille <demaille@gostai.com>
882
883 fix eof condition
884
885 2008-11-09 Akim Demaille <demaille@gostai.com>
886
887 Fix --help.
888
889 2008-11-09 Akim Demaille <demaille@gostai.com>
890
891 Require the generation of parse-gram.output.
892 * src/Makefile.am (YACC): Pass --report=all.
893
894 2008-11-09 Akim Demaille <demaille@gostai.com>
895
896 Formatting changes.
897
898 2008-11-09 Akim Demaille <demaille@gostai.com>
899
900 Update TODO.
901 * TODO: Remove obsolete items.
902 Update others.
903
904 2008-11-09 Akim Demaille <demaille@gostai.com>
905
906 Enhance bench.pl.
907 * etc/bench.pl.in (parse, parse_expr, parse_term, parse_fact)
908 (@token, $grammar, $bench): New.
909 (generate_grammar_variant): Rename as...
910 (generate_grammar_list): this.
911 (generate_grammar): Adjust.
912 (bench_grammar): Rename as...
913 (bench): this.
914 Use it in the various bench-marking routines.
915 (-b, -g): New options.
916
917 2008-11-09 Akim Demaille <demaille@gostai.com>
918
919 Use a static hierarchy for symbols in the C++ parser.
920 * data/lalr1.cc (symbol_base_type, symbol_type)
921 (stack_symbol_type): Make it a static hierarchy.
922 Adjust dependencies.
923
924 2008-11-09 Akim Demaille <demaille@gostai.com>
925
926 bench.pl -d, --directive.
927 * etc/bench.pl.in (@directive): New.
928 (&bench_grammar): Use it.
929 (&bench_list_grammar): New, to provide access to the "variant"
930 grammar.
931 Use it.
932 (getopts): Support -d, --directive.
933
934 2008-11-09 Akim Demaille <demaille@gostai.com>
935
936 Use inline for small operations.
937 * data/lalr1.cc (symbol_base_type, symbol_type)
938 (stack_symbol_type): Declare constructor and other operations as
939 inline.
940 (yy_destroy_): Inline.
941
942 2008-11-09 Akim Demaille <demaille@gostai.com>
943
944 Introduce a hierarchy for symbols.
945 * data/lalr1.cc (symbol_base_type, symbol_type): New.
946 (data_type): Rename as...
947 (stack_symbol_type): this.
948 Derive from symbol_base_type.
949 (yy_symbol_value_print_): Merge into...
950 (yy_symbol_print_): this.
951 Rename as...
952 (yy_print_): this.
953 (yydestruct_): Rename as...
954 (yy_destroy_): this.
955 (b4_symbols_actions, YY_SYMBOL_PRINT): Adjust.
956 (parser::parse): yyla is now of symbol_type.
957 Use its type member instead of yytoken.
958
959 2008-11-09 Akim Demaille <demaille@gostai.com>
960
961 Rename data_type and stack_symbol_type.
962 * data/lalr1.cc (data_type): Rename as...
963 (stack_symbol_type): this.
964
965 2008-11-09 Akim Demaille <demaille@gostai.com>
966
967 Handle semantic value and location together.
968 * data/lalr1.cc (b4_symbol_actions): Bounce $$ and @$ to
969 yydata.value and yydata.location.
970 (yy_symbol_value_print_, yy_symbol_print_, yydestruct_)
971 (YY_SYMBOL_PRINT): Now take semantic value and location as a
972 single arg.
973 Adjust all callers.
974 (yydestruct_): New overload for a stack symbol.
975
976 2008-11-09 Akim Demaille <demaille@gostai.com>
977
978 Push a complete symbol, not connected parts.
979 * data/lalr1.cc (yypush_): Take a data_type&, not disconnected
980 state, value and location.
981 Adjust callers.
982
983 2008-11-09 Akim Demaille <demaille@gostai.com>
984
985 Agregate yylval and yylloc.
986 * data/lalr1.cc (parser::yylval, parser::yylloc): Replace by...
987 (parser::yyla): this.
988
989 2008-11-09 Akim Demaille <demaille@gostai.com>
990
991 Rely on the state stack to display reduction traces.
992 To display rhs symbols before a reduction, we used information
993 about the rule reduced, which required the tables yyrhs and
994 yyprhs. Now use rely only on the state stack to get the same
995 information.
996
997 * data/lalr1.cc (b4_rhs_data, b4_rhs_state): New.
998 Use them.
999 (parser::yyrhs_, parser::yyprhs_): Remove.
1000 (parser::yy_reduce_print_): Use the state stack.
1001
1002 2008-11-09 Akim Demaille <demaille@gostai.com>
1003
1004 Fuse yyval and yyloc into yylhs.
1005 * data/lalr1.cc (b4_lhs_value, b4_lhs_location): Adjust to using
1006 yylhs.
1007 (parse): Replace yyval and yyloc with yylhs.value and
1008 yylhs.location.
1009 After a user action, compute yylhs.state earlier.
1010 (yyerrlab1): Do not play tricks with yylhs.location, rather, use a
1011 fresh error_token.
1012
1013 2008-11-09 Di-an Jan <dianj@freeshell.org>
1014
1015 Remove unused variable.
1016 * src/output.c (type_names_output): Remove unused variable sep.
1017
1018 2008-11-09 Paolo Bonzini <bonzini@gnu.org>
1019
1020 Change tests/output.at quoting.
1021 * tests/output.at (AT_CHECK_OUTPUT): Use conventional m4 quoting when
1022 expanding arguments.
1023
1024 2008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
1025
1026 Don't add a semicolon to actions for %skeleton or %language.
1027 It breaks Java test cases as reported by Akim Demaille.
1028 * src/scan-code.l: Implement.
1029
1030 2008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
1031
1032 Clean up %skeleton and %language priority implementation.
1033 * src/getargs.c (skeleton_prio): Use default_prio rather than 2, and
1034 remove static qualifier because others will soon need to see it.
1035 (language_prio): Likewise.
1036 (getargs): Use command_line_prio rather than 0.
1037 * src/getargs.h (command_line_prio, grammar_prio, default_prio): New
1038 enum fields.
1039 (skeleton_prio): Extern it.
1040 (language_prio): Extern it.
1041 * src/parse-gram.y: Use grammar_prio rather than 1.
1042
1043 2008-11-07 Akim Demaille <demaille@gostai.com>
1044
1045 Moving push traces into yypush_.
1046 * data/lalr1.cc (yypush_): Now takes a optional trace message.
1047 Adjust all uses.
1048
1049 2008-11-07 Akim Demaille <demaille@gostai.com>
1050
1051 The single-stack C++ parser is now the standard one.
1052 * data/lalr1.cc: Rename as...
1053 * data/lalr1-split.cc: this.
1054 * data/lalr1-fusion.cc: Rename as...
1055 * data/lalr1.cc: this.
1056 * etc/bench.pl.in: Adjust.
1057
1058 2008-11-07 Akim Demaille <demaille@gostai.com>
1059
1060 Avoid empty-if warnings.
1061 Reported by Quentin Hocquet.
1062
1063 * data/lalr1-fusion.cc (YY_SYMBOL_PRINT, YY_REDUCE_PRINT)
1064 (YY_STACK_PRINT): Provide some contents even when !YYDEBUG.
1065
1066 2008-11-07 Akim Demaille <demaille@gostai.com>
1067
1068 Pass command line location to skeleton_arg and language_argmatch.
1069 * src/getargs.h, src/getargs.c (skeleton_arg, language_argmatch):
1070 The location argument is now mandatory.
1071 Adjust all dependencies.
1072 (getargs): Use command_line_location.
1073
1074 2008-11-07 Akim Demaille <demaille@gostai.com>
1075
1076 -D, --define.
1077 * src/getargs.c (usage): Document -D.
1078 Fix help string for --locations.
1079 (command_line_location): New.
1080 (short_options, long_options, getargs): Support -D, --define.
1081 (getargs): Move -d support at the right place.
1082 * doc/bison.texinfo (Bison Options): Update.
1083 * tests/input.at (%define, --define): New.
1084
1085 2008-11-07 Akim Demaille <demaille@gostai.com>
1086
1087 Initialize the muscle table before parsing the command line.
1088 * src/getargs.c (quotearg.h, muscle_tab.h): Include.
1089 (getargs): Define file_name.
1090 * src/main.c (main): Initialize muscle_tab before calling
1091 getargs.
1092 * src/muscle_tab.c (muscle_init): No longer define file_name, as
1093 its value is not available yet.
1094
1095 2008-11-07 Akim Demaille <demaille@gostai.com>
1096
1097 Locations without columns for command line arguments.
1098 * src/location.c (location_print): Don't display negative columns.
1099 * src/location.h: Document this.
1100
1101 2008-11-07 Akim Demaille <demaille@gostai.com>
1102
1103 Fix --help.
1104 * src/getargs.c (usage): Fix help string for -W.
1105
1106 2008-11-07 Akim Demaille <demaille@gostai.com>
1107
1108 Handle more general types of option arguments.
1109 * build-aux/cross-options.pl: The argument ends at the first
1110 space, not the first non-symbol character.
1111 Use @var for each word appearing the argument description.
1112
1113 2008-11-07 Akim Demaille <demaille@gostai.com>
1114
1115 Destroy the variants that remain on the stack in case of error.
1116 * data/lalr1-fusion.cc (yydestruct_): Invoke the variant's
1117 destructor.
1118 Display the value only if yymsg is nonnull.
1119 (yyreduce): Invoke yydestruct_ when popping lhs symbols.
1120
1121 2008-11-07 Akim Demaille <demaille@gostai.com>
1122
1123 Add "%define assert" to variants.
1124 This is used to help the user catch cases where some value gets
1125 ovewritten by a new one. This should not happen, as this will
1126 probably leak.
1127
1128 Unfortunately this uncovered a bug in the C++ parser itself: the
1129 lookahead value was not destroyed between two calls to yylex. For
1130 instance if the previous lookahead was a std::string, and then an int,
1131 then the value of the std::string was correctly taken (i.e., the
1132 lookahead was now an empty string), but std::string structure itself
1133 was not reclaimed.
1134
1135 This is now done in variant::build(other&) (which is used to take the
1136 value of the lookahead): other is not only stolen from its value, it
1137 is also destroyed. This incurs a new performance penalty of a few
1138 percent, and union becomes faster again.
1139
1140 * data/lalr1-fusion.cc (variant::build(other&)): Destroy other.
1141 (b4_variant_if): New.
1142 (variant::built): New.
1143 Use it whereever the status of the variant changes.
1144 * etc/bench.pl.in: Check the penalty of %define assert.
1145
1146 2008-11-07 Akim Demaille <demaille@gostai.com>
1147
1148 Use "%define variant" in bench.pl.
1149 * etc/bench.pl.in: No longer use the pseudo directive %variants,
1150 just use %define variants.
1151
1152 2008-11-07 Akim Demaille <demaille@gostai.com>
1153
1154 Regen.
1155 * src/parse-gram.h, src/parse-gram.c: Regen.
1156
1157 2008-11-04 Joel E. Denny <jdenny@ces.clemson.edu>
1158
1159 Fix user actions without a trailing semicolon.
1160 Reported by Sergei Steshenko at
1161 <http://lists.gnu.org/archive/html/bug-bison/2008-11/msg00001.html>.
1162 * THANKS (Sergei Steshenko): Add.
1163 * src/scan-code.l (SC_RULE_ACTION): Fix it.
1164 * tests/regression.at (Fix user actions without a trailing semicolon):
1165 New test case.
1166
1167 2008-11-04 Akim Demaille <demaille@gostai.com>
1168
1169 Use b4_copyright_years.
1170 * data/yacc.c (b4_copyright_years): New.
1171 Fix its value according to the comments in the file.
1172 Use it and undefine it.
1173
1174 2008-11-04 Akim Demaille <demaille@gostai.com>
1175
1176 Formatting changes.
1177 * data/lalr1-fusion.cc, src/parse-gram.y: here.
1178
1179 2008-11-04 Akim Demaille <demaille@gostai.com>
1180
1181 Formatting changes.
1182 * data/lalr1-fusion.cc: here.
1183
1184 2008-11-04 Akim Demaille <demaille@gostai.com>
1185
1186 Use strict on bench.pl.
1187 * etc/bench.pl.in (&run, &generate_grammar): New.
1188 Rename the grammar generating functions for consistency.
1189 Change the interface so that the list of benches to run is passed
1190 as (optionless) arguments.
1191 (&compile): Use &run.
1192
1193 2008-11-04 Akim Demaille <demaille@gostai.com>
1194
1195 Remove spurious initial empty lines.
1196 * data/glr.c, data/glr.cc, data/lalr1.cc, data/lalr1.java,
1197 * data/yacc.c: End the @output lines with an @.
1198
1199 2008-11-04 Akim Demaille <demaille@gostai.com>
1200
1201 Improve the display of sizes.
1202 * etc/bench.p.in: Higher precision.
1203 Sort by decreasing size.
1204
1205 2008-11-04 Akim Demaille <demaille@gostai.com>
1206
1207 Don't memcpy C++ structures.
1208 * data/lalr1-fusion.cc (b4_symbol_variant): Adjust additional
1209 arguments.
1210 (variant::build): New overload for
1211 copy-construction-that-destroys.
1212 (variant::swap): New.
1213 (parser::yypush_): Use it in variant mode.
1214
1215 2008-11-04 Akim Demaille <demaille@gostai.com>
1216
1217 Better defaults for bench.pl.
1218 * etc/bench.pl.in ($verbose, $cflags, $iterations): Change the
1219 default values.
1220 Adjust &verbose uses.
1221 (-q, --quiet): New.
1222
1223 2008-11-04 Akim Demaille <demaille@gostai.com>
1224
1225 Make variant.yy more complex.
1226 std::list cannot be copied via memcpy, they are more demanding than
1227 std::string. Use one std::list to strengthen the test.
1228
1229 * examples/variant.yy: Use lalr1-fusion.cc, not lalr1.cc.
1230 Adjust.
1231 Create a list of strings, instead of a single large string.
1232
1233 2008-11-04 Akim Demaille <demaille@gostai.com>
1234
1235 bench.pl --bench.
1236 * etc/bench.pl.in (--bench, $bench): New.
1237
1238 2008-11-04 Akim Demaille <demaille@gostai.com>
1239
1240 Sort methods.
1241 * data/lalr1-fusion.cc (destroy): Use as() in its definition.
1242 Define it after as().
1243
1244 2008-11-04 Akim Demaille <demaille@gostai.com>
1245
1246 Useless parens.
1247 * data/lalr1-fusion.cc (b4_rhs_location): Remove useless parens.
1248
1249 2008-11-04 Akim Demaille <demaille@gostai.com>
1250
1251 Issue missing synclines after user actions.
1252 * data/c.m4 (b4_case): Issue synclines on the output file.
1253
1254 2008-11-04 Akim Demaille <demaille@gostai.com>
1255
1256 Remove trailing empty line.
1257 * data/lalr1-fusion.cc: Don't add an empty line after the user's
1258 epilogue.
1259
1260 2008-11-04 Akim Demaille <demaille@gostai.com>
1261
1262 Fix output of copyright years.
1263 * data/bison.m4 (b4_copyright): Fix the indentation of the
1264 copyright year paragraph.
1265 Use b4_copyright_years when no years are given.
1266 * data/lalr1.cc, data/lalr1-fusion.cc, data/location.cc
1267 (b4_copyright_years): New.
1268 Use it.
1269
1270 2008-11-04 Akim Demaille <demaille@gostai.com>
1271
1272 Avoid the spurious initial empty line.
1273 * data/lalr1-fusion.cc, data/location.cc: Put a trailing "@" at
1274 the end of @output request to suppress the empty line that
1275 results.
1276
1277 2008-11-04 Akim Demaille <demaille@gostai.com>
1278
1279 Remove parser::rhs_number_type.
1280 * data/lalr1-fusion.cc (rhs_number_type): No longer define it.
1281 (yyrhs_): Use b4_table_define.
1282
1283 2008-11-04 Akim Demaille <demaille@gostai.com>
1284
1285 Fix iteration type.
1286 * data/lalr1-fusion.cc: Use an int to iterate up to an int.
1287
1288 2008-11-04 Akim Demaille <demaille@gostai.com>
1289
1290 Factor the declaration of the integer tables.
1291 * data/lalr1-fusion.cc (b4_table_define): New.
1292 Use it.
1293
1294 2008-11-03 Akim Demaille <demaille@gostai.com>
1295
1296 Fix indentation of tables in lalr1.cc
1297 * data/lalr1-fusion.cc: Fix the indentation.
1298
1299 2008-11-03 Akim Demaille <demaille@gostai.com>
1300
1301 Destroy the lhs symbols after reduction.
1302 * data/lalr1-fusion.cc (parse): After the user action, when in
1303 variant mode, destroy the lhs symbols.
1304
1305 2008-11-03 Akim Demaille <demaille@gostai.com>
1306
1307 Simplify yysyntax_error_ use.
1308 * data/lalr1-fusion.cc (yysyntax_error_): Always pass it the token
1309 type, but make it unnamed in the declaration when it is not used.
1310
1311 2008-11-03 Akim Demaille <demaille@gostai.com>
1312
1313 Let yy::variant::build return an lvalue.
1314 * data/lalr1-fusion.cc (variant::build): Return a reference to the
1315 object.
1316
1317 2008-11-03 Akim Demaille <demaille@gostai.com>
1318
1319 Define yy::variant only when needed.
1320 * data/lalr1-fusion.cc (yy::variant): Define only if variants are
1321 used.
1322
1323 2008-11-03 Akim Demaille <demaille@gostai.com>
1324
1325 Bench the three-stack lalr1.cc.
1326 * etc/bench.pl.in: Bench the three-stack lalr1.cc vs. the
1327 one-stack one.
1328
1329 2008-11-03 Akim Demaille <demaille@gostai.com>
1330
1331 Fail on parse error in calc++.
1332 * doc/bison.texinfo (calc++.cc): Propagate failures to the exit
1333 status.
1334 * examples/calc++/test ($me, $number, $exit, run): New.
1335 Use them to propagate errors to the exit status.
1336
1337 2008-11-03 Akim Demaille <demaille@gostai.com>
1338
1339 Don't specify the skeleton twice in the example.
1340 * examples/calc++/Makefile.am: Don't pass -S to Bison, the grammar
1341 file does what is needed.
1342
1343 2008-11-03 Akim Demaille <demaille@gostai.com>
1344
1345 bench: Improve output.
1346 * etc/bench.pl.in (bench_grammar): Tune the printf format.
1347
1348 2008-11-03 Akim Demaille <demaille@gostai.com>
1349
1350 bench: check impact of %debug on variants.
1351 * etc/bench.pl.in (variant_grammar): Fix the computation of
1352 $variant.
1353 Generate a grammar file that can work with or without %debug.
1354 Do use the @directive.
1355 (bench_variant_parser): Check impact of %debug.
1356 (@directives): Rename all the occurrences to...
1357 (@directive): this, for consistency.
1358
1359 2008-11-03 Akim Demaille <demaille@gostai.com>
1360
1361 bench: report the size too.
1362 * etc/bench.pl.in ($iterations): Defaults to -3.
1363 (&bench_grammar): Require hireswallclock.
1364 Compute and display the size of the result.
1365 More comments.
1366
1367 2008-11-03 Akim Demaille <demaille@gostai.com>
1368
1369 bench: More use of the verbosity level.
1370 * etc/bench.pl.in ($verbose, &verbose): New.
1371 Use them.
1372 More POD documentation.
1373
1374 2008-11-03 Akim Demaille <demaille@gostai.com>
1375
1376 bench.pl: a command line interface
1377 * etc/bench.pl.in: More doc.
1378 Some fixes in the documentation.
1379 ($cflags, $iterations, &help, &getopt): New.
1380 Use them.
1381 (&variant_grammar): Let the number of stages be 10 times what is
1382 specified.
1383
1384 2008-11-03 Akim Demaille <demaille@gostai.com>
1385
1386 Bench the use of Boost.Variants.
1387 * etc/bench.pl.in ($cxx, &variant_grammar, &bench_variant_parser):
1388 New.
1389 (&compile): Be ready to compile C++ parsers.
1390 (&bench_push_parser): Move debug information to the outermost
1391 level.
1392 * THANKS: Add Michiel De Wilde.
1393
1394 2008-11-03 Akim Demaille <demaille@gostai.com>
1395
1396 bench.pl: Pass directives as a list instead of as a string.
1397 * etc/bench.pl.in (&directives): New.
1398 (&triangular_grammar, &calc_grammar): Use it to format the Bison
1399 directives.
1400 (&triangular_grammar): Do use the directives (were ignored).
1401 (&bench_grammar, &bench_push_parser): Adjust to pass lists of
1402 directives.
1403
1404 2008-11-03 Akim Demaille <demaille@gostai.com>
1405
1406 Improve genericity of bench.pl.
1407 * etc/bench.pl.in (&bench_grammar): Take the set of benches as
1408 argument.
1409 (&bench_push_parser): New.
1410 Call it.
1411
1412 2008-11-03 Akim Demaille <demaille@gostai.com>
1413
1414 Add documentation to bench.pl.
1415 * etc/bench.pl.in: Comment changes.
1416
1417 2008-11-03 Akim Demaille <demaille@gostai.com>
1418
1419 Fuse the three stacks into a single one.
1420
1421 In order to make it easy to perform benchmarks to ensure that
1422 there are no performance loss, lalr1.cc is forked into
1423 lalr1-fusion.cc. Eventually, lalr1-fusion.cc will replace
1424 lalr1.cc.
1425
1426 Meanwhile, to make sure that lalr1-fusion.cc is correctly
1427 exercized by the test suite, the user must install a symbolic link
1428 from lalr1.cc to it.
1429
1430 Instead of having three stacks (state, value, location), use a
1431 stack of triples. This considerably simplifies the code (and it
1432 will be easier not to require locations as currently does the C++
1433 parser), and also gives a 10% speedup according to
1434 etc/bench (probably mainly since memory allocation is done once
1435 instead of three times).
1436
1437 Another motivation is to make it easier to destruct properly
1438 semantic values: now that they are bound to their state (hence
1439 symbol type) it will be easier to call the appropriate destructor.
1440
1441 These changes should probably benefit the C parser too.
1442
1443 * data/lalr1.cc: Copy as...
1444 * data/lalr1-fusion.cc: this new file.
1445 (b4_rhs_value, b4_rhs_location): New definitions overriding those
1446 from c++.m4.
1447 (state_stack_type, semantic_stack_type, location_stack_type)
1448 (yystate_stack_, yysemantic_stack_, yylocation_stack_): Remove.
1449 (data_type, stack_type, yystack_): New.
1450 (YYLLOC_DEFAULT, yypush_): Adjust.
1451 (yyerror_range): Now based on data_type, not location_type.
1452
1453 2008-11-03 Akim Demaille <demaille@gostai.com>
1454
1455 Push the state, value, and location at the same time.
1456 This is needed to prepare a forthcoming patch that fuses the three
1457 stacks into one.
1458
1459 * data/lalr1.cc (parser::yypush_): New.
1460 (parser::yynewstate): Change the semantics: instead of arriving to
1461 this label when value and location have been pushed, but yystate
1462 is to be pushed on the state stack, now the three of them must
1463 have been pushed before. yystate still must be the new state.
1464 This allows to use yypush_ everywhere instead of individual
1465 handling of the stacks.
1466
1467 2008-11-03 Akim Demaille <demaille@gostai.com>
1468
1469 Prefer references to pointers.
1470 * data/lalr1.cc (b4_symbol_actions): New, overrides the default C
1471 definition to use references instead of pointers.
1472 (yy_symbol_value_print_, yy_symbol_print_, yydestruct_):
1473 Take the value and location as references.
1474 Adjust callers.
1475
1476 2008-11-03 Akim Demaille <demaille@gostai.com>
1477
1478 stack::size instead of stack::height.
1479 * data/lalr1.cc (stack::height): Rename as...
1480 (stack::size): this.
1481 Fix the output type.
1482 Comment changes.
1483
1484 2008-11-03 Akim Demaille <demaille@gostai.com>
1485
1486 Use variants to support objects as semantic values.
1487 This patch was inspired by work by Michiel De Wilde. But he used
1488 Boost variants which (i) requires Boost on the user side, (ii) is
1489 slow, and (iii) has useless overhead (the parser knows the type of
1490 the semantic value there is no reason to duplicate this
1491 information as Boost.Variants do).
1492
1493 This implementation reserves a buffer large enough to store the
1494 largest objects. yy::variant implements this buffer. It was
1495 implemented with Quentin Hocquet.
1496
1497 * src/output.c (type_names_output): New.
1498 (output_skeleton): Invoke it.
1499 * data/c++.m4 (b4_variant_if): New.
1500 (b4_symbol_value): If needed, provide a definition for variants.
1501 * data/lalr1.cc (b4_symbol_value, b4_symbol_action_)
1502 (b4_symbol_variant, _b4_char_sizeof_counter, _b4_char_sizeof_dummy)
1503 (b4_char_sizeof, yy::variant): New.
1504 (parser::parse): If variants are requested, define
1505 parser::union_type, parser::variant, change the definition of
1506 semantic_type, construct $$ before running the user action instead
1507 of performing a default $$ = $1.
1508 * examples/variant.yy: New.
1509 Based on an example by Michiel De Wilde.
1510
1511 2008-11-03 Akim Demaille <demaille@gostai.com>
1512
1513 Parameterize the extraction of semantic values.
1514 To make future changes easier, no longer rely on ".TYPE" being the
1515 way to get a semantic value.
1516
1517 * data/c.m4 (b4_symbol_value): New.
1518 Use it.
1519 * data/c++.m4, data/yacc.c: Use it.
1520 * data/glr.c: Use b4_symbol_value.
1521 (b4_rhs_data): New.
1522 Use it.
1523
1524 2008-11-03 Akim Demaille <demaille@gostai.com>
1525
1526 Prepare easier M4 changes.
1527 * data/lalr1.cc: Use escaped [] instead of literals to prepare
1528 future changes.
1529
1530 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
1531
1532 Initiate further development.
1533 * NEWS: Create an empty section for new entries.
1534 * gnulib: Update submodule to HEAD.
1535
1536 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
1537
1538 * NEWS: Version 2.4.
1539
1540 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
1541
1542 Prepare for next release.
1543 * NEWS: Briefly mention changes since 2.3b.
1544 * README: Say GNU m4 1.4.6, which we've been requiring in release
1545 announcements already, not 1.4.3, which breaks the build.
1546
1547 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
1548
1549 Say %language is experimental.
1550 We're thinking of extending it's effect on output file naming. See the
1551 thread at
1552 <http://lists.gnu.org/archive/html/bison-patches/2008-10/msg00003.html>.
1553 * NEWS: Say it's experimental.
1554 * doc/bison.texinfo (Decl Summary): Say it's experimental, and so don't
1555 recommend it over %skeleton for now.
1556 (Bison Options): Likewise.
1557 (C++ Bison Interface): Use %skeleton not %language.
1558 (Calc++ Parser): Use %skeleton not %language.
1559 * src/getargs.c (usage): Say it's experimental.
1560
1561 2008-11-01 Di-an Jan <dianj@freeshell.org>
1562 Paolo Bonzini <bonzini@gnu.org>
1563
1564 Support all Java parser class modifiers.
1565 * data/java.m4 (b4_percent_define_get3): New.
1566 (b4_final_if, b4_strictfp_if): New.
1567 * data/lalr1.java (final, strictfp, extends, implements): Support.
1568 * doc/bison.texinfo (final, strictfp, extends, implements): Add
1569 documentation.
1570 * tests/java.at (AT_CHECK_JAVA_MINIMAL): New.
1571 (AT_CHECK_JAVA_MINIMAL_W_LEXER): New.
1572 (AT_CHECK_JAVA_GREP): New.
1573 (Java parser class modifiers): New test.
1574 (Java parser class extends and implements): New test.
1575
1576 Model exception propagation better with throws and lex_throws.
1577 * data/java.m4 (b4_list2): New.
1578 (throws): Change default.
1579 * data/lalr1.java (yyaction): Add throws.
1580 (parse): Add lex_throws in addition to throws.
1581 * doc/bison.texinfo (throws, lex_throws): Add documentation.
1582 * tests/java.at (Java throws specifications): New test.
1583
1584 Improve documentation for Java parsers.
1585 * doc/bison.texinfo (Java Parsers): Add subsections.
1586 Don't quote first argument of %define.
1587 (Java Bison Interface): Document output files. Move documentation
1588 of parser class and merge into Java Parser Interface. Document
1589 features that error out. Document directives with no effect.
1590 Move note about Javadoc higher.
1591 (Java Semantic Values): Explicitly mention stype.
1592 Document that generic types cannot be used.
1593 (Java Location Values): Use @deftypeivar. Document constructors.
1594 Correct return value for toString.
1595 (Java Parser Interface): List undocumented constants/fields.
1596 Move documentation of fields added by %parse-param closer to list
1597 of members. Document that token names are added as fields.
1598 Document constructors accurately. Remove error method.
1599 (Java Scanner Interface): Move note on %pure-parser to Java Bison
1600 Interface. Describe %code lexer and yylex accutately.
1601 Remove documentation that does not match the code.
1602 (Java Action Features): New.
1603 (Java Differences): Add reference. Add item on semantic values.
1604 Add note about @{ ... @}. Clarify %% epilogue placement.
1605 (Java Declarations Summary): New.
1606
1607 Fix Java skeleton.
1608 * data/java.m4 (b4_prefix): Correct quoting for m4_define_default.
1609 (b4_remove_comma): Quote test argument.
1610 (b4_identification): Remove "bison" field.
1611 * tests/java.at (Java parser class and package names): New test.
1612 (Java %parse-param and %lex-param): New test.
1613 (Java stype, position_class and location_class): New test.
1614
1615 2008-10-31 Di-an Jan <dianj@freeshell.org>
1616
1617 * data/lalr1.jave: Update copyright years.
1618 (YYParser): Correct name of "generated from" file in Javadoc:
1619 use b4_file_name instead of @ofile@.
1620 (Location constructor): Correct Javadoc parameter name.
1621 (yylloc): Add missing opening m4 quote after b4_location_if.
1622 This removes a stray [ in the Javadoc of Lexer.getStartPos.
1623 (Lexer.yyerror): Fix incorrect m4 and Javadoc.
1624 (YYParser constructor): Correct Javadoc parameter name.
1625
1626 2008-10-30 Joel E. Denny <jdenny@ces.clemson.edu>
1627
1628 Always put auxiliary code files in the same dir as other output files.
1629 * src/files.c (compute_file_name_parts): When the user specifies
1630 --output but not --file-prefix, extract the directory prefix from the
1631 file prefix not from the grammar file name. This affects the location
1632 of files like location.hh generated by the C++ skeleton. The includes
1633 in the other output files require this fix.
1634 * tests/output.at (AT_CHECK_OUTPUT): Automatically create directories
1635 for expected output files.
1636 (Output files): Add a test for the above.
1637
1638 2008-10-29 Joel E. Denny <jdenny@ces.clemson.edu>
1639
1640 * gnulib: Update submodule to HEAD.
1641
1642 2008-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
1643
1644 Update copyright year.
1645 * src/files.c: Here.
1646
1647 2008-10-28 Di-an Jan <dianj@freeshell.org> (tiny change)
1648
1649 Don't overwrite the input file.
1650 * src/files.c (output_file_name_check): Fatal error if using input file
1651 for output.
1652 * tests/output.at: (AT_CHECK_CONFLICTING_OUTPUT): Add return status
1653 argument.
1654 (Conflicting output files): Add test.
1655
1656 2008-10-28 Akim Demaille <demaille@gostai.com>
1657
1658 Space changes.
1659 * data/lalr1.cc: Formatting changes.
1660
1661 2008-10-28 Akim Demaille <demaille@gostai.com>
1662
1663 Don't define debugging functions when !YYDEBUG.
1664 * data/lalr1.cc (debug_stream, set_debug_stream)
1665 (debug_level_type, debug_level, set_debug_level): Don't
1666 declare them when YYDEBUG is not defined.
1667 The implementation are already YYDEBUG-aware.
1668
1669 2008-10-28 Akim Demaille <demaille@gostai.com>
1670
1671 Prefer "continue" for empty loop bodies.
1672 * etc/bench.pl.in: Use "continue" instead of {}.
1673
1674 2008-10-28 Akim Demaille <demaille@gostai.com>
1675
1676 Space and comments changes.
1677 * data/c++.m4, data/glr.c, data/lalr1.cc: Copyright year changes.
1678 * data/c.m4, data/lalr1.cc: Space changes.
1679
1680 2008-10-28 Akim Demaille <demaille@gostai.com>
1681
1682 Make gnulib a submodule.
1683 * gnulib: New.
1684 * .gitmodules (gnulib): New.
1685
1686 2008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
1687
1688 Fix yyerror_range for user-defined location type in C++. Reported by
1689 Georg Sauthoff at
1690 <http://lists.gnu.org/archive/html/bug-bison/2008-08/msg00008.html>.
1691 * data/lalr1.cc (parse): Change type of yyerror_range to location_type.
1692 * THANKS (Georg Sauthoff): Add.
1693
1694 2008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
1695
1696 Update several administrative files mainly to facilitate releasing.
1697 * HACKING (Administrivia): Make the git-merge-changelog notes more
1698 helpful.
1699 (Test suite): Don't say lalr1.cc is not exercised in the test suite.
1700 (Release Procedure): Update for git and add numerous details that were
1701 previously missing.
1702 * Makefile.am (EXTRA_DIST): Remove Makefile.cfg and Makefile.maint.
1703 * maint.mk (announcement): Don't list bison as a bootstrap tool so
1704 that announcements don't claim we bootstrapped with whatever bison
1705 happened to be in PATH. Add flex as a bootstrap tool.
1706 * Makefile.maint: Remove, previously replaced by maint.mk.
1707 * Makefile.cfg: Remove, and migrate settings to...
1708 * cfg.mk: ... here for the sake of `make announcement'.
1709 * bootstrap.conf (gnulib_modules): Add announce-gen.
1710 * README: Say GNU Bison instead of just Bison. Suggested by Karl
1711 Berry.
1712
1713 2008-10-08 Di-an Jan <dianj@freeshell.org> (tiny change)
1714
1715 Small but important bugfixes for the Java skeleton.
1716 * data/lalr1.java (yyerror): Change Location to b4_location_type.
1717 (yy_symbol_print): Call toString on yyvaluep.
1718
1719 2008-08-29 Akim Demaille <demaille@gostai.com>
1720
1721 Clarify UPDATED use.
1722 * doc/bison.texinfo: It refers to the last edition of this file,
1723 not to the release date of Bison.
1724 Reported by Joel E. Denny.
1725
1726 2008-08-29 Akim Demaille <demaille@gostai.com>
1727
1728 * README: Update FAQ pointer.
1729 Reported by Joel E. Denny.
1730
1731 2008-08-27 Eric Blake <ebb9@byu.net>
1732
1733 Resync m4sugar from autoconf.
1734 * data/m4sugar/m4sugar.m4 (m4_defn, m4_popdef, m4_undefine)
1735 (m4_init): Adjust to latest m4.git changes.
1736 (m4_mapall_sep, _m4_list_cmp, m4_version_compare): Reduce side
1737 effects.
1738 * data/m4sugar/foreach.m4 (_m4_shiftn): Fix off-by-one bug.
1739 (_m4_list_cmp): Reduce side effects.
1740
1741 2008-08-27 Akim Demaille <demaille@gostai.com>
1742
1743 Check yyerrok in calc.at.
1744 * tests/calc.at (calc.y): Use yyerrok on "( error )".
1745 (AT_CHECK_CALC): Add a check that ensures that yyerrok works as
1746 expected.
1747
1748 2008-08-27 Akim Demaille <demaille@gostai.com>
1749
1750 Support yyerrok in lalr1.cc.
1751 YYBACKUP is still to import back into lalr1.cc.
1752 * data/lalr1.cc (yyerrork, yyclearin, YYRECOVERING): Define.
1753
1754 2008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
1755
1756 For maintainer-check*, don't recompile for a $(VERSION) update.
1757 * cfg.mk: New file.
1758 (_is-dist-target): Override the one in GNUmakefile.
1759 * Makefile.am (EXTRA_DIST): Add cfg.mk.
1760
1761 2008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
1762
1763 Update for recent change to gnulib.
1764 * src/parse-gram.y: Don't include strverscmp.h. It comes from
1765 string.h now.
1766
1767 2008-08-15 Eric Blake <ebb9@byu.net>
1768
1769 Remaining m4sugar merge from autoconf.
1770 * data/m4sugar/m4sugar.m4: Copy entire file from autoconf.
1771 * data/m4sugar/foreach.m4: New file, copied from autoconf.
1772 * data/Makefile.am (dist_m4sugar_DATA): Distribute it.
1773 * src/output.c (output_skeleton): Tell m4 how to find it.
1774
1775 Partial m4sugar merge from autoconf: m4_map.
1776 * data/m4sugar/m4sugar.m4 (m4_fst): Delete.
1777 (m4_map, m4_map_sep, _m4_map): Rewrite more efficiently.
1778 (m4_apply, _m4_apply, m4_mapall, m4_mapall_sep): New macros.
1779 * data/java.m4 (b4_token_enums): Use more efficient short-circuit
1780 for empty list.
1781 * data/c.m4 (b4_token_defines, b4_token_enums, b4_c_ansi_formals):
1782 Likewise.
1783 (b4_parse_param_for): Avoid m4_fst, now that autoconf no longer
1784 declares it.
1785
1786 2008-08-07 Joel E. Denny <jdenny@ces.clemson.edu>
1787
1788 Keep .version and PACKAGE_VERSION in sync.
1789 * Makefile.am ($(top_srcdir)/.version): Declare configure as a
1790 dependency, and add comments justifying this in more detail. Discussed
1791 starting at
1792 <http://lists.gnu.org/archive/html/bison-patches/2008-07/msg00022.html>.
1793
1794 2008-08-06 Eric Blake <ebb9@byu.net>
1795
1796 Partial m4sugar merge from autoconf: m4_shiftn.
1797 * data/m4sugar/m4sugar.m4 (m4_shiftn): Faster implementation.
1798 (m4_shift2, m4_shift3): New macros.
1799 (m4_case, m4_bmatch, m4_bpatsubsts, m4_join): Adjust clients.
1800 * data/c.m4 (b4_c_function_def, b4_c_ansi_function_def)
1801 (b4_c_ansi_function_decl, b4_c_function_call): Likewise.
1802 * data/java.m4 (b4_remove_comma): Likewise.
1803
1804 Partial m4sugar merge from autoconf: m4_wrap vs. m4 1.6.
1805 * data/m4sugar/m4sugar.m4 (m4_unquote, m4_wrap_lifo): New macros.
1806 (m4_wrap): Guarantee FIFO order, in spite of m4 1.6.
1807 (m4_init): Consolidate wrapped text into single m4_wrap.
1808 * data/bison.m4 (b4_check_user_names_wrap): Stick with LIFO order
1809 in wrapped text.
1810
1811 2008-08-05 Eric Blake <ebb9@byu.net>
1812
1813 Partial m4sugar merge from autoconf: builtins, version.m4.
1814 * data/m4sugar/m4sugar.m4 (changeword): Nuke.
1815 (m4_prepend): Remove, as it is unused and inherently quadratic,
1816 whereas m4_append is linear in newer m4.
1817 (m4_mkstemp): New builtin.
1818 (m4_symbols): Make rename conditional.
1819 (m4_version_prereq): Ensure fatal error if used in bison, which
1820 intentionally lacks version.m4.
1821
1822 Fix comments in m4sugar.
1823 * data/m4sugar/m4sugar.m4: Comment changes, borrowed from autoconf.
1824
1825 2008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
1826
1827 Update for recent .gitignore fix in Gnulib.
1828 * bootstrap: Back out 2008-07-18 hack now that gnulib-tool creates
1829 anchored .gitignore entries.
1830
1831 2008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
1832
1833 Set gnu or gnits strictness.
1834 * configure.ac (AM_INIT_AUTOMAKE): Set gnu strictness during
1835 development and gnits strictness for releases. Based on Eric Blake's
1836 suggestion at
1837 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00019.html>.
1838
1839 2008-07-31 Paolo Bonzini <bonzini@gnu.org>
1840
1841 * NEWS: Clarify documentation of %language.
1842
1843 2008-07-31 Paolo Bonzini <bonzini@gnu.org>
1844
1845 Support usage of git-merge-changelog.
1846 * .gitattributes: New.
1847 * HACKING: Document usage of git-merge-changelog.
1848 * bootstrap: Install git-merge-changelog entries in .git/config
1849 if appropriate.
1850
1851 2008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
1852
1853 Remove remaining dependence on CVS Id keyword.
1854 * ChangeLog: For the sake of people still using CVS, don't use dollars
1855 when mentioning Id.
1856 * data/xslt/bison.xsl: Remove Id from header comments, where it was
1857 unusual anyway.
1858 * data/xslt/xml2dot.xsl: Likewise.
1859 * data/xslt/xml2text.xsl: Likewise.
1860 * data/xslt/xml2xhtml.xsl: Likewise.
1861 * doc/Doxyfile.in (PROJECT_NUMBER): Don't use ID.
1862 * doc/Makefile.am (neutralize): Remove, no longer needed.
1863 (.x.1): Don't use neutralize.
1864 (edit): Don't substitute for ID.
1865 (Doxyfile): Don't define Id, and thus don't depend on ChangeLog.
1866
1867 2008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
1868
1869 Fix dependence on computed configure variables.
1870 * doc/Makefile.am (common_dep): Depend on $(top_srcdir)/configure not
1871 $(top_srcdir)/configure.ac so that changes to computed variables, such
1872 as PACKAGE_VERSION, are seen.
1873 * tests/Makefile.am ($(srcdir)/package.m4): Likewise.
1874
1875 2008-07-20 Joel E. Denny <jdenny@ces.clemson.edu>
1876
1877 Update copyright dates for recent changes.
1878 * Makefile.am: Here.
1879 * src/Makefile.am: Here.
1880 * src/reduce.c: Here.
1881 * tests/reduce.at: Here.
1882
1883 2008-07-18 Joel E. Denny <jdenny@ces.clemson.edu>
1884
1885 Use git-version-gen for version names between releases.
1886 * .cvsignore (.tarball-version, GNUmakefile, *~): Add.
1887 * .gitignore (/.tarball-version, /GNUmakefile, /*~): Add.
1888 * .prev-version: New.
1889 * .version.in: Remove.
1890 * ChangeLog: Remove the Id previously used for capturing the CVS
1891 revision.
1892 * GNUmakefile: Remove, now copied from Gnulib.
1893 * Makefile.am: Add code suggested by comments in
1894 build-aux/git-version-gen.
1895 (EXTRA_DIST): Remove GNUmakefile, handled by Gnulib. Add maint.mk,
1896 .prev-version, and .version.
1897 * NEWS (2.3b+): Rename to...
1898 (?.?): ... this because we're dropping the "+" version naming scheme,
1899 but, in general, we still can't be sure of our next release name.
1900 * bootstrap: Add a quick hack to remove from .gitignore the
1901 GNUmakefile entry that gnulib adds. We already have a /GNUmakefile
1902 entry. This should really be fixed in gnulib instead.
1903 * bootstrap.conf (gnulib_modules): Add gnumakefile.
1904 * configure.ac (AC_INIT): Set version name by invoking
1905 build-aux/git-version-gen.
1906 (AC_CONFIG_FILES): Remove .version, now generated by
1907 build-aux/git-version-gen.
1908 * maint.mk: New, copied from coreutils.
1909 * doc/.cvsignore (bison.1): Add.
1910 * doc/.gitignore (/bison.1): Add.
1911 * doc/bison.1: Remove, generated.
1912 * src/.cvsignore (revision.c): Remove.
1913 * src/.gitignore (/revision.c): Remove.
1914 * src/Makefile.am (bison_SOURCES): Remove revision.c and revision.h.
1915 (BUILT_SOURCES): Remove revision.c.
1916 (revision.c): Remove.
1917 * src/getargs.c (version): Don't print revision after the VERSION.
1918 * src/revision.h: Remove.
1919
1920 2008-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
1921
1922 Fix untranslatable composition of sentences. Reported by Goran
1923 Uddeborg at
1924 <http://lists.gnu.org/archive/html/bug-bison/2008-06/msg00000.html>.
1925 * THANKS (Goran Uddeborg): Add.
1926 * src/reduce.c (reduce_print): Report the number of nonterminals and
1927 rules useless in the grammar in separate sentences.
1928 * tests/reduce.at (Useless Rules): Update output.
1929 (Reduced Automaton): Likewise.
1930 (Underivable Rules): Likewise.
1931 (Empty Language): Likewise.
1932
1933 2008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
1934
1935 Fix some .gitignore and .cvsignore problems.
1936 * bootstrap (insert_sorted_if_absent): Replace all uses with...
1937 (insert_vc_ignore): ... this new function, which prepends `/' to all
1938 .gitignore entries before passing them to insert_sorted_if_absent.
1939 * bootstrap.conf (vc_ignore): Set to '.cvsignore .gitignore' so that
1940 .cvsignore files are maintained even though Bison developers run
1941 bootstrap while using Git.
1942 * .cvsignore (*.patch *.log log patches applied): Remove, apparently
1943 unneeded by Bison.
1944 (gnulib): Add.
1945 * .gitignore (/*.patch *.log log patches applied): Remove, broken and
1946 unneeded. Reported by Eric Blake.
1947 * lib/.gitignore (/*~): Add.
1948 * po/.cvsignore, runtime-po/.cvsignore: Sync with .gitignore.
1949 * examples/calc++/.gitignore (/calc++.exe): Add. Reported by Eric
1950 Blake.
1951 * src/.gitignore (/bison.exe): Add. Reported by Eric Blake.
1952
1953 2008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
1954
1955 Improve forward-compatibility with GNU M4. Reported by Eric Blake at
1956 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00000.html>.
1957 * bootstrap.conf (gnulib_modules): Add unsetenv.
1958 * lib/.gitignore, lib/.cvsignore (/unsetenv.c): Add.
1959 * m4/.gitignore, m4/.cvsignore (/environ.m4): Add.
1960 (/setenv.m4): Add.
1961 * src/output.c (output_skeleton): For the m4 invocation, pass -dV as
1962 the first argument because it may become position-dependent, and unset
1963 POSIXLY_CORRECT so Bison's skeletons have access to GNU M4 extensions.
1964 Add comments explaining these issues in more detail.
1965
1966 2008-07-14 Joel E. Denny <jdenny@ces.clemson.edu>
1967
1968 Add .gitignore everywhere based on .cvsignore.
1969 * .gitignore: New.
1970 * build-aux/.gitignore: New.
1971 * data/.gitignore: New.
1972 * doc/.gitignore: New.
1973 * etc/.gitignore: New.
1974 * examples/.gitignore: New.
1975 * examples/calc++/.gitignore: New.
1976 * lib/.gitignore: New.
1977 * m4/.gitignore: New.
1978 * po/.gitignore: New.
1979 * runtime-po/.gitignore: New.
1980 * src/.gitignore: New.
1981 * tests/.gitignore: New.
1982
1983 2008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
1984
1985 * NEWS (2.3b+): New section, empty for now.
1986 * configure.ac (AC_INIT): 2.3b -> 2.3b+.
1987
1988 2008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
1989
1990 * NEWS (2.3b): Update release date since there has been a delay in
1991 getting the announcements and tarballs out.
1992
1993 2008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
1994
1995 * NEWS: Version 2.3b.
1996 * configure.ac (AC_INIT): Likewise.
1997 (PACKAGE_COPYRIGHT_YEAR): Update to 2008.
1998
1999 2008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
2000
2001 * HACKING: Don't say don't mention HACKING in the ChangeLog. We've
2002 been doing it for years.
2003 (Test suite): Mention maintainer-push-check and maintainer-xml-check.
2004 (Release Procedure): Add FIXME about make alpha being unmaintained.
2005
2006 2008-05-13 Joel E. Denny <jdenny@ces.clemson.edu>
2007
2008 * data/yacc.c: Reformat m4 a little for readability.
2009 * src/lalr.c (build_relations): Correct comment.
2010
2011 2008-05-12 Juan Manuel Guerrero <juan.guerrero@gmx.de>
2012
2013 DJGPP specific issue.
2014 * djgpp/config.sed: Fixes required to run configure scripts generated
2015 by autoconf 2.62.
2016
2017 2008-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
2018
2019 * HACKING (Release Procedure): translation@iro.umontreal.ca is now
2020 coordinator@translationproject.org.
2021
2022 2008-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
2023
2024 * THANKS: Add Eric Blake.
2025
2026 2008-04-23 Eric Blake <ebb9@byu.net>
2027
2028 Revert prior patch, by working around autoconf regression.
2029 * tests/output.at (m4_expand): Add workaround for autoconf 2.62.
2030 ("Output file name: ("): Uncomment test.
2031 ("Output file name: )"): Likewise.
2032 Based on an idea from Noah Misch.
2033
2034 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
2035
2036 Work-around an Autoconf 2.62 AT_SETUP bug that was not present in
2037 2.61. Reported by Juan Manuel Guerrero at
2038 <http://lists.gnu.org/archive/html/bug-bison/2008-04/msg00011.html>.
2039 * tests/output.at ("Output file name: ("): Comment out test case for
2040 now.
2041 ("Output file name: )"): Likewise.
2042
2043 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
2044
2045 * GNUmakefile: Update git-version-gen invocation so make dist
2046 succeeds.
2047
2048 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
2049
2050 Update to the current gnulib CVS repository, and fix trigraph handling
2051 in Bison.
2052 * bootstrap: Update gnulib CVS repository URL.
2053 (symlink_to_dir): Encapsulate the code that guarantees the destination
2054 directory exists into...
2055 (check_dst_dir): ... this new function, and...
2056 (cp_mark_as_generated): ... reuse it here so that bootstrap doesn't
2057 fail when copying files into lib/uniwidth/.
2058 * src/output.c (prepare_symbols): When writing yytname muscles, where
2059 symbol names will be encoded in C-string literals, tell quotearg to
2060 escape trigraphs. This used to be the default in gnulib.
2061 * tests/regression.at (Token definitions): Because of the change in
2062 gnulib's quotearg behavior, string_as_id in parse-gram.y no longer
2063 escapes trigraphs in symbol names. Thus, yytname no longer has
2064 trigraphs unnecessarily doubly escaped. Update test case output.
2065 Extend test case to be sure Bison's own error messages will no longer
2066 have trigraphs in symbol names unnecessarily escaped once.
2067
2068 2008-04-20 Joel E. Denny <jdenny@ces.clemson.edu>
2069
2070 Fix make dist infinite loop reported by Juan Manuel Guerrero at
2071 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00009.html>.
2072 * .cvsignore: Add .version.
2073 * .version.in: New.
2074 * bootstrap.conf (gnulib_modules): Add git-version-gen.
2075 * configure.ac (AC_CONFIG_FILES): Add .version.
2076 * build-aux/.cvsignore: Add git-version-gen.
2077
2078 2008-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
2079
2080 * NEWS (2.3a+): Mention that -g now takes an argument.
2081 * doc/bison.texinfo (Bison Options): Reword -W entry a little for
2082 consistency. Update the -g and -x entries now that they take
2083 arguments. Use brackets to indicate optional arguments.
2084 * src/getargs.c (usage): Explain the relationship between arguments of
2085 long and short options more completely. Document --defines and -d
2086 separately since the former takes an argument but, for POSIX Yacc, the
2087 latter does not.
2088 (short_options): Let -W take an optional argument like --warnings.
2089 (getargs): Sort cases.
2090
2091 2008-02-28 Akim Demaille <demaille@gostai.com>
2092
2093 * doc/bison.texinfo: Fix a few typos.
2094
2095 2008-02-28 Akim Demaille <akim@epita.fr>
2096
2097 * doc/bison.texinfo (Bison Options): Document -W.
2098 Based on Joel E. Denny's NEWS entry, and Automake's documentation.
2099
2100 2008-02-28 Akim Demaille <akim@epita.fr>
2101
2102 * src/getargs.c (short_options): Split and sort for readability.
2103 -g and -x take optional arguments, just like their long options.
2104 * build-aux/cross-options.pl: Use /x to make the regexp easier to
2105 understand.
2106 Fix the handling of $opt which resulted in all the argument to be
2107 considered as optional.
2108
2109 2008-02-22 Joel E. Denny <jdenny@ces.clemson.edu>
2110
2111 * NEWS (2.3a+): Don't say %language is experimental. Mention Java and
2112 say its interface is experimental.
2113 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
2114 Java.
2115 (Bison Options): In the -L and --language entry, mention Java.
2116 (Java Bison Interface): Say the interface is experimental.
2117 * src/getargs.c (usage): Mention -L and --language.
2118
2119 * NEWS (2.3a+): Say the push parsing interface is experimental.
2120 * doc/bison.texinfo (Push Decl): Likewise.
2121 (Decl Summary): Likewise in the "%define api.push_pull" entry.
2122 (Push Parser Function): Likewise.
2123 (Pull Parser Function): Likewise.
2124 (Parser Create Function): Likewise.
2125 (Parser Delete Function): Likewise.
2126 (Table of Symbols): Likewise in the yypstate_delete, yypstate_new,
2127 yypull_parse, and yypush_parse entries.
2128
2129 * NEWS (2.3a+): Mention XML support, and say the schema is
2130 experimental.
2131 * doc/bison.texinfo (Bison Options): Mention -x and --xml.
2132 * src/getargs.c (usage): Say the XML schema is experimental.
2133
2134 * NEWS (2.3a+): Say option instead of flag.
2135
2136 2008-02-21 Wojciech Polak <polak@gnu.org>
2137
2138 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Change footer
2139 text.
2140
2141 2008-02-20 Joel E. Denny <jdenny@ces.clemson.edu>
2142
2143 Fix impure push parser compile error reported by Bob Rossi at
2144 <http://lists.gnu.org/archive/html/help-bison/2008-02/msg00023.html>.
2145 * data/yacc.c: Clean up whitespace in the output a little.
2146 (yypstate_allocated): Define for impure push parsers regardless of
2147 whether the pull interface is also requested.
2148 * tests/push.at (Push Parsing: Multiple impure instances): Extend to
2149 check impure push parsers without the pull interface.
2150
2151 * data/yacc.c (yypstate_new): Don't try to invoke yyerror since
2152 yyerror takes arguments specified by %parse-param while yypstate_new
2153 does not.
2154 * doc/bison.texinfo (Parser Create Function): Document that
2155 yypstate_new returns 0 for multiple impure parser instances.
2156 * tests/push.at (Push Parsing: Multiple impure instances): Update
2157 expected stderr output.
2158
2159 2008-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
2160
2161 * runtime-po/POTFILES.in (push.c): Remove.
2162
2163 2008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
2164
2165 * data/Makefile.am (dist_pkgdata_DATA): Remove push.c.
2166 * data/push.c: Rename to...
2167 * data/yacc.c: ... this, overwriting it.
2168 * etc/bench.pl.in (bench_grammar): `%pure-parser'-> `%define api.pure'.
2169 `%push-pull-parser' -> `%define api.push_pull "both"'.
2170 Remove old yacc.c tests, and update push.c tests to yacc.c.
2171
2172 2008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
2173
2174 * data/bison.m4 (b4_percent_code_get): Output %code block comments like
2175 `"%code top" blocks' instead of `%code "top" blocks'.
2176 * data/push.c: Import yacc.c changes from 2008-01-09 and 2007-08-03.
2177 Clean up whitespace in the output a little.
2178
2179 2008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
2180
2181 Fix documentation problems reported by Tim Josling at
2182 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00013.html>.
2183 * NEWS (2.3a+): Mention removal of --no-parser, -n, and %no-parser.
2184 * doc/bison.texinfo (Token Decl): Token numbers are *nonnegative*
2185 integers. Explain the effect of literal string aliases on error
2186 messages. Copy token 0 documentation from the C++ skeleton
2187 documentation.
2188
2189 2008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
2190
2191 Accept a token number in a %left, %right, or %nonassoc for POSIX
2192 conformance. Reported by Tim Josling at
2193 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00010.html>.
2194 * NEWS (2.3a+): Mention.
2195 * doc/bison.texinfo (Precedence Decl): Describe how literal strings
2196 and code numbers are treated by precedence declarations.
2197 * src/parse-gram.y (precedence_declaration): Use symbols.prec instead
2198 of symbols.1.
2199 (symbols.prec): New, just like symbols.1 but uses symbol.prec instead
2200 of symbol.
2201 (symbol.prec): New, just like symbol but allows INT.
2202 * src/symtab.c (symbol_user_token_number_set): Remove an aver that no
2203 longer holds.
2204 * tests/regression.at (Token number in precedence declaration): New
2205 test case.
2206
2207 2008-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
2208
2209 DJGPP specific issues.
2210 * djgpp/config.bat: Add filenames that are not 8.3 clean and that must
2211 be changed. Copyright timestamp adjusted.
2212 * djgpp/config.sed: Add filenames that are not 8.3 clean and that must
2213 be changed. Copyright timestamp adjusted.
2214 * djgpp/config.site: Copyright timestamp adjusted.
2215 * djgpp/config_h.sed: Copyright timestamp adjusted.
2216 * djgpp/djunpack.bat: Copyright timestamp adjusted.
2217 * djgpp/fnchnage.lst: Add filenames that are not 8.3 clean to the
2218 filename translation list.
2219 * djgpp/subpipe.c (init_subpipe): Check the environment variables
2220 TMPDIR, TMP and TEMP, in that order, to determinate where the temp
2221 files shall be created. Before trying to use the temp dir where the
2222 environment variable points to check that the dir really exists. If
2223 not default to the cwd as temp dir. Copyright timestamp adjusted.
2224 * djgpp/subpipe.h: Copyright timestamp adjusted.
2225 * djgpp/testsuite.sed: Copyright timestamp adjusted.
2226
2227 2008-01-30 Paul Eggert <eggert@cs.ucla.edu>
2228
2229 * doc/bison.texinfo: Update Back-Cover text to reflect new GNU wording.
2230
2231 2008-01-09 Paul Eggert <eggert@cs.ucla.edu>
2232
2233 * data/yacc.c (yyparse): Correct the comment when locations aren't used.
2234 Problem reported by Claudio Saavedra in
2235 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00003.html>.
2236
2237 2008-01-05 Wojciech Polak <polak@gnu.org>
2238
2239 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Precede an XHTML
2240 document's title with the input grammar file name.
2241
2242 2007-12-22 Joel E. Denny <jdenny@ces.clemson.edu>
2243
2244 Automate regression testing of the XML/XSLT implementation. Discussed
2245 starting at
2246 <http://lists.gnu.org/archive/html/bison-patches/2007-11/msg00021.html>.
2247 * configure.ac (XSLTPROC): New substitution.
2248 * Makefile.am (maintainer-xml-check): New phony target invoking...
2249 * tests/Makefile.am (maintainer-xml-check): ... this new phony target
2250 invoking make maintainer-check with BISON_TEST_XML=1.
2251 * tests/atlocal.in (XSLTPROC): New.
2252 * tests/local.at (AT_BISON_CHECK): New macro to (1) instruct Valgrind
2253 not to report reachable memory when Bison is expected to have a
2254 non-zero exit status and (2) to compare XML/XSLT output with --graph
2255 and --report=all output for every working grammar when
2256 BISON_TEST_XML=1.
2257 (AT_BISON_CHECK_NO_XML): Likewise, but skip XML checks.
2258 (AT_BISON_CHECK_XML): New.
2259 (AT_QUELL_VALGRIND): New.
2260 * tests/testsuite.at (ORIGINAL_AT_CHECK): Remove this and...
2261 (AT_CHECK): ... don't redefine this since this was the old way to
2262 quell Valgrind.
2263 * tests/actions.at: Rewrite all AT_CHECK invocations for bison as
2264 AT_BISON_CHECK invocations.
2265 * tests/c++.at: Likewise.
2266 * tests/calc.at: Likewise.
2267 * tests/conflicts.at: Likewise.
2268 * tests/cxx-type.at: Likewise.
2269 * tests/existing.at: Likewise.
2270 * tests/glr-regression.at: Likewise.
2271 * tests/headers.at: Likewise.
2272 * tests/input.at: Likewise.
2273 * tests/java.at: Likewise.
2274 * tests/output.at: Likewise.
2275 * tests/push.at: Likewise.
2276 * tests/reduce.at: Likewise.
2277 * tests/regression.at: Likewise.
2278 * tests/sets.at: Likewise.
2279 * tests/skeletons.at: Likewise.
2280 * tests/synclines.at: Likewise.
2281 * tests/torture.at: Likewise.
2282 (Big triangle): Use AT_BISON_CHECK_NO_XML instead since this grammar
2283 tends to hang xsltproc.
2284 (Big horizontal): Likewise.
2285
2286 2007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
2287
2288 In XML output, remove redundant class attribute on symbol element.
2289 * data/xslt/bison.xsl (xsl:key name="bison:symbolByName"): New.
2290 * data/xslt/xml2xhtml.xsl (xsl:template match="symbol"): Use it to
2291 look up a symbol to determine whether it's a nonterminal or terminal.
2292 * src/gram.c (rule_rhs_print_xml): Remove class attribute.
2293 * src/state.c (state_rule_lookahead_tokens_print_xml): Likewise.
2294
2295 Add prec/assoc information to XML output.
2296 * src/gram.c (grammar_rules_print_xml): For each rule that has a
2297 %prec, add a percent_prec attribute.
2298 * src/print-xml.c (print_grammar): For each terminal that has a
2299 precedence or associativity, add a prec or assoc attribute.
2300 (xml_indent): New.
2301 (xml_puts): Use xml_indent.
2302 (xml_printf): Use xml_indent.
2303 * src/print-xml.h (xml_indent): Prototype.
2304
2305 * tests/existing.at (GNU pic Grammar): Fix a rule miscopied from
2306 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
2307
2308 2007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
2309
2310 * data/xslt/bison.xsl (bison:ruleNumber): Rename to...
2311 (bison:ruleByNumber): ... this for clarity.
2312 * data/xslt/xml2dot.xsl (xsl:template match="item"): Update.
2313 * data/xslt/xml2text.xsl (xsl:template match="item"): Update.
2314 (xsl:template match="reduction"): Update.
2315 (xsl:template match="item"): Update.
2316 (xsl:template match="reduction"): Update.
2317
2318 In the XML output, don't print the list of rules where symbols appear.
2319 Compute it in XSLT instead. Discussed at
2320 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00024.html>.
2321 * data/xslt/bison.xsl (bison:ruleByLhs): New.
2322 (bison:ruleByRhs): New.
2323 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Use
2324 bison:ruleByRhs.
2325 (xsl:template match="terminal/rule"): Remove.
2326 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
2327 bison:ruleByRhs.
2328 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
2329 Remove.
2330 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Use
2331 bison:ruleByRhs and mode="number-link" for rule template.
2332 (xsl:template match="terminal/rule"): Remove.
2333 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
2334 bison:ruleByRhs and mode="number-link" for rule template.
2335 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
2336 Rewrite as...
2337 (xsl:template match="rule" mode="number-link"): ... this.
2338 * src/print-xml.c (print_grammar): Don't print the list of rules.
2339
2340 2007-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
2341
2342 Don't let --report affect XML output; always print all information.
2343 Discussed at
2344 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00020.html>.
2345 * src/conflicts.c (log_resolution): Implement.
2346 * src/print-xml.c (print_core): Implement.
2347 (print_state): Implement.
2348 (print_xml): Implement.
2349
2350 * NEWS (2.3a+): Fix quotes.
2351 * src/parse-gram.y (prologue_declaration): For consistency with -v,
2352 don't let %verbose clear the list specified by --report.
2353
2354 2007-11-26 Akim Demaille <akim@epita.fr>
2355
2356 * data/Makefile.am (dist_pkgdata_DATA): Ship and install bison.xsl.
2357
2358 2007-11-24 Joel E. Denny <jdenny@ces.clemson.edu>
2359
2360 In the XML output, list useless and unused symbols and rules with the
2361 useful ones and add a "usefulness" attribute. Discussed starting at
2362 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00017.html>.
2363 * src/gram.c (grammar_rules_partial_print_xml): Remove.
2364 (grammar_rules_print_xml): Print all rules instead of just those
2365 useful in the grammar, and add a "usefulness" attribute.
2366 * src/gram.h (grammar_rules_partial_print_xml): Remove prototype.
2367 * src/print-xml.c (print_rules_useless_in_parser): Remove.
2368 (print_grammar): Print all nonterminals instead of just useful ones,
2369 and add a "usefulness" attribute to nonterminals and terminals.
2370 (print_xml): Don't print a separate "reductions" or
2371 "rules-useless-in-parser" element.
2372 * src/reduce.c (reduce_output): Use reduce_token_unused_in_grammar.
2373 (reduce_xml): Remove.
2374 (reduce_token_unused_in_grammar): New.
2375 (reduce_nonterminal_useless_in_grammar): New.
2376 * src/reduce.h (reduce_xml): Remove prototype.
2377 (reduce_token_unused_in_grammar): Add prototype.
2378 (reduce_nonterminal_useless_in_grammar): Add prototype.
2379 * data/xslt/xml2text.xsl: Update for XML changes.
2380 * data/xslt/xml2xhtml.xsl: Update for XML changes.
2381 * tests/reduce.at (Useless Terminals): Update output.
2382 (Useless Rules): Update output.
2383 (Reduced Automaton): Update output.
2384
2385 Say "Terminals unused in grammar" instead of "Unused terminals".
2386 * NEWS (2.3a+): Update.
2387 * doc/bison.texinfo (Understanding): Update example output.
2388 * src/reduce.c (reduce_output): Implement.
2389 * data/xslt/xml2text.xsl: Implement.
2390 * data/xslt/xml2xhtml.xsl: Implement.
2391
2392 2007-11-18 Joel E. Denny <jdenny@ces.clemson.edu>
2393
2394 Accept --report-file=FILE to override the default `.output' filename.
2395 * NEWS (2.3a+): Mention.
2396 * doc/bison.texinfo (Bison Options): Add an entry.
2397 * src/files.c (compute_output_file_names): Don't override
2398 spec_verbose_file if already set.
2399 * src/getargs.c (usage): Document --report-file.
2400 (REPORT_FILE_OPTION): New anonymous enum member.
2401 (long_options): Add entry for it.
2402 (getargs): Add case for it setting spec_verbose_file.
2403
2404 * build-aux/cross-options.pl: Don't record a short option just because
2405 there's an arg.
2406 * doc/.cvsignore: Add yacc.1.
2407
2408 2007-11-14 Akim Demaille <akim@epita.fr>
2409
2410 * doc/yacc.1.in: New.
2411 * configure.ac, doc/Makefile.am: Adjust.
2412 * configure.ac (PACKAGE_COPYRIGHT_YEAR): New substitution, and new
2413 config.h symbol.
2414 Use AC_SUBST for assignments too.
2415 * src/getargs.c (version): Use PACKAGE_COPYRIGHT_YEAR.
2416
2417 2007-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
2418
2419 * src/gram.c: Remove comments that duplicate comments in gram.h.
2420
2421 When reporting useless rules and nonterminals, say "useless in grammar"
2422 instead of "useless", and say "useless in parser" instead of "never
2423 reduced". Discussed starting at
2424 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00033.html>.
2425 * NEWS (2.3a+): Mention this change.
2426 * data/xslt/xml2text.xsl: Update output text and expected input XML
2427 element names to match changes below.
2428 * data/xslt/xml2xhtml.xsl: Likewise.
2429 (xsl:template match="bison-xml-report"): Add missing entry in Table of
2430 Contents: "Rules useless in parser due to conflicts".
2431 * doc/bison.texinfo (Decl Summary): Reword a little.
2432 (Understanding): Update example output for changes below.
2433 * src/gram.c: (rule_useful_p): Rename to...
2434 (rule_useful_in_grammar_p): ... this.
2435 (rule_useless_p): Rename to...
2436 (rule_useless_in_grammar_p): ... this.
2437 (rule_never_reduced_p): Rename to...
2438 (rule_useless_in_parser_p): ... this.
2439 (grammar_rules_print): Update for renames.
2440 (grammar_rules_print_xml): Update for renames.
2441 (grammar_rules_never_reduced_report): Rename to...
2442 (grammar_rules_useless_report): ... this since it is used for either
2443 kind of useless rule.
2444 * src/gram.h: Reword comments and update function names in prototypes.
2445 * src/main.c (main): Say "rule useless in parser due to conflicts".
2446 * src/print-xml.c (print_rules_never_reduced): Rename to...
2447 (print_rules_useless_in_parser): ... this, and rename output XML
2448 element "rules-never-reduced" to "rules-useless-in-parser".
2449 (print_xml): Update for rename.
2450 * src/print.c (print_results): Say "Rules useless in parser due to
2451 conflicts".
2452 * src/reduce.c (reduce_grammar_tables): Say "rule useless in grammar".
2453 (nonterminals_reduce): Say "nonterminal useless in grammar".
2454 (reduce_output): Say "Nonterminals useless in grammar".
2455 Say "Rules useless in grammar".
2456 (reduce_xml): Rename output XML element "useless" to
2457 "useless-in-grammar".
2458 (reduce_print): Don't report the count of grammatically useless rules
2459 as "rules never reduced" just because %yacc is specified.
2460 In the correct report of this count, say nonterminal(s) and rule(s)
2461 "useless in grammar".
2462 * tests/conflicts.at (S/R in initial): Update expected output.
2463 (Defaulted Conflicted Reduction): Likewise.
2464 (Unreachable States After Conflict Resolution): Likewise.
2465 * tests/existing.at (GNU pic Grammar): Likewise.
2466 * tests/reduce.at (Useless Nonterminals): Likewise.
2467 (Useless Rules): Likewise.
2468 (Reduced Automaton): Likewise.
2469 (Underivable Rules): Likewise.
2470 (Empty Language): Likewise.
2471
2472 2007-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
2473
2474 * data/bison.m4 (b4_cat): Put a newline after the end delimiter of the
2475 here document and before the EOF so that BSD's implementation of Bourne
2476 shell doesn't parse the delimiter as part of the here document.
2477 * doc/.cvsignore: Add cross-options.texi.
2478 * src/getargs.c (usage): Add a blank line after the warning categories.
2479
2480 2007-11-08 Paolo Bonzini <bonzini@gnu.org>
2481
2482 * data/lalr1.java (Lexer): Remove usage of b4_pure_if.
2483
2484 2007-11-05 Akim Demaille <akim@epita.fr>
2485
2486 Remove Id: from bison.1.
2487 * doc/Makefile.am (remove_time_stamp): Include the sed invocation.
2488 (perl -0777 -pi -e 's/\.PP\nId): New.
2489 (.x.1): Use it to ignore the version control revision.
2490
2491 2007-11-05 Akim Demaille <demaille@gostai.com>
2492
2493 * build-aux/Makefile.am: Ship cross-options.pl.
2494 * doc/Makefile.am: Always refer to cross-options.texi with
2495 $(srcdir).
2496 (MAINTAINERCLEANFILES): Add it.
2497
2498 2007-11-04 Akim Demaille <demaille@gostai.com>
2499
2500 Generate the long/short option cross-table.
2501 * build-aux/cross-options.pl: New.
2502 * doc/Makefile.am (cross-options.texi): New.
2503 * doc/bison.texinfo: Use it.
2504
2505 2007-11-04 Akim Demaille <demaille@gostai.com>
2506
2507 Generate bison.1 using help2man.
2508 * doc/common.x, doc/bison.x: New.
2509 * doc/Makefile.am (bison.1, .x.1): New.
2510 The code is taken from autoconf-2.61/man/Makefile.am.
2511 * configure.ac: Look for help2man.
2512
2513 2007-11-04 Akim Demaille <demaille@gostai.com>
2514
2515 Complete --help.
2516 * src/getargs.c (usage): Document -W, make it clear that -d,
2517 -g and -x have optional arguments.
2518
2519 2007-11-04 Akim Demaille <demaille@gostai.com>
2520
2521 Find sha1sum when named gsha1sum.
2522 * bootstrap (find_tool): New.
2523 ($SHA1SUM): New.
2524
2525 2007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
2526
2527 Deprecate %pure-parser and add `%define api.pure'. Discussed starting
2528 at
2529 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00006.html>.
2530 * NEWS (2.3a+): Mention.
2531 * data/bison.m4 (b4_pure_if): Don't define it here.
2532 * data/c.m4 (b4_identification): Depend on individual skeletons to
2533 define b4_pure_flag, b4_push_flag, or b4_pull_flag if they use the
2534 values of the %define variables api.pure or api.push_pull. Define
2535 YYPURE, YYPUSH, and YYPULL accordingly.
2536 * data/glr.c: Define b4_pure_if based on `%define api.pure' unless
2537 glr.cc has already defined b4_pure_flag.
2538 * data/push.c: Define b4_pure_if based on `%define api.pure'.
2539 Remove YYPUSH and YYPULL since they're back in b4_identification again.
2540 * data/yacc.c: Define b4_pure_if based on `%define api.pure'.
2541 * doc/bison.texinfo (Pure Decl): Update.
2542 (Push Decl): Update.
2543 (Decl Summary): Add api.pure to %define entry.
2544 In %pure-parser entry, say it's deprecated and reference %define.
2545 (Pure Calling): Update.
2546 (Error Reporting): Update.
2547 (C++ Scanner Interface): Update.
2548 (How Can I Reset the Parser): Update.
2549 (Table of Symbols): In %pure-parser entry, say it's deprecated and
2550 reference %define.
2551 * src/getargs.c (pure_parser): Remove global variable.
2552 * src/getargs.h (pure_parser): Remove extern.
2553 * src/output.c (prepare): Don't define pure_flag muscle.
2554 * src/parse-gram.y (prologue_declaration): Implement %pure-parser as a
2555 wrapper around `%define api.pure'.
2556 * tests/calc.at (Simple LALR Calculator): Update.
2557 (Simple GLR Calculator): Update.
2558 * tests/cxx-type.at (GLR: Resolve ambiguity, pure, no locations):
2559 Update.
2560 (GLR: Resolve ambiguity, pure, locations): Update.
2561 (GLR: Merge conflicting parses, pure, no locations): Update.
2562 (GLR: Merge conflicting parses, pure, locations): Update.
2563 * tests/glr-regression.at (Uninitialized location when reporting
2564 ambiguity): Update
2565 * tests/input.at (Unused %define api.pure): New test case.
2566 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Update definition for
2567 AT_PURE_IF and AT_PURE_AND_LOC_IF.
2568 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
2569
2570 2007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
2571
2572 %define push_pull -> %define api.push_pull. Discussed starting at
2573 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00005.html>.
2574 * data/push.c: Expect the new name.
2575 * data/yacc.c: Likewise.
2576 * doc/bison.texinfo (Push Decl): Update.
2577 (Decl Summary): Update %define entry.
2578 (Push Parser Function): Update.
2579 (Pull Parser Function): Update.
2580 (Parser Create Function): Update.
2581 (Parser Delete Function): Update.
2582 * tests/calc.at (Simple LALR Calculator): Update.
2583 * tests/input.at (%define enum variables): Update.
2584 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
2585 (Push Parsing: Multiple impure instances): Update.
2586 (Push Parsing: Unsupported Skeletons): Update.
2587 * tests/torture.at (Exploding the Stack Size with Alloca): Update.
2588 (Exploding the Stack Size with Malloc): Update.
2589
2590 * NEWS (2.3a+): Add an entry for the push parser, and clean up the
2591 other entries some.
2592
2593 2007-10-27 Joel E. Denny <jdenny@ces.clemson.edu>
2594
2595 For the XML output's terminal element, rename @number to @token-number,
2596 and add @symbol-number. In the nonterminal element, rename @number to
2597 @symbol-number. Discussed starting at
2598 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00040.html>.
2599 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Update for
2600 renames.
2601 (xsl:template match="nonterminal"): Likewise.
2602 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Likewise.
2603 (xsl:template match="nonterminal"): Likewise.
2604 * src/print-xml.c (print_grammar): Implement.
2605
2606 2007-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
2607
2608 * data/xslt/xml2dot.xsl (xsl:template match="automaton/state"): After
2609 2007-10-11 change, the child elements here are items not rules.
2610 (xsl:template match="item"): New.
2611 (xsl:template match="rule"): Update for new reduced itemset.
2612 (xsl:template match="point"): Remove.
2613 (xsl:template match="empty"): For consistency with --graph, don't
2614 output "/* empty */".
2615 * data/xslt/xml2text.xsl (xsl:template match="terminal"): When invoking
2616 line-wrap, don't pass a negative value as first-line-length since this
2617 won't work with the following changes.
2618 (xsl:template name="line-wrap"): Simplify slightly.
2619 (xsl:template name="ws-search"): Eliminate recursion.
2620 * src/print_graph.c (print_core): Don't print a reduction's lookahead
2621 set next to an item whose dot is not at the end of the RHS even if it
2622 happens to be associated with the same rule.
2623
2624 2007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
2625
2626 Add %define lr.keep_unreachable_states.
2627 * NEWS (2.3a+): Mention it in the entry for unreachable state removal.
2628 * doc/bison.texinfo (Decl Summary): Mention it in the %define entry.
2629 * src/main.c (main): Implement it.
2630 * tests/conflicts.at (Unreachable States After Conflict Resolution):
2631 Extend to test it, and fix a typo.
2632
2633 2007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
2634
2635 * NEWS (2.3a+): Add entry for recent .output file lookahead set fix.
2636 * doc/bison.texinfo (Understanding): Remove a bogus lookahead set in
2637 the example .output text.
2638 * tests/regression.at (Extra lookahead sets in report): Improve wording
2639 of comments.
2640
2641 2007-10-17 Wojciech Polak <polak@gnu.org>
2642
2643 * src/print-xml.c (print_grammar): Renamed
2644 <terminal> and <nonterminal> attributes:
2645 "type" to "number" and "symbol" to "name".
2646 * data/xslt/xml2text.xsl (xsl:template match="terminal"):
2647 Use new attribute names.
2648 (xsl:template match="nonterminal"): Likewise.
2649 * data/xslt/xml2xhtml.xsl: Likewise.
2650
2651 2007-10-17 Joel E. Denny <jdenny@ces.clemson.edu>
2652
2653 * doc/bison.texinfo (Bison Options): Add entry for --print-datadir.
2654 (Option Cross Key): Likewise.
2655
2656 * src/print-xml.c (print_core): Don't print a reduction's lookahead set
2657 next to an item whose dot is not at the end of the RHS even if it
2658 happens to be associated with the same rule.
2659 * src/print.c (print_core): Likewise.
2660 * tests/conflicts.at (Unresolved SR Conflicts): Update output.
2661 (Resolved SR Conflicts): Update output.
2662 * tests/regression.at (Extra lookahead sets in report): New test case.
2663
2664 2007-10-11 Wojciech Polak <polak@gnu.org>
2665
2666 * src/print-xml.c (print_core): Remove item set
2667 redundancy.
2668 * data/xslt/bison.xsl (bison:ruleNumber): New key.
2669 Improve processing time. Suggested by Joel E. Denny.
2670 * data/xslt/xml2dot.xsl (xsl:template name="escape"):
2671 Write xsl:param "required" attribute as comment.
2672 * data/xslt/xml2text.xsl (xsl:template match="item"): New.
2673 (xsl:template match="rule"): Support new reduced itemset.
2674 (xsl:template match="point"): Remove.
2675 * data/xslt/xml2xhtml.xsl: Likewise.
2676
2677 2007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
2678
2679 * src/getargs.c (version): Update copyright year.
2680
2681 2007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
2682
2683 Make xml2dot.xsl and --graph produce the same output.
2684 * data/xslt/xml2dot.xsl (xsl:template match="rule"): Use a `&#10;'
2685 instead of a `\n'. That is, don't add escapes yet or they'll be doubly
2686 escaped later.
2687 (xsl:template name="output-node"): Use the new escape template instead
2688 of the string-replace template directly.
2689 (xsl:template name="output-edge"): Likewise.
2690 (xsl:template name="escape"): New, escapes backslashes and newlines in
2691 addition to quotation marks.
2692 * src/graphviz.c (start_graph, output_node, output_edge): Add
2693 whitespace to output for legibility.
2694
2695 Make xml2text.xsl and --report produce the same output, and remove the
2696 XML "conflicts" element since a conflict summary is easily extracted
2697 from the automaton.
2698 * data/xslt/bison.xsl: New.
2699 (xsl:template match="state" mode="bison:count-conflicts): New.
2700 * data/xslt/xml2text.xsl: Import bison.xsl.
2701 (xsl:template match="bison-xml-report"): Instead of styling the
2702 "conflicts" element, style the "automaton" element with mode
2703 "conflicts". Unlike the former, the latter lists S/R and R/R
2704 conflicts for a state on the same line.
2705 (xsl:template match="conflicts"): Remove.
2706 (xsl:template match="conflict"): Remove.
2707 (xsl:template match="terminal"): Line-wrap the list of rules in which
2708 the terminal is used.
2709 (xsl:template match="nonterminal"): Likewise for nonterminals.
2710 (xsl:template match="automaton" mode="conflicts"): New.
2711 (xsl:template match="state" mode="conflicts"): New.
2712 (xsl:template name="line-wrap"): New.
2713 (xsl:template name="ws-search"): New.
2714 * data/xslt/xml2xhtml.xsl: Import bison.xsl.
2715 (xsl:template match="bison-xml-report"): Instead of styling the
2716 "conflicts" element, style the "automaton" element with mode
2717 "conflicts."
2718 (xsl:template match="conflicts"): Remove.
2719 (xsl:template match="conflict"): Remove.
2720 (xsl:template match="automaton" mode="conflicts"): New.
2721 (xsl:template match="state" mode="conflicts): New.
2722 * src/conflicts.c (conflicts_output_xml): Remove.
2723 * src/conflicts.h (conflicts_output_xml): Remove prototype.
2724 * src/print-xml.c (print_xml): Don't invoke conflicts_output_xml.
2725 * src/print.c (print_grammar): Consistently wrap at the 66th column so
2726 the corresponding XSLT is easier. Also, never wrap between a word and
2727 the comma that follows it.
2728
2729 2007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
2730
2731 Improve C++ namespace support. Discussed starting at
2732 <http://lists.gnu.org/archive/html/help-bison/2007-09/msg00016.html>.
2733 * data/c++.m4: (b4_namespace_ref, b4_namespace_open,
2734 b4_namespace_close): New macros that interpret the %define variable
2735 "namespace" so its value can contain "::" to indicate nested
2736 namespaces.
2737 * data/glr.cc (b4_namespace): Don't define, and replace all uses with
2738 the above macros.
2739 * data/lalr1.cc (b4_namespace): Likewise.
2740 * data/location.cc (b4_namespace): Likewise.
2741 * doc/bison.texinfo (Decl Summary): Move `%define push_pull' entry
2742 inside a new table in the general %define entry. Document `%define
2743 namespace' there as well. Point the %name-prefix entry to it since it
2744 explains it more completely in the case of C++.
2745 (C++ Bison Interface): Mention `%define namespace' instead of
2746 %name-prefix.
2747 (Table of Symbols): Remove the `%define push_pull' entry. The %define
2748 entry suffices.
2749 * tests/c++.at (Relative namespace references): New test case.
2750 (Absolute namespace references): New test case.
2751 (Syntactically invalid namespace references): New test case.
2752 * tests/input.at (C++ namespace reference errors): New test case.
2753
2754 2007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
2755
2756 Add syncline support and location accessor to internal %define
2757 interfaces.
2758 * data/bison.m4 (b4_percent_define_get_loc): New.
2759 (b4_percent_define_get_syncline): New.
2760 (b4_percent_define_flag_if): Use b4_percent_define_get_loc.
2761 (b4_percent_define_default): Record defining location as line 1 rather
2762 than 0 for the sake of synchronizing #line's, and define
2763 b4_percent_define_syncline(VARIABLE).
2764 (b4_percent_define_check_values): Use b4_percent_define_get_loc.
2765 * src/muscle_tab.c (muscle_syncline_grow): New.
2766 (muscle_code_grow): Use muscle_syncline_grow.
2767 (muscle_percent_define_insert): Use muscle_percent_define_get_loc, and
2768 define b4_percent_define_syncline(VARIABLE).
2769 (muscle_percent_define_get_loc): New.
2770 (muscle_percent_define_get_syncline): New.
2771 (muscle_percent_define_flag_if): Use muscle_percent_define_get_loc, and
2772 remove some unused variables.
2773 (muscle_percent_define_default): Record defining location as line 1
2774 rather than 0 for the sake of synchronizing #line's, and define
2775 b4_percent_define_syncline(VARIABLE).
2776 (muscle_percent_define_check_values): Use
2777 muscle_percent_define_get_loc.
2778 * src/muscle_tab.h (muscle_percent_define_get_loc): Prototype.
2779 (muscle_percent_define_get_syncline): Prototype.
2780 * tests/skeletons.at (%define Boolean variables: invalid skeleton
2781 defaults): Update output for location change.
2782 (Complaining during macro argument expansion): Extend to test
2783 b4_percent_define_get_loc and b4_percent_define_get_syncline errors.
2784
2785 2007-10-07 Joel E. Denny <jdenny@ces.clemson.edu>
2786
2787 Fix some error-reporting macro bugs.
2788 * data/bison.m4 (b4_cat): New.
2789 (b4_error, b4_error_at): Use b4_cat to send error directives directly
2790 to stdout so they don't become arguments to other macros. Update
2791 comments and add examples.
2792 (b4_warn, b4_warn_at, b4_complain, b4_complain_at): Update comments and
2793 add examples.
2794 (b4_fatal, b4_fatal_at): Likewise, and invoke m4_exit(1) immediately
2795 after printing the error directive so that M4 doesn't report subsequent
2796 problems that are induced by this problem.
2797 * src/scan-skel.l: Recognize @` digraph outside of directive arguments
2798 instead of just in them. Recognize @\n in both places. Both expand to
2799 the empty string. Needed by b4_cat.
2800 * tests/skeletons.at (Complaining during macro argument expansion):
2801 New test case.
2802 (Fatal errors make M4 exit immediately): New test case.
2803
2804 2007-10-04 Joel E. Denny <jdenny@ces.clemson.edu>
2805
2806 Implement --print-datadir.
2807 * src/getargs.c (usage): Mention.
2808 (PRINT_DATADIR_OPTION): New anonymous enum member.
2809 (long_options): Add entry for it.
2810 (getargs): Add case for it calling compute_pkgdatadir.
2811 * src/output.c (output_skeleton): Encapsulate data directory
2812 computation from here...
2813 (prepare): ... and from here...
2814 (compute_pkgdatadir): ... into this new function.
2815 * src/output.h (compute_pkgdatadir): Prototype.
2816
2817 2007-09-29 Joel E. Denny <jdenny@ces.clemson.edu>
2818
2819 * src/print-xml.c (escape_bufs): New static global variable
2820 replacing...
2821 (xml_escape_n): ... the static local variable buf here.
2822 (print_xml): Free memory for escape_bufs.
2823 * src/reduce.c (reduce_xml): XML-escape terminal symbol tags.
2824
2825 2007-09-25 Joel E. Denny <jdenny@ces.clemson.edu>
2826
2827 Replace `%push-parser' and `%push-pull-parser' with
2828 `%define push_pull "push"' and `%define push_pull "both"'.
2829 `%define push_pull "pull"' is the default.
2830 * doc/bison.texinfo (Push Decl, Push Parser Function,
2831 Pull Parser Function, Parser Create Function, Parser Delete Function):
2832 Update declarations.
2833 (Decl Summary, Table of Symbols): Replace %push-parser and
2834 %push-pull-parser entries with a %define push_pull entry.
2835 * data/bison.m4 (b4_percent_define_check_values): New macro.
2836 (b4_pull_if, b4_push_if, b4_use_push_for_pull_if): Move these
2837 definitions...
2838 * data/c.m4 (b4_identification): ... and the YYPUSH and YYPULL cpp
2839 definitions...
2840 * data/push.c: ... to here and compute them from the value of the
2841 %define variable push_pull.
2842 * data/c-skel.m4: Instead of choosing the push.c skeleton for push
2843 parsing requests here...
2844 * data/yacc.c: ... hack this to switch to push.c any time
2845 b4_use_push_pull_flag or the %define variable push_pull is set. This
2846 will go away when we mv push.c yacc.c.
2847 * data/c++-skel.m4, data/glr.c, data/java-skel.m4: Don't report that
2848 push parsing is not supported since unused %define variables are
2849 reported anyway.
2850 * src/getargs.c, src/getargs.h (pull_parser, push_parser): Remove.
2851 * src/muscle_tab.h (muscle_percent_define_check_values): Update
2852 comments for consistency with b4_percent_define_check_values.
2853 * src/output.c (prepare): Don't insert b4_pull_flag and b4_push_flag
2854 muscles.
2855 * src/parse-gram.y (PERCENT_PUSH_PARSER, PERCENT_PUSH_PULL_PARSER):
2856 Remove.
2857 (prologue_declaration): Remove %push-parser and %push-pull-parser
2858 rules.
2859 * src/scan-gram.l (%push-parser, %push-pull-parser): Remove rules.
2860 * tests/calc.at: Update declarations.
2861 * tests/input.at (%define enum variables): New test case.
2862 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update
2863 declaration.
2864 (Push Parsing: Multiple impure instances): Update declaration.
2865 (Push Parsing: Unsupported Skeletons): New test case.
2866 * tests/torture.at (Exploding the Stack Size with Alloca): Update
2867 declaration.
2868 (Exploding the Stack Size with Malloc): Update declaration.
2869
2870 2007-09-24 Wojciech Polak <polak@gnu.org>
2871
2872 Add XSLT transformations.
2873
2874 * data/xslt/xml2dot.xsl: Transform XML into DOT.
2875 * data/xslt/xml2text.xsl: Transform XML into plain text.
2876 * data/xslt/xml2xhtml.xsl: Transform XML into XHTML.
2877 * data/Makefile.am (xsltdir): New variable.
2878 (dist_xslt_DATA): Add xslt/*.xsl files.
2879
2880 2007-09-23 Paul Eggert <eggert@cs.ucla.edu>
2881
2882 * src/conflicts.c (log_resolution): Fix indenting bugs I introduced.
2883 Problem reported by Wojciech Polak.
2884 * src/print-xml.c (xml_puts): Work even if LEVEL exceeds INT_MAX/2.
2885 (xml_printf): Undo change I made on 21 September; that is,
2886 indent 2 spaces, not 1.
2887
2888 2007-09-23 Joel E. Denny <jdenny@ces.clemson.edu>
2889
2890 Pacify ./configure --enable-gcc-warnings.
2891 * src/print-xml.c, src/print-xml.h (xml_puts): Make third argument
2892 `char const *' instead of `char *'.
2893 * src/state.c (state_rule_lookahead_tokens_print_xml): Remove unused
2894 local variable `sep'.
2895
2896 2007-09-21 Paul Eggert <eggert@cs.ucla.edu>
2897
2898 * src/gram.c (rule_rhs_print_xml): Now static, since it isn't used
2899 elsewhere.
2900 * src/print-xml.c: Prefer "const" after types; that's more consistent.
2901 (xml_printf): Indent just 1 space for level.
2902 (e_char, xlate_char): Remove.
2903 (xml_escape_string): Rewrite to avoid undefined behavior (used
2904 storage that was freed from the stack).
2905 (xml_escape_n): Don't bother checking for subscript error.
2906
2907 2007-09-21 Wojciech Polak <polak@gnu.org>
2908
2909 Add Bison XML Automaton Report.
2910
2911 Add support for an -x option to generate an XML report.
2912 It is not documented yet.
2913 * src/print-xml.c: New file.
2914 * src/print-xml.h: Likewise.
2915 * lib/timevar.def (TV_XML): New var.
2916 * src/Makefile.am (bison_SOURCES): Add print-xml.c, print-xml.h.
2917 * src/conflicts.c: Include print-xml.h.
2918 (solved_conflicts_xml_obstack): New var.
2919 (log_resolution, conflicts_solve, conflicts_free):
2920 Add support for XML report.
2921 (conflicts_output_val): New function.
2922 * src/conflicts.h (conflicts_output_val): New decl.
2923 * src/files.c (spec_xml_file): New var.
2924 (compute_output_file_names, output_file_names_free): Add XML support.
2925 * src/files.h (spec_xml_file): New decl.
2926 * src/getargs.c (xml_flag): New var.
2927 (usage, short_options, long_options, getargs): Add XML support.
2928 * src/getargs.h (xml_flag): New decl.
2929 * src/gram.c: Include print-xml.h.
2930 (rule_lhs_print_xml, rule_rhs_print_xml):
2931 (grammar_rules_partial_print_xml, grammar_rules_print_xml):
2932 New functions.
2933 * src/gram.h: Declare external ones.
2934 * src/main.c: Include print-xml.h.
2935 (main): Add XML support.
2936 * src/reduce.c: Include print-xml.h.
2937 (reduce_xml): New function.
2938 * src/reduce.h: Declare it.
2939 * src/state.c: Include print-xml.h.
2940 (state_new): Add XML support.
2941 (state_rule_lookahead_tokens_print_xml): New function.
2942 * src/state.h: Declare it.
2943 (struct state): New member solved_conflicts_xml.
2944 * src/symtab.c (symbol_class_get_string): New function.
2945 * src/symtab.h: Declare it.
2946
2947 2007-09-21 Paul Eggert <eggert@cs.ucla.edu>
2948
2949 * GNUmakefile: Switch to coreutils's version.
2950 * bootstrap: Likewise.
2951 * Makefile.cfg: Adjust to new GNUmakefile.
2952 * README-hacking: Likewise.
2953
2954 Import from gnulib:
2955
2956 2006-08-18 Paul Eggert <eggert@cs.ucla.edu>
2957 Bruno Haible <bruno@clisp.org>
2958
2959 * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
2960 and is a script that invokes bison. Tighten the code. Add comments.
2961
2962 2007-08-28 Joel E. Denny <jdenny@ces.clemson.edu>
2963
2964 Spell "boolean" as "Boolean". Reported by Akim Demaille.
2965 * data/bison.m4 (b4_percent_define_flag_if): Fix complaint.
2966 * doc/bison.texinfo (Decl Summary): Fix.
2967 * src/muscle_tab.c (muscle_percent_define_flag_if): Fix complaint.
2968 * tests/input.at (Boolean %define variables): Update output.
2969 * tests/skeletons.at (%define boolean variables: invalid skeleton
2970 defaults): Rename to...
2971 (%define Boolean variables: invalid skeleton defaults): ... this and
2972 update output.
2973
2974 2007-08-17 Joel E. Denny <jdenny@ces.clemson.edu>
2975
2976 In impure push mode, don't allow more than one yypstate to be allocated
2977 since multiple impure parsers would corrupt yynerrs.
2978 * data/push.c (yypstate_allocated): New static global variable
2979 initialized to 0.
2980 (yypull_parse): If yypstate_new returns 0, don't report it as memory
2981 exhaustion if yypstate_allocated is 1, but still return 2.
2982 (yypstate_new): Invoke yyerror and return 0 if yypstate_allocated is
2983 already 1. Otherwise, set it to 1.
2984 (yypstate_delete): Set it to 0.
2985 * tests/push.at (Push Parsing: Multiple impure instances): New test
2986 case.
2987
2988 2007-08-17 Bob Rossi <bob@brasko.net>
2989
2990 * doc/bison.texinfo (Push Decl): Document the push parser.
2991 (Table of Symbols): Ditto.
2992 (Pure Decl): Ditto.
2993 (Decl Summary): Ditto.
2994 (Multiple Parsers, Push Parser Function, Pull Parser Function,
2995 Parser Create Function, Parser Delete Function):
2996 Add new push parser symbols.
2997 (Table of Symbols): Document push-parser, push-pull-parser,
2998 yypush_parse, yypull_parse, yypstate_new and yypstate_delete.
2999
3000 2007-08-15 Paul Eggert <eggert@cs.ucla.edu>
3001
3002 Update to GPLv3.
3003 * doc/gpl-3.0.texi: New file.
3004 * doc/gpl.texi: Remove.
3005 * COPYING, GNUmakefile, HACKING, Makefile.am, Makefile.cfg:
3006 * Makefile.maint, NEWS, PACKAGING, README, README-alpha:
3007 * README-hacking, TODO, bootstrap, bootstrap.conf:
3008 * configure.ac, data/Makefile.am, data/README, data/bison.m4:
3009 * data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4:
3010 * data/glr.c, data/glr.cc, data/java-skel.m4, data/java.m4:
3011 * data/lalr1.cc, data/lalr1.java, data/location.cc:
3012 * data/push.c, data/yacc.c, data/m4sugar/m4sugar.m4:
3013 * djgpp/Makefile.maint, djgpp/README.in, djgpp/config.bat:
3014 * djgpp/config.sed, djgpp/config.site, djgpp/config_h.sed:
3015 * djgpp/djunpack.bat, djgpp/subpipe.c, djgpp/subpipe.h:
3016 * djgpp/testsuite.sed, doc/Makefile.am, doc/bison.texinfo:
3017 * doc/fdl.texi, doc/refcard.tex, etc/Makefile.am, etc/README:
3018 * etc/bench.pl.in, examples/Makefile.am, examples/extexi:
3019 * examples/calc++/Makefile.am, lib/Makefile.am, lib/abitset.c:
3020 * lib/abitset.h, lib/bbitset.h, lib/bitset.c, lib/bitset.h:
3021 * lib/bitset_stats.c, lib/bitset_stats.h, lib/bitsetv-print.c:
3022 * lib/bitsetv-print.h, lib/bitsetv.c, lib/bitsetv.h:
3023 * lib/ebitset.c, lib/ebitset.h, lib/get-errno.c:
3024 * lib/get-errno.h, lib/lbitset.c, lib/lbitset.h:
3025 * lib/libiberty.h, lib/main.c, lib/subpipe.c, lib/subpipe.h:
3026 * lib/timevar.c, lib/timevar.def, lib/timevar.h:
3027 * lib/vbitset.c, lib/vbitset.h, lib/yyerror.c:
3028 * m4/c-working.m4, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4:
3029 * m4/timevar.m4, src/LR0.c, src/LR0.h, src/Makefile.am:
3030 * src/assoc.c, src/assoc.h, src/closure.c, src/closure.h:
3031 * src/complain.c, src/complain.h, src/conflicts.c:
3032 * src/conflicts.h, src/derives.c, src/derives.h, src/files.c:
3033 * src/files.h, src/flex-scanner.h, src/getargs.c:
3034 * src/getargs.h, src/gram.c, src/gram.h, src/graphviz.c:
3035 * src/lalr.c, src/lalr.h, src/location.c, src/location.h:
3036 * src/main.c, src/muscle_tab.c, src/muscle_tab.h:
3037 * src/nullable.c, src/nullable.h, src/output.c, src/output.h:
3038 * src/parse-gram.c, src/parse-gram.h, src/parse-gram.y:
3039 * src/print.c, src/print.h, src/print_graph.c:
3040 * src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c:
3041 * src/reduce.h, src/relation.c, src/relation.h:
3042 * src/revision.h, src/scan-code.h, src/scan-code.l:
3043 * src/scan-gram.h, src/scan-gram.l, src/scan-skel.h:
3044 * src/scan-skel.l, src/state.c, src/state.h, src/symlist.c:
3045 * src/symlist.h, src/symtab.c, src/symtab.h, src/system.h:
3046 * src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h:
3047 * tests/Makefile.am, tests/actions.at, tests/c++.at:
3048 * tests/calc.at, tests/conflicts.at, tests/cxx-type.at:
3049 * tests/existing.at, tests/glr-regression.at:
3050 * tests/headers.at, tests/input.at, tests/java.at:
3051 * tests/local.at, tests/output.at, tests/push.at:
3052 * tests/reduce.at, tests/regression.at, tests/sets.at:
3053 * tests/skeletons.at, tests/synclines.at, tests/testsuite.at:
3054 * tests/torture.at:
3055 Update to GPLv3.
3056
3057 2007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
3058
3059 Get rid of broken %no-parser, -n, and --no-parser implementation and
3060 documentation.
3061 * TODO: Don't mention them.
3062 * doc/bison.1: Likewise.
3063 * doc/bison.texinfo (Decl Summary): Likewise.
3064 (Bison Options): Likewise.
3065 (Option Cross Key): Likewise.
3066 * src/getargs.c (no_parser_flag): Remove global variable.
3067 (usage): Don't print description of -n and --no-parser.
3068 (long_options): Remove --no-parser entry here.
3069 (getargs): Remove -n case in the switch here.
3070 * src/getargs.h (no_parser_flag): Remove extern.
3071 * tests/regression.at (Web2c Actions): Remove comment that mentions
3072 --no-parser.
3073
3074 2007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
3075
3076 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Do not
3077 name user variables starting with `yy'. Just pass NULL instead of a
3078 dummy local &yylval to yypush_parse.
3079 * tests/torture.at (AT_DATA_STACK_TORTURE): Do not name user variables
3080 starting with `yy'.
3081
3082 2007-08-03 Joel E. Denny <jdenny@ces.clemson.edu>
3083
3084 * data/yacc.c (yyexhaustedlab): Define it when YYERROR_VERBOSE is
3085 true since it's then always used regardless of whether yyoverflow is
3086 defined. Reported by Christian Burger at
3087 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00031.html>.
3088 * THANKS: Add Christian Burger.
3089
3090 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
3091 node names: say "Decl Summary" not "Bison Declaration Summary".
3092
3093 2007-07-28 Joel E. Denny <jdenny@ces.clemson.edu>
3094
3095 * src/muscle_tab.c (muscle_percent_define_flag_if): In order to
3096 determine whether this function has already complained about an invalid
3097 value for a %define boolean variable, don't check whether Bison has
3098 ever examined the value. As written, the check was a tautology.
3099 Instead, record and check for this complaint using a separate muscle.
3100
3101 2007-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
3102
3103 Fix push parsing memory leak reported by Brandon Lucia at
3104 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00032.html>.
3105 * THANKS: Add Brandon Lucia.
3106 * data/push.c (yypstate_delete): Free the stack if it was reallocated
3107 but the parse never completed and thus freed it.
3108 * tests/Makefile.am (TESTSUITE_AT): Add push.at.
3109 * tests/testsuite.at: Include push.at.
3110 * test/push.at: New.
3111 (Push Parsing: Memory Leak for Early Deletion): New test case.
3112
3113 2007-07-17 Joel E. Denny <jdenny@ces.clemson.edu>
3114
3115 Improve handling of multiple S/R conflicts in the same state and of S/R
3116 conflicts involving multiple reductions.
3117 * src/conflicts.c (resolve_sr_conflict): Don't assign the error action
3118 set for a state here or Bison will abort if it is reassigned on a
3119 later conflicted reduction in the same state.
3120 Similarly, don't finalize and assign the solved conflicts report here
3121 or it will be lost if it is reassigned on a later conflicted reduction
3122 in the same state.
3123 (set_conflicts): Instead, assign them both here after all S/R conflicts
3124 in the state have been fully examined.
3125 * src/print.c (shift_set): Rename to...
3126 (no_reduce_set): ... this.
3127 (print_reductions): Update for rename, and add %nonassoc error action
3128 tokens to no_reduce_set so that, when printing the first remaining
3129 reduction on an error action token, the reduction is enclosed in
3130 brackets.
3131 (print_results): Update for rename.
3132 * tests/conflicts.at (Solved conflicts report for multiple reductions
3133 in a state): New test case.
3134 (%nonassoc error actions for multiple reductions in a state): New test
3135 case.
3136
3137 * src/main.c (main): Don't depend on C99 features.
3138
3139 2007-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
3140
3141 * build-aux/.cvsignore: Add compile.
3142 * lib/.cvsignore: Add charset.alias, ref-add.sed, ref-del.sed, and
3143 uniwidth.
3144
3145 2007-07-10 Joel E. Denny <jdenny@ces.clemson.edu>
3146
3147 * bootstrap (slurp): Create target directories that don't exist.
3148 Specifically, we need lib/uniwidth/ because of recent Gnulib changes.
3149
3150 2007-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
3151
3152 * LR0.c (new_itemsets): Fix wording in comments: say item index rather
3153 than item number.
3154 * closure.c (closure): Likewise.
3155 * state.h (reductions): Comment sorting of rules.
3156 (state): Comment sorting of items.
3157
3158 2007-07-02 Joel E. Denny <jdenny@ces.clemson.edu>
3159
3160 Fix C++ test cases after recent Gnulib changes. Discussed starting at
3161 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00000.html>.
3162 * examples/calc++/Makefile.am (DEFAULT_INCLUDES): Override Automake's
3163 definition in order to avoid Gnulib headers since we don't use config.h
3164 here.
3165 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Use AT_DATA_GRAMMAR
3166 rather than AT_DATA so that config.h is included.
3167
3168 2007-07-01 Joel E. Denny <jdenny@ces.clemson.edu>
3169
3170 * data/glr.c (yy_yypstack, yypstates, yypdumpstack): Use YYFPRINTF
3171 instead of fprintf. Guard these functions with #if YYDEBUG instead of
3172 #ifdef YYDEBUG for consistency with all other uses of YYDEBUG in Bison
3173 and so that YYFPRINTF is guaranteed to be defined here.
3174
3175 2007-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
3176
3177 * src/muscle_tab.c (muscle_percent_define_invalid_value): Replace
3178 with...
3179 (muscle_percent_define_check_values): ... this more helpful function.
3180 Again, it's not used yet, but it will be.
3181 * src/muscle_tab.h: Likewise.
3182
3183 Improve some comments in parser table construction.
3184 * src/LR0.c (new_itemsets): Explain sorting of itemset and kernel_base.
3185 (generate_states): Don't mention ruleset, which is internal to closure.
3186 * src/closure.c (closure): Explain sorting of core and itemset, which
3187 is required for this function to behave correctly.
3188 * src/closure.h (closure): Mention sorting.
3189
3190 2007-05-28 Joel E. Denny <jdenny@ces.clemson.edu>
3191
3192 * src/lalr.c (state_lookahead_tokens_count): For code readability,
3193 move the check for disabled transitions to an aver since conflict
3194 resolution hasn't happened yet.
3195
3196 * src/lalr.c (state_lookahead_tokens_count): Remove the check that
3197 labels a state as inconsistent just because it has error transitions.
3198 The original form of this check appeared in revision 1.1 of lalr.c,
3199 which was committed on 1991-12-21. Now (at least), changing the
3200 consistency label on such a state appears to have no useful effect in
3201 any of the places it is examined, which I enumerate below. The key
3202 point to understanding each item in this enumeration is that a state
3203 with an error transition is labelled consistent in the first place only
3204 if it has no rules, so the check cannot matter for states that have
3205 rules. (1) Labelling a state as inconsistent will cause set_conflicts
3206 to try to identify its conflicts, and a state must have *rules* to have
3207 conflicts. (2) Labelling a state as inconsistent will affect how
3208 action_row sets the default *rule* for the state. (3) Labelling a
3209 state as inconsistent will cause build_relations to add lookback edges
3210 to *rules* in that state.
3211 * src/state.h (struct state): Word the comment for member consistent
3212 more carefully.
3213
3214 2007-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
3215
3216 Don't depend on C99 features.
3217 * src/conflicts.c (conflicts_update_state_numbers): Fix for-loop.
3218 * src/lalr.c (lalr_update_state_numbers): Fix for-loop.
3219 * src/reader.c (check_and_convert_grammar): Fix for-loop.
3220 * src/state.c (state_mark_reachable_states): Fix for-loop.
3221 (state_remove_unreachable_states): Fix for-loop.
3222
3223 Don't widen struct state with member reachable just to temporarily
3224 record reachability. Instead, use a local bitset.
3225 * src/state.h (struct state): Remove member.
3226 * src/state.c (state_new): Don't initialize it.
3227 (state_mark_reachable_states): Rename to...
3228 (state_record_reachable_states): ... this, and use bitset.
3229 (state_remove_unreachable_states): Use bitset.
3230
3231 2007-05-26 Joel E. Denny <jdenny@ces.clemson.edu>
3232
3233 * src/Makefile.am (yacc): Quote target action commands properly so
3234 that the yacc script isn't corrupt. Reported by Hans Aberg at
3235 <http://lists.gnu.org/archive/html/bug-bison/2007-05/msg00003.html>.
3236
3237 * data/glr.c (yylval): As in yacc.c, don't extern in the header for
3238 the case of pure parsers. Reported by Frans Englich at
3239 <http://lists.gnu.org/archive/html/help-bison/2007-05/msg00018.html>.
3240 * THANKS: Add Frans Englich.
3241
3242 * NEWS (2.3a+): In the %code entry, reference section `Bison
3243 Declaration Summary' from the manual now since the %code summary has
3244 moved there.
3245 * doc/bison.texinfo (Prologue Alternatives): Mention that directives
3246 in the rules section must be terminated by semicolons.
3247
3248 2007-05-20 Joel E. Denny <jdenny@ces.clemson.edu>
3249
3250 Extend the front-end API for %define variables to more completely
3251 mirror the back-end. This will be useful in the future.
3252 * data/bison.m4 (b4_percent_define_get, b4_percent_define_ifdef):
3253 Update comments to mention the new front-end counterparts of these
3254 macros.
3255 * src/muscle_tab.c (MUSCLE_COMMON_DECODE): New macro with common code
3256 for muscle_string_decode and muscle_location_decode.
3257 (muscle_string_decode): New static function.
3258 (muscle_location_decode): Use MUSCLE_COMMON_DECODE.
3259 (muscle_percent_define_get, muscle_percent_define_ifdef): New
3260 functions.
3261 (muscle_percent_define_flag_if): Use muscle_percent_define_ifdef and
3262 muscle_percent_define_get to mimic the b4_percent_define_flag_if
3263 implementation more closely.
3264 (muscle_percent_define_invalid_value): New function.
3265 * src/muscle_tab.h (muscle_percent_define_get,
3266 muscle_percent_define_ifdef, muscle_percent_define_invalid_value):
3267 Prototype.
3268
3269 2007-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
3270
3271 * NEWS (2.3a+): Mention yesterday's state-removal change.
3272 (2.3a): Remove the %language entry, which was added after 2.3a.
3273 * src/LR0.c, src/closure.c, src/closure.h, src/conflicts.c,
3274 src/conflicts.h, src/lalr.c, src/lalr.h, src/print.c,
3275 src/print_graph.c, src/state.c, src/state.h, tests/conflicts.at,
3276 tests/existing.at: Update copyright date.
3277
3278 2007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
3279
3280 If conflict resolution makes states unreachable, remove those states,
3281 report rules that are then unused, and don't report conflicts in those
3282 states.
3283 * src/conflicts.c, src/conflicts.h (conflicts_update_state_numbers):
3284 New global function.
3285 * src/lalr.c, src/lalr.h (lalr_update_state_numbers): New global
3286 function.
3287 * src/main.c (main): After conflict resolution, remove the unreachable
3288 states and update all data structures that reference states by number.
3289 * src/state.c (state_new): Initialize each state's reachable member to
3290 false.
3291 (state_mark_reachable_states): New static function.
3292 (state_remove_unreachable_states): New global function.
3293 * src/state.h (struct state): Add member bool reachable.
3294 (state_remove_unreachable_states): Prototype.
3295 * tests/conflicts.at (Unreachable States After Conflict Resolution):
3296 New test case.
3297 * tests/existing.at (GNU pic Grammar): Update test case output now that
3298 an unused rule is discovered.
3299
3300 2007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
3301
3302 Minor code cleanup in parser table construction.
3303 * src/LR0.c (new_itemsets): Use item_number_is_symbol_number.
3304 (new_itemsets, save_reductions): Update for rename to nitemset.
3305 * src/closure.c (nritemset): Rename to...
3306 (nitemset): ... this since the "r" appears to meaningless and isn't
3307 used in the comments.
3308 (closure): Update for rename.
3309 * src/closure.h (nritemset): Update extern to...
3310 (nitemset): ... this.
3311 * src/lalr.c (LA): Fix a typo in comments.
3312 * src/print.c (print_core): Update for rename to nitemset.
3313 * src/print_graph.c (print_graph): Likewise.
3314 * src/state.h: Fix some typos in header comments.
3315
3316 2007-04-04 Paul Eggert <eggert@cs.ucla.edu>
3317
3318 * THANKS: Use ASCII for Sebastien Fricker's name. Bison source
3319 still sticks to ASCII. Sorry!
3320
3321 * README-hacking: New file, taken mostly from coreutils, with changes
3322 for Bison. Contains much of the contents of:
3323 * README-cvs: Remove.
3324 * bootstrap: Sync from gnulib.
3325 * build-aux/.cvsignore: Remove *.t, mkinstalldirs.
3326 * lib/.cvsignore: Add wchar.h, wctype.h. Remove exit.h.
3327
3328 2007-03-10 Joel E. Denny <jdenny@ces.clemson.edu>
3329
3330 * doc/bison.texinfo (Destructor Decl): Fix typo reported by Sebastian
3331 Setzer.
3332 (Java Differences): Fix some typos.
3333 * THANKS: Add Sebastian Setzer.
3334
3335 2007-03-07 Paolo Bonzini <bonzini@gnu.org>
3336
3337 * data/java.m4 (b4_single_class_if): Remove.
3338 (b4_abstract_if): Look at "%define abstract".
3339 (b4_lexer_if): New.
3340 (b4_union_name): Rename...
3341 (b4_yystype): ... to this. Map to "%define stype".
3342 (b4_rhs_value, b4_parse_param_decl, b4_lex_param_decl,
3343 b4_maybe_throws): Fix quoting.
3344 (b4_lex_param_call): Move below to keep b4_*_param_decl close.
3345 * data/lalr1.java (Lexer interface): Always define.
3346 (Lexer interface within parser class): Remove.
3347 (YYLexer class): New, used when "%code lexer" is present.
3348 (constructor): When "%code lexer" is used, pass %lex-param
3349 to the lexer constructor.
3350 (yylex, yyparse): Remove %lex-param from method invocations
3351 (YYStack, yyaction, yyparse): Rename b4_union_name to b4_yystype.
3352
3353 * doc/bison.texinfo (Java Bison Interface): Mention "%define
3354 abstract". Rename "%define union_name" to "%define stype".
3355 Rename method names according to previous patch.
3356 (Java Scanner Interface): Describe "%code lexer" instead of
3357 "%pure-parser" and "%define single_class".
3358 (Java Differences): Mention "%code lexer".
3359
3360 * tests/java.at (_AT_DATA_JAVA_CALC_Y): Remove final argument.
3361 Include scanner here, using macros from tests/local.at.
3362 (AT_DATA_CALC_Y): Remove final argument.
3363 (_AT_CHECK_JAVA_CALC): Likewise.
3364 (AT_CHECK_JAVA_CALC): Likewise. Test all four combinations
3365 of %locations and %error-verbose.
3366 (main): Test with and without %lex-param.
3367 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_LEXPARAM_IF.
3368 (AT_BISON_OPTION_POPDEFS): Pop it.
3369
3370 2007-03-07 Juan Manuel Guerrero <juan.guerrero@gmx.de>
3371
3372 DJGPP spefic issue. Inhibit the use of disallowed characters for
3373 file name genertion on Win98, WinXP, etc. These are |<>":?*\
3374 and concern testsuite case 46.
3375 * Makefile.am: djgpp/testsuite.sed added to EXTRA_DIST
3376 * djgpp/testsuite.sed: Inhibit the use of disallowed characters.
3377 * djgpp/config.bat: Inhibit the use of disallowed characters.
3378
3379 2007-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
3380
3381 Miscellaneous %define and %code cleanup.
3382 * data/bison.m4 (b4_percent_define_flag_if): Correct comments on how
3383 values are interpreted.
3384 * doc/bison.texinfo (Decl Summary): Clean up and extend %define
3385 documentation a little more.
3386 * src/muscle_tab.c (MUSCLE_USER_NAME_CONVERT,
3387 muscle_percent_define_insert, muscle_percent_code_grow): New
3388 functions/macros.
3389 * src/muscle_tab.h (muscle_percent_define_insert,
3390 muscle_percent_code_grow): Prototype.
3391 * src/parse-gram.y (prologue_declaration): Use
3392 muscle_percent_define_insert and muscle_percent_code_grow when parsing
3393 %define and %code directives.
3394
3395 Make it easy to share %define boolean variables between the front-end
3396 and back-end. Though not used yet, this will be useful in the future.
3397 * data/bison.m4 (b4_check_user_names): Rewrite comments to talk about
3398 Bison uses of names rather than just skeleton uses of names.
3399 (b4_percent_define_get, b4_percent_define_ifdef): Rename
3400 b4_percent_define_skeleton_variables(VARIABLE) to
3401 b4_percent_define_bison_variables(VARIABLE).
3402 (b4_percent_code_get, b4_percent_code_ifdef): Rename
3403 b4_percent_code_skeleton_qualifiers(QUALIFIER) to
3404 b4_percent_code_bison_qualifiers(QUALIFIER).
3405 (b4_check_user_names_wrap): Update for renames.
3406 * src/muscle_tab.c, src/muscle_tab.h (muscle_percent_define_flag_if,
3407 muscle_percent_define_default): New functions mimicking
3408 b4_percent_define_flag_if and b4_percent_define_default.
3409
3410 For %define variables, report locations for invalid values and
3411 redefinitions.
3412 * data/bison.m4 (b4_percent_define_flag_if): Read
3413 b4_percent_define_loc(VARIABLE) to report the location of an invalid
3414 value for VARIABLE.
3415 (b4_percent_define_default): Save a special location in
3416 b4_percent_define_loc(VARIABLE) in case the default value for VARIABLE
3417 must later be reported as invalid.
3418 * src/muscle_tab.c (muscle_location_grow, muscle_location_decode): New
3419 functions.
3420 (muscle_percent_define_insert): Record the location of VARIABLE in
3421 muscle percent_define_loc(VARIABLE), and use it to report the previous
3422 location for a redefinition.
3423 (muscle_percent_define_flag_if): Update like b4_percent_define_flag_if.
3424 (muscle_percent_define_default): Update like b4_percent_define_default.
3425 (muscle_grow_user_name_list): Rename to...
3426 (muscle_user_name_list_grow): ... this for consistency and use
3427 muscle_location_grow.
3428 * src/muscle_tab.h (muscle_location_grow): Prototype.
3429 * tests/input.at (%define errors): Update expected output.
3430 * tests/skeletons.at (%define boolean variables: invalid skeleton
3431 defaults): New test case.
3432
3433 2007-02-28 Joel E. Denny <jdenny@ces.clemson.edu>
3434
3435 * src/print.c (lookahead_set, state_default_rule): Remove.
3436 (print_reductions): Replace state_default_rule invocation with
3437 equivalent use of yydefact, which was computed in token_actions in
3438 tables.c.
3439 (print_results): Don't allocate lookahead_set.
3440
3441 2007-02-27 Paolo Bonzini <bonzini@gnu.org>
3442
3443 * data/lalr1.java: Prefix all private members with yy.
3444
3445 2007-02-24 Joel E. Denny <jdenny@ces.clemson.edu>
3446
3447 Use YYFPRINTF instead of fprintf where appropriate. Reported by
3448 Sebastien Fricker at
3449 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00035.html>.
3450 * THANKS: Add Sebastien Fricker.
3451 * data/glr.c, data/push.c, data/yacc.c (yy_reduce_print): Implement.
3452 * doc/bison.texinfo (Tracing): Make it clearer that YYFPRINTF must
3453 accept a variable number of arguments.
3454
3455 2007-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
3456
3457 * bootstrap: Remove occurrences of .#bootmp from lib/Makefile.
3458
3459 2007-02-13 Juan Manuel Guerrero <juan.guerrero@gmx.de>
3460
3461 * djgpp/config.bat: Adjustments concerning the use of autoconf 2.61.
3462 * djgpp/config.sed: Adjustments concerning the use of autoconf 2.61.
3463 * djgpp/config.site: Adjustments concerning the use of autoconf 2.61.
3464
3465 2007-02-11 Paul Eggert <eggert@cs.ucla.edu>
3466
3467 Undo my 2007-02-07 change, switching back to the c-strcase module
3468 introduced in the 2007-02-03 change. Bruno Haible reported that
3469 the 2007-02-07 change would be dangerous in Turkish if we add a
3470 language whose name contains "i", since "i" is not lowercase "I"
3471 in Turkish.
3472 * bootstrap.conf (gnulib_modules): Add c-strcase. Remove strcase.
3473 * lib/.cvsignore: Add c-ctype.c, c-ctype.h, c-strcase.h,
3474 c-strcasecomp.c, c-strncasecmp.c. Remove strcasecmp.c, strncasecmp.c.
3475 * m4/.cvsignore: Remove strcase.m4.
3476 * src/getargs.c: Revert 2007-02-07 change, as follows.
3477 Include c-strcase.h.
3478 (language_argmatch): Use c_strcasecmp rather than strcasecmp.
3479
3480 2007-02-11 Bruno Haible <bruno@clisp.org>
3481
3482 Enable the Java related testsuite tests when the only Java compiler
3483 found is a gcj < 4.3. Discussed at
3484 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00016.html>.
3485 * configure.ac (gt_JAVACOMP): Don't specify a target_version.
3486
3487 2007-02-11 Joel E. Denny <jdenny@ces.clemson.edu>
3488
3489 * data/Makefile.am: Update copyright date.
3490 * data/push.c (yypull_parse): Report memory exhaustion and return 2 if
3491 yypstate_new returns NULL.
3492 (yypstate_new): Return NULL if malloc does.
3493 * src/reader.c (packgram): Move translation of rule actions from the
3494 beginning of packgram to...
3495 (check_and_convert_grammar): ... here right before packgram is invoked
3496 so it's easier to write more complete comments, and remove redundant
3497 code.
3498
3499 2007-02-10 Joel E. Denny <jdenny@ces.clemson.edu>
3500
3501 As in semantic actions, make @$ in %initial-action, %destructor, and
3502 %printer imply %locations.
3503 * src/scan-code.l (SC_SYMBOL_ACTION): Set locations_flag = true when
3504 scanning @$.
3505 * tests/actions.at (AT_CHECK_ACTION_LOCATIONS): New macro supporting...
3506 (@$ in %initial-action implies %locations,
3507 @$ in %destructor implies %locations,
3508 @$ in %printer implies %locations): ... these new test cases.
3509
3510 2007-02-07 Paul Eggert <eggert@cs.ucla.edu>
3511
3512 Undo most of the 2007-02-03 change, switching to the strcase module
3513 now that gnulib strcase has been fixed.
3514 * bootstrap.conf (gnulib_modules): Remove c-strcase. Add strcase.
3515 * lib/.cvsignore: Remove c-ctype.c, c-ctype.h, c-strcase.h,
3516 c-strcasecomp.c, c-strncasecmp.c. Add strcasecmp.c, strncasecmp.c
3517 * m4/.cvsignore: Add strcase.m4.
3518 * src/getargs.c: Revert 2007-02-03 change, as follows.
3519 Don't include c-strcase.h.
3520 (language_argmatch): Use strcasecmp rather than c_strcasecmp.
3521 strcasecmp has "unspecified behavior" outside the POSIX locale,
3522 but it works fine in practice if at least one argument is ASCII,
3523 as is the case in Bison.
3524
3525 2007-02-07 Paolo Bonzini <bonzini@gnu.org>
3526
3527 * tests/java.at: Skip tests if only one of javac/java is present.
3528 Reported by Joel E. Denny.
3529 * tests/atlocal.in: Adjust copyright years.
3530
3531 2007-02-05 Paolo Bonzini <bonzini@gnu.org>
3532
3533 * data/lalr1.java (Stack): Work around old verifiers that disallow
3534 access to the private fields of an inner class, from the outer class.
3535 We can make Stack's fields public because user code doesn't have access
3536 to the instance of Stack used by parse(). Reported by Paul Eggert.
3537
3538 2007-02-03 Paul Eggert <eggert@cs.ucla.edu>
3539
3540 * .cvsignore: Add javacomp.sh, javaexec.sh. Is this really
3541 the right spot for these files?
3542 * bootstrap.conf (gnulib_modules): Add c-strcase.
3543 * lib/.cvsignore: Add c-ctype.c c-ctype.h, c-strcasecomp.c,
3544 c-strncasecmp.c.
3545 * src/getargs.c: Include c-strcase.h.
3546 (language_argmatch): Use c_strcasecmp rather than strcasecmp,
3547 to avoid unspecified behavior.
3548
3549 2007-02-01 Joel E. Denny <jdenny@ces.clemson.edu>
3550
3551 * doc/bison.texinfo (Decl Summary): Correct typo.
3552
3553 2007-01-30 Paolo Bonzini <bonzini@gnu.org>
3554
3555 * data/bison.m4 (b4_percent_define_flag_if): Don't treat 0 as false.
3556 Complain if the value does not match empty, "true" or "false".
3557 * data/c++.m4: Adjust default definitions of %define variables.
3558 * data/java.m4: Adjust default definitions of %define variables.
3559 * doc/bison.texinfo (Decl Summary): Adjust the %define entry according
3560 to above behavior.
3561 * tests/input.at (Boolean %define variables): Test new behavior.
3562
3563 2007-01-29 Paolo Bonzini <bonzini@gnu.org>
3564
3565 * NEWS: Mention java.
3566 * TODO: Remove things that are done.
3567 * bootstrap.conf: Add javacomp-script and javaexec-script.
3568 * configure.ac: Invoke gt_JAVACOMP and gt_JAVAEXEC.
3569
3570 * data/Makefile.am: Add new files.
3571 * data/java-skel.m4: New.
3572 * data/java.m4: New.
3573 * data/lalr1.java: New.
3574
3575 * doc/bison.texinfo: Put "A Complete C++ Example" under
3576 C++ Parsers. Add Java Parsers. Put C++ Parsers and Java Parsers
3577 under Other Languages.
3578
3579 * src/getargs.c (valid_languages): Add Java.
3580 * src/getargs.h (struct bison_language): Update size of string fields.
3581
3582 * tests/Makefile.am: Add java.at.
3583 * tests/atlocal.in: Add CONF_JAVA and CONF_JAVAC.
3584 * tests/java.at: New.
3585 * tests/testsuite.at: Include it.
3586
3587 2007-01-28 Joel E. Denny <jdenny@ces.clemson.edu>
3588
3589 Clean up.
3590 * src/scan-skel.l (at_directive_perform): Add at_directive_argc and
3591 at_directive_argv arguments so these no longer have to be global
3592 variables. Also, update the implementation for the following changes.
3593 (fail_for_at_directive_too_many_args,
3594 fail_for_at_directive_too_few_args): Add at_directive_name argument.
3595 (at_directive_name): Remove as at_directive_argv[0] will be used for
3596 this now.
3597 (AT_DIRECTIVE_ARGC_MAX): Increment to make space in at_directive_argv
3598 for the directive name.
3599 (at_directive_argc, at_directive_argv): Make these local within
3600 skel_lex instead of global.
3601 (INITIAL): Update directive start action for above changes.
3602 (SC_AT_DIRECTIVE_ARG): Rename to...
3603 (SC_AT_DIRECTIVE_ARGS): ... this, and update for above changes.
3604 (SC_AT_DIRECTIVE_SKIP_WS): Update.
3605 (scan_skel): Move yylex_destroy to...
3606 (skel_scanner_free): ... here.
3607 * tests/skeletons.at (installed skeleton file name): Rename to...
3608 (installed skeleton file names): ... this.
3609
3610 2007-01-27 Joel E. Denny <jdenny@ces.clemson.edu>
3611
3612 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
3613 node names: say "Table of Symbols" not "Bison Symbols", and say "Decl
3614 Summary" not "Directives".
3615 * doc/bison.texinfo (Decl Summary, Calc++ Parser): Cross-reference the
3616 %code entry in "Decl Summary" rather than the one in "Table of Symbols"
3617 since the former is now the more complete one.
3618 (Prologue Alternatives): Likewise and do the same for %defines.
3619 (Table of Symbols): Add summary of %code, add summary of %define, and
3620 move full %code documentation to...
3621 (Decl Summary): ... here for consistency with other entries in these
3622 sections.
3623 Move %define entry in order to keep this list alphabetized.
3624 Reword %define entry a little to put less emphasis on the skeleton
3625 concept, which most users shouldn't have to think about.
3626
3627 2007-01-26 Paul Eggert <eggert@cs.ucla.edu>
3628
3629 Adjust to recent gnulib changes.
3630 * lib/.cvsignore: Remove stpcpy.h, strndup.h, strnlen.h.
3631 Add string.h, string_.h, unistd_.h, wchar_.h.
3632 * m4/.cvsignore: Add gnulib-common.m4, string_h.m4, wchar.m4.
3633 * src/system.h: Don't include <stpcpy.h>; this is now done by
3634 <string.h>.
3635
3636 2007-01-23 Paolo Bonzini <bonzini@gnu.org>
3637
3638 Simplify implementation of unqualified %code, implement macros for
3639 uniform treatment of boolean %define flags. Document %define.
3640 * data/bison.m4 (b4_percent_define_ifdef, b4_percent_define_flag_if,
3641 b4_percent_code_ifdef): New.
3642 (b4_percent_code_get): Map unqualified %code to b4_percent_code().
3643 * data/c++.m4: Define default value for global_tokens_and_yystype.
3644 * data/glr.cc: Likewise.
3645 * data/location.cc: Use b4_percent_define_flag_if.
3646
3647 * doc/bison.texinfo (Decl Summary): Document %define.
3648
3649 * src/parse-gram.y (Unqualified %code): Change muscle name to
3650 b4_percent_code().
3651 (content.opt): Default to empty.
3652
3653 2007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
3654
3655 Implement support for relative and absolute skeleton file names.
3656 Discussed starting at
3657 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00071.html>.
3658 * doc/bison.texinfo (Decl Summary): Document in %skeleton entry.
3659 (Bison Options): Document in --skeleton entry.
3660 * src/output.c (output_skeleton): Use strncpy rather than strcpy since
3661 full_skeleton can't necessarily hold all of pkgdatadir.
3662 If the specified skeleton file name contains a `/', don't prepend
3663 pkgdatadir.
3664 * src/parse-gram.y (prologue_declaration): If the specified skeleton
3665 file name contains a `/', prepend the grammar file directory.
3666 * tests/Makefile.am (TESTSUITE_AT): Add skeletons.at.
3667 * skeletons.at: New file.
3668 (relative skeleton file names): New test case.
3669 (installed skeleton file names): New test case.
3670 * tests/testsuite.at: Include skeletons.at.
3671
3672 * bootstrap: Update copyright to 2007.
3673
3674 2007-01-17 Paolo Bonzini <bonzini@gnu.org>
3675
3676 * bootstrap: Remove occurrences of .#bootmp from the files.
3677
3678 2007-01-17 Akim Demaille <akim@epita.fr>
3679
3680 * doc/bison.texinfo (Calc++ Parser): Don't try to alias
3681 nonterminals.
3682 Use per-type %printer.
3683
3684 2007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
3685
3686 * NEWS, data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4,
3687 data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
3688 djgpp/config.site, src/files.c, src/files.h, src/main.c,
3689 src/muscle_tab.c, src/muscle_tab.h, src/parse-gram.y, src/reader.h,
3690 src/scan-skel.h, src/scan-skel.l, tests/actions.at, tests/calc.at,
3691 tests/glr-regression.at, tests/input.at, tests/local.at,
3692 tests/output.at, tests/torture.at: Update copyright to 2007.
3693
3694 2007-01-16 Akim Demaille <akim@epita.fr>
3695
3696 * doc/bison.texinfo (Calc++ Parsing Driver): Let "parse" return an
3697 error code.
3698 (Calc++ Scanner): Exit with failure if we can't open the input
3699 file.
3700 Accept "-" standing for stdin.
3701 (Calc++ Top Level): Print the result only if the parsing was
3702 successful.
3703
3704 2007-01-16 Akim Demaille <akim@epita.fr>
3705
3706 * data/lalr1.cc (yy_reduce_print_): Add a missing end-of-line.
3707
3708 2007-01-15 Paolo Bonzini <bonzini@gnu.org>
3709 and Joel E. Denny <jdenny@ces.clemson.edu>
3710
3711 Clean up %define and %code implementation in M4 some. Most
3712 importantly, rename all related macros to be in the b4_percent_define
3713 and b4_percent_code namespaces. Also, complete support for `.' in
3714 %define variable names and %code qualifiers.
3715 * data/bison.m4 (b4_check_user_names): Check for special
3716 "SKELETON-NAMESPACE(name)" macros instead of using two nested
3717 m4_foreach loops.
3718 (b4_get_percent_define, b4_get_percent_code): Rename to...
3719 (b4_percent_define_get, b4_percent_code_get): ... these.
3720 Extend documentation with examples.
3721 For SKELETON-NAMESPACE (as documented for b4_check_user_names), use
3722 b4_percent_define_skeleton_variables and
3723 b4_percent_code_skeleton_qualifiers.
3724 Expect any value for the %define variable `foo' to be stored in the
3725 macro named `b4_percent_define(foo)'; expect any %code blocks for the
3726 qualifier `foo' to be stored in a macro named `b4_percent_code(foo)';
3727 expect any unqualified %code blocks to be stored in a macro named
3728 `b4_percent_code_unqualified'.
3729 Use m4_indir so that %define variable names and %code qualifiers can
3730 contain `.', which is allowed by the grammar parser.
3731 (b4_percent_define_default): New macro to set a default value for a
3732 %define variable.
3733 (m4_wrap): Update wrapped code, and fix some underquoting.
3734 (b4_check_user_names_wrap): Update and define outside the m4_wrap.
3735 Expect grammar uses of %define variables and %code qualifiers to be
3736 defined in b4_percent_define_user_variables and
3737 b4_percent_code_user_qualifiers.
3738 * data/c++.m4: Use b4_percent_define_default rather than
3739 m4_define_default. Fix some underquoting. Skeleton usage of %define
3740 variable define_location_comparison now implies skeleton usage of
3741 %define variable filename_type.
3742 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
3743 data/push.c, data/yacc.c: Update macro names.
3744 * src/parse-gram.y (prologue_declaration, grammar_declaration): Update
3745 muscle names.
3746
3747 2007-01-14 Juan Manuel Guerrero <juan.guerrero@gmx.de>
3748
3749 DJGPP specific issues.
3750
3751 * djgpp/config.site: Set ac_cv_path_mkdir to a sane DJGPP specific
3752 default. Set gl_cv_absolute_wctype_h to a sane DJGPP specific default.
3753
3754 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
3755
3756 * tests/glr-regression.at: Use AT_PARSER_CHECK rather than AT_CHECK to
3757 run parsers in all tests so that Valgrind is invoked during
3758 maintainer-check-valgrind.
3759 (Duplicate representation of merged trees): Free all semantic values.
3760 (Duplicated user destructor for lookahead): Likewise.
3761
3762 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
3763
3764 * tests/local.at (AT_PARSER_CHECK): Add a PRE argument to specify a
3765 command-line prefix.
3766 * tests/torture.at (Exploding the Stack Size with Alloca): Stderr is
3767 ignored, so use that PRE to set --log-fd=1 in VALGRIND_OPTS so we don't
3768 miss Valgrind messages.
3769 (Exploding the Stack Size with Malloc): Likewise.
3770
3771 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
3772
3773 Ignore YYSTACK_USE_ALLOCA for push parsers since the stacks can't be
3774 locals. Reported by Juan Manuel Guerrero at
3775 <http://lists.gnu.org/archive/html/bug-bison/2007-01/msg00000.html>.
3776 * data/push.c: Enclose the #ifdef YYSTACK_USE_ALLOCA in b4_push_if.
3777 Fix some indentation also.
3778 * tests/torture.at (Exploding the Stack Size with Alloca): Add comment
3779 explaining this issue.
3780
3781 2007-01-09 Paolo Bonzini <bonzini@gnu.org>
3782 and Joel E. Denny <jdenny@ces.clemson.edu>
3783
3784 Simplify union and prologue handling, and escape union and lex/parse
3785 params with digraphs.
3786 * data/bison.m4 (b4_pre_prologue, b4_post_prologue): Set their default
3787 values to the empty string since these are no longer guaranteed
3788 initialized by the front-end.
3789 * data/glr.c, data/glr.cc, data/lalr1.cc, data/push.c, data/yacc.c: Add
3790 braces around b4_user_stype since this is no longer done by the
3791 front-end.
3792 * src/files.c, src/files.h (pre_prologue_obstack,
3793 post_prologue_obstack): Remove.
3794 * src/muscle_tab.c (muscle_pair_list_grow): Don't duplicate header
3795 comments here. Use MUSCLE_OBSTACK_SGROW so that values are escaped
3796 with digraphs. This fixes lex params and parse params.
3797 * src/muscle_tab.h (muscle_pair_list_grow): Update comments.
3798 * src/output.c (prepare): Remove muscle insertion of the prologues.
3799 (output): Remove freeing of pre_prologue_obstack and
3800 post_prologue_obstack.
3801 * src/parse-gram.y (prologue_declaration): Use muscle_code_grow rather
3802 than prologue_augment for prologue parsing so you don't need prologue
3803 obstacks.
3804 (grammar_declaration): For %union RHS, use `braceless' instead of
3805 "{...}" so that braces are already stripped and code is escaped with
3806 digraphs.
3807 * src/reader.c (prologue_augment): Remove.
3808 (reader): Remove initialization of pre_prologue_obstack and
3809 post_prologue_obstack.
3810 * src/reader.h (prologue_augment): Remove.
3811
3812 * data/c.m4: Remove stray parenthesis.
3813
3814 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
3815
3816 Remove quotes from variables names in %define directives and from
3817 qualifiers in %code directives, and restrict the characters that are
3818 allowed in them to M4-friendly ones. For %define, continue to support
3819 the quoted form as a deprecated feature. Discussed starting at
3820 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00023.html>.
3821 * NEWS (2.3a+): Add entry for the change to %define. Update entry for
3822 %code.
3823 * doc/bison.texinfo (Prologue Alternatives): Update.
3824 (Decl Summary): In %defines entry, update mention of `%code requires'
3825 and `%code provides'.
3826 (C++ Location Values): Update %define uses.
3827 (Calc++ Parser Interface): Likewise.
3828 (Calc++ Parser): Likewise, and update `%code requires' uses.
3829 (Table of Symbols): Update %code documentation.
3830 * src/parse-gram.y (prologue_declaration): For %define variables, use
3831 `variable' instead of `STRING'.
3832 (grammar_declaration): For %code qualifiers, use `ID' instead of
3833 `STRING'.
3834 (variable): New nonterminal that takes an `ID' or a `STRING'.
3835 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update %code
3836 and %define uses.
3837 * tests/calc.at (_AT_DATA_CALC_Y): Update %define use.
3838 * tests/input.at (Reject unused %code qualifiers): Update %code uses.
3839 (%define errors): Update %define uses.
3840
3841 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
3842
3843 * src/parse-gram.y (prologue_declaration): Use MUSCLE_INSERT_STRING
3844 instead of muscle_insert for %define values so that M4-special
3845 characters are replaced with digraphs.
3846 * tests/input.at (%define errors): Extend to check weird values.
3847
3848 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
3849
3850 Instead of having skeletons declare all valid %define variables and
3851 %code qualifiers, provide macros that retrieve the associated values
3852 and build these lists automatically. Thus Bison will now warn when a
3853 variable or qualifier is not used by the skeleton in the current
3854 invocation regardless of whether it might sometimes be used by that
3855 skeleton in other invocations. Also, move all %define value macros to
3856 the b4_percent_define_ namespace, and remove the %define "NAME" {CODE}
3857 form, which is replaced by %code.
3858 * data/bison.m4 (b4_check_for_unrecognized_names): Rename to...
3859 (b4_check_user_names): ... this, and change the series of valid name
3860 arguments to a single list argument for names used in the skeleton
3861 similar to the existing list argument for names used in the grammar.
3862 Warn instead of complaining.
3863 (b4_get_percent_define, b4_get_percent_code): New to retrieve %define
3864 values and %code code, to format %code code properly, and to build
3865 lists of all %define variables and %code qualifiers used in the
3866 skeleton: b4_skeleton_percent_define_variables and
3867 b4_skeleton_percent_code_qualifiers.
3868 (b4_check_percent_define_variables, b4_check_percent_code_qualifiers):
3869 Remove, and...
3870 (m4_wrap): ... m4_wrap b4_check_user_names invocations instead so that
3871 the skeleton names lists can finish building first. In place of
3872 b4_used_percent_define_variables and b4_used_percent_code_qualifiers,
3873 expect the lists b4_user_percent_define_variables and
3874 b4_user_percent_code_qualifiers.
3875 * data/c++.m4: Where setting default values for b4_parser_class_name,
3876 b4_location_type, b4_filename_type, b4_namespace, and
3877 b4_define_location_comparison, update their names to the
3878 b4_percent_define_ namespace.
3879 * data/glr.c: Don't use b4_check_percent_define_variables and
3880 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
3881 * data/glr.cc, data/lalr1.cc: Likewise, and use b4_get_percent_define.
3882 (b4_parser_class_name, b4_namespace): Define these using
3883 b4_get_percent_define for parser_class_name and namespace.
3884 * data/location.cc: Use b4_get_percent_define.
3885 * data/push.c: Don't use b4_check_percent_define_variables and
3886 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
3887 * data/yacc.c: Likewise, and don't call m4_exit in
3888 b4_use_push_for_pull_if or m4_wrap code will never execute.
3889 * src/muscle_tab.c, src/muscle_tab.h (muscle_grow_used_name_list):
3890 Rename to...
3891 (muscle_grow_user_name_list): ... this for consistency with the
3892 terminology used in bison.m4.
3893 * src/parse-gram.y (prologue_declaration): Prepend "percent_define_" to
3894 %define variable names, and rename muscle used_percent_define_variables
3895 to user_percent_define_variables.
3896 (grammar_declaration): Rename muscle used_percent_code_qualifiers to
3897 user_percent_code_qualifiers.
3898 (content): Remove.
3899 (content.opt): Replace content RHS with STRING RHS so %define "NAME"
3900 {CODE} form is no longer accepted.
3901 * tests/input.at (Reject bad %code qualifiers): Rename to...
3902 (Reject unused %code qualifiers): ... this, and update test output.
3903 (%define error): Update test output.
3904
3905 2007-01-07 Joel E. Denny <jdenny@ces.clemson.edu>
3906
3907 Check for unrecognized %define variables similar to checking for
3908 unrecognized %code qualifiers. Check for redefined %define variables.
3909 * data/bison.m4 (b4_check_for_unrecognized_names): New macro that
3910 generalizes...
3911 (b4_check_percent_code_qualifiers): ... this, which now wraps it.
3912 (b4_check_percent_define_variables): New, also wraps it.
3913 * data/glr.c: Unless glr.cc is wrapping glr.c, declare no valid %define
3914 variables using b4_check_percent_define_variables.
3915 * data/glr.cc, data/lalr1.cc: Declare the valid %define variables as
3916 all those exercised in the test suite and all those listed in the
3917 `Default values' section of c++.m4. Are there others?
3918 * data/push.c, data/yacc.c: Declare no valid %define variables.
3919 * src/muscle_tab.c, src/muscle_tab.h (muscle_find_const): New function,
3920 similar to muscle_find, but it works even when the muscle stores a
3921 const value.
3922 (muscle_grow_used_name_list): New function for constructing the used
3923 name list muscles that b4_check_for_unrecognized_names requires.
3924 * src/parse-gram.y (prologue_declaration): Warn if a variable is
3925 %define'd more than once. Define the b4_used_percent_define_variables
3926 muscle with muscle_grow_used_name_list.
3927 (grammar_declaration): Abbreviate %code code with
3928 muscle_grow_used_name_list.
3929 * tests/input.at (%define errors): New.
3930
3931 2007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
3932
3933 Provide warn_at, complain_at, and fatal_at function callbacks to the
3934 skeletons, and use this for %code qualifier complaints.
3935 * data/bison.m4 (b4_error_at): New, invoked by...
3936 (b4_warn_at, b4_complain_at, b4_fatal_at): ... these new macros to wrap
3937 the skeleton scanner's new @warn_at(...@), @complain_at(...@), and
3938 @fatal_at(...@) directives.
3939 (b4_check_percent_code_qualifiers): Rewrite to expect locations for
3940 qualifiers in b4_used_percent_code_qualifiers and to use
3941 b4_complain_at.
3942 * src/location.c, src/location.h (boundary_set_from_string): New global
3943 function.
3944 * src/muscle_tab.c, src/muscle_tab.h (muscle_boundary_grow): New global
3945 function.
3946 * src/parse-gram.y (grammar_declaration): Add locations for qualifiers
3947 to b4_used_percent_code_qualifiers.
3948 * src/scan-skel.l (fail_for_at_directive_too_few_args): New static
3949 function.
3950 (AT_DIRECTIVE_ARGC_MAX): Increase for boundary arguments.
3951 (lineno): Rename to...
3952 (out_lineno): ... this so I don't misunderstand it again.
3953 (SC_AT_DIRECTIVE_SKIP_WS): Don't increment out_lineno for newlines
3954 here; these newlines are in the input but not the output file.
3955 (SC_AT_DIRECTIVE_ARG): Likewise. Extract directive execution to...
3956 (at_directive_perform): ... this new static function, and add handling
3957 of new @warn_at(...@), @complain_at(...@), and @fatal_at(...@)
3958 directives.
3959 * tests/input.at (Reject bad %code qualifiers): Update test output with
3960 locations and extend.
3961
3962 * tests/output.at (Output file name: [, Output file name: ]): Remove
3963 bogus comment about these tests failing.
3964
3965 2007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
3966
3967 Clean up b4_check_percent_code_qualifiers a little.
3968 * data/bison.m4 (b4_check_percent_code_qualifiers): Expect qualifiers
3969 in b4_used_percent_code_qualifiers to be double-M4-quoted. Rewrite
3970 documentation and add examples.
3971 * src/parse-gram.y (grammar_declaration): Double-M4-quote those
3972 qualifiers here.
3973
3974 2007-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
3975
3976 Don't use m4_divert since it makes m4_divert_push and m4_divert_pop
3977 unreliable -- especially when they're hidden inside another macro.
3978 * data/bison.m4, data/c++-skel.m4, data/c++.m4, data/c-skel.m4,
3979 data/c.m4: Remove m4_divert(-1).
3980 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
3981 data/push.c, data/yacc.c: Likewise, and replace m4_divert(0) with
3982 m4_divert_push(0) and m4_divert_pop(0).
3983 * src/output.c (output_skeleton): Don't add an m4_divert_push(0) and
3984 an m4_wrap([m4_divert_pop(0)]) to the M4. Diversion -1, which is
3985 pushed and popped by m4sugar, should be first on the stack.
3986
3987 Provide warn, complain, and fatal function callbacks to the skeletons.
3988 This provides more flexibility than m4_fatal, improves the error
3989 message format, and captures messages for translation. Discussed
3990 starting at
3991 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00063.html>.
3992 * data/bison.m4 (b4_error): New, invoked by...
3993 (b4_warn, b4_complain, b4_fatal): ... these new macros to wrap the
3994 skeleton scanner's new @warn(...@), @complain(...@), and @fatal(...@)
3995 directives. Because these M4 macros might be called when the current
3996 diversion is -1 or 0, m4_divert_push and m4_divert_pop is used; thus
3997 the previous removal of uses of m4_divert, which caused trouble.
3998 (b4_check_percent_code_qualifiers): Use b4_complain instead of
3999 m4_fatal to report unrecognized %code qualifiers.
4000 * data/c++-skel.m4: Use b4_complain instead of m4_fatal to report C++
4001 push parser requests.
4002 * data/glr.c: Use b4_complain instead of m4_fatal to report
4003 non-deterministic push parser requests.
4004 Update @output usage to @output(...@) form.
4005 * data/glr.cc, data/lalr1.cc: Use b4_fatal instead of m4_fatal to
4006 report missing %defines. Update @output usage to @output(...@) form.
4007 * data/location.cc, data/push.c, data/yacc.c: Update @output usage to
4008 @output(...@) form.
4009 * src/main.c (main): Invoke skel_scanner_free.
4010 * src/scan-skel.h (skel_scanner_free): Prototype new function.
4011 * src/scan-skel.l (FLEX_NO_OBSTACK): Don't define; we now need the
4012 obstack_for_string from flex-scanner.h.
4013 (YY_DECL): Use to declare skel_lex static.
4014 (decode_at_digraphs): Remove; now handled in the new
4015 SC_AT_DIRECTIVE_ARG start condition.
4016 (fail_for_at_directive_too_many_args, fail_for_invalid_at): New static
4017 functions.
4018 (at_directive_name, AT_DIRECTIVE_ARGC_MAX, at_directive_argc,
4019 at_directive_argv): New static globals.
4020 (INITIAL): Use fail_for_invalid_at.
4021 Don't parse `@output file_name\n' or `@basename(...@)'. Instead,
4022 recognize the start of a generalized `@directive(...@)' form and
4023 start...
4024 (SC_AT_DIRECTIVE_ARG): ... this new start condition to parse the
4025 directive args (using the new obstack_for_string), to decode the
4026 contained @ diagraphs, and to perform the directive. It recognizes
4027 @basename(...@), @warn(...@), @complain(...@), @fatal(...@), and
4028 @output(...@).
4029 (SC_AT_DIRECTIVE_SKIP_WS): New start condition started by
4030 SC_AT_DIRECTIVE_ARG to skip whitespace after the argument delimiter,
4031 `@,'.
4032 (scan_skel): Initialize obstack_for_string on the first call.
4033 (skel_scanner_free): New function to free obstack_for_string.
4034 * tests/input.at (Reject bad %code qualifiers): Update test output.
4035
4036 2007-01-04 Joel E. Denny <jdenny@ces.clemson.edu>
4037
4038 Consolidate the 4 prologue alternative directives (%code, %requires,
4039 %provides, and %code-top) into a single %code directive with an
4040 optional qualifier field. Discussed at
4041 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00012.html>.
4042 * NEWS (2.3a+): Rewrite the existing entry for the prologue
4043 alternatives.
4044 * doc/bison.texinfo (Prologue Alternatives): Update.
4045 (Decl Summary): Update to %code "requires" and %code "provides".
4046 (Calc++ Parser): Update to %code "requires".
4047 (Table of Symbols): Remove entries for %requires, %provides, and
4048 %code-top. Rewrite %code entry, and add a %code "QUALIFIER" entry.
4049 * data/bison.m4 (b4_user_provides, b4_user_requires): Remove as these
4050 are replaced by b4_percent_code_provides and b4_percent_code_requires,
4051 which are skeleton-specific.
4052 (b4_check_percent_code_qualifiers): New. A skeleton can use this to
4053 declare what %code qualifiers it supports and to complain if any other
4054 qualifiers were used in the grammar.
4055 * data/glr.cc: Update to use b4_user_code([b4_percent_code_requires])
4056 and b4_user_code([b4_percent_code_provides]) in place of
4057 b4_user_requires and b4_user_provides.
4058 * data/glr.c, data/lalr1.cc, data/push.c, data/yacc.c: Likewise.
4059 Add b4_user_code([b4_percent_code_top]) and
4060 b4_user_code([b4_percent_code]).
4061 Invoke b4_check_percent_code_qualifiers.
4062 * src/parse-gram.y (PERCENT_CODE_TOP, PERCENT_PROVIDES,
4063 PERCENT_REQUIRES): Remove.
4064 (grammar_declaration): Remove RHS's for %code-top, %provides, and
4065 %requires. Rewrite the %code RHS as the unqualified form defining the
4066 muscle b4_percent_code. Add another RHS for the qualified %code form,
4067 which defines muscles of the form b4_percent_code_QUALIFIER and the
4068 b4_used_percent_code_qualifiers muscle.
4069 * src/scan-gram.l (PERCENT_CODE_TOP, PERCENT_PROVIDES,
4070 PERCENT_REQUIRES): Remove.
4071 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update to use
4072 %code "requires" and %code "provides".
4073 * tests/input.at (Reject bad %code qualifiers): New.
4074
4075 2007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
4076
4077 Use the new code_props interface for destructors and printers.
4078 * src/symtab.h (symbol, semantic_type): Remove destructor_location and
4079 printer_location members, and change the type of the destructor and
4080 printer members to code_props.
4081 (symbol_destructor_set, symbol_destructor_get, symbol_printer_set,
4082 symbol_printer_get, semantic_type_destructor_set,
4083 semantic_type_printer_set, default_tagged_destructor_set,
4084 default_tagless_destructor_set, default_tagged_printer_set,
4085 default_tagless_printer_set): Use code_props in arguments and return
4086 types in place of char const * and location.
4087 (symbol_destructor_location_get, symbol_printer_location_get): Remove
4088 since the locations are now contained in the return of
4089 symbol_destructor_get and symbol_printer_get.
4090 * src/output.c (symbol_destructors_output, symbol_printers_output):
4091 Replace with...
4092 (symbol_code_props_output): ... this to eliminate duplicate code.
4093 (output_skeleton): Update to use symbol_code_props_output.
4094 * src/reader.c (symbol_should_be_used): Update use of
4095 symbol_destructor_get.
4096 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
4097 Update uses of the various _destructor_set and _printer_set functions.
4098 * src/symtab.c: (default_tagged_destructor_location,
4099 default_tagless_destructor_location, default_tagged_printer_location,
4100 default_tagless_printer_location): Remove since we...
4101 (default_tagged_destructor, default_tagless_destructor,
4102 default_tagged_printer, default_tagless_printer): ... change the type
4103 of these to code_props.
4104 (symbol_new, semantic_type_new, symbol_destructor_set,
4105 semantic_type_destructor_set, symbol_destructor_get,
4106 symbol_printer_set, semantic_type_printer_set, symbol_printer_get,
4107 symbol_check_alias_consistency, default_tagged_destructor_set,
4108 default_tagless_destructor_set, default_tagged_printer_set,
4109 default_tagless_printer_set): Update.
4110 (symbol_destructor_location_get, symbol_printer_location_get): Remove.
4111 (SYMBOL_CODE_PRINT): New similar to SYMBOL_ATTR_PRINT but for
4112 code_props members.
4113 (symbol_print): Use SYMBOL_CODE_PRINT.
4114
4115 2007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
4116
4117 Use the new code_props interface for rule actions.
4118 * src/symlist.h (symbol_list): Replace action, action_location, and
4119 used members with a code_props action_props member.
4120 * src/reader.c (symbol_should_be_used, grammar_rule_check,
4121 grammar_midrule_action, grammar_current_rule_merge_set,
4122 grammar_current_rule_symbol_append, packgram): Update.
4123 * src/scan-code.h (translate_rule_action): Remove, no longer used.
4124 * src/scan-code.l (handle_action_dollar): Update.
4125 (translate_rule_action): Remove, no longer used.
4126 * src/symlist.c (symbol_list_sym_new, symbol_list_syms_print): Update.
4127
4128 2007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
4129
4130 Use the new code_props interface in parse-gram.y.
4131 * src/parse-gram.y (prologue_declaration, braceless, epilogue.opt):
4132 Update all uses of translate_* functions to use the new code_props
4133 interface and to use gram_scanner_last_string_free and
4134 code_scanner_last_string_free where possible.
4135 (grammar_declaration): symbol_list_destructor_set and
4136 symbol_list_printer_set now perform the translation, so don't do it
4137 here. Use gram_scanner_last_string_free where possible.
4138 * src/scan-code.h, src/scan-code.l (translate_symbol_action,
4139 translate_code): Remove, no longer used.
4140 * src/symlist.h, src/symlist.c (symbol_list_destructor_set,
4141 symbol_list_printer_set): Perform code translation here rather than
4142 depending on the caller to do so.
4143
4144 * src/symlist.h (struct symbol_list): Correct some documentation typos.
4145 * src/scan-gram.h (gram_last_string): Remove declaration.
4146 * src/scan-gram.l (last_string): Declare it static.
4147
4148 2007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
4149
4150 Encapsulate code properties and related functionality for the various
4151 destructors, printers, and actions into a code_props structure and
4152 interface. This patch merely implements code_props in scan-code.h and
4153 scan-code.l. Future patches will rewrite other modules to use it.
4154 Discussed starting at
4155 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00020.html>.
4156 * src/location.h (EMPTY_LOCATION_INIT): Define so that it's easier to
4157 consistently initialize const structs that have an empty location
4158 field.
4159 * src/location.c (empty_location): Initialize with EMPTY_LOCATION_INIT
4160 to ensure consistency.
4161 * src/scan-code.h (code_props): New structure.
4162 (code_props_none_init, CODE_PROPS_NONE_INIT, code_props_none): New
4163 function, macro, and const global variable for initializing a
4164 code_props with no code.
4165 (code_props_plain_init, code_props_symbol_action_init,
4166 code_props_rule_action_init, code_props_translate_code): The rest of
4167 the new code_props functional interface. Among other things, the init
4168 functions set the code_props kind field so that
4169 code_props_translate_code will know whether to behave like
4170 translate_symbol_action, translate_rule_action, or translate_code.
4171 These old translate functions must remain until all other modules are
4172 updated to use the new code_props interface.
4173 (code_scanner_last_string_free): New function similar to
4174 gram_scanner_last_string_free.
4175 (code_scanner_free): Add documentation.
4176 * src/scan-code.l: Implement the new interface.
4177 (code_lex): Make it static, add a code_props* argument, and remove the
4178 rule argument.
4179 (last_string): New static global similar to the one in scan-gram.l.
4180 (SC_RULE_ACTION): Update to use the code_props* argument to code_lex
4181 instead of rule.
4182 (SC_SYMBOL_ACTION): For $$, set the is_value_used member of the
4183 code_props since Bison may one day use this information for destructors
4184 and printers.
4185 (<*><<EOF>>): Use STRING_FINISH so that last_string is set.
4186 (handle_action_dollar): Use symbol_list_n_get and set used flag
4187 directly since symbol_list_n_used_set is removed.
4188 (translate_action): Add a code_props* argument and remove the rule,
4189 action, and location arguments. Pass the code_props* on to code_lex.
4190 (translate_rule_action, translate_symbol_action, translate_code):
4191 Rewrite as wrappers around the new code_props interface.
4192 * src/symlist.h, src/symlist.c (symbol_list_n_used_set): Remove since
4193 it would eventually need to break the encapsulation of code_props.
4194
4195 2007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
4196
4197 * etc/.cvsignore: New.
4198
4199 2007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
4200
4201 Add maintainer-push-check to run maintainer-check using push parsing in
4202 place of pull parsing where available.
4203 * Makefile.am (maintainer-push-check): New.
4204 * data/bison.m4 (b4_use_push_for_pull_if): New.
4205 * data/push.c: Redefine b4_push_if and b4_use_push_for_pull_if
4206 appropriately based on their existing values.
4207 (yypush_parse): Don't print push-parser-specific diagnostics if push
4208 parsing is being used in place of pull parsing.
4209 * data/yacc.c: If push parsing should replace pull parsing, redirect to
4210 push.c.
4211 * src/output.c (prepare): Check BISON_USE_PUSH_FOR_PULL environment
4212 variable, and insert b4_use_push_for_pull_flag into muscles.
4213 * tests/Makefile.am (maintainer-push-check): New.
4214
4215 2006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
4216
4217 * data/push.c (yypush_parse): Set yynew = 1 at the end of a parse
4218 (whether successful or failed) so that yypush_parse can be invoked
4219 again to start a new parse using the same yypstate.
4220 * tests/torture.at (AT_DATA_STACK_TORTURE): For push mode, extend to
4221 check multiple yypull_parse invocations on the same yypstate. For pull
4222 mode, extend to check multiple yyparse invocations.
4223 (Exploding the Stack Size with Alloca): Extend to try with
4224 %push-pull-parser.
4225 (Exploding the Stack Size with Malloc): Likewise.
4226
4227 * tests/calc.at (Simple LALR Calculator): Don't specify
4228 %skeleton "push.c" since %push-pull-parser implies that now.
4229 * tests/headers.at (export YYLTYPE): Don't check for the push
4230 declarations. Otherwise, this test case can't be used to see if push
4231 mode can truly emulate pull mode.
4232 * tests/input.at (Torturing the Scanner): Likewise.
4233 * tests/local.at (AT_YACC_OR_PUSH_IF, AT_PUSH_IF): Remove.
4234 (AT_YYERROR_SEES_LOC_IF): Rather than AT_YACC_OR_PUSH_IF, use
4235 AT_YACC_IF, which now includes the case of push mode since %skeleton
4236 need not be used for push mode. This will be more intuitive once
4237 push.c is renamed to yacc.c.
4238
4239 2006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
4240
4241 For push mode, convert yyparse from a macro to a function, invoke yylex
4242 instead of passing a yylexp argument to yypull_parse, and don't
4243 generate yypull_parse or yyparse unless %push-pull-parser is declared.
4244 Discussed starting at
4245 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00163.html>.
4246 * data/bison.m4 (b4_pull_if): New.
4247 * data/c.m4 (b4_identification): Define YYPULL similar to YYPUSH.
4248 * data/push.c: Improve M4 quoting a little.
4249 (b4_generate_macro_args, b4_parenthesize): Remove.
4250 (yyparse): If there's a b4_prefix, #define this to b4_prefix[parse]
4251 any time a pull parser is requested.
4252 Don't #define this as a wrapper around yypull_parse. Instead, when
4253 both push and pull are requested, make it a function that does that
4254 same thing.
4255 (yypull_parse): If there's a b4_prefix, #define this to
4256 b4_prefix[pull_parse] when both push and pull are requested.
4257 Don't define this as a function unless both push and pull are
4258 requested.
4259 Remove the yylexp argument and hard-code yylex invocation instead.
4260 * etc/bench.pl.in (bench_grammar): Use %push-pull-parser instead of
4261 %push-parser.
4262 * src/getargs.c (pull_parser): New global initialized to true.
4263 * getargs.h (pull_parser): extern it.
4264 * src/output.c (prepare): Insert pull_flag muscle.
4265 * src/parse-gram.y (PERCENT_PUSH_PULL_PARSER): New token.
4266 (prologue_declaration): Set both push_parser and pull_parser = true for
4267 %push-pull-parser. Set push_parser = true and pull_parser = false for
4268 %push-parser.
4269 * src/scan-gram.l: Don't accept %push_parser as an alternative to
4270 %push-parser since there's no backward-compatibility concern here.
4271 Scan %push-pull-parser.
4272 * tests/calc.at (Simple LALR(1) Calculator): Use %push-pull-parser
4273 instead of %push-parser.
4274 * tests/headers.at (export YYLTYPE): Make yylex static, and don't
4275 prototype it in the module that calls yyparse.
4276 * tests/input.at (Torturing the Scanner): Likewise.
4277 * tests/local.at (AT_PUSH_IF): Check for %push-pull-parser as well.
4278
4279 2006-12-26 Joel E. Denny <jdenny@ces.clemson.edu>
4280
4281 Update etc/bench.pl. Optimize push mode a little (the yyn change
4282 deserves most of the credit).
4283 * Makefile.am (SUBDIRS): Add etc subdirectory.
4284 * configure.ac (AC_CONFIG_FILES): Add etc/bench.pl and etc/Makefile.
4285 * data/push.c (b4_declare_parser_state_variables): Move yyn, yyresult,
4286 yytoken, yyval, and yyloc declarations to...
4287 (yyparse or yypush_parse): ... here to improve performance. For
4288 yypush_parse invocations after the first, be sure to assign yyn its old
4289 value again.
4290 (yypstate_new): Don't bother initializing the yyresult field since the
4291 initial value isn't used.
4292 (yyn, yyresult, yytoken, yyval, yyloc): For each NAME in this list,
4293 remove the #define that, in push mode, set it to yyps->NAME.
4294 * etc/Makefile.am: New.
4295 * etc/bench.pl: Remove and build it instead from...
4296 * etc/bench.pl.in: ... this new file. Use @abs_top_builddir@ to invoke
4297 "tests/bison" from the build directory by default rather than just
4298 invoking "bison" from $PATH.
4299 (calc_grammar): Update push parser code: don't declare yylval globally,
4300 don't define yyparse_wrapper, and don't #define yyparse.
4301 (bench_grammar): Update to check all working combinations of yacc.c,
4302 push.c, impure, pure, pull, and push.
4303
4304 2006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
4305
4306 For push mode, add pull wrappers around yypush_parse.
4307 * data/push.c: (b4_generate_macro_args, b4_parenthesize): New macros.
4308 (yypull_parse): New function wrapping yypush_parse.
4309 (yyparse): New #define wrapping yypull_parse.
4310 * tests/calc.at (_AT_DATA_CALC_Y): Call yyparse even when %push-parser
4311 is declared.
4312 * tests/headers.at (export YYLTYPE): Make yylex global. For push mode,
4313 prototype yylex in the module that calls yyparse, and don't prototype
4314 yyparse there. Otherwise, the yyparse expansion won't compile.
4315 * tests/input.at (Torturing the Scanner): Likewise.
4316
4317 2006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
4318
4319 Enable push parsers to operate in impure mode. Thus, %push-parser no
4320 longer implies %pure-parser. The point of this change is to move
4321 towards being able to test the push parser code by running the entire
4322 test suite as if %push-parser had been declared.
4323 * data/push.c (yypush_parse): For impure mode, remove the
4324 yypushed_char, yypushed_val, and yypushed_loc arguments.
4325 Instead, declare these as local variables initialized to the global
4326 yychar, yylval, and yylloc.
4327 For the first yypush_parse invocation only, restore the initial values
4328 of these global variables when it's time to read a token since they
4329 have been overwritten.
4330 * src/parse-gram.y (prologue_declaration): Don't set pure_parser for
4331 %push-parser.
4332 * tests/calc.at (Simple LALR(1) Calculator): Always declare
4333 %pure-parser along with %push-parser since this test case was designed
4334 for pure push parsers.
4335 * tests/local.at (AT_PURE_OR_PUSH_IF): Remove unused.
4336 (AT_YACC_OR_PUSH_IF): New.
4337 (AT_YYERROR_SEES_LOC_IF): Fix enough that the test suite passes, but
4338 add a note that it's still wrong for some cases (as it has been for a
4339 while).
4340 (AT_PURE_LEX_IF): Use AT_PURE_IF instead of AT_PURE_OR_PUSH_IF since
4341 %push-parser no longer implies %pure-parser.
4342
4343 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
4344
4345 Remove some unnecessary differences between the pull parser code and
4346 the push parser code. This patch enables yynerrs in push mode.
4347 * data/push.c: Reformat M4 a little.
4348 (b4_yyerror_range): Remove and convert all uses to just yyerror_range.
4349 (b4_declare_scanner_communication_variables): Don't omit yynerrs just
4350 because push mode is on. Instead, if pure mode is on, move yynerrs
4351 to...
4352 (b4_declare_parser_state_variables): ... here.
4353 (yynerrs, yyerror_range): For push mode, #define each NAME in this list
4354 to yyps->NAME so it can be used in yypush_parse.
4355 (yypush_parse): Don't omit uses of yynerrs in push mode.
4356
4357 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
4358
4359 Fix bug such that the first pushed token's value and location are
4360 sometimes overwritten (sometimes by %initial-action) before being used.
4361 * data/push.c (yypush_parse): Rename arguments yynchar, yynlval, and
4362 yynlloc to yypushed_char, yypushed_val, and yypushed_loc for clarity.
4363 For the first yypush_parse invocation, initialize yychar to YYEMPTY to
4364 more closely mimic the pull parser logic.
4365 Don't copy the pushed token to yychar, yylval, and yylloc until it's
4366 time to read a token, which is after any initialization of yylval and
4367 yylloc.
4368 (gottoken): Rename label to...
4369 (yyread_pushed_token): ... for clarity and to avoid infringing on the
4370 user namespace.
4371
4372 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
4373
4374 Rearrange initialization of the parser state variables so that the
4375 skeleton doesn't have to have a copy for pull mode and another for push
4376 mode. This patch also fixes at least a bug such that yylloc was not
4377 initialized (with b4_location_initial_line and
4378 b4_location_initial_column) upon calling yypush_parse. However, that
4379 initialization now overwrites the first token's location;
4380 %initial-action assigning @$ already did the same thing, and both bugs
4381 will be fixed in a later patch.
4382 * data/push.c (b4_yyssa): Remove and convert all uses to just yyssa.
4383 (b4_declare_parser_state_variables): Remove initialization of yytoken,
4384 yyss, yyvs, yyls, and yystacksize.
4385 (yypstate_new): Remove initialization of some yypstate fields: yystate,
4386 yyerrstatus, yytoken, yyss, yyvs, yyls, yystacksize, yyssp, yyvsp, and
4387 yylsp.
4388 (yyssa, yyvsa, yylsa): For push mode, #define each NAME in this list to
4389 yyps->NAME so it can be used in yypush_parse.
4390 (yyparse or yypush_parse): For yypush_parse, don't print the
4391 "Starting parse" diagnostic for invocations after the first.
4392 Add initialization of yytoken, yyss, yyvs, yyls, and yystacksize; for
4393 yypush_parse, only do it for the first invocation.
4394 Allow yystate, yyerrstatus, yyssp, yyvsp, yylsp, and yylloc
4395 initialization to occur in yypush_parse but only on the first
4396 invocation.
4397
4398 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
4399
4400 * data/push.c: Add CPP guards around push parser declarations in both
4401 the header and the code file.
4402 In the code file, move the push parser declarations to the same place
4403 they appear in the header file.
4404 Clean up the M4 some, especially the inconsistent underquoting in
4405 some b4_c_function_def and b4_c_function_decl uses.
4406
4407 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
4408
4409 Encapsulate the push parser state variables into an M4 macro so the
4410 push skeleton doesn't have to list them again for pull mode's yyparse.
4411 For push mode, remove yypush_parse's local equivalents of these
4412 variables to eliminate unnecessary copying between the two sets at
4413 run-time. This patch also fixes at least a bug related to multiple
4414 %initial-action invocations in push mode.
4415 * data/push.c (b4_declare_parser_variables): Rename to...
4416 (b4_declare_scanner_communication_variables): ... this for clarity and
4417 update both uses.
4418 (b4_declare_yyparse_variables): Remove and move its contents to the one
4419 spot where it was invoked.
4420 (b4_declare_parser_state_variables): New macro containing the parser
4421 state variables required by push mode.
4422 (struct yypstate): Replace all fields but yynew with
4423 b4_declare_parser_state_variables.
4424 (yystate, yyn, yyresult, yyerrstatus, yytoken, yyss, yyssp, yyvs,
4425 yyvsp, yyls, yylsp, yystacksize, yyval, yyloc): For push mode, #define
4426 each NAME in this list to yyps->NAME so it can be used in yypush_parse.
4427 (yyparse or yypush_parse): For yyparse in pull mode, replace local
4428 parser state variable declarations with
4429 b4_declare_parser_state_variables.
4430 Don't initialize parser state variables when calling yypush_parse since
4431 yypstate_new already does that.
4432 Invoke the user's initial action only upon the first yypush_parse
4433 invocation.
4434 Remove all code that copies between the local parser state variables
4435 and the yypstate.
4436
4437 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
4438
4439 * data/push.c (union yyalloc): Rename yyss, yyvs, and yyls fields to
4440 prevent a name collision in a future patch where these names will
4441 sometimes be #define'd.
4442 (YYSTACK_RELOCATE): Add an argument to select a union yyalloc field
4443 since it no longer has the same name as the existing argument.
4444 (yyparse or yypush_parse): Update all uses of YYSTACK_RELOCATE.
4445
4446 2006-12-19 Paolo Bonzini <bonzini@gnu.org>
4447 and Joel E. Denny <jdenny@ces.clemson.edu>
4448
4449 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
4450 that the argument is case-insensitive, and there's no `=' here.
4451 For the %skeleton entry, mention that %language is better.
4452 (Bison Options): Likewise for --language and --skeleton. Move the
4453 --skeleton entry so that the `Tuning the parser' section is sorted
4454 alphabetically on long options.
4455 (C++ Bison Interface): Don't use the word skeleton. Don't explain the
4456 %language directive in detail here; cross-reference the %language
4457 documentation instead.
4458 (Calc++ Parser): Use `%require "@value{VERSION}"' rather than
4459 `%require "2.3b"' so that the example is always up-to-date.
4460 (Table of Symbols): Add entries for %language and %skeleton.
4461 * examples/extexi (normalize): Instead of replacing every %require
4462 argument with the current Bison version, just substitute for
4463 `@value{VERSION}'. This guarantees that we're testing what actually
4464 appears in the documentation.
4465 * examples/calc++/Makefile.am ($(calc_extracted)): Use `$(VERSION)'
4466 rather than `@VERSION@'.
4467
4468 2006-12-18 Paul Eggert <eggert@cs.ucla.edu>
4469
4470 * NEWS: Reword the %language news a bit, and put it earlier.
4471
4472 * src/getargs.c (skeleton_arg): Last arg is now location const *.
4473 Rewrite to simplify the logic.
4474 (language_argmatch): Likewise.
4475 (program_name): We now own this var.
4476 * src/getargs.h (struct bison_language): Use char[] rather than
4477 const char *.
4478
4479 * doc/bison.texinfo (Decl Summary, Bison Options): Don't claim
4480 Java is supported.
4481 * src/complain.c (program_name): Remove decl; no longer needed.
4482 * src/main.c (program_name): Remove; now belongs to getargs.
4483
4484 2006-12-18 Paolo Bonzini <bonzini@gnu.org>
4485
4486 * NEWS: Document %language.
4487
4488 * data/Makefile.am (dist_pkgdata_DATA): Add c-skel.m4, c++-skel.m4.
4489
4490 * data/c-skel.m4, data/c++-skel.m4: New files.
4491 * data/glr.c: Complain on push parsers.
4492
4493 * doc/bison.texinfo (C++ Parser Interface): Prefer %language
4494 over %skeleton.
4495 (Decl Summary): Document %language and %skeleton.
4496 (Command line): Document -L.
4497
4498 * examples/extexi: Rewrite %require directive.
4499 * examples/calc++/Makefile.am: Pass VERSION to extexi.
4500
4501 * src/files.c (compute_exts_from_gc): Look in language structure
4502 for .y extension.
4503 (compute_file_name_parts): Check whether .tab should be added.
4504 * src/getargs.c (valid_languages, skeleton_prio, language_prio):
4505 (language, skeleton_arg, language_argmatch): New.
4506 (long_options): Add --language.
4507 (getargs): Use skeleton_arg, add -L/--language.
4508 * src/getargs.h: Include location.h.
4509 (struct bison_language, language, skeleton_arg, language_argmatch): New.
4510 * src/output.c (prepare): Pick default skeleton from struct language.
4511 Don't dispatch C skeletons here.
4512 * src/parse-gram.y (PERCENT_LANGUAGE): New.
4513 (prologue_declaration): Add "%language" rule, use skeleton_arg.
4514 * src/scan-gram.l ("%language"): New rule.
4515
4516 * tests/calc.at: Test %skeleton and %language.
4517 * tests/local.at (AT_SKEL_CC_IF): Look for %language.
4518 (AT_GLR_IF): Look for %skeleton "glr.cc".
4519 (AT_LALR1_CC_IF, AT_GLR_CC_IF): Rewrite.
4520 (AT_YACC_IF): Reject %language.
4521
4522 2006-12-18 Paul Eggert <eggert@cs.ucla.edu>
4523
4524 * src/symtab.h (struct semantic_type): Remove the tag 'semantic_type',
4525 since it wasn't used; only the typedef name 'semantic_type' is needed.
4526 Also, omit trailing white space.
4527
4528 * bootstrap: Sync from coreutils.
4529 (gnulib_extra_files): Add build-aux/announce.gen.
4530 (slurp): Adjust .gitignore files like .cvsignore files.
4531 * build-aux/announce-gen: Remove from CVS, since bootstrap
4532 now creates this.
4533
4534 2006-12-16 Joel E. Denny <jdenny@ces.clemson.edu>
4535
4536 Make %push-parser imply %pure-parser. This fixes several bugs; see
4537 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00148.html>.
4538 * src/parse-gram.y (prologue_declaration): For %push-parser, also set
4539 pure_parser = true.
4540 * data/push.c: Don't bother testing b4_push_if when deciding whether
4541 to expand b4_declare_parser_variables globally.
4542 (yypush_parse): Likewise in here.
4543
4544 * data/push.c (yypush_parse): Add b4_parse_param to arguments.
4545 (yy_reduce_print): Reformat M4 for readability.
4546
4547 2006-12-15 Bob Rossi <bob@brasko.net>
4548 and Joel Denny <jdenny@ces.clemson.edu>
4549
4550 * data/push.c (yypstate): Add typedef, and update all uses of
4551 struct yypstate to just yypstate.
4552 * tests/calc.at (_AT_DATA_CALC_Y): Update here as well.
4553
4554 2006-12-14 Bob Rossi <bob@brasko.net>
4555
4556 * data/push.c (yypush_parse): Declare prototype regardless of
4557 %locations option.
4558
4559 2006-12-14 Bob Rossi <bob@brasko.net>
4560
4561 * data/push.c (yyparse): Remove the prototype and the #define when in
4562 push-parser mode.
4563
4564 2006-12-13 Bob Rossi <bob@brasko.net>
4565
4566 * data/push.c (yypstate_init): Rename to...
4567 (yypstate_new): ... this and use b4_c_function_def.
4568 (yypstate_delete): New.
4569 (yypush_parse): Change parameters yynval and yynlloc to be const.
4570 * tests/calc.at (_AT_DATA_CALC_Y): Use new yypstate_new and
4571 yypstate_delete functions.
4572
4573 2006-12-13 Joel E. Denny <jdenny@ces.clemson.edu>
4574
4575 * configure.ac (AC_PREREQ): Require Autoconf 2.61 because of our
4576 strange test case titles. Reported by Bob Rossi.
4577
4578 2006-12-13 Paul Eggert <eggert@cs.ucla.edu>
4579
4580 * TODO: Add pointer to Sylvain Schmitz's work on static detection
4581 of potential ambiguities in GLR grammers.
4582
4583 2006-12-12 Joel E. Denny <jdenny@ces.clemson.edu>
4584
4585 * tests/testsuite.at (AT_CHECK): When checking if $1 starts with
4586 `bison ', use m4_index instead of m4_substr since chopping up a string
4587 containing M4-special characters causes problems here.
4588
4589 Fix a couple of bugs related to special characters in user-specified
4590 file names, and make it easier for skeletons to compute output file
4591 names with the same file name prefix as Bison-computed output file
4592 names.
4593 * data/glr.cc, data/push.c, data/yacc.c: In @output, use
4594 b4_parser_file_name and b4_spec_defines_file instead of
4595 @output_parser_name@ and @output_header_name@, which are now redundant.
4596 * data/glr.c, data/lalr1.cc: Likewise. Also, in header #include's, use
4597 b4_parser_file_name, b4_spec_defines_file, and the new
4598 @basename(FILENAME@) instead of @output_parser_name@ and
4599 @output_header_name@, which inappropriately escaped the file names as
4600 C string literals.
4601 * src/files.c (all_but_ext): Remove static qualifier.
4602 (compute_output_file_names): Move `free (all_but_ext)' to...
4603 (output_file_names_free): ... here since all_but_ext is needed later.
4604 * src/files.h (all_but_ext): Extern.
4605 * src/muscle_tab.h (MUSCLE_INSERT_STRING_RAW): New macro that does
4606 exactly what MUSCLE_INSERT_STRING used to do.
4607 (MUSCLE_INSERT_STRING): Use MUSCLE_OBSTACK_SGROW so that M4-special
4608 characters are escaped properly.
4609 * src/output.c (prepare): Define muscle file_name_all_but_ext as
4610 all_but_ext.
4611 For pkgdatadir muscle, maintain previous functionality by using
4612 MUSCLE_INSERT_STRING_RAW instead of MUSCLE_INSERT_STRING. The problem
4613 is that b4_pkgdatadir is used inside m4_include in the skeletons, so
4614 digraphs would never be expanded. Hopefully no one has M4-special
4615 characters in his Bison installation path.
4616 * src/scan-skel.l: Don't parse @output_header_name@ and
4617 @output_parser_name@ anymore since they're now redundant.
4618 In @output, use decode_at_digraphs.
4619 Parse a new @basename command that invokes last_component.
4620 (decode_at_digraphs): New.
4621 (BASE_QPUTS): Remove unused.
4622 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): New macro.
4623 (Output file name): New tests.
4624
4625 2006-12-09 Joel E. Denny <jdenny@ces.clemson.edu>
4626
4627 Warn about output files that are generated by the skeletons and that
4628 conflict with other output files.
4629 * data/glr.c: Don't generate the header file here when glr.cc does.
4630 * src/files.c (file_names, file_names_count): New static globals.
4631 (compute_output_file_names): Invoke output_file_name_check for files
4632 not generated by the skeletons and remove existing checks.
4633 (output_file_name_check): New function that warns about conflicting
4634 output file names.
4635 (output_file_names_free): Free file_names.
4636 * src/files.h (output_file_name_check): Declare.
4637 * src/scan-skel.l: Invoke output_file_name_check for files generated by
4638 the skeletons.
4639 * tests/output.at (AT_CHECK_CONFLICTING_OUTPUT): New.
4640 (Conflicting output files): New tests.
4641
4642 2006-12-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4643
4644 * doc/bison.texinfo: Fix a couple of typos.
4645
4646 2006-12-08 Bob Rossi <bob@brasko.net>
4647
4648 * data/push.c: (yypvarsinit, yypvars, struct yypvars, yypushparse):
4649 Rename to...
4650 (yypstate_init, yypstate, struct yypstate, yypush_parse): ... these and
4651 update all uses.
4652 (b4_yyssa, b4_yyerror_range, yypstate_init): Rename pv to yyps.
4653 (yypush_parse): Rename yypvars argument to yyps and remove redundant
4654 local pv.
4655 (yypstate_init, yypush_parse): Declare in Bison-generated header file.
4656 * tests/calc.at (_AT_DATA_CALC_Y): Use newly named functions.
4657
4658 2006-12-07 Bob Rossi <bob@brasko.net>
4659 and Joel Denny <jdenny@ces.clemson.edu>
4660
4661 * data/push.c (yypvarsinit): Change return type from void* to struct
4662 yypvars*. No longer cast to void* on return.
4663 (struct yypvars): Remove yylen since it need not be remembered between
4664 yypushparse invocations.
4665 (yypushparse): Don't copy between yylen and pv->yylen.
4666
4667 2006-12-05 Bob Rossi <bob@brasko.net>
4668
4669 * data/push.c (yychar_set, yylval_set, yylloc_set): Delete.
4670 (yypushparse): Add yynchar, yynlval, yynlloc parameters.
4671 (b4_declare_parser_variables): Do not declare yynerrs for push mode.
4672 (struct yypvars): Remove b4_declare_parser_variables.
4673 (yypvarsinit): Remove init code for removed variables.
4674 (global scope): Do not declare b4_declare_parser_variables if
4675 push or pure mode.
4676 (yypushparse): Add b4_declare_parser_variables.
4677 Init new local variables, and remove init code for removed
4678 yypvars variables.
4679 (yyparse): Delete.
4680 * tests/calc.at (_AT_DATA_CALC_Y): Call yypushparse for push mode
4681 and yyparse for other modes.
4682 (AT_CHECK_CALC_LALR): Added '%skeleton "push.c"' for push tests.
4683 * tests/local.at (AT_PUSH_IF, AT_PURE_OR_PUSH_IF): Added.
4684 (AT_YYERROR_SEES_LOC_IF): push-parser makes this false.
4685 (AT_PURE_LEX_IF): True if pure or push parser.
4686
4687 2006-12-05 Joel E. Denny <jdenny@ces.clemson.edu>
4688
4689 Document Yacc prologue alternatives and default %destructor's and
4690 %printer's as experimental. Don't mention Java yet. Discussed at
4691 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00002.html>.
4692 * NEWS (2.3a+): Say they're experimental. Remove any mention of Java.
4693 (2.3a): Annotate this entry to say the old forms of these features were
4694 also experimental.
4695 * doc/bison.texinfo (Prologue Alternatives, Freeing Discarded Symbols,
4696 Table of Symbols): Say they're experimental. Comment out any mention
4697 of Java (we'll want this back eventually).
4698
4699 2006-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
4700
4701 Support a file name argument to %defines. Deprecate `=' in
4702 %file-prefix, %name-prefix, and %output. Discussed at
4703 <http://lists.gnu.org/archive/html/help-bison/2006-09/msg00001.html>.
4704 * NEWS (2.3a+): Mention.
4705 * doc/bison.texinfo (Decl Summary, Table of Symbols): Add entry for new
4706 form of %defines, and remove `=' from entries for %file-prefix,
4707 %name-prefix, and %output.
4708 * src/parse-gram.y (prologue_declaration): Implement.
4709 * tests/calc.at (Simple LALR Calculator, Simple GLR Calculator, Simple
4710 LALR1 C++ Calculator, Simple GLR C++ Calculator): Remove the `=' from
4711 all but one occurrence of %name-prefix.
4712 * tests/headers.at (export YYLTYPE): Remove the `=' from %name-prefix.
4713 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Likewise.
4714 * tests/output.at (AT_CHECK_OUTPUT): Remove the `=' from all but one
4715 occurrence of each of %file-prefix and %output. Add check for %defines
4716 with argument.
4717 * tests/reduce.at (Useless Terminals, Useless Nonterminals,
4718 Useless Rules, Reduced Automaton, Underivable Rules, Empty Language):
4719 Remove the `=' from %output.
4720
4721 2006-11-21 Joel E. Denny <jdenny@ces.clemson.edu>
4722
4723 Don't escape $ in test case titles since Autoconf 2.61 now does that
4724 correctly.
4725 * tests/actions.at (Default %printer and %destructor are not for error
4726 or $undefined): Here.
4727 (Default %printer and %destructor are not for $accept): Here.
4728 * tests/input.at (Invalid $n and @n): Here.
4729
4730 2006-11-20 Joel E. Denny <jdenny@ces.clemson.edu>
4731
4732 Rename <!> to <>. Discussed starting at
4733 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00039.html>.
4734 * NEWS (2.3a+): Update.
4735 * doc/bison.texinfo (Freeing Discarded Symbols, Table of Symbols):
4736 Update.
4737 * src/parse-gram.y (TYPE_TAG_NONE, generic_symlist_item): Implement.
4738 * src/scan-gram.l (INITIAL): Implement.
4739 * src/symlist.c (symbol_list_default_tagless_new): Update comment.
4740 * src/symlist.h (symbol_list, symbol_list_default_tagless_new): Update
4741 comment.
4742 * tests/actions.at (Default tagless %printer and %destructor,
4743 Default tagged and per-type %printer and %destructor,
4744 Default %printer and %destructor are not for error or $undefined,
4745 Default %printer and %destructor are not for $accept,
4746 Default %printer and %destructor for mid-rule values): Update.
4747 * tests/input.at (Default %printer and %destructor redeclared,
4748 Unused values with default %destructor): Update.
4749
4750 2006-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
4751
4752 Don't let %prec take a nonterminal.
4753 * src/reader.c (grammar_current_rule_prec_set): Make the %prec symbol a
4754 token.
4755 * tests/input.at (%prec takes a token): New test checking that %prec
4756 won't take a nonterminal.
4757
4758 2006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
4759
4760 * tests/testsuite.at (AT_CHECK): Don't miss an exit value of 0 because
4761 it was double-quoted.
4762 * src/Makefile.am (YACC): Use --warnings=all,error so that Bison's own
4763 grammar is maintained with Bison's highest standards.
4764 * src/getargs.c: Fix some typos in Doxygen comments.
4765
4766 2006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
4767
4768 Fix memory leaks in scanners generated by at least Flex 2.5.9 and
4769 later. Reported by Paul Eggert in
4770 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00014.html>.
4771 * src/flex-scanner.h (yylex_destroy): Define for Flex before 2.5.9.
4772 * src/scan-code.l (translate_action): Don't bother invoking
4773 yy_delete_buffer (YY_CURRENT_BUFFER) before creating the first buffer.
4774 (code_scanner_free): Instead of invoking
4775 yy_delete_buffer (YY_CURRENT_BUFFER) directly, invoke yylex_destroy,
4776 which frees more.
4777 * src/scan-gram.l (gram_scanner_free): Likewise.
4778 * src/scan-skel.l (scan_skel): Likewise.
4779
4780 2006-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
4781
4782 * src/files.c (tr): Change return type to void.
4783 * src/muscle_tab.c (muscle_insert): Free storage in case muscle_grow
4784 has been called previously for the same key.
4785 (muscle_find): Return storage instead of value so that
4786 --enable-gcc-warnings doesn't produce warnings that the return discards
4787 const. aver that the value and storage are the same since storage
4788 could potentially be NULL when value is not.
4789 * tests/testsuite.at (AT_CHECK): Treat an unspecified exit value the
4790 same as 0.
4791
4792 2006-11-08 Paul Eggert <eggert@cs.ucla.edu>
4793
4794 * bootstrap.conf (excluded_files): Exclude m4/codeset.m4 (undoing
4795 the earlier change today), m4/intl.m4, m4/intldir.m4. This gives
4796 us a slightly cleaner distribution, and also works.
4797 * m4/.cvsignore: Add inline.m4, wint_t.m4 to accommodate recent
4798 gnulib changes.
4799
4800 2006-11-08 Joel E. Denny <jdenny@ces.clemson.edu>
4801 and Paul Eggert <eggert@cs.ucla.edu>
4802
4803 Don't let Bison leak memory except when it complains.
4804 * src/files.h (parser_file_name, spec_verbose_file, spec_graph_file):
4805 (spec_defines_file, dir_prefix): Now char *, not const char *,
4806 since they are freed.
4807 * src/files.c: Likewise.
4808 (all_but_ext, all_but_tab_ext, src_extension, header_extension):
4809 Likewise.
4810 (tr): Now operates in-place. All uses changed.
4811 (compute_exts_from_gf, compute_exts_from_src): Don't leak temporary
4812 values.
4813 (compute_file_name_parts, compute_output_file_names): Don't store
4814 read-only data in variables that will be freed.
4815 (compute_output_file_names): Free all_but_ext, all_but_tab_ext,
4816 src_extension, and header_extension.
4817 (output_file_names_free): New public function to free
4818 spec_verbose_file, spec_graph_file, spec_defines_file,
4819 parser_file_name, and dir_prefix.
4820 * src/getargs.c (getargs): Don't store read-only data in variables that
4821 will be freed.
4822 * src/main.c (main): Invoke output_file_names_free, code_scanner_free
4823 (which previously existed but was unused), and quotearg_free.
4824 * src/muscle_tab.h (muscle_insert): value arg is now a `char const *'.
4825 * src/muscle_tab.c: Likewise.
4826 (muscle_entry): Make the value char const *,
4827 and add a new storage member that is char * and can be freed.
4828 (muscle_entry_free): New private function.
4829 (muscle_init): Use it instead of free.
4830 (muscle_insert, muscle_grow): Update and use new storage member.
4831 (muscle_code_grow): Free the string passed to muscle_grow
4832 since it's not needed anymore.
4833 * src/parse-gram.y (%union): Make `chars' member a `char const *', and
4834 add a new `char *code' member.
4835 ("{...}"): Declare semantic type as code.
4836 * src/scan-code.h (translate_rule_action):
4837 (translate_symbol_action, translate_code, translate_action): Return
4838 `char const *' rather than `char *' since external code should not free
4839 these strings.
4840 * src/scan-code.l: Likewise.
4841 * src/scan-gram.l (<SC_BRACED_CODE>): Use val->code for BRACED_CODE,
4842 which is "{...}" in the parser.
4843 * tests/Makefile.am (maintainer-check-valgrind): Set
4844 VALGRIND_OPTS='--leak-check=full --show-reacheable=yes' before invoking
4845 Valgrind.
4846 * tests/calc.at (_AT_DATA_CALC_Y): fclose the FILE* so Valgrind doesn't
4847 complain.
4848 * tests/testsuite.at (AT_CHECK): Redefine so that running Bison and
4849 expecting a non-zero exit status sets --leak-check=summary and
4850 --show-reachable=no for Valgrind. Bison unabashedly leaks memory in
4851 this case, and we don't want to hear about it.
4852
4853 2006-11-08 Paul Eggert <eggert@cs.ucla.edu>
4854
4855 * bootstrap (runtime-po/Makevars): Derive from po/Makevars
4856 instead of from the template, to simplify configuration a bit.
4857 * bootstrap.conf (excluded_files): Don't exclude m4/codeset.m4
4858 and m4/wint_t.m4, as they are needed with the latest gnulib.
4859
4860 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
4861
4862 Disable unset/unused mid-rule value warnings by default, and recognize
4863 --warnings=midrule-values to enable them. Discussed starting at
4864 <http://lists.gnu.org/archive/html/help-bison/2006-10/msg00030.html>.
4865 * NEWS (2.3a+): Mention.
4866 * src/getargs.c, src/getargs.h (warnings_args, warnings_types, enum
4867 warnings): Add entry for midrule-values subargument.
4868 * src/reader.c (symbol_should_be_used): Don't return true just because
4869 the value is a set/used mid-rule value unless
4870 --warnings=midrule-values was specified.
4871 * tests/input.at (Unused values, Unused values before symbol
4872 declarations): Run tests with and without --warnings=midrule-values.
4873
4874 * src/reader.c (check_and_convert_grammar): Use symbol_list_free rather
4875 than LIST_FREE directly.
4876
4877 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
4878
4879 Finish implementing --warnings=error, which should not be implied by
4880 --warnings=all (or by its synonyms -W and --warnings without
4881 subarguments).
4882 * src/complain.c (set_warning_issued): New function to report that
4883 warnings are being treated as errors and to record an error if so.
4884 Invoke...
4885 (warn_at, warn): ... here.
4886 * src/getargs.c (warnings_args, warnings_types): Reorder so that
4887 "error - warnings are errors" does not appear above "all - all of the
4888 above".
4889 (getargs): For -W and --warnings without subarguments, don't let
4890 FLAGS_ARGMATCH set warnings_error in warnings_flag.
4891 * src/getargs.h (enum warnings): Unset warnings_error in warnings_all.
4892
4893 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
4894
4895 * src/getargs.c (flags_argmatch): Don't cause segmentation fault for
4896 empty subargument list. For example: `bison --warnings= parser.y'.
4897
4898 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
4899
4900 * data/push.c, data/yacc.c: Make sure there's a newline at the end of
4901 the parser header file so that gcc doesn't warn.
4902
4903 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
4904
4905 Split the default %destructor/%printer into two kinds: <*> and <!>.
4906 Discussed starting at
4907 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00060.html>.
4908 * NEWS (2.3a+): Mention.
4909 * doc/bison.texinfo (Freeing Discarded Symbols): Document this and the
4910 previous change today related to mid-rules.
4911 (Table of Symbols): Remove %symbol-default and add <*> and <!>.
4912 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): Remove.
4913 (TYPE_TAG_ANY): Add as <*>.
4914 (TYPE_TAG_NONE): Add as <!>.
4915 (generic_symlist_item): Remove RHS for %symbol-default and add RHS's
4916 for <*> and <!>.
4917 * src/scan-gram.l (PERCENT_SYMBOL_DEFAULT): Remove.
4918 (TYPE_TAG_ANY, TYPE_TAG_NONE): Add.
4919 * src/symlist.c (symbol_list_default_new): Split into tagged and
4920 tagless versions.
4921 (symbol_list_destructor_set, symbol_list_printer_set): Split
4922 SYMLIST_DEFAULT case into SYMLIST_DEFAULT_TAGGED and
4923 SYMLIST_DEFAULT_TAGLESS.
4924 * src/symlist.h: Update symbol_list_default*_new prototypes.
4925 (symbol_list.content_type): Split enum value SYMLIST_DEFAULT into
4926 SYMLIST_DEFAULT_TAGGED and SYMLIST_DEFAULT_TAGLESS.
4927 * src/symtab.c (default_destructor, default_destructor_location,
4928 default_printer, default_printer_location): Split each into tagged and
4929 tagless versions.
4930 (symbol_destructor_get, symbol_destructor_location_get,
4931 symbol_printer_get, symbol_printer_location_get): Implement tagged
4932 default and tagless default cases.
4933 (default_destructor_set, default_printer_set): Split each into tagged
4934 and tagless versions.
4935 * src/symtab.h: Update prototypes.
4936 * tests/actions.at (Default %printer and %destructor): Rename to...
4937 (Default tagless %printer and %destructor): ... this, and extend.
4938 (Per-type %printer and %destructor): Rename to...
4939 (Default tagged and per-type %printer and %destructor): ... this, and
4940 extend.
4941 (Default %printer and %destructor for user-defined end token): Extend.
4942 (Default %printer and %destructor are not for error or $undefined):
4943 Update.
4944 (Default %printer and %destructor are not for $accept): Update.
4945 (Default %printer and %destructor for mid-rule values): Extend.
4946 * tests/input.at (Default %printer and %destructor redeclared): Extend.
4947 (Unused values with default %destructor): Extend.
4948
4949 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
4950
4951 Don't apply the default %destructor/%printer to an unreferenced midrule
4952 value. Mentioned at
4953 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00104.html>.
4954 * src/symtab.c (dummy_symbol_get): Name all dummy symbols initially
4955 like $@n instead of just @n so that the default %destructor/%printer
4956 logic doesn't see them as user-defined symbols.
4957 (symbol_is_dummy): Check for both forms of the name.
4958 * src/reader.c (packgram): Remove the `$' from each midrule symbol
4959 name for which the midrule value is referenced in any action.
4960 * tests/actions.at (Default %printer and %destructor for mid-rule
4961 values): New test.
4962 * tests/regression.at (Rule Line Numbers, Web2c Report): Update output
4963 for change to dummy symbol names.
4964
4965 2006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
4966
4967 Warn about unset midrule $$ if the corresponding $n is used.
4968 * src/reader.c (symbol_should_be_used): Check midrule parent rule for
4969 $n usage.
4970 (packgram): Before invoking grammar_rule_check on any rule, make sure
4971 all actions have already been scanned in order to set `used' flags.
4972 Otherwise, checking that a midrule's $$ is set will not always work
4973 properly because the midrule check must forward-reference the midrule's
4974 parent rule.
4975 * tests/input.at (AT_CHECK_UNUSED_VALUES): Extend to check the new
4976 warning.
4977
4978 2006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
4979
4980 More improvements to the documentation of the prologue alternatives:
4981 * NEWS (2.3a+): Mention the new `Prologue Alternatives' section in the
4982 Bison manual.
4983 * doc/bison.texinfo (Prologue Alternatives): Correct some errors. Add
4984 some text to clarify the relative importance of the new directives and
4985 to show how these directives may be viewed as code labels.
4986
4987 2006-10-16 Joel E. Denny <jdenny@ces.clemson.edu>
4988
4989 Similar to the recently removed %before-header, add %code-top as the
4990 alternative to the pre-prologue. Mentioned at
4991 <http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00063.html>.
4992 Also, let the prologue alternatives appear in the grammar section.
4993 * src/parse-gram.y (PERCENT_CODE_TOP): New token.
4994 (prologue_declaration): Move the existing prologue alternatives to...
4995 (grammar_declaration): ... here and add %code-top.
4996 * src/scan-gram.l (PERCENT_CODE_TOP): New token.
4997
4998 Clean up and extend documentation for the prologue alternatives.
4999 * NEWS (2.3a+): Describe prologue alternatives.
5000 * doc/bison.texinfo (Prologue): Move discussion of prologue
5001 alternatives to...
5002 (Prologue Alternatives): ... this new section, and extend it to discuss
5003 all 4 directives in detail.
5004 (Table of Symbols): Clean up discussion of prologue alternatives and
5005 add %code-top.
5006
5007 2006-10-16 Juan Manuel Guerrero <juan.guerrero@gmx.de>
5008
5009 DJGPP specific issues.
5010
5011 * djgpp/config.bat: config.hin has been moved to lib. Adjust
5012 config.bat accordingly.
5013 * djgpp/config.sed: Adjust config.sed for the use of autoconf 2.60.
5014 * djgpp/config.site: Likewise.
5015
5016 2006-10-16 Paolo Bonzini <bonzini@gnu.org>
5017
5018 Replace %*-header with %provides, %requires, %code. See discussion at
5019 http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00002.html
5020
5021 * data/bison.m4 (b4_user_requires, b4_user_provides): New.
5022 (b4_user_start_header): Remove.
5023 * data/glr.c: Use new macros instead of b4_*start_header
5024 and b4_*end_header.
5025 * data/glr.cc: Likewise.
5026 * data/lalr1.cc: Likewise.
5027 * data/push.c: Likewise.
5028 * data/yacc.c: Likewise.
5029
5030 * doc/bison.texinfo: Remove %before-header, rename
5031 %{start,end,after}-header to %requires, %provides, %code.
5032
5033 * src/parse-gram.y: Likewise (also rename token names accordingly).
5034 * src/scan-gram.l: Likewise.
5035 * tests/actions.at: Likewise.
5036
5037 2006-10-14 Paul Eggert <eggert@cs.ucla.edu>
5038
5039 * lib/Makefile.am (AM_CFLAGS): Remove $(WERROR_CFLAGS).
5040 Problem reported by Joel E. Denny.
5041
5042 2006-10-14 Jim Meyering <jim@meyering.net>
5043
5044 (Sync from coreutils.)
5045 Work also when the working directory (with e.g. coreutils sources)
5046 is version controlled with git, rather than CVS.
5047 * bootstrap (CVS_only_file): Test for the existence of README-cvs,
5048 rather than CVS.
5049 In messages and comments, say e.g., "checked-out sources",
5050 rather than "CVS sources".
5051 (version_controlled_file): New function. Work for git as well as
5052 for CVS. Don't use grep's -q option.
5053 (slurp): Call it here, in place of CVS-specific code.
5054
5055 2006-10-14 Joel E. Denny <jdenny@ces.clemson.edu>
5056
5057 Fix testsuite for ./configure --enable-gcc-warnings:
5058 * configure.ac (gcc-warnings): Move -Wall before -Wno-sign-compare.
5059 Otherwise, gcc 4.1.0 (at least) warns about sign comparisons in
5060 __AT_CHECK_PRINTER_AND_DESTRUCTOR in tests/actions.at.
5061 * test/input.at (Torturing the Scanner): #include <stdlib.h> for abort.
5062 * test/regression.at (Diagnostic that expects two alternatives):
5063 Likewise.
5064
5065 2006-10-12 Paul Eggert <eggert@cs.ucla.edu>
5066
5067 * bootstrap.conf (gnulib_modules): Add config-h.
5068 * djgpp/subpipe.c: Include <config.h> unconditionally; don't
5069 worry about HAVE_CONFIG_H.
5070 * lib/abitset.c: Likewise.
5071 * lib/bitset.c: Likewise.
5072 * lib/bitset_stats.c: Likewise.
5073 * lib/bitsetv-print.c: Likewise.
5074 * lib/bitsetv.c: Likewise.
5075 * lib/ebitset.c: Likewise.
5076 * lib/get-errno.c: Likewise.
5077 * lib/lbitset.c: Likewise.
5078 * lib/subpipe.c: Likewise.
5079 * lib/timevar.c: Likewise.
5080 * lib/vbitset.c: Likewise.
5081 * lib/bitset.c: Include "bitset.h" first, to test interface.
5082 * lib/bitset_stats.c: Include "bitset_stats.h" first.
5083 * lib/bitsetv-print.c: Include "bitsetv-print.h" first.
5084 * lib/bitsetv.c: Include "bitsetv.h" first.
5085 * lib/get-errno.c: Include "get-errno.h" first.
5086 * m4/.cvsignore: Add config-h.m4.
5087 * tests/actions.at (Default %printer and %destructor for ...):
5088 Adjust expected line numbers in output to reflect removal of #if
5089 HAVE_CONFIG_H lines.
5090 * tests/glr-regression.at (Missed %merge type warnings when ...):
5091 Likewise.
5092 * tests/regression.at (Braced code in declaration in rules section):
5093 Likewise.
5094 * tests/atlocal.in (CPPFLAGS): Don't define HAVE_CONFIG_H.
5095 * tests/local.at (AT_DATA_GRAMMAR_PROLOGUE):
5096 Include <config.h> unconditionally.
5097
5098 * bootstrap: Sync from coreutils, as follows:
5099
5100 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
5101
5102 * bootstrap (symlink_to_gnulib): Fix bug: the dot_dots shell
5103 variable was sometimes used without being initialized. This
5104 messed up the installation of the INSTALL file in some cases.
5105
5106 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
5107
5108 * bootstrap (usage, main program, symlink_to_gnulib): Add option
5109 --copy. Inspired by a suggestion from Bruno Haible.
5110
5111 2006-10-03 Jim Meyering <jim@meyering.net>
5112
5113 * bootstrap: Undo last change to this file, since now gnulib-tool
5114 sticks with the automake default in generating dependencies.
5115
5116 2006-10-12 Paul Eggert <eggert@cs.ucla.edu>
5117
5118 * configure.ac: Use AC_PROG_CC_STDC; this is more modern than
5119 the old AC_PROG_CC / AM_PROG_CC_STDC combination.
5120
5121 * doc/bison.1: Add copyright notice.
5122
5123 * data/glr.c: Don't include <stdarg.h>; not used.
5124
5125 * NEWS: The -g and --graph options now output graphs in Graphviz
5126 DOT format, not VCG format.
5127 * doc/bison.1: Likewise.
5128 * doc/bison.texinfo (Understanding, Bison Options): Likewise.
5129 * THANKS: Add Satya Kiran Popuri, who proposed the initial version
5130 of this change in
5131 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00158.html>.
5132 * TODO: Remove Graphviz entry.
5133 * src/Makefile.am (bison_SOURCES): Add graphviz.c and graphviz.h;
5134 remove vcg.c, vcg.h, vcg_defaults.h.
5135 * src/vcg.c, src/vcg.h, src/vcg_defaults.h: Remove.
5136 * src/graphviz.c, src/graphviz.h: New files.
5137 * src/files.c (compute_output_file_names): Output .dot, not .vcg.
5138 * src/files.h: Make comment more generic.
5139 * src/main.c (main): Likewise.
5140 * src/print_graph.h: Likewise.
5141 * src/getargs.c (usage): Make usage description more generic.
5142 * src/print_graph.c: Include graphviz.h rather than vcg.h.
5143 (static_graph, fgraph): Remove. All uses changed to pass
5144 arguments instead of sharing a static var.
5145 (print_core, print_actions, print_state, print_graph):
5146 Output graphviz format rather than VCG format.
5147 * tests/.cvsignore: Remove *.vcg; add *.dot.
5148 * tests/output.at: Expect *.dot files, not *.vcg files.
5149
5150 * data/Makefile.am (dist_pkgdata_DATA): Add bison.m4; this
5151 accommodates the 2006-10-08 change.
5152
5153 2006-10-11 Bob Rossi <bob@brasko.net>
5154
5155 * data/push.c (yypushparse, yypvarsinit, yypvars): Wrap in b4_push_if.
5156 (b4_yyssa, b4_yyerror_range): New macros.
5157 (struct yypvars): Remove yyssa_ptr and yyerror_range_ptr fields.
5158 (yypvarsinit): Remove init of removed fields.
5159 (yypushparse): Remove use of removed fields; use new macros instead.
5160
5161 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
5162
5163 * data/push.c (yypushparse): Fix memory leak if yymsg is malloced
5164 in a push parser. Reindent slightly to match yacc.c better.
5165
5166 2006-10-11 Bob Rossi <bob@brasko.net>
5167
5168 * data/push.c (struct yypvars): Remove yymsgbuf, yymsgbuf_ptr, yymsg,
5169 yymsg_alloc fields.
5170 (yypvarsinit, yypushparse): Remove init of removed fields.
5171 (yypushparse): Use yymsgbuf instead of yymsgbuf_ptr.
5172
5173 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
5174
5175 * THANKS: Add Paolo Bonzini and Bob Rossi.
5176
5177 2006-10-08 Paolo Bonzini <bonzini@gnu.org>
5178
5179 * data/c.m4 (b4_copyright, b4_epilogue, b4_location_initial_column,
5180 b4_location_initial_line, p4_parse_param, b4_ints_in, b4_flag_if,
5181 b4_define_flag_if and uses, b4_basename, b4_syncline, b4_user_code,
5182 b4_define_user_cde and uses): Remove.
5183 (b4_comment, b4_prefix, b4_sync_start): New.
5184 * data/bison.m4: New file, with most of the content removed from c.m4.
5185 * src/muscle_tab.h: Use "do {...} while(0)" throughout.
5186 * src/output.c (output_skeleton): Pass bison.m4.
5187 (prepare): Pass glr_flag and nondeterministic_flag. Pass prefix
5188 only if specified.
5189
5190 2006-10-05 Paul Eggert <eggert@cs.ucla.edu>
5191
5192 Fix test failure reported by Tom Lane in
5193 <http://lists.gnu.org/archive/html/bug-bison/2006-10/msg00000.html>
5194 and try to make such failures easier to catch in the future.
5195 * data/glr.c (YYTRANSLATE): Don't check for nonpositive arg;
5196 that's now the caller's responsibility.
5197 (yyprocessOneStack, yyrecoverSyntaxError, yyparse):
5198 Set yychar = YYEOF if it's negative.
5199 * tests/actions.at (yylex): Abort if asked to read past EOF.
5200 * tests/conflicts.at (yylex): Likewise.
5201 * tests/cxx-type.at (yylex): Likewise.
5202 * tests/glr-regression.at (yylex): Likewise.
5203 * tests/input.at (yylex): Likewise.
5204 * tests/regression.at (yylex): Likewise.
5205 * tests/torture.at (yylex): Likewise.
5206
5207 2006-10-01 Paul Eggert <eggert@cs.ucla.edu>
5208
5209 Fix problems with translating English-language diagnostics.
5210 * bootstrap: Fix bug introduced in recent bootstrap changes, with
5211 respect to bison-runtime pot generation. The YY_ stuff
5212 wasn't being captured.
5213 * bootstrap.conf (XGETTEXT_OPTIONS_RUNTIME): New var.
5214 * po/POTFILES.in: Add src/location.c, src/scan-code.l.
5215 * runtime-po/POTFILES.in: Add data/push.c.
5216
5217 2006-09-29 Paul Eggert <eggert@cs.ucla.edu>
5218
5219 Merge bootstrap changes from coreutils.
5220
5221 2006-09-28 Jim Meyering <jim@meyering.net>
5222
5223 Automatically generated dependencies are important even
5224 when all of the sources in a directory come from gnulib.
5225 * bootstrap (gnulib_tool): Remove the "no-dependencies" automake
5226 option that gnulib-tool adds to what becomes our lib/gnulib.mk.
5227
5228 2006-09-23 Jim Meyering <jim@meyering.net>
5229
5230 * bootstrap (gnulib_tool_options): Add "--local-dir gl".
5231
5232 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
5233
5234 * bootstrap: Add support for --force.
5235 (usage): New function. Describe usage less tersely.
5236 (CVS_only_file): New var.
5237
5238 2006-09-21 Paul Eggert <eggert@cs.ucla.edu>
5239
5240 * data/push.c (YYPUSH_MORE): Make it an enum instead.
5241 (yypushparse): Use YYPUSH_MORE instead of the mystery constant.
5242 Adjust white space and comments to match GNU style better.
5243
5244 2006-09-20 Bob Rossi <bob@brasko.net>
5245
5246 * data/push.c (yyresult_get): Remove function.
5247 (YYPUSH_MORE): Add #define.
5248 (yypushparse): Modify return value.
5249
5250 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
5251
5252 * stamp-h.in: Remove; no longer needed.
5253 * .cvsignore: Replace autom4te.cache and config.cache with *.cache.
5254 Remove config.h, config.hin, intl (no longer created).
5255 * lib/.cvsignore: Add config.h, config.hin, configmake.h, inttypes.h,
5256 stamp-h1.
5257
5258 Sync bootstrap from coreutils, as follows:
5259
5260 2006-09-18 Paul Eggert <eggert@cs.ucla.edu>
5261
5262 * bootstrap (symlink_to_gnulib): New function.
5263 (cp_mark_as_generated): Use it, to prefer symlinks-to-gnulib
5264 to copies-of-gnulib.
5265 (cp_mark_as_generated, slurp, gnulib_files):
5266 Avoid making a copy if it's the same as the old version.
5267 (gnulib_files): Add support for this variable (used by Bison).
5268
5269 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
5270
5271 * src/getargs.c (usage): Rework to use conventions similar to
5272 coreutils, to make translation a bit easier and the code a bit
5273 smaller. Problem reported by Tim Van Holder.
5274
5275 2006-09-15 Paul Eggert <eggert@cs.ucla.edu>
5276
5277 Use some of gnulib's new modules, taken from coreutils.
5278
5279 * bootstrap: Sync from coreutils, except add support for gnulib_files.
5280 * bootstrap.conf: New file.
5281 (gnulib_modules): Add configmake, inttypes, unistd.
5282 (XGETTEXT_OPTIONS): Add complain, complain_at,
5283 fatal, fatal_at, warn, warn_at, unexpected_end.
5284 * configure.ac (AC_CONFIG_HEADERS): config.h is now in lib, not here.
5285 (gl_USE_SYSTEM_EXTENSIONS): Remove; gl_EARLY now does this.
5286 (gl_EARLY): Add.
5287 (AM_STDBOOL_H): Remove; gl_INIT now dows this.
5288 (gl_INIT): Add
5289 (GNULIB_AUTOCONF_SNIPPET): Remove.
5290 (AM_GNU_GETTEXT): Add; require formatstring macros since that's
5291 the pickiest.
5292 * lib/.cvsignore: Add inttypes_.h.
5293 * lib/Makefile.am: Include gnulib.mk first so we can append to it.
5294 (AM_CFLAGS): Add WERROR_CFLAGS, to be more like coreutils.
5295 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES): Remove
5296 no-longer-necessary initializations.
5297 (lib_SOURCES): Remove, replacing by libbison_a_SOURCES.
5298 * lib/subpipe.c: Include <unistd.h> unconditionally, now that we
5299 use the unistd module.
5300 * src/system.h: Likewise.
5301 * m4/.cvsignore: Remove *_gl.m4, gnulib.m4, inttypes_h.m4, uintmax_t.m4,
5302 ulonglong.m4. Add gettext.m4, gnulib-cache.m4, gnulib-comp.m4,
5303 gnulib-tool.m4, inttypes-h.m4, inttypes-pri.m4, inttypes.m4.
5304 * src/Makefile.am (DEFS): Remove, since configmake does this for us.
5305 (AM_CPPFLAGS): Remove -I../lib, since Automake does that for us.
5306 * src/system.h: Include inttypes.h unconditionally, now that we
5307 use the inttypes module. Don't bother to include stdint.h, since
5308 inttypes.h now does that for us.
5309 (LOCALEDIR): Remove, now that we use the configmake module.
5310 * src/getargs.c: Include configmake.h.
5311 * src/main.c: Likewise.
5312 * src/output.c: Likewise.
5313 * tests/atlocal.in (CPPFLAGS): Include from $abs_top_builddir/lib,
5314 not from $abs_top_builddir, since config.h moved.
5315
5316
5317 Port to GCC 2.95. First two problems reported by Michael Deutschmann in
5318 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00018.html>.
5319
5320 * src/parse-gram.y (symbol_declaration): Don't put statements
5321 before declarations; it's not portable to C89.
5322 * src/scan-code.l (handle_action_at): Likewise.
5323
5324 * src/scan-code.l: Always initialize braces_level; the old code
5325 left it uninitialized and therefore had undefined behavior.
5326
5327 Don't attempt to redefine 'assert', since it runs afoul of
5328 systems where standard headers (mistakenly) include <assert.h>.
5329 Instead, define and use our own alternative, called 'aver'.
5330 * src/reader.c: Don't include assert.h, since we no longer
5331 use assert.
5332 * src/scan-code.l: Likewise.
5333 * src/system.h (assert): Remove, replacing with....
5334 (aver): New function, taking a bool arg. All uses changed.
5335 * src/tables.c (pack_vector): Ensure that aver arg is bool,
5336 not merely an integer.
5337
5338 2006-09-15 Bob Rossi <bob@brasko.net>
5339
5340 * data/Makefile.am (dist_pkgdata_DATA): Add push.c.
5341 * data/c.m4 (YYPUSH): New.
5342 (b4_push_if): New macro. Use it instead of #ifdef YYPUSH.
5343 * src/getargs.c (push_parser): New var.
5344 * src/getargs.h (push_parser): New declaration.
5345 * src/output.c (prepare): Add macro insertion of `push_flag'.
5346 * src/parse-gram.y (PERCENT_PUSH_PARSER): New token.
5347 (prologue_declaration): Parse %push-parser.
5348 * src/scan-gram.l: Scan new PERCENT_PUSH_PARSER token.
5349 * tests/calc.at (_AT_CHECK_CALC_ERROR): Add "Return" and "Now" to
5350 list of removed lines from the traces observed.
5351 (AT_CHECK_CALC_LALR): Added push parser tests.
5352
5353 2006-09-13 Paul Eggert <eggert@cs.ucla.edu>
5354
5355 * NEWS: Version 2.3a.
5356 * configure.ac (AC_INIT): Likewise.
5357
5358 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Remove
5359 "#define YYSTYPE int" that caused "make maintainer-check" to fail
5360 due to header ordering dependencies. I don't know why the #define
5361 was there.
5362
5363 Fix glr.cc and lalr1.cc's use of YYDEBUG so that there's zero
5364 runtime cost when YYDEBUG is not defined, and so that some tests
5365 that used to fail now work. Problem and initial suggestion by
5366 Paolo Bonzini.
5367 * data/c++.m4 (b4_parse_param_cons): Omit leading ','.
5368 * data/glr.cc (b4_parser_class_name):
5369 Initialize yycdebug_ only if YYDEBUG. Also, initialize yydebug_.
5370 (debug_level, set_debug_level): Affect yydebug_, not ::yydebug.
5371 (yydebug_) [YYDEBUG]: New member.
5372 (yycdebug_): Now defined only if YYDEBUG.
5373 * data/lalr1.cc (yydebug_, yycdebug_): Now defined only if YYDEBUG.
5374 (YYCDEBUG) [!YYDEBUG]: Don't use yydebug_ and yycdebug_.
5375 (b4_parser_class_name): Initialize yydebug_ and yycdebug_ only
5376 if YYYDEBUG.
5377 (debug_stream, set_debug_stream, debug_level, set_debug_level):
5378 Define only if YYDEBUG.
5379 * tests/calc.at (_AT_DATA_CALC_Y) [!YYDEBUG]: Omit call to
5380 set_debug_level.
5381 * tests/regression.at (_AT_DATA_DANCER_Y) [!YYDEBUG]: Likewise.
5382 * tests/calc.at (AT_CHECK_CALC_GLR_CC): Uncomment calls to
5383 AT_CHECK_CALC_GLR_CC that are working now.
5384
5385 2006-09-12 Paul Eggert <eggert@cs.ucla.edu>
5386
5387 * data/glr.cc (YYERROR_VERBOSE, YYTOKEN_TABLE): Remove.
5388 We don't need them in glr.cc, and glr.c defines them.
5389 Defining YYERROR_VERBOSE to 0 here breaks glr.c, since glr.c
5390 assumes that defining it to anything is the same as defining
5391 it to 1. Problem reported by Paolo Bonzini.
5392
5393 2006-09-12 Paolo Bonzini <bonzini@gnu.org> (tiny change)
5394
5395 * data/c.m4 (b4_null, b4_case): Define.
5396 * src/output.c (prepare_symbols): Use b4_null.
5397 (user_actions_output): Use b4_case.
5398
5399 2006-09-11 Paul Eggert <eggert@cs.ucla.edu>
5400
5401 * data/glr.c (b4_shared_declarations): Put start-header first,
5402 before any #includes that we generate, so that feature-test
5403 macros work. Problem reported by Michael Deutschmann in
5404 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00004.html>.
5405 * data/lalr1.cc: Likewise.
5406 * doc/bison.texinfo (Prologue): Document that feature-test macros
5407 should be defined before any Bison declarations.
5408 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Put defns
5409 that depend on location.hh after, not before, Bison decls, since
5410 we now include location.hh after the first user prologue.
5411
5412 * doc/bison.texinfo (Calc++ Parser): Fix memory leak reported by
5413 Sander Brandenburg in
5414 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00002.html>.
5415 Also, fix minor white space and comment issues.
5416 (Prologue): Mention that it's better to define feature-test macros
5417 before Bison declarations. Problem reported by Michael Deutschmann.
5418
5419 * README-cvs: Fix typo: "&" should be "&&". Problem reported
5420 by Jim Meyering.
5421 * m4/.cvsignore: Add argmatch.m4. Remove obstack.m4, strerror_r.m4.
5422 This adjusts to recent gnulib changes.
5423
5424 2006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
5425
5426 Finish implementation of per-type %destructor/%printer. Discussed
5427 starting at
5428 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>
5429 and
5430 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>.
5431 * NEWS (2.3+): Add a description of this feature to the default
5432 %destructor/%printer description.
5433 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise.
5434 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
5435 Invoke semantic_type_destructor_set or semantic_type_printer_set when a
5436 list node contains a semantic type.
5437 * src/symtab.c, src/symtab.h: Extend with a table that associates
5438 semantic types with their %destructor's and %printer's.
5439 (semantic_type_from_uniqstr, semantic_type_get,
5440 semantic_type_destructor_set, semantic_type_printer_set): New functions
5441 composing the public interface of that table.
5442 (symbol_destructor_get, symbol_destructor_location_get,
5443 symbol_printer_get, symbol_printer_location_get): If there's no
5444 per-symbol %destructor/%printer, look up the per-type before trying
5445 the default.
5446 * tests/actions.at (Per-type %printer and %destructor): New test case.
5447 * tests/input.at (Default %printer and %destructor redeclared):
5448 Extend to check that multiple occurrences of %symbol-default in a
5449 single %destructor/%printer declaration is an error.
5450 (Per-type %printer and %destructor redeclared, Unused values with
5451 per-type %destructor): New test cases.
5452
5453 2006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
5454
5455 Require default %destructor/%printer to be declared using
5456 %symbol-default instead of an empty symbol list, and start working on
5457 new per-type %destructor/%printer. Discussed at
5458 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00007.html>.
5459 * NEWS (2.3+): Add %symbol-default to example.
5460 * bison.texinfo (Freeing Discarded Symbols): Likewise.
5461 (Table of Symbols): Add entry for %symbol-default.
5462 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): New token.
5463 (generic_symlist, generic_symlist_item): New nonterminals for creating
5464 a list in which each item is a symbol, semantic type, or
5465 %symbol-default.
5466 (grammar_declaration): Use generic_symlist in %destructor and %printer
5467 declarations instead of symbols.1 or an empty list.
5468 (symbol_declaration, precedence_declaration, symbols.1): Update actions
5469 for changes to symbol_list.
5470 * src/reader.c: Update for changes to symbol_list.
5471 * src/scan-code.l: Likewise.
5472 * src/scan-gram.l: Scan new PERCENT_SYMBOL_DEFAULT token.
5473 * src/symlist.c, src/symlist.h: Extend such that a list node may
5474 represent a semantic type or a %symbol-default in addition to just an
5475 ordinary symbol. Add switched functions for setting %destructor's and
5476 %printer's.
5477 * tests/actions.at, tests/input.at: Add %symbol-default to all default
5478 %destructor/%printer declarations.
5479
5480 2006-08-23 Joel E. Denny <jdenny@ces.clemson.edu>
5481
5482 Whether the default %destructor/%printer applies to a particular symbol
5483 isn't a question of whether the user *declares* that symbol (in %token,
5484 for example). It's a question of whether the user by any means
5485 *defines* the symbol at all (by simply using a char token, for
5486 example). $end is defined by Bison whereas any other token with token
5487 number 0 is defined by the user. The error token is always defined by
5488 Bison regardless of whether the user declares it with %token, but we
5489 may one day let the user define error as a nonterminal instead.
5490 * NEWS (2.3+): Say "user-defined" instead of "user-declared".
5491 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise, and document
5492 the meaning of "user-defined".
5493 * tests/actions.at (Default %printer and %destructor for user-declared
5494 end token): Rename to...
5495 (Default %printer and %destructor for user-defined end token): ...
5496 this.
5497
5498 * src/symtab.c (symbol_destructor_get, symbol_printer_get): In the
5499 computation of whether to apply the default, don't maintain a list of
5500 every Bison-defined symbol. Instead, just check for a first character
5501 of '$', which a user symbol cannot have, and check for the error token.
5502
5503 2006-08-21 Joel E. Denny <jdenny@ces.clemson.edu>
5504
5505 Don't apply the default %destructor or %printer to the error token,
5506 $undefined, or $accept. This change fits the general rule that the
5507 default %destructor and %printer are only for user-declared symbols,
5508 and it solves several difficulties that are described in the new test
5509 cases listed below.
5510 * src/symtab.c (symbol_destructor_get, symbol_printer_get): Implement.
5511 * tests/actions.at (Default %printer and %destructor are not for error
5512 or $undefined, Default %printer and %destructor are not for $accept):
5513 New test cases.
5514
5515 2006-08-19 Joel E. Denny <jdenny@ces.clemson.edu>
5516
5517 Allow %start after the first rule.
5518 * src/reader.c (grammar_current_rule_begin): Don't set the start symbol
5519 when parsing the first rule.
5520 (check_and_convert_grammar): Search for it here after all grammar
5521 declarations have been parsed. Skip midrules, which have dummy LHS
5522 nonterminals.
5523 * src/symtab.c (symbol_is_dummy): New function.
5524 * src/symtab.h (symbol_is_dummy): Declare it.
5525 * tests/input.at (%start after first rule): New test.
5526
5527 2006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
5528
5529 Redo some of the previous commit: add back the ability to use
5530 non-aliased/undeclared string literals since it might be useful to
5531 those declaring %token-table.
5532 * src/reader.c (check_and_convert_grammar): Undo changes in previous
5533 commit: don't worry about complaints from symbols_pack.
5534 * src/symtab.c (symbol_new, symbol_class_set,
5535 symbol_check_alias_consistency): Undo changes in previous commit: count
5536 each string literal as a new symbol and token, assign it a symbol
5537 number, and don't complain about non-aliased string literals.
5538 (symbols_pack): Since symbol_make_alias still does not decrement symbol
5539 and token counts but does still set aliased tokens to the same number,
5540 symbol_pack_processor now leaves empty slots in the symbols array.
5541 Remove those slots.
5542 * tests/regression.at (Undeclared string literal): Remove test case
5543 added in previous commit since non-aliased string literals are allowed
5544 again.
5545 (Characters Escapes, Web2c Actions): Undo changes in previous commit:
5546 remove unnecessary string literal declarations.
5547 * tests/sets.at (Firsts): Likewise.
5548
5549 2006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
5550
5551 Don't allow an undeclared string literal, but allow a string literal to
5552 be used before its declaration.
5553 * src/reader.c (check_and_convert_grammar): Don't invoke packgram if
5554 symbols_pack complained.
5555 * src/symtab.c (symbol_new): Don't count a string literal as a new
5556 symbol.
5557 (symbol_class_set): Don't count a string literal as a new token, and
5558 don't assign it a symbol number since symbol_make_alias does that.
5559 (symbol_make_alias): It's not necessary to decrement the symbol and
5560 token counts anymore. Don't assume that an alias declaration occurs
5561 before any uses of the identifier or string, and thus don't assert that
5562 one of them has the highest symbol number so far.
5563 (symbol_check_alias_consistency): Complain if there's a string literal
5564 that wasn't declared as an alias.
5565 (symbols_pack): Bail if symbol_check_alias_consistency failed since
5566 symbol_pack asserts that every token has been assigned a symbol number
5567 although undeclared string literals have not.
5568 * tests/regression.at (String alias declared after use, Undeclared
5569 string literal): New test cases.
5570 (Characters Escapes, Web2c Actions): Declare string literals as
5571 aliases.
5572 * tests/sets.at (Firsts): Likewise.
5573
5574 2006-08-14 Joel E. Denny <jdenny@ces.clemson.edu>
5575
5576 In the grammar scanner, STRING_FINISH unclosed constructs and return
5577 them to the parser in order to improve error messages.
5578 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER,
5579 SC_BRACED_CODE, SC_PROLOGUE): Implement.
5580 * tests/input.at (Unclosed constructs): New test case.
5581 * tests/regression.at (Invalid inputs): Update now that unclosed %{ is
5582 seen.
5583
5584 * src/scan-gram.h, src/scan-gram.l (gram_last_braced_code_loc): Remove
5585 unused global.
5586
5587 2006-08-13 Joel E. Denny <jdenny@ces.clemson.edu>
5588
5589 Handle string aliases for character tokens correctly.
5590 * src/symtab.c (symbol_user_token_number_set): If the token has an
5591 alias, check and set its alias's user token number instead of its own,
5592 which is set to indicate the alias. Previously, every occurrence of
5593 the character token in the grammar overwrote that alias indicator with
5594 the character code.
5595 * tests/input.at (String aliases for character tokens): New test.
5596
5597 2006-08-12 Joel E. Denny <jdenny@ces.clemson.edu>
5598
5599 * src/parse-gram.y: Add `%expect 0' so we don't overlook conflicts.
5600
5601 2006-08-11 Paul Eggert <eggert@cs.ucla.edu>
5602
5603 * bootstrap: Put in need-ngettext argument to AM_GNU_GETTEXT,
5604 to prevent failures when building on older platforms.
5605 Check for autopoint failure.
5606 Set XGETTEXT_OPTIONS to values that check for C format strings,
5607 so that translators are warned about them (this also helps
5608 prevent core dumps).
5609
5610 * lib/subpipe.c (create_subpipe): Use new gnulib pipe_safer
5611 function, since it simplifies our code a bit.
5612
5613 * configure.ac (AC_ARG_ENABLE): Use -Wextra -Wno-sign-compare
5614 rather than -W, so we don't get bogus warnings about sign comparisons.
5615 Add -Wpointer-arith, since that warning is useful (it reports code
5616 that does not conform to C89 and that some compilers reject).
5617 * data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c: Undo latest change,
5618 since it's no longer needed.
5619
5620 2006-08-10 Joel E. Denny <jdenny@ces.clemson.edu>
5621
5622 Clean up scanners a bit.
5623 * src/flex-scanner.h (FLEX_NO_OBSTACK): New macro that blocks obstack
5624 definitions so gcc won't warn when obstack_for_string is unused.
5625 * src/scan-code.l: config.h and system.h are already #include'd by
5626 scan-code-c.c, so get rid of them here.
5627 * src/scan-gram.l: Likewise.
5628 * src/scan-skel.l: Likewise, and use flex-scanner.h without obstack
5629 definitions rather than duplicating the rest of it.
5630 * src/scan-gram-c.c, scan-skel-c.c: #include "system.h".
5631
5632 2006-08-09 Joel E. Denny <jdenny@ces.clemson.edu>
5633
5634 Suppress signed/unsigned comparison warnings for yycheck.
5635 * data/c.m4 (b4_safest_int_type): New macro.
5636 * data/glr.c, data/lalr1.cc: Wherever you compare yycheck[i] against
5637 a signed int type, cast it to b4_safest_int_type first.
5638 * data/yacc.c: Likewise.
5639 (b4_safest_int_type): Overwrite the one from c.m4 since b4_int_type is
5640 also overwritten.
5641
5642 2006-08-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> (tiny change)
5643
5644 * doc/bison.texinfo: Fix some typos.
5645
5646 2006-08-02 Paul Eggert <eggert@cs.ucla.edu>
5647
5648 * m4/.cvsignore: Add inttypes_h.m4,lib-ld.m4, lib-prefix.m4,
5649 po.m4, stdint_h.m4, uintmax_t.m4, ulonglong.m4, warning.m4.
5650
5651 * bootstrap (gnulib_tool): Stop using --assume-autoconf;
5652 the latest gnulib does this a different way.
5653 (get_translations): Sharuzzaman Ahmat Raslan reported that the ms
5654 translation was patched, so stop omitting it.
5655
5656 2006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
5657
5658 Enable declaration of default %printer/%destructor. Make the parser
5659 use these for all user-declared grammar symbols for which the user does
5660 not declare a specific %printer/%destructor. Thus, the parser uses it
5661 for token 0 if the user declares it but not if Bison generates it as
5662 $end. Discussed starting at
5663 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>,
5664 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>,
5665 and
5666 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>.
5667 * NEWS (2.3+): Mention.
5668 * doc/bison.texinfo (Actions in Mid-Rule): It's no longer impossible to
5669 declare a %destructor for a mid-rule's semantic value. It's just
5670 impossible to declare one specific to it.
5671 (Freeing Discarded Symbols): Mention that @$ can be used in %destructor
5672 code. Describe default %destructor form.
5673 * src/parse-gram.y (grammar_declaration): Parse default
5674 %printer/%destructor declarations.
5675 * src/output.c (symbol_destructors_output): Use symbol_destructor_get
5676 and symbol_destructor_location_get rather than accessing the destructor
5677 and destructor_location members of struct symbol.
5678 (symbol_printers_output): Likewise but for %printer's.
5679 * src/reader.c (symbol_should_be_used): Likewise but for %destructor's
5680 again.
5681 * src/symtab.c (default_destructor, default_destructor_location,
5682 default_printer, default_printer_location): New static global
5683 variables to record the default %destructor and %printer.
5684 (symbol_destructor_get, symbol_destructor_location_get,
5685 symbol_printer_get, symbol_printer_location_get): New functions to
5686 compute the appropriate %destructor and %printer for a symbol.
5687 (default_destructor_set, default_printer_set): New functions to set the
5688 default %destructor and %printer.
5689 * src/symtab.h: Prototype all those new functions.
5690 * tests/actions.at (Default %printer and %destructor): New test to
5691 check that the right %printer and %destructor are called, that they're
5692 not called for $end, and that $$ and @$ work correctly.
5693 (Default %printer and %destructor for user-declared end token): New
5694 test to check that the default %printer and %destructor are called for
5695 a user-declared end token.
5696 * tests/input.at (Default %printer and %destructor redeclared, Unused
5697 values with default %destructor): New tests to check related grammar
5698 warnings and errors.
5699
5700 2006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
5701
5702 Clean up handling of %destructor for the end token (token 0).
5703 Discussed starting at
5704 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>
5705 and
5706 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00013.html>.
5707
5708 Make the skeletons consistent in how they pop the end token and invoke
5709 its %destructor.
5710 * data/glr.c (yyrecoverSyntaxError, yyparse): Don't pop the start
5711 state, which has token number 0, since this would invoke the
5712 %destructor for the end token.
5713 * data/lalr1.cc (yy::parser::parse): Don't check for the final state
5714 until after shifting the end token, or else it won't be popped.
5715 * data/yacc.c (yyparse): Likewise.
5716
5717 * data/glr.c (yyparse): Clear the lookahead after shifting it even when
5718 it's the end token. Upon termination, destroy an unshifted lookahead
5719 even when it's the end token.
5720 * data/lalr1.cc (yy::parser::parse): Likewise.
5721 * data/yacc.c (yyparse): Likewise.
5722
5723 * src/reader.c (packgram): Don't check rule 0. This suppresses unused
5724 value warnings for the end token when the user gives the end token a
5725 %destructor.
5726
5727 * tests/actions.at (Printers and Destructors): Test all the above.
5728
5729 2006-07-24 Paul Eggert <eggert@cs.ucla.edu>
5730
5731 Update to latest gnulib and gettext versions.
5732 * bootstrap (gnulib-modules): Remove hard-locale, stdio-safer.
5733 Add fopen-safer.
5734 (gnulib_files): Add m4/warning.m4. Don't worry about files
5735 overwritten by autopoint.
5736 Replace gt_INTL_SUBDIR_CORE with an empty body in m4/gettext_gl.m4.
5737 Suppress "id", "ms", "tr" translations for now, since gettext 0.15
5738 rejects them.
5739 Don't use autoreconf; instead, invoke autopoint etc. by hand,
5740 so that we can remove the intl files at a better time.
5741 (intl_files_to_remove): Remove aclocal.m4, since it gets
5742 rebuilt anyway. Remove m4/inttypes_h.m4, m4/inttypes.m4,
5743 m4/isc-posix.m4, m4/lib-ld.m4, m4/lib-prefix.m4, m4/po.m4,
5744 m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
5745 Add m4/inttypes-h.m4, m4/lock.m4, m4/visibility.m4.
5746 Remove datarootdir hack; no longer needed.
5747 * configure.ac: Use gl_WARNING_CFLAGS rather than BISON_WARNING.
5748 (AM_GNU_GETTEXT_VERSION): Bump from 0.12 to 0.15.
5749 * lib/.cvsignore: Remove hard-locale.c, hard-locale.h, strdup.c,
5750 strdup.h.
5751 * m4/.cvsignore: Remove hard-locale.m4, strdup.m4.
5752 * m4/warning.m4: Remove from CVS, since we now use gnulib's version.
5753
5754 2006-07-20 Paul Eggert <eggert@cs.ucla.edu>
5755
5756 * bootstrap: Adjust to today's change to gnulib-tool by invoking
5757 it with --assume-autoconf='latest-stable'.
5758
5759 2006-07-13 Joel E. Denny <jdenny@ces.clemson.edu>
5760
5761 * src/parse-gram.y (grammar_declaration): Don't confuse Doxygen (at
5762 least 1.4.7 and 1.4.4) by putting a #line between `typedef union
5763 YYSTYPE' and `{'.
5764 * src/muscle_tab.h (muscle_grow): Replace the header comments with
5765 those from muscle_tab.c since the old ones are misleading.
5766
5767 2006-07-13 Akim Demaille <akim@epita.fr>
5768
5769 Support %define "KEY" {VALUE}.
5770 * src/scan-code.h, src/scan-code.l (translate_action)
5771 (translate_rule_action, translate_symbol_action, translate_code):
5772 Return char *, not const char *.
5773 * src/parse-gram.y (declaration): Rename as...
5774 (prologue_declaration): this.
5775 (string_content): Remove this nonterminal, use STRING.
5776 (braceless, content, content.opt): New nonterminal.
5777 Use them.
5778 (%define): Now accept content.opt, i.e., accept also BRACED_CODE
5779 as value.
5780 * src/scan-gram.l (getargs.h): Don't include it.
5781
5782 2006-07-12 Paul Eggert <eggert@cs.ucla.edu>
5783
5784 * data/lalr1.cc (YYCDEBUG): Use 'if (yydebug_) (*yycdebug_)'
5785 rather than a for-loop that declares a local bool variable. This
5786 should work around a compatibility problem with a Cray x1e C++
5787 compiler reported by Hung Nguyen in
5788 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00022.html>.
5789 The for-loop was introduced in the 2004-11-17 change but I don't
5790 know why it was needed.
5791
5792 2006-07-12 Akim Demaille <akim@epita.fr>
5793
5794 * data/c.m4: Comment changes.
5795
5796 2006-07-10 Akim Demaille <akim@lrde.epita.fr>
5797
5798 * src/complain.c (error_message, ERROR_MESSAGE): New.
5799 To factor...
5800 (fatal_at, fatal, warn_at, warn, complain_at, complain): these.
5801 * src/complain.h, src/complain.c (warning_issued): Remove, unused.
5802
5803 2006-07-09 Paul Eggert <eggert@cs.ucla.edu>
5804
5805 * NEWS: Instead of %union, you can define and use your own union type
5806 YYSTYPE if your grammar contains at least one <type> tag.
5807 Your YYSTYPE need not be a macro; it can be a typedef.
5808 * doc/bison.texinfo (Value Type, Multiple Types, Location Type):
5809 (Union Decl, Decl Summary): Document this.
5810 * data/glr.c (YYSTYPE): Implement this.
5811 * data/glr.cc (YYSTYPE): Likewise.
5812 * data/lalr1.cc (YYSTYPE): Likewise.
5813 * data/yacc.c (YYSTYPE): Likewise.
5814 * src/output.c (prepare): Output tag_seen_flag.
5815 * src/parse-gram.y (declaration, grammar_declaration):
5816 Use 'union_seen' rather than 'typed' to determine whether
5817 %union has been seen, since grammars can now be typed without
5818 %union.
5819 (symbol_declaration, type.opt, symbol_def):
5820 Keep track of whether a tag has been seen.
5821 * src/reader.c (union_seen, tag_seen): New vars.
5822 (typed): remove.
5823 * src/reader.h (union_seen, tag_seen, typed): Likewise.
5824 * src/scan-code.l (untyped_var_seen): New variable.
5825 (handle_action_dollar): Adjust to above changes.
5826 (handle_action_dollar, handle_action_at):
5827 Improve overflow checking for outlandish numbers.
5828 * tests/input.at (AT_CHECK_UNUSED_VALUES): Redo test to
5829 avoid new diagnostics generated by above changes.
5830 * tests/regression.at (YYSTYPE typedef): Add test to check
5831 for type tags without %union.
5832
5833 * src/symlist.c (symbol_list_length): Return int, not unsigned
5834 int, since callers expect int. This may need to get revisited
5835 once we have proper integer overflow checking.
5836
5837 * src/scan-gram.h (gram_scanner_cursor): Remove decl, since this
5838 object is now static.
5839
5840 * src/getargs.c (flags_argmatch): Return void, not int,
5841 to pacify ./configure --enable-gcc-warnings.
5842
5843 * src/flex-scanner.h (STRING_FREE): Don't use FLEX_PREFIX (last_string)
5844 since last_string is already defined to FLEX_PREFIX (last_string).
5845
5846 2006-07-09 Akim Demaille <akim@lrde.epita.fr>
5847
5848 Implement --warnings/-W.
5849 * src/getargs.c (report_argmatch, trace_argmatch): Remove,
5850 replaced by...
5851 (flags_argmatch, FLAGS_ARGMATCH): this new function and macro.
5852 Adjust callers.
5853 * src/getargs.h, src/getargs.c (warnings, warnings_flags)
5854 (warnings_args, warnings_types): New.
5855 (getargs, short_options, long_options): Accept -W/--warnings.
5856 Sort the options by alphabetical order, upper case letter right
5857 before its lower case.
5858
5859 2006-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
5860
5861 Change %merge result type clash warnings to errors. Discussed at
5862 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00026.html>.
5863 * src/reader.c (record_merge_function_type): Use complain_at.
5864 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
5865 declared later): Update test case results.
5866
5867 2006-07-09 Akim Demaille <akim@lrde.epita.fr>
5868
5869 * src/getargs.h, src/getargs.c: Swap --report and --trace handling
5870 to be in alphabetical order.
5871 (trace_args): Spelling fixes.
5872
5873 2006-07-09 Paul Eggert <eggert@cs.ucla.edu>
5874
5875 * data/yacc.c (YYID, yy_stack_print): Prefix local vars with "yy"
5876 so they don't collide with user-defined macros.
5877 (yy_stack_print): Don't assume that yytype_int16 promotes to int;
5878 this was never guaranteed, and now that we're using gnulib stdint,
5879 which defines int_fast16_t to long int, the problem is exposed.
5880
5881 2006-07-08 Paul Eggert <eggert@cs.ucla.edu>
5882
5883 * data/c.m4 (b4_basename): Simplify a bit, since we don't
5884 need the full POSIX semantics (and weren't implementing them
5885 anyway).
5886
5887 Adjust to Autoconf 2.60 and today's gnulib.
5888 * bootstrap (gnulib_modules): Add stdint.
5889 Remove special case for m4/onceonly_2_57.m4, since gnulib-tool
5890 no longer copies it.
5891 (intl_files_to_remove): Remove m4/longlong.m4 and m4/wchar_t.m4,
5892 since stdint needs the former and wcwidth (which is now required
5893 by mbswidth) needs the latter.
5894 Append 'datarootdir = @datarootdir@' to po/Makefile.in.in, to
5895 work around a compatibility glitch between gettext 0.14.6 and
5896 Autoconf 2.60.
5897 * configure.ac (AC_PREREQ): Require Autoconf 2.60.
5898 Do not check for uintptr_t, since new stdint module does the right
5899 thing.
5900 * lib/.cvsignore: Remove alloca.c, alloca.h, alloca_.h.
5901 Add stdint.h, stdint_.h, wcwidth.h.
5902 * m4/.cvsignore: Remove alloca.m4, onceonly.m4.
5903 Add absolute-header.m4, double-slash-root.m4, longlong.m4,
5904 stdint.m4, wchar_t.m4, wcwidth.m4.
5905 * src/files.c: Include <dirname.h> and <stdio-safer.h> in the
5906 usual order for ../lib/*.h files.
5907 (file_name_split): Use last_component, not base_name, to adjust
5908 to gnulib changes.
5909 * src/parse-gram.h: Include <strverscmp.h> in the usual order
5910 for ../lib/*.h files.
5911 (YYTYPE_INT16, YYTYPE_INT8, YYTYPE_UINT16, YYTYPE_UINT8):
5912 Define unconditionally, since we now assume the stdint module.
5913 * src/scan-skel.l: Include <dirname.h>.
5914 (BASE_QPUTS): Use last_component, not base_name.
5915 * src/system.h: Include <unlocked-io.h> in the usual order
5916 for ../lib/*.h files. Include <stdint.h> unconditionally,
5917 since we now use the stdint module.
5918 (uintptr_t): Declare if UINTPTR_MAX is not defined, not
5919 HAVE_UINTPTR_T, since we now use the stdint module.
5920 (base_name): Remove decl, since files now include <dirname.h>
5921 to get the decl.
5922
5923 2006-07-08 Akim Demaille <akim@lrde.epita.fr>
5924
5925 * data/c.m4 (b4_location_initial_column, b4_location_initial_line):
5926 New, default to 1.
5927 * data/yacc.c, data/glr.c, data/location.cc: Use them.
5928 * NEWS, doc/bison.texinfo: The initial column and line are 1 by
5929 default.
5930 * tests/calc.at: Adjust.
5931
5932 2006-07-08 Akim Demaille <akim@lrde.epita.fr>
5933
5934 * data/c.m4 (b4_basename): New.
5935 (b4_syncline): Also output the location of its invocation (from
5936 the skeleton).
5937 (b4_user_action, b4_define_user_action, b4_user_actions)
5938 (b4_user_initial_action, b4_user_post_prologue, b4_user_start_header)
5939 (b4_user_stype): New.
5940 * data/yacc.c, data/glr.c, data/lalr1.cc, data/glr.cc: Use them.
5941
5942 2006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
5943
5944 In the grammar file, the first column is 1 not 0 on the first line as
5945 on every other line.
5946 * src/parse-gram.y (%initial-action): Initialize @$ correctly.
5947 * tests/input.at (Torturing the Scanner): Update output.
5948
5949 * src/scan-gram.l (scanner_cursor): Declare it static.
5950
5951 2006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
5952
5953 In warnings, say "previous declaration" rather than "first
5954 declaration".
5955 * src/symtab.c (redeclaration): Do that here.
5956 * src/reader.c (record_merge_function_type): In the case of a result
5957 type clash, report the previous declaration rather than the very first
5958 one in the grammar file.
5959 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
5960 declared later): Add a third declaration to check this behavior.
5961 * tests/input.at (Incompatible Aliases): Update output.
5962
5963 2006-06-27 Akim Demaille <akim@epita.fr>
5964
5965 * doc/Doxyfile.in: New.
5966 * doc/Makefile.am: Use it.
5967 * src/lalr.h, src/symtab.h: Initial doxygenation.
5968
5969 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
5970
5971 Don't miss %merge result type warnings just because the LHS types are
5972 declared after the %merge. This continues the effort of the previous
5973 patch.
5974 * src/reader.c (get_merge_function): Don't set the merger type yet.
5975 (record_merge_function_type): New function for setting the merger type
5976 and checking for clashes.
5977 (grammar_current_rule_merge_set): Set the location of the %merge for
5978 the current rule.
5979 (packgram): Invoke record_merge_function_type for each rule now that
5980 all symbol type declarations have been parsed.
5981 * src/reader.h (merger_list.type_declaration_location): New member
5982 storing the location of the first %merge from which the type for this
5983 merging function was derived.
5984 * src/symlist.h (symbol_list.merger_declaration_location): New member
5985 storing the location of a rule's %merge, if any.
5986 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
5987 declared later): New test to catch the error fixed by the above patch.
5988
5989 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
5990
5991 Get action warnings (grammar_rule_check) right even when symbol
5992 declarations appear after the rules. Discussed at
5993 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00108.html>
5994 and
5995 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00151.html>.
5996 Don't mistake the type of $$ in a midrule to be that of its parent
5997 rule's $$.
5998 * src/reader.c (grammar_current_rule_end): Don't invoke
5999 grammar_rule_check yet since not all symbol declarations may have been
6000 parsed yet.
6001 (grammar_midrule_action): Likewise.
6002 Don't record whether the midrule's $$ has been used yet since actions
6003 haven't been translated yet.
6004 Record the midrule's parent rule and its RHS index within the parent
6005 rule.
6006 (grammar_current_rule_action_append): Don't translate the action yet
6007 since not all symbol declarations may have been parsed yet and, thus,
6008 warnings about types for $$, $n, @$, and @n can't be reported yet.
6009 (packgram): Translate the action and invoke grammar_rule_check now that
6010 all symbol declarations have been parsed.
6011 * src/scan-code.l (handle_action_dollar): Now that this is invoked
6012 after parsing the entire grammar file, the symbol list here in the case
6013 of a midrule is actually the midrule's empty RHS, so reference its
6014 parent rule's RHS where necessary.
6015 On the other hand, now that you can already know it's a midrule, you
6016 aren't forced to think $$ has the same type as its parent rule's $$.
6017 (handle_action_at): In the case of a midrule, reference the parent rule
6018 where necessary.
6019 * src/symlist.c (symbol_list_new): Initialize new midrule-related
6020 members.
6021 (symbol_list_length): Now that this is invoked after all rules have
6022 been parsed, a NULL symbol (rather than a NULL symbol list node)
6023 terminates a rule. symbol_list_print already does this correctly.
6024 * src/symlist.h (symbol_list.midrule_parent_rule,
6025 symbol_list.midrule_parent_rhs_index): New members so that midrules can
6026 remember their relationships with their parents.
6027 * tests/input.at (Type Clashes): Extend to catch the midrule $$ error
6028 fixed by the above patch.
6029 (_AT_UNUSED_VALUES_DECLARATIONS, AT_CHECK_UNUSED_VALUES): New m4 macros
6030 implementing...
6031 (Unused values): ... this old test case and...
6032 (Unused values before symbol declarations): ... this new test case.
6033 This one is the same as `Unused values' except that all symbol
6034 declarations appear after the rules in order to catch the rest of the
6035 errors fixed by the above patch.
6036
6037 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
6038
6039 More cleanup.
6040 * src/reader.c (current_rule): Declare it static since it's no longer
6041 used outside this file.
6042 (grammar_current_rule_action_append): Remove redundant arguments from
6043 translate_rule_action invocation.
6044 * src/reader.h (current_rule): Remove this unused extern.
6045 * src/scan-code.h (translate_rule_action): Remove redundant arguments.
6046 * src/scan-code.l (translate_rule_action): Likewise.
6047
6048 2006-06-25 Joel E. Denny <jdenny@ces.clemson.edu>
6049
6050 Clean up yesterday's patch.
6051 * parse-gram.y (rhs): Move grammar_midrule_action invocation from here
6052 to...
6053 * src/reader.c (grammar_current_rule_action_append): ... here for
6054 consistency with grammar_current_rule_symbol_append.
6055 * tests/regression.at (Braced code in declaration in rules section):
6056 Make yyerror and yylex static as usual.
6057
6058 2006-06-24 Joel E. Denny <jdenny@ces.clemson.edu>
6059
6060 Fix bug that mistakes braced code in a declaration in the rules section
6061 to be a rule action. Mentioned at
6062 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00105.html>.
6063 * src/scan-gram.l: Move midrule action detection from the start of the
6064 scanning of any braced code to...
6065 * src/parse-gram.y (rhs): ... the parsing of braced code as a rule
6066 action. For readability, use $2 and @2 rather than the equivalent
6067 global variables.
6068 * tests/regression.at (Braced code in declaration in rules section):
6069 New test to catch the error fixed by the above patch.
6070
6071 Work on code readability some.
6072 * src/scan-code.l (current_rule): Get rid of this misleading and
6073 redundant declaration: it's actually extern'ed in reader.h.
6074 (YY_DECL, code_lex, handle_action_dollar, handle_action_at,
6075 translate_action): Add a rule argument and use it instead of the global
6076 current_rule.
6077 (translate_rule_action): This already receives current_rule through an
6078 argument, so pass it on to translate_action instead of assigning
6079 current_rule to current_rule.
6080 (translate_symbol_action, translate_code): Pass rule = NULL to
6081 translate_action.
6082
6083 2006-06-23 Joel E. Denny <jdenny@ces.clemson.edu>
6084
6085 Rename %before-definitions to %start-header and %after-definitions to
6086 %end-header. Don't use these declarations to separate pre-prologue
6087 blocks from post-prologue blocks. Add new order-independent
6088 declarations %before-header and %after-header as alternatives to the
6089 traditional Yacc pre-prologue and post-prologue blocks. Discussed at
6090 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00110.html>.
6091 * NEWS (2.3+): Update for these changes.
6092 * data/glr.c (b4_before_definitions): Update to...
6093 (b4_start_header): ... this.
6094 (b4_after_definitions): Update to...
6095 (b4_end_header): ... this.
6096 * data/glr.cc: Likewise.
6097 * data/lalr1.cc: Likewise.
6098 * data/yacc.c: Likewise.
6099 * doc/bison.texinfo (The prologue): Update names, and replace remaining
6100 prologue blocks with %*-header declarations.
6101 (Calc++ Parser): Likewise.
6102 (Decl Summary): Update names.
6103 (Table of Symbols): Update description.
6104 * src/parse-gram.y (PERCENT_AFTER_DEFINITIONS): Update to...
6105 (PERCENT_END_HEADER): ... this.
6106 (PERCENT_BEFORE_DEFINITIONS): Update to...
6107 (PERCENT_START_HEADER): ... this.
6108 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
6109 (declaration): Update token names and m4 macro names.
6110 When parsing %end-header and %start-header, invoke translate_code
6111 before muscle_code_grow, and no longer set global booleans to remember
6112 whether these declarations have been seen.
6113 Parse new %after-header and %before-header.
6114 * src/reader.c (before_definitions, after_definitions): Remove.
6115 (prologue_augment): Accept a new bool argument to specify whether to
6116 augment the pre-prologue or post-prologue.
6117 * src/reader.h (before_definitions, after_definitions): Remove these
6118 extern's.
6119 (prologue_augment): Add new bool argument.
6120 * src/scan-gram.l (PERCENT_AFTER_DEFINITIONS): Update to...
6121 (PERCENT_END_HEADER): ... this.
6122 (PERCENT_BEFORE_DEFINITIONS): Update to...
6123 (PERCENT_START_HEADER): ... this.
6124 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
6125 * tests/actions.at (Printers and Destructors): Update names.
6126
6127 2006-06-22 Joel E. Denny <jdenny@ces.clemson.edu>
6128
6129 Add comparison operators for C++ location classes. Discussed at
6130 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00092.html>.
6131 * data/c++.m4 (b4_define_location_comparison): New boolean %define
6132 declaration indicating whether filename_type has an operator==. If
6133 filename_type is `std::string', it defaults to `1', `0' otherwise.
6134 * data/location.cc: Iff b4_define_location_comparison is `1', add
6135 operator== and operator!= for class position and for class location.
6136
6137 Some minor fixes.
6138 * src/scan-action.l: Remove unused file.
6139 * src/symtab.c (symbol_printer_set): Use printer_location not
6140 destructor_location.
6141 * src/symtab.h (struct symbol): Replace incorrect source comment for
6142 printer members.
6143 * tests/input.at (Incompatible Aliases): Update output with correct
6144 printer location.
6145
6146 2006-06-20 Joel E. Denny <jdenny@ces.clemson.edu>
6147
6148 Don't put the pre-prologue in the header file. For the yacc.c code
6149 file and the glr.c header and code files, move the pre-prologue before
6150 the token definitions. Add new %before-definitions and
6151 %after-definitions to declare code that will go in both the header file
6152 and code file. Discussed at
6153 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00000.html>,
6154 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00016.html>,
6155 and
6156 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00055.html>.
6157 * NEWS (2.3+): Describe these changes.
6158 * data/glr.c (b4_pre_prologue): Move from within to before...
6159 (b4_shared_declarations): ... this.
6160 Add new b4_before_definitions before b4_token_enums.
6161 Add new b4_after_definitions at the end.
6162 * data/glr.cc (b4_pre_prologue): Replace with...
6163 (b4_before_definitions): ... this in the header file.
6164 (b4_after_definitions): New near the end of the header file.
6165 * data/lalr1.cc (b4_pre_prologue): Move from the header file to the
6166 code file right before including the header file.
6167 (b4_before_definitions): New in the previous position of
6168 b4_pre_prologue in the header file.
6169 (b4_after_definitions): New near the end of the header file.
6170 * data/yacc.c: Clean up some m4 quoting especially in the header file.
6171 (b4_token_enums_defines): In the code file, move to right before
6172 YYSTYPE for consistency with the header file.
6173 (b4_before_definitions): New right before b4_token_enums_defines in
6174 both the header and code file.
6175 (b4_after_definitions): New right after YYLTYPE and yylloc in both the
6176 header and code file.
6177 * doc/bison.texinfo (Prologue): Show use of %before-definitions instead
6178 of prologues for %union dependencies.
6179 (Decl Summary): In %defines description, mention the effect of
6180 %before-definitions and %after-definitions on the header file.
6181 (Calc++ Parser): Forward declare driver in a %before-definitions rather
6182 than in the pre-prologue so that make check succeeds.
6183 (Table of Symbols): Add entries for %before-definitions and
6184 %after-definitions.
6185 * src/parse-gram.y (PERCENT_BEFORE_DEFINITIONS): New token for
6186 %before-definitions.
6187 (PERCENT_AFTER_DEFINITIONS): New token for %after-definitions.
6188 (declaration): Parse those declarations and append to
6189 b4_before_definitions and b4_after_definitions, respectively.
6190 * src/reader.c (before_definitions, after_definitions): New bools to
6191 track whether those declarations have been seen.
6192 (prologue_augment): Add to the post-prologue if %union,
6193 %before-definitions, or %after-definitions has been seen.
6194 * src/reader.h (before_definitions, after_definitions): New extern's.
6195 * src/scan-gram.l: Scan the new declarations.
6196 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Place the second
6197 prologue block in a %before-definitions or a %after-definitions based
6198 on whether the %union is declared.
6199 * tests/regression.at (Early token definitions with --yacc, Early token
6200 definitions without --yacc): Move tests for token definitions into the
6201 post-prologue since token names are no longer defined in the
6202 pre-prologue.
6203
6204 2006-06-20 Akim Demaille <akim@epita.fr>
6205
6206 * src/symtab.h, src/symtab.c (symbol_from_uniqstr): New.
6207 (symbol_get): Use it.
6208 * src/parse-gram.y: Use it.
6209
6210 2006-06-19 Joel E. Denny <jdenny@ces.clemson.edu>
6211
6212 * src/scan-gram.l: Remove unused declaration of last_string_1 so the
6213 build succeeds when configured with --enable-gcc-warnings.
6214
6215 2006-06-19 Paul Eggert <eggert@cs.ucla.edu>
6216
6217 * src/parse-gram.y (char_name): New function.
6218 (CHAR, STRING, string_content): For %printer, properly escape.
6219 (ID): Prefer fputs to fprintf.
6220 (id): Reindent to be consistent with other rules.
6221 Properly quote char.
6222
6223 The Translation Project changed its way of publishing translations
6224 to maintainers. I haven't received any responses to my request
6225 for supporting the old way, or for documenting the new way. I
6226 have modified 'bootstrap' to use screen scraping
6227 (in this case, HTML scraping). This is unreliable and inelegant,
6228 but I don't see any better way. Yuck.
6229 * bootstrap (TP_URL, WGET_COMMAND): New vars.
6230 (get_translations): New function, which uses HTML scraping to
6231 deduce locations of latest translations.
6232 Use this function to grab both bison and bison-runtime .po files.
6233 Don't bother priming the pump for the runtime-po domain any more,
6234 as it's now translated better than bison is.
6235
6236 2006-06-19 Akim Demaille <akim@epita.fr>
6237
6238 * src/scan-gram.l: No longer "parse" things after `%union' until
6239 `{'. Rather, return a single "%union" token.
6240 No longer make symbols: return strings, and leave the conversion
6241 to symbols to the parser.
6242 (SC_PRE_CODE, token_type): Remove.
6243 * src/parse-gram.y (%union): New field `character'.
6244 Sort tokens.
6245 (CHAR): New token.
6246 (ID, ID_COLON): Now that the scanner no longer makes them
6247 identifiers, adjust all uses to invoke symbol_get.
6248 (id_colon): New, wraps the conversion from string to symbol.
6249 (%union): Accept a possible union_name.
6250 (symbol): Now can be a char.
6251 * data/c.m4 (b4_union_name): Leave a default value.
6252 * data/glr.c, data/yacc.c: Use it.
6253
6254 2006-06-11 Joel E. Denny <jdenny@ces.clemson.edu>
6255
6256 For associating token numbers with token names for "yacc.c", don't use
6257 #define statements unless `--yacc' is specified; always use enum
6258 yytokentype. Most important discussions start at:
6259 <http://lists.gnu.org/archive/html/bison-patches/2005-09/msg00053.html>,
6260 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00052.html>,
6261 and
6262 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00043.html>.
6263 * NEWS (2.3+): Mention.
6264 * data/c.m4 (b4_yacc_if): New.
6265 (b4_token_enums_defines): Use b4_yacc_if to decide whether to add the
6266 token #define's.
6267 * doc/bison.texinfo (Bison Options): Describe the effect of `--yacc'
6268 on token name definitions.
6269 * src/getargs.c (usage): Capitalize `Yacc' in English.
6270 * src/output.c (prepare): Define b4_yacc_flag.
6271 * tests/regression.at (Early token definitions): Test that tokens names
6272 are defined before the pre-prologue not just before the post-prologue.
6273 Remove this test case and copy to...
6274 (Early token definitions with --yacc): ... this to test #define's.
6275 (Early token definitions without --yacc): ... and this to test enums.
6276
6277 2006-06-11 Paul Eggert <eggert@cs.ucla.edu>
6278
6279 * NEWS: Reword the post-2.3 change to not be so optimistic about
6280 removing the old "look-ahead" spelling.
6281 Update previous look-ahead/lookahead change reports.
6282 * REFERENCES: look-ahead -> lookahead (since that's
6283 what he actually wrote).
6284 * doc/refcard.tex: look ahead -> lookahead,
6285 look-ahead -> lookahead
6286
6287 2006-06-09 Joel E. Denny <jdenny@ces.clemson.edu>
6288
6289 For consistency, use `lookahead' instead of `look-ahead' or
6290 `look_ahead'. Discussed starting at
6291 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00049.html>
6292 and then at
6293 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00017.html>.
6294 * NEWS: For the next release, note the change to `--report'.
6295 * TODO, doc/bison.1: Update English.
6296 * doc/bison.texinfo: Update English.
6297 (Understanding Your Parser, Bison Options): Document as
6298 `--report=lookahead' rather than `--report=look-ahead'.
6299 * src/conflicts.c: Update English in comments.
6300 (lookahead_set): Rename from look_ahead_set.
6301 (flush_reduce): Rename argument look_ahead_tokens to lookahead_tokens.
6302 (resolve_sr_conflict): Rename local look_ahead_tokens to
6303 lookahead_tokens, and update other uses.
6304 (flush_shift, set_conflicts, conflicts_solve, count_sr_conflicts,
6305 count_rr_conflicts, conflicts_free): Update uses.
6306 * src/getargs.c (report_args): Move "lookahead" before alternate
6307 spellings.
6308 (report_types): Update uses.
6309 (usage): For `--report' usage description, state `lookahead' spelling
6310 rather than `look-ahead'.
6311 * src/getargs.h (report.report_lookahead_tokens): Rename from
6312 report_look_ahead_tokens.
6313 * src/lalr.c: Update English in comments.
6314 (compute_lookahead_tokens): Rename from compute_look_ahead_tokens.
6315 (state_lookahead_tokens_count): Rename from
6316 state_look_ahead_tokens_count.
6317 Rename local n_look_ahead_tokens to n_lookahead_tokens.
6318 (lookahead_tokens_print): Rename from look_ahead_tokens_print.
6319 Rename local n_look_ahead_tokens to n_lookahead_tokens.
6320 Update other uses.
6321 Update English in output.
6322 (add_lookback_edge, initialize_LA, lalr, lalr_free): Update uses.
6323 * src/print.c: Update English in comments.
6324 (lookahead_set): Rename from look_ahead_set.
6325 (print_reduction): Rename argument lookahead_token from
6326 look_ahead_token.
6327 (print_core, state_default_rule, print_reductions, print_results):
6328 Update uses.
6329 * src/print_graph.c: Update English in comments.
6330 (print_core): Update uses.
6331 * src/state.c: Update English in comments.
6332 (reductions_new): Update uses.
6333 (state_rule_lookahead_tokens_print): Rename from
6334 state_rule_look_ahead_tokens_print, and update other uses.
6335 * src/state.h: Update English in comments.
6336 (reductions.lookahead_tokens): Rename from look_ahead_tokens.
6337 (state_rule_lookahead_tokens_print): Rename from
6338 state_rule_look_ahead_tokens_print.
6339 * src/tables.c: Update English in comments.
6340 (conflict_row, action_row): Update uses.
6341 * tests/glr-regression.at
6342 (Incorrect lookahead during deterministic GLR,
6343 Incorrect lookahead during nondeterministic GLR): Rename
6344 print_look_ahead to print_lookahead.
6345 * tests/torture.at: Update English in comments.
6346 (AT_DATA_LOOKAHEAD_TOKENS_GRAMMAR): Rename from
6347 AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR.
6348 (Many lookahead tokens): Update uses.
6349 * data/glr.c: Update English in comments.
6350 * lalr1.cc: Likewise.
6351 * yacc.c: Likewise.
6352 * src/conflicts.h: Likewise.
6353 * src/lalr.h: Likewise.
6354 * src/main.c: Likewise.
6355 * src/output.c: Likewise.
6356 * src/parse-gram.c: Likewise.
6357 * src/tables.h: Likewise.
6358 * tests/calc.at: Likewise.
6359
6360 2006-06-08 Joel E. Denny <jdenny@ces.clemson.edu>
6361
6362 * src/flex-scanner.h (yytext): Remove stray `*/' in #define.
6363
6364 2006-06-07 Paul Eggert <eggert@cs.ucla.edu>
6365
6366 * TODO: Add request from Nelson H. F. Beebe to be able to install
6367 Bison without installing the yacc script.
6368
6369 2006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
6370
6371 * src/flex-scanner.h: For the sake of Flex 2.5.4, don't #define yyleng
6372 and yytext if they're already #define'd.
6373 * src/flex-scanner.h, src/location.h: Move #include "system.h" to...
6374 * src/scan-code-c.c: ... here.
6375 * src/scan-code.l, src/scan-gram.l: ... and here. Also #include
6376 <config.h>.
6377
6378 2006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
6379
6380 Get Bison to build again when configured with --enable-gcc-warnings.
6381 * src/location.c, src/location.h, src/main.c, src/scan-code.l: Add some
6382 missing #include's.
6383 * src/scan-code.l (handle_action_dollar, handle_action_at): Rename
6384 loc argument as it shadows a global.
6385 * src/scan-gram.l: Remove stray comma that prevents boundary_set
6386 invocation.
6387
6388 * src/.cvsignore: Add scan-code.c.
6389
6390 2006-06-07 Akim Demaille <akim@epita.fr>
6391
6392 * src/scan-gram.l: Move the "add a trailing ; to actions" code
6393 to...
6394 * src/scan-code.l: here.
6395 * tests/input.at (Torturing the Scanner): Fix another location
6396 error.
6397
6398 2006-06-07 Akim Demaille <akim@epita.fr>
6399
6400 * src/Makefile.am (BUILT_SOURCES): Fix the trailing backslash.
6401
6402 2006-06-06 Akim Demaille <akim@epita.fr>
6403
6404 Extract the parsing of user actions from the grammar scanner.
6405 As a consequence, the relation between the grammar scanner and
6406 parser is much simpler. We can also split "composite tokens" back
6407 into simple tokens.
6408 * src/gram.h (ITEM_NUMBER_MAX, RULE_NUMBER_MAX): New.
6409 * src/scan-gram.l (add_column_width, adjust_location): Move to and
6410 rename as...
6411 * src/location.h, src/location.c (add_column_width)
6412 (location_compute): these.
6413 Fix the column count: the initial column is 0.
6414 (location_print): Be robust to ending column being 0.
6415 * src/location.h (boundary_set): New.
6416 * src/main.c: Adjust to scanner_free being renamed as
6417 gram_scanner_free.
6418 * src/output.c: Include scan-code.h.
6419 * src/parse-gram.y: Include scan-gram.h and scan-code.h.
6420 Use boundary_set.
6421 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_INITIAL_ACTION)
6422 (PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Remove the {...} part,
6423 which is now, again, a separate token.
6424 Adjust all dependencies.
6425 Whereever actions with $ and @ are used, use translate_code.
6426 (action): Remove this nonterminal which is now useless.
6427 * src/reader.c: Include assert.h, scan-gram.h and scan-code.h.
6428 (grammar_current_rule_action_append): Use translate_code.
6429 (packgram): Bound check ruleno, itemno, and rule_length.
6430 * src/reader.h (gram_in, gram__flex_debug, scanner_cursor)
6431 (last_string, last_braced_code_loc, max_left_semantic_context)
6432 (scanner_initialize, scanner_free, scanner_last_string_free)
6433 (gram_out, gram_lineno, YY_DECL_): Move to...
6434 * src/scan-gram.h: this new file.
6435 (YY_DECL): Rename as...
6436 (GRAM_DECL): this.
6437 * src/scan-code.h, src/scan-code.l, src/scan-code-c.c: New.
6438 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
6439 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
6440 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
6441 Move these declarations, and...
6442 (obstack_for_string, STRING_GROW, STRING_FINISH, STRING_FREE):
6443 these to...
6444 * src/flex-scanner.h: this new file.
6445 * src/scan-gram.l (rule_length, rule_length_overflow)
6446 (increment_rule_length): Remove.
6447 (last_braced_code_loc): Rename as...
6448 (gram_last_braced_code_loc): this.
6449 Adjust to the changes of the parser.
6450 Move all the handling of $ and @ into...
6451 * src/scan-code.l: here.
6452 * src/scan-gram.l (handle_dollar, handle_at): Remove.
6453 (handle_action_dollar, handle_action_at): Move to...
6454 * src/scan-code.l: here.
6455 * src/Makefile.am (bison_SOURCES): Add flex-scanner.h,
6456 scan-code.h, scan-code-c.c, scan-gram.h.
6457 (EXTRA_bison_SOURCES): Add scan-code.l.
6458 (BUILT_SOURCES): Add scan-code.c.
6459 (yacc): Be robust to white spaces.
6460
6461 * tests/conflicts.at, tests/input.at, tests/reduce.at,
6462 * tests/regression.at: Adjust the column numbers.
6463 * tests/regression.at: Adjust the error message.
6464
6465 2006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
6466
6467 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
6468 Use Akim's wording from
6469 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00056.html>.
6470
6471 2006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
6472
6473 Between Bison releases, manually append `+' to the previous Bison
6474 release number, and use that as a signal to automatically print the
6475 ChangeLog's CVS Id keyword from --version. Discussed starting at
6476 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00028.html>.
6477 * ChangeLog: Add Id header.
6478 * configure.ac (AC_INIT): Append `+' to `2.3'.
6479 * src/.cvsignore: Add revision.c.
6480 * src/Makefile.am (bison_SOURCES): Add revision.c and revision.h.
6481 (BUILT_SOURCES): Add revision.c.
6482 (revision.c): New target rule. This file defines a new global variable
6483 named revision. It initializes it with either the Id from ChangeLog
6484 or, if VERSION doesn't contain `+', with the empty string.
6485 * src/getargs.c (version): Print the value of revision.
6486 * src/revision.h: Extern revision.
6487
6488 2006-06-05 Paul Eggert <eggert@cs.ucla.edu>
6489
6490 * NEWS: Version 2.3.
6491 * configure.ac (AC_INIT): Likewise.
6492
6493 2006-05-30 Paul Eggert <eggert@cs.ucla.edu>
6494
6495 * data/glr.c (YYRECOVERING): Define to be a function-like macro
6496 with no arguments, not as an object-like macro. This is for
6497 compatibility with data/yacc.c. Problem reported by John P. Hartmann in
6498 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00059.html>.
6499 * doc/bison.texinfo (Action Features, Error Recovery, Table of Symbols):
6500 Document this.
6501
6502 2006-05-30 Joel E. Denny <jdenny@ces.clemson.edu>
6503
6504 * src/getargs.c (usage): Back out yesterday's modification of the
6505 --help output so that we don't have to wait for translation before
6506 releasing 2.3.
6507
6508 2006-05-29 Paul Eggert <eggert@cs.ucla.edu>
6509
6510 * doc/bison.texinfo (Introduction): Don't say "GLR grammar".
6511 Problem reported by Akim Demaille.
6512
6513 2006-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
6514
6515 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
6516
6517 2006-05-26 Paul Eggert <eggert@cs.ucla.edu>
6518
6519 * data/yacc.c (yy_reduce_print): Omit trailing white space in
6520 generated source code. Problem reported by Frans Englich in
6521 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00049.html>.
6522
6523 2006-05-22 Paul Eggert <eggert@cs.ucla.edu>
6524
6525 * Makefile.maint (gzip_rsyncable, GZIP_ENV): Compute within the
6526 shell, not within 'make', so that 'make' by an ordinary builder
6527 (using GNU make) does not worry about configuring gzip. This also
6528 works around a bug reported independently by Keith Thompson and by
6529 Georg Schwarz, whereby gzip 1.2.4 --help would output usage on
6530 stderr rather than stdout, messing up the build logs.
6531
6532 2006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
6533
6534 * data/yacc.c (yyparse): Wrap the final return from yyparse inside YYID
6535 to make sure that YYID will never be unused. This fixes a 'make
6536 maintainer-check' failure caused by the recent changes to the 'Trivial
6537 grammars' test case, which caused g++ 4.1.0 to complain that YYID was
6538 not used.
6539 * data/glr.c (yyparse): Wrap yyparse's return inside YYID just in case.
6540
6541 2006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
6542
6543 * data/glr.c (yyresolveLocations): Remove bogus YYASSERT that the
6544 state before an empty RHS is always resolved here. Only the location
6545 of that state is guaranteed to be resolved, and that's enough. This
6546 fixes the remaining bug reported by Derek M. Jones in
6547 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
6548 * tests/glr-regression.at (Uninitialized location when reporting
6549 ambiguity): Test the above case.
6550 Also, the embedded comments in this test case claim it checks the case
6551 of an empty RHS that has inherited the initial location. However, the
6552 corresponding LHS was already resolved, so yyresolveLocations didn't
6553 actually have reason to modify it. Fix this by forcing
6554 nondeterministic operation at the beginning of the parse.
6555
6556 2006-05-20 Paul Eggert <eggert@cs.ucla.edu>
6557
6558 * data/c.m4 (b4_yy_symbol_print_generate):
6559 (b4_yy_symbol_print_generate): Use 'YYSTYPE const' rather than
6560 'const YYSTYPE', and similarly for YYLTYPE. This fixes one
6561 of the bugs reported today by Derek M Jones in
6562 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
6563 * doc/bison.texinfo (Value Type): Document that YYSTYPE must be
6564 defined to be a type name without parens or brackets.
6565 (Location Type): Similarly for YYLTYPE.
6566 * tests/regression.at (Trivial grammars): Put in a test for this
6567 bug that will be caught by 'make maintainer-check' (though not,
6568 alas, by 'make check' unless your compiler is picky).
6569
6570 2006-05-19 Paul Eggert <eggert@cs.ucla.edu>
6571
6572 * NEWS: Version 2.2.
6573 * configure.ac (AC_INIT): Likewise.
6574
6575 2006-05-17 Joel E. Denny <jdenny@ces.clemson.edu>
6576
6577 * data/glr.c (yyreportTree): Make room in yystates for the state
6578 preceding the RHS. This fixes the segmentation fault reported by Derek
6579 M. Jones in
6580 <http://lists.gnu.org/archive/html/help-bison/2006-05/msg00035.html>.
6581 (yyreportTree, yypdumpstack): Subtract 1 from yyrule before printing
6582 to the user. Reported for yyreportTree by Derek M. Jones later in the
6583 same thread.
6584 * THANKS: Add Derek M. Jones.
6585 Update my email address.
6586 Fix typo in Steve Murphy's name.
6587
6588 2006-05-14 Paul Eggert <eggert@cs.ucla.edu>
6589
6590 * data/glr.c (yyreportSyntaxError): Fix off-by-one error in
6591 checking against YYLAST that caused the parser to miss a potential
6592 alternative in its diagnostic.
6593 Problem reported by Maria Jose Moron Fernandez in
6594 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00024.html>.
6595 * data/lalr1.cc (yysyntax_error_): Likewise.
6596 * data/yacc.c (yysyntax_error): Likewise.
6597 * tests/regression.at (_AT_DATA_DANCER_Y): Use static array for
6598 tokens, in case we run into an older C compiler.
6599 (_AT_DATA_EXPECT2_Y, AT_CHECK_EXPECT2): New macros.
6600 Use them to check for the off-by-one error fixed above.
6601
6602 * data/yacc.c (yytnamerr): Fix typo: local var should be of type
6603 YYSIZE_T, not size_t.
6604 * tests/regression.at (Trivial grammars): New test, to catch
6605 the error fixed by the above patch.
6606
6607 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
6608
6609 * doc/bison.texinfo (C++ Bison Interface): Clarify the naming
6610 scheme.
6611 Reported by Steve Murphy.
6612
6613 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
6614
6615 * data/glr.cc, data/lalr1.cc: Using %defines is mandatory.
6616 * data/glr.cc: b4_location_flag is now b4_locations_flag.
6617
6618 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
6619
6620 Implement --trace=m4.
6621 * src/getargs.c (trace_types, trace_args): Accept trace_m4.
6622 * src/output.c (output_skeleton): When set, pass -dV to m4.
6623
6624 Factor the handling of flags in m4.
6625 * src/output.c (prepare): Rename the muscle names debug, defines,
6626 error_verbose to debug_flag, defines_flag, error_verbose_flag.
6627 * data/c.m4: Adjust.
6628 (_b4_define_flag_if, b4_define_flag_if, b4_defines_if): New.
6629 Use b4_define_flag_if to define other b4_FLAG_if macros.
6630 (b4_location_if): As a consequence, rename as...
6631 (b4_locations_if): this, for consistency.
6632 Adjust all the skeletons.
6633
6634 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
6635
6636 * etc/bench.pm: Shorten bench names.
6637
6638 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
6639
6640 * src/output.h, src/output.c (error_verbose): Move to...
6641 * src/getargs.h, src/getargs.c: here.
6642 Sort the flags.
6643 Adjust dependencies.
6644
6645 2006-05-13 Paul Eggert <eggert@cs.ucla.edu>
6646
6647 * data/c.m4 (b4_copyright): Put the special exception for Bison
6648 skeletons here, so we don't have to put it in each skeleton. All
6649 uses changed. Suggested by Akim Demaille. Also, wrap the
6650 copyright notice, in case it is longer than 80 columns. Replace
6651 comma by newline after title.
6652
6653 2006-05-11 Paul Eggert <eggert@cs.ucla.edu>
6654
6655 * doc/bison.texinfo (Calc++ Scanner): The flex behavior is an
6656 incompatibility, not a bug. Mention that it wasn't fixed as of
6657 flex 2.5.33.
6658
6659 2006-05-11 Akim Demaille <akim@lrde.epita.fr>
6660
6661 * examples/extexi: Enforce the precedence of concatenation over
6662 >>.
6663 Reported by Tommy Nordgren.
6664
6665 2006-05-11 Akim Demaille <akim@lrde.epita.fr>
6666
6667 * data/lalr1.cc (yytranslate_): Rename token as t to avoid clashes
6668 with the member "token".
6669 Reported by Martin Nylin.
6670
6671 2006-05-08 Paul Eggert <eggert@cs.ucla.edu>
6672
6673 * data/glr.c: Switch to Bison 2.2 special-exception language in
6674 the copyright notice. Use more-regular format for titles and
6675 copyright notices.
6676 * data/glr.cc: Likewise.
6677 * data/location.cc: Likewise.
6678 * data/yacc.cc: Likewise.
6679 * doc/bison.texinfo (Conditions): Document this.
6680 * NEWS: likewise. Upgrade version to 2.2.
6681
6682 2006-04-27 Akim Demaille <akim@lrde.epita.fr>
6683
6684 * data/glr.cc: Remove dead code.
6685
6686 2006-04-25 Paul Eggert <eggert@cs.ucla.edu>
6687
6688 * bootstrap: Comment out the AM_CPPFLAGS line, since we don't use
6689 that variable and the line breaks the bootstrap. Problem reported
6690 by Juan M. Guerrero.
6691
6692 2006-04-24 Akim Demaille <akim@lrde.epita.fr>
6693
6694 * doc/bison.texinfo (Multiple start-symbols): New.
6695
6696 2006-04-24 Akim Demaille <akim@lrde.epita.fr>
6697
6698 * etc/README, etc/bench.pl: New.
6699
6700 2006-04-03 Akim Demaille <akim@lrde.epita.fr>
6701
6702 * src/scan-gram.l: Be robust to BRACED_CODE appearing before any
6703 rule.
6704 Reported by Mickael Labau.
6705 * tests/input.at (Torturing the Scanner): Test it.
6706
6707 2006-03-16 Paul Eggert <eggert@cs.ucla.edu>
6708
6709 * doc/bison.texinfo (Decl Summary): Don't mention yylloc twice.
6710 Problem reported by Bob Rossi.
6711
6712 2006-03-13 Paul Eggert <eggert@cs.ucla.edu>
6713
6714 * doc/bison.texinfo: Remove @shorttitlepage stuff; it wasn't used
6715 and didn't really work.
6716 For the index, use @ifnotinfo, not @iftex.
6717 Minor cleanups of spacing and terminology.
6718
6719 2006-03-12 Akim Demaille <akim@lrde.epita.fr>
6720
6721 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Fix the definition
6722 of AT_NAME_PREFIX when %name-prefix is not used.
6723
6724 2006-03-12 Akim Demaille <akim@lrde.epita.fr>
6725
6726 Apply --prefix to C++ skeletons too: they change the namespace.
6727 The test suite already exercize these cases.
6728 * data/c++.m4 (b4_namespace): New.
6729 * data/lalr1.cc, data/glr.cc, data/location.cc: Use it instead of `yy'.
6730 * data/lalr1.cc (yytnameerr_): Move its definition into the namespace.
6731 * data/yacc.c, data/glr.c: Remove a useless `[]'.
6732 * doc/bison.texinfo: Document it.
6733 (Option Cross Key): Use @multitable in all formats. It looks
6734 nicer, even in TeX outputs.
6735 (Rules): Use the same code whatever the output type is.
6736 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS)
6737 (_AT_BISON_OPTION_POPDEFS): Support AT_NAME_PREFIX.
6738 * tests/calc.at: Use it, instead of hard coding `yy'.
6739
6740 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
6741
6742 * TODO: Remove dead items.
6743
6744 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
6745
6746 * doc/FAQ: Remove, merged into...
6747 * doc/bison.texinfo (FAQ): this.
6748 * doc/Makefile.am (EXTRA_DIST): Adjust.
6749
6750 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
6751
6752 * data/c.m4 (b4_token_enum): Always define the enum of tokens,
6753 even if empty.
6754 * data/lalrl1.cc, data/glr.cc (parser::token_type): New.
6755 * doc/bison.texinfo (Calc++ Scanner): Use it.
6756
6757 2006-03-09 Paul Eggert <eggert@cs.ucla.edu>
6758
6759 Fix two nits reported by twlevo, plus one more that I discovered.
6760
6761 * src/assoc.h (assoc_to_string): Give a name to the arg, as
6762 this is the usual Bison style.
6763 * src/location.h (location_print): Likewise.
6764
6765 * src/reader.h (token_name): Likewise.
6766
6767 2006-03-08 Paul Eggert <eggert@cs.ucla.edu>
6768
6769 Fix some nits reported by twlevo.
6770 * doc/FAQ: Remove ancient Y2K FAQ, replacing it with "secure"
6771 and "POSIX". Use more-modern syntax for URLs. Mention C++
6772 and ask for Java. Don't hardwire OS version numbers. Add
6773 copyright notice.
6774 * m4/.cvsignore: Add unistd_h.m4, for latest gnulib.
6775 * src/conflicts.c (solved_conflicts_obstack): Now static.
6776
6777 2006-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
6778
6779 * doc/bison.texinfo (Introduction): Mention GLR and C++ as on the web
6780 page. Say "you can use it" not "you may use it" as on the web page;
6781 we're describing capabilities not granting permission.
6782
6783 2006-03-06 Paul Eggert <eggert@cs.ucla.edu>
6784
6785 * data/glr.c (yyresolveLocations): Rename local variables to avoid
6786 shadowing warnings. Use usual patter for iterating through RHS.
6787 * tests/glr-regression.at
6788 (Uninitialized location when reporting ambiguity):
6789 Modify yylex so that it uses its argument, rather than trying
6790 to rely on ARGSUSED (which doesn't work for gcc with warnings).
6791 const char -> char const.
6792
6793 * tests/Makefile.am ($(srcdir)/package.m4, maintainer-check-valgrind):
6794 Don't use tabs inside commands; it messes up 'ps'.
6795 Problem reported by twlevo.
6796
6797 2006-03-06 Joel E. Denny <jdenny@ces.clemson.edu>
6798
6799 * tests/glr-regression.at (Uninitialized location when reporting
6800 ambiguity): New test case.
6801 * data/glr.c (yyresolveLocations): New function, which uses
6802 YYLLOC_DEFAULT.
6803 (yyresolveValue): Invoke yyresolveLocations before reporting an
6804 ambiguity.
6805 * doc/bison.texinfo (Default Action for Locations): Note
6806 YYLLOC_DEFAULT's usage for ambiguity locations.
6807 (GLR Semantic Actions): Cross-reference those notes.
6808
6809 2006-03-04 Joel E. Denny <jdenny@ces.clemson.edu>
6810
6811 * tests/glr-regression.at (Leaked semantic values when reporting
6812 ambiguity): Remove unnecessary union and type declarations.
6813 (Leaked lookahead after nondeterministic parse syntax error): New test
6814 case.
6815 * data/glr.c (yyparse): Check for zero stacks remaining before
6816 attempting to shift the lookahead so that you don't lose it.
6817
6818 2006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
6819
6820 Avoid memory leaks by not invoking longjmp in yyreportAmbiguity.
6821 * tests/glr-regression.at (Leaked semantic values when reporting
6822 ambiguity): New test case.
6823 * data/glr.c (yyreportAmbiguity): Invoke yyyerror directly and return
6824 yyabort rather than invoking yyFail, which invokes longjmp. Remove the
6825 now unnecessary yystackp parameter.
6826 (yyresolveValue): Return yyreportAmbiguity's result. Now the necessary
6827 destructors can be called.
6828
6829 * tests/glr-regression.at: Don't invoke bison with `-t' unnecessarily
6830 in existing testcases.
6831
6832 2006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
6833
6834 Don't leak semantic values for parent RHS when a user action cuts the
6835 parser, and clean up related code a bit.
6836 * tests/glr-regression.at (Leaked merged semantic value if user action
6837 cuts parse): Rename to...
6838 (Leaked semantic values if user action cuts parse): ... this. Add check
6839 for leaked parent RHS values.
6840 * data/glr.c (yydestroyGLRState): In debugging output, distinguish
6841 between an unresolved state (non-empty chain of semantic options) and
6842 an incomplete one (signaled by an empty chain).
6843 (yyresolveStates): Document the interface. Move all manipulation of a
6844 successfully or unsuccessfully resolved yyGLRState to...
6845 (yyresolveValue): ... here so that yyresolveValue always leaves a
6846 yyGLRState with consistent data and thus is easier to understand.
6847 Remove the yyvalp and yylocp parameters since they are always just
6848 taken from the yys parameter. When reporting a discarded merged value
6849 in debugging output, note that it is incompletely merged. Document the
6850 interface.
6851 (yyresolveAction): If resolving any of the RHS states fails, destroy
6852 them all rather than leaking them. Thus, as long as user actions are
6853 written to clean up the RHS correctly, yyresolveAction always cleans up
6854 the RHS of a semantic option. Document the interface.
6855
6856 2006-02-27 Paul Eggert <eggert@cs.ucla.edu>
6857
6858 * data/glr.c (yyexpandGLRStack): Catch an off-by-one error that
6859 led to a segmentation fault in GNU Pascal. Problem reported
6860 by Waldek Hebisch.
6861
6862 2006-02-21 Joel E. Denny <jdenny@ces.clemson.edu>
6863
6864 * doc/bison.texinfo (Mid-Rule Actions): Explain how to bury a
6865 mid-rule action inside a nonterminal symbol in order to declare a
6866 destructor for its semantic value.
6867
6868 2006-02-16 Paul Eggert <eggert@cs.ucla.edu>
6869
6870 * data/yacc.c [(! defined yyoverflow || YYERROR_VERBOSE) && !
6871 YYSTACK_USE_ALLOCA && ! defined YYSTACK_ALLOC && defined
6872 __cplusplus && ! defined _STDLIB_H && !
6873 ((defined YYMALLOC || defined malloc) && (defined YYFREE ||
6874 defined free))]: Include <stdlib.h> rather than rolling our own
6875 declarations of malloc and free, to avoid problems with
6876 incompatible declarations (using 'throw') C++'s stdlib.h. This
6877 should fix Debian bug 340012
6878 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=340012>,
6879 reported by Guillaume Melquiond.
6880
6881 2006-02-13 Paul Eggert <eggert@cs.ucla.edu>
6882
6883 * NEWS: Clarify symbols versus types in unused-value warnings.
6884
6885 * configure.ac (AC_INIT): Bump version number.
6886
6887 2006-02-13 Paul Eggert <eggert@cs.ucla.edu>
6888
6889 * NEWS: Version 2.1a.
6890 * tests/headers.at (AT_TEST_CPP_GUARD_H): Declare yyerror and yylex,
6891 since C99 requires this.
6892
6893 2006-02-11 Paul Eggert <eggert@cs.ucla.edu>
6894
6895 * m4/c-working.m4: New file.
6896 * configure.ac (BISON_TEST_FOR_WORKING_C_COMPILER): Use it.
6897
6898 2006-02-10 Paul Eggert <eggert@cs.ucla.edu>
6899
6900 * Makefile.maint: Merge from coreutils.
6901
6902 2006-02-09 Paul Eggert <eggert@cs.ucla.edu>
6903
6904 More portability fixes for problems summarized by Nelson H. F. Beebe.
6905
6906 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Catch a
6907 configuration screwup "./configure CC=/opt/SUNWspro/bin/c89
6908 CFLAGS="-xarch=generic64" CXX=/opt/SUNWspro/bin/CC
6909 LDFLAGS="-xarch=generic64" with Sun C 5.7 on Solaris 10; this
6910 messes up because C++ code is compiled in 32-bit mode but linked
6911 in 64-bit mode.
6912
6913 2006-02-08 Paul Eggert <eggert@cs.ucla.edu>
6914
6915 More portability fixes for problems summarized by Nelson H. F. Beebe.
6916
6917 * doc/bison.texinfo (Calc++ Scanner): Work around a bug in flex
6918 2.5.31. This resembles the 2005-10-10 patch to src/scan-skel.l.
6919
6920 * examples/calc++/Makefile.am (check_PROGRAMS): Renamed from
6921 nodist_PROGRAMS, since we don't need to actually compile the
6922 example if we're just doing a plain 'make'. This avoids bothering
6923 the installer unnecessarily about problems due to weird C++
6924 compilers.
6925
6926 2006-02-06 Paul Eggert <eggert@cs.ucla.edu>
6927
6928 More portability fixes for problems summarized by Nelson H. F. Beebe.
6929
6930 * tests/headers.at (AT_TEST_CPP_GUARD_H): Use #include <...> rather
6931 than #include "...", and compile with -I'.'. The old method was
6932 not portable, according to Posix and the C standard, and it does
6933 not work with Sun C 5.7, where previous #line directives affect
6934 the working directory used in later #include "..." directives.
6935
6936 2006-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
6937
6938 Various DJGGP specific issues in /djgpp
6939
6940 2006-02-02 Paul Eggert <eggert@cs.ucla.edu>
6941
6942 More portability fixes for problems summarized by Nelson H. F. Beebe.
6943
6944 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check that
6945 '#include <map>' works and that you can apply ++ to iterators.
6946
6947 2006-02-01 Paul Eggert <eggert@cs.ucla.edu>
6948
6949 Work around portability problems summarized by Nelson H. F. Beebe in
6950 <http://lists.gnu.org/archive/html/bug-bison/2005-09/msg00021.html>.
6951
6952 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
6953 that '#include <string>' works.
6954
6955 * data/lalr1.cc (yytranslate_): No longer inline, to work around a
6956 porting problem to g++ 3.4.3 on Darwin 7.9.0, where g++ complained
6957 "warning: sorry: semantics of inline function static data `const
6958 unsigned char translate_table[262]' are wrong (you'll wind up with
6959 multiple copies)".
6960
6961 * lib/bbitset.h (struct bitset_vtable): Rename members not, and,
6962 or, xor to not_, and_, or_, and xor_, respectively. This works
6963 around a bug in GCC 3.4.3 on Irix 6.5, which apparently has a
6964 random system header somewhere that includes the equivalent of
6965 <iso646.h>.
6966
6967 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that "$CC
6968 -E" works; it apparently doesn't work with PathScale EKO Compiler
6969 Suite Version 2.0.
6970
6971 2006-01-30 Joel E. Denny <jdenny@ces.clemson.edu>
6972
6973 During deterministic GLR operation, user actions should be able to
6974 influence the parse by changing yychar. To make this easier to fix and
6975 to make glr.c easier to evolve in general, don't maintain yytoken in
6976 parallel with yychar; just compute yytoken when needed.
6977 * tests/glr-regression.at (Incorrect lookahead during deterministic
6978 GLR): Check that setting yychar in a user action has the intended
6979 effect.
6980 * data/glr.c (yyGLRStack): Remove yytokenp member.
6981 (yyclearin): Don't set *yytokenp.
6982 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Examine
6983 yychar rather than *yytokenp to determine the current lookahead.
6984 Compute yytoken locally when needed.
6985 (yyparse): Likewise. Remove the local yytoken that yytokenp used to
6986 point to.
6987
6988 * doc/bison.texinfo (Bison Options): Remove stray sentence fragment
6989 after `--report' documentation.
6990
6991 2006-01-30 Paul Eggert <eggert@cs.ucla.edu>
6992
6993 * src/parse-gram.y (grammar_declaration): Location of printer
6994 symbol is @1, not list->location. Bug reported by twlevo.
6995 * tests/input.at (Incompatible Aliases): Adjust to above change.
6996
6997 2006-01-29 Paul Eggert <eggert@cs.ucla.edu>
6998
6999 * tests/input.at (AT_CHECK_UNUSED_VALUES): Remove. Instead, do
7000 all the test at once. This makes the output easier to read in the
7001 normal case.
7002
7003 Fix a longstanding bug uncovered by bro-0.9a9/src/parse.y, which I
7004 got from <http://bro-ids.org/download.html>. The bug is that
7005 when two actions appeared in succession, the second one was
7006 scanned before the first one was added to the grammar rule
7007 as a midrule action. Bison then output the incorrect warning
7008 "parse.y:905.17-906.36: warning: unused value: $3".
7009 * src/parse-gram.y (BRACED_CODE, action): These are no longer
7010 associated with a value.
7011 (rhs): Don't invoke grammar_current_rule_action_append.
7012 (action): Invoke it here instead.
7013 * src/reader.c (grammar_midrule_action): Now extern.
7014 (grammar_current_rule_action_append): Don't invoke
7015 grammar_midrule_action; that is now the scanner's job.
7016 * src/reader.h (last_string, last_braced_code_loc):
7017 (grammar_midrule_action): New decls.
7018 * src/scan-gram.l (last_string): Now extern, sigh.
7019 (last_braced_code_loc): New extern variable.
7020 (<INITIAL>"{"): Invoke grammar_midrule_action if the current
7021 rule already has an action.
7022 (<SC_BRACED_CODE>"}"): Set last_braced_code_loc before returning.
7023 * tests/input.at (AT_CHECK_UNUSED_VALUES):
7024 Add some tests to check that the above changes fixed the bug.
7025
7026 2006-01-27 Paul Eggert <eggert@cs.ucla.edu>
7027
7028 * src/reader.c (symbol_should_be_used): Renamed from symbol_typed_p.
7029 All used changed. Check whether the symbol has a destructor,
7030 not whether it is typed.
7031 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add a destructor, so
7032 that the values are still reported as unused. All line numbers
7033 adjusted.
7034
7035 2006-01-23 Paul Eggert <eggert@cs.ucla.edu>
7036
7037 Work around a bug in bro 0.8, which underparenthesizes its
7038 definition of YYLLOC_DEFAULT.
7039 * data/glr.c: Change all uses of YYLLOC_DEFAULT to parenthesize
7040 their arguments.
7041 * data/lalr1.cc: Likewise.
7042 * data/yacc.cc: Likewise.
7043
7044 2006-01-22 Paul Eggert <eggert@cs.ucla.edu>
7045
7046 Work around a bug in Pike 7.0, and give the Pike folks a
7047 better way to override the usual int widths.
7048 * data/yacc.c (b4_int_type): Use yytype_uint8, etc., so that the
7049 user can override the types.
7050 (short): #undef, to work around a bug in Pike 7.0.
7051 (yytype_uint8, yytype_int8, yytype_uint16, yytype_int16): New types.
7052 (union yyalloc.yyss): Use yytype_int16 rather than short.
7053 All uses changed.
7054 (yysigned_char): Remove.
7055 * src/parse-gram.y (YYTYPE_UINT8, YYTYPE_INT8, YYTYPE_UINT16):
7056 (YYTYPE_INT16): New macros, to test the new facility in yacc.c.
7057 * tests/regression.at (Web2c Actions): Adjust to above changes.
7058
7059 * src/reader.c (check_and_convert_grammar): New function.
7060 (reader): Close the input file even if something went wrong during
7061 parsing. Minor file descriptor leak reported by twlevo.
7062
7063 * src/assoc.c (assoc_to_string): Use a default: abort (); case
7064 to pacify gcc -Wswitch-default.
7065 * src/scan-gram.l (adjust_location): Use a default: break; case
7066 to pacify gcc -Wswitch-default.
7067 * src/scan-skel.h (skel_get_lineno, skel_get_in, skel_get_out):
7068 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
7069 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
7070 Move these decls to scan-skel.l, since they don't need to be
7071 visible elsewhere.
7072 * src/scan-skel.l: Accept the above decls.
7073 (skel_lex): New decl, to pacify GCC when unpatched flex 2.5.31
7074 is used.
7075
7076 2006-01-21 Paul Eggert <eggert@cs.ucla.edu>
7077
7078 * Makefile.cfg (local-checks-to-skip): Add changelog-check,
7079 since we don't want to insist on a version number at the start
7080 of the changelog every time.
7081 * Makefile.maint: Sync from coreutils a bit better.
7082 (sc_trailing_blank): Renamed from sc_trailing_space.
7083 All uses changed.
7084 (sc_no_if_have_config_h, sc_require_config_h):
7085 (sc_prohibit_assert_without_use): New rules.
7086 (sc_obsolete_symbols): Don't catch Makefile.maint itself.
7087 (sc_dd_max_sym_length): Fix leading spaces in rule.
7088 (sc_system_h_headers): Prefix with @.
7089 (sc_useless_cpp_parens, m4-check): Output line numbers.
7090 (changelog-check): Allow version only in head.
7091 * data/c.m4: Use "defined FOO" instead of "defined (FOO)", to
7092 satisfy new Makefile.maint rule.
7093 * data/glr.c: Likewise.
7094 * data/glr.cc: Likewise.
7095 * data/lalr1.cc: Likewise.
7096 * data/yacc.c: Likewise.
7097 * lib/ebitsetv.c: Likewise.
7098 * lib/lbitset.c: Likewise.
7099 * lib/subpipe.c: Likewise.
7100 * lib/timevar.c: Likewise.
7101 * src/system.h: Likewise.
7102 * data/yacc.c (YYSTYPE): Don't generate trailing spaces in output.
7103 * djgpp/Makefile.maint: Add copyright notice.
7104 * djgpp/README.in: Likewise.
7105 * djgpp/config.bat: Likewise.
7106 * djgpp/config.site: Likewise.
7107 * djgpp/config_h.sed: Likewise.
7108 * djgpp/djunpack.bat: Likewise.
7109 * djgpp/config.sed: Fix copyright notice to match standard format.
7110 * djgpp/subpipe.h: Likewise.
7111 * lib/bitsetv-print.c: Likewise.
7112 * lib/bitsetv.c: Likewise.
7113 * lib/subpipe.h: Likewise.
7114 * lib/timevar.c: Likewise.
7115 * lib/timevar.h: Likewise.
7116 * djgpp/subpipe.c: Use standard recipe for config.h.
7117 * lib/abitset.c: Likewise.
7118 * lib/bitset.c: Likewise.
7119 * lib/bitset_stats.c: Likewise.
7120 * lib/bitsetv-print.c: Likewise.
7121 * lib/bitsetv.c: Likewise.
7122 * lib/ebitsetv.c: Likewise.
7123 * lib/get-errno.c: Likewise.
7124 * lib/lbitset.c: Likewise.
7125 * lib/subpipe.c: Likewise.
7126 * lib/timevar.c: Likewise.
7127 * lib/vbitset.c: Likewise.
7128 * tests/local.at: Likewise.
7129 * src/scan-gram.l: Don't include verify.h, since system.h does
7130 that for us.
7131 * .x-sc_require_config_h: New file.
7132 * .x-sc_unmarked_diagnostics: New file.
7133
7134 2006-01-20 Paul Eggert <eggert@cs.ucla.edu>
7135
7136 Be a bit more systematic about using 'abort'.
7137 * lib/abitset.c (abitset_test): Remove ATTRIBUTE_UNUSED; not needed.
7138 * lib/bitset.c (bitset_bytes, bitset_init, bitset_op4_cmp):
7139 Put 'default: abort ();' before some other case, to satisfy older
7140 pedantic compilers.
7141 * lib/bitset_stats.c (bitset_stats_init): Likewise.
7142 * lib/ebitset.c (ebitset_elt_find, ebitset_op3_cmp): Likewise.
7143 * lib/lbitset.c (lbitset_elt_find, lbitset_op3_cmp): Likewise.
7144 * src/conflicts.c (resolve_sr_conflict): Likewise.
7145 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str):
7146 (get_decision_str, get_orientation_str, get_node_alignment_str):
7147 (get_arrow_mode_str, get_crossing_type_str, get_view_str):
7148 (get_linestyle_str, get_arrowstyle_str): Likewise.
7149 * src/conflicts.c (resolve_sr_conflict):
7150 Use a default case rather than one for the one remaining enum
7151 value, to catch invalid enum values as well.
7152 * src/lalr.c (set_goto_map, map_goto):
7153 Prefer "assert (FOO);" to "if (!FOO) abort ();".
7154 * src/nullable.c (nullable_compute, token_definitions_output):
7155 Likewise.
7156 * src/reader.c (packgram, reader): Likewise.
7157 * src/state.c (transitions_to, state_new, state_reduction_find):
7158 Likewise.
7159 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias):
7160 (symbol_pack): Likewise.
7161 * src/tables.c (conflict_row, pack_vector): Likewise.
7162 * src/scan-skel.l (QPUTS): Remove unnecessary parens.
7163 (BASE_QPUTS, "@output ".*\n): Remove unnecessary asserts.
7164 * src/system.h: Don't include <assert.h>.
7165 (assert): New macro.
7166
7167 * doc/bison.texinfo (Prologue, Rules, Actions, Union Decl, Action Decl):
7168 (Destructor Decl, Parser Function, Pure Calling):
7169 Describe rules for braces inside C code more carefully.
7170
7171 2006-01-19 Paul Eggert <eggert@cs.ucla.edu>
7172
7173 Fix some porting glitches found by Nelson H. F. Beebe.
7174 * lib/abitset.c (abitset_resize): Rewrite to avoid warnings from
7175 compilers that don't understand that abort () does not return.
7176 * src/state.c (transitions_to): Likewise.
7177 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
7178 that '#include <cstdlib>' works.
7179 * src/system.h (INT8_MIN, INT16_MIN, INT32_MIN, INT8_MAX):
7180 (INT16_MAX, UINT8_MAX, INT32_MAX, UINT16_MAX, UINT32_MAX):
7181 #undef if ! defined __STDC_VERSION__ || __STDC_VERSION__ < 199901,
7182 for the benefit of some pre-C99 compilers.
7183
7184 * bootstrap: Undo changes to gnulib files that autoreconf made.
7185
7186 Minor fixups to get 'make maintainer-check' to work.
7187 * configure.ac: Don't use -Wnested-externs, as it's incompatible
7188 with the new verify.h implementation.
7189 * data/c.m4 (b4_yy_symbol_print_generate): YYUSE (yyoutput).
7190 * data/glr.c (YYUSE): Depend on __GNUC__ as well.
7191 * data/yacc.c (YYUSE): Likewise.
7192 * data/lalr1.cc (yysyntax_error_): YYUSE (yystate).
7193 * lib/subpipe.c (end_of_output_subpipe): The args are unused.
7194 * src/parse-gram.y (declaration): Don't pass a string constant
7195 to a function that expects char *, since GCC might complain
7196 about the constant value.
7197 * src/reader.c (symbol_typed_p): Add parens to pacify GCC.
7198 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): #undef yylloc and yylval
7199 before #defining them.
7200 * tests/glr-regression.at
7201 (Incorrectly initialized location for empty right-hand side in GLR):
7202 In yyerror, use the msg arg.
7203 (Corrupted semantic options if user action cuts parse):
7204 (Incorrect lookahead during deterministic GLR):
7205 (Incorrect lookahead during nondeterministic GLR):
7206 Don't name a local var 'index'; it shadows string.h's 'index'.
7207
7208 2006-01-19 Akim Demaille <akim@epita.fr>
7209
7210 * tests/calc.at (_AT_DATA_CALC_Y): Initialize the whole initial
7211 location, not just parts of it.
7212
7213 2006-01-18 Paul Eggert <eggert@cs.ucla.edu>
7214
7215 * NEWS: Document the fact that multiple %unions are now allowed.
7216 * doc/bison.texinfo (Union Decl): Likewise.
7217 * TODO: This feature is now implemented, so remove it from
7218 the wishlist.
7219
7220 * Makefile.maint: Merge with coreutils Makefile.maint.
7221 (CVS_LIST): Use build-aux version if available.
7222 (VERSION_REGEXP): New macro.
7223 (syntax-check-rules): Add sc_no_if_have_config_h,
7224 sc_prohibit_assert_without_use, sc_require_config_h,
7225 sc_useless_cpp_parens.
7226 (sc_obsolete_symbols): Check for O_NDELAY.
7227 (sc_dd_max_sym_length): Track coreutils.
7228 (sc_unmarked_diagnostics): Look in all files, not just *.c.
7229 (sc_useless_cpp_parens): New rule.
7230 (news-date-check): Look for version or today's date.
7231 (changelog-check): Don't require version number near head.
7232 (copyright-check): Use current year instead of hardwiring 2005.
7233 (my-distcheck): Depend on $(release_archive_dir)/$(prev-tgz).
7234 (announcement): Add --gpg-key-ID.
7235
7236 * djgpp/config.sed: Add copyright notice, and replace "filesystem"
7237 with "file system".
7238
7239 Avoid undefined behavior that addressed just before the start of an
7240 array. Problem reported by twlevo.
7241 * src/reader.c (packgram): Prepend a new sentinel before ritem.
7242 * src/lalr.c (build_relations): Rely on new sentinel.
7243 * src/gram.c (gram_free): Adjust to new sentinel.
7244
7245 2006-01-12 Joel E. Denny <jdenny@ces.clemson.edu>
7246
7247 * data/glr.c (yyGLRStateSet): Rename yylookaheadStatuses to
7248 yylookaheadNeeds. All uses updated.
7249 (yysplitStack): Rename local yynewLookaheadStatuses to
7250 yynewLookaheadNeeds.
7251 * data/glr-regression.at (Incorrect lookahead during nondeterministic
7252 GLR): In comments, change `lookahead status' to `lookahead need'.
7253
7254 2006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
7255
7256 * data/glr.c (yysplitStack): A little stylistic rewrite.
7257
7258 2006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
7259
7260 * data/glr.c (yyaddDeferredAction): Flesh out the comment.
7261
7262 2006-01-11 Joel E. Denny <jdenny@ces.clemson.edu>
7263
7264 * doc/bison.texinfo: Fix some typos.
7265 (GLR Semantic Actions): New subsection discussing special
7266 considerations because GLR semantic actions might be deferred.
7267 (Actions): Mention look-ahead usage of yylval.
7268 (Actions and Locations): Mention look-ahead usage of yylloc.
7269 (Special Features for Use in Actions): Add YYEOF entry and mention it
7270 in the yychar entry.
7271 In the yychar entry, remove mention of the local yychar case (pure
7272 parser) since this is irrelevant information when writing semantic
7273 actions and since it's already discussed in `Table of Symbols' where
7274 yychar is otherwise described as an external variable.
7275 In the yychar entry, don't call it the `current' look-ahead since it
7276 isn't when semantic actions are deferred.
7277 In the yychar and yyclearin entries, add note about deferred semantic
7278 actions.
7279 Add yylloc and yylval entries discussing look-ahead usage.
7280 (Look-Ahead Tokens): When discussing yychar, don't call it the
7281 `current' look-ahead, and do mention yylval and yylloc.
7282 (Error Recovery): Cross-reference `Action Features' when mentioning
7283 yyclearin.
7284 (Table of Symbols): In the yychar entry, don't call it the `current'
7285 look-ahead.
7286 In the yylloc and yylval entries, mention look-ahead usage.
7287
7288 2006-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
7289
7290 * tests/glr-regression.at: Update copyright year to 2006.
7291
7292 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
7293
7294 * data/glr.c (yyGLRStateSet): Add yybool* yylookaheadStatuses member to
7295 use during nondeterministic operation to track which stacks have
7296 actually needed the current lookahead.
7297 (yyinitStateSet, yyfreeStateSet, yyremoveDeletes, yysplitStack):
7298 Allocate, deallocate, resize, and otherwise shuffle space for
7299 yylookaheadStatuses in parallel with yystates member of yyGLRStateSet.
7300 (yysplitStack, yyprocessOneStack, yyparse): Set lookahead status
7301 appropriately during nondeterministic operation.
7302 (yySemanticOption): Add int yyrawchar, YYSTYPE yyval, and YYLTYPE yyloc
7303 members to store the current lookahead to be used by the deferred
7304 user action.
7305 (yyaddDeferredAction): Add size_t yyk parameter specifying the stack
7306 from which the RHS is taken. Set the lookahead members of the new
7307 yySemanticOption according to the lookahead status for stack yyk.
7308 (yyglrShiftDefer, yyglrReduce): Pass yyk parameter on to
7309 yyaddDeferredAction.
7310 (yyresolveAction): Set yychar, yylval, and yylloc to the lookahead
7311 members of yySemanticOption before invoking yyuserAction, and then set
7312 them back to their current values afterward.
7313 (yyparse): Set yychar = YYEMPTY where yytoken = YYEMPTY.
7314 (yyreportAmbiguity): Add /*ARGSUSED*/ to pacify lint.
7315 * tests/glr-regression.at: Remove `.' from the ends of recent test case
7316 titles for consistency.
7317 (Leaked merged semantic value if user action cuts parse): In order to
7318 suppress lint warnings, use arguments in merge function, and assign
7319 char value < 128 in main.
7320 (Incorrect lookahead during deterministic GLR): New test case.
7321 (Incorrect lookahead during nondeterministic GLR): New test case.
7322
7323 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
7324
7325 * data/c.m4 (b4_yy_symbol_print_generate): In yy_symbol_print, accept
7326 !yyvaluep as signal that no semantic value is available to print.
7327 * data/glr.c (yydestroyGLRState): If state is not resolved, don't try
7328 to print a semantic value.
7329
7330 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
7331
7332 * tests/glr-regression.at: For consistency with my newer test cases,
7333 don't thank myself.
7334
7335 2006-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
7336
7337 * data/glr.c (yyresolveValue): When merging semantic options, if at
7338 least one user action succeeds but a later one cuts the parse, then
7339 destroy the semantic value before returning rather than leaking it.
7340 (yyresolveStates): If a user action cuts the parse and thus
7341 yyresolveValue fails, ignore the (unset) semantic value rather than
7342 corrupting the yyGLRState, and empty the semantic options list since
7343 the user actions should have called all necessary destructors.
7344 Simplify code with YYCHK.
7345 * tests/glr-regression.at (Corrupted semantic options if user action
7346 cuts parse): New test case.
7347 (Undesirable destructors if user action cuts parse): New test case.
7348 Before applying any of this patch, this test case never actually failed
7349 for me... but only because the corrupted semantic options usually
7350 masked this bug.
7351 (Leaked merged semantic value if user action cuts parse): New test
7352 case.
7353
7354 2006-01-05 Akim Demaille <akim@epita.fr>
7355
7356 * src/reader.c, src/symlist.h, src/symlist.c: s/mid_rule/midrule/.
7357
7358 2006-01-04 Paul Eggert <eggert@cs.ucla.edu>
7359
7360 * data/c.m4 (b4_c_modern): New macro, with a new provision for
7361 _MSC_VER. Problem reported by Cenzato Marco.
7362 (b4_c_function_def): Use it.
7363 * data/yacc.c (YYMODERN_C): Remove. All uses replaced by
7364 b4_c_modern.
7365 (yystrlen, yystpcpy, yyparse): Use b4_c_function... macros rather
7366 than rolling our own.
7367
7368 2006-01-04 Akim Demaille <akim@epita.fr>
7369
7370 Also warn about non-used mid-rule values.
7371 * src/symlist.h, src/symlist.c (symbol_list): Add a mid_rule
7372 member.
7373 (symbol_list_new): Adjust.
7374 * src/reader.c (symbol_typed_p): New.
7375 (grammar_rule_check): Use it.
7376 (grammar_midrule_action): Bind a mid-rule LHS to its rule.
7377 Check its rule.
7378 * tests/input.at (AT_CHECK_UNUSED_VALUES): New.
7379 Use it.
7380 * tests/actions.at (Exotic Dollars): Adjust.
7381
7382 2006-01-04 Akim Demaille <akim@epita.fr>
7383
7384 * src/reader.c (grammar_midrule_action): If $$ is set in a
7385 mid-rule, move the `used' bit to its lhs.
7386 * tests/input.at (Unused values): New.
7387 * tests/actions.at (Exotic Dollars): Adjust: exp is not typed.
7388
7389 2006-01-03 Paul Eggert <eggert@cs.ucla.edu>
7390
7391 * doc/bison.texinfo (Bison Options): Say more accurately what
7392 --yacc does.
7393 * src/parse-gram.y (rules_or_grammar_declaration): Don't complain
7394 about declarations in the grammar when in Yacc mode, as POSIX does
7395 not require a diagnostic when the grammar uses extensions.
7396
7397 * src/reduce.c (reduce_grammar): Remove unnecessary cast to bool.
7398
7399 Warn about dubious constructions like "%token T T".
7400 Reported by twlevo.
7401 * src/symtab.h (struct symbol.declared): New member.
7402 * src/symtab.c (symbol_new): Initialize it to false.
7403 (symbol_class_set): New arg DECLARING, specifying whether
7404 this is a declaration that we want to warn about, if there
7405 is more than one of them. All uses changed.
7406
7407 * data/glr.c, data/glr.cc, data/lalr1.cc, data/yacc.c:
7408 Allow multiple %union directives, whose contents concatenate.
7409 * src/parse-gram.y (grammar_declaration): Likewise.
7410 Use muscle_code_grow, so that we don't need stype_line any more.
7411 All uses changed.
7412
7413 * src/muscle_tab.c (muscle_grow): Fix comment.
7414
7415 * ChangeLog, data/c.m4, data/glr.c, data/glr.cc, data/location.cc:
7416 * data/yacc.c, src/getargs.c, src/output.c, tests/cxx-type.at:
7417 Update copyright year to 2006.
7418
7419 2006-01-03 Akim Demaille <akim@epita.fr>
7420
7421 Have glr.cc pass (some of) the calc.at tests.
7422 * data/glr.cc (b4_parse_param_orig): New.
7423 (b4_parse_param): Improve its definition, and bound it more
7424 clearly in the skeleton.
7425 (b4_epilogue): Append, instead of prepending, in order to keep
7426 #line consistency.
7427 Simplify the generation of auxiliary functions: locations and
7428 purity are mandated.
7429 (b4_global_tokens_and_yystype): Honor it.
7430 * data/location.cc (c++.m4): Don't include it.
7431 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Define AT_GLR_CC_IF
7432 and AT_SKEL_CC_IF.
7433 * tests/calc.at (AT_CHECK_CALC): Rely on AT_SKEL_CC_IF instead of
7434 AT_LALR1_CC_IF.
7435 Be sure to initialize the first position's filename.
7436 (AT_CHECK_CALC_LALR1_CC): Add %location and %defines, they are
7437 mandated anyway.
7438 (AT_CHECK_CALC_GLR_CC): New.
7439 Use it to exercise glr.cc as a lalr1.cc drop-in replacement.
7440
7441 2006-01-02 Akim Demaille <akim@epita.fr>
7442
7443 * src/output.c (output_skeleton): Don't hard wire the inclusion of
7444 c.m4.
7445 * data/c++.m4, data/glr.c, data/yacc.c: Include c.m4.
7446 * data/glr.cc: Do not include stack.hh.
7447
7448 2006-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
7449
7450 * data/glr.c: Reformat whitespace with tabs.
7451 (b4_lpure_formals): Remove this unused m4 macro.
7452 * tests/cxx-type.at: Reformat whitespace with tabs.
7453 (_AT_TEST_GLR_CXXTYPES): In union Node, rename node_info to nodeInfo
7454 since it's a member. Rename type to isNterm for clarity.
7455
7456 2005-12-29 Akim <akim@sulaco.local>
7457
7458 Let glr.cc catch up with symbol_value_print.
7459 * data/glr.cc (b4_yysymprint_generate): Replace by...
7460 (b4_yy_symbol_print_generate): this.
7461 (yy_symbol_print, yy_symbol_value_print): Declare them.
7462
7463 2005-12-28 Paul Eggert <eggert@cs.ucla.edu>
7464
7465 * src/location.h (boundary): Note that a line or column equal
7466 to INT_MAX indicates an overflow.
7467 * src/scan-gram.l: Include verify.h. Don't include get-errno.h.
7468 (rule_length_overflow, increment_rule_length, add_column_width):
7469 New functions.
7470 (<INITIAL>{id}, <SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'"):
7471 (<SC_BRACED_CODE>"}"):
7472 Use increment_rule_length rather than incrementing it by hand.
7473 (adjust_location, handle_syncline): Diagnose overflow.
7474 (handle_action_dollar, handle_action_at):
7475 Fix bug with monstrosities like $-2147483648.
7476 Remove now-unnecessary checks.
7477 (scan_integer): Verify assumptions and remove now-unnecessary checks.
7478 (convert_ucn_to_byte): Verify assumptions.
7479 (handle_syncline): New arg LOC. All callers changed.
7480 Don't store through a value derived from char const * pointer.
7481
7482 * src/reader.c (grammar_rule_check): Rewrite slightly to avoid
7483 GCC warnings.
7484
7485 2005-12-27 Paul Eggert <eggert@cs.ucla.edu>
7486
7487 * src/reader.c (grammar_midrule_action, grammar_symbol_append):
7488 Remove unnecessary forward static decls.
7489
7490 2005-12-27 Akim Demaille <akim@epita.fr>
7491
7492 * src/reader.c (grammar_current_rule_check): Also check that $$
7493 is used.
7494 Take the rule to check as argument, hence rename as...
7495 (grammar_rule_check): this.
7496 * src/reader.h, src/reader.c (grammar_rule_begin, grammar_rule_end):
7497 Rename as...
7498 (grammar_rule_begin, grammar_rule_end): these, for consistency.
7499 (grammar_midrule_action, grammar_symbol_append): Now static.
7500 * tests/torture.at (input): Don't rely on the default action
7501 being always performed.
7502 * tests/calc.at: "Set" $$ even when the action is "cut" with
7503 YYERROR or other.
7504 * tests/actions.at (Exotic Dollars): Instead of using unused
7505 values, check that the warning is issued.
7506
7507 2005-12-22 Paul Eggert <eggert@cs.ucla.edu>
7508
7509 * NEWS: Improve wording for unused-value warnings.
7510
7511 2005-12-22 Akim Demaille <akim@epita.fr>
7512
7513 * data/lalr1.cc, data/yacc.c, data/glr.c, data/c.m4
7514 (b4_yysymprint_generate): Rename as...
7515 (b4_yy_symbol_print_generate): this.
7516 Generate yy_symbol_print instead of yysymprint.
7517 Generate also yy_symbol_value_print, and use it.
7518
7519 2005-12-22 Akim Demaille <akim@epita.fr>
7520
7521 * NEWS: Warn about unused values.
7522 * src/symlist.h, src/symlist.c (symbol_list, symbol_list_new): Add
7523 a `used' member.
7524 (symbol_list_n_get, symbol_list_n_used_set): New.
7525 (symbol_list_n_type_name_get): Use symbol_list_n_get.
7526 * src/scan-gram.l (handle_action_dollar): Flag used symbols.
7527 * src/reader.c (grammar_current_rule_check): Check that values are
7528 used.
7529 * src/symtab.c (symbol_print): Accept 0.
7530 * tests/existing.at: Remove the type information.
7531 Empty the actions.
7532 Remove useless actions (beware of mid-rule actions: perl -000
7533 -pi -e 's/\s*\{\}(?=[\n\s]*[|;])//g').
7534 * tests/actions.at (Exotic Dollars): Use unused values.
7535 * tests/calc.at: Likewise.
7536 * tests/glr-regression.at (No users destructors if stack 0 deleted):
7537 Likewise.
7538
7539 * src/gram.c (rule_useful_p, rule_never_reduced_p): Use
7540 rule_useful_p.
7541
7542 2005-12-21 Paul Eggert <eggert@cs.ucla.edu>
7543
7544 Undo 2005-12-01 tentative license wording change. The wording is
7545 still being reviewed by the lawyers, and we don't want to wait for
7546 them before publishing a test release. For now, revert to the
7547 previous wording.
7548 * NEWS: Undo 2005-12-01 change.
7549 * data/glr.c: Revert to previous license wording.
7550 * data/glr.cc: Likewise.
7551 * data/lalr1.cc: Likewise.
7552 * data/location.cc: Likewise.
7553 * data/yacc.c: Likewise.
7554
7555 * NEWS: Reword %destructor vs YYABORT etc.
7556 * data/glr.c: Use American spacing, for consistency.
7557 * data/glr.cc: Likewise.
7558 * data/lalr1.cc: Likewise.
7559 * data/yacc.c: Likewise.
7560 * data/yacc.c: Reformat comments slightly.
7561 * doc/bison.texinfo: Replace "non-" with "non" when that makes sense,
7562 for consistency. Fix some spelling errors and reword recently-included
7563 text slightly.
7564 * tests/cxx-type.at: Cast results of malloc, for C++.
7565
7566 2005-12-21 Joel E. Denny <address@hidden>
7567
7568 * tests/cxx-type.at: Construct a tree, count the parents of shared
7569 nodes, and free each node once and only once. Previously, the memory
7570 for semantic values was leaked instead.
7571
7572 2005-12-21 Joel E. Denny <address@hidden>
7573
7574 * data/glr.c (struct yyGLRStack): If pure, add yyval and yyloc members.
7575 (yylval, yylloc): If pure, #define to yystackp->yyval and
7576 yystackp->yyloc similar to yychar and yynerrs.
7577 (yyparse): If pure, remove local yylval and yylloc. Add local
7578 yystackp to accommodate pure definitions of yylval and yylloc.
7579 (b4_lex_param, b4_lyyerror_args, b4_lpure_args): If pure, change
7580 yylvalp and yyllocp to &yylval and &yylloc.
7581 (nerrs, char, lval, lloc): If pure, add #define's for b4_prefix[]
7582 namespace. Previously, nerrs and char were missing, but lval and lloc
7583 weren't necessary.
7584 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Remove
7585 yylvalp and yyllocp parameters since, if pure, these are now always
7586 accessible through yystackp. If not pure, they are still accessible
7587 globally.
7588 * data/glr.c, data/yacc.c (YYLLOC_DEFAULT): Change `if (N)' to
7589 `if (YYID (N))' to pacify lint.
7590
7591 2005-12-21 Akim Demaille <akim@epita.fr>
7592
7593 YYACCEPT, YYERROR, and YYABORT, as user actions, should not
7594 destroy the RHS symbols of a rule.
7595 * data/yacc.c (yylen): Initialize to 0.
7596 Keep its value to the number of items to possibly shift.
7597 In particular, a regular successful parse that ends on YYFINAL by
7598 a (internal) YYACCEPT must not have yylen != 0.
7599 (yyerrorlab, yyreturn): Pop the RHS.
7600 Reorder a bit to emphasize the `shifting' bits of code.
7601 (YYPOPSTACK): Now accept a number of items to pop.
7602 * data/lalr1.cc: Likewise.
7603 * data/glr.c: Formatting changes.
7604 Use goto instead of fall through.
7605 * doc/bison.texinfo (Destructor Decl): Complete.
7606
7607 2005-12-20 Juan Manuel Guerrero <juan.guerrero@gmx.de>
7608
7609 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
7610 * djgpp/Makefile.maint: Fix PACKAGE variable computation.
7611 * djgpp/config.bat: Replace every occurence of the file name
7612 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
7613 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
7614 * djgpp/config.sed: Replace every occurence of the file name
7615 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
7616 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
7617 * djgpp/djunpack.bat: DJGPP specific file.
7618 * djgpp/fnchange.lst: DJGPP specific file.
7619 * djgpp/README.in: Add new information about how to unpack the bison
7620 source on MSDOS and other systems which have 8.3 file name restrictions
7621 using djunpack.bat and fnchange.lst.
7622
7623 2005-12-12 Paul Eggert <eggert@cs.ucla.edu>
7624
7625 * bootstrap (build_cvs_prefix): Remove; unused.
7626 (CVS_PREFIX): Adjust to yesterday's Savannah reorganization
7627 when getting gnulib.
7628
7629 2005-12-12 "Joel E. Denny" <jdenny@ces.clemson.edu>
7630
7631 * data/glr.c: Reorder typedef declarations for structs to match order
7632 of struct declarations.
7633 Rename yystack everywhere to yystackp except in yyparse where it's not
7634 a pointer.
7635 (yyglrShift): Change parameter YYSTYPE yysval to YYSTYPE* yyvalp for
7636 consistency.
7637 (yyis_table_ninf): Change 0 to YYID (0) to pacify lint.
7638 (yyreportSyntaxError): Add /*ARGSUSED*/ to pacify lint.
7639 (yyparse): Change while (yytrue) to while ( YYID (yytrue)) to pacify
7640 lint.
7641
7642 2005-12-09 Paul Eggert <eggert@cs.ucla.edu>
7643
7644 * tests/sets.at (Accept): Fix typos in regular expression used to
7645 sed out the final state number.
7646
7647 Work around portability problem on Solaris 10: flex-generated
7648 files include <stdio.h> before <config.h>, which messes up
7649 because the latter defines __EXTENSIONS__. Address the problem
7650 by creating two new little files that include <config.h> first,
7651 then include the flex-generated files. Rewrite everyone else
7652 to include <config.h> first, as well.
7653 * lib/timevar.c: Always include "config.h".
7654 * src/Makefile.am (bison_SOURCES): Replace scan-gram.l with
7655 scan-gram-c.c, and scan-skel.l with scan-skel-c.c.
7656 (EXTRA_bison_SOURCES): New macro.
7657 * src/scan-gram-c.c, src/scan-skel-c.c: New files.
7658 * src/system.h: Don't include config.h.
7659 * src/LR0.c: Include <config.h> first.
7660 * src/assoc.c: Likewise.
7661 * src/closure.c: Likewise.
7662 * src/complain.c: Likewise.
7663 * src/conflicts.c: Likewise.
7664 * src/derives.c: Likewise.
7665 * src/files.c: Likewise.
7666 * src/getargs.c: Likewise.
7667 * src/gram.c: Likewise.
7668 * src/lalr.c: Likewise.
7669 * src/location.c: Likewise.
7670 * src/main.c: Likewise.
7671 * src/muscle_tab.c: Likewise.
7672 * src/nullable.c: Likewise.
7673 * src/output.c: Likewise.
7674 * src/parse-gram.y: Likewise.
7675 * src/print.c: Likewise.
7676 * src/print_graph.c: Likewise.
7677 * src/reader.c: Likewise.
7678 * src/reduce.c: Likewise.
7679 * src/relation.c: Likewise.
7680 * src/state.c: Likewise.
7681 * src/symlist.c: Likewise.
7682 * src/symtab.c: Likewise.
7683 * src/tables.c: Likewise.
7684 * src/uniqstr.c: Likewise.
7685 * src/vcg.c: Likewise.
7686
7687 * src/parse-gram.y: Fix minor problems uncovered by lint.
7688 (current_lhs, current_lhs_location): Now static.
7689 (current_assoc): Remove unused variable.
7690
7691 Cleanups so that Bison-generated parsers have less lint.
7692 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate):
7693 Prepend /*ARGSUSED*/, for lint's sake.
7694 * data/glr.c (YYUSE): Properly parenthesize, and use an alternate
7695 definition if 'lint' is defined.
7696 (YYID): New macro (or function, if lint).
7697 All uses of /*CONSTCOND*/0 replaced by YYID(0).
7698 * data/yacc.c: Likewise.
7699 * data/glr.c (yyuserAction, yyuserMerge, yy_reduce_print):
7700 (yyrecoverSyntaxError): Prepend /*ARGSUSED*/.
7701 * data/glr.cc (YYLLOC_DEFAULT): Omit /*CONSTCOND*/ since this code
7702 is C++ only.
7703 * data/lalr1.cc (YYUSE): Just use a cast, since this code is C++ only.
7704 * data/yacc.c (YYSTACK_FREE) [defined YYSTACK_ALLOC]:
7705 Use YYID(0) rather than 0, for lint.
7706 (yystrlen): Rewrite to avoid lint warning about ptrdiff_t overflow.
7707 (yysyntax_error): Rewrite to avoid lint warnings about parenthesization.
7708
7709 2005-12-07 Paul Eggert <eggert@cs.ucla.edu>
7710
7711 * tests/glr-regression.at
7712 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
7713 Close memory leak reported by twlevo.
7714
7715 2005-12-06 "Joel E. Denny" <jdenny@ces.clemson.edu>
7716
7717 * data/glr.c (yyprocessOneStack, yyparse): Synchronize the shift for
7718 all stacks.
7719 (yyparse): Iterate another stack in order to call user destructors.
7720 * tests/glr-regression.at (No users destructors if stack 0 deleted):
7721 New test case.
7722 (Duplicated user destructor for lookahead): This test now is expected
7723 to succeed.
7724
7725 2005-12-01 Paul Eggert <eggert@cs.ucla.edu>
7726
7727 * NEWS: Document the following change.
7728 * data/yacc.c: Say "parser skeleton" rather than "file", since
7729 it's no longer just a file.
7730 * data/glr.c: Grant a special exception for C GLR parsers, that
7731 reads like the already-existing exception for C LALR(1) parsers.
7732 * data/glr.cc: Likewise.
7733 * data/lalr1.cc: Likewise.
7734 * data/location.cc: Likewise.
7735 * data/yacc.c: Reword the "written by" statement to clarify that
7736 it was the parser skeleton, not the entire output file.
7737 * data/glr.c: Written by Paul Hilfinger.
7738 * data/glr.cc: Written by Akim Demaille.
7739 * data/lalr1.cc: Likewise.
7740
7741 2005-11-18 Paul Eggert <eggert@cs.ucla.edu>
7742
7743 * data/yacc.c (yy_reduce_print, YY_REDUCE_PRINT):
7744 Fix typos in previous change that broke 'make check'.
7745 YY_REDUCE_PRINT cannot be a pseudo-varargs macro; that isn't
7746 supported in C.
7747 * tests/calc.at (_AT_CHECK_CALC,_AT_CHECK_CALC_ERROR):
7748 Don't check NUM-STDERR-LINES, since the output format is fluctuating.
7749 We can revert this once things settle down.
7750
7751 * src/conflicts.c (conflicts_print): Don't print file name twice
7752 when %expect fails because there were no conflicts.
7753 * doc/bison.texinfo (Expect Decl): Tighten up wording in previous
7754 change.
7755 * tests/conflicts.at (%expect not enough, %expect too much):
7756 (%expect with reduce conflicts): Adjust to new behavior.
7757
7758 2005-11-18 Akim Demaille <akim@epita.fr>
7759
7760 * src/conflicts.c (conflicts_print): Unsatisfied %expectation are
7761 errors.
7762 * NEWS: Document this.
7763 * doc/bison.texinfo (Expect Decl): Likewise.
7764
7765 2005-11-16 Akim Demaille <akim@epita.fr>
7766
7767 Generalize the display of semantic values and locations in traces.
7768 * data/glr.c (yy_reduce_print): Fix indices (again).
7769 * data/c++.m4 (b4_rhs_value, b4_rhs_location): Don't expect
7770 literal integers.
7771 * data/lalr1.cc (yyreduce_print): Rename as...
7772 (yy_reduce_print): this.
7773 Display values and locations.
7774 * data/yacc.c (yy_reduce_print): Likewise.
7775 (YY_REDUCE_PRINT): Adjust to pass the required arguments.
7776 (yysymprint): Move higher to be visible from yy_reduce_print).
7777 (yyparse): Adjust.
7778 * tests/calc.at: Adjust the expected length of the traces.
7779
7780 2005-11-14 Akim Demaille <akim@epita.fr>
7781
7782 * data/glr.c (yy_reduce_print): The loop was quite wrong: type are
7783 from 1 to N, while values and location start at 0.
7784 (b4_rhs_location, b4_rhs_value): Add parens around $1 and $2.
7785
7786 2005-11-14 Akim Demaille <akim@epita.fr>
7787
7788 * data/glr.c (yy_reduce_print): Fix the $ number.
7789
7790 2005-11-14 Akim Demaille <akim@epita.fr>
7791
7792 "Use" parse parameters.
7793 * data/c.m4 (b4_parse_param_for, b4_parse_param_use): New.
7794 * data/glr.c, data/glr.cc: Use them.
7795 * data/glr.c (YYUSE): Have a C++ definition that supports
7796 non-pointer types.
7797
7798 2005-11-14 Akim Demaille <akim@epita.fr>
7799
7800 * data/glr.c (yyexpandGLRStack): Declare only if defined.
7801
7802 2005-11-14 Akim Demaille <akim@epita.fr>
7803
7804 * data/glr.cc: New.
7805 * data/m4sugar/m4sugar.m4 (m4_prepend): New.
7806
7807 2005-11-12 Akim Demaille <akim@epita.fr>
7808
7809 Let position and location be PODs.
7810 * data/location.cc (position::initialize, location::initialize): New.
7811 (position::position, location::location): Define only if
7812 b4_location_constructors is defined.
7813 * data/lalr1.cc (b4_location_constructors): Define it for backward
7814 compatibility.
7815 * doc/bison.texinfo (Initial Action Decl): Use initialize.
7816
7817 2005-11-12 Akim Demaille <akim@epita.fr>
7818
7819 * data/lalr1.cc: Move the body of the ctor and dtor into the
7820 parser file (instead of the header).
7821 Wrap the implementations in a "namespace yy".
7822
7823 2005-11-12 Akim Demaille <akim@epita.fr>
7824
7825 Have glr.c include its header file when created.
7826 * data/glr.c (b4_shared_declarations): New.
7827 Output them verbatim in the parser if !%defines, otherwise
7828 output then in the header file, and include it instead.
7829
7830 2005-11-11 Akim Demaille <akim@epita.fr>
7831
7832 * data/glr.c: Comment changes.
7833
7834 2005-11-11 Akim Demaille <akim@epita.fr>
7835
7836 When yydebug, report semantic and location values for reductions.
7837 * data/glr.c (yy_reduce_print): Report the semantic values and the
7838 locations.
7839 (YY_REDUCE_PRINT): Adjust.
7840 (yyglrReduce): Use them.
7841 (b4_rhs_value, b4_rhs_location): Remove m4_eval invocations.
7842 * data/c.m4 (b4_yysymprint_generate): Specify the const arguments.
7843 * tests/calc.at (_AT_CHECK_CALC_ERROR): Remove the reduction
7844 traces.
7845
7846 2005-11-10 Akim Demaille <akim@epita.fr>
7847
7848 * data/glr.c (yynewGLRStackItem, YY_RESERVE_GLRSTACK): New.
7849 (yyaddDeferredAction, yyglrShift, yyglrShiftDefer): Use them.
7850 (yyexpandGLRStack, YYRELOC): Define only when YYSTACKEXPANDABLE.
7851
7852 2005-11-09 Albert Chin-A-Young <china@thewrittenword.com>
7853
7854 * m4/cxx.m4, examples/Makefile.am: Don't build
7855 examples/calc++ if no C++ compiler is available. (trivial change)
7856
7857 2005-11-09 Akim Demaille <akim@epita.fr>
7858
7859 * src/scan-skel.l: Use a couple of asserts.
7860
7861 2005-11-03 Akim Demaille <akim@epita.fr>
7862
7863 In some (weird) cases, the final state number is incorrect.
7864 Reported by Alexandre Duret-Lutz.
7865 * src/LR0.c (state_list_append): Remove the computation of
7866 final_state.
7867 (save_reductions): Do it here.
7868 (get_state): Alpha conversion.
7869 (generate_states): Use a for loop.
7870 * src/gram.h (item_number_is_rule_number)
7871 (item_number_is_symbol_number): New.
7872 * src/state.c: Use assert.
7873 * src/system.h: Include assert.h.
7874 * tests/sets.at (Accept): New.
7875
7876 2005-10-30 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
7877
7878 * data/glr.c (yyfill): Adjust comment.
7879 (yyresolveAction): Initialize default location properly
7880 for empty right-hand sides.
7881 (yydoAction): Ditto.
7882 Add comment explaining apparently dead code.
7883 * tests/glr-regression.at
7884 (Incorrectly initialized location for empty right-hand side in GLR):
7885 New test.
7886
7887 2005-10-30 Paul Eggert <eggert@cs.ucla.edu>
7888
7889 * bootstrap (cleanup_gnulib): New function. Use it to clean up
7890 gnulib when interrupted. This fixes some race conditions and
7891 works around some portability problems (one noted by Paul
7892 Hilfinger).
7893
7894 2005-10-22 Akim <akim@epita.fr>
7895
7896 * Makefile.cfg: Adjust to config -> build-aux.
7897 Reported by twledo.
7898
7899 2005-10-21 Akim Demaille <akim@epita.fr>
7900
7901 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Pass
7902 the %parse-params.
7903 * data/glr.c (YY_SYMBOL_PRINT, yydestroyGLRState): Adjust.
7904 * data/yacc.c (b4_Pure_if): Rename as...
7905 (b4_yacc_pure_if): this.
7906 (YY_SYMBOL_PRINT, yyparse): Adjust.
7907 * doc/bison.texinfo: Formatting changes.
7908
7909 2005-10-21 Akim Demaille <akim@epita.fr>
7910
7911 Finish the transition config -> build-aux.
7912 * configure.ac, Makefile.am: Use build-aux.
7913 * config/prev-version, config/announce-gen, config/Makefile.am:
7914 Move to...
7915 * build-aux/prev-version, build-aux/announce-gen,
7916 * build-aux/Makefile.am: here.
7917
7918 2005-10-14 Akim Demaille <akim@epita.fr>
7919
7920 * examples/calc++/test: Use set -x only when VERBOSE.
7921
7922 2005-10-13 Paul Eggert <eggert@cs.ucla.edu>
7923
7924 * NEWS: Bison now warns if it finds a stray `$' or `@' in an action.
7925 * src/scan-gram.l (<SC_BRACED_CODE>[$@]): Implement this.
7926
7927 2005-10-13 Akim Demaille <akim@epita.fr>
7928
7929 * src/scan-skel.l: Output the base name parts of the parser and
7930 header file names.
7931 * tests/output.at (AT_CHECK_OUTPUT): Support subdirectories, and
7932 additional checks.
7933 Use this to exercise C++ outputs in subdirs.
7934 Reported by Oleg Smolsky.
7935
7936 2005-10-12 Paul Eggert <eggert@cs.ucla.edu>
7937
7938 * data/c.m4 (b4_c_function_def): Look at __C99_FUNC__, not at
7939 __STDC_VERSION__, as IBM cc 7.0 doesn't define the latter either.
7940 Problem reported by John P. Hartmann.
7941 * data/yacc.c (YYMODERN_C): Likewise. Don't define if the user has
7942 already defined it.
7943
7944 2005-10-12 Akim Demaille <akim@epita.fr>
7945
7946 * src/parse-gram.y (version_check): Exit 63 to please missing
7947 (stands for "version mismatch).
7948 * tests/input.at, doc/bison.texinfo: Adjust.
7949
7950 2005-10-10 Paul Eggert <eggert@cs.ucla.edu>
7951
7952 Work around portability problems with Visual Age C compiler
7953 (xlc and xlC_r) reported by John P. Hartmann.
7954 * data/location.cc (initial_column, initial_line): Remove.
7955 All uses replaced by 0 and 1.
7956 * src/scan-gram.l (gram_wrap): Redefine to avoid bug in flex 2.5.31
7957 that xlc complains about.
7958 * src/scan-skel.l (skel_wrap): Likewise.
7959 * data/c.m4 (b4_c_function_def): Look at __STDC_VERSION__ as well
7960 as __STDC__.
7961 * data/yacc.c (YYMODERN_C): New macro, which also looks at
7962 __STDC_VERSION__. Use it everywhere instead of looking at
7963 __STDC__ and __cplusplus.
7964
7965 2005-10-10 Akim Demaille <akim@epita.fr>
7966
7967 * examples/calc++/test: Be quiet unless VERBOSE.
7968
7969 2005-10-05 Paul Eggert <eggert@cs.ucla.edu>
7970
7971 * data/c.m4 (yydestruct, yysymprint):
7972 Use YYUSE instead of casting to void.
7973 * data/glr.c (YYUSE): New macro.
7974 (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
7975 Use it instead of rolling our own.
7976 (YYLLOC_DEFAULT, YYCHK, YYDPRINTF, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
7977 (YYCHK1):
7978 Use /*CONSTCOND*/ to suppress lint warnings.
7979 * data/lalr1.cc (YYLLOC_DEFAULT, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
7980 (YY_STACK_PRINT): Use 'false' not '0'.
7981 (YYUSE): New macro.
7982 (yysymprint_, yydestruct_): Use it instead of rolling our own.
7983 * data/yacc.c (YYUSE): New macro.
7984 (YYCOPY, YYSTACK_RELOCATE, YYBACKUP, YYLLOC_DEFAULT):
7985 (YYDPRINTF, YY_SYMBOL_PRINT, YY_STACK_PRINT, YY_REDUCE_PRINT):
7986 (yyerrorlab): Use /*CONSTCOND*/ to suppress lint warnings.
7987
7988
7989 * data/m4sugar/m4sugar.m4 (_m4_map): New macro.
7990 (m4_map, m4_map_sep): Use it. Handle the empty list correctly.
7991
7992 2005-10-04 Paul Eggert <eggert@cs.ucla.edu>
7993
7994 Undo the parts of the unlocked-I/O change that substituted
7995 putc or puts for printf. This might hurt performance a bit,
7996 but some people prefer the printf style.
7997 * data/c.m4 (yysymprint): Prefer printf to puts and putc.
7998 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): Remove.
7999 All uses replaced by YYFPRINTF and YYDPRINTF.
8000 * data/yacc.c: Likewise.
8001 * lib/bitset.c (bitset_print): Likewise.
8002 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer printf to
8003 putc and puts.
8004 * lib/lbitset.c (debug_lbitset): Likewise.
8005 * src/closure.c (print_firsts, print_fderives): Likewise.
8006 * src/gram.c (grammar_dump): Likewise.
8007 * src/lalr.c (look_ahead_tokens_print): Likewise.
8008 * src/output.c (escaped_output): Likewise.
8009 (user_actions_output): Break apart two printfs.
8010 * src/parse-gram.y (%printer): Prefer printf to putc and puts.
8011 * src/reduce.c (reduce_print): Likewise.
8012 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
8013 * src/system.h: Include unlocked-io.h rathe than stdio.h.
8014
8015 * data/glr.c (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
8016 Use assignments rather than casts-to-void to suppress
8017 unused-variable warnings. This pacifies 'lint'.
8018 * data/lalr1.cc (yysymprint_, yydestruct_): Use a call to suppress
8019 unused-variable warnings.
8020
8021 2005-10-03 Juan Manuel Guerrero <juan.guerrero@gmx.de>
8022
8023 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
8024
8025 2005-10-02 Paul Eggert <eggert@cs.ucla.edu>
8026
8027 Use unlocked I/O for a minor performance improvement on hosts like
8028 GNU/Linux and Solaris that support unlocked I/O. The basic idea
8029 is to use the gnlib unlocked-io module, and to prefer putc and
8030 puts to printf when either will work (since the latter doesn't
8031 come in an unlocked flavor).
8032 * bootstrap (gnulib_modules): Add unlocked-io.
8033 * data/c.m4 (yysymprint): Prefer puts and putc to printf.
8034 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): New macros.
8035 Prefer them to YYFPRINTF and YYDPRINTF if either will do,
8036 and similarly for puts and putc and printf.
8037 * data/yacc.c: Likewise.
8038 * lib/bitset.c (bitset_print): Likewise.
8039 * lib/bitset.h [USE_UNLOCKED_IO]: Include unlocked-io.h.
8040 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer putc and puts
8041 to printf.
8042 * lib/lbitset.c (debug_lbitset): Likewise.
8043 * src/closure.c (print_firsts, print_fderives): Likewise.
8044 * src/gram.c (grammar_dump): Likewise.
8045 * src/lalr.c (look_ahead_tokens_print): Likewise.
8046 * src/output.c (escaped_output): Likewise.
8047 (user_actions_output): Coalesce two printfs.
8048 * src/parse-gram.y (%printer): Prefer putc and puts to printf.
8049 * src/reduce.c (reduce_print): Likewise.
8050 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
8051 * src/system.h: Include unlocked-io.h rather than stdio.h.
8052
8053 * data/lalr1.cc: Don't put an unmatched ' in a dnl comment, as
8054 this confuses xgettext.
8055
8056 2005-10-02 Akim Demaille <akim@epita.fr>
8057
8058 * bootstrap (gnulib_modules): Add strverscmp.
8059 * lib/.cvsignore: Add strverscmp.c, strverscmp.h.
8060 * m4/.cvsignore: Add strverscmp.m4.
8061 * src/parse-gram.y (%require): New token, new rule.
8062 (version_check): New.
8063 * src/scan-gram.l (%require): Adjust.
8064 * tests/input.at (AT_REQUIRE): New.
8065 Use it.
8066 * doc/bison.texinfo (Require Decl): New.
8067 (Calc++ Parser): Use %require.
8068
8069 2005-10-02 Akim Demaille <akim@epita.fr>
8070
8071 * data/location.cc: New.
8072
8073 2005-10-02 Paul Eggert <eggert@cs.ucla.edu>,
8074 Akim Demaille <akim@epita.fr>
8075
8076 Make sure -odir/foo.cc creates dir/location.hh etc.
8077 * src/files.h (spec_outfile, parser_file_name, spec_name_prefix)
8078 (spec_file_prefix, spec_verbose_file, spec_graph_file)
8079 (spec_defines_file): Now const.
8080 (dir_prefix): New.
8081 (short_base_name): Remove.
8082 * src/files.c: Adjust.
8083 (dirname.h): Include.
8084 (base_name): Don't prototype it.
8085 (finput): Remove, duplicates gram_in.
8086 (full_base_name, short_base_name): Replace by...
8087 (all_but_ext, all_but_tab_ext): these.
8088 (compute_base_names): Rename as...
8089 (compute_file_name_parts): this.
8090 Update to compute the new variables, including dir_prefix.
8091 Adjust dependencies.
8092 * src/output.c (prepare): Output them.
8093 * src/reader.c: Adjust to use gram_in, not finput.
8094 * src/scan-skel.l (@dir_prefix@): New.
8095
8096 2005-10-02 Juan Manuel Guerrero <juan.guerrero@gmx.de>
8097
8098 * lib/subpipe.c: New function end_of_output_subpipe() added
8099 to allow support for non-posix systems. This is a no-op function
8100 for posix systems.
8101
8102 * lib/subpipe.h: New function end_of_output_subpipe() added
8103 to allow support for non-posix systems. This is a no-op function
8104 for posix systems.
8105
8106 * src/output.c (output_skeleton): Use end_of_output_subpipe() to
8107 handle the lack of pipe/fork functionality on non-posix systems.
8108
8109 * djgpp/Makefile.maint: DJGPP specific file.
8110
8111 * djgpp/README.in: DJGPP specific file.
8112
8113 * djgpp/config.bat: DJGPP specific configuration file.
8114
8115 * djgpp/config.sed: DJGPP specific configuration file.
8116
8117 * djgpp/config.site: DJGPP specific configuration file.
8118
8119 * djgpp/config_h.sed: DJGPP specific configuration file.
8120
8121 * djgpp/subpipe.c: DJGPP specific replacement file for lib/subpipe.c.
8122
8123 * djgpp/subpipe.h: DJGPP specific replacement file for lib/subpipe.h.
8124
8125 2005-10-02 Akim Demaille <akim@epita.fr>
8126
8127 * data/location.cc: New, extract from...
8128 * data/lalr1.cc: here.
8129 (location.hh): Include it after the user prologue, in case the
8130 filename type is defined by the user.
8131 Forward declation location and position before the pre-prologue.
8132 (yyresult_): Rename as...
8133 (yyresult): this, it's a local variable, not an attribute.
8134 * data/Makefile.am (dist_pkgdata_DATA): Adjust.
8135
8136 2005-10-01 Akim Demaille <akim@epita.fr>
8137
8138 * examples/extexi: Restore the #line generation.
8139
8140 2005-09-30 Akim Demaille <akim@epita.fr>,
8141 Alexandre Duret-Lutz <adl@gnu.org>
8142
8143 Move the token type and YYSTYPE in the parser class.
8144 * data/lalr1.cc (stack.hh, location.hh): Include earlier.
8145 (parser::token): New, from the moved free definition of tokens.
8146 (parser::semantic_value): Now a full definition instead of an
8147 indirection to YYSTYPE.
8148 (b4_post_prologue): No longer included in the header file, but
8149 in the implementation file.
8150 * doc/bison.texi (C+ Language Interface): Update.
8151 * src/parse-gram.y: Support unary %define.
8152 * tests/actions.at: Define global_tokens_and_yystype for backward
8153 compatibility until we update the tests.
8154 * tests/calc.at: Idem.
8155 (first_line, first_column, last_line, last_column): Define for lalr1.cc
8156 to simplify the code.
8157
8158 2005-09-29 Paul Eggert <eggert@cs.ucla.edu>
8159
8160 Port to SunOS 4.1.4, which lacks strtoul and strerror.
8161 Ah, the good old days! Problem reported by Peter Klein.
8162 * bootstrap (gnulib_modules): Add strerror, strtoul.
8163 * lib/.cvsignore: Add strerror.c, strtol.c, strtoul.c
8164 * m4/.cvsignore: Add strerror.m4, strtol.m4, strtoul.m4.
8165
8166 2005-09-29 Akim Demaille <akim@epita.fr>
8167
8168 * data/c.m4 (b4_error_verbose_if): New.
8169 * data/lalr1.cc: Use it.
8170 (YYERROR_VERBOSE_IF): Remove.
8171 (yyn_, yylen_, yystate_, yynerrs_, yyerrstatus_): Remove as
8172 parser members, replaced by...
8173 (yyn, yylen, yystate, yynerss, yyerrstatus): these parser::parse
8174 local variables.
8175 (yysyntax_error_): Takes the state number as argument.
8176 (yyreduce_print_): Use the argument yyrule, not the former
8177 attribute yyn_.
8178
8179 2005-09-26 Paul Eggert <eggert@cs.ucla.edu>
8180
8181 * bootstrap (gnulib_modules): Add verify.
8182 * lib/.cvsignore: Add verify.h.
8183 * src/getargs.c: Use ARGMATCH_VERIFY rather than verify.
8184 * src/system.h (verify): Remove.
8185 Include verify.h instead.
8186 * src/tables.c (tables_generate): Use new API for 'verify'.
8187
8188 2005-09-21 Paul Eggert <eggert@cs.ucla.edu>
8189
8190 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Do not use
8191 local variables whose names begin with 'yy'.
8192 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
8193 Trivial changes from Joel E. Denny.
8194
8195 * bootstrap (gnulib_modules): Remove alloca. Bison doesn't need
8196 it itself.
8197 * src/main.c (main) [C_ALLOCA]: Don't flush alloca'ed memory; we
8198 don't use alloca any more.
8199
8200 * data/yacc.c [YYSTACK_USE_ALLOCA && !defined __GNUC__ && ! defined
8201 __BUILTIN_VA_ARG_INCR && ! defined _AIX && ! defined _MSC_VER &&
8202 defined _ALLOCA_H]: Don't include <stdlib.h>; not needed in this case.
8203 * tests/torture.at (Exploding the Stack Size with Alloca): Adjust
8204 to match yacc.c, to test more hosts.
8205
8206 2005-09-20 Paul Eggert <eggert@cs.ucla.edu>
8207
8208 * data/yacc.c (YYSIZE_T): Reindent to make it clearer. This
8209 doesn't affect behavior.
8210 (YYSTACK_ALLOC) [YYSTACK_USE_ALLOCA]: Improve support for
8211 Solaris, AIX, MSC.
8212 (_STDLIB_H): Renamed from YYINCLUDED_STDLIB_H. All uses changed.
8213 This works a bit better with glibc, if user code has already included
8214 stdlib.h.
8215 * doc/bison.texinfo (Bison Parser): Document that users can't
8216 arbitrarily use malloc and free for other purposes. Document
8217 that <alloca.h> and <malloc.h> might be included.
8218 (Table of Symbols): Under YYSTACK_USE_ALLOCA, Don't claim that the
8219 user must declare alloca.
8220
8221 * HACKING (release): Forwarn the Translation Project about
8222 stable releses.
8223
8224 2005-09-20 Akim Demaille <akim@epita.fr>
8225
8226 * data/glr.c: Use b4_token_enums, not b4_token_enums_defines.
8227
8228 2005-09-19 Paul Eggert <eggert@cs.ucla.edu>
8229
8230 * data/yacc.c (YYSIZE_MAXIMUM): New macro.
8231 (YYSTACK_ALLOC_MAXIMUM): Use it.
8232 (yysyntax_error): New function.
8233 (yyparse) [YYERROR_VERBOSE]: Don't leak memory indefinitely if
8234 multiple syntax errors are reported, and alloca is being used.
8235 Instead, reallocate buffers twice as big each time, so that
8236 we waste at most half the allocated memory. Start with a small
8237 (128-byte) buffer that will suffice in most cases anyway.
8238 Use yysyntax_error to do most of the work.
8239
8240 * doc/bison.texinfo (Error Reporting, Table of Symbols):
8241 yynerrs is the number of errors reported, not the number of
8242 errors encountered.
8243
8244 * tests/glr-regression.at (Duplicated user destructor for lookahead):
8245 Mark it as expected to fail.
8246 Cast result of malloc; problem reported by twlevo@xs4all.nl.
8247 * tests/actions.at, tests/calc.at, tests/glr-regression.at:
8248 Don't start user-code symbols with "yy", to avoid name space problems.
8249
8250 2005-09-19 Akim Demaille <akim@epita.fr>
8251
8252 Remove the traits, failed experiment.
8253 It never proved useful, and anyway because of the current
8254 definition, it was not possible to have several specialization of
8255 this traits, making it useless.
8256 * data/lalr1.cc (yy:traits): Remove.
8257 Inline its definitions in the parser class.
8258
8259 2005-09-19 Akim Demaille <akim@epita.fr>
8260
8261 * tests/atlocal.in (LIBS): Pass INTLLIBS to address failures on at
8262 least Mac OSX with a /usr/local install of gettext.
8263
8264 2005-09-19 Akim Demaille <akim@epita.fr>
8265
8266 * data/lalr1.cc (yyparse): Rename yylooka and yyilooka as yychar
8267 and yytoken for similarity with the other skeletons.
8268
8269 2005-09-19 Akim Demaille <akim@epita.fr>
8270
8271 * NEWS, configure.ac: update version number to 2.1a.
8272
8273 2005-09-16 Paul Eggert <eggert@cs.ucla.edu>
8274
8275 * NEWS: Version 2.1.
8276
8277 * NEWS: Remove notice of yytname change, since it was never in an
8278 official release.
8279 * data/glr.c (yydestroyGLRState): Rename local var to avoid shadowing
8280 diagnostic.
8281 * src/output.c (prepare): Likewise.
8282 * data/lalr1.cc (YYERROR_VERBOSE_IF): New macro.
8283 (yysyntax_error_): Use it to avoid GCC warning when YYERROR_VERBOSE
8284 is not defined. This is an awful hack, but it's enough for now.
8285 All callers changed.
8286 * tests/glr-regression-at (make_value): Args are const pointers now,
8287 to avoid GCC warning.
8288 (Duplicated user destructor for lookahead): New test. Currently
8289 skipped. It fails on my host but I'm not sure it'll always fail.
8290
8291 2005-09-16 Akim Demaille <akim@epita.fr>
8292
8293 * src/symtab.h (struct symbol): Declare the printer and destructor
8294 as const, to avoid accidental calls to free.
8295 (symbol_destructor_set, symbol_printer_set): Adjust.
8296 * src/symtab.c: Adjust.
8297
8298 2005-09-16 Akim Demaille <akim@epita.fr>
8299
8300 * data/c.m4 (b4_token_enums): New.
8301 (b4_token_defines): Rename as...
8302 (b4_token_enums_defines): this.
8303 (b4_token_defines): New, output only the #defines.
8304 * data/yacc.c, data/glr.c: Adjust.
8305 * data/lalr1.cc: Use b4_token_enums instead of b4_token_enums_defines.
8306 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Define
8307 as default values.
8308
8309 2005-09-16 Akim Demaille <akim@epita.fr>
8310
8311 * data/lalr1.cc (yylex_): Remove, inline its code.
8312 (yyreport_syntax_error_): Remove, replaced by...
8313 (yysyntax_error_): this which returns a string and leaves to the
8314 caller the call to the users' error function.
8315 (yylooka_, yyilooka_, yylval, yylloc, yyerror_range_, yyval, yyloc):
8316 Move from members of the parser object...
8317 (yylooka, yyilooka, yylval, yylloc, yyerror_range, yyval, yyloc):
8318 to local variables of the parse function.
8319
8320 2005-09-16 Akim Demaille <akim@epita.fr>
8321
8322 * doc/bison.texinfo (Calc++ Parser): Don't promote defining YYEOF
8323 since it's in Bison's name space.
8324
8325 2005-09-15 Paul Eggert <eggert@cs.ucla.edu>
8326
8327 * data/glr.c (yyresolveValue): Add default case to pacify
8328 gcc -Wswitch-default. Problem reported by twlevo@xs4all.nl.
8329
8330 * NEWS: Document when yyparse started to return 2.
8331 * doc/bison.texinfo (Parser Function): Document when yyparse
8332 returns 2.
8333
8334 * data/lalr1.cc: Revert part of previous change, as it's incompatible.
8335 (b4_filename_type): Renamed back from b4_file_name_type. All uses
8336 changed.
8337 (class position): file_name -> filename (reverting). All uses changed.
8338
8339 2005-09-14 Paul Eggert <eggert@cs.ucla.edu>
8340
8341 * examples/calc++/Makefile.am ($(calc_sources_generated)): Don't
8342 do anything if $@ exists. This reverts part of the 2005-07-07
8343 patch.
8344
8345 2005-09-11 Paul Eggert <eggert@cs.ucla.edu>
8346
8347 * Makefile.am (EXTRA_DIST): Do not distribute REFERENCES; it
8348 contains obsolete information and isn't worth distributing as a
8349 separate file anyway.
8350 * data/glr.c [defined YYSETJMP]: Don't include <setjmp.h>.
8351 (YYJMP_BUF, YYSETJMP, YYLONGJMP) [!defined YYSETJMP]: New macros.
8352 All uses of jmp_buf, setjmp, longjmp changed to use these instead.
8353 (yyparse): Abort if user code uses longjmp to throw an unexpected
8354 value.
8355
8356 2005-09-09 Paul Eggert <eggert@cs.ucla.edu>
8357
8358 * data/c.m4 (b4_identification): Define YYBISON_VERSION.
8359 Suggested by twlevo@xs4all.nl.
8360
8361 * data/glr.c (YYCHK1): Do not assume YYE is in range.
8362 This avoids a diagnostic from gcc -Wswitch-enum.
8363 Problem reported by twlevo@xs4all.nl.
8364
8365 * doc/bison.texinfo: Don't use "filename", as per GNU coding
8366 standards. Use "file name" or "file" or "name", depending on
8367 the context.
8368 (Invocation): The output of "bison hack/foo.y" goes to foo.tab.c,
8369 not to hack/foo.tab.c.
8370 (Calc++ Top Level): 2nd arg of main is not const.
8371 * data/glr.c: b4_filename -> b4_file_name.
8372 * data/lalr1.cc: Likewise. Also, b4_filename_type -> b4_file_name_type.
8373 All uses changed.
8374 (class position): filename -> file_name. All uses changed.
8375 * data/yacc.c: b4_filename -> b4_file_name.
8376 * lib/bitset.h: filename -> file_name in local vars.
8377 * lib/bitset_stats.c: Likewise.
8378 * src/files.c: Likewise.
8379 * src/scan-skel.l ("@output ".*\n): Likewise.
8380 * src/files.c (file_name_split): Renamed from filename_split.
8381 * src/muscle_tab.c (muscle_init): Output b4_file_name, not b4_filename.
8382
8383 2005-09-08 Paul Eggert <eggert@cs.ucla.edu>
8384
8385 * lib/.cvsignore: Add pipe-safer.c, stdio--.h, unistd--.h,
8386 to accommodate latest gnulib.
8387
8388 * tests/glr-regression.at (Duplicate representation of merged trees):
8389 Add casts to pacify g++. Problem reported by twlevo@xs4all.nl.
8390
8391 * bootstrap: Add comment as to why the AM_LANGINFO_CODESET hack is
8392 needed.
8393
8394 2005-08-26 Paul Eggert <eggert@cs.ucla.edu>
8395
8396 * data/glr.c (yydestroyGLRState): Renamed from yydestroyStackItem.
8397 All uses changed. Invoke user destructor after an error during a
8398 split parse (trivial change from Joel E. Denny).
8399
8400 * tests/glr-regression.at
8401 (User destructor after an error during a split parse): New test case.
8402 Problem reported by Joel E. Denny in:
8403 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00029.html
8404
8405 2005-08-25 Paul Eggert <eggert@cs.ucla.edu>
8406
8407 * README-cvs: Give URLs for recommended tools.
8408 Mention Gzip version problem, and bootstrapping issues.
8409 Remove troubleshooting section, as it's somewhat obsolete.
8410
8411 * bootstrap (no_cache): New var, to accommodate different wget
8412 variants. Use it instead of '-C off'. Problem reported by
8413 twlevo@xs4all.nl.
8414
8415 * data/glr.c (yydestroyStackItem): New function.
8416 (yyrecoverSyntaxError, yyreturn): Use it to improve quality of
8417 debugging information. Problem reported by Joel E. Denny.
8418
8419 2005-08-25 Akim Demaille <akim@epita.fr>
8420
8421 * tests/local.at (AT_COMPILE_CXX): Pass $LINKS too.
8422
8423 2005-08-24 Paul Eggert <eggert@cs.ucla.edu>
8424
8425 * data/glr.c (yyrecoverSyntaxError, yyreturn):
8426 Don't invoke destructor on unresolved entries.
8427 * tests/glr-regression.at
8428 (User destructor for unresolved GLR semantic value): New test case.
8429 Problem reported by Joel E. Denny in:
8430 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00016.html
8431
8432 2005-08-21 Paul Eggert <eggert@cs.ucla.edu>
8433
8434 * lib/.cvsignore: Remove realloc.c, strncasecmp.c, xstrdup.c.
8435 Add strnlen.c.
8436 * m4/.cvsignore: Remove codeset.m4, gettext.m4, lib-ld.m4,
8437 lib-prefix.m4, po.m4.
8438
8439 * data/glr.c (yyreturn): Use "Cleanup:" rather than "Error:"
8440 in yydestruct diagnostic, since it might not be an error.
8441 Problem reported by Joel Denny near end of
8442 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
8443 * data/lalr1.cc (yyerturn): Likewise.
8444 * data/yacc.c (yyreturn): Likewise.
8445 * tests/calc.at (_AT_CHECK_CALC_ERROR): Adjust to the above change.
8446
8447 * src/files.c: Remove obsolete FIXME comment.
8448
8449 * data/glr.c (YY_SYMBOL_PRINT): Append a newline, for consistency
8450 with the other templates, and to fix bogus run-on messages such
8451 as the one reported at the end of
8452 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
8453 All callers changed to avoid the newline.
8454 (yyprocessOneStack): Output two lines rather than one, to accommodate
8455 the above change. This changes the debug output format slightly.
8456
8457 * data/glr.c (yyresolveValue): Fix redundant parse tree problem
8458 reported by Joel E. Denny in
8459 <http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00004.html>
8460 (trivial change).
8461 * tests/glr-regression.at (Duplicate representation of merged trees):
8462 New test, from Joel E. Denny in:
8463 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00013.html>.
8464 * THANKS: Add Joel E. Denny.
8465
8466 * configure.ac (AC_INIT): Bump to 2.0c.
8467
8468 2005-07-24 Paul Eggert <eggert@cs.ucla.edu>
8469
8470 * NEWS: Version 2.0b.
8471
8472 * Makefile.am (SUBDIRS): Put examples before tests, so that
8473 "make check" doesn't finish with "All 1 tests passed".
8474
8475 * tests/regression.at (Token definitions): Don't rely on
8476 AT_PARSER_CHECK for data that contains backslashes. It currently
8477 uses 'echo', and 'echo' isn't portable if its argument contains
8478 backslashes. Problem found on OpenBSD 3.4. Also, do not assume
8479 that the byte '\0xff' is not printable in the C locale; it is,
8480 under OpenBSD 3.4 (!). Luckily, '\0x80' through '\0x9e' are
8481 not printable, so use '\0x81' to test.
8482
8483 * data/glr.c (YYOPTIONAL_LOC): Define even if it's not a recent
8484 version of GCC, since the macro is used with non-GCC compilers.
8485
8486 Fix core dump reported by Pablo De Napoli in
8487 <http://lists.gnu.org/archive/html/bug-bison/2005-07/msg00053.html>.
8488 * tests/regression.at (Invalid inputs with {}): New test.
8489 * src/parse-gram.y (token_name): Translate type before using
8490 it as an index.
8491
8492 * data/glr.c (ATTRIBUTE_UNUSED): Remove, since it infringes on
8493 the user's name space. All uses changed to __attribute__
8494 ((__unused__)).
8495 (yyFail, yyMemoryExhausted, yyreportAmbiguity):
8496 Add __attribute__ ((__noreturn__)).
8497
8498 * etc/clcommit: Remove. We weren't using it, and it failed
8499 "make maintainer-distcheck".
8500 * Makefile.maint: Merge from coreutils.
8501 (CVS_LIST, CVS_LIST_EXCEPT): New macros.
8502 (syntax-check-rules): Change list of rules as described below.
8503 (sc_cast_of_alloca_return_value, sc_dd_max_sym_length):
8504 (sc_file_system, sc_obsolete_symbols, sc_prohibit_atoi_atof):
8505 (sc_prohibit_jm_in_m4, sc_root_tests, sc_tight_scope):
8506 (sc_trailing_space): New rules.
8507 (sc_xalloc_h_in_src): Remove.
8508 (sc_cast_of_argument_to_free, sc_cast_of_x_alloc_return_value):
8509 (sc_space_tab, sc_error_exit_success, sc_changelog):
8510 (sc_system_h_headers, sc_sun_os_names, sc_unmarked_diagnostics):
8511 (makefile-check, po-check, author_mark_check):
8512 (makefile_path_separator_check, copyright-check):
8513 Use grep -n, to make it easier to find violations.
8514 Use CVS_LIST and CVS_LIST_EXCEPT.
8515 (header_regexp, h_re): Remove.
8516 (dd_c): New macro.
8517 (sc_dd_max_sym_length, .re-list, news-date-check): New rules.
8518 (my-distcheck): Use more-modern GCC flags.
8519 (signatures, %.asc): Remove.
8520 (rel-files, announcement): Remove signatures.
8521 Restore old updating code, even though we don't use it, so
8522 that we're the same as coreutils.
8523 (alpha, beta, major): Depend on news-date-check.
8524 Make the upload commands.
8525
8526 * data/c.m4, data/lalr1.cc, data/yacc.c: Normalize white space.
8527 * lib/abitset.h, lib/bbitset.h, lib/bitset.h: Likewise.
8528 * lib/bitset_stats.c, lib/ebitset.h, lib/lbitset.c: Likewise.
8529 * lib/libitset.h, lib/timevar.c, lib/vbitset.h: Likewise.
8530 * src/Makefile.am, src/gram.c, src/muscle_tab.h: Likewise.
8531 * src/parse-gram.y, src/system.h, src/tables.c, src/vcg.c: Likewise.
8532 * src/vcg_defaults.h, tests/cxx-type.at, tests/existing.at: Likewise.
8533 * tests/sets.at: Likewise.
8534
8535 * data/m4sugar/m4sugar.m4: Sync from Autoconf, except that
8536 we comment out the Autoconf version number.
8537 * doc/bison.texinfo (Calc++ Scanner): Don't use atoi, as
8538 it's error-prone and "make maintainer-distcheck" rejects it.
8539
8540 * lib/subpipe.c: Include <fcntl.h> without checking for HAVE_FCNTL_H.
8541 Indent calls to "error" to pacify "make maintainer-distcheck",
8542 when the calls are not intended to be translated.
8543 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't check for fcntl.h.
8544
8545 * src/Makefile.am (DEFS): Use +=, to pacify
8546 "make maintainer-distcheck".
8547 (bison_SOURCES): Add scan-skel.h.
8548 (sc_tight_scope): New rule, from coreutils.
8549
8550 * src/files.c (src_extension, header_extension):
8551 Now static, not extern.
8552 * src/getargs.c (short_options): Likewise.
8553 * src/muscle_tab.c (muscle_table): Likewise.
8554 * src/parse-gram.y (current_class, current_type, current_prec):
8555 Likewise.
8556 * src/reader.c (grammar_end, previous_rule_end): Likewise.
8557 * src/getargs.h: Redo comments to pacify "make maintainer-distcheck".
8558 * src/main.c (main): Cast bindtextdomain and textdomain calls to
8559 void, to avoid warning when NLS is disabled.
8560 * src/output.c: Include scan-skel.h.
8561 (scan_skel): Remove decl, since scan-skel.h does this.
8562 (output_skeleton):
8563 Indent calls to "error" to pacify "make maintainer-distcheck".
8564 * src/print_graph.c: Don't include <obstack.h>, as system.h does this.
8565 * src/reader.h (gram_end, gram_lineno): New decls to pacify
8566 "make maintainer-distcheck".
8567 * src/scan-skel.l (skel_lex, skel_get_lineno, skel_get_in):
8568 (skel_get_out, skel_get_leng, skel_get_text, skel_set_lineno):
8569 (skel_set_in, skel_set_out, skel_get_debug, skel_set_debug):
8570 (skel_lex_destroy, scan_skel): Move these decls to...
8571 * src/scan-skel.h: New file.
8572 * src/uniqstr.c (uniqstr_assert):
8573 Indent calls to "error" to pacify "make maintainer-distcheck".
8574
8575 * tests/Makefile.am ($(srcdir)/package.m4): Use $(VAR),
8576 not @VAR@.
8577
8578 * tests/torture.at: Revamp to avoid misuse of atoi that
8579 "make maintainer-distcheck" complained about.
8580
8581 * examples/extexi (message): Don't print a message more than once,
8582 and omit line-number decoration that makes Emacs compile think
8583 that informative messages are worth worrying about.
8584
8585 2005-07-22 Paul Eggert <eggert@cs.ucla.edu>
8586
8587 * configure.ac: Update version number.
8588
8589 * Makefile.am (SUBDIRS): Add examples; somehow this got removed
8590 accidentally.
8591 * examples/calc++/calc++-parser.yy: Remove from CVS, as it's
8592 autogenerated by the maintainer.
8593 * examples/calc++/.cvsignore: Add *.yy.
8594
8595 * lib/bitset.c (bitset_alloc): Don't cast xcalloc result.
8596 * lib/bitset_stats.c (bitset_stats_init): Likewise.
8597 * lib/bitsetv.c (bitsetv_alloc): Likewise.
8598
8599 * po/POTFILES.in: Add lib/xalloc-die.c; remove lib/xmalloc.c.
8600
8601 * src/relation.c (relation_transpose): Rewrite to avoid bogus complaint
8602 from maintainer-distcheck about casting the argument of 'free'.
8603
8604 * NEWS: Mention recent yytname changes.
8605 * THANKS: Add Anthony Heading, twlevo@xs4all.nl.
8606
8607 * bootstrap: For translations that have not yet been upgraded to
8608 the new runtime-po domain, prime the pump by extracting the
8609 relevant strings from the obsolete translations. This code can be
8610 removed once the bison-runtime domain has been translated by each
8611 team.
8612
8613 * src/scan-gram.l (<SC_PRE_CODE>.): Don't double-quote token names,
8614 now that token names are already quoted.
8615
8616 Fix problem reported by Anthony Heading.
8617 * data/glr.c (YYTOKEN_TABLE): New macro.
8618 (yytname): Define if YYTOKEN_TABLE.
8619 * data/yacc.c (YYTOKEN_TABLE, yytname): Likewise.
8620 * data/lalr1.cc (YYTOKEN_TABLE, yytname_): Likewise.
8621 (YYERROR_VERBOSE): Define the same way the other skeletons do.
8622 * src/output.c (prepare_symbols): Output token_table_flag.
8623
8624 2005-07-21 Paul Eggert <eggert@cs.ucla.edu>
8625
8626 * data/glr.c (yyinitGLRStack, yyreturn): Don't call malloc
8627 again if the first call fails.
8628
8629 * data/glr.c (yytnamerr): New function.
8630 (yyreportSyntaxError): Use it to dequote most string literals.
8631 * data/lalr1.c (yytname_): Renamed from yyname_, for compatibility
8632 with other skeletons. All uses changed.
8633 (yytnameerr_): New function.
8634 (yyreport_syntax_error): Use it to dequote most string literals.
8635 * data/yacc.c (yytnamerr): New function.
8636 (yyerrlab): Use it to decode most string literals.
8637 * doc/bison.texinfo (Decl Summary, Calling Convention):
8638 Clarify quoting convention of yytname.
8639 * src/output.c (prepare_symbols): Quote all names. This undoes
8640 the 2005-04-17 change, which is now accomplished (mostly) via
8641 changes in the parsers as described above.
8642 * tests/regression.at (Token definitions, Web2c Actions):
8643 Undo most 2005-04-17 change here, too.
8644
8645 2005-07-20 Paul Eggert <eggert@cs.ucla.edu>
8646
8647 Fix more problems reported by twlevo@xs4all.nl.
8648 * tests/cxx-type.at: Don't pipe output of ./types through sed to
8649 remove trailing spaces. This loses the exit status of ./types,
8650 and isn't needed since ./types shouldn't be emitting trailing
8651 spaces.
8652 * data/glr.c (yyreturn): Don't pop stack if yyinitStateSet failed,
8653 as the stack isn't valid in that case.
8654
8655 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
8656 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
8657 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
8658 Add declarations to pacify "gcc -Wmissing-prototypes" when flex 2.5.31
8659 is used.
8660 * src/scan-skel.l (skel_get_lineno, skel_get_in, skel_get_out):
8661 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
8662 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
8663 Likewise.
8664
8665 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Work even with
8666 overly-picky compilers that reject 'char *foo = "bar";'.
8667
8668 * src/symtab.c (SYMBOL_ATTR_PRINT, symbol_print): Direct output
8669 to FILE * parameter, not to stderr. This fixes a typo introduced
8670 in the 2005-07-12 change.
8671
8672 * lib/subpipe.c (create_subpipe): Rewrite slightly to avoid
8673 warnings from GCC 4.
8674
8675 * data/glr.c (yyexpandGLRStack, yyaddDeferredAction, yyexpandGLRStack):
8676 (yyglrShiftDefer, yysplitStack):
8677 Remove unused parameters b4_pure_formals. All uses changed.
8678 (yyglrShift): Remove unused parameters b4_user_formals.
8679 All uses changed.
8680 (yyglrReduce): Removed unused parameter yylocp. All uses changed.
8681
8682 2005-07-18 Paul Eggert <eggert@cs.ucla.edu>
8683
8684 Destructor cleanups and regularization among the three skeletons.
8685 * NEWS: Document the behavior changes.
8686 * data/glr.c (yyrecoverSyntaxError): Don't bother to pop the
8687 stack before failing, as the cleanup code will do it for us now.
8688 * data/lalr1.cc (yyerrlab): Likewise.
8689 * data/glr.c (yyparse): Pop everything off the stack before
8690 freeing it, so that destructors get called properly.
8691 * data/lalr1.cc (yyreturn): Likewise.
8692 * data/yacc.c (yyreturn): Pop and destroy the start symbol, too.
8693 This is more consistent.
8694 * doc/bison.texinfo (Destructor Decl): Mention more reasons
8695 why destructors might be called. 1.875 -> 2.1.
8696 (Destructor Decl, Decl Summary, Table of Symbols):
8697 Some English-language cleanups for %destructor.
8698 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
8699 Add output line for destructor of start symbol.
8700 * tests/calc.at (AT_CHECK_CALC): Add one to line counts,
8701 because of that same extra output line.
8702
8703 * NEWS: Document minor wording changes in diagnostics of
8704 Bison-generated parsers.
8705 * data/glr.c (yyMemoryExhausted): Renamed from yyStackOverflow.
8706 Remove unused formals. All uses changed.
8707 (yyreportAmbiguity): "ambiguity detected" -> "syntax is ambiguous".
8708 (yyparse): Rename yyoverflowlab to yyexhaustedlab.
8709 * data/yacc.c (yyparse): "parser stack overflow" -> "memory exhausted".
8710 Rename yyoverflowab to yyexhaustedlab.
8711 When memory exhaustion occurs during syntax-error reporting,
8712 report it separately rather than in a single diagnostic; this
8713 eases translation.
8714 * doc/bison.texinfo (Memory Management): Renamed from Stack Overflow.
8715 (Memory Exhausted): Renamed from Parser Stack Overflow.
8716 Revamp wording slightly to prefer "memory exhaustion".
8717 * tests/actions.at: "parser stack overflow" -> "memory exhausted".
8718
8719 * data/c.m4 (b4_yysymprint_generate): Use YYFPRINTF, not fprintf.
8720
8721 Add i18n support to the GLR skeleton. Partially fix the C++
8722 skeleton; a C++ expert needs to finish this. Remove debugging
8723 msgids; there's little point to having them translated, since they
8724 can be understood only by someone who can read the
8725 (English-language) source code.
8726
8727 Generate runtime-po/bison-runtime.pot automatically, so that we
8728 don't have to worry about garbage getting in that file. We'll
8729 make sure after the next official release that old msgids don't
8730 get lost. See
8731 <http://lists.gnu.org/archive/html/bison-patches/2005-07/msg00119.html>.
8732
8733 * runtime-po/Makefile.in.in, runtime-po/bison-runtime.pot: Remove.
8734 Now auto-generated.
8735 * PACKAGING: Don't claim that Gawk, GCC, Perl use this method yet.
8736 Fix typos in explanations of the runtime file.
8737 * bootstrap: Change gettext keyword from YYI18N to YY_.
8738 Use standard Makefile.in.in in runtime-po, since we'll arrange
8739 for backward-compatible bison-runtime.po files in a different way.
8740 * data/glr.c (YY_): New macro, from yacc.c.
8741 (yyuserAction, yyreportAmbiguity, yyreportSyntaxError, yyparse):
8742 Translate messages intended for users.
8743 (yyreportSyntaxError): Change "virtual memory" to "memory" to match
8744 the wording in the other skeletons. We don't know that the memory
8745 is virtual.
8746 * data/lalr1.cc (YY_): Renamed from _. All uses changed.
8747 Use same method that yacc.c uses.
8748 Don't translate debugging messages.
8749 (yy::yyreport_syntax_error): Put in a FIXME for the i18n stuff;
8750 it doesn't work (yet), and requires C++ expertise to fix.
8751 * data/yacc.c (YY_): Renamed from YY18N. All uses changed.
8752 Move defn to a more logical place, to be consistent with other
8753 skeletons.
8754 Don't translate debugging messages.
8755 Don't assume line numbers fit in unsigned int; use unsigned long fmts.
8756 * doc/bison.texinfo: Mention <libintl.h>. Change glibc cross reference
8757 to gettext cross reference. Add indexing terms. Mention YYENABLE_NLS.
8758 * runtime-po/POTFILES.in: Add data/glr.c, data/lalr1.cc.
8759
8760 Fix yyerror / yylex test glitches noted by twlevo@xs4all.nl.
8761 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Have yyerror return
8762 void, not int.
8763 * tests/glr-regression.at (Badly Collapsed GLR States):
8764 Likewise.
8765 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
8766 yylex should return 0 at EOF rather than aborting.
8767
8768 Improve tests for stack overflow in GLR parser.
8769 Problem reported by twlevo@xs4all.nl.
8770 * data/glr.c (struct yyGLRStack): Remove yyerrflag member.
8771 All uses removed.
8772 (yyStackOverflow): Just longjmp, but with value 2 so that caller
8773 can handle the problem.
8774 (YYCHK1): Use goto (a la yacc.c) rather than setting a flag.
8775 (yyparse): New local variable yyresult to record the result.
8776 Use result of setjmp to set it, rather than storing itinto
8777 struct.
8778 (yyDone): Remove label.
8779 (yyacceptlab, yyabortlab, yyoverflowlab, yyreturn): New labels,
8780 to mimic yacc.c. Do not discard lookahead if it's EOF (possible
8781 if YYABORT is used).
8782 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Exit with
8783 yyparse status; put status > 1 into diagnostic.
8784 Check that status==2 works.
8785 * tests/calc.at, tests/cxx-type.at, tests/glr-regression.at:
8786 Use exit status 3 for failure to open (which shouldn't happen).
8787
8788 2005-07-17 Paul Eggert <eggert@cs.ucla.edu>
8789
8790 * tests/conflicts.at (%nonassoc and eof): Don't exit with status
8791 1 on syntax error; just let yyparse do its thing.
8792 * tests/glr-regression.at (Badly Collapsed GLR States): Likewise.
8793 * tests/torture.at (AT_DATA_STACK_TORTURE): Likewise.
8794 (Exploding the Stack Size with Alloca):
8795 (Exploding the Stack Size with Malloc):
8796 Expect exit status 2, not 1, since the parser is supposed to blow
8797 its stack. Problem reported by twlevo@xs4all.nl.
8798
8799 * data/glr.c (yyparse): Don't assume that the initial calls
8800 to YYMALLOC succeed; in that case, yyparse incorrectly returned 0.
8801 Print a stack-overflow message and fail instead.
8802 Initialize the line-number information before creating the stack,
8803 so that the stack-overflow message can report line zero safely.
8804
8805 2005-07-14 Paul Eggert <eggert@cs.ucla.edu>
8806
8807 Fix problems reported by twlevo@xs4all.nl.
8808 * data/glr.c (YYSTACKEXPANDABLE): Don't define if already defined.
8809 (yyuserMerge): Provide a default case if b4_mergers is empty.
8810 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Define YYSTACKEXPANDABLE.
8811 * tests/glr-regression.at
8812 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
8813 Add casts to pacify C++ compilers.
8814 * tests/glr-regression.at (Improper merging of GLR delayed action
8815 sets): Declare yylex before using it.
8816 * tests/Makefile.am (maintainer-check-g++): Fix a stray
8817 $(GXX) that escaped the renaming of GXX to CXX. Remove bogus
8818 test for valgrind; valgrind is independent of g++.
8819 (maintainer-check-posix): Add _POSIX2_VERSION=200112, to check
8820 for compatibility with POSIX 1003.1-2001 (if running coreutils).
8821 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Port to stricter C++.
8822 Use a destructor, so that we can expand the stack. Change
8823 YYSTYPE to char * so that we can free it. Cast result of malloc.
8824
8825 2005-07-13 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
8826
8827 * data/glr.c (yyuserAction): Fix uninitialized variable that caused
8828 a valgrind failure. Problem reported by twlevo@xs4all.nl.
8829
8830 2005-07-13 Paul Eggert <eggert@cs.ucla.edu>
8831
8832 * PACKAGING: New file, suggested by Bruno Haible and taken from
8833 similar wording in gettext's PACKAGING file.
8834 * NEWS: Mention PACKAGING.
8835 * Makefile.am (EXTRA_DIST): Add PACKAGING.
8836
8837 2005-07-12 Paul Eggert <eggert@cs.ucla.edu>
8838
8839 * NEWS: Document recent i18n improvements.
8840 * bootstrap: Get runtime translations into runtime-po.
8841 Create runtime-po files automatically, if possible.
8842 * configure.ac: Invoke BISON_I18N, so that we eat our own dog food.
8843 * data/yacc.c: Rewrite inclusion of <libintl.h> so that ENABLE_NLS
8844 does not infringe on the user's name space.
8845 (YYENABLE_NLS): Renamed from ENABLE_BISON_NLS.
8846 * doc/bison.texinfo (Internationalization): Revamp the English
8847 and Texinfo syntax a bit, to try to make it clearer.
8848 (Bison Options, Option Cross Key): Mention --print-localedir.
8849 * m4/bison-i18n.m4 (BISON_I18N): Rename ENABLE_BISON_NLS to
8850 YYENABLE_NLS. Quote a bit more.
8851 * runtime-po/.cvsignore: New file.
8852 * runtime-po/Makefile.in.in (mostlyclean): Remove *.old.pot.
8853 * runtime-po/Rules-quot: Remove; now created by bootstrap.
8854 * runtime-po/quot.sed: Likewise.
8855 * runtime-po/boldquot.sed: Likewise.
8856 * runtime-po/en@quot.header: Likewise.
8857 * runtime-po/en@boldquot.header: Likewise.
8858 * runtime-po/insert-header.sin: Likewise.
8859 * runtime-po/remove-potcdate.sin: Likewise.
8860 * runtime-po/Makevars: Likewise.
8861 * runtime-po/LINGUAS: Likewise.
8862 * runtime-po/de.po: Likewise; we will rely on the translation project
8863 to maintain this, so "bootstrap" should get it.
8864 * src/getarg.c (PRINT_LOCALEDIR_OPTION): Let the C compiler determine
8865 its value.
8866 * src/main.c (main): Bind the bison-runtime domain, too.
8867
8868 2005-07-12 Bruno Haible <bruno@clisp.org>
8869
8870 * data/yacc.c: Include <libintl.h> when NLS is enabled.
8871 (YYI18N): Renamed from _. Use dgettext when NLS is enabled.
8872 * po/POTFILES.in: Remove autogenerated file src/parse-gram.c.
8873 * runtime-po: New directory.
8874 * runtime-po/Makefile.in.in: New file, copied from po/, with modified
8875 $(DOMAIN).pot-update rule, so that old messages are never dropped.
8876 * runtime-po/Rules-quot: New file, copied from po/.
8877 * runtime-po/quot.sed: Likewise.
8878 * runtime-po/boldquot.sed: Likewise.
8879 * runtime-po/en@quot.header: Likewise.
8880 * runtime-po/en@boldquot.header: Likewise.
8881 * runtime-po/insert-header.sin: Likewise.
8882 * runtime-po/remove-potcdate.sin: Likewise.
8883 * runtime-po/Makevars: New file.
8884 * runtime-po/POTFILES.in: New file.
8885 * runtime-po/LINGUAS: New file.
8886 * runtime-po/bison-runtime.pot: New file.
8887 * runtime-po/de.po: New file.
8888 * m4/bison.m4: New file.
8889 * Makefile.am (SUBDIRS): Add runtime-po.
8890 (aclocaldir, aclocal_DATA): New variables.
8891 * configure.ac: Add AC_CONFIG_FILES of runtime-po/Makefile.in.
8892 Define aclocaldir.
8893 * src/getargs.c (usage): Document --print-localedir option.
8894 (PRINT_LOCALEDIR_OPTION): New enum item.
8895 (long_options): Add --print-localedir option.
8896 (getargs): Handle --print-localedir option.
8897 * doc/bison.texinfo (Bison Parser): Remove paragraph about _().
8898 (Internationalization): New section.
8899
8900 2005-07-12 Akim Demaille <akim@epita.fr>
8901
8902 * src/symtab.h, src/symtab.c (symbol_print): Swap the arguments,
8903 for consistency with the rest of the code.
8904 * src/symlist.h, src/symlist.c (symbol_list_print): Ditto.
8905 Add separators.
8906
8907 2005-07-12 Akim Demaille <akim@epita.fr>
8908
8909 * src/parse-gram.y: Use %printer instead of YYPRINT.
8910
8911 2005-07-12 Akim Demaille <akim@epita.fr>
8912
8913 * src/symtab.h, src/symtab.c (symbol_print): New.
8914 * src/symlist.h, src/symlist.c (symbol_list_print): New.
8915 * src/symlist.c (symbol_list_n_type_name_get): Report the culprit.
8916
8917 2005-07-12 Akim Demaille <akim@epita.fr>
8918
8919 * data/glr.c (b4_syncline): Fix (swap) the definitions of
8920 b4_at_dollar and b4_dollar_dollar.
8921
8922 2005-07-11 Paul Eggert <eggert@cs.ucla.edu>
8923
8924 * doc/bison.texinfo (Mystery Conflicts): Add reference to DeRemer
8925 and Pennello's paper.
8926
8927 2005-07-09 Paul Eggert <eggert@cs.ucla.edu>
8928
8929 * data/yacc.c (yyparse): Undo previous patch. Instead,
8930 set yylsp[0] and yyvsp[0] only if the initial action
8931 sets yylloc and yylval, respectively.
8932
8933 * data/yacc.c (yyparse): In the initial action, set
8934 yylsp[0] and yyvsp[0] rather than yylloc and yylval.
8935 This avoids the use of undefined variables if the initial
8936 action does not set yylloc and/or yylval.
8937
8938 2005-07-07 Paul Eggert <eggert@cs.ucla.edu>
8939
8940 * examples/calc++/calc++-driver.cc, examples/calc++/calc++-driver.hh:
8941 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc:
8942 Remove from CVS. These files are automatically generated.
8943 * examples/extexi: Clarify that this file is now part of Bison,
8944 not GNU M4, and that it works with any POSIX-compatible Awk.
8945 * examples/calc++/Makefile.am (run_extexi): Remove; not used.
8946 ($(calc_extracted)): Renamed from $(calc_sources_extracted),
8947 so that we also get calc++-parser.yy. Geneate it.
8948 Use $(AWK), not gawk, since any conforming Awk will do.
8949 Put comment before action, since older 'make' can't handle comment
8950 in action.
8951 $(BUILT_SOURCES): List all built sources, not just some of them.
8952 $(MAINTAINERCLEANFILES): Remove *.stamp, and all built sources.
8953 $($(srcdir)/calc++-parser.stamp): Work even if POSIXLY_CORRECT.
8954 $($(calc_sources_generated)): Remove unnecessary test for existence
8955 of target. (This had a shell syntax error anyway; a stray "x".)
8956 (calc_extracted): List $(srcdir)/calc++-parser.yy, not
8957 calc++-parser.yy.
8958 * examples/.cvsignore, examples/calc++/.cvsignore: New files.
8959
8960 * bootstrap (gnulib_modules): Add gettext, now that it's no longer
8961 implied by the other modules.
8962
8963 2005-07-06 Akim Demaille <akim@epita.fr>
8964
8965 Bind examples/calc++ to the package.
8966 * examples/calc++/Makefile: Remove, replaced by...
8967 * examples/calc++/Makefile.am: ... this new file.
8968 * examples/calc++/test: Remove input.
8969 * examples/calc++/compile: Remove.
8970 * examples/Makefile.am: New.
8971 * configure.ac, Makefile.am: Adjust.
8972 * doc/Makefile.am (clean-local): New, for more recent texi2dvis.
8973
8974 2005-07-05 Paul Eggert <eggert@cs.ucla.edu>
8975
8976 * data/glr.c (yyFail): Drastically simplify; since the format argument
8977 never had any % directives, we can simply pass it to yyerror.
8978 (yyparse): Use "t a; a=b;" rather than "t a = b;" when a will
8979 be modified later, as that is the usual style in glr.c.
8980 Problems reported by Paul Hilfinger.
8981
8982 Rewrite GLR parser to catch more buffer overrun, storage exhaustion,
8983 and size overflow errors.
8984 * data/glr.c: Include <stdio.h> etc. after user prolog, not before,
8985 in case the user prolog sets feature-test macros like _GNU_SOURCE.
8986 (YYSIZEMAX): New macro.
8987 (yystpcpy): New function, taken from yacc.c.
8988 (struct yyGLRStack.yyspaceLeft): Now size_t, not int.
8989 (yyinitGLRStack, yyfreeGLRstack): Remove unnecessary forward decls,
8990 so that we don't have to maintain their signatures.
8991 (yyFail): Check for buffer overflow, by using vsnprintf rather
8992 than vsprintf. Allocate a bigger buffer if possible.
8993 Report an error if buffer allocation fails.
8994 (yyStackOverflow): New function.
8995 (yyinitStateSet, yyinitGLRStack): Return a boolean indicating whether
8996 the initialization was successful. It might fail if storage was
8997 exhausted.
8998 (yyexpandGLRStack): Add more checks for storage allocation failure.
8999 Use yyStackOverflow to report failures.
9000 (yymarkStackDeleted, yyglrShift, yyglrShiftDefer, yydoAction):
9001 (yysplitStack, yyprocessOneStack, yyparse, yypstack):
9002 Don't assume stack number fits in int.
9003 (yysplitStack): Check for storage allocation failure.
9004 (yysplitStack, yyprocessOneStack): Add pure_formals, so that we
9005 can print diagnostics on storage allocation failure. All callers
9006 changed.
9007 (yyresolveValue): Use yybool for boolean.
9008 (yyreportSyntaxError): Check for size-calculation overflow.
9009 This code is taken from yacc.c.
9010 (yyparse): Check for storage allocation errors when allocating
9011 the initial stack.
9012
9013 2005-07-05 Akim Demaille <akim@epita.fr>
9014
9015 Extract calc++ from the documentation.
9016 * doc/bison.texinfo (Calc++): Add the extraction marks.
9017 * examples/extexi: New, from the aborted GNU Programming 2E.
9018 Separate the different paragraph of a file with empty lines.
9019 * examples/Makefile: Use it to extract the whole calc++ example.
9020
9021 2005-06-24 Akim Demaille <akim@epita.fr>
9022
9023 * doc/bison.texinfo (C++ Parser Interface): Use defcv to define
9024 class typedefs.
9025
9026 2005-06-22 Akim Demaille <akim@epita.fr>
9027
9028 * doc/bison.texinfo (C++ Language Interface): First stab.
9029 (C++ Parsers): Remove.
9030
9031 2005-06-22 Akim Demaille <akim@epita.fr>
9032
9033 * data/lalr1.cc (yylex_): Honor %lex-param.
9034
9035 2005-06-22 Akim Demaille <akim@epita.fr>
9036
9037 Start a set of simple examples.
9038 * examples/calc++/Makefile, examples/calc++/calc++-driver.cc,
9039 * examples/calc++/calc++-driver.hh,
9040 * examples/calc++/calc++-parser.yy,
9041 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc,
9042 * examples/calc++/compile, examples/calc++/test: New.
9043
9044 2005-06-09 Paul Eggert <eggert@cs.ucla.edu>
9045
9046 * data/yacc.c (malloc, free) [defined __cplusplus]: Wrap inside
9047 extern "C" {}. This fixes a problem reported by Paul Hilfinger,
9048 which stems from the 2005-05-27 patch.
9049
9050 2005-06-06 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
9051
9052 * data/glr.c: Modify treatment of unused parameters to permit use
9053 of g++ (which doesn't allow __attribute__ ((unused)) for parameters).
9054
9055 2005-05-30 Paul Eggert <eggert@cs.ucla.edu>
9056
9057 Fix infringement on user name space reported by Janos Zoltan Szabo.
9058 * data/yacc.c (yyparse): strlen -> yystrlen.
9059
9060 2005-05-30 Akim Demaille <akim@epita.fr>
9061
9062 * data/lalr1.cc (_): New.
9063 Translate the various messages.
9064
9065 2005-05-27 Paul Eggert <eggert@cs.ucla.edu>
9066
9067 Fix infringement on user name space reported by Bruno Haible.
9068 * data/yacc.c (YYSIZE_T): Define first, so that later decls can use it.
9069 Prefer GCC's __SIZE_TYPE__ if available, so that we don't infringe on
9070 the user's name space.
9071 (alloca): Include <stdlib.h> to get it, if it's not built in.
9072 (YYMALLOC, YYFREE): Define only if needed.
9073 (malloc, free): Declare, but only if needed, as this infringes on
9074 the user name space.
9075
9076 2005-05-25 Paul Eggert <eggert@cs.ucla.edu>
9077
9078 Fix BeOS, FreeBSD, MacOS porting problems reported by Bruno Haible.
9079 * lib/bitset.c (bitset_print): Don't assume size_t can be printed
9080 with %d format.
9081 * lib/ebitset.c (min, max): Undef before defining.
9082 * lib/vbitset.c (min, max): Likewise.
9083 * lib/subpipe.c (create_subpipe): Save local variables in case
9084 vfork clobbers them.
9085
9086 2005-05-24 Bruno Haible <bruno@clisp.org>
9087
9088 * tests/synclines.at (AT_SYNCLINES_COMPILE): Add support for the
9089 error message syntax used by gcc-4.0.
9090
9091 2005-05-23 Paul Eggert <eggert@cs.ucla.edu>
9092
9093 * README: Mention m4 1.4.3. Remove obsolete advice about
9094 Sun Forte Developer 6 update 2, VMS, and MS-DOS.
9095
9096 * bootstrap: Remove workaround for problem I encountered with
9097 gettext 0.14.1; it seems to be fixed now.
9098
9099 2005-05-22 Paul Eggert <eggert@cs.ucla.edu>
9100
9101 * NEWS: Version 2.0a.
9102
9103 * src/files.c: Include "stdio-safer.h"; this fixes a typo in
9104 the previous change.
9105
9106 Various maintainer cleanups.
9107 * .cvsignore: Add a.exe, a.out, b.out,, conf[0-9]*, confdefs*,
9108 conftest*, for benefit of CVS commands run at the same time as
9109 "configure". Add build-aux, since "bootstrap" now creates it and
9110 its subfiles.
9111 * Makefile.cfg (move_if_change): Remove.
9112 * Makefile.maint: Remove the update stuff; we now use "bootstrap".
9113 (ftp-gnu, www-gnu, move_if_change, local_updates, update):
9114 (po_repo, do-po-update, po-update, wget_files, get-targets):
9115 (config.guess-url_prefix, config.sub-url_prefix):
9116 (ansi2knr.c-url_prefix, texinfo.tex-url_prefix):
9117 (standards.texi-url_prefix, make-stds.texi-url_prefix, taget, url):
9118 ($(get-targets), cvs-files, automake_repo, wget-update, cvs-update):
9119 Remove.
9120 * configure.ac (AC_CONFIG_AUX_DIR): Change from config to build-aux;
9121 this is now the recommended name.
9122 * config/.cvsignore: Remove config.guess, config.rpath, config.sub,
9123 depcomp, install-sh, mdate-sh, missing, mkinstalldirs, texinfo.tex,
9124 ylwrap. These files now go into build-aux.
9125 * config/move-if-change: Remove.
9126 * config/prev-version.txt: Bump from 1.75 to 2.0.
9127
9128 * bootstrap: Add stdio-safer, unistd-safer modules.
9129 Remove m4/glibc2.m4 (introduced by latest gnulib, but
9130 we don't need it).
9131 * lib/.cvsignore: Add dup-safer.c, fd-safer.c,
9132 fopen-safer.c, stdio-safer.h, unistd-safer.h.
9133 * lib/subpipe.c: Include "unistd-safer.h".
9134 (create_subpipe): Make sure all the newly-created
9135 file descriptors are > 2, so that diagnostics don't
9136 get sent down them (which might cause Bison to hang, in theory).
9137 * m4/.cvsignore: Add stdio-safer.m4, unistd-safer.m4.
9138 * src/files.c (xfopen): Use fopen_safer, not fopen.
9139
9140 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Port
9141 yesterday's yacc.c fix.
9142
9143 2005-05-21 Paul Eggert <eggert@cs.ucla.edu>
9144
9145 * data/glr.c, data/lalr1.cc: Update copyright date.
9146
9147 Fix a destructor bug reported by Wolfgang Spraul in
9148 <http://lists.gnu.org/archive/html/bug-bison/2005-05/msg00042.html>.
9149 * data/yacc.c (yyabortlab): Don't call destructor, and
9150 don't set yychar to EMPTY.
9151 (yyoverflowlab): Don't call destructor.
9152 (yyreturn): Call destructor, if yychar is neither YYEOF nor YYEMPTY.
9153 * tests/calc.at (AT_CHECK_CALC): Expect one fewer output lines,
9154 since we no longer output the message "discarding lookahead token
9155 end of input ()".
9156
9157 2005-05-20 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
9158
9159 * data/glr.c (YY_SYMBOL_PRINT): Don't print newline at end to
9160 fix a small glitch in debugging output.
9161 (yyprocessOneStack, yyrecoverSyntaxError, yyparse): Print newline
9162 after YY_SYMBOL_PRINT where needed.
9163
9164 (struct yyGLRState): Add some comments.
9165 (struct yySemanticOption): Add some comments.
9166 (union yyGLRStackItem): Add comment.
9167
9168 (yymergeOptionSets): Correct this to properly perform the union,
9169 avoiding infinite reported by Michael Rosien.
9170 Update comment.
9171
9172 * tests/glr-regression.at: Add test for GLR merging error reported
9173 by M. Rosien.
9174
9175 2005-05-13 Paul Eggert <eggert@cs.ucla.edu>
9176
9177 * COPYING, ChangeLog, GNUmakefile, HACKING, Makefile.am,
9178 Makefile.cfg, Makefile.maint, NEWS, README, README-alpha,
9179 README-cvs, TODO, bootstrap, configure.ac, data/Makefile.am,
9180 data/README, data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c,
9181 data/m4sugar/m4sugar.m4, doc/Makefile.am, doc/bison.texinfo,
9182 doc/fdl.texi, doc/gpl.texi, doc/refcard.tex, lib/Makefile.am,
9183 lib/abitset.c, lib/abitset.h, lib/bbitset.h, lib/bitset.c,
9184 lib/bitset.h, lib/bitset_stats.c, lib/bitset_stats.h,
9185 lib/bitsetv-print.c, lib/bitsetv-print.h, lib/bitsetv.c,
9186 lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/get-errno.c,
9187 lib/get-errno.h, lib/lbitset.c, lib/lbitset.h, lib/libiberty.h,
9188 lib/main.c, lib/subpipe.c, lib/subpipe.h, lib/timevar.c,
9189 lib/timevar.def, lib/timevar.h, lib/vbitset.c, lib/vbitset.h,
9190 lib/yyerror.c, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4, m4/timevar.m4,
9191 m4/warning.m4, src/LR0.c, src/LR0.h, src/Makefile.am, src/assoc.c,
9192 src/assoc.h, src/closure.c, src/closure.h, src/complain.c,
9193 src/complain.h, src/conflicts.c, src/conflicts.h, src/derives.c,
9194 src/derives.h, src/files.c, src/files.h, src/getargs.c,
9195 src/getargs.h, src/gram.c, src/gram.h, src/lalr.c, src/lalr.h,
9196 src/location.c, src/location.h, src/main.c, src/muscle_tab.c,
9197 src/muscle_tab.h, src/nullable.c, src/nullable.h, src/output.c,
9198 src/output.h, src/parse-gram.c, src/parse-gram.h,
9199 src/parse-gram.y, src/print.c, src/print.h, src/print_graph.c,
9200 src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c,
9201 src/reduce.h, src/relation.c, src/relation.h, src/scan-gram.l,
9202 src/scan-skel.l, src/state.c, src/state.h, src/symlist.c,
9203 src/symlist.h, src/symtab.c, src/symtab.h, src/system.h,
9204 src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h,
9205 src/vcg.c, src/vcg.h, src/vcg_defaults.h, tests/Makefile.am,
9206 tests/actions.at, tests/c++.at, tests/calc.at, tests/conflicts.at,
9207 tests/cxx-type.at, tests/existing.at, tests/glr-regression.at,
9208 tests/headers.at, tests/input.at, tests/local.at, tests/output.at,
9209 tests/reduce.at, tests/regression.at, tests/sets.at,
9210 tests/synclines.at, tests/testsuite.at, tests/torture.at:
9211 Update FSF postal mail address.
9212
9213 2005-05-11 Paul Eggert <eggert@cs.ucla.edu>
9214
9215 * tests/local.at (AT_COMPILE_CXX): Treat LDFLAGS like AT_COMPILE does.
9216 Problem reported by Ralf Menzel.
9217
9218 2005-05-01 Paul Eggert <eggert@cs.ucla.edu>
9219
9220 * tests/actions.at: Test that stack overflow invokes destructors.
9221 From Marcus Holland-Moritz.
9222 * data/yacc.c (yyerrlab): Move the code that destroys the stack
9223 from here....
9224 (yyreturn): to here. That way, destructors are called properly
9225 even if the stack overflows, or the user calls YYACCEPT or
9226 YYABORT. Stack-overflow problem reported by Marcus Holland-Moritz.
9227 (yyoverflowlab): Destroy the lookahead.
9228
9229 2005-04-24 Paul Eggert <eggert@cs.ucla.edu>
9230
9231 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): Add more-descriptive comment.
9232
9233 2005-04-17 Paul Eggert <eggert@cs.ucla.edu>
9234
9235 * NEWS: Bison-generated C parsers no longer quote literal strings
9236 associated with tokens.
9237 * src/output.c (prepare_symbols): Don't escape strings,
9238 since users don't want to see C escapes.
9239 * tests/calc.at (AT_CHECK_CALC): Adjust to lack of quotes
9240 in diagnostics.
9241 * tests/input.at (Torturing the Scanner): Likewise.
9242 * tests/regression.at (Token definitions, Web2c Actions): Likewise.
9243
9244 2005-04-16 Paul Eggert <eggert@cs.ucla.edu>
9245
9246 * tests/torture.at (AT_INCREASE_DATA_SIZE): Skip the test if
9247 the data size is known to be too small and we can't increase it.
9248 This works around an HP-UX 11.00 glitch reported by Andrew Benham.
9249
9250 2005-04-15 Paul Eggert <eggert@cs.ucla.edu>
9251
9252 * src/parse-gram.y: Include quotearg.h.
9253 (string_as_id): Quote $1 before using it as a key, since the
9254 lexer no longer quotes it for us.
9255 (string_content): Don't strip quotes, since lexer no longer
9256 quotes it for us.
9257 * src/scan-gram.l: Include quotearg.h.
9258 ("\""): Omit quote.
9259 ("'"<SC_ESCAPED_CHARACTER>): Quote symbol before using it as
9260 a key, since the rest of the lexer doesn't quote it.
9261 * src/symtab.c (symbol_get): Don't quote symbol; caller does it now.
9262 * tests/regression.at (Token definitions): Check for backslashes
9263 in token strings.
9264
9265 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): New macro.
9266 (YYSIZE_T): Define to unsigned long int when using an older compiler.
9267 (yyparse): Revamp code to generate long syntax error message, to
9268 make it easier to translate, and to avoid problems with arithmetic
9269 overflow. Change "virtual memory" to "memory" in diagnostic, since
9270 we don't know whether the memory is virtual.
9271
9272 2005-04-13 Paul Eggert <eggert@cs.ucla.edu>
9273
9274 * NEWS: Bison-generated C parsers now use the _ macro to
9275 translate strings.
9276 * data/yacc.c (_) [!defined _]: New macro.
9277 All English strings wrapped inside this macro.
9278 * doc/bison.texinfo (Bison Parser): Document _.
9279 * po/POTFILES.in: Include src/parse-gram.c, since it now
9280 includes translateable strings that parse-gram.y doesn't.
9281
9282 2005-04-12 Paul Eggert <eggert@cs.ucla.edu>
9283
9284 * src/symtab.c (symbol_make_alias): Call symbol_type_set,
9285 reverting the 2004-10-11 change to this function.
9286 (symbol_check_alias_consistency): Don't call symbol_type_set
9287 if the type name is already correct.
9288 * tests/input.at (Typed symbol aliases): New test, from Tim Van Holder.
9289
9290 2005-03-25 Paul Eggert <eggert@cs.ucla.edu>
9291
9292 * tests/regression.at (Token definitions): Don't use a token named
9293 c, as that generates a "#define c ..." that runs afoul of buggy
9294 stdlib.h that uses the identifier c as a member of struct
9295 drand48_data. Problem reported by Horst Wente.
9296
9297 2005-03-21 Paul Eggert <eggert@cs.ucla.edu>
9298
9299 * bootstrap: Change translation URL from
9300 http://www2.iro.umontreal.ca/~gnutra/po/maint/bison/ to
9301 http://www.iro.umontreal.ca/translation/maint/bison/ to avoid
9302 redirection glitches. Problem reported by twlevo@xs4all.nl.
9303
9304 2005-03-20 Paul Eggert <eggert@cs.ucla.edu>
9305
9306 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Don't put options
9307 after operands; POSIX says this isn't portable for the c99 command.
9308
9309 2005-03-18 Paul Eggert <eggert@cs.ucla.edu>
9310
9311 * tests/glr-regression.at (glr-regr2a.y): Try to dump core
9312 immediately if a data overrun has occurred; this may help us track
9313 down what may be a spurious failure on MacOS.
9314
9315 2005-03-17 Paul Eggert <eggert@cs.ucla.edu>
9316
9317 Respond to problems reported by twlevo@xs4all.nl.
9318
9319 * bootstrap: Use "trap - 0" rather than the unportable "trap 0".
9320
9321 * src/vcg.h: Comment fix.
9322 * src/vcg_defaults.h: Parenthesize macro bodies to make them safe.
9323 (G_CMAX): Change to -1 instead of INT_MAX.
9324
9325 * data/yacc.c (yyparse): Omit spaces before #line.
9326
9327 2005-03-15 Paul Eggert <eggert@cs.ucla.edu>
9328
9329 * src/tables.c (state_number_to_vector_number): Put it inside an
9330 "#if 0", since it's not currently used. Problem reported by
9331 Roland McGrath.
9332
9333 2005-03-06 Paul Eggert <eggert@cs.ucla.edu>
9334
9335 * src/output.c (escaped_output): Renamed from
9336 escaped_file_name_output, since we now use it for symbol tags as
9337 well. All uses changed.
9338 (symbol_destructors_output, symbol_printers_output):
9339 Escape symbol tags too.
9340 Problem reported by Matyas Forstner in
9341 <http://lists.gnu.org/archive/html/bug-bison/2005-03/msg00009.html>.
9342
9343 * src/muscle_tab.c (muscle_code_grow): Don't quote numbers; it's
9344 not needed.
9345 * src/output.c (user_actions_output, token_definitions_output,
9346 symbol_destructors_output, symbol_printers_output): Likewise.
9347 * src/reader.c (prologue_augment): Likewise.
9348 * src/scan-gram.l (handle_action_dollar, handle_action_at): Likewise.
9349
9350 * src/vcg.c (output_edge): Don't quote linestyle arg.
9351 Problem reported by twlevo@xs4all.nl.
9352
9353 2005-02-28 Paul Eggert <eggert@cs.ucla.edu>
9354
9355 * doc/bison.texinfo (Semantic Tokens): Fix scoping problem in
9356 example, reported by Derek M Jones. Also, make the example even
9357 more outrageous, to better illustrate how bad the problem is.
9358
9359 2005-02-24 Paul Eggert <eggert@cs.ucla.edu>
9360
9361 * doc/bison.texinfo (Mfcalc Symtab): Correct the prototype for
9362 putsym. Typo reported by Sebastian Piping.
9363
9364 2005-02-23 Paul Eggert <eggert@cs.ucla.edu>
9365
9366 * doc/bison.texinfo (Language and Grammar): some -> same
9367 (Epilogue): int he -> in the
9368 Typos reported by Sebastian Piping via Justin Pence.
9369
9370 2005-02-07 Paul Eggert <eggert@cs.ucla.edu>
9371
9372 * tests/glr-regression.at (Improper handling of embedded actions
9373 and dollar(-N) in GLR parsers): Renamed from "Improper handling of
9374 embedded actions and $-N in GLR parsers", work around an Autoconf bug
9375 with dollar signs in test names.
9376 * tests/input.at (Invalid dollar-n): Renamed from "Invalid \$n",
9377 for a similar reason.
9378
9379 2005-01-28 Paul Eggert <eggert@cs.ucla.edu>
9380
9381 * src/vcg.c (output_graph): G_VIEW -> normal_view in case someone
9382 wants to redefine G_VIEW.
9383
9384 2005-01-27 Paul Eggert <eggert@cs.ucla.edu>
9385
9386 * src/vcg.c (get_view_str): Remove case for normal_view.
9387 Problem reported by twlevo@xs4all.nl.
9388
9389 2005-01-24 Paul Eggert <eggert@cs.ucla.edu>
9390
9391 * configure.ac (O0CFLAGS, O0CXXFLAGS): Fix quoting bug.
9392 Problem reported by twlevo@xs4all.nl.
9393
9394 * doc/bison.texinfo: Change @dircategory from "GNU programming
9395 tools" to "Software development". Requested by Richard Stallman
9396 via Karl Berry.
9397
9398 2005-01-23 Paul Eggert <eggert@cs.ucla.edu>
9399
9400 * tests/c++.at (AT_CHECK_DOXYGEN): Don't use options after operands.
9401 Problem reported by twlevo@xs4all.nl.
9402
9403 2005-01-21 Paul Eggert <eggert@cs.ucla.edu>
9404
9405 * data/yacc.c (YYCOPY, yystpcpy, yyparse): Remove "register"
9406 keyword; it's not needed with modern compilers, and it doesn't
9407 affect correctness with older compilers. Suggested by
9408 twlevo@xs4all.nl.
9409
9410 2005-01-17 Paul Eggert <eggert@cs.ucla.edu>
9411
9412 * data/glr.c (yyuserAction): Add "default: break;" case to pacify
9413 gcc -Wswitch-default.
9414 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
9415 * data/yacc.c (yyparse): Likewise.
9416
9417 2005-01-12 Paul Eggert <eggert@cs.ucla.edu>
9418
9419 * src/system.h (OUTPUT_EXT, TAB_EXT): Define only if not defined
9420 already. Let config.h define any nonstandard values.
9421
9422 2005-01-10 Paul Eggert <eggert@cs.ucla.edu>
9423
9424 * tests/calc.at (_AT_DATA_CALC_Y): Use alarm (100), not alarm (10),
9425 for the benefit of slower hosts. Problem reported by
9426 Nelson H. F. Beebe.
9427
9428 2005-01-07 Paul Eggert <eggert@cs.ucla.edu>
9429
9430 * data/yacc.c (yyparse): Pacify non-GCC compilers about yyerrorlab
9431 being defined and not used.
9432 * data/lalr1.cc (yyparse): Likewise.
9433 Use "if (false)" rather than "if (0)".
9434
9435 2005-01-05 Paul Eggert <eggert@cs.ucla.edu>
9436
9437 * TODO: Mention that we should allow NUL bytes in tokens.
9438
9439 2005-01-02 Paul Eggert <eggert@cs.ucla.edu>
9440
9441 * src/scan-skel.l (<<EOF>>): Don't close standard output.
9442 Problem reported by Hans Aberg.
9443
9444 2005-01-01 Paul Eggert <eggert@cs.ucla.edu>
9445
9446 * src/getargs.c (version): Happy new year; update overall
9447 program copyright date from 2004 to 2005.
9448
9449 * src/scan-skel.l ("@output ".*\n): Don't close standard output.
9450 Problem reported by Hans Aberg.
9451 * tests/output.at (AT_CHECK_OUTPUT): New arg SHELLIO.
9452 (Output file names.): Add a test for the case when standard output
9453 is closed.
9454
9455 2004-12-26 Paul Eggert <eggert@cs.ucla.edu>
9456
9457 * doc/bison.texinfo (@copying): Update FDL version number to 1.2,
9458 to fix an oversight in the Bison 2.0 manual.
9459
9460 2004-12-25 Paul Eggert <eggert@cs.ucla.edu>
9461
9462 * NEWS: Version 2.0. Reformat the existing news items since
9463 1.875, so that related items are grouped together.
9464 * configure.ac (AC_INIT): Bump version to 2.0.
9465 * src/parse-gram.c, src/parse-gram.h: Regenerate with 2.0.
9466
9467 * tests/torture.at (Exploding the Stack Size with Alloca): Set
9468 YYSTACK_USE_ALLOCA to 1 if __GNUC__ or alloca are defined;
9469 otherwise, we're not testing alloca. Unfortunately there's no
9470 simple way to consult HAVE_ALLOCA here.
9471
9472 * data/lalr1.cc (yydestruct_): Pacify unused variable warning
9473 for yymsg, too.
9474
9475 * src/LR0.c (new_itemsets): Use memset rather than zeroing by
9476 hand. This avoids a warning about comparing int to size_t when
9477 GCC warnings are enabled.
9478
9479 2004-12-22 Paul Eggert <eggert@cs.ucla.edu>
9480
9481 * NEWS: Bison-generated parsers no longer default to using the
9482 alloca function (when available) to extend the parser stack, due
9483 to widespread problems in unchecked stack-overflow detection.
9484 * data/glr.c (YYMAXDEPTH): Remove undef when zero. It's the user's
9485 responsibility to set it to a positive value. This lets the user
9486 specify a value that is not a preprocessor constant.
9487 * data/yacc.c (YYMAXDEPTH): Likewise.
9488 (YYSTACK_ALLOC): Define only if YYSTACK_USE_ALLOCA is nonzero.
9489 * doc/bison.texinfo (Stack Overflow): YYMAXDEPTH no longer needs
9490 to be a compile-time constant. However, explain the constraints on it.
9491 Also, explain the constraints on YYINITDEPTH.
9492 (Table of Symbols): Explain that alloca is no longer the default.
9493 Explain the user's responsibility if they define YYSTACK_USE_ALLOCA
9494 to 1.
9495
9496 * doc/bison.texinfo (Location Default Action): Mention that n must
9497 be zero when k is zero. Suggested by Frank Heckenbach.
9498
9499 2004-12-22 Akim Demaille <akim@epita.fr>
9500
9501 * data/lalr1.cc (parser::token_number_type, parser::rhs_number_type)
9502 (parser::state_type, parser::semantic_type, parser::location_type):
9503 Private, not public.
9504 (parser::parse): Return ints, not bool.
9505 Returning a bool introduces a problem: 0 corresponds to false, and
9506 it seems weird to return false on success. Returning true changes
9507 the conventions for yyparse.
9508 Alternatively we could return void and send an exception.
9509 There is no clear consensus (yet?).
9510 (state_stack, semantic_stack, location_stack): Rename as...
9511 (state_stack_type, semantic_stack_type, location_stack_type): these.
9512 Private, not public.
9513 * tests/c++.at: New.
9514 * tests/testsuite.at, tests/Makefile.am: Adjust.
9515
9516 2004-12-21 Akim Demaille <akim@epita.fr>
9517
9518 * data/lalr1.cc (parser::parse): Return a bool instead of an int.
9519
9520 2004-12-21 Akim Demaille <akim@epita.fr>
9521
9522 Don't impose std::string for filenames.
9523
9524 * data/lalr1.cc (b4_filename_type): New.
9525 (position::filename): Use it.
9526 (parser.hh): Move the inclusion of stack.hh and location.hh below
9527 the user code, so that needed headers for the filename type can be
9528 included first.
9529 Forward declare them before the user code.
9530 * tests/Makefile.am (check-local, installcheck-local): Pass
9531 TESTSUITEFLAGS to the TESTSUITE.
9532
9533 2004-12-20 Akim Demaille <akim@epita.fr>
9534
9535 Use more STL like names: my_class instead of MyClass.
9536
9537 * data/lalr1.cc (LocationStack, LocationType, RhsNumberType)
9538 (SemanticStack, SemanticType, StateStack, StateType)
9539 (TokenNumberType, Stack, Slice, Traits, Parser::location)
9540 (Parser::value): Rename as...
9541 (location_stack, location_type, rhs_number_type, semantic_stack)
9542 (semantic_type, state_stack, state_type, token_number_type, stack)
9543 (slice, traits, parser::yylloc, parser::yylval): these.
9544
9545 * tests/calc.at, tests/regression.at, tests/actions.at: Adjust.
9546
9547 2004-12-19 Paul Eggert <eggert@cs.ucla.edu>
9548
9549 * data/glr.c (YYLLOC_DEFAULT): Use GNU spacing conventions.
9550 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
9551
9552 2004-12-17 Paul Eggert <eggert@cs.ucla.edu>
9553
9554 Remove uses of 'short int' and 'unsigned short int'. This raises
9555 some arbitrary limits. It uses more memory but nowadays that's
9556 not much of an issue.
9557
9558 This change does not affect the generated parsers; that's a different
9559 task, as some users will want to conserve memory there.
9560
9561 Ideally we should use size_t to represent all object counts, and
9562 something like ptrdiff_t to represent signed differences of object
9563 counts; but that will require more code-cleanup than I have the
9564 time to do right now.
9565
9566 * src/LR0.c (allocate_itemsets, new_itemsets, save_reductions):
9567 Use size_t, not int or short int, to count objects.
9568 * src/closure.c (nritemset, closure): Likewise.
9569 * src/closure.h (nritemset, closure): Likewise.
9570 * src/nullable.c (nullable_compute): Likewise.
9571 * src/print.c (print_core): Likewise.
9572 * src/print_graph.c (print_core): Likewise.
9573 * src/state.c (state_compare, state_hash): Likewise.
9574 * src/state.h (struct state): Likewise.
9575 * src/tables.c (default_goto, goto_actions): Likewise.
9576
9577 * src/gram.h (rule_number, rule): Use int, not short int.
9578 * src/output.c (prepare_rules): Likewise.
9579 * src/state.h (state_number, STATE_NUMBER_MAXIMUM, transitions,
9580 errs, reductions): Likewise.
9581 * src/symtab.h (symbol_number, SYMBOL_NUMBER_MAXIMUM, struct symbol):
9582 Likewise.
9583 * src/tables.c (vector_number, tally, action_number,
9584 ACTION_NUMBER_MINIMUM): Likewise.
9585 * src/output.c (muscle_insert_short_int_table): Remove.
9586
9587 2004-12-17 Akim Demaille <akim@epita.fr>
9588
9589 * data/lalr1.cc: Extensive Doxygenation.
9590 (error_): Rename as...
9591 (error): this, since it is visible to the user.
9592 Adjust callers.
9593 (Parser::message): Now an automatic variable from...
9594 (Parser::yyreport_syntax_error_): here.
9595 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust to
9596 Parser::error.
9597 * tests/input.at: Escape $.
9598
9599 2004-12-16 Paul Eggert <eggert@cs.ucla.edu>
9600
9601 * data/glr.c (b4_lhs_value, b4_rhs_value, b4_rhs-location):
9602 Parenthesize rhs to avoid obscure problems with mistakes like
9603 "foo$$bar = foo$1bar;". Problem reported by twlevo at xs4all.
9604 * data/lalr1.cc (b4_lhs_value, b4_rhs_value, b4_lhs_location,
9605 b4_rhs_location): Likewise.
9606 * data/yacc.c (b4_lhs_value, b4_rhs_value, b4_lhs_location,
9607 b4_rhs_location): Likewise.
9608
9609 2004-12-16 Akim Demaille <akim@epita.fr>
9610
9611 * data/lalr1.cc (yyreport_syntax_error_): Catch up with glr.c and
9612 yacc.c: be sure to stay within yycheck_.
9613 * tests/actions.at: Re-enable C++ tests.
9614
9615 2004-12-16 Akim Demaille <akim@epita.fr>
9616
9617 * src/print_graph.c (print_graph): Remove layoutalgorithm uses for
9618 real.
9619
9620 2004-12-16 Akim Demaille <akim@epita.fr>
9621
9622 Use #define to handle the %name-prefix.
9623
9624 * data/glr.c, data/yacc.c: Comment changes.
9625 * data/lalr1.cc (yylex): Use #define to select the name of yylex,
9626 so that one can refer to yylex in the parser file, and have it
9627 renamed, as is the case with other skeletons.
9628
9629 2004-12-16 Akim Demaille <akim@epita.fr>
9630
9631 Move lalr1.cc internals into yy*.
9632
9633 * data/lalr1.cc (semantic_stack_, location_stack_, state_stack_)
9634 (semantic_stack_, location_stack_, pact_, pact_ninf_, defact_)
9635 (pgoto_, defgoto_, table_, table_ninf_, check_, stos_, r1_, r2_)
9636 (name_, rhs_, prhs_, rline_, token_number_, eof_, last_, nnts_)
9637 (empty_, final_, terror_, errcode_, ntokens_)
9638 (user_token_number_max_, undef_token_, n_, len_, state_, nerrs_)
9639 (looka_, ilooka_, error_range_, nerrs_):
9640 Rename as...
9641 (yysemantic_stack_, yylocation_stack_, yystate_stack_)
9642 (yysemantic_stack_, yylocation_stack_, yypact_, yypact_ninf_)
9643 (yydefact_, yypgoto_, yydefgoto_, yytable_, yytable_ninf_)
9644 (yycheck_, yystos_, yyr1_, yyr2_, yyname_, yyrhs_, yyprhs_)
9645 (yyrline_, yytoken_number_, yyeof_, yylast_, yynnts_, yyempty_)
9646 (yyfinal_, yyterror_, yyerrcode_, yyntokens_)
9647 (yyuser_token_number_max_, yyundef_token_, yyn_, yylen_, yystate_)
9648 (yynerrs_, yylooka_, yyilooka_, yyerror_range_, yynerrs_):
9649 these.
9650
9651 2004-12-15 Paul Eggert <eggert@cs.ucla.edu>
9652
9653 Fix some problems reported by twlevo at xs4all.
9654 * src/symtab.c (symbol_new): Report an error if the input grammar
9655 contains too many symbols. This is better than calling abort() later.
9656 * src/vcg.h (enum layoutalgorithm): Remove. All uses removed.
9657 (struct node, struct graph):
9658 Rename member expand to stretch. All uses changed.
9659 (struct graph): Remove member layoutalgorithm. All uses removed.
9660 * src/vcg.c (get_layoutalgorithm_str): Remove. All uses removed.
9661 * src/vcg_defaults.h (G_STRETCH): Renamed from G_EXPAND.
9662 All uses changed.
9663 (N_STRETCH): Rename from N_EXPAND. All uses changed.
9664
9665 2004-12-15 Akim Demaille <akim@epita.fr>
9666
9667 * data/lalr1.cc: Normalize /** \brief ... */ to ///.
9668 Add more Doxygen comments.
9669 (symprint_, stack_print_, reduce_print_, destruct_, pop)
9670 (report_syntax_error_, translate_): Rename as...
9671 (yysymprint_, yystack_print_, yyreduce_print_, yydestruct_)
9672 (yypop_, yyreport_syntax_error_, yytranslate_): this.
9673
9674 2004-12-15 Akim Demaille <akim@epita.fr>
9675
9676 * data/lalr1.cc (lex_): Rename as...
9677 (yylex_): this.
9678 Move the trace here.
9679 Take the %name-prefix into account.
9680 Reported by Alexandre Duret-Lutz.
9681
9682 2004-12-15 Akim Demaille <akim@epita.fr>
9683
9684 Simplify the C++ parser constructor.
9685
9686 * data/lalr1.cc (debug_): Rename as...
9687 (yydebug_): so that the parser's internals are always in the yy*
9688 pseudo namespace.
9689 Adjust uses.
9690 (b4_parse_param_decl): Remove the leading comma as it is now only
9691 called as unique argument list.
9692 (Parser::Parser): Remove the constructor accepting a location and
9693 an initial debugging level.
9694 Remove from the other ctor the argument for the debugging level.
9695 (debug_level_type, debug_level, set_debug_level): New.
9696
9697 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust
9698 constructor calls.
9699
9700 2004-12-15 Akim Demaille <akim@epita.fr>
9701
9702 Remove b4_root related material: failure experiment
9703 (which goal was to allow to derive from a class).
9704
9705 * data/lalr1.cc (b4_root, b4_param, b4_constructor): Remove
9706 definitions and uses.
9707
9708 2004-12-14 Paul Eggert <eggert@cs.ucla.edu>
9709
9710 * data/glr.c (struct yyGLRStack): yyerror_range now has 3 items,
9711 not 2, since it's not portable to subtract 1 from the start of an
9712 array. The new item 0 is never set or used. All uses changed.
9713
9714 (yyrecoverSyntaxError): Use YYLLOC_DEFAULT instead of assuming
9715 the default definition of YYLLOC_DEFAULT. Problem reported
9716 by Frank Heckenbach.
9717
9718 2004-12-12 Paul Eggert <eggert@cs.ucla.edu>
9719
9720 * data/glr.c (YYRHSLOC): Don't have two definitions, one for
9721 the normal case and one for the error case. Just use the
9722 first one uniformly. Problem reported by Frank Heckenbach.
9723 (YYLLOC_DEFAULT): Use the conventions of yacc.c, so we can
9724 use exactly the same macro in both places.
9725 (yyerror_range): Now of type yyGLRStackItem, not YYLTYPE,
9726 so that the normal-case YYRHSLOC works for the error case too.
9727 All uses changed.
9728 * data/yacc.c (YYRHSLOC): New macro, taken from glr.c.
9729 (YYLLOC_DEFAULT): Use the same macro as glr.c.
9730 * doc/bison.texinfo (Location Default Action): Don't claim that
9731 we have an array of locations. Use the same macro for both glr
9732 and lalr parsers. Mention YYRHSLOC. Mention what happens when
9733 the index is 0.
9734
9735 2004-12-10 Paul Eggert <eggert@cs.ucla.edu>
9736
9737 * HACKING: Update email addresses to send announcements to.
9738
9739 * configure.ac (AC_INIT): Bump version to 1.875f.
9740
9741 2004-12-10 Paul Eggert <eggert@cs.ucla.edu>
9742
9743 * NEWS: Version 1.875e.
9744 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875e.
9745
9746 * src/scan-skel.l: Include "complain.h", for "fatal".
9747
9748 * src/relation.h (relation_print, relation_digraph):
9749 Relation sizes are of type relation_node, not size_t (this is
9750 merely a doc fix, since the two types are equivalent).
9751 (relation_transpose): Relation sizes are of type relation_node,
9752 not int.
9753 * src/relation.c: Likewise.
9754 (top, infinity): Now of type relation_node, not int.
9755 (traverse, relation_transpose): Use relation_node, not int.
9756
9757 * data/glr.c (yyuserAction, yyrecoverSyntaxError): Mark args
9758 with ATTRIBUTE_UNUSED if they're not used, to avoid GCC warning.
9759 (yyparse): Remove unused local introduced in 2004-10-25 patch.
9760
9761 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): New arg
9762 specifying whether the test should be skipped. Use it tp
9763 specify that the [%defines %skeleton "lalr1.cc"] tests currently
9764 fail on some hosts, and should be skipped.
9765
9766 2004-12-08 Paul Eggert <eggert@cs.ucla.edu>
9767
9768 * src/system.h (CALLOC, MALLOC, REALLOC): Remove. All callers
9769 changed to use xcalloc, xnmalloc, xnrealloc, respectively,
9770 unless otherwise specified below.
9771
9772 * src/LR0.c (allocate_itemsets): Use xnmalloc, not xcalloc,
9773 to allocate kernel_base, kernel_items, kernel_size, since
9774 they needn't be initialized to 0.
9775 (allocate_storgae): Likewise, for shiftset, redset, shift_symbol.
9776 * src/closure.c (new_closure): Likewise, for itemset.
9777 * src/derives.c (derives_compute): Likewise, for delts, derives, q.
9778 * src/lalr.c (set_goto_map): Likewise, for temp_map.
9779 (initialize_F): Likewise, for reads, edge, reads[i], includes[i].
9780 (build_relations): Likewise for edge, states1, includes.
9781 * src/nullable.c (nullable_compute): Likewise, for squeue, relts.
9782 * src/reader.c (packgram): Likewise, for ritem, rules.
9783 * src/reduce.c (nonterminals_reduce): Likewise for nontermmap.
9784 * src/relation.c (relation_digraph): Likewise for VERTICES.
9785 (relation_transpose): Likewise for new_R, end_R.
9786 * src/symtab.c (symbols_token_translations_init): Likewise for
9787 token_translations.
9788 * src/tables.c (save_row): Likewise for froms, tos, conflict_tos.
9789 (token_actions): Likewise for yydefact, actrow, conflrow,
9790 conflict_list.
9791 (save_column): Likewise for froms[symno], tos[symno].
9792 (goto_actions): Likewise for state_count.
9793 (pack_table): Likewise for base, pos, check.
9794 (tables_generate): Likewise for width.
9795
9796 * src/LR0.c (set_states): Don't reuse kernel_size and kernel_base
9797 for initial core. Just have a separate core, so we needn't worry
9798 about whether kernel_size and kernel_base are initialized.
9799
9800 * src/LR0.c (shift_symbol, redset, shiftset, kernel_base,
9801 kernel_size, kernel_items): Remove unnecessary initialization.
9802 * src/conflicts.c (conflicts): Likewise.
9803 * src/derives.c (derives): Likewise.
9804 * src/muscle_tablc (muscle_insert): Likewise.
9805 * src/relation.c (relation_digraph): Likewise.
9806 * src/tables.c (froms, tos, conflict_tos, tally, width, actrow, order,
9807 conflrow, conflict_table, conflict_list, table, check):
9808 Likewise.
9809
9810 * src/closure.c (new_closure): Arg is of type unsigned int, not int.
9811 This is because all callers pass unsigned int.
9812 * src/closure.h (new_closure): Likewise.
9813
9814 * src/lalr.c (initialize_F): Initialize reads[i] in all cases.
9815 (build_relations): Initialize includes[i] in all cases.
9816 * src/reader.c (packgram): Always initialize rules[ruleno].prec
9817 and rules[ruleno].precsym. Initialize members in order.
9818 * src/relation.c (relation_transpose): Always initialize new_R[i]
9819 and end_R[i].
9820 * src/table.c (conflict_row): Initialize 0 at end of conflict_list.
9821
9822 * src/output.c (prepare_actions): Pass 0 instead of conflict_list[0];
9823 conflict_list[0] was always 0, but now it isn't initialized.
9824
9825 * src/table.c (table_grow): When conflict_table grew, the grown
9826 area wasn't cleared. Fix this.
9827
9828 * lib/.cvsignore: Add strdup.c, strdup.h.
9829 * m4/.cvsignore: Add strdup.m4.
9830
9831 2004-12-07 Paul Eggert <eggert@cs.ucla.edu>
9832
9833 * src/lalr.h (GOTO_NUMBER_MAXIMUM): New macro.
9834 * src/lalr.c (set_goto_map): Don't allow ngotos to equal
9835 GOTO_NUMBER_MAXIMUM, since we occasionally compute
9836 ngotos + 1 without checking for overflow.
9837 (build_relations): Use END_NODE, not -1, to denote end of edges.
9838 * src/lalr.c (set_goto_map, map_goto, initialize_F, add_loopback_edge,
9839 build_relations): Use goto_number, not int, for goto numbers.
9840 * src/tables.c (save_column, default_goto): Likewise.
9841
9842 2004-11-23 Akim Demaille <akim@epita.fr>
9843
9844 * data/lalr1.cc (YYSTYPE): Define it as is done for C, instead
9845 of #defining from yystype.
9846 Don't typedef yystype, C++ does not need it.
9847 This lets it possible to forward declare it as union.
9848
9849 2004-11-23 Paul Eggert <eggert@cs.ucla.edu>
9850
9851 * bootstrap (gnulib_modules): Add extensions.
9852 Problem reported by Jim Meyering.
9853
9854 2004-11-22 Paul Eggert <eggert@cs.ucla.edu>
9855
9856 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c,
9857 src/lalr.c, src/nullable.c, src/relation.c, src/scan-skel.l,
9858 src/system.h, src/tables.c: XFREE -> free, to accommodate
9859 recent change to gnulib xalloc.h.
9860 Problem reported by Jim Meyering.
9861
9862 2004-11-17 Akim Demaille <akim@epita.fr>
9863
9864 * data/lalr1.cc (symprint_): Use cdebug_ to avoid warnings.
9865
9866 2004-11-17 Akim Demaille <akim@epita.fr>,
9867 Alexandre Duret-Lutz <adl@gnu.org>
9868
9869 * data/lalr1.cc (Parser::yycdebug_): New, a pointer, to allow
9870 changes.
9871 (YYCDEBUG): Adjust.
9872 Use it instead of cdebug_.
9873 (Parser::debug_stream, Parser::set_debug_stream): New.
9874 (Parser::symprint_): Define cdebug_ for temporary backward
9875 compatibility.
9876 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use
9877 debug_stream ().
9878
9879 2004-11-17 Akim Demaille <akim@epita.fr>
9880
9881 * data/lalr1.cc (Parser:print_): Remove, use %printer instead.
9882 * tests/regression.at (_AT_DATA_DANCER_Y): Adjust.
9883 * tests/calc.at (_AT_DATA_CALC_Y): Ditto.
9884 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
9885
9886 2004-10-27 Paul Eggert <eggert@cs.ucla.edu>
9887
9888 * data/glr.c (yyloc_default): Remove; not used.
9889 Problem reported by Frank Heckenbach.
9890
9891 2004-10-25 Akim Demaille <akim@epita.fr>
9892
9893 * data/glr.c (YYRHSLOC): Move its definition next to its uses.
9894 Introduce another definition to address simple location arrays.
9895 (yyGLRStack): New member: yyerror_range.
9896 (yyrecoverSyntaxError, yyparse): Update it.
9897 (yyrecoverSyntaxError): Use it when shifting the error token to
9898 have an accurate range, equivalent to the one computed by both
9899 yacc.c and lalr1.cc.
9900 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Change its yylex so
9901 that column numbers start at column 0, as per GNU Coding
9902 Standards, the others tests, and the doc.
9903 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT_WITH_LOC):
9904 Adjust to the above change (first column is 0).
9905 And adjust the location of the "<error>", now covering the whole
9906 line.
9907
9908 2004-10-22 Akim Demaille <akim@epita.fr>
9909 and Paul Eggert <eggert@cs.ucla.edu>
9910
9911 Remove some arbitrary limits on goto numbers and relations.
9912 * src/lalr.c (goto_map, ngotos, from_state, to_state): Omit
9913 initial values, since they're never used.
9914 (set_goto_map): ngotos is now unsigned, so test for overflow
9915 by seeing whether it wraps around to zero.
9916 * src/lalr.h (goto_number): Now size_t, not short int.
9917 (GOTO_NUMBER_MAXIMUM): Remove.
9918 * src/relation.c (relation_print, traverse, relation_transpose):
9919 Check for END_NODE rather than looking at sign.
9920 * src/relation.h (END_NODE): New macro.
9921 (relation_node): Now size_t, not short int.
9922
9923 2004-10-22 Paul Eggert <eggert@cs.ucla.edu>
9924
9925 * doc/bison.texinfo (Language and Grammar): In example, "int" is a
9926 keyword, not an identifier. Problem reported by Baron Schwartz in
9927 <http://lists.gnu.org/archive/html/bug-bison/2004-10/msg00017.html>.
9928
9929 2004-10-11 Akim Demaille <akim@epita.fr>
9930
9931 * src/symtab.c (symbol_check_alias_consistency): Also check
9932 type names, destructors, and printers.
9933 Reported by Alexandre Duret-Lutz.
9934 Recode the handling of associativity and precedence in terms
9935 of symbol_precedence_set.
9936 Accept no redeclaration at all, not even equal to the previous
9937 value.
9938 (redeclaration): New.
9939 Use it to factor redeclaration complaints.
9940 (symbol_make_alias): Don't set the type of the alias, let
9941 symbol_check_alias_consistency do it as for other features.
9942 * src/symtab.h (symbol): Add new member prec_location, and
9943 type_location.
9944 * src/symtab.c (symbol_precedence_set, symbol_type_set): Set them.
9945 * tests/input.at (Incompatible Aliases): New.
9946
9947 2004-10-09 Paul Eggert <eggert@cs.ucla.edu>
9948
9949 .cvsignore fixes to accommodate gnulib changes,
9950 and the practice of naming build directories "_build".
9951 * .cvsignore: Add "_*". Sort.
9952 * lib/.cvsignore: Add getopt_.h, xalloc-die.c.
9953 * m4/.cvsignore: Add "*_gl.m4".
9954
9955 2004-10-06 Akim Demaille <akim@epita.fr>
9956
9957 * src/parse-gram.y (add_param): Fix the truncation of trailing
9958 spaces.
9959
9960 2004-10-05 Akim Demaille <akim@epita.fr>
9961
9962 In Bison 1.875's yacc.c, YYLLOC_DEFAULT was called regardless
9963 whether the reducion was empty or not. This leaves room to
9964 improve the use of YYLLOC_DEFAULT in such a case.
9965 lalr1.cc is still experimental, so changing this is acceptable.
9966 And finally, there are probably not many users who changed the
9967 handling of locations in GLR, so changing is admissible too.
9968
9969 * data/glr.c, data/lalr1.cc, data/yacc.c (YYLLOC_DEFAULT): On an
9970 empty reduction, set @$ to an empty location ending the previously
9971 stacked symbol.
9972 Adjust uses to make sure the code is triggered on empty
9973 reductions.
9974 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust the
9975 expected output: empty reductions have empty locations.
9976
9977 2004-09-29 Akim Demaille <akim@epita.fr>
9978
9979 * data/lalr1.cc: Move towards a more standard C++ coding style
9980 for templates: Class < T > -> Class<T>.
9981
9982 2004-09-29 Akim Demaille <akim@epita.fr>
9983
9984 * data/lalr1.cc: Reinstall the former ctor, for sake of
9985 compatibility, but warn it will be removed.
9986 Move towards a more standard C++ coding style (i.e., type *var ->
9987 type* var).
9988
9989 2004-09-27 Paul Eggert <eggert@cs.ucla.edu>
9990
9991 * src/parse-gram.y (add_param): Rewrite to avoid strchr,
9992 since it's less likely to work if NULs are involved in the future.
9993
9994 2004-09-27 Akim Demaille <akim@epita.fr>
9995
9996 * data/yacc.c (YY_LOCATION_PRINT): Fix its default declaration.
9997
9998 2004-09-27 Akim Demaille <akim@epita.fr>
9999
10000 * data/lalr1.cc (b4_parse_param_decl_1): New.
10001 (b4_parse_param_decl): Use it to have different names between attribute
10002 and argument names.
10003 (b4_cc_constructor_call): Likewise.
10004
10005 2004-09-24 Akim Demaille <akim@epita.fr>
10006
10007 * src/parse-gram.y (add_param): Strip the leading and trailing
10008 blanks from a formal argument declaration.
10009 (YY_LOCATION_PRINT): New.
10010
10011 2004-09-24 Akim Demaille <akim@epita.fr>
10012
10013 * data/c.m4 (b4_yysymprint_generate): Move the YYINPUT invocation
10014 after the location.
10015
10016 2004-09-24 Akim Demaille <akim@epita.fr>
10017
10018 * doc/bison.texinfo (Table of Symbols): Sort.
10019
10020 2004-09-21 Akim Demaille <akim@epita.fr>
10021
10022 * data/yacc.c, data/glr.c (b4_at_dollar, b4_dollar_dollar): Remove
10023 the useless parentheses.
10024 Suggested by Paul Eggert.
10025
10026 2004-09-20 Akim Demaille <akim@epita.fr>
10027
10028 Let the initial-action act on the look-ahead, and use it for the
10029 "initial push" (corresponding to an hypothetical beginning-of-file).
10030 And let lalr1.cc honor %initial-action.
10031
10032 * doc/bison.texinfo (Initial Action Decl): Clarify, and add an
10033 example.
10034 * data/lalr1.cc (Parser::initlocation_): Remove, bad experiment.
10035 (Parser::Parser): Remove the ctor that used to initialize it.
10036 (Parser::parse): Like in the other skeletons, issue the "starting
10037 parse" message before any action.
10038 Honor %initial-action.
10039 Initialize the stacks with the lookahead.
10040 * data/yacc.c: Let $$ and @$ in %initial-action designate the
10041 look-ahead.
10042 Push them in the stacks.
10043 * tests/actions.at, tests/calc.at: Adjust the C++ ctor invocations.
10044
10045 2004-09-20 Akim Demaille <akim@epita.fr>
10046
10047 * doc/bison.texinfo (Initial Action Decl): New.
10048
10049 2004-09-20 Akim Demaille <akim@epita.fr>
10050
10051 * data/yacc.c (YY_LOCATION_PRINT): Use YYLTYPE_IS_TRIVIAL as a
10052 clearer criterion to define it.
10053 (parse): Initialize the initial location when YYLTYPE_IS_TRIVIAL.
10054 When reducing on an empty RHS, use the latest stacked location as
10055 location.
10056 yylloc is not always available.
10057 * data/glr.c: Likewise.
10058 Also, honor initial-actions.
10059
10060 2004-09-20 Akim Demaille <akim@epita.fr>
10061
10062 * data/yacc.c (YY_LOCATION_PRINT): New.
10063 Define when we know YYLTYPE's structure, i.e., when the default
10064 YYLLOC_DEFAULT is used.
10065 * data/c.m4 (b4_yysymprint_generate): Use it.
10066 * data/lalr1.cc (YYLLOC_DEFAULT): Stop relying on the initial
10067 value of the result.
10068 (error_start_): Replace with...
10069 (error_range_): this location array.
10070 This allows to replace code relying on the implementation of
10071 locations by portable code.
10072 * data/yacc.c (yylerrsp): Replace with...
10073 (yyerror_range): this.
10074 Every time a token is popped, update yyerror_range[0], to have an
10075 accurate location for the error token.
10076 * data/glr.c (YY_LOCATION_PRINT): New.
10077 (yyprocessOneStack): Fix an invocation of YY_SYMBOL_PRINT:
10078 deference a pointer.
10079 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): No longer
10080 report the location in %printers.
10081
10082 * src/scan-skel.l: Instead of abort, report error messages to ease
10083 understanding skeleton scanning failures.
10084
10085 2004-09-16 Akim Demaille <akim@epita.fr>
10086
10087 * data/lalr1.cc (Stack::Iterator, Stack::ConstIterator): Rename as...
10088 (iterator, const_iterator): these, to be more in the C++ spirit.
10089 Also, return reverse iterators so that when displaying the stack
10090 we display its bottom first.
10091 (Parser::stack_print_, Parser::reduce_print_): Match the messages
10092 from yacc.c.
10093 We should probably use vector here though.
10094
10095 2004-09-16 Akim Demaille <akim@epita.fr>
10096
10097 Have more complete shift traces.
10098
10099 * data/yacc.c, data/lalr1.c, data/glr.c: Use YY_SYMBOL_PRINT
10100 to report Shifts instead of ad hoc YYDPRINTF invocations,
10101 including for the error token.
10102 * data/lalr1.cc (symprint_): Output the location.
10103 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): In C++, don't
10104 output the location within the %printer.
10105 Activate GLR tests, at least to make sure they compile properly.
10106 They still don't pass though.
10107 * tests/calc.at: Adjust expect verbose output, since now "Entering
10108 state..." is on a different line than the "Shifting" message.
10109
10110 2004-09-08 Akim Demaille <akim@epita.fr>
10111
10112 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Move the
10113 Bison directive from the Bison file to the invocation of this
10114 macro, so that these directives are passed to
10115 AT_BISON_OPTION_PUSHDEFS to get correct help macros.
10116 Use these helping macros (e.g., AT_LOC, AT_VAL and so forth).
10117 Move the AT_SETUP/AT_CLEANUP outside, to report as test title
10118 the extra Bison directives instead of the whole series.
10119 Change the grammar so that there are recoverable errors, and
10120 unrecoverable errors. Now we can have the parser give up before
10121 consuming the whole input. As a result we now can observe that
10122 the lookahead is freed when needed.
10123 Change the parser source to parse argv[1] instead of a hard coded
10124 string.
10125 Simplify yylex, and give a value and location to EOF.
10126 Simplify some invocations of AT_CHECK_PRINTER_AND_DESTRUCTOR that
10127 passed directives already coded in the file.
10128 Add some tests to check the location of "error".
10129 For some tests, the C++ parser is correct, and not yacc.c.
10130 For other tests, they provide different, but unsatisfying, values,
10131 so keep the C++ value so that at least one parser is "correct"
10132 according to the test suite.
10133 (Actions after errors): Remove, this is subsumed by the
10134 AT_CHECK_PRINTER_AND_DESTRUCTOR series.
10135
10136 2004-09-06 Akim Demaille <akim@epita.fr>
10137
10138 * data/lalr1.cc: Adjust the indentation of the labels.
10139 (Parser::pop): New.
10140 Use it.
10141
10142 2004-09-06 Akim Demaille <akim@epita.fr>
10143
10144 * data/yacc.cc, data/glr.cc (yydestruct): Accept an additional
10145 argument, an informative message.
10146 Call YY_SYMBOL_PRINT.
10147 Adjust all callers: integrate the associated YY_SYMBOL_PRINT.
10148 * data/lalr1.cc (destruct_): Likewise.
10149 In addition, no longer depend on b4_yysymprint_generate and
10150 b4_yydestruct_generate to generate these functions, do it "by
10151 hand".
10152
10153 2004-09-03 Akim Demaille <akim@epita.fr>
10154
10155 * data/glr.c, data/lalr1.cc, data/yacc.c: When YYABORT was
10156 invoked, yydestruct the lookahead.
10157 * tests/calc.at (Calculator $1): Update the expected lengths of
10158 traces: there is an added line for the discarded lookahead.
10159 * doc/bison.texinfo (Destructor Decl): Some rewording.
10160 Define "discarded" symbols.
10161
10162 2004-09-02 Akim Demaille <akim@epita.fr>
10163
10164 * data/lalr1.cc (translate_, destruct_): No reason to be static.
10165
10166 2004-09-02 Akim Demaille <akim@epita.fr>
10167
10168 * data/glr.c, yacc.c (YYDSYMPRINT): Remove, not used.
10169 (YYDSYMPRINTF): Rename as...
10170 (YY_SYMBOL_PRINT): this.
10171 * data/lalr1.cc (YY_SYMBOL_PRINT): New, modeled after the previous
10172 two.
10173 Use it instead of direct symprint_ calls.
10174 (yybackup): Tweak the "Now at end of input" case to match yacc.c's
10175 one.
10176
10177 2004-09-02 Akim Demaille <akim@epita.fr>
10178
10179 * data/lalr1.cc (b4_yysymprint_generate): New.
10180 (symprint_): New member function, defined when YYDEBUG.
10181 Use it consistently instead of token/nterm debugging output by
10182 hand.
10183 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust
10184 %printer calls to use cdebug_ when using lalr1.cc.
10185
10186 2004-08-30 Florian Krohm <florian@edamail.fishkill.ibm.com>
10187
10188 * data/glr.c: Guard the declarations of yypstack and yypdumpstack
10189 with #ifdef YYDEBUG.
10190
10191 2004-08-26 Akim Demaille <akim@epita.fr>
10192
10193 * doc/bison.texinfo (Implementing Loops): Rename as...
10194 (Implementing Gotos/Loops): this.
10195
10196 2004-08-13 Paul Eggert <eggert@cs.ucla.edu>
10197
10198 Adjust to latest gnulib.
10199 * bootstrap (gnulib_modules): Add xalloc-die.
10200 Set LC_ALL=C so that file names sort consistently.
10201 Prefer the gnulib copies of gettext.m4, glibc21.m4,
10202 inttypes_h.m4, lib-ld.m4, lib-prefix.m4, po.m4, stdint_h.m4,
10203 uintmax_t.m4, ulonglong.m4.
10204 (intl_files_to_remove): Add gettext.m4, lib-ld.m4, lib-prefix.m4,
10205 po.m4 since we are now using _gl.m4 instead.
10206
10207 2004-08-10 Florian Krohm <florian@edamail.fishkill.ibm.com>
10208
10209 * src/scan-action.l: Remove. Scanning of semantic actions is
10210 handled in scan-gram.l.
10211
10212 2004-08-07 Florian Krohm <florian@edamail.fishkill.ibm.com>
10213
10214 * src/scan-gram.l (handle_syncline): Use uniqstr_new not xstrdup.
10215
10216 * src/location.h (struct): The file member is a uniqstr.
10217 (equal_boundaries): Use UNIQSTR_EQ for comparison.
10218
10219 2004-07-22 Paul Eggert <eggert@cs.ucla.edu>
10220
10221 Fix bug with non-%union parsers that have printers or destructors,
10222 which led to a Bison core dump. Reported by Peter Fales in
10223 <http://lists.gnu.org/archive/html/bug-bison/2004-07/msg00014.html>.
10224
10225 * data/c.m4 (b4_symbol_actions): Don't assume %union was used.
10226 * data/lalr1.cc (yystype) [defined YYSTYPE]: Define to YYSTYPE,
10227 not to our own type.
10228 * src/output.c (symbol_destructors_output, symbol_printers_output):
10229 Don't assume %union.
10230 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR,
10231 AT_CHECK_PRINTER_AND_DESTRUCTOR): New argument
10232 UNION-FLAG. All callers changed.
10233 (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't assume %union.
10234 Use type char, not unsigned int, when declaring an array of char;
10235 this lets us remove a cast.
10236 (Printers and Destructors): Add non-%union test cases.
10237
10238 2004-06-21 Paul Eggert <eggert@cs.ucla.edu>
10239
10240 * doc/bison.texinfo: Minor editorial changes, mostly to the new
10241 GLR writeups. E.g., avoid frenchspacing and the future tense,
10242 change "lookahead" to "look-ahead", and change "wrt" to "with
10243 respect to".
10244
10245 2004-06-21 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
10246
10247 * doc/bison.texinfo (Merging GLR Parses, Compiler Requirements):
10248 New sections, split off from the GLR Parsers section. Put the new
10249 Simple GLR Parser near the start of the GLR section, for clarity.
10250 Rewrite connective text.
10251
10252 2004-06-21 Frank Heckenbach <frank@g-n-u.de>
10253
10254 * doc/bison.texinfo (Simple GLR Parsers): New section.
10255
10256 2004-06-21 Paul Eggert <eggert@cs.ucla.edu>
10257
10258 * NEWS, TODO, doc/bison.texinfo:
10259 Use "look-ahead" instead of "lookahead", to be consistent.
10260 * REFERENCES: Fix incorrect reference to DeRemer and Pennello,
10261 while we're fixing "look-ahead".
10262 * src/conflicts.c (shift_set): Renamed from shiftset.
10263 (look_ahead_set): Renamed from lookaheadset.
10264 * src/print.c: Likewise.
10265 * src/getargs.c (report_args): Add "look-ahead" as the new canonical
10266 name for "lookahead".
10267 (report_types, usage): Likewise.
10268 * src/getargs.h (report_look_ahead_tokens): Renamed from
10269 report_lookaheads.
10270 * src/lalr.c (compute_look_ahead_tokens): Renamed from
10271 compute_lookaheads.
10272 (state_look_ahead_tokens_count): Renamed from state_lookaheads_count.
10273 (look_ahead_tokens_print): Renamed from lookaheads_print.
10274 * src/state.c (state_rule_look_ahead_tokens_print): Renamed from
10275 state_rule_lookaheads_print.
10276 * src/state.h: Likewise.
10277 (reductions.look_ahead_tokens): Renamed from lookaheads.
10278 * tests/torture.at (AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR): Renamed from
10279 AT_DATA_LOOKAHEADS_GRAMMAR.
10280
10281 2004-06-03 Paul Eggert <eggert@cs.ucla.edu>
10282
10283 * README: Update location of patched M4 distribution.
10284
10285 2004-05-30 Albert Chin-A-Young <china@thewrittenword.com>
10286
10287 Don't assume the C++ compiler takes the same arguments as the C compiler
10288 (trivial change).
10289 * configure.ac (O0CXXFLAGS): New var.
10290 * tests/atlocal.in (CXXFLAGS): Use it.
10291
10292 2004-05-29 Paul Eggert <eggert@cs.ucla.edu>
10293
10294 Fix some "make check" problems with C++ reported by
10295 Albert Chin-A-Young for Tru64 C++ in this thread:
10296 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00049.html
10297
10298 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check for std::cerr.
10299 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
10300 Output to a .cc file for C++, not to a .c file.
10301 * tests/calc.at (AT_CHECK_CALC): Likewise.
10302 * tests/regression.at (AT_CHECK_DANCER): Likewise.
10303 * tests/local.at (AT_COMPILE_CXX): Default to OUTPUT.cc, not OUTPUT.c.
10304
10305 2004-05-28 Albert Chin-A-Young <china@thewrittenword.com>
10306
10307 * tests/calc.at, tests/actions.at: Workaround for SGI
10308 C++ compiler. (trivial change)
10309
10310 2004-05-27 Paul Eggert <eggert@cs.ucla.edu>
10311
10312 Spent a few hours checking out which prerequisite versions the
10313 current sources actually require. I went all the way back to
10314 Gettext 0.10.40, Automake 1.4, and Autoconf 2.57 and investigated
10315 a seemingly endless set of combinations of versions more recent
10316 than that. The bottom line is that the current sources require
10317 fairly recent versions of the build tools, and it'll be some work
10318 to change this.
10319 * configure.ac (AC_PREREQ): Increase from 2.58 to 2.59.
10320 (AM_INIT_AUTOMAKE): Increase from 1.7 to 1.8.
10321 (AM_GNU_GETTEXT_VERSION): Increase from 0.11.5 to 0.12.
10322 Add comments explaining why those particular versions are
10323 currently needed.
10324
10325 * src/parse-gram.y (lloc_default): Rewrite to avoid compiler bug
10326 in SGI MIPSpro 7.4.1m. Problem reported by Albert Chin-A-Young in
10327 <http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00037.html>.
10328
10329 * configure.ac (AC_PREREQ): Bump to 2.58, since 2.57 doesn't work
10330 (it fails with a Autoconf-without-aclocal-m4 diagnostic).
10331
10332 2004-05-26 Paul Eggert <eggert@cs.ucla.edu>
10333
10334 * configure.ac (AM_GNU_GETTEXT_VERSION): Lower it from 0.14.1 to
10335 0.11.5. Suggested by Bruno Haible.
10336 * bootstrap: Remove gettext version checking.
10337
10338 * doc/bison.texinfo (Decl Summary): Also mention that %union
10339 can depend on prerequisite types. Problem reported by Tim
10340 Van Holder.
10341
10342 2004-05-25 Paul Eggert <eggert@cs.ucla.edu>
10343
10344 * README: Mention GNU m4 1.4 bugs and Akim's patched version.
10345 * README-alpha: Don't tell people not to package this.
10346
10347 * bootstrap: Don't assume $(...) works; use `...` instead.
10348 Problem reported by Paul Hilfinger. Also, diagnose non-GNU
10349 gettext better.
10350
10351 * doc/bison.texinfo (Decl Summary, Bison Options): Clarify what's
10352 put into the -d output file, and mention what to do if YYSTYPE is
10353 defined as a macro.
10354
10355 2004-05-24 Paul Eggert <eggert@cs.ucla.edu>
10356
10357 Undo change made earlier today: it caused autopoint to not bring
10358 in ABOUT-NLS. Ouch. Instead, substitute our own diagnostic for
10359 autopoint's.
10360
10361 * bootstrap: Check that gettext version matches what's in
10362 configure.ac. Warn users to ignore robots.txt ERROR 404.
10363 * bootstrap: Undo today's earlier change (logged below).
10364 * configure.ac (AM_GNU_GETTEXT_VERSION): Likewise.
10365
10366 The gettext version checking is causing more trouble than it's
10367 curing; remove it. Problem reported by Paul Hilfinger.
10368
10369 * bootstrap: Issue a warning that one can expect a message
10370 'AM_GNU_GETTEXT is used, but not AM_GNU_GETTEXT_VERSION'.
10371 * configure.ac (AM_GNU_GETTEXT_VERSION): Remove.
10372
10373 2004-05-23 Paul Eggert <eggert@cs.ucla.edu>
10374
10375 Ensure that the C++ compiler used for testing actually works on a
10376 simple test program; if not, skip the C++-related tests. Problem
10377 reported by Vin Shelton in:
10378 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00026.html
10379
10380 * m4/cxx.m4: New file.
10381 * configure.ac (BISON_TEST_FOR_WORKING_CXX_COMPILER): Add.
10382 * tests/atlocal.in (BISON_CXX_WORKS): Add.
10383 * tests/local.at (AT_COMPILE_CXX): Use it.
10384
10385 2004-05-21 Paul Eggert <eggert@cs.ucla.edu>
10386
10387 * data/glr.c (yylloc): Output this macro even if locations are not
10388 being generated, as the GLR parser needs it even in that case.
10389 Problem reported by Troy A. Johnson
10390 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=195946>.
10391
10392 * configure.ac (AC_INIT): Update to 1.875e.
10393
10394 2004-05-21 Paul Eggert <eggert@cs.ucla.edu>
10395
10396 * NEWS: Version 1.875d.
10397 * configure.ac (AC_INIT): Likewise.
10398 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875d.
10399
10400 * configure.ac (--enable-gcc-warnings): Do not enable -Wshadow,
10401 -Wmissing-prototypes, or -Wstrict-prototypes for C++. The current
10402 lalr1.cc runs afoul of the first, and the last two are no longer
10403 supported by GCC 3.4.0.
10404 * README: Mention GNU m4 1.4 or later; mention m4 patches.
10405 * HACKING: Use ./bootstrap, not "make update" to import foreign files.
10406
10407 2004-05-06 Paul Eggert <eggert@cs.ucla.edu>
10408
10409 * src/muscle_tab.c (hash_muscle): Accept and return size_t, not
10410 unsigned int, for compatibility with latest gnulib hash module.
10411 * src/state.c (state_hash, state_hasher): Likewise.
10412 * src/symtab.c (hash_symbol, hash_symbol_hasher): Likewise.
10413 * src/uniqstr.c (hash_uniqstr): Likewise.
10414
10415 2004-05-03 Paul Eggert <eggert@cs.ucla.edu>
10416
10417 * NEWS: Unescaped newlines are no longer allowed in char & strings.
10418
10419 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER,
10420 SC_CHARACTER,SC_STRING>): Reject unescaped newlines in
10421 character and string literals.
10422 (unexpected_end): New function.
10423 (unexpected_eof): Use it.
10424 (unexpected_newline): New function.
10425 (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>): Coalesce duplicate
10426 actions.
10427
10428 * NEWS: Document %expect-rr.
10429
10430 * bootstrap (--gnulib-srcdir=*, --cvs-user=*):
10431 Fix typo by replacing $1 with $option.
10432 Remove more 'intl'-related files.
10433 Don't DEFUN AM_INTL_SUBDIR twice.
10434
10435 * lib/.cvsignore: Add strndup.h. Remove memchr.c, memcmp.c,
10436 memrchr.c, strcasecmp.c, strchr.c, strrchr.c, strspn.c, strtol.c,
10437 strtoul.c.
10438 * m4/.cvsignore: Add exitfail.m4, extensions.m4, gnulib.m4,
10439 hard-locale.m4, mbstate_t.m4, strerror_r.m4, strndup.m4,
10440 xstrndup.m4. Remove glibc21.m4, intdiv0.m4, inttypes-pri.m4,
10441 inttypes.m4, inttypes_h.m4, isc-posix.m4, lcmessage.m4,
10442 stdint_h.m4, uintmax_t.m4, ulonglong.m4.
10443 * src/.cvsignore: Add *.output.
10444
10445 * src/parse-gram.y: Put copyright notice inside %{ %} so it
10446 gets copied to the output file.
10447
10448 2004-04-28 Paul Eggert <eggert@twinsun.com>
10449
10450 Get files from the gnulib and po repositories, instead of relying
10451 on them being in our CVS. Upgrade to latest versions of gnulib
10452 and Automake.
10453
10454 * Makefile.am (SUBDIRS): Remove m4; Automake now does m4.
10455 * bootstrap: Bootstrap from gnulib and po repositories.
10456 Much of this code was stolen from GNU diff and GNU tar's bootstrap.
10457 * README-cvs: Document these changes. Remove version numbers from
10458 mentions of build tools, since they change so often. Mention Flex.
10459
10460 * configure.ac (AC_CONFIG_MACRO_DIR): Add, with m4 as arg.
10461 (gl_USE_SYSTEM_EXTENSIONS): Add.
10462 (AC_GNU_SOURCE, AC_AIX, AC_MINIX):
10463 Remove; no longer needed, as gl_USE_SYSTEM_EXTENSIONS
10464 does this for us.
10465 (AC_ISC_POSIX): Remove; we no longer support this
10466 ancient OS, as it gets in the way of latest Autoconf & gnulib.
10467 (AC_HEADER_STDC): Remove: we now assume C89 or better.
10468 (AC_CHECK_HEADERS_ONCE): Use instead of AC_CHECK_HEADERS.
10469 Do not check for C89 headers, except for locale.h which is used
10470 by the Yacc library and must port to K&R hosts.
10471 (AC_CHECK_FUNCS_ONCE): Use instead of AC_CHECK_FUNCS.
10472 Do not check for C89 functions, except for setlocale which is
10473 used by the Yacc library.
10474 (AC_CHECK_DECLS, AC_REPLACE_FUNCS): Remove; no longer needed.
10475 (gl_DIRNAME, gl_ERROR, gl_FUNC_ALLOCA, gl_FUNC_MEMCHR,
10476 gl_FUNC_MEMRCHR, gl_FUNC_STPCPY, gl_FUNC_STRNLEN, gl_FUNC_STRTOL,
10477 gl_GETOPT, gl_HASH, gl_MBSWIDTH, gl_OBSTACK, gl_QUOTE,
10478 gl_QUOTEARG, gl_XALLOC, jm_FUNC_GLIBC_UNLOCKED_IO, jm_FUNC_MALLOC,
10479 AM_GNU_GETTEXT): Remove; now done by:
10480 (GNULIB_AUTOCONF_SNIPPET): Add. "bootstrap" builds this for us.
10481 (AC_CONFIG_FILES): Remove m4/Makefile, as Automake now does this
10482 for us.
10483
10484 * lib/Makefile.am: Include gnulib.mk, built for us by "bootstrap".
10485 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES):
10486 Define to empty, as gnulib.mk will do the rest for us.
10487 ($(libbison_a_OBJECTS), stdbool.h): Remove, as gnulib.mk does this
10488 for us.
10489 (libbison_a_SOURCES): Define to $(lib_SOURCES) now.
10490 (lib_SOURCES): New symbol, containing only the non-gnulib libs.
10491
10492 * src/files.c: Include gnulib's xstrndup.h.
10493
10494 * src/system.h (MALLOC): Use xnmalloc, for better overflow checking.
10495 (REALLOC): Use xnrealloc, for likewise.
10496 (xstrndup, stpcpy): Remove decls, as gnulib does this for us now.
10497 (strnlen, memrchr): Remove decls; functions no longer used.
10498 Include <stpcpy.h>.
10499
10500 * config/depcomp, config/install-sh, lib/alloca.c, lib/argmatch.c,
10501 lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
10502 lib/error.c, lib/error.h, lib/getopt.c, lib/getopt.h,
10503 lib/getopt1.c, lib/gettext.h, lib/hash.c, lib/hash.h,
10504 lib/malloc.c, lib/mbswidth.c, lib/mbswidth.h, lib/memchr.c,
10505 lib/memcmp.c, lib/memrchr.c, lib/obstack.c, lib/obstack.h,
10506 lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h,
10507 lib/realloc.c, lib/stdbool_.h, lib/stpcpy.c, lib/strcasecmp.c,
10508 lib/strchr.c, lib/strncasecmp.c, lib/strnlen.c, lib/strrchr.c,
10509 lib/strspn.c, lib/strtol.c, lib/strtoul.c, lib/unlocked-io.h,
10510 lib/xalloc.h, lib/xmalloc.c, lib/xstrdup.c, lib/xstrndup.c,
10511 m4/Makefile.am, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
10512 m4/error.m4, m4/getopt.m4, m4/hash.m4, m4/malloc.m4,
10513 m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4, m4/memcmp.m4,
10514 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/prereq.m4,
10515 m4/quote.m4, m4/quotearg.m4, m4/realloc.m4, m4/stdbool.m4,
10516 m4/stpcpy.m4, m4/strnlen.m4, m4/strtol.m4, m4/strtoul.m4,
10517 m4/unlocked-io.m4, m4/xalloc.m4, po/LINGUAS, po/Makefile.in.in,
10518 po/Makevars, po/da.po, po/de.po, po/es.po, po/et.po, po/fr.po,
10519 po/hr.po, po/id.po, po/it.po, po/ja.po, po/ms.po, po/nl.po,
10520 po/pt_BR.po, po/ro.po, po/ru.po, po/sv.po, po/tr.po:
10521 Remove, as these files are now generated automatically
10522 by bootstrap or automake.
10523
10524 * po/ChangeLog: Remove: all but one entry was a duplicate
10525 of this file, and I moved that 2000-11-02 entry here.
10526
10527 * config/.cvsignore: Add Makefile, depcomp, install-sh.
10528 * lib/.cvsignore: Add alloca.c, alloca.h, alloca_.h, argmatch.c,
10529 argmatch.h, basename.c, dirname.c, dirname.h, error.c, error.h,
10530 exit.h, exitfail.c, exitfail.h, getopt.c, getopt.h, getopt1.c,
10531 getopt_int.h, gettext.h, gnulib.mk, hard-locale.c, hard-locale.h,
10532 hash.c, hash.h, malloc.c, mbswidth.c, mbswidth.h, memchr.c,
10533 memcmp.c, memrchr.c, obstack.c, obstack.h, quote.c, quote.h,
10534 quotearg.c, quotearg.h, realloc.c, stdbool_.h, stpcpy.c, stpcpy.h,
10535 strcasecmp.c, strchr.c, stripslash.c, strncasecmp.c, strndup.c,
10536 strnlen.c, strrchr.c, strspn.c, strtol.c, strtoul.c,
10537 unlocked-io.h, xalloc.h, xmalloc.c, xstrdup.c, xstrndup.c,
10538 xstrndup.h.
10539 * m4/.cvsignore: Remove Makefile, Makefile.in. Add alloca.m4,
10540 dirname.m4, dos.m4, error.m4, getopt.m4, hash.m4, mbrtowc.m4,
10541 mbswidth.m4, obstack.m4, onceonly.m4, quote.m4, quotearg.m4,
10542 stdbool.m4, stpcpy.m4, strnlen.m4, unlocked-io.m4, xalloc.m4.
10543 * po/.cvsignore: Add *.po, LINGUAS, Makefile.in.in, Makevars.
10544 * src/.cvsignore: Remove *_.c.
10545
10546
10547 * Makefile.maint (GZIP_ENV): Don't use --rsyncable if gzip doesn't
10548 support it. (The latest stable gzip doesn't.)
10549
10550 2004-04-27 Paul Eggert <eggert@twinsun.com>
10551
10552 * data/lalr1.cc (Parser::stos_) [! YYDEBUG]: Define even in this
10553 case, as stos_ is now used by destructors due to the 2004-02-09
10554 change.
10555
10556 Remove more K&R C support.
10557 * lib/libiberty.y (PARAMS): Remove. All uses removed.
10558 * lib/subpipe.c (errno): Remove decl.
10559 Include <stdlib.h> unconditionally.
10560 (EXIT_FAILURE): Remove macro.
10561 * src/complain.c (vfprintf, strerror): Remove.
10562 * src/system.h: Include limits.h, stdlib.h, string.h, locale.h
10563 unconditionally.
10564 (EXIT_FAILURE, EXIT_SUCCESS, setlocale): Remove defns.
10565 Use latest Autoconf recommendations for including inttypes.h, stdint.h.
10566 (strchr, strspn, memchr): Remove decls.
10567 * tests/calc.at (_AT_DATA_CALC_Y): Include stdlib.h, string.h
10568 unconditionally. Do not declare perror.
10569 * tests/conflicts.at (%nonassoc and eof): Include stdlib.h
10570 unconditionally.
10571
10572 * src/complain.c (_): Remove useless defn, as system.h defines this.
10573
10574 * lib/bitset.h (__INT_TO_PTR): Remove; workaround no longer needed
10575 with latest obstack.h.
10576 * lib/ebitset.c (ebitset_elt_alloc): Don't bother to cast args
10577 to procedure types, as obstack.h now does that for us.
10578 * lib/lbitset.c (lbitset_elt_alloc): Likewise.
10579
10580 * lib/subpipe.h [HAVE_SYS_TYPES_H]: Include <sys/types.h>,
10581 so that this include file can stand alone.
10582 * lib/subpipe.c: Do not include <sys/types.h>, as subpipe.h
10583 does this now. Include subpipe.h first after config.h, to
10584 test whether it can stand alone.
10585
10586 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't
10587 declare yyerror when using lalr.cc, as GCC 3.4.0 warns about the
10588 unused declaration.
10589
10590 * tests/synclines.at (%union synch line): Put a dummy member in
10591 the union, because empty unions aren't allowed in C. Caught
10592 by GCC 3.4.0.
10593
10594 2004-04-13 Jim Meyering <jim@meyering.net>
10595
10596 * src/conflicts.c (conflicts_print): Correct format string typo:
10597 use `%%' to produce literal `%'. (trivial change)
10598
10599 2004-03-30 Paul Eggert <eggert@twinsun.com>
10600
10601 * src/getargs.c (version): Update copyright year to 2004.
10602
10603 * data/c.m4 (b4_int_type): Use 'short int' rather than
10604 'short', and similarly for 'long', 'unsigned', etc.
10605 * data/glr.c (YYTRANSLATE, yyconfl, yySymbol, yyItemNum,
10606 yygetLRActions, yyprocessOneStack, yyrecoverSyntaxError,
10607 yy_yypstack, yydumpstack): Likewise.
10608 * data/lalr1.cc (user_token_number_max_, user_token_number_max_,
10609 translate_, seq_, [], pop, Slice, range_, operator+, operator+=):
10610 Likewise.
10611 * data/yacc.c (b4_int_type, yyss, YYSTACK_BYTES, yysigned_char,
10612 yy_stack_print, yyparse): Likewise.
10613 * doc/bison.texinfo (Prologue, Multiple Types): Likewise.
10614 * lib/bbitset.h (bitset_word, BITSET_WORD_BITS): Likewise.
10615 * lib/bitset.c (bitset_print): Likewise.
10616 * lib/bitset_stats.c (bitste_log_histogram_print): Likewise.
10617 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
10618 * lib/bitsetv.c (bitsetv_dump): Likewise.
10619 * lib/ebitset.c (EBITSET_ELT_BITS, ebitset_elt_alloc): Likewise.
10620 * lib/lbitset.c (LBITSET_ELT_BITS, lbitset_elt_alloc, debug_lbitset):
10621 Likewise.
10622 * src/LR0.c (allocate_itemsets): Likewise.
10623 * src/gram.h (rule_number, rule): Likewise.
10624 * src/lalr.h (goto_number): Likewise.
10625 * src/nullable.c (nullable_compute): Likewise.
10626 * src/output.c (prepare_rules): Likewise.
10627 * src/relation.c (relation_print, relation_digraph): Likewise.
10628 * src/relation.h (relation_node): Likewise.
10629 * src/state.h (state_number, transitions, errs, reductions,
10630 struct state): Likewise.
10631 * src/symtab.h (symbol_number, struct symbol): Likewise.
10632 * src/tables.c (vector_number, tally, action_number,
10633 default_goto, goto_actions): Likewise.
10634 * tests/existing.at (GNU Cim Grammar): Likewise.
10635 * tests/regression.at (Web2c Actions): Likewise.
10636
10637 * src/output.c (muscle_insert_short_int_table): Renamed from
10638 muscle_insert_short_table. All uses changed.
10639
10640 2004-03-25 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
10641
10642 * src/parse-gram.y: Define PERCENT_EXPECT_RR.
10643 (declaration): Replace expected_conflicts with expected_sr_conflicts.
10644 Add %expect-rr rule.
10645
10646 * src/scan-gram.l: Recognize %expect-rr.
10647
10648 * src/conflicts.h (expected_sr_conflicts): Rename from
10649 expected_conflicts.
10650 (expected_rr_conflicts): Declare.
10651
10652 * src/conflicts.c (expected_sr_conflicts): Rename from
10653 expected_conflicts.
10654 (expected_rr_conflicts): Define.
10655 (conflicts_print): Check r/r conflicts against expected_rr_conflicts
10656 for GLR parsers.
10657 Use expected_sr_conflicts in place of expected_conflicts.
10658 Warn if expected_rr_conflicts used in non-GLR parser.
10659
10660 * doc/bison.texinfo: Add documentation for %expect-rr.
10661
10662 2004-03-08 Paul Eggert <eggert@gnu.org>
10663
10664 Add support for hex token numbers. Suggested by Odd Arild Olsen in
10665 <http://lists.gnu.org/archive/html/bison-patches/2004-03/msg00000.html>.
10666
10667 * NEWS: Document hexadecimal tokens, no NUL bytes, %destructor
10668 in lalr1.cc.
10669 * doc/bison.texinfo (Token Decl): Add hexadecimal token numbers.
10670 * src/scan-gram.l (scan_integer): New function.
10671 ({int}): Use it.
10672 (0[xX][0-9abcdefABCDEF]+): New pattern, to support hex numbers.
10673 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>, \\x[0-9abcdefABCDEF]+,
10674 handle_action_dollar, handle_action_at, convert_ucn_to_byte):
10675 Say "long int", not "long", for uniformity with GNU style.
10676
10677 2004-02-25 Paul Eggert <eggert@twinsun.com>
10678
10679 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Ignore stdout from
10680 compilers. This fixes a problem with Intel's C++ compiler being
10681 chatty, reported by Guido Trentalancia in
10682 <http://lists.gnu.org/archive/html/bug-bison/2004-02/msg00030.html>.
10683
10684 2004-02-09 Alexandre Duret-Lutz <adl@gnu.org>
10685
10686 Support %destructor and merge error locations in lalr1.cc.
10687
10688 * data/lalr1.cc (b4_cxx_destruct_def): New macro.
10689 (Parser::stos_): Define unconditionally.
10690 (Parser::destruct_): New method. Generate its body with
10691 b4_yydestruct_generate.
10692 (Parser::error_start_): New attribute.
10693 (Parser::parse) <yyerrlab, yyerrlab1>: Call destruct_ on erroneous
10694 token which are discarded.
10695 (Parser::parse) <yyerrlab, yyerrorlab, yyerrlab1>: Update
10696 error_start_ when erroneous token are discarded.
10697 (Parser::parse) <yyerrlab1>: Compute the location of the error
10698 token so that it covers all the discarded tokens.
10699 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust so
10700 it can be called with `%skeleton "lalr1.cc"', and do that.
10701
10702 2004-02-02 Paul Eggert <eggert@twinsun.com>
10703
10704 * src/Makefile.am (AM_CPPFLAGS): New macro. It mentions
10705 $(top_srcdir)/lib and ../lib. This fixes a bug reported
10706 by Paul Hilfinger; the old INCLUDES value didn't mention ../lib.
10707 There's no need to mention top_builddir since Automake does that
10708 for us.
10709 (INCLUDES): Remove, as Automake says it's obsolescent.
10710 Contents migrated into AM_CPPFLAGS as described above.
10711 * lib/Makefile.am (INCLUDES): Remove; obsolescent.
10712
10713 2004-01-14 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
10714
10715 * data/glr.c (yytokenName): Bullet-proof against YYEMPTY token.
10716 (yyreportSyntaxError): Handle case where lookahead token is
10717 YYEMPTY.
10718
10719 2004-01-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10720
10721 * data/glr.c: Put casts on uses of YYREALLOC and YYMALLOC so that
10722 resulting parsers are compilable with C++.
10723
10724 2003-12-23 Paul Eggert <eggert@twinsun.com>
10725
10726 * config/depcomp, config/install-sh: Sync with Automake 1.8.
10727 * src/output.c (output_skeleton): Rename local var.
10728 * tests/input.at (Torturing the Scanner): Don't use \x0 or \0 in
10729 Bison tokens, as this runs afoul of the 2003-10-07 change that
10730 disallowed NUL bytes in character constants or string literals.
10731
10732 * tests/local.at: Require Autoconf 2.59's Autotest.
10733 * tests/testsuite.at: Don't include local.at, since we now assume
10734 Autoconf 2.59 or later. Autoconf 2.59 had some problems with
10735 including it.
10736 * tests/Makefile.am ($(TESTSUITE)): Remove warning about ignoring
10737 multiple inclusion warnings.
10738
10739 2003-12-02 Akim Demaille <akim@epita.fr>
10740
10741 * doc/bison.texinfo (How Can I Reset the Parser): More about start
10742 conditions.
10743 From Bruno Haible.
10744
10745 2003-11-18 Alexandre Duret-Lutz <adl@gnu.org>
10746
10747 * doc/bison.texinfo (Bison Options): Escape `@' in `$@'.
10748
10749 2003-10-07 Paul Eggert <eggert@twinsun.com>
10750
10751 * tests/Makefile.am (clean-local): Don't run 'testsuite --clean'
10752 if testsuite doesn't exist.
10753
10754 * doc/bison.texinfo (Symbols): NUL bytes are not allowed in string
10755 literals, unfortunately.
10756 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
10757 Complain about NUL bytes in character constants or string literals.
10758
10759 2003-10-05 Paul Eggert <eggert@twinsun.com>
10760
10761 * NEWS: Don't document %no-default-prec, as it's still
10762 too experimental.
10763 * doc/bison.texinfo: Document %no-default-prec only if
10764 the defaultprec flag is set. Normally it's not.
10765
10766 2003-10-04 Paul Eggert <eggert@twinsun.com>
10767
10768 * data/glr.c (b4_rhs_value, b4_rhs_location): Yield a
10769 non-modifiable lvalue, instead of a modifiable one.
10770 * doc/bison.texinfo (Actions): Document that $$ can
10771 be assigned to. Do not claim that $$ and $N are
10772 array element references: user code should not rely on this.
10773
10774 2003-10-01 Paul Eggert <eggert@twinsun.com>
10775
10776 * src/parse-gram.h (PERCENT_NO_DEFAULT_PREC): New token.
10777 (grammar_declaration): Use it.
10778 * src/scan-gram.l: New token %no-default-prec.
10779 * tests/conflicts.at: Revamp tests to use %no-default-prec.
10780 * NEWS, doc/bison.texinfo: Document the above.
10781
10782 2003-10-01 Akim Demaille <akim@epita.fr>
10783
10784 VCG no longer supports long_straight_phase.
10785
10786 * src/vcg.c, src/vcg.h: Remove the handling of long_straight_phase.
10787 * src/print_graph.c (print_graph): Adjust.
10788
10789 2003-09-30 Frank Heckenbach <frank@g-n-u.de>
10790 and Paul Eggert <eggert@twinsun.com>
10791
10792 * doc/bison.texinfo (Decl Summary, Contextual Precedence,
10793 Table of Symbols): Document %default-prec.
10794 * src/parse-gram.y (PERCENT_DEFAULT_PREC): New token.
10795 (grammar_declaration): Set default_prec on %default-prec.
10796 * src/scan-gram.l (%default-prec): New token.
10797 * src/reader.h (default_prec): New flag.
10798 * src/reader.c: Likewise.
10799 (packgram): Handle it.
10800 * tests/conflicts.at (%default-prec without %prec,
10801 %default-prec with %prec, %default-prec 1): New tests.
10802
10803 2003-09-30 Paul Eggert <eggert@twinsun.com>
10804
10805 * tests/testsuite.at: Include local.at, not input.at, fixing
10806 a typo in the 2003-08-25 patch.
10807
10808 2003-08-27 Akim Demaille <akim@epita.fr>
10809
10810 * data/lalr1.cc (yyparse) [__GNUC__]: "Use" yyerrorlab to pacify
10811 GCC warnings.
10812
10813 2003-08-26 Akim Demaille <akim@epita.fr>
10814
10815 * config/announce-gen (print_changelog_deltas): Neutralize "<#" as
10816 "<\#" to avoid magic from Gnus when posting parts of this script.
10817
10818 2003-08-26 Akim Demaille <akim@epita.fr>
10819
10820 * data/lalr1.cc (Parser::report_syntax_error_): New, extracted from
10821 (Parser::parse): here.
10822 Adjust: nerrs and errstatus is now replaced by...
10823 (Parser::nerrs_, Parser::errstatus_): New.
10824
10825 2003-08-25 Akim Demaille <akim@epita.fr>
10826
10827 * config/announce-gen, Makefile.cfg: New.
10828 * Makefile.am: Adjust.
10829 * GNUmakefile, Makefile.maint: Update from CVS Autoconf, but
10830 keeping local WGET and WGETFLAGS modifications from Paul Eggert.
10831
10832 2003-08-25 Akim Demaille <akim@epita.fr>
10833
10834 When reducing initial empty rules, Bison parser read an initial
10835 location that is not defined. This results in garbage, and that
10836 affects Bison's own parser. Therefore we need (i) to extend Bison
10837 to support a means to initialize this location, and (ii) to use
10838 this CVS Bison to fix CVS Bison's parser.
10839
10840 * src/reader.h, reader.c (epilogue_augment): Remove, replace
10841 with...
10842 * src/muscle_tab.h, src/muscle_tab.c (muscle_code_grow): this.
10843 * src/parse-gram.y: Adjust.
10844 (%initial-action): New.
10845 (%error-verbose): Since we require CVS Bison, there is no reason
10846 not to use it.
10847 * src/scan-gram.l: Adjust.
10848 * src/Makefile.am (YACC): New, to make sure we use our own parser.
10849 * data/yacc.c (yyparse): Use b4_initial_action.
10850
10851 2003-08-25 Akim Demaille <akim@epita.fr>
10852
10853 * doc/bison.texinfo: Don't promote stdout for error messages.
10854
10855 2003-08-25 Akim Demaille <akim@epita.fr>
10856
10857 * data/lalr1.cc (Parser::reduce_print_): Remove unused yyi.
10858 From Alexandre Duret-Lutz.
10859
10860 2003-08-25 Akim Demaille <akim@epita.fr>
10861
10862 Version 1.875c.
10863
10864 2003-08-25 Akim Demaille <akim@epita.fr>
10865
10866 * data/lalr1.cc (Parser::stack_print_, YY_STACK_PRINT): New.
10867 Use them.
10868
10869 2003-08-25 Akim Demaille <akim@epita.fr>
10870
10871 * data/lalr1.cc (Parser::reduce_print_): New.
10872 Use it.
10873
10874 2003-08-25 Akim Demaille <akim@epita.fr>
10875
10876 Have lalr1.cc catch with Paul Eggert's patch to fix the infinite
10877 error recovery loops. This patch is based on
10878 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00000.html>.
10879 Also, augment the similarity between lalr1.cc and yacc.c.
10880 Note: the locations of error recovery rules are not correct yet.
10881
10882 * data/lalr1.cc: Comment changes to augment the similarity between
10883 lalr1.cc and yacc.c.
10884 (YYERROR): Goto to yyerrorlab, not yyerrlab1.
10885 (yyerrlab1): Remove, but where it used to be (now the bottom part of
10886 yyerrlab), when hitting EOF, pop the whole stack here instead of
10887 merely falling thru the default error handling mechanism.
10888 (yyerrorlab): New label, with the old contents of YYERROR,
10889 plus the following change: pop the stack of rhs corresponding
10890 to the production that invoked YYERROR. That is how Yacc
10891 behaves (required by POSIX).
10892 * tests/calc.at (AT_CHECK_CALC_LALR1_CC): No longer expected to
10893 fail.
10894
10895 2003-08-25 Akim Demaille <akim@epita.fr>
10896
10897 Tune local.at so that people can "autom4te -l autotest calc.at -o
10898 calc" for instance, to extract a sub test suite.
10899
10900 * tests/testsuite.at: Move the initialization, Autotest version
10901 requirement, and AT_TESTED invocation into...
10902 * tests/local.at: here.
10903 * tests/testsuite.at: Include it for compatibility with Autoconf
10904 2.57.
10905 * tests/Makefile.am ($(TESTSUITE)): Report that the warning should
10906 be ignore.
10907
10908 2003-08-04 Paul Eggert <eggert@twinsun.com>
10909
10910 Rework code slightly to avoid gcc -Wtraditional warnings.
10911 * data/glr.c (yyuserMerge): Return void, not YYSTYPE.
10912 The returned value is now stored in *YY0. All callers changed.
10913 * src/output.c (merge_output): Adjust to the above change.
10914
10915 2003-07-26 Paul Eggert <eggert@twinsun.com>
10916
10917 * data/glr.c (YYASSERT): New macro.
10918 (yyfillin, yydoAction, yyglrReduce, yysplitStack,
10919 yyresolveStates, yyprocessOneStack):
10920 Use `YYASSERT (FOO);' rather than `if (! (FOO)) abort ();'.
10921 Derived from a suggestion by Frank Heckenbach.
10922
10923 2003-07-25 Paul Eggert <eggert@twinsun.com>
10924
10925 * data/glr.c (yyglrReduce): Don't use C89 string concatenation,
10926 for portability to K&R C (after ansi2knr, presumably). See
10927 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>
10928 by Frank Heckenbach, though I have omitted the structure-initialization
10929 part of his glr-knr.diff patch since I recall that the Portable
10930 C Compiler didn't require that change.
10931
10932 Let the user specify how to allocate and free memory.
10933 Derived from a suggestion by Frank Heckenbach in
10934 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>.
10935 * data/glr.c (YYFREE, YYMALLOC, YYREALLOC): New macros.
10936 All uses of free, malloc, realloc changed to use these macros,
10937 and unnecessary casts removed.
10938 * data/yacc.c (YYFREE, YYMALLOC): Likewise.
10939
10940 2003-07-06 Matthias Mann <MatthiasMann@gmx.de>
10941
10942 * data/lalr1.cc (operator<<(std::ostream&, const Position&)):
10943 use s.empty() rather than s == "" to test for empty string; see
10944 <http://lists.gnu.org/archive/html/bison-patches/2003-07/msg00003.html>
10945 (trivial change)
10946
10947 2003-06-25 Akim Demaille <akim@epita.fr>
10948
10949 * config/depcomp, config/install-sh: Update from masters.
10950
10951 2003-06-20 Paul Eggert <eggert@twinsun.com>
10952
10953 * data/glr.c (YYLLOC_DEFAULT): Parenthesize arguments as needed,
10954 and return properly parenthesized result.
10955 * data/lalar1.cc (YYLLOC_DEFAULT): Likewise.
10956 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
10957 Remove unnecessary parentheses from uses.
10958 * doc/bison.texinfo (Location Default Action): Describe the
10959 conventions for parentheses.
10960
10961 2003-06-19 Paul Eggert <eggert@twinsun.com>
10962
10963 * data/glr.c (yyremoveDeletes, yy_reduce_print, yyglrReduce,
10964 yyreportTree): Do not assume that size_t is the same width as int,
10965 when printing sizes. Print sizes using an unsigned format.
10966 Problem reported by Frank Heckenbach in
10967 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00035.html>.
10968
10969 Port to Forte Developer 7 C compiler.
10970 * data/glr.c (struct YYLTYPE): If locations are not being used,
10971 declare a single dummy member, as empty structs do not conform
10972 to the C standard.
10973 (YYERROR, YYBACKUP): Do not use "do { ...; return foo; } while (0)";
10974 the Forte Developer 7 C compiler complains that end-of-loop
10975 code is not reached.
10976
10977 2003-06-17 Paul Eggert <eggert@twinsun.com>
10978
10979 * lib/libiberty.h (PARAMS): Spell argument as Args, not as X, to
10980 avoid warnings from picky compilers about redefinition of PARAMS.
10981
10982 2003-06-17 Paul Eggert <eggert@twinsun.com>
10983
10984 Version 1.875b.
10985
10986 * NEWS: Document 1.875b.
10987
10988 * lib/bbitset.h: Do not include config.h; that's the includer's job.
10989 Do not include <sys/types.h>; shouldn't be needed on a C89 host.
10990 * lib/bitset.h (bitset_compatible_p): Indent as per GNU standard.
10991 Don't use 'index' in comments, as it's a builtin fn on some hosts.
10992 * lib/bitset_stats.c: Include gettext.h unconditionally, as
10993 per recent gettext manual's suggestion.
10994 * lib/ebitset.c (ebitset_resize, ebitset_unused_clear):
10995 Use prototypes, not old-style definitions.
10996 * lib/lbitset.c (lbitset_unused_clear): Likewise.
10997 * lib/vbitset.c (vbitset_resize, vbitset_ones, vbitset_zero,
10998 vbitset_empty_p, vbitset_copy1, vbitset_not, vbitset_equal_p,
10999 vbitset_subset_p, vbitset_disjoint_p, vbitset_and, vbitset_and_cmp,
11000 vbitset_andn, vbitset_andn_cmp, vbitset_or, vbitset_or_cmp,
11001 vbitset_xor, vbitset_xor_cmp, vbitset_and_or, vbitset_and_or_cmp,
11002 vbitset_andn_or, vbitset_andn_or_cmp, vbitset_or_and,
11003 vbitset_or_and_cmp, vbitset_copy): Likewise.
11004
11005 * lib/libiberty.h: Do not include config.h; that's the includer's job.
11006 Do not include <stdlib.h>.
11007 (PARAMS): Define unconditionally for C89.
11008 (ATTRIBUTE_NORETURN): Remove.
11009 (ATTRIBUTE_UNUSED): Define unconditionally.
11010
11011 Upgrade to 2003-06-08 libbitset, submitted by Michael Hayes in:
11012 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00005.html>
11013 * lib/Makefile.am (bitsets_sources): Add vbitset.c, vbitset.h.
11014 * lib/vbitset.c, lib/vbitset.h: New files.
11015 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
11016 lib/bitset_stats.c, lib/ebitset.c, lib/lbitset.c: Import
11017 from libbitset.
11018
11019 * doc/bison.texinfo (How Can I Reset the Parser): Renamed from
11020 `How Can I Reset @code{yyparse}', since texinfo does not allow
11021 arbitrary @ in node names.
11022
11023 * m4/Makefile.am (EXTRA_DIST): Add the following files, which
11024 shouldn't be needed according to the gettext 0.12.1 documentation
11025 but which seem to be needed anyway: codeset.m4 glibc21.m4
11026 intdiv0.m4 inttypes-pri.m4 inttypes.m4 inttypes_h.m4 isc-posix.m4
11027 lcmessage.m4 nls.m4 po.m4 stdint_h.m4 uintmax_t.m4 ulonglong.m4.
11028 * po/Makefile.in.in: Upgrade to gettext 0.12.1 version.
11029
11030 * lib/.cvsignore: Add stdbool.h.
11031 * m4/.cvsignore: Add nls.m4, po.m4.
11032
11033 Upgrade to CVS gnulib.
11034 * stdbool_.h: File renamed from stdbool.h.in.
11035 * configure.ac (AM_STDBOOL_H): Invoke this instead of
11036 AC_HEADER_STDBOOL.
11037 (AM_GNU_GETTEXT): Put brackets around args, as latest manual suggests.
11038 (AM_GNU_GETTEXT_VERSION): Update to 0.12.1.
11039 * lib/Makefile.am (EXTRA_DIST): Add stdbool_.h.
11040 (MOSTLYCLEANFILES): New var.
11041 ($(libbison_a_OBJECTS)): Depend on $(STDBOOL_H).
11042 (stdbool.h): New rule.
11043 * lib/dirname.c, lib/dirname.h, lib/hash.c, lib/hash.h,
11044 lib/malloc.c, lib/obstack.h, lib/quote.c, lib/realloc.c,
11045 lib/strcasecmp.c, lib/xalloc.h, m4/alloca.m4, m4/onceonly.m4,
11046 m4/quote.m4: Upgrade to today's gnulib.
11047
11048 * tests/calc.at (AT_CHECK_CALC): New option EXPECTED-TO-FAIL.
11049 (AT_CHECK_CALC_LALR1_CC): Use it, since the C++ LALR parser fails
11050 the tests right now.
11051 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Ensure yylex and
11052 yyerror are declared before use; C99 requires this.
11053
11054 2003-06-09 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
11055
11056 * data/glr.c (YYERROR): Update definition to reset yyerrState to 0
11057 first.
11058 (yyrecoverSyntaxError): Correct the logic for setting and testing
11059 yyerrState.
11060 Correct comment on handling EOF.
11061 Allow states with only a default reduction, rather than failing
11062 (I can't quite reconstruct why these were not allowed before).
11063
11064 Fixes to avoid problem that $-N rules in GLR parsers can cause
11065 buffer overruns, corrupting state.
11066
11067 * src/output.c (prepare_rules): Output max_left_semantic_context
11068 definition.
11069 * src/reader.h (max_left_semantic_context): New variable declaration.
11070 * src/scan-gram.l (max_left_semantic_context): Define.
11071 (handle_action_dollar): Update max_left_semantic_context.
11072 * data/glr.c (YYMAXLEFT): New definition.
11073 (yydoAction): Increase size of yyrhsVals by YYMAXLEFT.
11074 (yyresolveAction): Ditto.
11075
11076 Fixes to problems with location handling in GLR parsers reported by
11077 Frank Heckenbach (2003/06/05).
11078
11079 * data/glr.c (YYLTYPE): Make trivial if locations not used.
11080 (YYRHSLOC): Add parentheses, and define only if locations used.
11081 (YYLLOC_DEFAULT): Add parentheses, and give trivial definition if
11082 locations not used.
11083 (yyuserAction): Use YYLLOC_DEFAULT to set *yylocp.
11084 (yydoAction): Remove redundant initialization of *yyvalp and *yylocp.
11085
11086 * tests/cxx-type.at: Exercise location information; update tests
11087 to differentiate output with and without locations.
11088 Remove forward declarations of yylex and yyerror---caused errors
11089 because default YYLTYPE not yet defined.
11090 Change semantic actions to compute strings, rather than printing
11091 them directly (to test proper passing of semantics values). Change
11092 output to prefix notation and update test data and expected results.
11093 (yylex): Track locations.
11094 (stmtMerge): Return value rather than printing, and include arguments
11095 in value.
11096
11097 2003-06-03 Paul Eggert <eggert@twinsun.com>
11098
11099 Avoid warnings generated by GCC 2.95.4 when Bison is
11100 configured with --enable-gcc-warnings.
11101 * data/lalr1.cc (yy::]b4_parser_class_name[::parse,
11102 yy::]b4_parser_class_name[::translate_,
11103 yy::Stack::operator[] (unsigned),
11104 yy::Stack::operator[] (unsigned) const,
11105 yy::Slice::operator[] (unsigned),
11106 yy::Slice::operator[] (unsigned) const):
11107 Rename local vars to avoid warnings.
11108 * tests/glr-regression.at (Improper handling of embedded actions
11109 and $-N in GLR parsers): Remove unused local variable from yylex.
11110 * tests/regression.at (_AT_DATA_DANCER_Y): Declare yylex to take
11111 (void) as arg when not pure, since we now assume C89 when building
11112 Bison. Pacify GCC by using parameter.
11113
11114 2003-06-02 Paul Eggert <eggert@twinsun.com>
11115
11116 * data/lalr1.cc (yy::Position::lines, yy::Position::columns,
11117 yy::Location::lines, yy::Location::columns): Rename arguments
11118 to avoid shadowing; this removes a warning generated by GCC 3.3.
11119
11120 2003-06-01 Paul Eggert <eggert@twinsun.com>
11121
11122 Don't pass C-only warning optins (e.g., -Wmissing-declarations)
11123 to g++, as GCC 3.3 complains if you do it.
11124 * configure.ac (WARNING_CXXFLAGS): New subst. Set it to
11125 everything that WARNING_CFLAGS has, except omit warnings
11126 not suitable for C++.
11127 (AC_PROG_CXX): Use this instead of AC_CHECK_PROGS([CXX], [g++]).
11128 * tests/atlocal.in (CXXFLAGS): New var.
11129 * tests/local.at (AT_COMPILE_CXX): Use it instead of CFLAGS.
11130
11131 Fix a GLR parser bug I reported in February; see
11132 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00008.html>.
11133 The problem was that GLR parsers did not conform to the C standard,
11134 because actions like { $1 = $2 + $3; } expanded to expressions
11135 that invoked YYFILL in separate subexpressions, and YYFILL assigned
11136 to a local variable. The C standard says that expressions
11137 like (var = f ()) + (var = f ()) have undefined behavior.
11138 Another problem was that GCC sometimes issues warnings that
11139 yyfill and its parameters are unused.
11140
11141 * data/glr.c (yyfillin): Renamed from the old yyfill. Mark
11142 as possibly unused.
11143 (yyfill): New function.
11144 (YYFILL): Use it.
11145 (yyuserAction): Change type of yynormal to bool, so that it matches
11146 the new yyfill signature. Mark it as possibly unused.
11147
11148
11149 Follow up on a bug I reported in February, where a Bison-generated
11150 parser can loop. Provide a test case and a fix for yacc.c. I
11151 don't have a fix for lalr1.cc or for glr.c, unfortunately.
11152 The original bug report is in:
11153 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00044.html>
11154
11155 * data/yacc.c (YYERROR): Now just 'goto yyerrorlab', since the
11156 macro's size was becoming unwieldy.
11157 (yyerrlab): Do not discard an empty lookahead symbol, as this
11158 might destroy garbage.
11159 (yyerrorlab): New label, with the old contents of YYERROR,
11160 plus the following change: pop the stack of rhs corresponding
11161 to the production that invoked YYERROR. That is how Yacc
11162 behaves, and POSIX requires this behavior.
11163 (yyerrlab1): Use YYPOPSTACK instead of its definiens.
11164 * tests/calc.at (_AT_DATA_CALC_Y): Include unistd.h if available.
11165 Define 'alarm' to do nothing if unistd.h is not available.
11166 Add a new rule "exp: '-' error;" to test the above change to
11167 data/yacc.c. Use 'alarm' to abort any test taking longer than
11168 10 seconds, as it's probably looping.
11169 (AT_CHECK_CALC): Test recovery from error in new grammar rule.
11170 Also, the new yacc.c generates two fewer diagnostics for an
11171 existing test.
11172
11173 2003-05-24 Paul Eggert <eggert@twinsun.com>
11174
11175 * data/glr.c (YYSTACKEXPANDABLE): Do not evaluate
11176 YYSTYPE_IS_TRIVIAL or YYSTYPE_IS_TRIVIAL unless they are defined.
11177 This fixes a problem reported by John Bowman when the Compaq/HP
11178 Alpha cxx compiler happy (e.g. using cxx -D__USE_STD_IOSTREAM
11179 -ansi -Wall -gall).
11180 * data/yacc.c (union yyalloc): Likewise.
11181 (YYCOPY): Do not evaluate __GNUC__ unless it is defined.
11182
11183 Switch from 'int' to 'bool' where that makes sense.
11184
11185 * lib/abitset.c (abitset_test, abitset_empty_p, abitset_equal_p,
11186 abitset_subset_p, abitset_disjoint_p, abitset_and_cmp,
11187 abitset_andn_cmp, abitset_or_cmp, abitset_xor_cmp, abitset_and_or,
11188 abitset_and_or_cmp, abitset_andn_or_cmp, abitset_or_and_cmp):
11189 Return or accept bool, not int. All callers changed.
11190 * lib/bbitset.h: (bitset_toggle_, bitset_copy_, bitset_and_or_cmp_,
11191 bitset_andn_or_cmp_, bitset_or_and_cmp_): Likewise.
11192 * lib/bitset.c (bitset_only_set_p, bitset_print, bitset_toggle_,
11193 bitset_copy_, bitset_op4_cmp, bitset_and_or_cmp_, bitset_andn_or_cmp_,
11194 bitset_or_and_cmp_): Likewise.
11195 * lib/bitset.h (bitset_test, bitset_only_set_p): Likewise.
11196 * lib/bitset_stats.c (bitset_stats_print, bitset_stats_toggle,
11197 bitset_stats_test, bitset_stats_empty_p, bitset_stats_disjoint_p,
11198 bitset_stats_equal_p, bitset_stats_subset_p, bitset_stats_and_cmp,
11199 bitset_stats_andn_cmp, bitset_stats_or_cmp, bitset_stats_xor_cmp,
11200 bitset_stats_and_or_cmp, bitset_stats_andn_or_cmp,
11201 bitset_stats_or_and_cmp): Likewise.
11202 * lib/ebitset.c (ebitset_elt_zero_p, ebitset_equal_p, ebitset_copy_cmp,
11203 ebitset_test, ebitset_empty_p, ebitset_subset_p, ebitset_disjoint_p,
11204 ebitset_op3_cmp, ebitset_and_cmp, ebitset_andn_cmp, ebitset_or_cmp,
11205 ebitset_xor_cmp): Likewise.
11206 * lib/lbitset.c (lbitset_elt_zero_p, lbitset_equal_p, lbitset_copy_cmp,
11207 lbitset_test, lbitset_empty_p, lbitset_subset_p, lbitset_disjoint_p,
11208 lbitset_op3_cmp, lbitset_and_cmp, lbitset_andn_cmp, lbitset_or_cmp,
11209 lbitset_xor_cmp): Likewise.
11210 * lib/bbitset.h: Include <stdbool.h>.
11211 (struct bitset_vtable): The following members now return bool, not
11212 int: toggle, test, empty_p, disjoint_p, equal_p, subset_p,
11213 and_cmp, andn_cmp, or_cmp, xor_cmp, and_or_cmp, andn_or_cmp,
11214 or_and_cmp).
11215 * src/conflicts.c (count_rr_conflicts): Likewise.
11216 * lib/bitset_stats.h (bitset_stats_enabled): Now bool, not int.
11217 All uses changed.
11218 * lib/ebitset.c (ebitset_obstack_init): Likewise.
11219 * lib/lbitset.c (lbitset_obstack_init): Likewise.
11220 * src/getargs.c (debug_flag, defines_flag, locations_flag,
11221 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
11222 graph_flag): Likewise.
11223 * src/getargs.h (debug_flag, defines_flag, locations_flag,
11224 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
11225 graph_flag): Likewise.
11226 * src/output.c (error_verbose): Likewise.
11227 * src/output.h (error_verbose): Likewise.
11228 * src/reader.c (start_flag, typed): Likewise.
11229 * src/reader.h (typed): Likewise.
11230 * src/getargs.c (LOCATIONS_OPTION): New constant.
11231 (long_options, getargs): Use it.
11232 * src/lalr.c (build_relations): Use bool, not int.
11233 * src/nullable.c (nullable_compute): Likewise.
11234 * src/print.c (print_reductions): Likewise.
11235 * src/tables.c (action_row, pack_vector): Likewise.
11236 * src/muscle_tab.h (MUSCLE_INSERT_BOOL): New macro.
11237 * src/output.c (prepare): Use it.
11238 * src/output.c (token_definitions_output,
11239 symbol_destructors_output, symbol_destructors_output): Use string,
11240 not boolean integer, to keep track of whether to output separator.
11241 * src/print_graph.c (print_core): Likewise.
11242 * src/state.c (state_rule_lookaheads_print): Likewise.
11243
11244 * config/install-sh: Sync from automake 1.7.5.
11245
11246 2003-05-14 Paul Eggert <eggert@twinsun.com>
11247
11248 * src/parse-gram.y (rules_or_grammar_declaration): Require a
11249 semicolon after a grammar declaration, in the interest of possible
11250 future changes to the Bison input language.
11251 Do not allow a stray semicolon at the start of the grammar.
11252 (rhses.1): Allow one or more semicolons after any rule, including
11253 just before "|" as required by POSIX.
11254 * tests/input.at (Torturing the Scanner): Add tests for ";|" in a
11255 grammar.
11256
11257 2003-05-14 Alexandre Duret-Lutz <adl@gnu.org>
11258
11259 %parse-param support for lalr1.cc.
11260
11261 * data/lalr1.cc (b4_parse_param_decl, b4_parse_param_cons,
11262 b4_cc_constructor_calls, b4_cc_constructor_call,
11263 b4_parse_param_vars, b4_cc_var_decls, b4_cc_var_decl): New m4
11264 definitions.
11265 (yy::b4_parser_class_name::b4_parser_class_name): Take extra
11266 parse-param arguments.
11267 (yy::b4_parser_class_name): Declare instance variables to
11268 hold parse-param arguments.
11269 * tests/calc.at: s/value/semantic_value/ because value clashes
11270 with a member of yy::b4_parser_class_name. Adjust C++ code
11271 to handle %parse-param. Enable %parse-param test in C++.
11272
11273 2003-05-12 Paul Eggert <eggert@twinsun.com>
11274
11275 * doc/bison.texinfo (How Can I Reset @code{yyparse}): Reword the
11276 English a bit. Fix fclose typo. Change "const char" to "char
11277 const", and use ANSI C rather than K&R for "main". Suggest
11278 YY_FLUSH_BUFFER over yyrestart (as that is what Flex recommends)
11279 and suggest yy_switch_to_buffer.
11280
11281 2003-05-05 Paul Eggert <eggert@twinsun.com>
11282
11283 * lib/bitset.h (__INT_TO_PTR): Define to a value that presumes
11284 C89. This avoids a diagnostic on compilers that define __STDC__
11285 to 0, fixing a problem with Tru64 cc reported by Martin Mokrejs in
11286 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
11287
11288 2003-05-03 Paul Eggert <eggert@twinsun.com>
11289
11290 * lib/bitset.h (BITSET_FOR_EACH, BITSET_FOR_EACH_REVERSE):
11291 Do not overrun array bounds.
11292 This should fix a bug reported today by Olatunji Oluwabukunmi in
11293 <http://lists.gnu.org/archive/html/bug-bison/2003-05/msg00004.html>.
11294
11295 2003-04-29 Akim Demaille <akim@epita.fr>
11296
11297 * src/gram.h, src/gram.c (pure_parser, glr_parser): Move to...
11298 * src/getargs.c, src/getargs.h: here, as bool, not int.
11299 (nondeterministic_parser): New.
11300 * src/parse-gram.y, src/scan-gram.l: Support
11301 %nondeterministic-parser.
11302 * src/output.c (prepare): Use nondeterministic_parser instead
11303 of glr_parser where appropriate.
11304 * src/tables.c (conflict_row, action_row, save_row)
11305 (token_actions, token_actions, pack_vector): Ditto.
11306
11307 2003-04-29 Akim Demaille <akim@epita.fr>
11308
11309 * doc/bison.texinfo (C++ Parsers, Implementing Loops): New.
11310
11311 2003-04-29 Akim Demaille <akim@epita.fr>
11312
11313 * tests/calc.at: Also test yacc.c and glr.c (but not lalr1.cc yet)
11314 with %pure-parser and %locations to exercise the patch from Yakov
11315 Markovitch below.
11316
11317 2003-04-28 Tim Van Holder <tim.van.holder@pandora.be>
11318
11319 * data/yacc.c: (b4_lex_param): Corrected for the case where
11320 %lex-param is provided and %pure-parser isn't.
11321
11322 2003-04-27 Paul Eggert <eggert@twinsun.com>
11323
11324 Avoid gcc -Wundef warnings reported by Gerald Pfeifer in
11325 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00044.html>.
11326 * data/yacc.c (YYSTACK_ALLOC): Don't evaluate YYSTACK_USE_ALLOCA
11327 if it is not defined.
11328 (YYMAXDEPTH): Don't evaluate YYMAXDEPTH if it is not defined.
11329
11330 2003-04-26 Paul Eggert <eggert@twinsun.com>
11331
11332 * data/lalr1.cc (yy::Parser::pact_ninf_, yy::Parser::table_ninf_):
11333 Declare to be of type suitable for the ninf value itself, not of
11334 type suitable for the corresponding table, since the latter might
11335 be unsigned but the ninf value might be negative. This fixes a
11336 bug reported by Alexandre Duret-Lutz in
11337 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00017.html>.
11338
11339 * configure.ac (AC_FUNC_ERROR_AT_LINE): Remove, since gl_ERROR
11340 invokes it. We shouldn't invoke it twice because it will attempt
11341 to put error.o in the archive twice. This fixes a glitch reported
11342 by Martin Mokrejs in
11343 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
11344
11345 2003-04-21 Paul Eggert <eggert@twinsun.com>
11346
11347 * m4/error.m4: Update from Bruno Haible's 2003-04-14 patch
11348 to gnulib.
11349
11350 2003-04-21 Yakov Markovitch <Markovitch@iso.ru>
11351
11352 * data/glr.c (yyexpandGLRStack) [!YYSTACKEXPANDABLE]:
11353 Fix obvious typo that results in uncompilable GLR parsers
11354 when both %pure-parser and %locations are used. (trivial change)
11355
11356 2003-04-17 Paul Eggert <eggert@twinsun.com>
11357
11358 * src/scan-gram.l: Add %option nounput, since we no longer use unput.
11359 (unexpected_eof): Renamed from unexpected_end_of_file, for brevity.
11360 Do not insert the expected token via unput, as this runs afoul
11361 of a POSIX-compatibility bug in flex 2.5.31.
11362 All uses changed to BEGIN the parent state,
11363 since we no longer insert the expected token via unput.
11364 * tests/regression.at (Invalid inputs): Remove cascaded diagnostic
11365 that is no longer emitted after the above change.
11366
11367 * src/conflicts.c (set_conflicts): Resolve all conflicts, not just
11368 the first one. This change is from Paul Hilfinger, and it fixes
11369 regression reported by Werner Lemberg in
11370 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
11371
11372 (resolve_sr_conflict): Don't invoke state_errs_set
11373 unless one or more tokens have been explicitly made errors.
11374 Otherwise, the above change causes Bison to abort.
11375
11376 * tests/existing.at (GNU pic Grammar): New test case, taken from
11377 Lemberg's email.
11378
11379 2003-03-31 Akim Demaille <akim@epita.fr>
11380
11381 * doc/Makefile.am (AM_MAKEINFOFLAGS): Don't split the info file.
11382
11383 2003-03-31 Akim Demaille <akim@epita.fr>
11384
11385 * src/output.c (prepare_symbols): Avoid trailing spaces in the
11386 output.
11387
11388 2003-03-31 Akim Demaille <akim@epita.fr>
11389
11390 * doc/bison.texinfo (Strings are Destroyed): s/losses/loses/.
11391 From Paul Hilfinger.
11392
11393 2003-03-29 Akim Demaille <akim@epita.fr>
11394
11395 * m4/error.m4: Do not put under dynamic conditions some code which
11396 expansion is under static control.
11397
11398 2003-03-29 Akim Demaille <akim@epita.fr>
11399
11400 * doc/bison.texinfo (How Can I Reset @code{yyparse}): New.
11401
11402 2003-03-29 Akim Demaille <akim@epita.fr>
11403
11404 * doc/bison.texinfo (Strings are Destroyed): New.
11405
11406 2003-03-13 Paul Eggert <eggert@twinsun.com>
11407
11408 * .cvsignore: Add configure.lineno.
11409 * src/.cvsignore: Add yacc.
11410 * tests/.cvsignore: Add testsuite.log.
11411 * doc/fdl.texi: Sync with latest FSF version.
11412
11413 2003-03-12 Paul Eggert <eggert@twinsun.com>
11414
11415 * scan-gram.l (YY_USER_INIT): Initialize code_start, too.
11416 (<INITIAL><<EOF>>, <SC_PRE_CODE><<EOF>>): Set *loc to the scanner
11417 cursor, instead of leaving it undefined. This fixes a bug
11418 reported by Tim Van Holder in
11419 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00023.html>.
11420 * tests/input.at (Torturing the Scanner): Test the scanner on
11421 an empty input file, which was Tim Van Holder's test case.
11422
11423 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): When checking whether
11424 <sys/resource.h> can be included, include sys/time.h and
11425 sys/times.h first, if available. This works around the SunOS
11426 4.1.4 porting bug reported by Bruce Becker in
11427 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00018.html>.
11428
11429 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't
11430 AC_CHECK_HEADERS([sys/wait.h]), as this interferes with
11431 AC_HEADER_SYS_WAIT.
11432
11433 Merge changes from gnulib. This was prompted because the CVS
11434 snapshot didn't build on Solaris 7 due to strnlen problems.
11435
11436 These changes need to be merged back into gnulib:
11437 * lib/hash.c: Include <stdbool.h> unconditionally.
11438 * m4/onceonly.m4 (m4_quote): New macro.
11439 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
11440 Quote AC_FOREACH variable-expansions properly.
11441 The 2003-01-03 obstack.h change also needs merging.
11442 {end of changes requiring merging}
11443
11444 * lib/stdbool.h.in, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
11445 m4/getopt.m4, m4/hash.m4, m4/malloc.m4, m4/memchr.m4,
11446 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/quote.m4,
11447 m4/quotearg.m4, m4/realloc.m4, m4/stpcpy.m4, m4/strnlen.m4,
11448 m4/strtol.m4, m4/strtoul.m4, m4/unlocked-io.m4, m4/xalloc.m4:
11449 New files, imported from gnulib.
11450 * m4/Makefile.am (EXTRA_DIST): Add the new m4/*.m4 files mentioned
11451 above.
11452
11453 * lib/mbswidth.c, m4/error.m4, m4/mbrtowc.m4, m4/mbswidth.m4,
11454 m4/memcmp.m4, m4/prereq.m4, m4/stdbool.m4: Update to current
11455 gnulib sources.
11456
11457 * configure.ac (gl_DIRNAME, gl_GETOPT, gl_HASH, gl_QUOTE, gl_XALLOC):
11458 Add.
11459 (gl_ERROR): New, replacing jm_PREREQ_ERROR.
11460 (gl_FUNC_ALLOCA): New, replacing AC_FUNC_ALLOCA.
11461 (gl_FUNC_STPCPY): New, replacing AC_REPLACE_FUNCS(stpcpy).
11462 (gl_FUNC_STRNLEN): New, replacing AC_FUNC_STRNLEN.
11463 (gl_MBSWIDTH): New, replacing jm_PREREQ_MBSWIDTH.
11464 (gl_OBSTACK): New, replacing AC_FUNC_OBSTACK.
11465 (gl_QUOTEARG): New, replacing jm_PREREQ_QUOTEARG.
11466 (jm_FUNC_GLIBC_UNLOCKED_IO, gl_FUNC_STPCPY, gl_FUNC_STRTOL): New.
11467 (jm_FUNC_MALLOC): New, replacing AC_FUNC_MALLOC.
11468 (jm_FUNC_REALLOC): New, replacing AC_FUNC_REALLOC.
11469 (jm_PREREQ_ARGMATCH): Remove.
11470 (AC_REPLACE_FUNCS): Remove memchr, memrchr, stpcpy, strtol, strtoul.
11471 * lib/Makefile.am (libbison_a_SOURCES): Add argmatch.c, argmatch.h.
11472
11473 * src/system.h: Include <stdbool.h> unconditionally.
11474
11475 * lib/bbitset.h: Include <limits.h> unconditionally. We have been
11476 assuming at least C89 in the bitset code for some time now.
11477
11478 2003-03-03 Akim Demaille <akim@epita.fr>
11479
11480 * ro.po: New.
11481
11482 2003-03-02 Akim Demaille <akim@epita.fr>
11483
11484 * doc/bison.texinfo (Table of Symbols): Reactivate the
11485 documentation for %lex-param, and %parse-param.
11486
11487 2003-03-02 Akim Demaille <akim@epita.fr>
11488
11489 * data/yacc.c, data/glr.c, data/lal1.cc: Use similar code to
11490 generate verbose error messages.
11491 Use the number of tokens as an upper bound in yytname, as it
11492 cannot be a non terminal.
11493
11494 2003-03-02 Akim Demaille <akim@epita.fr>
11495
11496 * tests/regression.at (_AT_DATA_DANCER_Y): Fix the expected error
11497 message.
11498
11499 2003-03-02 Akim Demaille <akim@epita.fr>
11500
11501 * tests/regression.at (_AT_DATA_DANCER_Y, AT_CHECK_DANCER): New.
11502 Use them to exercise yycheck overrun.
11503 Based on Andrew Suffield's grammar.
11504
11505 2003-03-02 Akim Demaille <akim@epita.fr>
11506
11507 Create tests/local.at for Bison generic testing macros.
11508
11509 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Move to...
11510 * tests/local.at (AT_BISON_OPTION_PUSHDEFS, AT_BISON_OPTION_POPDEFS):
11511 This new file.
11512 * tests/calc.at (AT_CHECK_CALC): Adjust.
11513 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR)
11514 (AT_COMPILE, AT_COMPILE_CXX, AT_PARSER_CHECK): Move to...
11515 * tests/local.at: here.
11516 (AT_COMPILE_CXX): Tags the tests using it as c++.
11517 Ignore the test if CXX is not functional.
11518
11519 2003-03-01 Paul Eggert <eggert@twinsun.com>
11520
11521 * src/scan-gram.l (code_start): Initialize it to scanner_cursor,
11522 not loc->end, since loc->end might contain garbage and this leads
11523 to undefined behavior on some platforms.
11524 (id_loc, token_start): Use (IF_LINTed) initial values that do not
11525 depend on *loc, so that the reader doesn't give the the false
11526 impression that *loc is initialized.
11527 (<INITIAL>"%%"): Do not bother setting code_start, since its value
11528 does not survive the return.
11529
11530 2003-03-01 Akim Demaille <akim@epita.fr>
11531
11532 * src/scan-gram.l (code_start): Always initialize it when entering
11533 into yylex, as SC_EPILOGUE is activated *before* the corresponding
11534 yylex invocation. An alternative would be making it static, but
11535 then it starts with the second %%'s beginning, instead of its end.
11536
11537 2003-02-28 Paul Eggert <eggert@twinsun.com>
11538
11539 * lib/mbswidth.c: Include <wchar.h> before "mbswidth.h", to work
11540 around a UnixWare 7.1.1 porting bug reported by John Hughes in
11541 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00030.html>.
11542
11543 2003-02-26 Paul Eggert <eggert@twinsun.com>
11544
11545 * README: Mention compiler bug in Sun Forte Developer 6 update 2.
11546 Remove Sequent/Pyramid discussion (nobody uses them any more).
11547 Merge VMS and MS-DOS discussion; these ports may well be dead
11548 but let's keep mentioning them for now. Put <> around email
11549 addresses. Add copyright notice.
11550
11551 2003-02-24 Paul Eggert <eggert@twinsun.com>
11552
11553 * data/glr.c (yy_reduce_print): yylineno -> yylno,
11554 to avoid collision with flex use of yylineno.
11555 Problem reported by Bruce Lilly in
11556 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00016.html>.
11557 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
11558 * data/yacc.c (yy_reduce_print): Likewise.
11559
11560 * config/depcomp: Sync with Automake 1.7.3.
11561
11562 2003-02-21 Akim Demaille <akim@epita.fr>
11563
11564 * data/lalr1.cc: Use temporary variables instead of casts to
11565 change integer types.
11566 Suggested by Paul Eggert.
11567
11568 2003-02-21 Akim Demaille <akim@epita.fr>
11569
11570 * doc/bison.texinfo: Use "location" consistently to refer to @n,
11571 to avoid confusions with lalr1.cc's notion of Position.
11572 Suggested by Paul Eggert.
11573
11574 2003-02-20 Akim Demaille <akim@epita.fr>
11575
11576 * data/lalr1.cc (position.hh): Make sure "columns" never pushes
11577 before initial_columns.
11578 (location.hh): Use consistent variable names when defining the
11579 operator<<.
11580 Use "last" so that we subtract from Positions, not from unsigned.
11581
11582 2003-02-20 Akim Demaille <akim@epita.fr>
11583
11584 * data/lalr1.cc (position.hh): New subfile, including the extended
11585 and Doxygen'ed documentation of class Position.
11586 (location.hh): Use it.
11587 Document a` la Doxygen.
11588 With the help of Benoit Perrot.
11589
11590 2003-02-20 Akim Demaille <akim@epita.fr>
11591
11592 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Define
11593 AT_YACC_IF.
11594 Redefine AT_YYERROR_SEES_LOC_IF using it.
11595 (_AT_DATA_CALC_Y): Don't declare yyerror when lalr1.cc, as it is
11596 not defined.
11597 Don't use the location in yy::Parser::error_ and
11598 yy::Parser::print_ when not %locations.
11599 Activate more lalr1.cc tests.
11600
11601 2003-02-19 Akim Demaille <akim@epita.fr>
11602
11603 * data/lalr1.cc: When displaying a line number, be sure to make it
11604 an int.
11605
11606 2003-02-19 Akim Demaille <akim@epita.fr>
11607
11608 * data/lalr1.cc (b4_stack_depth_init, yy::Parser::initdepth_):
11609 Remove, useless.
11610 (YYABORT, YYACCEPT, YYERROR): New.
11611 * tests/calc.at: Renable the lalr1.cc test.
11612
11613 2003-02-19 Akim Demaille <akim@epita.fr>
11614
11615 * tests/calc.at (AT_CHECK_CALC): Check different scenarios of
11616 error recovery, mixing with/without pops and discarding of the
11617 lookahead.
11618 Exercise YYERROR.
11619 Disable the lalr1.cc tests as currently it doesn't support YYERROR.
11620
11621 2003-02-17 Paul Eggert <eggert@twinsun.com>
11622
11623 * tests/atlocal.in (LDFLAGS, LIBS): New vars.
11624 * tests/testsuite.at (AT_COMPILE): Use them.
11625 This fixes the testsuite problem reported by Robert Lentz in
11626 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00011.html>.
11627
11628 2003-02-12 Paul Eggert <eggert@twinsun.com>
11629
11630 * data/yacc.c (yyerrlab) [YYERROR_VERBOSE]:
11631 Avoid subscript error in yycheck. Bug reported by Andrew Suffield in
11632 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00003.html>.
11633 * data/glr.c (yyreportSyntaxError) [YYERROR_VERBOSE]: Likewise.
11634 Check for malloc failure, for consistency with yacc.c.
11635 (yytname_size): Remove, for consistency with yacc.c.
11636
11637 The bug still remains in data/lalr1.cc, as I didn't have time
11638 to fix it there.
11639
11640 2003-02-06 Akim Demaille <akim@epita.fr>
11641
11642 * configure.ac (GXX): Rename as...
11643 (CXX): this, to keep the original Autoconf semantics.
11644 Require 2.57.
11645 * data/lalr1.cc: Fix b4_copyright invocations.
11646 If YYDEBUG is not defined, don't depend upon name_ being defined.
11647 (location.hh): Include string and iostream.
11648 (Position::filename): New member.
11649 (Position::Position ()): New.
11650 (operator<< (Position)): New.
11651 (operator- (Position, int)): New.
11652 (Location::first, Location::last): Rename as...
11653 (Location::begin, Location::end): these, to mock the conventional
11654 iterator names.
11655 (operator<< (Location)): New.
11656 * tests/atlocal.in (CXX): New.
11657 * tests/testsuite.at (AT_COMPILE_CXX): New.
11658 * tests/calc.at (_AT_DATA_CALC_Y): Adjust yyerror to report the
11659 locations in a more synthetic way.
11660 (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF is positive if
11661 lalr1.cc is used.
11662 Adjust the C locations to match those from Emacs: first column is
11663 column 0.
11664 Change all the expected results.
11665 Conform to the GCS: simplify the locations when applicable.
11666 (LOC, VAL, YYLLOC_FORMAL, YYLLOC_ARG, USE_YYLLOC, LEX_FORMALS)
11667 (LEX_ARGS, USE_LEX_ARGS, LEX_PRE_FORMALS, LEX_PRE_ARGS): Replace
11668 these CPP macros with the m4 macros new defined by...
11669 (AT_CHECK_PUSHDEFS): this, i.e.:
11670 (AT_LALR1_CC_IF, AT_PURE_LEX_IF, AT_LOC, AT_VAL, AT_LEX_FORMALS)
11671 (AT_LEX_ARGS, AT_USE_LEX_ARGS, AT_LEX_PRE_FORMALS, AT_LEX_PRE_ARGS)
11672 New macros.
11673 (AT_CHECK_POPDEFS): Undefine them.
11674 (AT_CHECK_CALC_LALR1_CC): New.
11675 Use it for the first lalr1.cc test.
11676
11677 2003-02-04 Akim Demaille <akim@epita.fr>
11678
11679 * data/lalr1.cc (YYLLOC_DEFAULT): Fix its definition: be based on
11680 Location as is defined.
11681
11682 2003-02-04 Akim Demaille <akim@epita.fr>
11683
11684 * data/lalr1.cc: If YYDEBUG is not defined, don't depend upon
11685 name_ being defined.
11686
11687 2003-02-03 Paul Eggert <eggert@twinsun.com>
11688
11689 * src/gram.h (start_symbol): Remove unused decl.
11690
11691 Use more-consistent naming conventions for local vars.
11692
11693 * src/derives.c (derives_compute): Change type of local var from
11694 int to rule_number.
11695 * src/gram.c (grammar_rules_partial_print): Likewise.
11696 * src/print.c (print_core): Likewise.
11697 * src/reduce.c (reduce_grammar_tables): Likewise.
11698
11699 * src/gram.c (grammar_dump): Change name of item_number *
11700 local var from r to rp.
11701 * src/nullable.c (nullable_compute): Likewise.
11702
11703 * src/gram.h (ISTOKEN, ISVAR): Use i, not s, for int var.
11704
11705 * src/gram.h (symbol_number_as_item_number): Use sym, not s,
11706 for symbol or symbol_number var.
11707 * src/reader.c (grammar_start_symbol_set): Likewise.
11708 * src/reader.h (grammar_start_symbol_set, grammar_symbol_append):
11709 Likewise.
11710 * src/state.c (transitions_to): Likewise.
11711 * src/state.h: Likewise.
11712 * src/tables.c (symbol_number_to_vector_number): Likewise.
11713
11714 * src/muscle_tab.h (MUSCLE_OBSTACK_SGROW): Use p, not s, for
11715 char * var.
11716
11717 * src/parse-gram.y (lloc_default): Use loc, not r, for YYLTYPE
11718 var.
11719
11720 * src/scan-gram.l (no_cr_read): Use bytes_read, not s, for size
11721 var.
11722
11723 * src/system.h (xstrndup, strchr, strspn, strnlen, memchr, memrchr):
11724 Use str, not s, for char * var. Use ch, not c, for character var.
11725 Use size for size var.
11726
11727 * src/uniqstr.c (uniqstr_new, uniqstr_assert): Use str, not s, for
11728 char * var.
11729 (uniqstr_print, uniqst_print_processor): Use ustr, not s, for
11730 uniqstr var.
11731 * src/uniqstr.h: Likewise.
11732
11733 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
11734 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
11735 get_node_alignment_str, get_arrow_mode_str, get_crossing_type_str,
11736 get_view_str, get_linestyle_str, get_arrowstyle_str): Rename
11737 param to have same name as that of enum, so that we don't use
11738 "s" to stand for a non-state.
11739
11740 2003-02-02 Akim Demaille <akim@epita.fr>
11741
11742 * src/scan-skel.l: Scan more than one inert character per yylex
11743 invocation.
11744
11745 2003-02-01 Paul Eggert <eggert@twinsun.com>
11746
11747 Version 1.875a.
11748
11749 * po/LINGUAS: Add ms.
11750
11751 2003-01-30 Akim Demaille <akim@epita.fr>
11752
11753 * doc/Makefile.am (CLEANFILES): Add bison.fns for distcheck.
11754
11755 2003-01-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
11756
11757 * tests/cxx-type.at: Correct apparent typo in Bison input: $$ instead
11758 of $1.
11759
11760 Changes in response to error report by S. Eken: GLR mode does not
11761 handle negative $ indices or $ indices in embedded rules correctly.
11762 See <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00076.html>.
11763
11764 * data/glr.c (b4_rhs_value): Change to use YYFILL macro.
11765 (b4_rhs_location): Ditto.
11766 (yyfill): New function to copy from stack tree into array
11767 incrementally.
11768 (yyuserAction): Modify to allow incremental move of semantic values
11769 to rhs array when in GLR mode.
11770 Define YYFILL to use in user-defined actions to fill semantic array
11771 as needed.
11772 Remove dummy use of yystack, as there is now a guaranteed use.
11773 (yydoAction): Modify to allow incremental move of semantic values
11774 to rhs array when in GLR mode.
11775 (yyresolveAction): Ditto.
11776 (yyglrShiftDefer): Update comment.
11777 (yyresolveStates): Use X == NULL for pointers, not !X.
11778 (yyglrReduce): Ditto.
11779 (yydoAction): Ditto
11780
11781 * tests/glr-regr1.at: Rename to ...
11782 * tests/glr-regression.at: Add new regression test for the problems
11783 described above (adapted from S. Eken).
11784 Update copyright notice.
11785 * tests/testsuite.at: Rename glr-regr1.at to glr-regression.at.
11786 * tests/Makefile.am: Ditto.
11787
11788 2003-01-28 Paul Eggert <eggert@twinsun.com>
11789
11790 * data/lalr1.cc: Do not use @output_header_name@ unless
11791 b4_defines_flag is set. This fixes two bugs reported by
11792 Tim Van Holder in
11793 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00071.html>
11794 and <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00073.html>.
11795
11796 2003-01-21 Paul Eggert <eggert@twinsun.com>
11797
11798 * data/yacc.c (YYERROR): Move code from yyerrlab1 to here, so that
11799 we don't need to worry about yyerrlab1 being reported as an
11800 "unused label" by non-GCC C compilers. The downside is that if
11801 locations are used then a couple of statements are duplicated each
11802 time YYERROR is invoked, but the upside is that the warnings
11803 should vanish.
11804 (yyerrlab1): Move code to YERROR.
11805 (yyerrlab2): Remove. Change uses back to yyerrlab1.
11806 This reverts some of the 2002-12-27 change.
11807
11808 2003-01-17 Paul Eggert <eggert@twinsun.com>
11809
11810 * src/output.c (symbol_printers_output): Fix typo that led
11811 to core dump. Problem reported by Antonio Rus in
11812 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00058.html>.
11813
11814 2003-01-13 Akim Demaille <akim@epita.fr>,
11815 Quoc Peyrot <chojin@lrde.epita.fr>,
11816 Robert Anisko <anisko_r@lrde.epita.fr>
11817
11818 * data/lalr1.cc (parse::yyerrlab1): When popping the stack, stop
11819 when the stacks contain one element, as the loop would otherwise
11820 free the last state, and then use the top state (the one we just
11821 popped). This means that the initial elements will not be freed
11822 explicitly, as is the case in yacc.c; it is not a problem, as
11823 these elements have fake values.
11824
11825 2003-01-11 Paul Eggert <eggert@twinsun.com>
11826
11827 * NEWS: %expect-violations are now just warnings, reverting
11828 to Bison 1.30 and 1.75 behavior. This fixes the GCC 3.2
11829 bootstrapping problem reported by Matthias Klose; see
11830 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00053.html>.
11831 * src/conflicts.c (conflicts_print): Likewise.
11832 * tests/conflicts.at (%expect not enough, %expect too much,
11833 %expect with reduce conflicts): Likewise.
11834 * doc/bison.texinfo (Expect Decl): Document this. Also mention
11835 that the warning is enabled if the number of conflicts changes
11836 (not necessarily increases).
11837
11838 * src/getargs.c (version): Update copyright year.
11839
11840 2003-01-09 Akim Demaille <akim@epita.fr>
11841
11842 * src/Makefile.am, lib/Makefile.am: Use $(VAR) instead of @VAR@.
11843
11844 2003-01-08 Paul Eggert <eggert@twinsun.com>
11845
11846 * Makefile.maint (WGETFLAGS):
11847 New macro, containing "-C off" to disable proxy caches.
11848 All uses of $(WGET) changed to $(WGET) $(WGETFLAGS).
11849 (rel-check): Use $(WGET) instead of wget.
11850
11851 2003-01-06 Paul Eggert <eggert@twinsun.com>
11852
11853 * doc/bison.texinfo (Generalized LR Parsing): Add a reference to
11854 the GLR paper of Scott, Johnstone and Hussain.
11855
11856 2003-01-04 Paul Eggert <eggert@twinsun.com>
11857
11858 * configure.ac (AC_ARG_ENABLE): Add --disable-yacc.
11859 (YACC_SCRIPT, YACC_LIBRARY): New vars to AC_SUBST.
11860 * lib/Makefile.am (lib_LIBRARIES): liby.a -> @YACC_LIBRARY@.
11861 (EXTRA_LIBRARIES): New var, for liby.a.
11862 * src/Makefile.am (bin_SCRIPTS): yacc -> @YACC_SCRIPT@.
11863 (EXTRA_SCRIPTS): New var, for yacc.
11864
11865 * data/yacc.c (yyerrlab1): Omit attribute if __cplusplus is defined,
11866 since GNU C++ (as of 3.2.1) does not allow attributes on labels.
11867 Problem reported by Nelson H. F. Beebe.
11868
11869 2003-01-03 Paul Eggert <eggert@twinsun.com>
11870
11871 * lib/obstack.h (__INT_TO_PTR) [__STDC__]: Cast result to
11872 (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
11873 when compiling Bison 1.875's `bitset bset = obstack_alloc
11874 (bobstack, bytes);'. Problem reported by Nelson H. F. Beebe.
11875
11876 * src/scan-skel.l (QPUTS): Omit redundant `;' from macro definition.
11877 ([^@\n]): Renamed from [^@\n]+ so that the token buffer does not
11878 grow to a huge size with typical invocation.
11879
11880 * lib/hash.c (_Bool, bool, false, true, __bool_true_false_are_defined):
11881 Use the pattern recommended by Autoconf 2.57, except also protect
11882 against double-definition.
11883 * src/system.h: Likewise.
11884 Portability issues reported by Nelson H. F. Beebe.
11885
11886 * data/glr.c (yybool): Renamed from bool, to avoid collisions in C.
11887 All uses changed. Provide a definition in both C and C++.
11888 (yytrue, yyfalse): Define even if defined (__cplusplus).
11889
11890 * lib/bitset_stats.c (bitset_stats_list): Remove unused var.
11891 Reported by Nelson H. F. Beebe.
11892
11893 * src/scan-skel.l ("@oline@"): Output lineno+1, not lineno.
11894
11895 2003-01-02 Paul Eggert <eggert@twinsun.com>
11896
11897 * data/yacc.c (yyerrlab1): Append `;' after attribute, to
11898 pacify the buggy "smart preprocessor" in MacOS 10.2.3.
11899 Bug reported by Nelson H. F. Beebe.
11900
11901 2003-01-01 Paul Eggert <eggert@twinsun.com>
11902
11903 * Version 1.875.
11904
11905 2002-12-30 Paul Eggert <eggert@twinsun.com>
11906
11907 * src/scan-gram.l (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>","):
11908 Moved here from...
11909 (<INITIAL>","): Here. This causes stray "," to be treated
11910 more uniformly.
11911
11912 * src/scan-gram.l (<SC_BRACED_CODE>"}"): Output ";" before the
11913 last brace in braced code when not in Yacc mode, for compatibility
11914 with Bison 1.35. This resurrects the 2001-12-15 patch to
11915 src/reader.c.
11916
11917 * src/reader.h (YYDECL): Use YYSTYPE, not its deprecated alias
11918 yystype. This follows up the 2002-12-24 YYSTYPE bug fix.
11919
11920 2002-12-28 Paul Eggert <eggert@twinsun.com>
11921
11922 * src/symtab.c (symbol_make_alias): Set type of SYMVAL to be
11923 that of SYM's type. This fixes Debian bug 168069, reported by
11924 Thomas Olsson.
11925
11926 2002-12-28 Paul Eggert <eggert@twinsun.com>
11927
11928 Version 1.75f.
11929
11930 Switch back to the Yacc style of conflict reports, undoing some
11931 of the 2002-07-30 change.
11932 * doc/bison.texinfo (Understanding): Use Yacc style for
11933 conflict reports. Also, use new way of locating rules.
11934 * src/conflicts.c (conflict_report):
11935 Renamed from conflict_report_yacc, removing the old
11936 'conflict_report'. Translate the entire conflict report at once,
11937 so that we don't assume that "," has the same interpretation in
11938 all languages.
11939 (conflicts_output): Use Yacc-style conflict report for each state,
11940 instead of our more-complicated style.
11941 (conflicts_print): Use Yacc-style conflict report, except print
11942 the input file name when not emulating Yacc.
11943 * tests/conflicts.at (Unresolved SR Conflicts, Defaulted
11944 Conflicted Reduction, %expect not enough, %expect too much,
11945 %expect with reduce conflicts): Switch to Yacc-style conflict reports.
11946 * tests/existing.at (GNU Cim Grammar): Likewise.
11947 * tests/glr-regr1.at (Badly Collapsed GLR States): Likewise.
11948
11949 * src/complain.c (warn_at, warn, complain_at, complain, fatal_at,
11950 fatal): Don't invoke fflush; it's not needed and it might even be
11951 harmful for stdout, as stdout might not be open.
11952 * src/reduce.c (reduce_print): Likewise.
11953
11954 2002-12-27 Paul Eggert <eggert@twinsun.com>
11955
11956 Fix a bug where error locations were not being recorded correctly.
11957 This problem was originally reported by Paul Hilfinger in
11958 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00086.html>.
11959
11960 * data/yacc.c (yyparse): New local var yylerrsp, to record the
11961 top of the location stack's error locations.
11962 (yyerrlab): Set it. When discarding a token, push its location
11963 onto yylerrsp so that we don't lose track of the error's end.
11964 (yyerrlab1): Now is only the target of YYERROR, so that we can
11965 properly record the location of the action that failed. For GCC
11966 2.93 and later, insert an __attribute__ ((__unused__)) to avoid
11967 GCC warning about yyerrlab1 being unused if YYERROR is unused.
11968 (yyerrlab2): New label, which yyerrlab now falls through to.
11969 Compute the error's location by applying YYLLOC_DEFAULT to
11970 the locations of all the symbols that went into the error.
11971 * doc/bison.texinfo (Location Default Action): Mention that
11972 YYLLOC_DEFAULT is also invoked for syntax errors.
11973 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
11974 Error locations include the locations of all the tokens that were
11975 discarded, not just the last token.
11976
11977 2002-12-26 Paul Eggert <eggert@twinsun.com>
11978
11979 * src/files.c: Include quote.h.
11980 (compute_output_file_names): Warn if we detect conflicting
11981 outputs to the same file. This should catch the misunderstanding
11982 exemplified by Debian Bug 165349, reported by Bruce Stephens..
11983
11984 * src/conflicts.c (conflicts_print): If the user specifies
11985 "%expect N", report an error if there are any reduce/reduce
11986 conflicts. This is what the manual says should happen.
11987 This fixes Debian bug 130890, reported by Anthony DeRobertis.
11988 * tests/conflicts.at (%expect with reduce conflicts): New test.
11989
11990 Don't use m4_include on relative file names, as it doesn't work as
11991 desired if there happens to be a file with that name under ".".
11992
11993 * m4sugar/version.m4: Remove; it was included but it wasn't used.
11994 * data/Makefile.am (dist_m4sugar_DATA): Remove m4sugar/version.m4.
11995 * data/m4sugar/m4sugar.m4: Don't include m4sugar/version.m4.
11996 * data/glr.c, data/lalr1.cc, data/yacc.c: Don't include c.m4.
11997 * src/output.c (output_skeleton): Use full path names when
11998 specifying a file to include; don't rely on include path, as
11999 it's unreliable when the working file contains a file with
12000 that name.
12001
12002 2002-12-25 Paul Eggert <eggert@twinsun.com>
12003
12004 Remove obsolete references to bison.simple and bison.hairy.
12005 Problem mentioned by Aubin Mahe in
12006 <http://lists.gnu.org/archive/html/help-bison/2002-12/msg00010.html>.
12007 * data/glr.c: Comment fix.
12008 * doc/bison.1: Remove references. Also, mention "yacc".
12009
12010 * src/getargs.c (getargs) [MSDOS]: Don't assume optarg != NULL
12011 with -g option.
12012
12013 * src/parse-gram.y (declaration): Use enum "report_states" rather
12014 than its numeric value 1.
12015
12016 * src/scan-skel.l ("@output ".*\n): Close any old yyout before
12017 opening a new one. This fixes Debian bug 165349, reported by
12018 Bruce Stephens.
12019
12020 2002-12-24 Paul Eggert <eggert@twinsun.com>
12021
12022 Version 1.75e.
12023
12024 * Makefile.maint (cvs-update): Don't assume that the shell
12025 supports $(...), as Solaris sh doesn't.
12026
12027 * src/parse-gram.y (lloc_default): Remove test for empty
12028 nonterminals at the end, since it didn't change the result.
12029
12030 2002-12-24 Paul Eggert <eggert@twinsun.com>
12031
12032 If the user does not define YYSTYPE as a macro, Bison now declares it
12033 using typedef instead of defining it as a macro. POSIX requires this.
12034 For consistency, YYLTYPE is also declared instead of defined.
12035
12036 %union directives can now have a tag before the `{', e.g., the
12037 directive `%union foo {...}' now generates the C code
12038 `typedef union foo { ... } YYSTYPE;'; this is for Yacc compatibility.
12039 The default union tag is `YYSTYPE', for compatibility with Solaris 9
12040 Yacc. For consistency, YYLTYPE's struct tag is now `YYLTYPE'
12041 instead of `yyltype'.
12042
12043 `yystype' and `yyltype' are now obsolescent macros instead of being
12044 typedefs or tags; they are no longer documented and will be
12045 withdrawn in a future release.
12046
12047 * data/glr.c (b4_location_type): Remove.
12048 (YYSTYPE): Renamed from yystype.
12049 (YYSTYPE_IS_DECLARED): New macro, used to prevent double-typedef.
12050 (struct YYLTYPE): Renamed from struct yyltype.
12051 (YYLTYPE): Renamed from yyltype.
12052 (yyltype, yystype): New (and obsolescent) macros,
12053 for backward compatibility.
12054 * data/yacc.c: Likewise.
12055
12056 * data/yacc.c (YYSTYPE): Declare as union YYSTYPE if the user
12057 does not specify a union tag. This is for compatibility with
12058 Solaris 9 yacc.
12059
12060 * src/parse-gram.y (add_param): 2nd arg is now char * not char
12061 const *, since it is now modified by stripping surrounding { }.
12062 (current_braced_code): Remove.
12063 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_UNION,
12064 PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Change names to include
12065 trailing " {...}". Now of type <chars>.
12066 (grammar_declaration): Adjust to bundled tokens.
12067 (code_content): Remove; stripping is now done by add_param.
12068 (print_token_value): Print contents of bundled tokens.
12069 (token_name): New function.
12070
12071 * src/reader.h (braced_code, current_braced_code): Remove.
12072 (token_name): New decl.
12073
12074 * src/scan-gram.l (handle_dollar, handle_at): Now takes int
12075 token_type, not braced_code code_kind. All uses changed.
12076 (SC_PRE_CODE): New state, for scanning after a keyword that
12077 has (or usually has) an immediately-following braced code.
12078 (token_type): New local var, to keep track of which token type
12079 to return when scanning braced code.
12080 (<INITIAL>"%destructor", <INITIAL>"%lex-param",
12081 <INITIAL>"%parse-param", <INITIAL>"%printer",
12082 <INITIAL>"%union"): Set token type and BEGIN SC_PRE_CODE
12083 instead of returning a token type immediately.
12084 (<INITIAL>"{"): Set token type.
12085 (<SC_BRACED_CODE>"}"): Use it.
12086 (handle_action_dollar, handle_action_at): Now returns bool
12087 indicating success. Fail if ! current_rule; this prevents a core dump.
12088 (handle_symbol_code_dollar, handle_symbol_code_at):
12089 Remove; merge body into caller.
12090 (handle_dollar, handle_at): Complain in invalid contexts.
12091
12092 * NEWS, doc/bison.texinfo: Document the above.
12093 * NEWS: Fix years and program names in copyright notice.
12094
12095 2002-12-17 Paul Eggert <eggert@twinsun.com>
12096
12097 * NEWS, doc/bison.texinfo (Parser Function, Pure Calling, Error
12098 Reporting, Table of Symbols): Omit mentions of %lex-param and
12099 %parse-param from the documentation for now.
12100
12101 2002-12-15 Paul Eggert <eggert@twinsun.com>
12102
12103 Undo most of the 2002-11-12 yychar -> yytoken patch, as it broke
12104 GCC 3.2.1 (which depends on yychar == YYEMPTY when there is no
12105 lookahead symbol, and which sets yychar in parser actions) and it
12106 disagreed with the Bison documentation. Bug
12107 reported by Andrew Walrond.
12108
12109 * data/yacc.c (YYTRANSLATE): Don't check for negative argument,
12110 as the caller now does that.
12111 (yyclearin, YYBACKUP, yyparse): Use yychar, not yytoken.
12112 (YYEMPTY): Parenthesize right hand side, since others use it.
12113 (yyparse): Don't assume that our generated code is the only code
12114 that sets yychar.
12115
12116 2002-12-13 Paul Eggert <eggert@twinsun.com>
12117
12118 Version 1.75d.
12119
12120 POSIX requires a "yacc" command.
12121 * src/Makefile.am (bin_SCRIPTS): New macro, for yacc.
12122 (MOSTLYCLEANFILES): Add yacc.
12123 (yacc): New rule.
12124 * doc/bison.texinfo (Invocation, Bison Options): Mention yacc
12125 as an alias for bison y.
12126
12127 * po/LINGUAS: Add da.
12128
12129 * src/getargs.c (__GNU_LIBRARY__) [lint]: Define to work around
12130 problem with latest <getopt.h>.
12131 (HACK_FOR___GNU_LIBRARY___PROTOTYPE): New macro.
12132
12133 * doc/fdl.texi: Upgrade to 1.2.
12134 * lib/alloca.c, lib/error.c, lib/getopt.c, lib/getopt.h
12135 lib/getopt1.c, lib/gettext.h, lib/memrchr.c, lib/obstack.c,
12136 lib/obstack.h, lib/strnlen.c, lib/unlocked-io.h: Sync with
12137 gnulib.
12138 * config/install-sh: Sync with autotools.
12139
12140 Fix a bad interaction with flex 2.5.23 reported by Bruce Lilly in
12141 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
12142 * data/yacc.c (YYLTYPE, struct yyltype): Do not define unless
12143 locations are requested.
12144 (union yyalloc): Do not depend on YYLTYPE_IS_TRIVIAL unless
12145 locations are requested.
12146
12147 2002-12-12 Paul Eggert <eggert@twinsun.com>
12148
12149 Remove unportable casts and storage allocation tricks.
12150 While we're at it, remove almost all casts, since they
12151 usually aren't needed and are a sign of trouble.
12152
12153 * configure.ac (AC_CHECK_TYPES): Check for uintptr_t.
12154
12155 * src/derives.c (derives_compute): Do not subtract NTOKENS from
12156 the pointer DSET returned by malloc; this isn't portable.
12157 Instead, always use DSET[i - NTOKENS] rather than DSET[i].
12158 Similarly for DERIVES.
12159 * src/lalr.c (set_goto_map): Likewise, for GOTO_MAP and TEMP_MAP.
12160 * src/nullable.c (nullable_compute): Likewise, for RSETS and NULLABLE.
12161 * src/reduce.c (reduce_grammar_tables): Likewise, for nontermmap
12162
12163 * src/derives.c (derives_compute): Do not bother invoking
12164 int_of_rule_number, since rule numbers are integers.
12165
12166 * src/files.c (concat2, tr, compute_base_name): Use xmalloc (N)
12167 rather than XMALLOC (char, N).
12168
12169 * src/files.c (filename_split): Rewrite to avoid cast.
12170
12171 * src/gram.h (symbol_number_as_item_number,
12172 item_number_as_symbol_number, rule_number_as_item_number,
12173 item_number_as_rule_number):
12174 Now inline functions rather than macros, to avoid casts.
12175 * src/state.h (state_number_as_int): Likewise.
12176 * src/tables.c (state_number_to_vector_number,
12177 symbol_number_to_vector_number): Likewise.
12178
12179 * src/gram.h (int_of_rule_number): Remove; no longer used.
12180
12181 * src/lalr.c (add_lookback_edge): Use malloc rather than calloc,
12182 since the resulting storage is always stored into.
12183
12184 * src/main.c (alloca) [C_ALLOCA]: Add decl here, the only place
12185 where it's needed.
12186
12187 * src/muscle_tab.c (muscle_m4_output):
12188 Now inline. Return bool, not int.
12189 * src/state.c (state_compare): Likewise.
12190 * src/symtab.c (symbol_check_defined,
12191 symbol_check_alias_consistency, symbol_pack, symbol_translation,
12192 hash_compare_symbol, hash_symbol):
12193 Likewise.
12194 * src/uniqstr.c (uniqstr_print): Likewise.
12195 * src/muscle_tab.c (muscle_m4_output_processor):
12196 New function, to avoid casts.
12197 * src/state.c (state_comparator, stage_hasher): Likewise.
12198 * src/symtab.c (symbol_check_defined_processor,
12199 symbol_check_alias_consistency_processor, symbol_pack_processor,
12200 symbol_translation_processor, hash_symbol_comparator,
12201 hash_symbol_hasher): Likewise.
12202 * src/uniqstr.c (uniqstr_print_processor): Likewise.
12203 * src/muscle_tab.c (muscles_m4_output):
12204 Use new functions instead of casting old functions unportably.
12205 * src/state.c (state_hash_new): Likewise.
12206 * src/symtab.c (symbols_new, symbols_do, symbols_check_defined,
12207 symbols_token_translations_init):
12208 Likewise.
12209 * src/uniqstr.c (uniqstrs_new, hash_initialize, uniqstrs_do): Likewise.
12210
12211 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): Use long local
12212 var instead of casting to long, to avoid casts.
12213 (prepare_states): Use MALLOC rather than alloca, so that we don't
12214 have to worry about alloca.
12215 * src/state.c (state_hash_lookup): Likewise.
12216
12217 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>"'"): Use unsigned char
12218 local var instead of casting to unsigned char, to avoid casts.
12219
12220 * src/state.c (TRANSITIONS_ALLOC, ERRS_ALLOC, REDUCTIONS_ALLOC,
12221 STATE_ALLOC): Remove.
12222 (transitions_new, errs_new, reductions_new, state_new): Use malloc
12223 rather than calloc, and use offsetof to avoid allocating slightly
12224 too much storage.
12225 (state_new): Initialize all members.
12226
12227 * src/state.c (state_hash): Use unsigned accumulator, not signed.
12228
12229 * src/symtab.c (symbol_free): Remove; unused.
12230 (symbol_get): Remove cast in lhs of assignment.
12231 (symbols_do): Now static. Accept generic arguments, not
12232 hashing-related ones.
12233
12234 * src/symtab.h: (NUMBER_UNDEFINED): Remove unnecessary cast.
12235 (symbol_processor): Remove.
12236 (symbols_do): Remove decl; now static.
12237
12238 * src/system.h (alloca): Remove; decl no longer needed.
12239 (<stddef.h>): Include, for offsetof.
12240 (<inttypes.>, <stdint.h>): Include if available.
12241 (uintptr_t): New type, if system lacks it.
12242 (CALLOC, MALLOC, REALLOC): New macros.
12243 All uses of XCALLOC, XMALLOC, and XREALLOC changed to use these
12244 new macros.
12245
12246 * src/tables.c (table_size): Now int, to pacify GCC.
12247 (table_grow, table_ninf_remap): Use signed table size.
12248 (save_row): Don't bother initializing locals when not needed.
12249 (default_goto, goto_actions, pack_vector): Remove unnecessary casts.
12250 * src/uniqstr.c (hash_compare_uniqstr): Likewise.
12251
12252 * src/vcg.h: Correct misspellings.
12253
12254 * src/vcg_defaults.h (G_CMAX): Now INT_MAX.
12255
12256
12257 * src/getargs.c (getargs): Don't assume EOF == -1.
12258
12259 2002-12-09 Paul Eggert <eggert@twinsun.com>
12260
12261 Change identifier spellings to avoid collisions with names
12262 that are reserved by POSIX.
12263
12264 Don't use names ending in _t, since POSIX reserves them.
12265 For consistency, remove _e and _s endings -- they're weren't
12266 needed to remove ambiguity. All uses changed.
12267 * src/uniqstr.h (uniqstr): Renamed from uniqstr_t, which in
12268 turn was just renamed from struniq_t.
12269 * src/uniqstr.c (uniqstr_processor): Renamed from struniq_processor,
12270 which in turn was just renamed from struniq_processor_t.
12271 (hash_compare_uniqstr): Renamed from hash_compare_struniq, which
12272 in turn was renamed from hash_compare_struniq_t.
12273 * src/LR0.c (struct state_list): Renamed from struct state_list_s.
12274 (state_list): Renamed from state_list_t.
12275 * src/assoc.h (assoc): Renamed from assoc_t.
12276 * src/conflicts.c (enum conflict_resolution): Renamed from
12277 enum conflict_resolution_e.
12278 * src/derives.c (struct rule_list): Renamed from struct rule_list_s.
12279 (rule_list): Renamed from rule_list_t.
12280 * src/getargs.h (enum trace): Renamed from enum trace_e.
12281 (enum report): Renamed from enum report_e.
12282 * src/gram.h (item_number): Renamed from item_number_t.
12283 (rule_number): Renamed from rule_number_t.
12284 (struct rule_s): Remove the "rule_s" part; not used.
12285 (rule): Renamed from rule_t.
12286 (rule_filter): Renamed from rule_filter_t.
12287 * src/lalr.c (struct goto_list): Renamed from struct goto_list_s.
12288 (goto_list): Renamed from goto_list_t.
12289 * src/lalr.h (goto_number): Renamed from goto_number_t.
12290 * src/location.h (location): Renamed from location_t.
12291 * src/muscle_tab.c (muscle_entry): Renamed from muscle_entry_t,
12292 and moved here from:
12293 * src/muscle_tab.h (muscle_entry_t): here.
12294 * src/nullable.c (struct rule_list): Renamed from struct rule_list_s.
12295 (rule_list): Renamed from rule_list_t.
12296 * src/print_graph.c (static_graph): Renamed from graph.
12297 * src/reader.h (braced_code): Renamed from braced_code_t.
12298 Remove brace_code_e tag.
12299 * src/relation.h (relation_node): Renamed from relation_node_t.
12300 (relation_nodes): Renamed from relation_nodes_t.
12301 (relation): Renamed from relation_t.
12302 * src/state.h (state_number): Renamed from state_number_t.
12303 (struct state): Renamed from struct state_s.
12304 (state): Renamed from state_t.
12305 (transitions): Renamed from transitions_t. Unused (and
12306 misspelled) transtion_s tag removed.
12307 (errs): Renamed from errs_t. Unused errs_s tag removed.
12308 (reductions): Renamed from reductions_t. Unused tag
12309 reductions_s removed.
12310 * src/symlist.h (symbol_list): Renamed from symbol_list_t.
12311 (struct symbol_list): Renamed from struct symbol_list_s.
12312 * src/symtab.h (symbol_number): Renamed from symbol_number_t.
12313 (struct symbol): Renamed from struct symbol_s.
12314 (symbol): Renamed from symbol_t.
12315 * src/tables.c (vector_number): Renamed from vector_number_t.
12316 (action_number): Renamed from action_t.
12317 * src/tables.h (base_number): Renamed from base_t.
12318 * src/vcg.h (enum color): Renamed from enum color_e.
12319 (enum textmode): Renamed from enum textmode_e.
12320 (enum shape): Renamed from enum shape_e.
12321 (struct colorentry): Renamed from struct colorentry_s.
12322 (struct classname): Renamed from struct classname_s.
12323 (struct infoname): Renamed from struct infoname_s.
12324 (enum layoutalgorithm): Renamed from enum layoutalgorithm_e.
12325 (enum decision): Renamed from enum decision_e.
12326 (enum orientation): Renamed from enum orientation_e.
12327 (enum alignment): Renamed from enum alignment_e.
12328 (enum arrow_mode): Renamed from enum arrow_mode_e.
12329 (enum crossing_type): Renamed from enum crossing_type_e.
12330 (enum view): Renamed from enum view_e.
12331 (struct node): Renamed from struct node_s.
12332 (node): Renamed from node_t.
12333 (enum linestyle): Renamed from enum linestyle_e.
12334 (enum arrowstyle): Renamed from enum arrowstyle_e.
12335 (struct edge): Renamed from struct edge.
12336 (edge): Renamed from edge_t.
12337 (struct graph): Renamed from struct graph_s.
12338 (graph): Renamed from graph_t.
12339 * tests/calc.at (_AT_DATA_CALC_Y, Simple LALR Calculator):
12340 Rename value_t -> value.
12341 * tests/input.at (Torturing the Scanner): Rename value_t -> value,
12342 value_t_as_yystype -> value_as_yystype.
12343
12344 Don't include <errno.h> in the mainstream code, since it
12345 reserves E[A-Z0-9]* and we want to use symbols like 'EQUALS'.
12346 * lib/get-errno.c, lib/get-errno.h: New files.
12347 * lib/Makefile.am (libbison_a_SOURCES): Add get-errno.h,
12348 get-errno.c.
12349 * src/files.c (xfopen, xfclose): Use get_errno instead of errno.
12350 * src/output.c (output_skeleton): Likewise.
12351 * src/scan-gram.l (<INITIAL>{int}): Use set_errno and get_errno
12352 instead of errno.
12353 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>\\x[0-9abcdefABCDEF]+):
12354 Likewise.
12355 (handle_action_dollar, handle_action_at): Likewise.
12356 * src/system.h: Do not include <errno.h>.
12357 (TAB_EXT): Renamed from EXT_TAB.
12358 (OUTPUT_EXT): Renamed from EXT_OUTPUT.
12359
12360 Avoid str[a-z]*, since <string.h> reserves that name space.
12361 Change all instances of "struniq" in names to "uniqstr", and
12362 likewise for "STRUNIQ" and "UNIQSTR".
12363 * src/uniqstr.c: Renamed from src/struniq.c.
12364 * src/uniqstr.h: Renamed from src/struniq.h.
12365 * src/Makefile.am (bison_SOURCES): Adjust to these renamings.
12366 * src/files.c (strsuffix): Remove; unused.
12367 (concat2): Renamed from stringappend. Now static.
12368 * src/files.h (strsuffix, stringappend): Remove; unused.
12369 * src/parse-gram.y (<chars>): Renamed from <string>.
12370 (<uniqstr>): Renamed from <struniq>.
12371 * src/scan-gram.l (obstack_for_string): Renamed from string_obstack.
12372 * src/vcg.h (struct node_s.expand): Renamed from struct node_s.stretch.
12373 (struct graph_s.expand): Renamed from struct graph_s.stretch.
12374 * src/vcg_defaults.h (G_EXPAND): Renamed from G_STRETCH.
12375 (G_LONG_STRAIGHT_PHASE): Renamed from G_STRAIGHT_PHASE.
12376 (N_EXPAND): Renamed from N_STRETCH.
12377
12378 Avoid *_MAX and *_MIN, since <limits.h> reserves that name space.
12379 * data/yacc.c (YYSTACK_GAP_MAXIMUM): Renamed from YYSTACK_GAP_MAX.
12380 * src/gram.h (ITEM_NUMBER_MAX, ITEM_NUMBER_MIN, RULE_NUMBER_MAX):
12381 Remove; unused.
12382 * src/lalr.h (GOTO_NUMBER_MAXIMUM): Renamed from GOTO_NUMBER_MAX.
12383 * src/state.h (STATE_NUMBER_MAXIMUM): Renamed from STATE_NUMBER_MAX.
12384 * src/symtab.h (SYMBOL_NUMBER_MAXIMUM): Renamed from SYMBOL_NUMBER_MAX.
12385 * src/tables.c (VECTOR_NUMBER_MAX, VECTOR_NUMBER_MIN): Remove; unused.
12386 (BASE_MAXIMUM): Renamed from BASE_MAX.
12387 (BASE_MINIMUM): Renamed from BASE_MIN.
12388 (ACTION_MAX): Remove; unused.
12389 (ACTION_NUMBER_MINIMUM): Renamed from ACTION_MIN.
12390 Unnecessary casts removed from above defines.
12391
12392
12393 Fix misspelling in names.
12394 * src/vcg.h (enum_alignment_e): Renamed from enum_alignement_e.
12395 * src/vcg_defaults.h (G_NODE_ALIGNMENT): Renamed from
12396 G_NODE_ALIGNEMENT.
12397
12398
12399 * lib/timevar.c (timevar_report): Renamed from time_report,
12400 for consistency with other names.
12401 * lib/timevar.h (timevar_report): New decl.
12402 * src/system.h (time_report): Remove; decl is now in lib/timevar.h.
12403
12404
12405 Sort include-file uses.
12406
12407 Reorder all include files under src to be in the order "system.h".
12408 then the ../lib include files in angle brackets (alphabetized),
12409 then the . include files in double-quotes (alphabetized). Fix
12410 dependency breakages encountered in this process, as follows:
12411 * src/closure.h, src/derives.h, src/state.h: Include "gram.h".
12412 * src/complain.c: Don't include stdlib.h, string.h _LIBC stuff.
12413 * src/state.h: Include "symtab.h".
12414
12415 2002-12-08 Paul Eggert <eggert@twinsun.com>
12416
12417 * data/glr.c, data/lalr1.cc, data/yacc.c: Do not use __file__,
12418 since this causes problems when __file__ contains character
12419 sequences like "@" that are treated specially by src/scan-skel.l.
12420 Instead, just use the file's basename. This fixes the bug
12421 reported by Martin Mokrejs in
12422 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00007.html>.
12423
12424 2002-12-06 Paul Eggert <eggert@twinsun.com>
12425
12426 Add support for rules that do not have trailing semicolons, as
12427 POSIX requires. Improve the quality of locations in Bison
12428 diagnostics.
12429
12430 * src/location.c: Include <quotearg.h>.
12431 (empty_location): Now const.
12432 (location_print): New function. Follow the recommendation of the
12433 GNU Coding Standards for locations that span file boundaries.
12434 * src/location.h: Do not include <quotearg.h>; no longer needed.
12435 (boundary): New type.
12436 (location_t): Use it. This allows locations to span file boundaries.
12437 All member uses changed: file -> start.file or end.file (as needed),
12438 first_line -> start.line, first_column -> start.column,
12439 last_line -> end.line, last_column -> end.column.
12440 (equal_boundaries): New function.
12441 (LOCATION_RESET, LOCATION_STEP): Remove.
12442 (LOCATION_PRINT): Remove. All callers changed to use location_print.
12443 (empty_location): Now const.
12444 (location_print): New decl.
12445 * src/parse-gram.y (lloc_default): New function, which handles
12446 empty locations more accurately.
12447 (YYLLOC_DEFAULT): Use it.
12448 (%token COLON): Remove.
12449 (%token ID_COLON): New token.
12450 (rules): Use it.
12451 (declarations, rules): Remove trailing semicolon.
12452 (declaration, rules_or_grammar_declaration):
12453 Allow empty (";") declaration.
12454 (symbol_def): Remove empty actions; no longer needed.
12455 (rules_or_grammar_declaration): Remove trailing semicolon.
12456 (semi_colon.opt): Remove.
12457 * src/reader.h: Include location.h.
12458 (scanner_cursor): New decl.
12459 * src/reduce.c (nonterminals_reduce): Use warn_at rather than
12460 rolling our own.
12461 * src/scan-gram.l (YY_USER_INIT): Initialize scanner_cursor instead
12462 of *loc.
12463 (STEP): Remove. No longer needed, now that adjust_location does
12464 the work. All uses removed.
12465 (scanner_cursor): New var.
12466 (adjust_location): Renamed from extend_location. It now sets
12467 *loc and adjusts the scanner cursor. All uses changed.
12468 Don't bother testing for CR.
12469 (handle_syncline): Remove location arg; now updates scanner cursor.
12470 All callers changed.
12471 (unexpected_end_of_file): Now accepts start boundary of token or
12472 comment, not location. All callers changed. Update scanner cursor,
12473 not the location.
12474 (SC_AFTER_IDENTIFIER): New state.
12475 (context_state): Renamed from c_context. All uses changed.
12476 (id_loc, code_start, token_start): New local vars.
12477 (<INITIAL,SC_AFTER_IDENTIFIER>): New initial context. Move all
12478 processing of Yacc white space and equivalents here.
12479 (<INITIAL>{id}): Save id_loc. Begin state SC_AFTER_IDENTIFIER
12480 instead of returning ID immediately, since we need to search for
12481 a subsequent colon.
12482 (<INITIAL>"'", "\""): Save token_start.
12483 (<INITIAL>"%{", "{", "%%"): Save code_start.
12484 (<SC_AFTER_IDENTIFIER>): New state, looking for a colon.
12485 (<SC_YACC_COMMENT>, <SC_COMMENT>, <SC_LINE_COMMENT>):
12486 BEGIN context_state at end, not INITIAL.
12487 (<SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'",
12488 <SC_BRACED_CODE>"}", <SC_PROLOGUE>"%}", <SC_EPILOGUE><<EOF>>):
12489 Return correct token start.
12490 (<SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>): Save start boundary when
12491 the start of a character, string or multiline comment is found.
12492 * tests/conflicts.at (S/R in initial, Defaulted Conflicted
12493 Reduction): Adjust reported locations to match the more-precise
12494 results now expected.
12495 * tests/input.at (Invalid $n, Invalid @n, Type Clashes): Likewise.
12496 * tests/reduce.at (Useless Rules, Reduced Automaton,
12497 Underivable Rules): Likewise.
12498 * tests/regression.at (Invalid inputs): No longer `expecting ";"
12499 or "|"' now that so many other tokens are allowed by the new grammar.
12500
12501 * src/complain.h (current_file): Remove duplicate decl;
12502 current_file is now owned by files.h.
12503 * src/complain.c, src/scan-gram.l: Include files.h.
12504
12505 2002-12-06 Paul Eggert <eggert@twinsun.com>
12506
12507 * data/glr.c (yy_reduce_print): Don't assume that yyrline[yyrule]
12508 promotes to int; it might be unsigned int.
12509 * data/yacc.c (yy_reduce_print): Likewise.
12510
12511 * doc/bison.texinfo (Table of Symbols): YYERROR_VERBOSE should
12512 be #defined in the prologue, not in the Bison declarations.
12513 This fixes Debian Bug 102878, reported by Shaul Karl.
12514
12515 2002-12-02 Paul Eggert <eggert@twinsun.com>
12516
12517 * configure.ac (AC_REPLACE_FUNCS): Add strtoul.
12518 * lib/strtoul.c: New file, from gnulib.
12519 This fixes a porting bug reported by Peter Klein in
12520 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00000.html>.
12521
12522 2002-11-30 Paul Eggert <eggert@twinsun.com>
12523
12524 * src/scan-gram.l (no_cr_read, extend_location): Move to epilogue,
12525 and put only a forward declaration in the prologue. This is for
12526 consistency with the other scanner helper functions.
12527
12528 Type clashes now generate warnings, not errors, since it
12529 appears that POSIX may allow some grammars with type clashes.
12530 * src/reader.c (grammar_current_rule_check): Warn about
12531 type clashes instead of complaining.
12532 * tests/input.at (Type Clashes): Expect warnings, not complaints.
12533
12534 Add Yacc library, since POSIX requires it.
12535 * doc/bison.texinfo (Yacc Library): New node. Regenerate top menu.
12536 * lib/Makefile.am (lib_LIBRARIES, liby_a_SOURCES): New macros.
12537 * lib/main.c, lib/yyerror.c: New files.
12538
12539 gram_error can be static; it need not be extern.
12540 * src/reader.h (gram_error): Remove decl.
12541 * src/parse-gram.y (gram_error): Now static. Add static decl.
12542 (print_token_value): Omit parameter names from forward decl,
12543 for consistency.
12544
12545 2002-11-29 Paul Eggert <eggert@twinsun.com>
12546
12547 * doc/bison.texinfo: Emphasize that yylex and yyerror must
12548 be declared before being used. E.g., one should typically
12549 declare them in the prologue. Use GNU coding style in examples.
12550 Put "const" consistently after the type it modifies. Mention
12551 that C99 supports "inline". Mention that yyerror traditionally
12552 returns "int".
12553
12554 %parse-param and %lex-param now take just one argument, the
12555 declaration; the argument name is deduced from the declaration.
12556
12557 * doc/bison.texinfo (Parser Function, Pure Calling, Error
12558 Reporting, Table of Symbols): Document this.
12559 * src/parse-gram.y (add_param): New function.
12560 (COMMA): Remove.
12561 (declaration): Implement new rule for %parse-param and %lex-param.
12562 * src/scan-gram.l: "," now elicits a warning, rather than being
12563 a token; this is more compatible with byacc.
12564 * tests/calc.at (Simple LALR Calculator): Adopt new convention.
12565
12566 2002-11-27 Paul Eggert <eggert@twinsun.com>
12567
12568 Rename identifiers to avoid real and potential collisions.
12569
12570 * data/c.m4 (b4_yysymprint_generate): yyout -> yyoutput,
12571 to avoid collision with lex macro described by Bruce Lilly in
12572 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
12573 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
12574 * doc/bison.texinfo (Prologue, Tracing): yyprint -> print_token_value.
12575 * src/parse-gram.y (print_token_value): Renamed from yyprint.
12576 All uses changed.
12577 (YYPARSE_PARAM, YYLEX_PARAM, yycontrol): Remove. All uses changed.
12578 The name "yycontrol" violates the name space rules, and this stuff
12579 wasn't being used anyway.
12580 (input): Remove action; this stuff wasn't being used.
12581 (gram_error): Rename local variable yylloc -> loc.
12582 * src/reader.h (struct gram_control_s, gram_control_t): Remove.
12583 (YY_DECL): Don't use "yy" at start of local variables.
12584 All uses changed, e.g., yylloc -> loc.
12585 * src/scan-gram.l (STEP): Renamed from YY_STEP. All uses changed.
12586 (STRING_GROW): Renamed from YY_OBS_GROW. All uses changed.
12587 (STRING_FINISH): Renamed from YY_OBS_FINISH. All uses changed.
12588 (STRING_FREE): Renamed from YY_OBS_FREE. All uses changed.
12589
12590 * src/parse-gram.y (gram_error): loc is now const *.
12591 * src/reader.h (gram_error): Likewise.
12592
12593 2002-11-24 Paul Eggert <eggert@twinsun.com>
12594
12595 Version 1.75c.
12596
12597 * tests/actions.at (Actions after errors): Use an output format
12598 more similar to that of the Printers and Destructors test.
12599 Test the position of the ';' token too.
12600 (Printers and Destructors): Likewise.
12601 (Printers and Destructors: %glr-parser): Remove for now, to avoid
12602 unnecessarily alarming people when the test fails.
12603
12604 * data/yacc.c (yyerrlab1): Move this label down, so that the
12605 parser does not discard the lookahead token if the user code
12606 invokes YYERROR. This change is required for POSIX conformance.
12607
12608 * lib/error.c: Sync with gnulib.
12609
12610 2002-11-22 Paul Eggert <eggert@twinsun.com>
12611
12612 * lib/quotearg.c, lib/quotearg.h: Sync with gnulib.
12613 * lib/mbswidth.c, lib/mbswidth.h: Likewise.
12614 * lib/xmalloc.c: Likewise.
12615
12616 2002-11-20 Paul Eggert <eggert@twinsun.com>
12617
12618 * lib/argmatch.c, lib/argmatch.h: Sync with gnulib.
12619
12620 2002-11-20 Paul Eggert <eggert@twinsun.com>
12621
12622 Avoid use of <assert.h>, as the GNU Coding Standards hint that one
12623 should use `if (! x) abort ();' rather than `assert (x);', and
12624 anyway it's one less thing to worry about configuring.
12625
12626 * data/glr.c, lib/hash.c, src/system.h: Do not include <assert.h>.
12627 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise,
12628 and replace all instances of assert with abort.
12629 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
12630 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Likewise.
12631
12632 * data/glr.c (yydoAction, yyglrReduce, yysplitStack, yyresolveStates,
12633 yyresolveAction, yyprocessOneStack): Use abort rather than assert.
12634 * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
12635 hash_find_entry, hash_rehash, hash_insert): Likewise.
12636 * src/conflicts.c (resolve_sr_conflict): Likewise.
12637 * src/lalr.c (set_goto_map, map_goto): Likewise.
12638 * src/nullable.c (nullable_compute): Likewise.
12639 * src/output.c (prepare_rules, token_definitions_output): Likewise.
12640 * src/reader.c (packgram, reader): Likewise.
12641 * src/state.c (state_new, state_free, state_transitions_set,
12642 state_reduction_find): Likewise.
12643 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias,
12644 symbol_pack): Likewise.
12645 * src/tables.c (conflict_row, pack_vector): Likewise.
12646 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
12647 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
12648 get_node_alignement_str, get_arrow_mode_str, get_crossing_type_str,
12649 get_view_str, get_linestyle_str, get_arrowstyle_str): Likewise.
12650
12651 * lib/argmatch.h (ARRAY_CARDINALITY): Do not bother to #undef.
12652 (ARGMATCH_CONSTRAINT): New macro.
12653 (ARGMATCH_ASSERT): Use it.
12654
12655 * src/system.h (verify): New macro.
12656 * src/getargs.c (trace_argmatch, report_argmatch): Use verify
12657 rather than assert.
12658 * src/tables.c (tables_generate): Likewise.
12659
12660 * src/struniq.c (struniq_assert): Now returns void, and aborts
12661 if the assertion is false.
12662 (struniq_assert_p): Remove.
12663 * src/struniq.h: Likewise.
12664
12665 2002-11-18 Paul Eggert <eggert@twinsun.com>
12666
12667 * data/glr.c (yygetLRActions): Replace `yyindex' with
12668 `yytable[yyindex]' to fix typo introduced in my 2002-11-09 patch.
12669 This fixes the regression with Sun ONE Studio 7 cc that I reported in
12670 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00077.html>.
12671
12672 2002-11-18 Akim Demaille <akim@epita.fr>
12673
12674 * doc/bison.texinfo (Tracing): `yyprint' shouldn't prepend a
12675 space.
12676 From Tim Van Holder.
12677
12678 2002-11-17 Paul Eggert <eggert@twinsun.com>
12679
12680 Pacify Sun ONE Studio 7 lint. Also, rename "ParseError"
12681 to "SyntaxError" for consistency with my 2002-11-15 change.
12682
12683 * data/glr.c (YYDPRINTF, YYDSYMPRINT, YYDSYMPRINTF) [!YYDEBUG]: Do
12684 not define to {}, since this breaks the common use of `YYDPRINTF
12685 ((...));' if a single statement is desired (e.g. before `else').
12686 Work around GCC warnings by surrounding corresponding calls with
12687 {} if needed.
12688 (yyhasResolvedValue): Remove unused function.
12689 (yymergeOptionSets, yyresolvStack): Use `continue;' for empty
12690 loop body.
12691 (yyreportSyntaxError): Renamed from yyreportParseError.
12692 (yyrecoverSyntaxError): Renamed from yyrecoverParseError.
12693 All uses changed.
12694 * tests/calc.at (_AT_DATA_CALC_Y): Make vars static instead of
12695 extern when possible. Remove unused initializations.
12696
12697 2002-11-16 Akim Demaille <akim@epita.fr>
12698
12699 Augment the similarity between GLR and LALR traces.
12700
12701 * data/yacc.c (yy_stack_print, YY_STACK_PRINT, yy_reduce_print)
12702 (YY_REDUCE_PRINT): New.
12703 (yyparse): Use them.
12704 * data/glr.c (yy_reduce_print): Use YYFPRINTF, no need for
12705 YYDPRINT here.
12706 (yyglrReduce, yyrecoverParseError, yyparse): Don't report the
12707 state reached after the reduction/recovery, since...
12708 (yyparse, yyprocessOneStack): Report the state we are entering in.
12709
12710 2002-11-16 Akim Demaille <akim@epita.fr>
12711
12712 * src/getargs.h, src/getargs.c (trace_e, trace_args, trace_types):
12713 Add support for --trace=skeleton.
12714 * src/scan-skel.l: %option debug.
12715 Scan strings of non-@ or \n instead of character by character.
12716 (scan_skel): Handle trace_skeleton.
12717 (QPUTS): New.
12718 (@output_parser_name@, @output_header_name@): ``Restore'' their
12719 support (used to be M4 macros).
12720 * data/yacc.c: Quote larger chunks, a la glr.c.
12721 * data/lalr1.cc: Likewise.
12722 The header guards are no longer available, so use some other
12723 string than `YYLSP_NEEDED'.
12724
12725 2002-11-16 Akim Demaille <akim@epita.fr>
12726
12727 Make the ``Printers and Destructors'' test more verbose, taking
12728 `yacc.c''s behavior as (possibly wrong) reference.
12729
12730 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use printf
12731 instead of fprint on stdout.
12732 Set and report the last_line of the symbols.
12733 Consistently display values and locations.
12734
12735 2002-11-16 Paul Eggert <eggert@twinsun.com>
12736
12737 * data/yacc.c: Avoid over-quoting of __line__ and __file__.
12738
12739 2002-11-15 Paul Eggert <eggert@twinsun.com>
12740
12741 * tests/actions.at (Actions after errors): New test case.
12742
12743 * data/glr.c, data/lalr1.cc, data/yacc.cc, doc/bison.texinfo,
12744 src/conflicts.c, src/parse-gram.y, src/tables.c, src/tables.h,
12745 tests/action.at, tests/calc.at, tests/conflicts.at,
12746 tests/cxx-type.at, tests/regression.at:
12747 "parse error" -> "syntax error" for POSIX compatibility.
12748 "parsing stack overflow..." -> "parser stack overflow" so
12749 that code matches Bison documentation.
12750
12751 2002-11-15 Akim Demaille <akim@epita.fr>
12752
12753 * src/parse-gram.y (declaration): Have %parse-param and %lex-param
12754 take two BRACED_CODE, not two string_content.
12755 Free the scanner's obstack when we are done.
12756 (code_content): New.
12757 * tests/calc.at: Adjust.
12758 * doc/bison.texinfo: Adjust.
12759 Also, make sure to include the `,' for these declarations.
12760
12761 2002-11-15 Tim Van Holder <tim.van.holder@pandora.be>
12762
12763 * m4/prereq.m4: Removed the commented jm_PREREQ_HASH
12764 definition; avoids potential autoreconf problems.
12765
12766 2002-11-15 Akim Demaille <akim@epita.fr>
12767
12768 Always check the value returned by yyparse.
12769
12770 * tests/calc.at (_AT_DATA_CALC_Y): Have `main' exit with the value
12771 returned by yyparse.
12772 (_AT_CHECK_CALC_ERROR): Take the expected exit value as argument.
12773 Adjust calls.
12774 * tests/glr-regr1.at (glr-regr1.y): Have `main' exit with the value
12775 returned by yyparse.
12776
12777 2002-11-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
12778
12779 * data/glr.c (yyFail): Always set yyerrflag. Corrects regression
12780 on input.at test.
12781
12782 2002-11-14 Paul Eggert <eggert@twinsun.com>
12783
12784 * src/output.c (output_skeleton): Call xfopen instead of
12785 duplicating xfopen's body.
12786
12787 Fix bugs reported by Nelson H. F. Beebe in
12788 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00078.html>.
12789
12790 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that
12791 "$CC -E foo.h" is allowed, as this doesn't work with the Portland
12792 Group compiler. Instead, use "$CC -E bar.c". Include the .h
12793 file twice in the grammar, as an extra check.
12794
12795 * tests/input.at (Torturing the Scanner): Surround the
12796 backslash-newline tests with "#if 0", to make it less likely that
12797 we'll run into compiler bugs. Bring back solitary \ inside
12798 comment, but add a closing comment to work around HP C bug. Don't
12799 test backslash-newline in C character constant.
12800
12801 2002-11-14 Akim Demaille <akim@epita.fr>
12802
12803 * tests/synclines.at (AT_SYNCLINES_COMPILE): Ignore the exit
12804 status of the compiler.
12805 Calling `exit 1' is no longer needed.
12806 Reported by Nelson H. F. Beebe.
12807
12808 2002-11-14 Akim Demaille <akim@epita.fr>
12809
12810 * tests/atlocal.in (CPPFLAGS): We have config.h.
12811 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR):
12812 New.
12813 * tests/actions.at, tests/calc.at, tests/conflicts.at,
12814 * tests/cxx-type.at, tests/glr-regr1.at, tests/headers.at,
12815 * tests/regression.at, tests/torture.at: Use them for all the
12816 grammars that are to be compiled.
12817 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Rename as...
12818 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): this.
12819 * doc/bison.texinfo (GLR Parsers): Document `inline'.
12820
12821 2002-11-14 Akim Demaille <akim@epita.fr>
12822
12823 * doc/bison.texinfo: Various formatting changes (alignments in
12824 samples, additional @group/@end group, GCS in samples.
12825 Use @deffn instead of simple @table to define the directives,
12826 macros, variables etc.
12827
12828 2002-11-13 Paul Eggert <eggert@twinsun.com>
12829
12830 Fix some bugs reported by Albert Chin-A-Young in
12831 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00066.html>.
12832
12833 * tests/input.at (Torturing the Scanner): Don't invoke "cc a.c b.c
12834 -o c"; the HP C compiler chatters during compilation.
12835 Instead, invoke "cc -c a.c -o a.o; cc -c b.c -o b.o; cc a.o b.o -o c".
12836 * tests/headers.at (export YYLTYPE): Likewise.
12837
12838 * tests/input.at (Torturing the Scanner): Remove lines containing
12839 solitary backslashes, as they tickle a bug in the HP C compiler.
12840
12841 * tests/glr-regr1.at (Badly Collapsed GLR States): Avoid //
12842 comments, since they're not portable. Use GNU coding style.
12843
12844 2002-11-13 Akim Demaille <akim@epita.fr>
12845
12846 * data/yacc.c: Leave bigger chunks of quoted text.
12847 (YYDSYMPRINTF): New.
12848 Use it to report symbol activities.
12849 * data/glr.c (YYDSYMPRINTF): New.
12850 Use it.
12851
12852 2002-11-12 Paul Eggert <eggert@twinsun.com>
12853
12854 Version 1.75b.
12855
12856 * data/glr.c (yydoAction): Return YYRESULTTAG, not int.
12857 (yyglrReduce): Return yyok, not 0.
12858 This should avoid the enumerated-type warnings reported
12859 by Nelson H. F. Beebe in
12860 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00057.html>.
12861
12862 * lib/bbitset.h (BITSET_INLINE): Remove.
12863 * lib/bitset.h [! BITSET_INLINE]: Remove.
12864 (bitset_set, bitset_reset, bitset_test): Rename local vars
12865 to avoid shadowing warnings by GCC.
12866
12867 * data/glr.c (inline): Remove #define. It's the user's
12868 responsibility to #define it away, just like 'const'.
12869 This fixes one of the bugs reported by Nelson H. F. Beebe in
12870 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00058.html>.
12871
12872 * Makefile.maint (po-check): Scan .l and .y files instead of the
12873 .c and the .h files that they generate. This fixes the bug
12874 reported by Tim Van Holder in:
12875 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00062.html>
12876 Look for N_ as well as for _. Try to avoid matching #define for
12877 N_ and _.
12878 * po/POTFILES.in: Remove src/parse-gram.c, src/scan-gram.c,
12879 src/system.h. Add src/parse-gram.y, src/scan-gram.l.
12880 * src/scan-gram.l: Revamp regular expressions so that " and '
12881 do not confuse xgettext.
12882
12883 * src/struniq.h (struniq_new): Do not declare the return type
12884 to be 'const'; this violates the C standard.
12885 * src/struniq.c (struniq_new): Likewise.
12886
12887 2002-11-12 Albert Chin-A-Young <china@thewrittenword.com>
12888
12889 * src/Makefile.am (LDADD): Link $(LIBINTL) last to avoid the
12890 duplicate definition of optind on Tru64 UNIX 4.0D with the Compaq
12891 linker.
12892
12893 2002-11-12 Akim Demaille <akim@epita.fr>
12894
12895 * Makefile.maint: Sync with Autoconf:
12896 (local_updates): New.
12897
12898 2002-11-12 Akim Demaille <akim@epita.fr>
12899
12900 * po/POTFILES.in (src/lalr.c, src/state.c): Remove
12901
12902 2002-11-12 Akim Demaille <akim@epita.fr>
12903
12904 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Display the
12905 locations.
12906
12907 2002-11-12 Akim Demaille <akim@epita.fr>
12908
12909 * data/c.m4 (b4_yysymprint_generate): Pass *yyvaluep to YYPRINT,
12910 not yyvalue.
12911
12912 2002-11-12 Akim Demaille <akim@epita.fr>
12913
12914 * tests/actions.at (AT_CHECK_PRINTER_AND_DESTRUCTOR): New.
12915 Use it to test the GLR parser.
12916
12917 2002-11-12 Akim Demaille <akim@epita.fr>
12918
12919 * tests/regression.at (input.y): s/YYEOF/MYEOF/, as the skeleton
12920 defines it.
12921 * data/glr.c (yystos): New.
12922 (b4_yysymprint_generate, b4_yydestruct_generate): Invoke.
12923 (YYDSYMPRINT): New.
12924 (yyval): Don't define it, it is handled via M4.
12925 (yyrecoverParseError): Free verbosely the discarded symbols.
12926 * data/yacc.c (yysymprint): Remove, rather...
12927 (b4_yysymprint_generate): invoke.
12928 * data/c.m4 (b4_yysymprint_generate): New.
12929 Accept pointers as arguments, as opposed to the version from
12930 yacc.c.
12931 (b4_yydestruct_generate): Likewise.
12932 * tests/cations.at (Printers and Destructors): Use Bison directives
12933 instead of CPP macros.
12934 Don't rely on internal details.
12935
12936 2002-11-12 Akim Demaille <akim@epita.fr>
12937
12938 * data/c.m4 (b4_yydestruct_generate, b4_symbol_actions): New.
12939 * data/yacc.c: Rename yychar1 as yytoken, as in glr.c.
12940 Don't work on yychar (i.e., do set it to YYEMPTY, don't match
12941 it against YYEMPTY and so forth), work on yytoken (i.e., set
12942 it to YYEMPTY etc.).
12943 (yydestruct): Replace with a b4_yydestruct_generate invocation.
12944 (b4_symbol_actions): Remove.
12945 * data/glr.c (YYTRANSLATE): As for yacc.c, if negative, it stands
12946 for 0, end-of-input.
12947
12948 2002-11-12 Akim Demaille <akim@epita.fr>
12949
12950 * doc/bison.texinfo (Destructor Decl): New.
12951
12952 2002-11-12 Akim Demaille <akim@epita.fr>
12953
12954 * src/tables.c (tables_generate): Use free for pointers that
12955 cannot be NULL, not XFREE.
12956 (pack_vector): Use assert, not fatal, for bound violations.
12957 * src/state.c (state_new): Likewise.
12958 * src/reader.c (reader): Likewise.
12959 * src/lalr.c (set_goto_map): Likewise.
12960 * src/location.h (LOCATION_PRINT): If first_line is 0, just issue
12961 the file name.
12962
12963 2002-11-12 Akim Demaille <akim@epita.fr>
12964
12965 * src/scan-gram.l, src/reader.h (scanner_last_string_free):
12966 Restore.
12967 * src/scan-gram.l (last_string): Is global to the file, not to
12968 yylex.
12969 * src/parse-gram.y (input): Don't append the epilogue here,
12970 (epilogue.opt): do it here, and free the scanner's obstack.
12971 * src/reader.c (epilogue_set): Rename as...
12972 (epilogue_augment): this.
12973 * data/c.m4 (b4_epilogue): Defaults to empty.
12974
12975 2002-11-12 Akim Demaille <akim@epita.fr>
12976
12977 * src/getargs.c (long_options): Remove duplicates.
12978 * src/vmsgetargs.c, src/build.com, src/bison.cld, src/vmshlp.mar:
12979 Remove.
12980 * doc/bison.rnh: Remove.
12981 * doc/bison.texinfo (VMS Invocation): Remove.
12982
12983 2002-11-12 Akim Demaille <akim@epita.fr>
12984
12985 * src/struniq.h, src/struniq.c (struniq_t): Is const.
12986 (STRUNIQ_EQ, struniq_assert, struniq_assert_p): New.
12987
12988 Use struniq for symbols.
12989
12990 * src/symtab.h (symbol_t): The tag member is a struniq.
12991 (symbol_type_set): Adjust.
12992 * src/symtab.c (symbol_new): Takes a struniq.
12993 (symbol_free): Don't free the tag member.
12994 (hash_compare_symbol_t, hash_symbol_t): Rename as...
12995 (hash_compare_symbol, hash_symbol): these.
12996 Use the fact that tags as struniqs.
12997 (symbol_get): Use struniq_new.
12998 * src/symlist.h, src/symlist.c (symbol_list_n_type_name_get):
12999 Returns a strniq.
13000 * src/reader.h (merger_list, grammar_currentmerge_set): The name
13001 and type members are struniqs.
13002 * src/reader.c (get_merge_function)
13003 (grammar_current_rule_merge_set): Adjust.
13004 (TYPE, current_type): Are struniq.
13005
13006 Use struniq for file names.
13007
13008 * src/files.h, src/files.c (infile): Split into...
13009 (grammar_file, current_file): these.
13010 * src/scan-gram.c (YY_USER_INIT, handle_syncline): Adjust.
13011 * src/reduce.c (reduce_print): Likewise.
13012 * src/getargs.c (getargs): Likewise.
13013 * src/complain.h, src/complain.c: Likewise.
13014 * src/main.c (main): Call struniqs_new early enough to use it for
13015 file names.
13016 Don't free the input file name.
13017
13018 2002-11-12 Akim Demaille <akim@epita.fr>
13019
13020 * src/symtab.c (symbol_free): Remove dead deactivated code:
13021 type_name are properly removed.
13022 Don't use XFREE to free items that cannot be NULL.
13023 * src/struniq.h, src/struniq.c: New.
13024 * src/main.c (main): Initialize/free struniqs.
13025 * src/parse-gram.y (%union): Add astruniq member.
13026 (yyprint): Adjust.
13027 * src/scan-gram.l (<{tag}>): Return a struniq.
13028 Free the obstack bit that used to store it.
13029 * src/symtab.h (symbol_t): The 'type_name' member is a struniq.
13030
13031 2002-11-11 Paul Eggert <eggert@twinsun.com>
13032
13033 Revamp to fix many (but not all) of the C- and M4-related quoting
13034 problems. Among other things, this fixes the Bison bug reported
13035 by Jan Hubicka when processing the Bash grammar; see:
13036 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00039.html>
13037
13038 Use new @ escapes consistently. Represent brackets with @{ and @}
13039 rather than @<:@ and @:>@, since this works a bit better with dumb
13040 editors like vi. Represent @ with @@, since @ is now consistently
13041 an escape. Use @oline@ and @ofile@ rather than __oline__ and
13042 __ofile__, to avoid unexpected expansions. Similarly, use @output
13043 rather than #output.
13044
13045 * data/c.m4 (b4_copyright): Omit file name from comment, since
13046 the file name could contain "*/".
13047 (b4_synclines_flag): Don't quote the 2nd argument; it should already
13048 be quoted. All uses changed.
13049
13050 * data/glr.c: Use new @ escapes consistently.
13051 (b4_input_suffix, b4_output_parser_suffix, b4_output_parser_name,
13052 b4_output_header_suffix, b4_output_header_name, b4_header_guard):
13053 Remove, since they couldn't handle arbitrary characters in file
13054 names.
13055 * data/lalr1.cc: Likewise.
13056 * data/yacc.c: Likewise.
13057
13058 * src/files.c (output_infix): Remove; all uses removed.
13059 * src/files.h: Likewise.
13060
13061 * data/glr.c: Remove use of "#ifdef b4_header_guard", since it
13062 mishandled funny characters in file names, and anyway it isn't
13063 needed any more.
13064 * data/yacc.c: Likewise.
13065 * data/lalr1.cc: Use YYSLP_NEEDED instead of b4_header_guard.
13066
13067 * data/glr.c (YYSTYPE_IS_TRIVIAL): Define when the .h file would.
13068 * data/yacc.c: Likewise.
13069
13070 * src/muscle_tab.c: Include quotearg.h, since we need to quote C
13071 strings now.
13072 (muscle_init): Quote filename as a C string.
13073 * src/muscle_tab.h (MUSCLE_GROW_STRING_PAIR): Remove; unused.
13074 (MUSCLE_OBSTACK_SGROW, MUSCLE_INSERT_C_STRING): New macros.
13075 * src/output.c (escaped_file_name_output): New function.
13076 (prepare_symbols): Quote tokens for M4.
13077 (prepare): Don't insert output_infix, output_prefix,
13078 output_parser_name, output_header_name; this is now down by scan-skel.
13079 Insert skeleton as a C string.
13080
13081 * src/output.c (user_actions_output, symbol_destructors_output,
13082 symbol_printers_output): Quote filenames for C and M4.
13083 * src/reader.c (prologue_augment, epilogue_set): Likewise.
13084
13085 * src/scan-gram.l (<SC_CHARACTER>): Don't worry about any backslash
13086 escapes other than \\ and \'; this simplifies the code.
13087 (<SC_STRING>): Likewise, for \\ and \".
13088 (<SC_COMMENT,SC_LINE_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,
13089 SC_PROLOGUE,SC_EPILOGUE>): Escape $ and @, too.
13090 Use new escapes @{ and @} for [ and ].
13091
13092 * src/scan-skel.l (yylineno, yyoutname): Remove static vars, replacing
13093 them with auto vars.
13094 Switch to new escape scheme, where @ is the escape character uniformly.
13095 Abort if a stray escape character is found. Avoid unbounded input
13096 buffer when parsing non-escaped text.
13097
13098 * tests/input.at (Torturing the Scanner): Add tests that @oline@,
13099 __oline__, #output, $@, and @{ do not have unintended meanings.
13100
13101 2002-11-09 Paul Eggert <eggert@twinsun.com>
13102
13103 Fix the test failure due to GCC warnings described in
13104 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00000.html>.
13105 * data/glr.c (yyis_pact_ninf, yyis_table_ninf): New macros, which
13106 evaluate to 0 if it's impossible for NINF to be in the respective
13107 table.
13108 (yygetLRActions, yyrecoverParseError): Use them.
13109
13110 * src/scan-gram.l (unexpected_end_of_file): Fix bug: columns were
13111 counted in the token inserted at end of file. Now takes
13112 location_t *, not location_t, so that the location can be
13113 adjusted. All uses changed.
13114
13115 * tests/regression.at (Invalid inputs): Adjust wording in
13116 diagnostic to match the new behavior.
13117
13118 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR,
13119 AT_DATA_HORIZONTAL_GRAMMAR, AT_DATA_LOOKAHEADS_GRAMMAR,
13120 AT_DATA_STACK_TORTURE): Replace `assert (x);' with `if (! (x))
13121 abort ();'. This reduces the runtime of the "Many lookaheads"
13122 test from 27.6 to 2.7 minutes on a 440 MHz Ultrasparc III running
13123 GCC 3.2.
13124
13125 2002-11-07 Paul Eggert <eggert@twinsun.com>
13126
13127 * src/parse-gram.y (CHARACTER): Remove unused token.
13128 All uses removed.
13129
13130 * src/scan-gram.l: Remove stack option. We no longer use the
13131 stack, since the stack was never deeper than 1; instead, use the
13132 new auto var c_context to record the stacked value.
13133
13134 Remove nounput option. At an unexpected end of file, we now unput
13135 the minimal input necessary to end cleanly; this simplifies the
13136 code.
13137
13138 Avoid unbounded token sizes where this is easy.
13139
13140 (unexpected_end_of_file): New function.
13141 Use it to systematize the error message on unexpected EOF.
13142 (last-string): Now auto, not static.
13143 (YY_OBS_FREE): Remove unnecessary do while (0) wrapper.
13144 (scanner_last_string_free): Remove; not used.
13145 (percent_percent_count): Move decl to just before use.
13146 (SC_ESCAPED_CHARACTER): Return ID at unexpected end of file,
13147 not the (never otherwised-used) CHARACTER.
13148
13149 2002-11-07 Akim Demaille <akim@epita.fr>
13150
13151 Let yyerror always receive the msg as last argument, so that
13152 yyerror can be variadic.
13153
13154 * data/yacc.c (b4_yyerror_args): New.
13155 Use it when calling yyerror.
13156 * data/glr.c (b4_yyerror_args, b4_lyyerror_args): New.
13157 Use it when calling yyerror.
13158 * doc/bison.texinfo (Error Reporting): Adjust.
13159 * tests/calc.at (_AT_DATA_CALC_Y): Adjust.
13160 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Adjust.
13161
13162 2002-11-06 Akim Demaille <akim@epita.fr>
13163
13164 #line should have quoted strings.
13165 Ideally, this should be done by m4_quotearg.
13166
13167 * src/scan-skel.l: Include quotearg.h.
13168 Quote __ofile__.
13169 * src/output.c (symbol_printers_output)
13170 (symbol_destructors_output): Quote the file name.
13171
13172 2002-11-06 Akim Demaille <akim@epita.fr>
13173
13174 * tests/regression.at (Invalid inputs): Adjust to the recent
13175 messages.
13176
13177 2002-11-06 Akim Demaille <akim@epita.fr>
13178
13179 Restore --no-lines.
13180 Reported by Jim Kent.
13181
13182 * data/c.m4 (b4_syncline): New.
13183 * data/glr.c, data/yacc.c, data/lalr1.cc: Use it.
13184 * src/reader.c (prologue_augment, epilogue_set): Use b4_syncline.
13185 * src/output.c (user_actions_output): Likewise.
13186 (prepare): Define 'b4_synclines_flag'.
13187 * src/muscle_tab.c (muscle_init): Don't define b4_linef.
13188
13189 2002-11-06 Akim Demaille <akim@epita.fr>
13190
13191 * src/main.c (main): Free `infile'.
13192 * src/scan-gram.l (handle_syncline): New.
13193 Recognize `#line'.
13194 * src/output.c (user_actions_output, symbol_destructors_output)
13195 (symbol_printers_output): Use the location's file name, not
13196 infile.
13197 * src/reader.c (prologue_augment, epilogue_set): Likewise.
13198
13199 2002-11-05 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13200
13201 * src/tables.c (matching_state): Don't allow states to match if
13202 either has GLR conflict entries.
13203
13204 2002-11-05 Paul Eggert <eggert@twinsun.com>
13205
13206 * src/scan-gram.l: Use more accurate diagnostics, e.g.
13207 "integer out of range" rather than "invalid value".
13208 * tests/input.at (Invalid $n, Invalid @n): Change expected wording
13209 accordingly.
13210
13211 Scan <% and %> digraphs in C code as POSIX 1003.1-2001 requires.
13212 Also, remove one static variable in the scanner.
13213
13214 * src/scan-gram.l (braces_level): Now auto, not static.
13215 Initialize to zero if the compiler is being picky.
13216 (INITIAL): Clear braces_level instead of incrementing it.
13217 (SC_BRACED_CODE): Treat <% and %> as { and } when inside C code,
13218 as POSIX 1003.1-2001 requires.
13219 * src/system.h (IF_LINT): New macro, taken from coreutils.
13220 * configure.ac: Define "lint" if --enable-gcc-warnings.
13221
13222 2002-11-05 Akim Demaille <akim@epita.fr>
13223
13224 * src/scan-gram.l: When it starts with `%', complain about the
13225 whole directive, not just that `invalid character: %'.
13226
13227 2002-11-04 Akim Demaille <akim@epita.fr>
13228
13229 * Makefile.maint: Update from Autoconf.
13230 (update, cvs-update, po-update, do-po-update): New.
13231
13232 2002-11-04 Akim Demaille <akim@epita.fr>
13233
13234 * tests/glr-regr1.at (Badly Collapsed GLR States): Prototype yylex
13235 and yyerror.
13236 Have yyerror `use' its arguments.
13237 * tests/calc.at (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF
13238 returns true when location & yacc & pure & parse-param.
13239 (_AT_DATA_CALC_Y): Let yyerror ``use'' its arguments.
13240
13241 2002-11-04 Akim Demaille <akim@epita.fr>
13242
13243 * src/location.h (LOCATION_PRINT): Use quotearg slot 3 to avoid
13244 clashes.
13245 * src/scan-gram.l: Use [\'] instead of ['] to pacify
13246 font-lock-mode.
13247 Use complain_at.
13248 Use quote, not quote_n since LOCATION_PRINT no longer uses the
13249 slot 0.
13250
13251 2002-11-03 Paul Eggert <eggert@twinsun.com>
13252
13253 * src/reader.c (get_merge_function, grammar_current_rule_check):
13254 Use consistent diagnostics for reporting type name clashes.
13255 Quote the types with <>, for consistency with Yacc.
13256 * tests/input.at (Type Clashes): Adjust to diagnostic changes.
13257
13258 2002-11-03 Akim Demaille <akim@epita.fr>
13259
13260 * data/c.m4 (b4_identification, b4_user_args, b4_parse_param):
13261 New.
13262 * data/yacc.m4 (b4_pure_args, b4_Pure_args): New.
13263 (b4_parse_param): Remove.
13264 Use b4_identification.
13265 Propagate b4_pure_args where needed to pass them to yyerror.
13266 * data/glr.m4 (b4_parse_param): Remove.
13267 (b4_user_formals, b4_pure_args, b4_pure_formals, b4_lpure_args)
13268 (b4_lpure_formals): New.
13269 Use b4_identification.
13270 (YY_USER_FORMALS, YY_USER_ARGS): Remove, replaced by
13271 b4_user_formals and b4_user_args.
13272 (yyexpandGLRStack, yyFail, yyaddDeferredAction, yyglrShiftDefer)
13273 (yyreportAmbiguity): When using a pure parser, also need
13274 the location, and the parse-params.
13275 Adjust callers.
13276 (yyuserAction, yyglrShift, yyreportParseError, yyrecoverParseError):
13277 When using a pure parser, also need the parse-params.
13278 Adjust callers.
13279 * tests/calc.at: Test pure (%pure-parser) and absolutely pure
13280 (%pure-parser + %parse-param) LALR and GLR parsers.
13281 (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): New, define AT_PARAM_IF,
13282 AT_LOCATION_IF, AT_PURE_IF, AT_GLR_IF, AAT_PURE_AND_LOC_IF,
13283 AT_GLR_OR_PARAM_IF, AT_YYERROR_ARG_LOC_IF, AT_YYERROR_SEES_LOC_IF.
13284 (_AT_DATA_CALC_Y): Equip for purity of yyerror.
13285 (_AT_CHECK_CALC_ERROR): Use AT_YYERROR_SEES_LOC_IF.
13286 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Equip for yyerror purity.
13287 * doc/bison.texinfo: Untabify the whole file.
13288 (Parser Function): Document %parse-param, deprecate YYPARSE_PARAM.
13289 (Pure Calling): Document %lex-param, deprecate YYLEX_PARAM.
13290 (Error Reporting): Adjust to these new directives.
13291 Document %error-verbose, deprecate YYERROR_VERBOSE.
13292
13293 2002-11-03 Akim Demaille <akim@epita.fr>
13294
13295 * tests/calc.at: Change all the AT_CHECK_CALC_LALR and
13296 AT_CHECK_CALC_GLR invocations to use % directives, instead of
13297 command line options.
13298 * tests/cxx-type.at: Formatting changes.
13299
13300 2002-11-03 Paul Eggert <eggert@twinsun.com>
13301
13302 * src/scan-gram.l: Revamp to fix POSIX incompatibilities,
13303 to count columns correctly, and to check for invalid inputs.
13304
13305 Use mbsnwidth to count columns correctly. Account for tabs, too.
13306 Include mbswidth.h.
13307 (YY_USER_ACTION): Invoke extend_location rather than LOCATION_COLUMNS.
13308 (extend_location): New function.
13309 (YY_LINES): Remove.
13310
13311 Handle CRLF in C code rather than in Lex code.
13312 (YY_INPUT): New macro.
13313 (no_cr_read): New function.
13314
13315 Scan UCNs, even though we don't fully handle them yet.
13316 (convert_ucn_to_byte): New function.
13317
13318 Handle backslash-newline correctly in C code.
13319 (SC_LINE_COMMENT, SC_YACC_COMMENT): New states.
13320 (eols, blanks): Remove. YY_USER_ACTION now counts newlines etc.;
13321 all uses changed.
13322 (tag, splice): New EREs. Do not allow NUL or newline in tags.
13323 Use {splice} wherever C allows backslash-newline.
13324 YY_STEP after space, newline, vertical-tab.
13325 ("/*"): BEGIN SC_YACC_COMMENT, not yy_push_state (SC_COMMENT).
13326
13327 (letter, id): Don't assume ASCII; e.g., spell out a-z.
13328
13329 ({int}, handle_action_dollar, handle_action_at): Check for integer
13330 overflow.
13331
13332 (YY_STEP): Omit trailing semicolon, so that it's more like C.
13333
13334 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>): Allow \0 and \00
13335 as well as \000. Check for UCHAR_MAX, not 255.
13336 Allow \x with an arbitrary positive number of digits, as in C.
13337 Check for overflow here.
13338 Allow \? and UCNs, for compatibility with C.
13339
13340 (handle_symbol_code_dollar): Use quote_n slot 1 to avoid collision
13341 with quote slot used by complain_at.
13342
13343 * tests/input.at: Add tests for backslash-newline, m4 quotes
13344 in symbols, long literals, and funny escapes in strings.
13345
13346 * configure.ac (jm_PREREQ_MBSWIDTH): Add.
13347 * lib/Makefile.am (libbison_a_SOURCES): Add mbswidth.h, mbswidth.c.
13348 * lib/mbswidth.h, lib/mbswidth.c: New files, from GNU gettext.
13349 * m4/Makefile.am (EXTRA_DIST): Add mbswidth.m4.
13350 * m4/mbswidth.m4: New file, from GNU coreutils.
13351
13352 * doc/bison.texinfo (Grammar Outline): Document // comments.
13353 (Symbols): Document that trigraphs have no special meaning in Bison,
13354 nor is backslash-newline allowed.
13355 (Actions): Document that trigraphs have no special meaning.
13356
13357 * src/location.h (LOCATION_COLUMNS, LOCATION_LINES): Remove;
13358 no longer used.
13359
13360 2002-11-02 Paul Eggert <eggert@twinsun.com>
13361
13362 * src/reader.c: Don't include quote.h; not needed.
13363 (get_merge_function): Reword warning to be consistent with
13364 type clash diagnostic in grammar_current_rule_check.
13365
13366 * lib/quotearg.c (quotearg_buffer_restyled): Fix off-by-two
13367 bug in trigraph handling.
13368
13369 * src/output.c (prepare_symbols): When printing token names,
13370 escape "[" as "@<:@" and likewise for "]".
13371
13372 * src/system.h (errno): Remove declaration, as we are now
13373 assuming C89 or better, and C89 guarantees errno.
13374
13375 2002-10-30 Paul Eggert <eggert@twinsun.com>
13376
13377 * lib/bitset_stats.c (bitset_stats_read, bitset_stats_write):
13378 Check for close failures.
13379 * src/files.h (xfclose): Return void, not int, since it always
13380 returned zero.
13381 * src/files.c (xfclose): Likewise. Report I/O error if ferror
13382 indicates one.
13383 * src/output.c (output_skeleton): Use xfclose rather than fclose
13384 and ferror. xfclose now checks ferror.
13385
13386 * data/glr.c (YYLEFTMOST_STATE): Remove.
13387 (yyreportTree): Use a stack-based leftmost state. This avoids
13388 our continuing battles with bogus warnings about initializers.
13389
13390 2002-10-30 Akim Demaille <akim@epita.fr>
13391
13392 * src/system.h: Don't use #ifdef/#ifndef on HAVE_ values, only
13393 #if.
13394
13395 2002-10-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13396
13397 * tests/glr-regr1.at: New test for reported regressions.
13398 * tests/testsuite.at: Add glr-regr1.at test.
13399 * tests/Makefile.am: Add glr-regr1.at test.
13400
13401 2002-10-24 Paul Eggert <eggert@twinsun.com>
13402
13403 Version 1.75a.
13404
13405 * tests/calc.at (_AT_DATA_CALC_Y): Remove unused strcat declaration.
13406 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Include stdlib.h, since
13407 we use malloc. Don't assume 'A' through 'Z' are contiguous.
13408 Don't assume strdup exists; POSIX says its an XSI extension.
13409 Check for buffer overflow on input.
13410
13411 2002-10-24 Akim Demaille <akim@epita.fr>
13412
13413 * src/output.c (output_skeleton): Don't disable M4sugar comments
13414 too soon: it results in comments being expanded.
13415 * data/yacc.c, data/glr.c, data/lalr1.cc: Do it right before the
13416 first output.
13417
13418 2002-10-24 Akim Demaille <akim@epita.fr>
13419
13420 * data/yacc.c (m4_int_type): New.
13421 * data/c.m4 (m4_int_type): Don't use yysigned_char, but `signed
13422 char' as only yacc.c wants K&R portability.
13423 * data/glr.c (yysigned_char): Remove.
13424 * data/lalr1.cc: Rename the trailing b4_name as b4_parser_class_name.
13425 Reported by Quoc Peyrot.
13426
13427 2002-10-23 Paul Eggert <eggert@twinsun.com>
13428
13429 * src/main.c (main): With --trace=time, report times even if a
13430 non-fatal error occurs. Formerly, the times were reported in some
13431 such cases but not in others.
13432 * src/reader.c (reader): Just return if a complaint has been issued,
13433 instead of exiting, so that 'main' can report times.
13434
13435 2002-10-22 Akim Demaille <akim@epita.fr>
13436
13437 * src/system.h: Include sys/types.
13438 Reported by Bert Deknuydt.
13439
13440 2002-10-23 Paul Eggert <eggert@twinsun.com>
13441
13442 * configure.ac (AC_PROG_LEX): Use instead of AM_PROG_LEX.
13443 Suggested by Art Haas.
13444
13445 2002-10-22 Paul Eggert <eggert@twinsun.com>
13446
13447 * src/complain.c (exit) [! (STDC_HEADERS || _LIBC)]: Remove exit
13448 decl; not needed any more.
13449 * src/main.c (main): Use return to exit, undoing yesterday's change.
13450 The last OS that we could find where this wouldn't work is
13451 SunOS 3.5, and that's too old to worry about now.
13452
13453 * data/glr.c (struct yyltype): Define members even when not
13454 doing locations. This is more consistent with yacc.c, and it
13455 works around the following bug reports:
13456 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00106.html
13457 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00111.html
13458
13459 * doc/bison.texinfo: Minor spelling and typographical fixes. Use
13460 @acronym consistently. Standardize on "Yacc" instead of "YACC",
13461 "Algol" instead of "ALGOL". Give a bit more history about BNF.
13462
13463 2002-10-22 Akim Demaille <akim@epita.fr>
13464
13465 * data/README: New.
13466
13467 2002-10-21 Paul Eggert <eggert@twinsun.com>
13468
13469 Be consistent about 'bool'; the old code used an enum in one
13470 module and an int in another, and this violates the C standard.
13471 * m4/stdbool.m4: New file, from coreutils 4.5.3.
13472 * configure.ac (AC_HEADER_STDBOOL): Add.
13473 * m4/Makefile.am (EXTRA_DIST): Add stdbool.m4.
13474 * src/muscle_tab.c (hash_compare_muscles): (a ? FALSE : TRUE) -> (! a)
13475 * src/symtab.c (hash_compare_symbol_t): Likewise.
13476 * src/system.h (bool, false, true): Use a definition consistent
13477 with ../lib/hash.c. All uses changed.
13478
13479 * src/complain.c (warning_issued): Renamed from warn_message_count,
13480 so that we needn't worry about integer overflow (!).
13481 Now of type bool. All uses changed.
13482 (complaint_issued): Renamed from complain_message_count; likewise.
13483
13484 * src/main.c (main): Use exit to exit with failure.
13485
13486 * src/complain.c (fatal_at, fatal): Use EXIT_FAILURE and EXIT_SUCCESS
13487 rather than 1 and 0.
13488 * src/main.c (main): Likewise.
13489 * src/getargs.c (getargs): Likewise.
13490 * src/reader.c (reader): Likewise.
13491
13492 * src/getarg.c (getargs): Remove duplicate code for
13493 "Try `bison --help'".
13494
13495 * src/files.c (xfopen, xfclose): Use EXIT_FAILURE rather than 2.
13496 What was that "2" for?
13497
13498 * src/complain.h (fatal, fatal_at): Add __attribute__((__noreturn__)).
13499 * src/getargs.c (usage): Likewise.
13500
13501 * src/getargs.c (getargs): When there are too few operands, report
13502 the last one. When there are too many, report the first extra
13503 one. This is how diffutils does it.
13504
13505 2002-10-20 Paul Eggert <eggert@twinsun.com>
13506
13507 Remove K&R vestiges.
13508 * configure.ac (AC_C_CONST, AM_C_PROTOTYPES): Remove.
13509 * src/complain.c (VA_START): Remove. Assume prototypes.
13510 (vfprintf) [! (HAVE_VPRINTF || defined vfprintf)]: New macro.
13511 (private_strerror, warn_at, warn, complain_at, complain, fatal_at,
13512 fatal): Assume prototypes.
13513 * src/complain.h: Assume prototypes.
13514 * src/system.h (PARAMS): Remove.
13515 Include <limits.h> unconditionally, since it's guaranteeed even
13516 for a freestanding C89 compiler.
13517 (SHRT_MIN, SHRT_MAX): Remove, since C89 guarantees them.
13518 * src/vmsgetargs.c (getargs, cli_present, cli_get_value): Prototype.
13519
13520 2002-10-20 Akim Demaille <akim@epita.fr>
13521
13522 * src/muscle_tab.c (muscle_grow): Remove trailing debugging code.
13523 * data/glr.c (YY_USER_FORMALS, YY_USER_ARGS): New.
13524 (yyuserAction, yydoAction, yyglrReduce, yyresolveValue)
13525 (yyresolveStates, yyresolveAction, yyresolveStack)
13526 (yyprocessOneStack): Use them.
13527 (yy_reduce_print): New.
13528 * tests/calc.at (_AT_DATA_CALC_Y): Exercise %parse-param.
13529
13530 2002-10-20 Akim Demaille <akim@epita.fr>
13531
13532 * data/c.m4 (b4_c_ansi_args): Recognize functions with no
13533 arguments and output `void'.
13534 (b4_c_function): Rename as...
13535 (b4_c_function_def): this.
13536 (b4_c_function_decl, b4_c_ansi_function_def)
13537 (b4_c_ansi_function_decl): New.
13538 Change the interpretation of the arguments: before `int, foo', now
13539 `int foo, foo'.
13540 * data/yacc.c (yyparse): Prototype and define thanks to these.
13541 Adjust b4_c_function_def uses.
13542 * data/glr.c (yyparse): Likewise, but ANSI only.
13543
13544 2002-10-20 Akim Demaille <akim@epita.fr>
13545
13546 * src/output.c (prepare): Move the definition of `tokens_number',
13547 `nterms_number', `undef_token_number', `user_token_number_max'
13548 to...
13549 (prepare_tokens): Here.
13550 (prepare_tokens): Rename as...
13551 (prepare_symbols): this.
13552 (prepare): Move the definition of `rules_number' to...
13553 (prepare_rules): here.
13554 (prepare): Move the definition of `last', `final_state_number',
13555 `states_number' to...
13556 (prepare_states): here.
13557 * data/yacc.c, data/lalr1.cc, data/glr.c: Normalize `>' into `<'.
13558
13559 2002-10-20 Akim Demaille <akim@epita.fr>
13560
13561 * src/tables.h, src/tables.c, src/output.c: Comment changes.
13562
13563 2002-10-20 Akim Demaille <akim@epita.fr>
13564
13565 * data/yacc.c, data/yacc.c (b4_location_if, b4_pure_if): Move to...
13566 * data/c.m4: here.
13567
13568 2002-10-20 Akim Demaille <akim@epita.fr>
13569
13570 * src/output.c (prepare): Use MUSCLE_INSERT_STRING.
13571 * src/muscle_tab.c (muscle_pair_list_grow): Rename `val as
13572 `pair'.
13573 (muscle_init): Move the `b4_ltype', `b4_maxdepth', `b4_initdepth',
13574 `name' to...
13575 * data/glr.c, data/lalr1.cc, data/yacc.c (b4_location_type)
13576 (b4_stack_depth_init, b4_stack_depth_max, b4_parser_class_name):
13577 These.
13578
13579 2002-10-19 Paul Eggert <eggert@twinsun.com>
13580
13581 Do not create a temporary file, as that involves security and
13582 cleanup headaches. Instead, use a pair of pipes.
13583 Derived from a suggestion by Florian Krohm.
13584 * lib/subpipe.c, lib/subpipe.h, m4/subpipe.m4: New files.
13585 * lib/mkstemp.c, lib/readpipe.c, lib/tempname.c, m4/mkstemp.m4: Remove.
13586 * configure.ac (UTILS_FUNC_MKSTEMP, jm_PREREQ_TEMPNAME): Remove.
13587 (BISON_PREREQ_SUBPIPE): Add.
13588 * lib/Makefile.am (libbison_a_SOURCES): Remove readpipe.c.
13589 Add subpipe.h, subpipe.c.
13590 * m4/Makefile.am (EXTRA_DIST): Remove mkstemp.m4. Add subpipe.m4.
13591 * po/POTFILES.in: Add lib/subpipe.c.
13592 * src/output.c: Include "subpipe.h".
13593 (m4_invoke): Remove decl.
13594 (scan_skel): New decl.
13595 (output_skeleton): Use pipe rather than temporary file for m4 input.
13596 Check that m4sugar.m4 is readable, to avoid deadlock.
13597 Check for pipe I/O error.
13598 * src/scan-skel.l (readpipe): Remove decl.
13599 (scan_skel): New function, to be used in place of m4_invoke.
13600 Read from stream rather than file.
13601
13602 * lib/timevar.c (TICKS_TO_MSEC, CLOCKS_TO_MSEC): Do not cast to
13603 float, as this generates a warning on Solaris 8 + GCC 3.2 with
13604 --enable-gcc-warnings. Instead, divide into 1.0 rather than 1;
13605 this generates a more-accurate value anyway.
13606
13607 * lib/timevar.c (timervar_accumulate): Rename locals to
13608 avoid confusion with similarly-named more-global.
13609 * src/muscle_tab.c (muscle_pair_list_grow): Likewise.
13610
13611 * src/output.c (prepare): Use xstrdup to convert char const *
13612 to char *, to avoid GCC warning.
13613
13614 2002-10-19 Akim Demaille <akim@epita.fr>
13615
13616 * tests/calc.at (_AT_DATA_CALC_Y): Define VAL, LOC, LEX_FORMALS,
13617 LEX_PRE_FORMALS, LEX_ARGS, LEX_PRE_ARGS, USE_LEX_ARGS.
13618 Use them to have `calc.y' ready for %pure-parser.
13619 * data/yacc.c (YYLEX): Pass a yylex return type to
13620 b4_c_function_call.
13621
13622 2002-10-19 Akim Demaille <akim@epita.fr>
13623
13624 Prototype support of %lex-param and %parse-param.
13625
13626 * src/parse-gram.y: Add the definition of the %lex-param and
13627 %parse-param tokens, plus their rules.
13628 Drop the `_' version of %glr-parser.
13629 Add the "," token.
13630 * src/scan-gram.l (INITIAL): Scan them.
13631 * src/muscle_tab.c: Comment changes.
13632 (muscle_insert, muscle_find): Rename `pair' as `probe'.
13633 * src/muscle_tab.h (MUSCLE_INSERT_PREFIX): Remove unused.
13634 (muscle_entry_s): The `value' member is no longer const.
13635 Adjust all dependencies.
13636 * src/muscle_tab.c (muscle_init): Adjust: use
13637 MUSCLE_INSERT_STRING.
13638 Initialize the obstack earlier.
13639 * src/muscle_tab.h, src/muscle_tab.c (muscle_grow)
13640 (muscle_pair_list_grow): New.
13641 * data/c.m4 (b4_c_function_call, b4_c_args): New.
13642 * data/yacc.c (YYLEX): Use b4_c_function_call to honor %lex-param.
13643 * tests/calc.at: Use %locations, not --locations.
13644 (AT_CHECK_CALC_GLR): Use %glr-parser, not %glr_parser.
13645
13646 2002-10-19 Akim Demaille <akim@epita.fr>
13647
13648 * src/getargs.c (usage): Take status as argument and exit
13649 accordingly.
13650 Report the traditional `Try ... --help' message when status != 0.
13651 (usage, version): Don't take a FILE * as arg, it is pointless.
13652 (getargs): When there is an incorrect number of arguments, make it
13653 an error, and report it GNUlically thanks to `usage ()'.
13654
13655 2002-10-18 Paul Eggert <eggert@twinsun.com>
13656
13657 * data/glr.c (yyreportParseError): Don't assume that sprintf
13658 yields the length of the printed string, as this is not true
13659 on SunOS 4.1.4. Reported by Peter Klein.
13660
13661 * tests/calc.at (_AT_DATA_CALC_Y): #undef memcmp and realloc.
13662 * tests/conflicts.at (%nonassoc and eof): Likewise.
13663 Fixes SunOS 4.1.4 test failure reported by Peter Klein.
13664
13665 2002-10-17 Akim Demaille <akim@epita.fr>
13666
13667 * src/getargs.h (trace_e): Add trace_scan, and trace_parse.
13668 * src/getargs.c (trace_types, trace_args): Adjust.
13669 * src/reader.c (grammar_current_rule_prec_set)
13670 (grammar_current_rule_dprec_set, grammar_current_rule_merge_set):
13671 Standardize error messages.
13672 And s/@prec/%prec/!
13673 (reader): Use trace_flag to enable scanner/parser debugging,
13674 instead of an adhoc scheme.
13675 * src/scan-gram.l: Remove trailing debugging code.
13676
13677 2002-10-16 Paul Eggert <eggert@twinsun.com>
13678
13679 * src/muscle_tab.h (MUSCLE_TAB_H_): Was misspelled as
13680 MUSCLE_TAB_H.
13681
13682 * NEWS: Officially drop support for building Bison with K&R C,
13683 since it didn't work anyway and it's not worth worrying about.
13684 * Makefile.maint (wget_files): Remove ansi2knr.c.
13685 (ansi2knr.c-url_prefix): Remove.
13686 * lib/.cvsignore: Remove ansi2knr, ansi2knr.*.
13687 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
13688 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
13689
13690 2002-10-15 Paul Eggert <eggert@twinsun.com>
13691
13692 Stop using the "enum_" trick for K&R-style function definitions;
13693 it confused me, and I was the author! Instead, assume that people
13694 who want to use K&R C compilers (when using these modules in GCC,
13695 perhaps?) will run ansi2knr.
13696
13697 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): Remove.
13698 All uses of "enum_" changed to "enum ".
13699 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
13700 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
13701
13702 * lib/abitset.c (abitset_and, abitset_and_cmp, abitset_and_or,
13703 abitset_and_or_cmp, abitset_andn, abitset_andn_cmp,
13704 abitset_andn_or, abitset_andn_or_cmp, abitset_bytes, abitset_copy,
13705 abitset_copy1, abitset_disjoint_p, abitset_empty_p,
13706 abitset_equal_p, abitset_init, abitset_list, abitset_list_reverse,
13707 abitset_not, abitset_ones, abitset_or, abitset_or_and,
13708 abitset_or_and_cmp, abitset_or_cmp, abitset_reset, abitset_set,
13709 abitset_size, abitset_small_list, abitset_subset_p, abitset_test,
13710 abitset_unused_clear, abitset_xor, abitset_xor_cmp, abitset_zero):
13711 Use function prototypes; this removes the need for declaring
13712 static functions simply to provide their prototypes.
13713 * lib/bitset.c (bitset_alloc, bitset_and_or_, bitset_and_or_cmp_,
13714 bitset_andn_or_, bitset_andn_or_cmp_, bitset_bytes, bitset_copy_,
13715 bitset_count_, bitset_create, bitset_dump, bitset_first,
13716 bitset_free, bitset_init, bitset_last, bitset_next,
13717 bitset_obstack_alloc, bitset_obstack_free, bitset_only_set_p,
13718 bitset_op4_cmp, bitset_or_and_, bitset_or_and_cmp_, bitset_prev,
13719 bitset_print, bitset_release_memory, bitset_toggle_,
13720 bitset_type_choose, bitset_type_get, bitset_type_name_get,
13721 debug_bitset): Likewise.
13722 * lib/bitset.h (bitset_set, bitset_reset, bitset_test): Likewise.
13723 * lib/bitset_stats.c (bitset_log_histogram_print,
13724 bitset_percent_histogram_print, bitset_stats_and,
13725 bitset_stats_and_cmp, bitset_stats_and_or,
13726 bitset_stats_and_or_cmp, bitset_stats_andn, bitset_stats_andn_cmp,
13727 bitset_stats_andn_or, bitset_stats_andn_or_cmp, bitset_stats_copy,
13728 bitset_stats_count, bitset_stats_disable, bitset_stats_disjoint_p,
13729 bitset_stats_dump, bitset_stats_empty_p, bitset_stats_enable,
13730 bitset_stats_equal_p, bitset_stats_free, bitset_stats_init,
13731 bitset_stats_list, bitset_stats_list_reverse, bitset_stats_not,
13732 bitset_stats_ones, bitset_stats_or, bitset_stats_or_and,
13733 bitset_stats_or_and_cmp, bitset_stats_or_cmp, bitset_stats_print,
13734 bitset_stats_print_1, bitset_stats_read, bitset_stats_reset,
13735 bitset_stats_set, bitset_stats_size, bitset_stats_subset_p,
13736 bitset_stats_test, bitset_stats_toggle, bitset_stats_type_get,
13737 bitset_stats_write, bitset_stats_xor, bitset_stats_xor_cmp,
13738 bitset_stats_zero): Likewise.
13739 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
13740 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
13741 bitsetv_dump, debug_bitsetv): Likewise.
13742 * lib/ebitset.c (ebitset_and, ebitset_and_cmp, ebitset_andn,
13743 ebitset_andn_cmp, ebitset_bytes, ebitset_copy, ebitset_copy_,
13744 ebitset_copy_cmp, ebitset_disjoint_p, ebitset_elt_add,
13745 ebitset_elt_alloc, ebitset_elt_calloc, ebitset_elt_find,
13746 ebitset_elt_free, ebitset_elt_last, ebitset_elt_remove,
13747 ebitset_elt_zero_p, ebitset_elts_grow, ebitset_empty_p,
13748 ebitset_equal_p, ebitset_free, ebitset_init, ebitset_list,
13749 ebitset_list_reverse, ebitset_not, ebitset_ones, ebitset_op3_cmp,
13750 ebitset_or, ebitset_or_cmp, ebitset_release_memory, ebitset_reset,
13751 ebitset_set, ebitset_size, ebitset_subset_p, ebitset_test,
13752 ebitset_weed, ebitset_xor, ebitset_xor_cmp, ebitset_zero):
13753 Likewise.
13754 * lib/lbitset.c (debug_lbitset, lbitset_and, lbitset_and_cmp,
13755 lbitset_andn, lbitset_andn_cmp, lbitset_bytes, lbitset_copy,
13756 lbitset_copy_cmp, lbitset_disjoint_p, lbitset_elt_alloc,
13757 lbitset_elt_calloc, lbitset_elt_find, lbitset_elt_free,
13758 lbitset_elt_link, lbitset_elt_unlink, lbitset_elt_zero_p,
13759 lbitset_empty_p, lbitset_equal_p, lbitset_free, lbitset_init,
13760 lbitset_list, lbitset_list_reverse, lbitset_not, lbitset_ones,
13761 lbitset_op3_cmp, lbitset_or, lbitset_or_cmp, lbitset_prune,
13762 lbitset_release_memory, lbitset_reset, lbitset_set, lbitset_size,
13763 lbitset_subset_p, lbitset_test, lbitset_weed, lbitset_xor,
13764 lbitset_xor_cmp, lbitset_zero): Likewise.
13765
13766 2002-10-14 Akim Demaille <akim@epita.fr>
13767
13768 Version 1.75.
13769
13770 2002-10-14 Akim Demaille <akim@epita.fr>
13771
13772 * tests/Makefile.am (maintainer-check-posix): New.
13773
13774 2002-10-14 Akim Demaille <akim@epita.fr>
13775
13776 * data/glr.c [YYDEBUG] (YYLEFTMOST_STATE): Initialize the yyloc
13777 member.
13778
13779 2002-10-14 Akim Demaille <akim@epita.fr>
13780
13781 * src/tables.c (table_ninf_remap): base -> tab.
13782 Reported by Matt Rosing.
13783
13784 2002-10-14 Paul Eggert <eggert@twinsun.com>
13785
13786 * tests/action.at, tests/calc.at, tests/conflicts.at,
13787 tests/cxx-type.at, tests/headers.at, tests/input.at,
13788 tests/regression.at, tests/synclines.at, tests/torture.at:
13789 Say "bison -o foo.c foo.y", not "bison foo.y -o foo.c",
13790 so that the tests still work even if POSIXLY_CORRECT is set.
13791 * doc/bison.texinfo (Rpcalc Compile, Invocation): Likewise.
13792
13793 * data/c.m4 (b4_int_type): Use yysigned_char instead of signed char,
13794 for portability to K&R hosts. Fix typo: signed char is guaranteed
13795 only to 127, not to 128.
13796 * data/glr.c (yysigned_char): New type.
13797 * data/yacc.c (yysigned_char): Likewise.
13798 * tests/regression.at (Web2c Actions): signed char -> yysigned_char.
13799
13800 2002-10-13 Paul Eggert <eggert@twinsun.com>
13801
13802 * data/yacc.c (yyparse): Rewrite to avoid "comparison is always
13803 true due to limited range of data type" warning from GCC.
13804
13805 * data/c.m4 (b4_token_defines): Protect against double-inclusion
13806 by wrapping enum yytokentype's definition inside #ifndef
13807 YYTOKENTYPE. This undoes a bug I introduced on 2002-10-12.
13808
13809 2002-10-13 Akim Demaille <akim@epita.fr>
13810
13811 * data/glr.c (yyglrShiftDefer, yyaddDeferredAction, yydoAction):
13812 Un yy- yyrhs to avoid the name clash with the global YYRHS.
13813
13814 2002-10-13 Akim Demaille <akim@epita.fr>
13815
13816 * Makefile.maint: Update from Autoconf 2.54.
13817 * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Remove, shipped with 2.54.
13818
13819 2002-10-13 Akim Demaille <akim@epita.fr>
13820
13821 * src/print.c (print_state): Separate the list of solved conflicts
13822 from the other items.
13823 * tests/conflicts.at (Resolved SR Conflicts): Adjust.
13824
13825 2002-10-13 Akim Demaille <akim@epita.fr>
13826
13827 Let nondeterministic skeletons be usable with deterministic
13828 tables.
13829
13830 With the patch, GAWK compiled by GCC without -O2 passes its test
13831 suite using a GLR parser driven by LALR tables. It fails with -O2
13832 because `struct stat' gives two different answers on my machine:
13833 88 (definition of an auto var) and later 96 (memset on this var).
13834 Hence the stack is badly corrumpted. The headers inclusion is to
13835 blame: if I move the awk.h inclusion before GLR's system header
13836 inclusion, the two struct stat have the same size.
13837
13838 * src/tables.c (pack_table): Always create conflict_table.
13839 (token_actions): Always create conflict_list.
13840 * data/glr.c (YYFLAG): Remove, unused.
13841
13842 2002-10-13 Akim Demaille <akim@epita.fr>
13843
13844 * configure.ac (AC_GNU_SOURCE): Use it instead of hand written code.
13845 (O0FLAGS): New.
13846 (VALGRIND, GXX): New.
13847 * tests/atlocal.in (CFLAGS): Use O0FLAGS.
13848 * tests/bison.in: Run $PREBISON a pre-command.
13849 * tests/Makefile.am (maintainer-check, maintainer-check-valgrind)
13850 (maintainer-check-g++): New.
13851 * Makefile.am (maintainer-check): New.
13852
13853 2002-10-13 Akim Demaille <akim@epita.fr>
13854
13855 * data/glr.c: Formatting changes.
13856 Tweak some trace messages to match yacc.c's.
13857
13858 2002-10-13 Akim Demaille <akim@epita.fr>
13859
13860 GLR parsers sometimes raise parse errors instead of performing the
13861 default reduction.
13862 Reported by Charles-Henry de Boysson.
13863
13864 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Don't
13865 check the length of the traces when %glr.
13866 (_AT_CHECK_CALC_ERROR): Also skip `^Stack' lines, coming from
13867 GLR's traces.
13868 (AT_CHECK_CALC_LALR, AT_CHECK_CALC_GLR): New.
13869 Test GLR parsers.
13870 * data/glr.c (YYLEFTMOST_STATE): Fix its value.
13871 (yyltype): Remove the yy prefix from the member names.
13872 (yytable): Complete its comment.
13873 (yygetLRActions): Map error action number from YYTABLE from
13874 YYTABLE_NINF to 0.
13875 (yyisErrorAction): No longer compare YYACTION to YYPACT_NINF
13876 (which was a bug: it should have been YYTABEL_NINF, and yet it was
13877 not satisfying as we could compare an YYACTION computed from
13878 YYDEFACT to YYTABLE_NINF although they are unrelated): 0 is the
13879 only value for error actions.
13880 (yyreportParseError): In verbose parse error messages, don't issue
13881 `error' in the list of expected tokens.
13882 * data/yacc.c (yyparse) <yybackup>: Rewrite the decoding of the
13883 next action to perform to match glr.c's decoding.
13884 (yytable): Complete its comment.
13885
13886 2002-10-13 Paul Eggert <eggert@twinsun.com>
13887
13888 Fix problem reported by Henrik Grubbstroem in
13889 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00098.html>:
13890 "nonterm: { $$ = 123; } { $$ = $1; };" was wrongly rejected,
13891 because the Bison parser reads the second action before reducing
13892 the first one.
13893 * src/scan-gram.l (rule_length): New static var.
13894 Use it to keep track of the rule length in the scanner, since
13895 we can't expect the parser to be in lock-step sync with the scanner.
13896 (handle_action_dollar, handle_action_at): Use this var.
13897 * tests/actions.at (Exotic Dollars): Test for the problem.
13898
13899 2002-10-12 Paul Eggert <eggert@twinsun.com>
13900
13901 * lib/timevar.c [! IN_GCC && HAVE_SYS_TIME_H]: Include <sys/time.h>.
13902 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): Check for <sys/time.h>.
13903 Include <sys/time.h> when checking for clock_t and struct tms.
13904 Use same include order as source.
13905 This is for the SunOS 4.1.4 porting bug reported by Peter Klein in
13906 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00016.html>.
13907
13908 * lib/timevar.c: Update copyright date and clarify comments.
13909 (get_time) [IN_GCC]: Keep the GCC version for reference.
13910
13911 * lib/timevar.c, lib/timevar.h, lib/timevar.def: Import
13912 GCC version as of today, then merge Bison's changes.
13913 Change "GCC" to "Bison" in copyright notice. timevar.def's
13914 author is Akim, so change that too.
13915
13916 * src/reader.c (grammar_current_rule_check):
13917 Don't worry about the default action if $$ is untyped.
13918 Prevents bogus warnings reported by Jim Gifford in
13919 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00015.html>.
13920
13921 * data/c.m4 (b4_token_enum): Do not define YYTOKENTYPE.
13922 * data/glr.c, data/lalr1.cc, data/yacc.c:
13923 Output token definitions before the first part of user declarations.
13924 Fixes compatibility problem reported by Jim Gifford for kbd in
13925 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00014.html>.
13926
13927 2002-10-11 Paul Eggert <eggert@twinsun.com>
13928
13929 * data/yacc.c (yyreport_parse_error): Remove, putting its body into...
13930 (yyparse): here. This undoes some of the 2002-07-25 change.
13931 Compatibility problem reported by Ralf S. Engelschall with
13932 OSSP cfg <http://www.ossp.org/pkg/lib/cfg/>.
13933
13934 2002-10-11 Akim Demaille <akim@epita.fr>
13935
13936 * tests/regression.at Characters Escapes): New.
13937 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Accept \' in strings and
13938 characters.
13939 Reported by Jan Nieuwenhuizen.
13940
13941 2002-10-11 Akim Demaille <akim@epita.fr>
13942
13943 * po/id.po: New.
13944
13945 2002-10-10 Paul Eggert <eggert@twinsun.com>
13946
13947 Portability fixes for bitsets; this also avoids several GCC
13948 warnings.
13949
13950 * lib/abitset.c: Include <stddef.h>, for offsetof.
13951 * lib/lbitset.c: Likewise.
13952
13953 * lib/abitset.c (abitset_bytes): Return a size that is aligned
13954 properly for vectors of objects. Do not assume that adding a
13955 header size to a multiple of a word size yields a value that is
13956 properly aligned for the whole union.
13957 * lib/bitsetv.c (bitsetv_alloc): Likewise.
13958
13959 * lib/bitset_stats.c (bitset_stats_bytes): Adjust to new,
13960 unique names for structures.
13961 * lib/ebitset.c (ebitset_bytes): Likewise.
13962 * lib/lbitset.c (lbitset_bytes): Likewise.
13963
13964 * lib/abitset.c (abitset_ones, abitset_zero, abitset_empty_p,
13965 abitset_copy1, abitset_not, abitset_equal_p, abitset_subset_p,
13966 abitset_disjoint_p, abitset_and, abitset_and_cmp, abitset_andn,
13967 abitset_andn_cmp, abitset_or, abitset_or_cmp, abitset_xor,
13968 abitset_xor_cmp, abitset_and_or, abitset_and_or_cmp,
13969 abitset_andn_or, abitset_andn_or_cmp, abitset_or_and,
13970 abitset_or_and_cmp, abitset_copy): Supply prototype decls,
13971 to improve the type-checking that GCC can do.
13972 * lib/bitset.c (bitset_op4_cmp): Likewise.
13973 * lib/bitset_stats.c (bitset_stats_count,
13974 bitset_stats_empty_p, bitset_stats_ones, bitset_stats_zero,
13975 bitset_stats_copy, bitset_stats_disjoint_p,
13976 bitset_stats_equal_p, bitset_stats_not, bitset_stats_subset_p,
13977 bitset_stats_and, bitset_stats_and_cmp, bitset_stats_andn,
13978 bitset_stats_andn_cmp, bitset_stats_or, bitset_stats_or_cmp,
13979 bitset_stats_xor, bitset_stats_xor_cmp, bitset_stats_and_or,
13980 bitset_stats_and_or_cmp, bitset_stats_andn_or,
13981 bitset_stats_andn_or_cmp, bitset_stats_or_and,
13982 bitset_stats_or_and_cmp): Likewise.
13983 * lib/lbitset.c (lbitset_and, lbitset_and_cmp, lbitset_andn,
13984 lbitset_andn_cmp, lbitset_or, lbitset_or_cmp, lbitset_xor,
13985 lbitset_xor_cmp, lbitset_empty_p, lbitset_ones, lbitset_not,
13986 lbitset_subset_p, lbitset_disjoint_p, debug_lbitset): Likewise.
13987
13988 * lib/abitset.h: Include bitset.h, not bbitset.h.
13989 * lib/ebitset.h: Likewise.
13990 * lib/lbitset.h: Likewise.
13991
13992 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): New types.
13993 All instances of parameters of type enum bitset_opts are now of
13994 type enum_bitset_opts, to conform to the C Standard, and similarly
13995 for enum_bitset_type.
13996 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
13997 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
13998
13999 Do not use "struct bitset_struct" to mean different things in
14000 different modules. Not only is this confusing, it violates
14001 the C Standard, which requires that structure types in different
14002 modules must be compatible if one is to be passed to the other.
14003 * lib/bbitset.h (bitset): Now points to a union, not to a struct.
14004 All instances of "struct bitset_struct *" replaced with "bitset".
14005 * lib/bitset.h (struct bitset_struct): Remove, replacing with....
14006 (union bitset_union, struct abitset_struct, struct ebitset_struct,
14007 struct lbitset_struct, struct bitset_stats_struct): New types.
14008 All uses of struct bitset_struct changed to union bitset_union,
14009 etc.
14010 * lib/abitset.c (struct abitset_struct, abitset,
14011 struct bitset_struct): Remove.
14012 * lib/bitset_stats.c (struct bitset_stats_struct, bitset_stats,
14013 struct bitset_struct): Remove.
14014 * lib/ebitset.c (struct ebitset_struct, ebitset, struct
14015 bitset_struct): Remove.
14016 * lib/lbitset.c (struct lbitset_struct, lbitset, bitset_struct):
14017 Likewise.
14018
14019 Do not call a function of type T using a call that assumes the
14020 function is of a different type U. Standard C requires that a
14021 function must be called with a type that is compatible with its
14022 definition.
14023 * lib/bbitset.h (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
14024 New decls.
14025 * lib/bitset.c (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
14026 New functions.
14027 * lib/ebitset.c (PFV): Remove.
14028 * lib/lbitset.c (PFV): Likewise.
14029 * lib/ebitset.c (ebitset_and, ebitset_andn, ebitset_or,
14030 ebitset_xor, ebitset_copy, ebitset_ones, ebitset_empty_p): New
14031 decls.
14032 (ebitset_and, ebitset_andn, ebitset_or, ebitset_xor): New functions.
14033 (ebitset_vtable): Use them.
14034 * lib/lbitset.c (lbitset_and, lbitset_andn, lbitset_or,
14035 lbitset_xor): New functions.
14036 (lbitset_vtable): Use them.
14037
14038 * lib/bitset.h (bitset_next, bitset_prev, bitset_only_set_p):
14039 Declare.
14040
14041 * lib/bitsetv.c (bitsetv_alloc): Add a cast to (void *) to avoid a
14042 GCC warning.
14043 * lib/lbitset.c (LBITSET_CURRENT1): Likewise.
14044 Use offsetof, for simplicity.
14045
14046 2002-10-06 Paul Eggert <eggert@twinsun.com>
14047
14048 * lib/bitset.h (bitset_reset): Do not assume that bitset_word is
14049 the same width as int. This reapplies a hunk of the 2002-08-12 patch
14050 <http://lists.gnu.org/archive/html/bison-patches/2002-08/msg00007.html>,
14051 which was inadvertently undone by the 2002-09-30 patch.
14052 * lib/lbitset.c (debug_lbitset): Do not assume that bitset_word is
14053 the same width as int.
14054
14055 2002-10-04 Paul Eggert <eggert@twinsun.com>
14056
14057 Version 1.50.
14058
14059 * configure.ac (AC_INIT), NEWS: Increment version number.
14060
14061 * doc/bison.texinfo: Minor spelling, grammar, and white space
14062 fixes.
14063 (Symbols): Mention that any negative value returned from yylex
14064 signifies end-of-input. Warn about negative chars. Mention
14065 the portable Standard C character set.
14066
14067 The GNU coding standard says CFLAGS and YFLAGS are reserved
14068 for the installer to set.
14069 * lib/Makefile.am (AM_CFLAGS): Renamed from CFLAGS.
14070 * src/Makefile.am (AM_CFLAGS): Likewise.
14071 (AM_YFLAGS): Renamed from YFLAGS.
14072
14073 Fix some MAX and MIN problems.
14074 * src/gram.h (ITEM_NUMBER_MIN): MIN_MAX -> INT_MIN.
14075 * src/lalr.h (GOTO_NUMBER_MAX): INT_MAX -> SHRT_MAX.
14076 * src/symtab.h (SYMBOL_NUMBER_MAX): New macro.
14077 * src/reader.c (reader): Use it.
14078
14079 * tests/regression.at (Braces parsing): Use grep, not fgrep, as
14080 POSIX 1003.1-2001 has removed fgrep.
14081
14082 2002-10-04 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
14083
14084 * lib/bbitset.h (BITSET_WINDEX_MAX): Redefine so that it cannot be
14085 interpreted as signed.
14086 * lib/ebitset.c (ebitset_list): Fix bug.
14087
14088 2002-10-01 Paul Eggert <eggert@twinsun.com>
14089
14090 More fixes for 64-bit hosts and large bitsets.
14091
14092 * lib/abitset.c (struct abitset_struct.n_bits, abitset_small_list,
14093 abitset_size, abitset_list, abitset_list_reverse, abitset_list):
14094 Use bitset_bindex, not int or unsigned int or size_t, to count bits.
14095 * lib/bbitset.h (struct bitset_vtable.size, struct bitset_vtable.count,
14096 struct bitset_vtable.list, struct bitset_vtable.list_reverse,
14097 bitset_count_, bitset_next, bitset_prev, bitset_first, bitset_last,
14098 bitset_count_): Likewise.
14099 * lib/bitset.h (bitset_iterator.num, bitset_iterator.i,
14100 bitset_first, bitset_last): Likewise.
14101 * lib/bitset_stats.c (bitset_stats_size, bitset_stats_list,
14102 bitset_stats_list_reverse, bitset_stats_size,
14103 bitset_stats_count, bitset_stats_list, bitset_stat_list_reverse):
14104 Likewise.
14105 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
14106 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
14107 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
14108 bitsetv_reflexive_transitive_closure): Likewise.
14109 * lib/bitsetv.h (bitsetv_alloc, bitsetv_create): Likewise.
14110 * lib/ebitset.c (ebitset_size, ebitset_list, ebitset_list_reverse):
14111 Likewise.
14112 * lib/lbitset.c (lbitset_size, lbitset_list, lbitset_list_merge):
14113 Likewise.
14114
14115 * lib/abitset.c (abitset_ones, abitset_zero, abitset_bytes):
14116 Use size_t, not unsigned int, to count bytes.
14117 * lib/abitset.h (abitset_bytes): Likewise.
14118 * lib/bitset.c (bitset_bytes, bitset_alloc, bitset_obstack_alloc):
14119 Likewise.
14120 * lib/bitset.h (bitset_bytes): Likewise.
14121 * lib/bitset_stats.c (bitset_stats_bytes, bitset_stats_init): Likewise.
14122 * lib/bitset_stats.h (bitset_stats_bytes): Likewise.
14123 * lib/bitsetv.c (bitsetv_alloc): Likewise.
14124 * lib/ebitset.c (ebitset_bytes): Likewise.
14125 * lib/ebitset.h (ebitset_bytes): Likewise.
14126 * lib/lbitset.c (lbitset_bytes): Likewise.
14127 * lib/lbitset.h (lbitset_bytes): Likewise.
14128
14129 * lib/abitset.c (abitset_empty_p, abitset_not, abitset_equal_p,
14130 abitset_subset_p, abitset_disjoint_p, abitset_and,
14131 abitset_and_cmp, abitset_andn, abitset_andn_cmp, abitset_or,
14132 abitset_or_cmp, abitset_xor, abitset_xor_cmp, abitset_and_or,
14133 abitset_and_or_cmp, abitset_andn_or, abitset_andn_or_cmp,
14134 abitset_or_and, abitset_or_and_cmp):
14135 Use bitset_windex instead of unsigned int.
14136 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
14137 * lib/ebitset.c (struct ebitset_struct.size, ebitset_elts_grow,
14138 ebitset_elt_add, ebitset_elt_remove, ebitset_weed,
14139 ebitset_elt_find, ebitset_list_reverse, ebitset_list, ebitset_init):
14140 Likewise.
14141 * lib/lbitset.c (lbitset_ones, lbitset_not): Likewise.
14142
14143 * lib/bitset.c (bitset_print):
14144 Use proper printf formats for widths of integer types.
14145 * lib/bitset_stats.c (bitset_percent_histogram_print,
14146 bitset_log_histogram_print, bitset_stats_print_1): Likewise.
14147 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
14148 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
14149 * lib/lbitset.c (lbitset_bytes): Likewise.
14150
14151 * lib/bbitset.h (BITSET_BINDEX_MAX, BITSET_WINDEX_MAX,
14152 BITSET_SIZE_MAX): New macros.
14153 (BITSET_INDEX_MAX): Remove. It wasn't right, since it assumed that
14154 sizeof (bitset_word) == sizeof (bitset_windex). All uses changed
14155 to BITSET_WINDEX_MAX.
14156
14157 * lib/bitset.c (bitset_next, bitset_prev, bitset_first,
14158 bitset_last): Return BITSET_BINDEX_MAX (not -1) for no value,
14159 since we now return the bitset_bindex type (not int).
14160
14161 * lib/bitsetv.c (bitsetv_alloc): Check for arithmetic overflow
14162 when computing sizes.
14163 * lib/ebitset.c (ebitset_elts_grow): Likewise.
14164
14165 * lib/lbitset.c (lbitset_elt_find): Simplify windex calculation
14166 and avoid cast to unsigned.
14167
14168 2002-09-30 Akim Demaille <akim@epita.fr>
14169
14170 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
14171 * lib/bitset_stats.c, lib/bitsetv.c, lib/ebitset.c, lib/lbitset.c:
14172 Updates from Michael Hayes.
14173
14174 2002-09-30 Art Haas <ahaas@neosoft.com>
14175
14176 * configure.ac: Update AC_OUTPUT and AM_CONFIG_HEADER
14177 invocations.
14178 * tests/cxx-type.at (declarator): Don't rely on NDEBUG being not
14179 defined.
14180
14181 2002-09-27 Akim Demaille <akim@epita.fr>
14182
14183 Version 1.49c.
14184
14185 2002-09-27 Akim Demaille <akim@epita.fr>
14186
14187 * configure.ac (AM_INIT_AUTOMAKE): We _need_ 1.7.
14188 (Because of AC_LIBSOURCE).
14189
14190 2002-09-27 Akim Demaille <akim@epita.fr>
14191
14192 Playing with Autoscan.
14193
14194 * configure.ac: Remove the old LIBOBJ tweaks.
14195 (AC_REPLACE_FUNCS): Add strrchr and strtol.
14196 * lib/strrchr.c: New.
14197 * lib/strtol.c: New, from the Coreutils 4.5.1.
14198
14199 2002-09-27 Akim Demaille <akim@epita.fr>
14200
14201 Playing with Autoscan.
14202
14203 * m4/prereq.m4 (jm_PREREQ_ARGMATCH, jm_FUNC_ARGMATCH): New.
14204 * lib/Makefile.am (libbison_a_SOURCES): No longer include
14205 argmatch.c and argmatch.h, since they are AC_LIBSOURCE'd.
14206 * lib/strcasecmp.c, lib/strncasecmp.c, lib/memcmp.c: New, from the
14207 Coreutils 4.5.1.
14208
14209 2002-09-24 Akim Demaille <akim@epita.fr>
14210
14211 * doc/bison.texinfo (Stack Overflow): xref to Recursion.
14212 (Frequently Asked Questions, Parser Stack Overflow): New.
14213
14214 2002-09-13 Akim Demaille <akim@epita.fr>
14215
14216 Playing with autoscan.
14217
14218 * src/reader.c (get_merge_function): Use xstrdup, not strdup.
14219 * src/files.c (skeleton_find): Remove, unused.
14220 * m4/memcmp.m4: New, from the Coreutils 4.5.1.
14221 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Run jm_FUNC_MEMCMP.
14222
14223 2002-09-13 Akim Demaille <akim@epita.fr>
14224
14225 * configure.ac (AM_INIT_AUTOMAKE): Require Automake 1.6.3.
14226 * Makefile.am (AUTOMAKE_OPTIONS): Don't.
14227
14228 2002-09-13 Akim Demaille <akim@epita.fr>
14229
14230 * configure.ac: Require 2.54.
14231 s/jm_FUNC_MALLOC/AC_FUNC_MALLOC/.
14232 s/jm_FUNC_REALLOC/AC_FUNC_REALLOC/.
14233 * m4/c-bs-a.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/realloc.m4:
14234 Remove, provided by Autoconf macros.
14235
14236 2002-09-12 Akim Demaille <akim@epita.fr>
14237
14238 * m4/prereq.m4: Update, from Coreutils 4.5.1.
14239
14240 2002-09-12 Akim Demaille <akim@epita.fr>
14241
14242 * m4/prereq.m4: Update, from Fileutils 4.1.5.
14243 * configure.ac (jm_PREREQ_TEMPNAME): Invoke it.
14244 Reported by Martin Mokrejs.
14245
14246 2002-09-10 Akim Demaille <akim@epita.fr>
14247
14248 * src/parse-gram.y: Associate a human readable string to each
14249 token type.
14250 * tests/regression.at (Invalid inputs): Adjust.
14251
14252 2002-09-10 Gary V. Vaughan <gary@gnu.org>
14253
14254 * tests/Makefile.am ($(srcdir)/package.m4): Bison now ships
14255 with an Autoconf-2.5x style configure.ac.
14256
14257 2002-09-06 Paul Eggert <eggert@twinsun.com>
14258
14259 * doc/bison.texinfo (Conditions): Make explicit that the GPL
14260 exception applies only to yacc.c. This is a modification of a
14261 patch originally suggested by Akim Demaille.
14262
14263 2002-09-06 Akim Demaille <akim@epita.fr>
14264
14265 * data/c.m4 (b4_copyright): Move the GPL exception comment from
14266 here to...
14267 * data/yacc.c: here.
14268
14269 * data/lalr1.cc (struct yyltype): Don't define it, since we use
14270 LocationType.
14271 (b4_ltype): Default to yy::Location from location.hh.
14272
14273 2002-09-04 Jim Meyering <jim@meyering.net>
14274
14275 * data/yacc.c: Guard the declaration of yytoknum also with
14276 `#ifdef YYPRINT', so it is declared only when used.
14277
14278 2002-09-04 Akim Demaille <akim@epita.fr>
14279
14280 * configure.in: Rename as...
14281 * configure.ac: this.
14282 Bump to 1.49c.
14283
14284 2002-09-04 Akim Demaille <akim@epita.fr>
14285
14286 * src/assoc.c, src/closure.c, src/gram.c, src/injections.c,
14287 * src/lalr.c, src/LR0.c, src/relation.c, src/tables.c: Don't
14288 translate maintainer only messages.
14289
14290 2002-08-12 Paul Eggert <eggert@twinsun.com>
14291
14292 Version 1.49b.
14293
14294 * Makefile.am (SUBDIRS): Remove intl.
14295 (DISTCLEANFILES): Remove.
14296 * NEWS: Mention that GNU M4 is now required. Clarify what is
14297 meant by "larger grammars". Mention the pt_BR translation.
14298 * configure.in (AC_CHECK_DECLS): Add getenv, getopt.
14299 (AM_GNU_GETTEXT_VERSION): New macro, replacing GETTEXT_VERSION var.
14300 Bump version from 0.11.2 to 0.11.5.
14301 (BISON_PREREQ_STAGE): Remove.
14302 (AM_GNU_GETTEXT): Use external gettext.
14303 (AC_OUTPUT): Remove intl/Makefile.
14304
14305 * config/depcomp, config/install-sh: Sync with Automake 1.6.3.
14306
14307 * data/glr.c: Include string.h, for strlen.
14308 (yyreportParseError): Use size_t for yysize.
14309 (yy_yypstack): No longer nested inside yypstates, as nested
14310 functions are not portable. Do not assume size_t is the
14311 same width as int.
14312 (yypstates): Do not assume that ptrdiff_t is the same width
14313 as int, and similarly for yyposn and YYINDEX.
14314
14315 * data/yacc.c: Fix comment about `$$ = $1': it can copy garbage.
14316
14317 * lib/Makefile.am (INCLUDES): Do not include from the intl
14318 directory, which has been removed.
14319 * src/Makefile.am (INCLUDES): Likewise.
14320
14321 * lib/Makefile.am (libbison_a_SOURCES): Add unlocked-io.h.
14322 (bitsets_sources, additional_bitsets_sources, timevars_sources):
14323 New vars.
14324
14325 * lib/Makefile.am (libbison_a_SOURCES): Avoid +=, a GNU make extension.
14326 * tests/Makefile.am (EXTRA_DIST): Likewise.
14327
14328 * lib/abitset.c (abitset_reverse_list, ebitset_reverse_list):
14329 Do not assume that bitset_windex is the same width as unsigned.
14330
14331 * lib/abitset.c (abitset_unused_clear): Do not assume that
14332 bitset_word is the same width as int.
14333 * lib/bbitset.h (BITSET_INDEX_MAX, BITSET_MSB): Likewise.
14334 * lib/bitset.h (bitset_set, bitset_reset): Likewise.
14335 * lib/bitset_stats.c (bitset_stats_set, bitset_stats_reset): Likewise.
14336 * lib/ebitset.c (ebitset_set, ebitset_reset): Likewise.
14337 * lib/lbitset.c (lbitset_set, lbitset_reset): Likewise.
14338
14339 * lib/abitset.c (abitset_op1): Use -1, not ~0, as memset arg (for
14340 portability to one's complement hosts!).
14341 * lib/ebitset.c (ebitset_op1): Likewise.
14342 * lib/lbitset.c (lbitset_op1): Likewise.
14343
14344 * lib/argmatch.c, lib/quotearg.c, quotearg.h: Sync with GNU tar.
14345 * lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
14346 lib/hash.c, lib/hash.h, lib/strnlen.c, lib/xmalloc.c:
14347 Sync with fileutils.
14348 * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
14349 lib/gettext.h: Sync with diffutils.
14350
14351 * lib/memrchr.c, lib/mkstemp.c, lib/strchr.c, lib/strnlen.c,
14352 lib/strspn.c, lib/tempname.c: Use GPL, not LGPL.
14353
14354 * lib/obstack.c, lib/obstack.h: Sync with fileutils, except use
14355 PROTOTYPES to check for prototypes, and "defined __STDC__" to
14356 check for void *.
14357
14358 * lib/bbitset.h (BITSET_WORD_BITS): Now of type unsigned, not
14359 size_t; the old version tried to do this but casted improperly.
14360 (bitset_bindex, bitset_windex): Now size_t, not unsigned long.
14361 (bitset_test): Now returns int, not unsigned long.
14362
14363 * lib/bitset_stats.c: Include "gettext.h".
14364 (_): New macro.
14365 (bitset_stats_set, bitset_stats_reset, bitset_stats_test): Don't
14366 name locals "index", as it generates unnecessary warnings on some
14367 hosts that have an "index" function.
14368
14369 * lib/bitset_stats.c (bitset_stats_print_1, bitset_stats_print,
14370 bitset_stats_read, bitset_stats_write): Wrap strings in _() if
14371 they need translation.
14372 * src/LR0.c (state_list_append, new_itemsets, get_state,
14373 append_states, generate_states): Likewise.
14374 * src/assoc.c (assoc_to_string): Likewise.
14375 * src/closure.c (print_closure, set_firsts, closure): Likewise.
14376 * src/gram.c (grammar_dump): Likewise.
14377 * src/injections.c (injections_compute): Likewise.
14378 * src/lalr.c (lookaheads_print): Likewise.
14379 * src/relation.c (relation_transpose): Likewise.
14380 * src/scan-gram.l: Likewise.
14381 * src/tables.c (table_grow, pack_vector): Likewise.
14382
14383 * m4/Makefile.am (EXTRA_DIST): Remove codeset.m4,
14384 glibc21.m4, isc-posix.m4 lcmessage.m4, stage.m4.
14385 * m4/malloc.m4, m4/realloc.m4: Sync with diffutils.
14386 * m4/mbstate_t.m4: Sync with fileutils.
14387 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): AC_MBSTATE_T -> AC_TYPE_MBSTATE_T.
14388
14389 * po/LINGUAS: Add pt_BR.
14390 * po/POTFILES.in: Add src/assoc.c, src/closure.c, src/gram.c,
14391 src/main.c, src/relation.c, src/state.c, lib/bitset_stats.c,
14392 lib/timevar.c.
14393 Use src/parse-gram.y instead of src/parse-gram.c, as the gettext
14394 manual recommends.
14395 Similarly, use src/scan-gram.l instead of src/scan-gram.c.
14396
14397 * src/complain.c (strerror_r): Remove decl; not needed.
14398 (strerror): Use same pattern as ../lib/error.c.
14399
14400 * src/files.c, src/files.h (compute_header_macro): Remove; unused.
14401
14402 * src/gram.c (grammar_dump): Do not assume ptrdiff_t fits in int.
14403
14404 * src/main.c (main): Cast result of bindtextdomain and textdomain
14405 to void, to avoid a GCC warning when --disable-nls is in effect.
14406
14407 * src/scan-gram.l: Use strings rather than escapes when possible,
14408 to minimize the number of warnings from xgettext.
14409 (handle_action_dollar, handle_action_at): Don't use isdigit,
14410 as it mishandles negative chars and it may not work as expected
14411 outside the C locale.
14412
14413 * src/symtab.c (symbol_get): Don't cast LHS of an assignment;
14414 this is a GCC extension and is not portable to other compilers.
14415
14416 * src/system.h (alloca): Use same pattern as ../lib/error.c.
14417 Do not include <ctype.h>; no longer needed.
14418 Do not include <malloc.h>; no longer needed (and generates
14419 warnings on OpenBSD 3.0).
14420
14421 * tests/cxx-type.at (yylex): Do not pass signed char to isupper;
14422 it's not portable.
14423
14424 * tests/regression.at: Do not use 'cc -c input.c -o input';
14425 Sun C rejects this. Instead, use 'cc -c input.c -o input.o'.
14426
14427 * tests/synclines.at (AC_SYNCLINES_COMPILE): Accept any nonzero
14428 exit status as failure, not just exit status 1. Sun C exits
14429 with status 2 sometimes.
14430
14431 * tests/torture.at (AT_INCREASE_DATA_SIZE): New macro.
14432 Use it for the two large tests.
14433
14434 2002-08-02 Akim Demaille <akim@epita.fr>
14435
14436 * src/conflicts.c (conflicts_output): Don't output rules never
14437 reduced here, since anyway that computation doesn't work.
14438 * src/gram.h, src/gram.h (rule_filter_t, rule_useful_p)
14439 (rule_useless_p, rule_never_reduced_p): New.
14440 (grammar_rules_partial_print): Use a filter instead of a range.
14441 Display the title only if needed.
14442 (grammar_rules_print): Adjust.
14443 (grammar_rules_never_reduced_report): New.
14444 * src/tables.c (action_row): Move the computation of rules never
14445 reduced to...
14446 (token_actions): here.
14447 * src/main.c (main): Make the parser before making the report, so
14448 that rules never reduced are computed.
14449 Call grammar_rules_never_reduced_report.
14450 * src/print.c (print_results): Report rules never reduced.
14451 * tests/conflicts.at, tests/reduce.at: Adjust.
14452
14453 2002-08-01 Akim Demaille <akim@epita.fr>
14454
14455 Instead of attaching lookaheads and duplicating the rules being
14456 reduced by a state, attach the lookaheads to the reductions.
14457
14458 * src/state.h (state_t): Remove the `lookaheads',
14459 `lookaheads_rule' member.
14460 (reductions_t): Add a `lookaheads' member.
14461 Use a regular array for the `rules'.
14462 * src/state.c (reductions_new): Initialize the lookaheads member
14463 to 0.
14464 (state_rule_lookaheads_print): Adjust.
14465 * src/state.h, src/state.c (state_reductions_find): New.
14466 * src/conflicts.c (resolve_sr_conflict, set_conflicts)
14467 (count_rr_conflicts): Adjust.
14468 * src/lalr.c (LArule): Remove.
14469 (add_lookback_edge): Adjust.
14470 (state_lookaheads_count): New.
14471 (states_lookaheads_initialize): Merge into...
14472 (initialize_LA): this.
14473 (lalr_free): Adjust.
14474 * src/main.c (main): Don't free nullable and derives too early: it
14475 is used by --verbose.
14476 * src/print.c, src/print_graph.c, src/tables.c: Adjust.
14477
14478 2002-08-01 Akim Demaille <akim@epita.fr>
14479
14480 * src/derives.h, src/derives.c (derives): A `rule_t***' instead of
14481 `rule_number_t**'.
14482 (set_derives, free_derives): Rename as...
14483 (derives_compute, derives_free): this.
14484 Adjust all dependencies.
14485 * src/nullable.c (set_nullable, free_nullable): Rename as...
14486 (nullable_compute, nullable_free): these.
14487 (rule_list_t): Store rule_t *, not rule_number_t.
14488 * src/state.c (state_rule_lookaheads_print): Directly compare rule
14489 pointers, instead of their numbers.
14490 * src/main.c (main): Call nullable_free, and derives_free earlier,
14491 as they were lo longer used.
14492
14493 2002-08-01 Akim Demaille <akim@epita.fr>
14494
14495 * lib/timevar.c (get_time): Include children time.
14496 * src/lalr.h (LA, LArule): Don't export them: used with the
14497 state_t.
14498 * src/lalr.c (LA, LArule): Static.
14499 * src/lalr.h, src/lalr.c (lalr_free): New.
14500 * src/main.c (main): Call it.
14501 * src/tables.c (pack_vector): Check whether loc is >= to the
14502 table_size, not >.
14503 (pack_tables): Don't free froms, tos, conflict_tos, and pos...
14504 (tables_generate): do it, since that's also it which allocates
14505 them.
14506 Don't free LA and LArule, main does.
14507
14508 2002-07-31 Akim Demaille <akim@epita.fr>
14509
14510 Separate parser tables computation and output.
14511
14512 * src/output.c (nvectors, base_t, base, base_ninf, conflict_table)
14513 (conflict_list, conflict_list_cnt, table, check, table_ninf)
14514 (yydefgoto, yydefact, high): Move to...
14515 * src/tables.h, src/tables.c: here.
14516 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
14517 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
14518 (symbol_number_to_vector_number, nvectors, BASE_MAX, BASE_MIN)
14519 (froms, tos, conflict_tos, tally, width, action_t, ACTION_MAX)
14520 (ACTION_MIN, actrow, order, nentries, pos, conflrow)
14521 (conflict_list_free, table_size, lowzero, table_grow, conflict_row)
14522 (action_row, save_row, token_actions, save_column, default_goto)
14523 (goto_actions, sort_actions, matching_state, pack_vector)
14524 (table_ninf_remap, pack_table, prepare_actions): Move to...
14525 * src/tables.c: here.
14526 * src/tables.h, src/tables.c(tables_generate, tables_free): New.
14527 * src/output.c (token_actions, output_base, output_conflicts)
14528 (output_check): Merge into...
14529 (prepare_actions): this.
14530 (actions_output): Rename as...
14531 (user_actions_output): this.
14532 * src/main.c (main): Call tables_generate and tables_free.
14533
14534 2002-07-31 Akim Demaille <akim@epita.fr>
14535
14536 Steal GCC's --time-report support.
14537
14538 * lib/timevar.c, lib/timevar.h, lib/timevar.def: New,
14539 stolen/adjusted from GCC.
14540 * m4/stage.m4: Remove time related checks.
14541 * m4/timevar.m4: New.
14542 * configure.in: Adjust.
14543 * src/system.h: Adjust to using timevar.h.
14544 * src/getargs.h, src/getargs.c: Support trace_time for
14545 --trace=time.
14546 * src/main.c (stage): Remove.
14547 (main): Replace `stage' invocations with timevar calls.
14548 * src/output.c: Insert pertinent timevar calls.
14549
14550 2002-07-31 Akim Demaille <akim@epita.fr>
14551
14552 Let --trace have arguments.
14553
14554 * src/getargs.h (enum trace_e): New.
14555 * src/getargs.c (trace_args, trace_types, trace_argmatch): New.
14556 (long_options, short_options): --trace/-T takes an optional
14557 argument.
14558 Change all the uses of trace_flag to reflect the new flags.
14559 * tests/sets.at (Firsts, Nullable, Broken Closure): Use --trace=sets.
14560
14561 Strengthen `stage' portability.
14562
14563 * m4/stage.m4 (BISON_PREREQ_STAGE): New.
14564 * configure.in: Use it.
14565 Don't check for malloc.h and sys/times.h.
14566 * src/system.h: Include them when appropriate.
14567 * src/main.c (stage): Compile only when mallinfo, struct mallinfo,
14568 times and struct tms are available.
14569
14570 2002-07-30 Akim Demaille <akim@epita.fr>
14571
14572 In verbose parse error message, don't report `error' as an
14573 expected token.
14574 * tests/actions.at (Printers and Destructors): Adjust.
14575 * tests/calc.at (Calculator $1): Adjust.
14576 * data/yacc.c, data/glr.c, data/lalr1.c: When making the verbose
14577 error message, do not report the parser accepts the error token in
14578 that state.
14579
14580 2002-07-30 Akim Demaille <akim@epita.fr>
14581
14582 Normalize conflict related messages.
14583
14584 * src/complain.h, src/complain.c (warn, complain): New.
14585 * src/conflicts.c (conflicts_print): Use them.
14586 (conflict_report_yacc): New, extracted from...
14587 (conflicts_print): here.
14588 * tests/conflicts.at, tests/existing.at: Adjust.
14589
14590 2002-07-30 Akim Demaille <akim@epita.fr>
14591
14592 Report rules which are never reduced by the parser: those hidden
14593 by conflicts.
14594
14595 * src/LR0.c (save_reductions): Don't make the final state too
14596 different: save its reduction (accept) instead of having a state
14597 without any action (no shift or goto, no reduce).
14598 Note: the final state is now a ``regular'' state, i.e., the
14599 parsers now contain `reduce 0' as default reduction.
14600 Nevertheless, since they decide to `accept' when yystate =
14601 final_state, they still will not reduce rule 0.
14602 * src/print.c (print_actions, print_reduction): Adjust.
14603 * src/output.c (action_row): Track reduced rules.
14604 (token_actions): Report rules never reduced.
14605 * tests/conflicts.at, tests/regression.at: Adjust.
14606
14607 2002-07-30 Akim Demaille <akim@epita.fr>
14608
14609 `stage' was accidently included in a previous patch.
14610 Initiate its autoconfiscation.
14611
14612 * configure.in: Look for malloc.h and sys/times.h.
14613 * src/main.c (stage): Adjust.
14614 Report only when trace_flag.
14615
14616 2002-07-29 Akim Demaille <akim@epita.fr>
14617
14618 * src/state.h, src/state.c (transitions_t): Holds state_t*'s, not
14619 state_number_t.
14620 (errs_t): symbol_t*, not symbol_number_t.
14621 (reductions_t): rule_t*, not rule_number_t.
14622 (FOR_EACH_SHIFT): New.
14623 * src/LR0.c, src/conflicts.c, src/lalr.c, src/output.c
14624 * src/print.c, src/print_graph.c: Adjust.
14625
14626 2002-07-29 Akim Demaille <akim@epita.fr>
14627
14628 Use $accept and $end, as BYacc and BTYacc do, instead of $axiom and $.
14629
14630 * src/symtab.h, src/symtab.c (eoftoken, axiom): Rename as...
14631 (endtoken, accept): these.
14632 * src/reader.c (reader): Set endtoken's default tag to "$end".
14633 Set undeftoken's tag to "$undefined" instead of "$undefined.".
14634 * doc/bison.texinfo (Table of Symbols): Mention $accept and $end.
14635 Adjust.
14636
14637 2002-07-29 Akim Demaille <akim@epita.fr>
14638
14639 * src/reduce.c (reduce_grammar): When the language is empty,
14640 complain about the start symbol, not the axiom.
14641 Use its location.
14642 * tests/reduce.at (Empty Language): New.
14643
14644 2002-07-26 Akim Demaille <akim@epita.fr>
14645
14646 * src/reader.h, src/reader.c (gram_error): ... can't get
14647 yycontrol without making too strong assumptions on the parser
14648 itself.
14649 * src/output.c (prepare_tokens): Use the real 0th value of
14650 token_translations instead of `0'.
14651 * src/parse-gram.y (yyerror): Don't rely on yycontrol being
14652 visible here.
14653 * data/yacc.c (yyreport_parse_error): Rename yylocation as yylloc
14654 for the time being: %locations ought to provide it to yyerror.
14655
14656 2002-07-25 Akim Demaille <akim@epita.fr>
14657
14658 * src/output.c (prepare_tokens): Go up to ntokens, not ntokens + 1.
14659 * doc/bison.texinfo (Decl Summary): s/$illegal/$undefined./.
14660 * tests/regression.at (Web2c Actions): Adjust.
14661
14662 2002-07-25 Akim Demaille <akim@epita.fr>
14663
14664 Stop storing rules from 1 to nrules + 1.
14665
14666 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c, src/lalr.c
14667 * src/nullable.c, src/output.c, src/print.c, src/reader.c
14668 * src/reduce.c: Allocate and free from &rules[0], not &rules[1].
14669 Iterate from 0 to nrules.
14670 Use rule_number_as_item_number and item_number_as_rule_number.
14671 Adjust to `derive' now containing possibly 0.
14672 * src/gram.h (rule_number_as_item_number, item_number_as_rule_number):
14673 Handle the `- 1' part in rule numbers from/to item numbers.
14674 * src/conflicts.c (log_resolution): Fix the message which reversed
14675 shift and reduce.
14676 * src/output.c (action_row): Initialize default_rule to -1.
14677 (token_actions): Adjust.
14678 * tests/sets.at (Nullable, Firsts): Fix the previously bogus
14679 expected output.
14680 * tests/conflicts.at (Resolved SR Conflicts): Likewise.
14681
14682 2002-07-25 Akim Demaille <akim@epita.fr>
14683
14684 * data/c.m4 (b4_c_function, b4_c_ansi_args, b4_c_ansi_arg)
14685 (b4_c_knr_arg_names, b4_c_knr_arg_name, b4_c_knr_arg_decls)
14686 (b4_c_knr_arg_decl): New.
14687 * data/yacc.c: Use it to define yysymprint, yydestruct, and
14688 yyreport_parse_error.
14689
14690 2002-07-25 Akim Demaille <akim@epita.fr>
14691
14692 * data/yacc.c (yyreport_parse_error): New, extracted from...
14693 (yyparse): here.
14694 (yydestruct, yysymprint): Move above yyparse.
14695 Be K&R compliant.
14696
14697 2002-07-25 Akim Demaille <akim@epita.fr>
14698
14699 * data/c.m4 (b4_ints_in, b4_int_type, b4_int_type_for): New,
14700 replace...
14701 (b4_sint_type, b4_uint_type): these.
14702 * data/yacc.c, data/glr.c, data/lalr1.cc: Use b4_int_type_for.
14703 * tests/regression.at (Web2c Actions): Adjust.
14704
14705 2002-07-25 Akim Demaille <akim@epita.fr>
14706
14707 * src/gram.h (TIEM_NUMBER_MAX): New.
14708 (item_number_of_rule_number, rule_number_of_item_number): Rename
14709 as...
14710 (rule_number_as_item_number, item_number_as_rule_number): these.
14711 Adjust dependencies.
14712 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
14713 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
14714 (symbol_number_to_vector_number): New.
14715 (order): Of vector_number_t* type.
14716 (base_t, BASE_MAX, BASE_MIN): New.
14717 (froms, tos, width, pos, check): Of base_t type.
14718 (action_number_t, ACTION_MIN, ACTION_MAX): New.
14719 (actrow): Of action_number_t type.
14720 (conflrow): Of unsigned int type.
14721 (table_ninf, base_ninf): New.
14722 (GENERATE_MUSCLE_INSERT_TABLE): Also output the `*_min' value.
14723 (muscle_insert_int_table, muscle_insert_base_table)
14724 (muscle_insert_rule_number_table): New.
14725 (prepare_tokens): Output `toknum' as int_table.
14726 (action_row): Returns a rule_number_t.
14727 Use ACTION_MIN, not SHRT_MIN.
14728 (token_actions): yydefact is rule_number_t*.
14729 (table_ninf_remap): New.
14730 (pack_table): Use it for `base' and `table'.
14731 * data/yacc.c, data/glr.c, data/lalr1.cc (YYFLAG): Remove,
14732 replaced with...
14733 (YYPACT_NINF, YYTABLE_NINF): these.
14734 (yypact, yytable): Compute their types instead of hard-coded
14735 `short'.
14736 * tests/regression.at (Web2c Actions): Adjust.
14737
14738 2002-07-19 Akim Demaille <akim@epita.fr>
14739
14740 * src/scan-gram.l (id): Can start with an underscore.
14741
14742 2002-07-16 Akim Demaille <akim@epita.fr>
14743
14744 * src/assoc.c, src/asssoc.h (assoc_t, assoc_to_string): New.
14745 Adjust all former `associativity' dependencies.
14746 * src/symtab.c (symbol_new): Default associativity is `undef', not
14747 `right'.
14748 (symbol_check_alias_consistence): Adjust.
14749
14750 2002-07-09 Akim Demaille <akim@epita.fr>
14751
14752 * doc/bison.texinfo: Properly set the ``header'' part.
14753 Use @dircategory ``GNU programming tools'' as per Texinfo's
14754 documentation.
14755 Use @copying.
14756
14757 2002-07-09 Akim Demaille <akim@epita.fr>
14758
14759 * lib/quotearg.h: Protect against multiple inclusions.
14760 * src/location.h (location_t): Add a `file' member.
14761 (LOCATION_RESET, LOCATION_PRINT): Adjust.
14762 * src/complain.c (warn_at, complain_at, fatal_at): Drop
14763 `error_one_per_line' support.
14764
14765 2002-07-09 Akim Demaille <akim@epita.fr>
14766
14767 * src/complain.h, src/complain.c (warn, complain): Remove, unused.
14768 * src/reader.c (lineno): Remove.
14769 Adjust all dependencies.
14770 (get_merge_function): Take a location and use complain_at.
14771 * src/symtab.h, src/symtab.c (symbol_make_alias): Likewise.
14772 * tests/regression.at (Invalid inputs, Mixing %token styles):
14773 Adjust.
14774
14775 2002-07-09 Akim Demaille <akim@epita.fr>
14776
14777 * src/parse-gram.y (rules_or_grammar_declaration): Add an error
14778 recovery rule, and forbid extensions when --yacc.
14779 (gram_error): Use complain_at.
14780 * src/reader.c (reader): Exit if there were parse errors.
14781
14782 2002-07-09 Akim Demaille <akim@epita.fr>
14783
14784 * tests/synclines.at (AT_SYNCLINES_COMPILE): New.
14785 (AT_TEST_SYNCLINE): Adjust to unusual GCC outputs.
14786 Reported by R Blake <blakers@mac.com>.
14787
14788 2002-07-09 Akim Demaille <akim@epita.fr>
14789
14790 * data/yacc.c: Output the copyright notive in the header.
14791
14792 2002-07-03 Akim Demaille <akim@epita.fr>
14793
14794 * src/output.c (froms, tos): Are state_number_t.
14795 (save_column): sp, sp1, and sp2 are state_number_t.
14796 (prepare): Rename `final' as `final_state_number', `nnts' as
14797 `nterms_number', `nrules' as `rules_number', `nstates' as
14798 `states_number', and `ntokens' as `tokens_number'. Remove `nsym',
14799 unused.
14800 * data/yacc.c, data/glr.c, data/lalr1.cc: Adjust.
14801 * data/lalr1.cc (nsym_): Remove, unused.
14802
14803 2002-07-03 Akim Demaille <akim@epita.fr>
14804
14805 * src/lalr.h, src/lalr.c (goto_number_t): New.
14806 * src/lalr.c (goto_list_t): New.
14807 Propagate them.
14808 * src/nullable.c (rule_list_t): New.
14809 Propagate.
14810 * src/types.h: Remove.
14811
14812 2002-07-03 Akim Demaille <akim@epita.fr>
14813
14814 * src/closure.c (print_fderives): Use rule_rhs_print.
14815 * src/derives.c (print_derives): Use rule_rhs_print.
14816 (rule_list_t): New, replaces `shorts'.
14817 (set_derives): Add comments.
14818 * tests/sets.at (Nullable, Firsts): Adjust.
14819
14820 2002-07-03 Akim Demaille <akim@epita.fr>
14821
14822 * src/output.c (prepare_actions): Free `tally' and `width'.
14823 (prepare_actions): Allocate and free `order'.
14824 * src/symtab.c (symbols_free): Free `symbols'.
14825 * src/scan-gram.l (scanner_free): Clear Flex's scanners memory.
14826 * src/output.c (m4_invoke): Move to...
14827 * src/scan-skel.l: here.
14828 (<<EOF>>): Close yyout, and free its name.
14829
14830 2002-07-03 Akim Demaille <akim@epita.fr>
14831
14832 Fix some memory leaks, and fix a bug: state 0 was examined twice.
14833
14834 * src/LR0.c (new_state): Merge into...
14835 (state_list_append): this.
14836 (new_states): Merge into...
14837 (generate_states): here.
14838 (set_states): Don't ensure a proper `errs' state member here, do it...
14839 * src/conflicts.c (conflicts_solve): here.
14840 * src/state.h, src/state.c: Comment changes.
14841 (state_t): Rename member `shifts' as `transitions'.
14842 Adjust all dependencies.
14843 (errs_new): For consistency, also take the values as argument.
14844 (errs_dup): Remove.
14845 (state_errs_set): New.
14846 (state_reductions_set, state_transitions_set): Assert that no
14847 previous value was assigned.
14848 (state_free): New.
14849 (states_free): Use it.
14850 * src/conflicts.c (resolve_sr_conflict): Don't use an `errs_t' as
14851 temporary storage: use `errs' and `nerrs' as elsewhere.
14852 (set_conflicts): Allocate and free this `errs'.
14853
14854 2002-07-02 Akim Demaille <akim@epita.fr>
14855
14856 * lib/libiberty.h: New.
14857 * lib: Update the bitset implementation from upstream.
14858 * src/closure.c, src/lalr.c, src/output.c, src/print_graph.c,
14859 * src/state.c: Use BITSET_FOR_EACH, not BITSET_EXECUTE.
14860 * src/main.c: Adjust bitset stats calls.
14861
14862 2002-07-01 Paul Eggert <eggert@twinsun.com>
14863
14864 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>): Convert to unsigned
14865 char, so that negative chars don't collide with $.
14866
14867 2002-06-30 Akim Demaille <akim@epita.fr>
14868
14869 Have the GLR tests be `warning' checked, and fix the warnings.
14870
14871 * data/glr.c (YYFPRINTF): Always define it, not only when YYDEBUG
14872 (yyuserAction, yyreportAmbiguity): `Use' all the arguments.
14873 (yyremoveDeletes): `yyi' and `yyj' are size_t.
14874 Use YYFPRINTF when under if (YYDEBUG) to avoid empty `if' bodies.
14875 (yyaddDeferredAction): static.
14876 (yyglrReduce): yyi, yyk, amd yyposn are size_t.
14877 (yyreportParseError): yyprefix is const.
14878 yytokenp is used only when verbose.
14879 (yy__GNUC__): Replace with __GNUC__.
14880 (yypdumpstack): yyi is size_t.
14881 (yypreference): Un-yy local variables and arguments, to avoid
14882 clashes with `yyr1'. Anyway, we are not in the user name space.
14883 (yytname_size): be an int, as is compared with ints.
14884 * tests/testsuite.at (AT_COMPILE, AT_PARSER_CHECK): New.
14885 Use them.
14886 * tests/cxx-gram.at: Use quotation to protect $1.
14887 Use AT_COMPILE to enable warnings hunts.
14888 Prototype yylex and yyerror.
14889 `Use' argc.
14890 Include `string.h', not `strings.h'.
14891 Produce and prototype stmtMerge only when used.
14892 yylex takes a location.
14893
14894 2002-06-30 Akim Demaille <akim@epita.fr>
14895
14896 We spend a lot of time in quotearg, in particular when --verbose.
14897
14898 * src/symtab.c (symbol_get): Store a quoted version of the key.
14899 (symbol_tag_get, symbol_tag_get_n, symbol_tag_print): Remove.
14900 Adjust all callers.
14901
14902 2002-06-30 Akim Demaille <akim@epita.fr>
14903
14904 * src/state.h (reductions_t): Rename member `nreds' as num.
14905 (errs_t): Rename members `nerrs' and `errs' as `num' and `symbols'.
14906 * src/state.c (ERRS_ALLOC, REDUCTIONS_ALLOC): Use the correct types.
14907
14908 2002-06-30 Akim Demaille <akim@epita.fr>
14909
14910 * src/state.h, src/state.c (shift_t, SHIFT_SYMBOL, SHIFT_IS_SHIFT)
14911 (SHIFT_IS_GOTO, SHIFT_IS_ERROR, SHIFT_DISABLE, SHIFT_IS_DISABLED)
14912 (shifts_to): Rename as...
14913 (transition_t, TRANSITION_SYMBOL, TRANSITION_IS_TRANSITION)
14914 (TRANSITION_IS_GOTO, TRANSITION_IS_ERROR, TRANSITION_DISABLE)
14915 (TRANSITION_IS_DISABLED, transitions_to): these.
14916
14917 2002-06-30 Akim Demaille <akim@epita.fr>
14918
14919 * src/print.c (print_shifts, print_gotos): Merge into...
14920 (print_transitions): this.
14921 (print_transitions, print_errs, print_reductions): Align the
14922 lookaheads columns.
14923 (print_core, print_transitions, print_errs, print_state,
14924 print_grammar): Output empty lines separator before, not after.
14925 (state_default_rule_compute): Rename as...
14926 (state_default_rule): this.
14927 * tests/conflicts.at (Defaulted Conflicted Reduction),
14928 (Unresolved SR Conflicts, Resolved SR Conflicts): Adjust.
14929 * tests/regression.at (Rule Line Numbers, Web2c Report): Adjust.
14930
14931 2002-06-30 Akim Demaille <akim@epita.fr>
14932
14933 Display items as we display rules.
14934
14935 * src/gram.h, src/gram.c (rule_lhs_print): New.
14936 * src/gram.c (grammar_rules_partial_print): Use it.
14937 * src/print.c (print_core): Likewise.
14938 * tests/conflicts.at (Defaulted Conflicted Reduction),
14939 (Unresolved SR Conflicts): Adjust.
14940 (Unresolved SR Conflicts): Adjust and rename as...
14941 (Resolved SR Conflicts): this, as was meant.
14942 * tests/regression.at (Web2c Report): Adjust.
14943
14944 2002-06-30 Akim Demaille <akim@epita.fr>
14945
14946 * src/print.c (state_default_rule_compute): New, extracted from...
14947 (print_reductions): here.
14948 Pessimize, but clarify the code.
14949 * tests/conflicts.at (Defaulted Conflicted Reduction): New.
14950
14951 2002-06-30 Akim Demaille <akim@epita.fr>
14952
14953 * src/output.c (action_row): Let default_rule be always a rule
14954 number.
14955
14956 2002-06-30 Akim Demaille <akim@epita.fr>
14957
14958 * src/closure.c (print_firsts, print_fderives, closure):
14959 Use BITSET_EXECUTE.
14960 * src/lalr.c (lookaheads_print): Likewise.
14961 * src/state.c (state_rule_lookaheads_print): Likewise.
14962 * src/print_graph.c (print_core): Likewise.
14963 * src/print.c (print_reductions): Likewise.
14964 * src/output.c (action_row): Likewise.
14965 Use SHIFT_IS_DISABLED, SHIFT_IS_SHIFT and SHIFT_SYMBOL.
14966
14967 2002-06-30 Akim Demaille <akim@epita.fr>
14968
14969 * src/print_graph.c: Use report_flag.
14970
14971 2002-06-30 Akim Demaille <akim@epita.fr>
14972
14973 * src/lalr.c (traverse, digraph, matrix_print, transpose): Move
14974 to...
14975 * src/relation.h, src/relation.c (traverse, relation_digraph)
14976 (relation_print, relation_transpose): New.
14977
14978 2002-06-30 Akim Demaille <akim@epita.fr>
14979
14980 * src/state.h, src/state.c (shifts_to): New.
14981 * src/lalr.c (build_relations): Use it.
14982
14983 2002-06-30 Akim Demaille <akim@epita.fr>
14984
14985 * src/gram.h (rule_number_t, RULE_NUMBER_MAX, int_of_rule_number)
14986 (item_number_of_rule_number, rule_number_of_item_number): New.
14987 * src/LR0.c, src/closure.c, src/derives.c, src/derives.h,
14988 * src/gram.c, src/lalr.c, src/nullable.c, src/output.c, src/print.c,
14989 * src/print_graph.c, src/reader.c, src/reduce.c, src/reduce.h:
14990 Propagate their use.
14991 Much remains to be done, in particular wrt `shorts' from types.h.
14992
14993 2002-06-30 Akim Demaille <akim@epita.fr>
14994
14995 * src/symtab.c (symbol_new): Initialize the `printer' member.
14996
14997 2002-06-30 Akim Demaille <akim@epita.fr>
14998
14999 * src/LR0.c (save_reductions): Remove, replaced by...
15000 * src/state.h, src/state.c (state_reductions_set): New.
15001 (reductions, errs): Rename as...
15002 (reductions_t, errs_t): these.
15003 Adjust all dependencies.
15004
15005 2002-06-30 Akim Demaille <akim@epita.fr>
15006
15007 * src/LR0.c (state_list_t, state_list_append): New.
15008 (first_state, last_state): Now symbol_list_t.
15009 (this_state): Remove.
15010 (new_itemsets, append_states, save_reductions): Take a state_t as
15011 argument.
15012 (set_states, generate_states): Adjust.
15013 (save_shifts): Remove, replaced by...
15014 * src/state.h, src/state.c (state_shifts_set): New.
15015 (shifts): Rename as...
15016 (shifts_t): this.
15017 Adjust all dependencies.
15018 * src/state.h (state_t): Remove the `next' member.
15019
15020 2002-06-30 Akim Demaille <akim@epita.fr>
15021
15022 * src/vcg.c (quote): Use slot 2, since we often pass symbol tag
15023 escaped in slot 0.
15024
15025 2002-06-30 Akim Demaille <akim@epita.fr>
15026
15027 Use hash.h for the state hash table.
15028
15029 * src/LR0.c (STATE_HASH_SIZE, state_hash): Remove.
15030 (allocate_storage): Use state_hash_new.
15031 (free_storage): Use state_hash_free.
15032 (new_state, get_state): Adjust.
15033 * src/lalr.h, src/lalr.c (states): Move to...
15034 * src/states.h (state_t): Remove the `link' member, no longer
15035 used.
15036 * src/states.h, src/states.c: here.
15037 (state_hash_new, state_hash_free, state_hash_lookup)
15038 (state_hash_insert, states_free): New.
15039 * src/states.c (state_table, state_compare, state_hash): New.
15040 * src/output.c (output_actions): Do not free states now, since we
15041 still need to know the final_state number in `prepare', called
15042 afterwards. Do it...
15043 * src/main.c (main): here: call states_free after `output'.
15044
15045 2002-06-30 Akim Demaille <akim@epita.fr>
15046
15047 * src/state.h, src/state.c (state_new): New, extracted from...
15048 * src/LR0.c (new_state): here.
15049 * src/state.h (STATE_ALLOC): Move to...
15050 * src/state.c: here.
15051 * src/LR0.h, src/LR0.c (nstates, final_state): Move to...
15052 * src/state.h, src/state.c: here.
15053
15054 2002-06-30 Akim Demaille <akim@epita.fr>
15055
15056 * src/reader.c (gensym): Rename as...
15057 * src/symtab.h, src/symtab.c (dummy_symbol_get): this.
15058 (getsym): Rename as...
15059 (symbol_get): this.
15060
15061 2002-06-30 Akim Demaille <akim@epita.fr>
15062
15063 * src/state.h (state_number_t, STATE_NUMBER_MAX): New.
15064 * src/LR0.c, src/LR0.h, src/conflicts.c, src/lalr.c, src/lalr.h,
15065 * src/output.c, src/print.c, src/print_graph.c: Propagate.
15066 * src/LR0.h, src/LR0.h (final_state): Is a state_t*.
15067
15068 2002-06-30 Akim Demaille <akim@epita.fr>
15069
15070 Make the test suite pass with warnings checked.
15071
15072 * tests/actions.at (Printers and Destructors): Improve.
15073 Avoid unsigned vs. signed issues.
15074 * tests/calc.at: Don't exercise the scanner here, do it...
15075 * tests/input.at (Torturing the Scanner): here.
15076
15077 2002-06-28 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15078
15079 * data/glr.c: Correct typo in Emacs-mode directive. Slightly
15080 reorganize first lines parallel to yacc.c.
15081
15082 2002-06-28 Akim Demaille <akim@epita.fr>
15083
15084 * data/c.m4 (b4_copyright, b4_sint_type, b4_uint_type, b4_token_define)
15085 (b4_token_enum, b4_token_defines): New, factored from...
15086 * data/lalr1.cc, data/yacc.c, glr.c: here.
15087
15088 2002-06-28 Akim Demaille <akim@epita.fr>
15089
15090 * data/yacc.c (yydestruct, yysymprint): Pacify GCC warnings for
15091 unused variables.
15092 * src/output.c (merger_output): static.
15093
15094 2002-06-28 Akim Demaille <akim@epita.fr>
15095
15096 * src/reader.h: s/grammer_current_rule_merge_set/grammar_.../.
15097 * src/conflicts.c (conflicts_total_count): `i' is unsigned, to
15098 pacify GCC.
15099 * src/output.c (save_row): Initialize all the variables to pacify GCC.
15100
15101 2002-06-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15102
15103 Accumulated changelog for new GLR parsing features.
15104
15105 * src/conflicts.c (count_total_conflicts): Change name to
15106 conflicts_total_count.
15107 * src/conflicts.h: Ditto.
15108 * src/output.c (token_actions): Use the new name.
15109 (output_conflicts): Change conflp => conflict_list_heads, and
15110 confl => conflict_list for better readability.
15111 * data/glr.c: Use the new names.
15112 * NEWS: Add self to GLR announcement.
15113
15114 * src/reader.c (free_merger_functions): Cleanup: XFREE->free.
15115
15116 * doc/bison.texinfo (GLR Parsers): Make corrections suggested by
15117 Akim Demaille.
15118
15119 * data/bison.glr: Change name to glr.c
15120 * data/glr.c: Renamed from bison.glr.
15121 * data/Makefile.am: Add glr.c
15122
15123 * src/getargs.c:
15124
15125 * src/symlist.h: Add dprec and merger fields to symbol_list_s.
15126 * src/symlist.c (symbol_list_new): Initialize dprec and merger fields.
15127
15128 Originally 2002-06-16 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15129
15130 * data/bison.glr: Be sure to restore the
15131 current #line when returning to the skeleton contents after having
15132 exposed the input file's #line.
15133
15134 Originally 2002-06-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15135
15136 * data/bison.glr: Bring up to date with changes to bison.simple.
15137
15138 Originally 2002-06-03 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15139
15140 * data/bison.glr: Correct definitions that use b4_prefix.
15141 Various reformatting.
15142 (GLRStack): Make yychar (in YYPURE case) and yytokenp as part of stack.
15143 (yyreportParseError, yyrecoverParseError, yyprocessOneStack): remove
15144 yytokenp argument; now part of stack.
15145 (yychar): Define to behave as documented.
15146 (yyclearin): Ditto.
15147
15148 Originally 2002-05-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15149
15150 * src/reader.h: Add declaration for free_merger_functions.
15151
15152 * src/reader.c (merge_functions): New variable.
15153 (get_merge_function): New function.
15154 (free_merger_functions): New function.
15155 (readgram): Check for %prec that is not followed by a symbol.
15156 Handle %dprec and %merge declarations.
15157 (packgram): Initialize dprec and merger fields in rules array.
15158
15159 * src/output.c (conflict_tos, conflrow, conflict_table, conflict_list,
15160 conflict_list_cnt, conflict_list_free): New variables.
15161 (table_grow): Also grow conflict_table.
15162 (prepare_rules): Output dprec and merger tables.
15163 (conflict_row): New function.
15164 (action_row): Output conflict lists for GLR parser. Don't use
15165 default reduction in conflicted states for GLR parser so that there
15166 are spaces for the conflict lists.
15167 (save_row): Also save conflict information.
15168 (token_actions): Allocate conflict list.
15169 (merger_output): New function.
15170 (pack_vector): Pack conflict table, too.
15171 (output_conflicts): New function to output yyconflp and yyconfl.
15172 (output_check): Allocate conflict_tos.
15173 (output_actions): Output conflict tables, also.
15174 (output_skeleton): Output b4_mergers definition.
15175 (prepare): Output b4_max_rhs_length definition.
15176 Use 'bison.glr' as default skeleton for GLR parsers.
15177
15178 * src/gram.c (glr_parser): New flag.
15179 (grammar_free): Call free_merger_functions.
15180
15181 * src/conflicts.c (count_rr_conflicts): Augment to optionally count
15182 all pairs of conflicting reductions, rather than just all tokens
15183 causing conflicts. Needed to size conflict tables.
15184 (conflicts_output): Modify call to count_rr_conflicts for new
15185 interface.
15186 (conflicts_print): Ditto.
15187 (count_total_conflicts): New function.
15188
15189 * src/reader.h (merger_list): New type.
15190 (merge_functions): New variable.
15191
15192 * src/lex.h (tok_dprec, tok_merge): New token types.
15193
15194 * src/gram.h (rule_s): Add dprec and merger fields.
15195 (glr_parser): New flag.
15196
15197 * src/conflicts.h (count_total_conflicts): New function.
15198
15199 * src/options.c (option_table): Add %dprec, %merge, and %glr-parser.
15200
15201 * doc/bison.texinfo (Generalized LR Parsing): New section.
15202 (GLR Parsers): New section.
15203 (Language and Grammar): Mention GLR parsing.
15204 (Table of Symbols): Add %dprec, %glr-parser, %merge, GLR
15205 Correct typo ("tge" -> "the").
15206
15207 * data/bison.glr: New skeleton for GLR parsing.
15208
15209 * tests/cxx-gram.at: New tests for GLR parsing.
15210
15211 * tests/testsuite.at: Include cxx-gram.at.
15212
15213 * tests/Makefile.am: Add cxx-gram.at.
15214
15215 * src/parse-gram.y:
15216
15217 * src/scan-gram.l: Add %dprec, %glr-parser, %merge.
15218
15219 * src/parse-gram.y: Grammar for %dprec, %merge, %glr-parser.
15220
15221 2002-06-27 Akim Demaille <akim@epita.fr>
15222
15223 * src/options.h, src/options.c: Remove.
15224 * src/getargs.c (short_options, long_options): New.
15225
15226 2002-06-27 Akim Demaille <akim@epita.fr>
15227
15228 * data/bison.simple, data/bison.c++: Rename as...
15229 * data/yacc.c, data/lalr1.cc: these.
15230 * doc/bison.texinfo (Environment Variables): Remove.
15231
15232 2002-06-25 Raja R Harinath <harinath@cs.umn.edu>
15233
15234 * src/getargs.c (report_argmatch): Initialize strtok().
15235
15236 2002-06-20 Akim Demaille <akim@epita.fr>
15237
15238 * data/bison.simple (b4_symbol_actions): New, replaces...
15239 (b4_symbol_destructor, b4_symbol_printer): these.
15240 (yysymprint): Be sure to call YYPRINT only for tokens, and using
15241 user token numbers.
15242
15243 2002-06-20 Akim Demaille <akim@epita.fr>
15244
15245 * data/bison.simple (yydestructor): Rename as...
15246 (yydestruct): this.
15247
15248 2002-06-20 Akim Demaille <akim@epita.fr>
15249
15250 * src/symtab.h, src/symtab.c (symbol_type_set)
15251 (symbol_destructor_set, symbol_precedence_set): The location is
15252 the last argument.
15253 Adjust all callers.
15254
15255 2002-06-20 Akim Demaille <akim@epita.fr>
15256
15257 * src/parse-gram.y (YYPRINT, yyprint): Don't mess with the parser
15258 internals.
15259 * src/reader.h, src/reader.c (grammar_current_rule_prec_set):
15260 Takes a location.
15261 * src/symtab.h, src/symtab.c (symbol_class_set)
15262 (symbol_user_token_number_set): Likewise.
15263 Adjust all callers.
15264 Promote complain_at.
15265 * tests/input.at (Type Clashes): Adjust.
15266
15267 2002-06-20 Akim Demaille <akim@epita.fr>
15268
15269 * data/bison.simple (YYLEX): Fix the declaration when
15270 %pure-parser.
15271
15272 2002-06-20 Akim Demaille <akim@epita.fr>
15273
15274 * data/bison.simple (yysymprint): Don't print the token number,
15275 just its name.
15276 * tests/actions.at (Destructors): Rename as...
15277 (Printers and Destructors): this.
15278 Also exercise %printer.
15279
15280 2002-06-20 Akim Demaille <akim@epita.fr>
15281
15282 * data/bison.simple (YYDSYMPRINT): New.
15283 Use it to remove many of the #if YYDEBUG/if (yydebug).
15284
15285 2002-06-20 Akim Demaille <akim@epita.fr>
15286
15287 * src/symtab.h, src/symtab.c (symbol_t): printer and
15288 printer_location are new members.
15289 (symbol_printer_set): New.
15290 * src/parse-gram.y (PERCENT_PRINTER): New token.
15291 Handle its associated rule.
15292 * src/scan-gram.l: Adjust.
15293 (handle_destructor_at, handle_destructor_dollar): Rename as...
15294 (handle_symbol_code_at, handle_symbol_code_dollar): these.
15295 * src/output.c (symbol_printers_output): New.
15296 (output_skeleton): Call it.
15297 * data/bison.simple (yysymprint): New. Cannot be named yyprint
15298 since there are already many grammar files with a user `yyprint'.
15299 Replace the calls to YYPRINT to calls to yysymprint.
15300 * tests/calc.at: Adjust.
15301 * tests/torture.at (AT_DATA_STACK_TORTURE): Remove YYPRINT: it was
15302 taking advantage of parser very internal details (stack size!).
15303
15304 2002-06-20 Akim Demaille <akim@epita.fr>
15305
15306 * src/scan-gram.l: Complete the scanner with the missing patterns
15307 to pacify Flex.
15308 Use `quote' and `symbol_tag_get' where appropriate.
15309
15310 2002-06-19 Akim Demaille <akim@epita.fr>
15311
15312 * tests/actions.at (Destructors): Augment to test locations.
15313 * data/bison.simple (yydestructor): Pass it the current location
15314 if locations are enabled.
15315 Prototype only when __STDC__ or C++.
15316 Change the argument names to move into the yy name space: there is
15317 user code here.
15318
15319 2002-06-19 Akim Demaille <akim@epita.fr>
15320
15321 * data/bison.simple (b4_pure_if): New.
15322 Use it instead of #ifdef YYPURE.
15323
15324 2002-06-19 Akim Demaille <akim@epita.fr>
15325
15326 * data/bison.simple (b4_location_if): New.
15327 Use it instead of #ifdef YYLSP_NEEDED.
15328
15329 2002-06-19 Akim Demaille <akim@epita.fr>
15330
15331 Prepare @$ in %destructor, but currently don't bind it in the
15332 skeleton, as %location use is not cleaned up yet.
15333
15334 * src/scan-gram.l (handle_dollar, handle_destructor_at)
15335 (handle_action_at): New.
15336 (handle_at, handle_action_dollar, handle_destructor_dollar): Take
15337 a braced_code_t and a location as additional arguments.
15338 (handle_destructor_dollar): Instead of requiring `b4_eval', just
15339 unquote one when outputting `b4_dollar_dollar'.
15340 Adjust callers.
15341 * data/bison.simple (b4_eval): Remove.
15342 (b4_symbol_destructor): Adjust.
15343 * tests/input.at (Invalid @n): Adjust.
15344
15345 2002-06-19 Zack Weinberg <zack@codesourcery.com>
15346
15347 * doc/bison.texinfo: Document ability to have multiple
15348 prologue sections.
15349
15350 2002-06-18 Akim Demaille <akim@epita.fr>
15351
15352 * src/files.c (compute_base_names): When computing the output file
15353 names from the input file name, strip the directory part.
15354
15355 2002-06-18 Akim Demaille <akim@epita.fr>
15356
15357 * data/bison.simple.new: Comment changes.
15358 Reported by Andreas Schwab.
15359
15360 2002-06-18 Matt Kraai <kraai@alumni.cmu.edu>
15361
15362 * data/bison.simple (yyoverflowlab): #ifndef yyoverflow, so that
15363 there are no `label `yyoverflowlab' defined but not used' warnings
15364 when yyoverflow is defined.
15365
15366 2002-06-18 Akim Demaille <akim@epita.fr>
15367
15368 * src/symtab.h, src/symtab.c (symbol_t): destructor_location is a
15369 new member.
15370 (symbol_destructor_set): Adjust.
15371 * src/output.c (symbol_destructors_output): Output the destructor
15372 locations.
15373 Output the symbol name.
15374 * data/bison.simple (b4_symbol_destructor): Adjust.
15375
15376 2002-06-18 Cris Bailiff <c.bailiff@awayweb.com>
15377 and Akim Demaille <akim@epita.fr>
15378
15379 * data/bison.simple.new (yyerrlab1): Be sure to pop and destroy
15380 what's left on the stack when the error recovery hits EOF.
15381 * tests/actions.at (Destructors): Complete to exercise this case.
15382
15383 2002-06-17 Akim Demaille <akim@epita.fr>
15384
15385 * data/m4sugar/m4sugar.m4 (m4_map): Recognize when the list of
15386 arguments is really empty, not only equal to `[]'.
15387 * src/symtab.h, src/symtab.c (symbol_t): `destructor' is a new
15388 member.
15389 (symbol_destructor_set): New.
15390 * src/output.c (symbol_destructors_output): New.
15391 * src/reader.h (brace_code_t, current_braced_code): New.
15392 * src/scan-gram.l (BRACED_CODE): Use it to branch on...
15393 (handle_dollar): Rename as...
15394 (handle_action_dollar): this.
15395 (handle_destructor_dollar): New.
15396 * src/parse-gram.y (PERCENT_DESTRUCTOR): New.
15397 (grammar_declaration): Use it.
15398 * data/bison.simple (yystos): Is always defined.
15399 (yydestructor): New.
15400 * tests/actions.at (Destructors): New.
15401 * tests/calc.at (_AT_CHECK_CALC_ERROR): Don't rely on egrep.
15402
15403 2002-06-17 Akim Demaille <akim@epita.fr>
15404
15405 * src/symlist.h, src/symlist.c (symbol_list_length): New.
15406 * src/scan-gram.l (handle_dollar, handle_at): Compute the
15407 rule_length only when needed.
15408 * src/output.c (actions_output, token_definitions_output): Output
15409 the full M4 block.
15410 * src/symtab.c: Don't access directly to the symbol tag, use
15411 symbol_tag_get.
15412 * src/parse-gram.y: Use symbol_list_free.
15413
15414 2002-06-17 Akim Demaille <akim@epita.fr>
15415
15416 * src/reader.h, src/reader.c (symbol_list, symbol_list_new)
15417 (symbol_list_prepend, get_type_name): Move to...
15418 * src/symlist.h, src/symlist.c (symbol_list_t, symbol_list_new)
15419 (symbol_list_prepend, symbol_list_n_type_name_get): here.
15420 Adjust all callers.
15421 (symbol_list_free): New.
15422 * src/scan-gram.l (handle_dollar): Takes a location.
15423 * tests/input.at (Invalid $n): Adjust.
15424
15425 2002-06-17 Akim Demaille <akim@epita.fr>
15426
15427 * src/reader.h, src/reader.c (symbol_list_new): Export it.
15428 (symbol_list_prepend): New.
15429 * src/parse-gram.y (%union): `list' is a new member.
15430 (symbols.1): New, replaces...
15431 (terms_to_prec.1, nterms_to_type.1): these.
15432 * src/symtab.h, src/symtab.c (symbol_type_set, symbol_precedence_set)
15433 Take a location as additional argument.
15434 Adjust all callers.
15435
15436 2002-06-15 Akim Demaille <akim@epita.fr>
15437
15438 * src/parse-gram.y: Move %token in the declaration section so that
15439 we don't depend upon CVS Bison.
15440
15441 2002-06-15 Akim Demaille <akim@epita.fr>
15442
15443 * src/state.h, src/state.c (state_rule_lookaheads_print): New.
15444 * src/print.c (print_core): Use it.
15445
15446 2002-06-15 Akim Demaille <akim@epita.fr>
15447
15448 * src/conflicts.c (log_resolution): Accept the rule involved in
15449 the sr conflicts instead of the lookahead number that points to
15450 that rule.
15451 (flush_reduce): Accept the current lookahead vector as argument,
15452 instead of the index in LA.
15453 (resolve_sr_conflict): Accept the current number of lookahead
15454 bitset to consider for the STATE, instead of the index in LA.
15455 (set_conflicts): Adjust.
15456 * src/lalr.c, src/lalr.h, src/state.h: Comment changes.
15457
15458 2002-06-15 Akim Demaille <akim@epita.fr>
15459
15460 * src/state.h (state_t): Replace the `lookaheadsp' member, a
15461 short, with `lookaheads' (bitsetv), `lookaheads_rule' (rule_t**).
15462 Adjust all dependencies.
15463 * src/lalr.c (initialize_lookaheads): Split into...
15464 (states_lookaheads_count, states_lookaheads_initialize): these.
15465 (lalr): Adjust.
15466
15467 2002-06-15 Akim Demaille <akim@epita.fr>
15468
15469 * src/gram.h, src/gram.c (grammar_rules_partial_print): New, eved
15470 out of...
15471 (grammar_rules_print): here.
15472 * src/reduce.c (reduce_output): Use it.
15473 * tests/reduce.at (Useless Rules, Reduced Automaton)
15474 (Underivable Rules): Adjust.
15475
15476 2002-06-15 Akim Demaille <akim@epita.fr>
15477
15478 Copy BYacc's nice way to report the grammar.
15479
15480 * src/gram.h, src/gram.c (grammar_rhs_print, grammar_rules_print):
15481 New.
15482 Don't print the rules' location, it is confusing and useless.
15483 (rule_print): Use grammar_rhs_print.
15484 * src/print.c (print_grammar): Use grammar_rules_print.
15485
15486 2002-06-15 Akim Demaille <akim@epita.fr>
15487
15488 Complete and rationalize `useless thing' warnings.
15489
15490 * src/symtab.h, src/symtab.c (symbol_tag_get, symbol_tag_get_n)
15491 (symbol_tag_print): New.
15492 Use them everywhere in place of accessing directly the tag member.
15493 * src/gram.h, src/gram.c (rule_print): New.
15494 Use it where a rule used to be printed `by hand'.
15495 * src/reduce.c (nonterminals_reduce): Report the use nonterminals.
15496 (reduce_grammar_tables): Report the useless rules.
15497 (reduce_print): Useless things are a warning, not an error.
15498 Report it as such.
15499 * tests/reduce.at (Useless Nonterminals, Useless Rules):
15500 (Reduced Automaton, Underivable Rules): Adjust.
15501 * tests/regression.at (Web2c Report, Web2c Report): Adjust.
15502 * tests/conflicts.at (Unresolved SR Conflicts)
15503 (Solved SR Conflicts): Adjust.
15504
15505 2002-06-15 Akim Demaille <akim@epita.fr>
15506
15507 Let symbols have a location.
15508
15509 * src/symtab.h, src/symtab.c (symbol_t): Location is a new member.
15510 (getsym): Adjust.
15511 Adjust all callers.
15512 * src/complain.h, src/complain.c (complain_at, fatal_at, warn_at):
15513 Use location_t, not int.
15514 * src/symtab.c (symbol_check_defined): Take advantage of the
15515 location.
15516 * tests/regression.at (Invalid inputs): Adjust.
15517
15518 2002-06-15 Akim Demaille <akim@epita.fr>
15519
15520 * src/parse-gram.y (YYLLOC_DEFAULT, current_lhs_location): New.
15521 (input): Don't try to initialize yylloc here, do it in the
15522 scanner.
15523 * src/scan-gram.l (YY_USER_INIT): Initialize yylloc.
15524 * src/gram.h (rule_t): Change line and action_line into location
15525 and action_location, of location_t type.
15526 Adjust all dependencies.
15527 * src/location.h, src/location.c (empty_location): New.
15528 * src/reader.h, src/reader.c (grammar_start_symbol_set)
15529 (grammar_symbol_append, grammar_rule_begin, grammar_rule_end)
15530 (grammar_current_rule_symbol_append)
15531 (grammar_current_rule_action_append): Expect a location as argument.
15532 * src/reader.c (grammar_midrule_action): Adjust to attach an
15533 action's location as dummy symbol location.
15534 * src/symtab.h, src/symtab.c (startsymbol_location): New.
15535 * tests/regression.at (Web2c Report, Rule Line Numbers): Adjust
15536 the line numbers.
15537
15538 2002-06-14 Akim Demaille <akim@epita.fr>
15539
15540 Grammar declarations may be found in the grammar section.
15541
15542 * src/parse-gram.y (rules_or_grammar_declaration): New.
15543 (declarations): Each declaration may end with a semicolon, not
15544 just...
15545 (grammar_declaration): `"%union"'.
15546 (grammar): Branch to rules_or_grammar_declaration.
15547
15548 2002-06-14 Akim Demaille <akim@epita.fr>
15549
15550 * src/main.c (main): Invoke scanner_free.
15551
15552 2002-06-14 Akim Demaille <akim@epita.fr>
15553
15554 * src/output.c (m4_invoke): Extracted from...
15555 (output_skeleton): here.
15556 Free tempfile.
15557
15558 2002-06-14 Akim Demaille <akim@epita.fr>
15559
15560 * src/parse-gram.y (directives, directive, gram)
15561 (grammar_directives, precedence_directives, precedence_directive):
15562 Rename as...
15563 (declarations, declaration, grammar, grammar_declaration)
15564 (precedence_declaration, precedence_declarator): these.
15565 (symbol_declaration): New.
15566
15567 2002-06-14 Akim Demaille <akim@epita.fr>
15568
15569 * src/files.c (action_obstack): Remove, unused.
15570 (output_obstack): Remove it, and all its dependencies, as it is no
15571 longer needed.
15572 * src/reader.c (epilogue_set): Build the epilogue in the
15573 muscle_obstack.
15574 * src/output.h, src/output.c (muscle_obstack): Move to...
15575 * src/muscle_tab.h, src/muscle_tab.h: here.
15576 (muscle_init): Initialize muscle_obstack.
15577 (muscle_free): New.
15578 * src/main.c (main): Call it.
15579
15580 2002-06-14 Akim Demaille <akim@epita.fr>
15581
15582 * src/location.h: New, extracted from...
15583 * src/reader.h: here.
15584 * src/Makefile.am (noinst_HEADERS): Merge into
15585 (bison_SOURCES): this.
15586 Add location.h.
15587 * src/parse-gram.y: Use location_t instead of Bison's.
15588 * src/reader.h, src/reader.c (prologue_augment, epilogue_set):
15589 Use location_t instead of ints.
15590
15591 2002-06-14 Akim Demaille <akim@epita.fr>
15592
15593 * data/bison.simple, data/bison.c++: Be sure to restore the
15594 current #line when returning to the skeleton contents after having
15595 exposed the input file's #line.
15596
15597 2002-06-12 Akim Demaille <akim@epita.fr>
15598
15599 * src/scan-gram.l (SC_BRACED_CODE): Don't use `<.*>', it is too
15600 eager.
15601 * tests/actions.at (Exotic Dollars): New.
15602
15603 2002-06-12 Akim Demaille <akim@epita.fr>
15604
15605 * src/scan-gram.l (SC_PROLOGUE): Don't eat characters amongst
15606 ['"/] too eagerly.
15607 * tests/input.at (Torturing the Scanner): New.
15608
15609 2002-06-11 Akim Demaille <akim@epita.fr>
15610
15611 * src/scan-gram.l (YY_OBS_INIT): Remove, replace with...
15612 [SC_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE]
15613 [SC_EPILOGUE]: Output the quadrigraphs only when not in a comment.
15614 * src/reader.h, src/scan-gram.l (scanner_initialize): this.
15615 * src/reader.c (reader): Use it.
15616
15617 2002-06-11 Akim Demaille <akim@epita.fr>
15618
15619 * src/scan-gram.l (YY_OBS_FINISH): Don't set yylval.
15620 Adjust all callers.
15621 (scanner_last_string_free): New.
15622
15623 2002-06-11 Akim Demaille <akim@epita.fr>
15624
15625 * src/scan-gram.l (YY_INIT, YY_GROW, YY_FINISH): Rename as...
15626 (YY_OBS_INIT, YY_OBS_GROW, YY_OBS_FINISH): these.
15627 (last_string, YY_OBS_FREE): New.
15628 Use them when returning an ID.
15629
15630 2002-06-11 Akim Demaille <akim@epita.fr>
15631
15632 Have Bison grammars parsed by a Bison grammar.
15633
15634 * src/reader.c, src/reader.h (prologue_augment): New.
15635 * src/reader.c (copy_definition): Remove.
15636
15637 * src/reader.h, src/reader.c (gram_start_symbol_set, prologue_augment)
15638 (grammar_symbol_append, grammar_rule_begin, grammar_midrule_action)
15639 (grammar_current_rule_prec_set, grammar_current_rule_check)
15640 (grammar_current_rule_symbol_append)
15641 (grammar_current_rule_action_append): Export.
15642 * src/parse-gram.y (symbol_list_new, symbol_list_symbol_append_
15643 (symbol_list_action_append): Remove.
15644 Hook the routines from reader.
15645 * src/scan-gram.l: In INITIAL, characters and strings are tokens.
15646 * src/system.h (ATTRIBUTE_NORETURN, ATTRIBUTE_UNUSED): Now.
15647
15648 * src/reader.c (read_declarations): Remove, unused.
15649
15650 * src/parse-gram.y: Handle the epilogue.
15651 * src/reader.h, src/reader.c (gram_start_symbol_set): Rename as...
15652 (grammar_start_symbol_set): this.
15653 * src/scan-gram.l: Be sure to ``use'' yycontrol to keep GCC quiet.
15654 * src/reader.c (readgram): Remove, unused.
15655 (reader): Adjust to insert eoftoken and axiom where appropriate.
15656
15657 * src/reader.c (copy_dollar): Replace with...
15658 * src/scan-gram.h (handle_dollar): this.
15659 * src/parse-gram.y: Remove `%thong'.
15660
15661 * src/reader.c (copy_at): Replace with...
15662 * src/scan-gram.h (handle_at): this.
15663
15664 * src/complain.h, src/complain.c (warn_at, complain_at, fatal_at):
15665 New.
15666
15667 * src/scan-gram.l (YY_LINES): Keep lineno synchronized for the
15668 time being.
15669
15670 * src/reader.h, src/reader.c (grammar_rule_end): New.
15671
15672 * src/parse.y (current_type, current_class): New.
15673 Implement `%nterm', `%token' support.
15674 Merge `%term' into `%token'.
15675 (string_as_id): New.
15676 * src/symtab.h, src/symtab.c (symbol_make_alias): Don't pass the
15677 type name.
15678
15679 * src/parse-gram.y: Be sure to handle properly the beginning of
15680 rules.
15681
15682 * src/parse-gram.y: Handle %type.
15683 * src/reader.c (grammar_rule_end): Call grammar_current_rule_check.
15684
15685 * src/parse-gram.y: More directives support.
15686 * src/options.c: No longer handle source directives.
15687
15688 * src/parse-gram.y: Fix %output.
15689
15690 * src/parse-gram.y: Handle %union.
15691 Use the prologue locations.
15692 * src/reader.c (parse_union_decl): Remove.
15693
15694 * src/reader.h, src/reader.c (epilogue_set): New.
15695 * src/parse-gram.y: Use it.
15696
15697 * data/bison.simple, data/bison.c++: b4_stype is now either not
15698 defined, then default to int, or to the contents of %union,
15699 without `union' itself.
15700 Adjust.
15701 * src/muscle_tab.c (muscle_init): Don't predefine `stype'.
15702
15703 * src/output.c (actions_output): Don't output braces, as they are
15704 already handled by the scanner.
15705
15706 * src/scan-gram.l (SC_CHARACTER): Set the user_token_number of
15707 characters to themselves.
15708
15709 * tests/reduce.at (Reduced Automaton): End the grammars with %% so
15710 that the epilogue has a proper #line.
15711
15712 * src/parse-gram.y: Handle precedence/associativity.
15713
15714 * src/symtab.c (symbol_precedence_set): Requires the symbol to be
15715 a terminal.
15716 * src/scan-gram.l (SC_BRACED_CODE): Catch strings and characters.
15717 * tests/calc.at: Do not use `%token "foo"' as it makes not sense
15718 at all to define terminals that cannot be emitted.
15719
15720 * src/scan-gram.l: Escape M4 characters.
15721
15722 * src/scan-gram.l: Working properly with escapes in user
15723 strings/characters.
15724
15725 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR)
15726 (AT_DATA_HORIZONTAL_GRAMMAR): Respect the `%token ID NUM STRING'
15727 grammar.
15728 Use more modest sizes, as for the time being the parser does not
15729 release memory, and therefore the process swallows a huge amount
15730 of memory.
15731
15732 * tests/torture.at (AT_DATA_LOOKAHEADS_GRAMMAR): Adjust to the
15733 stricter %token grammar.
15734
15735 * src/symtab.h (associativity): Add `undef_assoc'.
15736 (symbol_precedence_set): Do nothing when passed an undef_assoc.
15737 * src/symtab.c (symbol_check_alias_consistence): Adjust.
15738
15739 * tests/regression.at (Invalid %directive): Remove, as it is now
15740 meaningless.
15741 (Invalid inputs): Adjust to the new error messages.
15742 (Token definitions): The new grammar doesn't allow too many
15743 eccentricities.
15744
15745 * src/lex.h, src/lex.c: Remove.
15746 * src/reader.c (lastprec, skip_to_char, read_signed_integer)
15747 (copy_character, copy_string2, copy_string, copy_identifier)
15748 (copy_comment, parse_token_decl, parse_type_decl, parse_assoc_decl)
15749 (parse_muscle_decl, parse_dquoted_param, parse_skel_decl)
15750 (parse_action): Remove.
15751 * po/POTFILES.in: Adjust.
15752
15753 2002-06-11 Akim Demaille <akim@epita.fr>
15754
15755 * src/reader.c (parse_action): Don't store directly into the
15756 rule's action member: return the action as a string.
15757 Don't require `rule_length' as an argument: compute it.
15758 (grammar_current_rule_symbol_append)
15759 (grammar_current_rule_action_append): New, eved out from
15760 (readgram): here.
15761 Remove `action_flag', `rulelength', unused now.
15762
15763 2002-06-11 Akim Demaille <akim@epita.fr>
15764
15765 * src/reader.c (grammar_current_rule_prec_set).
15766 (grammar_current_rule_check): New, eved out from...
15767 (readgram): here.
15768 Remove `xaction', `first_rhs': useless.
15769 * tests/input.at (Type clashes): New.
15770 * tests/existing.at (GNU Cim Grammar): Adjust.
15771
15772 2002-06-11 Akim Demaille <akim@epita.fr>
15773
15774 * src/reader.c (grammar_midrule_action): New, Eved out from
15775 (readgram): here.
15776
15777 2002-06-11 Akim Demaille <akim@epita.fr>
15778
15779 * src/reader.c (grammar_rule_begin, previous_rule, current_rule):
15780 New.
15781 (readgram): Use them as replacement of inlined code, crule and
15782 crule1.
15783
15784 2002-06-11 Akim Demaille <akim@epita.fr>
15785
15786 * src/reader.c (grammar_end, grammar_symbol_append): New.
15787 (readgram): Use them.
15788 Make the use of `p' as local as possible.
15789
15790 2002-06-10 Akim Demaille <akim@epita.fr>
15791
15792 GCJ's parser requires the tokens to be defined before the prologue.
15793
15794 * data/bison.simple: Output the token definition before the user's
15795 prologue.
15796 * tests/regression.at (Braces parsing, Duplicate string)
15797 (Mixing %token styles): Check the output from bison.
15798 (Early token definitions): New.
15799
15800 2002-06-10 Akim Demaille <akim@epita.fr>
15801
15802 * src/symtab.c (symbol_user_token_number_set): Don't complain when
15803 assigning twice the same user number to a token, so that we can
15804 use it in...
15805 * src/lex.c (lex): here.
15806 Also use `symbol_class_set' instead of hand written code.
15807 * src/reader.c (parse_assoc_decl): Likewise.
15808
15809 2002-06-10 Akim Demaille <akim@epita.fr>
15810
15811 * src/symtab.c, src/symtab.c (symbol_class_set)
15812 (symbol_user_token_number_set): New.
15813 * src/reader.c (parse_token_decl): Use them.
15814 Use a switch instead of ifs.
15815 Use a single argument.
15816
15817 2002-06-10 Akim Demaille <akim@epita.fr>
15818
15819 Remove `%thong' support as it is undocumented, unused, duplicates
15820 `%token's job, and creates useless e-mail traffic with people who
15821 want to know what it is, why it is undocumented, unused, and
15822 duplicates `%token's job.
15823
15824 * src/reader.c (parse_thong_decl): Remove.
15825 * src/options.c (option_table): Remove "thong".
15826 * src/lex.h (tok_thong): Remove.
15827
15828 2002-06-10 Akim Demaille <akim@epita.fr>
15829
15830 * src/symtab.c, src/symtab.c (symbol_type_set)
15831 (symbol_precedence_set): New.
15832 * src/reader.c (parse_type_decl, parse_assoc_decl): Use them.
15833 (value_components_used): Remove, unused.
15834
15835 2002-06-09 Akim Demaille <akim@epita.fr>
15836
15837 Move symbols handling code out of the reader.
15838
15839 * src/reader.h, src/reader.c (errtoken, undeftoken, eoftoken)
15840 (axiom): Move to...
15841 * src/symtab.h, src/symtab.c: here.
15842
15843 * src/gram.c (start_symbol): Remove: use startsymbol->number.
15844 * src/reader.c (startval): Rename as...
15845 * src/symtab.h, src/symtab.c (startsymbol): this.
15846 * src/reader.c: Adjust.
15847
15848 * src/reader.c (symbol_check_defined, symbol_make_alias)
15849 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
15850 (token_translations_init)
15851 Move to...
15852 * src/symtab.c: here.
15853 * src/reader.c (packsymbols): Move to...
15854 * src/symtab.h, src/symtab.c (symbols_pack): here.
15855 * src/symtab.h, src/symtab.c (symbol_make_alias): Takes SYMVAL as
15856 argument.
15857
15858 2002-06-03 Akim Demaille <akim@epita.fr>
15859
15860 * src/muscle_tab.c (muscle_insert, muscle_find): Declarations,
15861 then statements.
15862
15863 2002-06-03 Akim Demaille <akim@epita.fr>
15864
15865 * src/muscle_tab.c (muscle_find, muscle_insert): Don't initialize
15866 structs with non literals.
15867 * src/scan-skel.l: never-interactive.
15868 * src/conflicts.c (enum conflict_resolution_e): No trailing
15869 comma.
15870 * src/getargs.c (usage): Split long literal strings.
15871 Reported by Hans Aberg.
15872
15873 2002-05-28 Akim Demaille <akim@epita.fr>
15874
15875 * data/bison.c++: Use C++ ostreams.
15876 (cdebug_): New member.
15877
15878 2002-05-28 Akim Demaille <akim@epita.fr>
15879
15880 * src/output.c (output_skeleton): Be sure to allocate enough room
15881 for `/' _and_ for `\0' in full_skeleton.
15882
15883 2002-05-28 Akim Demaille <akim@epita.fr>
15884
15885 * data/bison.c++: Catch up with bison.simple:
15886 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15887 and Paul Eggert <eggert@twinsun.com>: `error' handing.
15888 2002-05-26 Akim Demaille <akim@epita.fr>: stos_, token_number_,
15889 and popping traces.
15890
15891 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15892
15893 * src/output.c (output_skeleton): Put an explicit path in front of
15894 the skeleton file name, rather than relying on the -I directory,
15895 to partially alleviate effects of having a skeleton file lying around
15896 in the current directory.
15897
15898 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15899
15900 * src/conflicts.c (log_resolution): Correct typo:
15901 obstack_printf should be obstack_fgrow1.
15902
15903 2002-05-26 Akim Demaille <akim@epita.fr>
15904
15905 * src/state.h (state_t): `solved_conflicts' is a new member.
15906 * src/LR0.c (new_state): Set it to 0.
15907 * src/conflicts.h, src/conflicts.c (print_conflicts)
15908 (free_conflicts, solve_conflicts): Rename as...
15909 (conflicts_print, conflicts_free, conflicts_solve): these.
15910 Adjust callers.
15911 * src/conflicts.c (enum conflict_resolution_e)
15912 (solved_conflicts_obstack): New, used by...
15913 (log_resolution): this.
15914 Adjust to attach the conflict resolution to each state.
15915 Complete the description with the precedence/associativity
15916 information.
15917 (resolve_sr_conflict): Adjust.
15918 * src/print.c (print_state): Output its solved_conflicts.
15919 * tests/conflicts.at (Unresolved SR Conflicts)
15920 (Solved SR Conflicts): Exercise --report=all.
15921
15922 2002-05-26 Akim Demaille <akim@epita.fr>
15923
15924 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
15925 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
15926 * src/reader.c, src/reduce.c, src/state.h, src/symtab.h
15927 (token_number_t, item_number_as_token_number)
15928 (token_number_as_item_number, muscle_insert_token_number_table):
15929 Rename as...
15930 (symbol_number_t, item_number_as_symbol_number)
15931 (symbol_number_as_item_number, muscle_insert_symbol_number_table):
15932 these, since it is more appropriate.
15933
15934 2002-05-26 Akim Demaille <akim@epita.fr>
15935
15936 * tests/calc.at (AT_CHECK_CALC): Adjust: there are now additional
15937 `Error:' lines.
15938 * data/bison.simple (yystos) [YYDEBUG]: New.
15939 (yyparse) [YYDEBUG]: Display the symbols which are popped during
15940 error recovery.
15941 * tests/regression.at (Web2c Actions): Adjust: yystos is output now.
15942
15943 2002-05-25 Akim Demaille <akim@epita.fr>
15944
15945 * doc/bison.texinfo (Debugging): Split into...
15946 (Tracing): this new section, its former contents, and...
15947 (Understanding): this new section.
15948 * src/getargs.h, src/getargs.c (verbose_flag): Remove, replaced
15949 by...
15950 (report_flag): this.
15951 Adjust all dependencies.
15952 (report_args, report_types, report_argmatch): New.
15953 (usage, getargs): Report/support -r, --report.
15954 * src/options.h
15955 (struct option_table_struct): Rename as..,
15956 (struct option_table_s): this.
15957 Rename the `set_flag' member to `flag' to match with getopt_long's
15958 struct.
15959 * src/options.c (option_table): Split verbose into an entry for
15960 %verbose, and another for --verbose.
15961 Support --report/-r, so remove -r from the obsolete --raw.
15962 * src/print.c: Attach full item sets and lookaheads reports to
15963 report_flag instead of trace_flag.
15964 * lib/argmatch.h, lib/argmatch.c: New, from Fileutils 4.1.
15965
15966 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15967 and Paul Eggert <eggert@twinsun.com>
15968
15969 * data/bison.simple (yyparse): Correct error handling to conform to
15970 POSIX and yacc. Specifically, after syntax error is discovered,
15971 do not reduce further before shifting the error token.
15972 Clean up the code a bit by removing the labels yyerrdefault,
15973 yyerrhandle, yyerrpop.
15974 * NEWS: Document the above.
15975
15976 2002-05-20 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15977
15978 * data/bison.simple (yyr1): Don't use yy_token_number_type as element
15979 type; it isn't always big enough, since it doesn't necessarily
15980 include non-terminals.
15981 (yytranslate): Expand definition of yy_token_number_type, so that
15982 the latter can be removed.
15983 (yy_token_number_type): Remove, only one use.
15984 * data/bison.c++ (r1_): Parallel change to yyr1 in bison.simple---
15985 don't use TokenNumberType as element type.
15986
15987 * tests/regression.at: Modify expected output to agree with change
15988 to yyr1 and yytranslate.
15989
15990 2002-05-13 Florian Krohm <florian@edamail.fishkill.ibm.com>
15991
15992 * src/reader.c (parse_action): Use copy_character instead of
15993 obstack_1grow.
15994
15995 2002-05-13 Akim Demaille <akim@epita.fr>
15996
15997 * tests/regression.at (Token definitions): Prototype yylex and
15998 yyerror.
15999
16000 2002-05-12 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16001
16002 * src/scan-skel.l: Correct off-by-one error in handling of __oline__.
16003 * data/bison.simple (b4_sint_type, b4_uint_type): Correct to reflect
16004 32-bit arithmetic.
16005 * data/bison.c++ (b4_sint_type, b4_uint_type): Ditto.
16006
16007 2002-05-07 Akim Demaille <akim@epita.fr>
16008
16009 * tests/synclines.at: Be sure to prototype yylex and yyerror to
16010 avoid GCC warnings.
16011
16012 2002-05-07 Akim Demaille <akim@epita.fr>
16013
16014 Kill GCC warnings.
16015
16016 * src/reduce.c (nonterminals_reduce): Don't loop over RITEM: loop
16017 over the RHS of each rule.
16018 * src/gram.h, src/gram.c (nritems): Is `unsigned int', not int.
16019 * src/state.h (state_t): Member `nitems' is unsigned short.
16020 * src/LR0.c (get_state): Adjust.
16021 * src/reader.c (packgram): Likewise.
16022 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): `max' is of type
16023 `Type'.
16024 (muscle_insert_int_table): Remove, unused.
16025 (prepare_rules): Remove `max'.
16026
16027 2002-05-06 Akim Demaille <akim@epita.fr>
16028
16029 * src/closure.c (print_firsts): Display of the symbol tags.
16030 (bitmatrix_print): Move to...
16031 * lib/bitsetv-print.h, lib/bitsetv-print.c (bitsetv_matrix_dump):
16032 here.
16033 * tests/sets.at (Nullable, Broken Closure, Firsts): Adjust.
16034
16035 2002-05-06 Akim Demaille <akim@epita.fr>
16036
16037 * src/muscle_tab.c (muscle_m4_output): Must return TRUE for
16038 hash_do_for_each.
16039
16040 2002-05-06 Akim Demaille <akim@epita.fr>
16041
16042 * src/LR0.c (new_state, get_state): Instead of using the global
16043 `kernel_size' and `kernel_base', have two new arguments:
16044 `core_size' and `core'.
16045 Adjust callers.
16046
16047 2002-05-06 Akim Demaille <akim@epita.fr>
16048
16049 * src/reader.c (packgram): No longer end `ritem' with a 0
16050 sentinel: it is not used.
16051
16052 2002-05-05 Akim Demaille <akim@epita.fr>
16053
16054 New experimental feature: display the lookaheads in the report and
16055 graph.
16056
16057 * src/print (print_core): When --trace-flag, display the rules
16058 lookaheads.
16059 * src/print_graph.c (print_core): Likewise.
16060 Swap the arguments.
16061 Adjust caller.
16062
16063 2002-05-05 Akim Demaille <akim@epita.fr>
16064
16065 * tests/torture.at (Many lookaheads): New test.
16066
16067 2002-05-05 Akim Demaille <akim@epita.fr>
16068
16069 * src/output.c (GENERATE_OUTPUT_TABLE): Replace with...
16070 (GENERATE_MUSCLE_INSERT_TABLE): this.
16071 (output_int_table, output_unsigned_int_table, output_short_table)
16072 (output_token_number_table, output_item_number_table): Replace with...
16073 (muscle_insert_int_table, muscle_insert_unsigned_int_table)
16074 (muscle_insert_short_table, muscle_insert_token_number_table)
16075 (muscle_insert_item_number_table): these.
16076 Adjust all callers.
16077 (prepare_tokens): Don't free `translations', since...
16078 * src/reader.h, src/reader.c (grammar_free): do it.
16079 Move to...
16080 * src/gram.h, src/gram.c (grammar_free): here.
16081 * data/bison.simple, data/bison.c++: b4_token_number_max is now
16082 b4_translate_max.
16083
16084 2002-05-05 Akim Demaille <akim@epita.fr>
16085
16086 * src/output.c (output_unsigned_int_table): New.
16087 (prepare_rules): `i' is unsigned.
16088 `prhs', `rline', `r2' are unsigned int.
16089 Rename muscle `rhs_number_max' as `rhs_max'.
16090 Output muscles `prhs_max', `rline_max', and `r2_max'.
16091 Free rline and r1.
16092 * data/bison.simple, data/bison.c++: Adjust to use these muscles
16093 to compute types instead of constant types.
16094 * tests/regression.at (Web2c Actions): Adjust.
16095
16096 2002-05-04 Akim Demaille <akim@epita.fr>
16097
16098 * src/symtab.h (SALIAS, SUNDEF): Rename as...
16099 (USER_NUMBER_ALIAS, USER_NUMBER_UNDEFINED): these.
16100 Adjust dependencies.
16101 * src/output.c (token_definitions_output): Be sure not to output a
16102 `#define 'a'' when fed with `%token 'a' "a"'.
16103 * tests/regression.at (Token definitions): New.
16104
16105 2002-05-03 Paul Eggert <eggert@twinsun.com>
16106
16107 * data/bison.simple (b4_token_defines): Also define YYTOKENTYPE
16108 for K&R C.
16109
16110 2002-05-03 gettextize <bug-gnu-gettext@gnu.org>
16111
16112 * Makefile.am (SUBDIRS): Remove intl.
16113 (EXTRA_DIST): Add config/config.rpath.
16114
16115 2002-05-03 Akim Demaille <akim@epita.fr>
16116
16117 * data/bison.simple (m4_if): Don't output empty enums.
16118 And actually, output valid enum definitions :(.
16119
16120 2002-05-03 Akim Demaille <akim@epita.fr>
16121
16122 * configure.bat: Remove, completely obsolete.
16123 * Makefile.am (EXTRA_DIST): Adjust.
16124 Don't distribute config.rpath...
16125 * config/Makefile.am (EXTRA_DIST): Do it.
16126
16127 2002-05-03 Akim Demaille <akim@epita.fr>
16128
16129 * configure.in (GETTEXT_VERSION): New.
16130 Suggested by Bruno Haible for the forthcoming Gettext 0.10.3.
16131
16132 2002-05-03 Akim Demaille <akim@epita.fr>
16133
16134 * data/bison.simple (b4_token_enum): New.
16135 (b4_token_defines): Use it to output tokens both as #define and
16136 enums.
16137 Suggested by Paul Eggert.
16138 * src/output.c (token_definitions_output): Don't output spurious
16139 white spaces.
16140
16141 2002-05-03 Akim Demaille <akim@epita.fr>
16142
16143 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
16144
16145 2002-05-02 Robert Anisko <robert@lrde.epita.fr>
16146
16147 * data/bison.c++: Adapt expansion of $s and @s to the C++ parser.
16148 Update the stack class, give a try to deque as the default container.
16149
16150 2002-05-02 Akim Demaille <akim@epita.fr>
16151
16152 * data/bison.simple (yyparse): Do not implement @$ = @1.
16153 (YYLLOC_DEFAULT): Adjust to do it.
16154 * doc/bison.texinfo (Location Default Action): Fix.
16155
16156 2002-05-02 Akim Demaille <akim@epita.fr>
16157
16158 * src/reader.c (parse_braces): Merge into...
16159 (parse_action): this.
16160
16161 2002-05-02 Akim Demaille <akim@epita.fr>
16162
16163 * configure.in (ALL_LINGUAS): Remove.
16164 * po/LINGUAS, hr.po: New.
16165
16166 2002-05-02 Akim Demaille <akim@epita.fr>
16167
16168 Remove the so called hairy (semantic) parsers.
16169
16170 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove.
16171 * src/gram.h, src/gram.c (semantic_parser): Remove.
16172 (rule_t): Remove the guard and guard_line members.
16173 * src/lex.h (token_t): remove tok_guard.
16174 * src/options.c (option_table): Remove %guard and %semantic_parser
16175 support.
16176 * src/output.c, src/output.h (guards_output): Remove.
16177 (prepare): Adjust.
16178 (token_definitions_output): Don't output the `T'
16179 tokens (???).
16180 (output_skeleton): Don't output the guards.
16181 * src/files.c, src/files.c (attrsfile): Remove.
16182 * src/reader.c (symbol_list): Remove the guard and guard_line
16183 members.
16184 Adjust dependencies.
16185 (parse_guard): Remove.
16186 * data/bison.hairy: Remove.
16187 * doc/bison.texinfo (Environment Variables): Remove occurrences of
16188 BISON_HAIRY.
16189
16190 2002-05-02 Akim Demaille <akim@epita.fr>
16191
16192 * src/reader.c (copy_at, copy_dollarm parse_braces, parse_action)
16193 (parse_guard): Rename the formal argument `stack_offset' as
16194 `rule_length', which is more readable.
16195 Adjust callers.
16196 (copy_at, copy_dollar): Instead of outputting the hard coded
16197 values of $$, $n and so forth, output invocation to b4_lhs_value,
16198 b4_lhs_location, b4_rhs_value, and b4_rhs_location.
16199 Note: this patch partially drops `semantic-parser' support: it
16200 always does `rule_length - n', where semantic parsers ought to
16201 always use `-n'.
16202 * data/bison.simple, data/bison.c++ (b4_lhs_value)
16203 (b4_lhs_location, b4_rhs_value, and b4_rhs_location: New.
16204
16205 2002-05-02 Akim Demaille <akim@epita.fr>
16206
16207 * configure.in (AC_INIT): Bump to 1.49b.
16208 (AM_INIT_AUTOMAKE): Short invocation.
16209
16210 2002-05-02 Akim Demaille <akim@epita.fr>
16211
16212 Version 1.49a.
16213
16214 2002-05-01 Akim Demaille <akim@epita.fr>
16215
16216 * src/skeleton.h: Remove.
16217
16218 2002-05-01 Akim Demaille <akim@epita.fr>
16219
16220 * src/skeleton.h: Fix the #endif.
16221 Reported by Magnus Fromreide.
16222
16223 2002-04-26 Paul Eggert <eggert@twinsun.com>
16224
16225 * data/bison.simple (YYSTYPE_IS_TRIVIAL, YYLTYPE_IS_TRIVIAL):
16226 Define if we define YYSTYPE and YYLTYPE, respectively.
16227 (YYCOPY): Fix [] quoting problem in the non-GCC case.
16228
16229 2002-04-25 Robert Anisko <robert@lrde.epita.fr>
16230
16231 * src/scan-skel.l: Postprocess quadrigraphs.
16232
16233 * src/reader.c (copy_character): New function, used to output
16234 single characters while replacing `[' and `]' with quadrigraphs, to
16235 avoid troubles with M4 quotes.
16236 (copy_comment): Output characters with copy_character.
16237 (read_additionnal_code): Likewise.
16238 (copy_string2): Likewise.
16239 (copy_definition): Likewise.
16240
16241 * tests/calc.at: Exercise M4 quoting.
16242
16243 2002-04-25 Akim Demaille <akim@epita.fr>
16244
16245 * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
16246 between `!' and the command.
16247 Reported by Paul Eggert.
16248
16249 2002-04-24 Robert Anisko <robert@lrde.epita.fr>
16250
16251 * tests/calc.at: Exercise prologue splitting.
16252
16253 * data/bison.simple, data/bison.c++: Use `b4_pre_prologue' and
16254 `b4_post_prologue' instead of `b4_prologue'.
16255
16256 * src/output.c (prepare): Add the `pre_prologue' and `post_prologue'
16257 muscles.
16258 (output): Free pre_prologue_obstack and post_prologue_obstack.
16259 * src/files.h, src/files.c (attrs_obstack): Remove.
16260 (pre_prologue_obstack, post_prologue_obstack): New.
16261 * src/reader.c (copy_definition): Add a parameter to specify the
16262 obstack to fill, instead of using attrs_obstack unconditionally.
16263 (read_declarations): Pass pre_prologue_obstack to copy_definition if
16264 `%union' has not yet been seen, pass post_prologue_obstack otherwise.
16265
16266 2002-04-23 Paul Eggert <eggert@twinsun.com>
16267
16268 * data/bison.simple: Remove unnecessary commentary and white
16269 space differences from 1_29-branch.
16270 Depend on YYERROR_VERBOSE, not defined (YYERROR_VERBOSE).
16271
16272 (union yyalloc, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYCOPY,
16273 YYSTACK_RELOCATE): Do not define if yyoverflow is defined, or
16274 if this is a C++ parser and YYSTYPE or YYLTYPE has nontrivial
16275 constructors or destructors.
16276
16277 (yyparse) [! defined YYSTACK_RELOCATE]: Do not relocate the stack.
16278
16279 2002-04-23 Akim Demaille <akim@epita.fr>
16280
16281 * tests/sets.at (AT_EXTRACT_SETS): Don't use 8 char long sed labels.
16282 * tests/synclines.at (AT_TEST_SYNCLINE): Be robust to GCC's
16283 location with columns.
16284 * tests/conflicts.at (%nonassoc and eof): Don't use `error.h'.
16285 All reported by Paul Eggert.
16286
16287 2002-04-22 Akim Demaille <akim@epita.fr>
16288
16289 * src/reduce.c (dump_grammar): Move to...
16290 * src/gram.h, src/gram.c (grammar_dump): here.
16291 Be sure to separate long item numbers.
16292 Don't read the members of a rule's prec if its nil.
16293
16294 2002-04-22 Akim Demaille <akim@epita.fr>
16295
16296 * src/output.c (table_size, table_grow): New.
16297 (MAXTABLE): Remove, replace uses with table_size.
16298 (pack_vector): Instead of dying when the table is too big, grow it.
16299
16300 2002-04-22 Akim Demaille <akim@epita.fr>
16301
16302 * data/bison.simple (yyr1): Its type is that of a token number.
16303 * data/bison.c++ (r1_): Likewise.
16304 * tests/regression.at (Web2c Actions): Adjust.
16305
16306 2002-04-22 Akim Demaille <akim@epita.fr>
16307
16308 * src/reader.c (token_translations_init): 256 is now the default
16309 value for the error token, i.e., it will be assigned another
16310 number if the user assigned 256 to one of her tokens.
16311 (reader): Don't force 256 to error.
16312 * doc/bison.texinfo (Symbols): Adjust.
16313 * tests/torture.at (AT_DATA_HORIZONTAL_GRAMMAR)
16314 (AT_DATA_TRIANGULAR_GRAMMAR): Number the tokens as 1, 2, 3
16315 etc. instead of 10, 20, 30 (which was used to `jump' over error
16316 (256) and undefined (2)).
16317
16318 2002-04-22 Akim Demaille <akim@epita.fr>
16319
16320 Propagate more token_number_t.
16321
16322 * src/gram.h (token_number_as_item_number)
16323 (item_number_as_token_number): New.
16324 * src/output.c (GENERATE_OUTPUT_TABLE): New.
16325 Use it to create output_item_number_table and
16326 output_token_number_table.
16327 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
16328 * src/lex.c, src/nullable.c, src/output.c, src/print.c,
16329 * src/print_graph.c, src/reader.c, src/reduce.c, src/state.h,
16330 * src/symtab.c, src/symtab.h: Use token_number_t instead of shorts.
16331
16332 2002-04-22 Akim Demaille <akim@epita.fr>
16333
16334 * src/output.h, src/output.c (get_lines_number): Remove.
16335
16336 2002-04-19 Akim Demaille <akim@epita.fr>
16337
16338 * doc/bison.texinfo (Actions): Make clear that `|' is not the same
16339 as Lex/Flex'.
16340 (Debugging): More details about enabling the debugging features.
16341 (Table of Symbols): Describe $$, $n, @$, and @n.
16342 Suggested by Tim Josling.
16343
16344 2002-04-19 Akim Demaille <akim@epita.fr>
16345
16346 * doc/bison.texinfo: Remove the uses of the obsolete @refill.
16347
16348 2002-04-10 Akim Demaille <akim@epita.fr>
16349
16350 * src/system.h: Rely on HAVE_LIMITS_H.
16351 Suggested by Paul Eggert.
16352
16353 2002-04-09 Akim Demaille <akim@epita.fr>
16354
16355 * tests/calc.at (_AT_CHECK_CALC_ERROR): Receive as argument the
16356 full stderr, and strip it according to the bison options, instead
16357 of composing the error message from different bits.
16358 This makes it easier to check for several error messages.
16359 Adjust all the invocations.
16360 Add an invocation exercising the error token.
16361 Add an invocation demonstrating a stupid error message.
16362 (_AT_DATA_CALC_Y): Follow the GCS: initial column is 1, not 0.
16363 Adjust the tests.
16364 Error message are for stderr, not stdout.
16365
16366 2002-04-09 Akim Demaille <akim@epita.fr>
16367
16368 * src/gram.h, src/gram.c (error_token_number): Remove, use
16369 errtoken->number.
16370 * src/reader.c (reader): Don't specify the user token number (2)
16371 for $undefined, as it uselessly prevents using it.
16372 * src/gram.h (token_number_t): Move to...
16373 * src/symtab.h: here.
16374 (state_t.number): Is a token_number_t.
16375 * src/print.c, src/reader.c: Use undeftoken->number instead of
16376 hard coded 2.
16377 (Even though this 2 is not the same as above: the number of the
16378 undeftoken remains being 2, it is its user token number which
16379 might not be 2).
16380 * src/output.c (prepare_tokens): Rename the `maxtok' muscle with
16381 `user_token_number_max'.
16382 Output `undef_token_number'.
16383 * data/bison.simple, data/bison.c++: Use them.
16384 Be sure to map invalid yylex return values to
16385 `undef_token_number'. This saves us from gratuitous SEGV.
16386
16387 * tests/conflicts.at (Solved SR Conflicts)
16388 (Unresolved SR Conflicts): Adjust.
16389 * tests/regression.at (Web2c Actions): Adjust.
16390
16391 2002-04-08 Akim Demaille <akim@epita.fr>
16392
16393 * data/bison.c++: s/b4_item_number_max/b4_rhs_number_max/.
16394 Adding #line.
16395 Remove the duplicate `typedefs'.
16396 (RhsNumberType): Fix the declaration and various other typos.
16397 Use __ofile__.
16398 * data/bison.simple: Use __ofile__.
16399 * src/scan-skel.l: Handle __ofile__.
16400
16401 2002-04-08 Akim Demaille <akim@epita.fr>
16402
16403 * src/gram.h (item_number_t): New, the type of item numbers in
16404 RITEM. Note that it must be able to code symbol numbers as
16405 positive number, and the negation of rule numbers as negative
16406 numbers.
16407 Adjust all dependencies (pretty many).
16408 * src/reduce.c (rule): Remove this `short *' pointer: use
16409 item_number_t.
16410 * src/system.h (MINSHORT, MAXSHORT): Remove.
16411 Include `limits.h'.
16412 Adjust dependencies to using SHRT_MAX and SHRT_MIN.
16413 (shortcpy): Remove.
16414 (MAXTABLE): Move to...
16415 * src/output.c (MAXTABLE): here.
16416 (prepare_rules): Use output_int_table to output rhs.
16417 * data/bison.simple, data/bison.c++: Adjust.
16418 * tests/torture.at (Big triangle): Move the limit from 254 to
16419 500.
16420 * tests/regression.at (Web2c Actions): Ajust.
16421
16422 Trying with bigger grammars shows various phenomena: at 3000 (28Mb
16423 of grammar file) bison is killed by my system, at 2000 (12Mb) bison
16424 passes, but produces negative #line number, once fixed, GCC is
16425 killed while compiling 14Mb, at 1500 (6.7 Mb of grammar, 8.2Mb of
16426 C), it passes.
16427 * src/state.h (state_h): Code input lines on ints, not shorts.
16428
16429 2002-04-08 Akim Demaille <akim@epita.fr>
16430
16431 * src/reduce.c (reduce_grammar): First reduce the nonterminals,
16432 and then the grammar.
16433
16434 2002-04-08 Akim Demaille <akim@epita.fr>
16435
16436 * src/system.h: No longer using strndup.
16437
16438 2002-04-07 Akim Demaille <akim@epita.fr>
16439
16440 * src/muscle_tab.h (MUSCLE_INSERT_LONG_INT): New.
16441 * src/output.c (output_table_data): Return the longest number.
16442 (prepare_tokens): Output `token_number_max').
16443 * data/bison.simple, data/bison.c++ (b4_sint_type, b4_uint_type):
16444 New.
16445 Use them to define yy_token_number_type/TokenNumberType.
16446 Use this type for yytranslate.
16447 * tests/torture.at (Big triangle): Push the limit from 124 to
16448 253.
16449 * tests/regression.at (Web2c Actions): Adjust.
16450
16451 2002-04-07 Akim Demaille <akim@epita.fr>
16452
16453 * tests/torture.at (Big triangle): New.
16454 (GNU AWK Grammar, GNU Cim Grammar): Move to...
16455 * tests/existing.at: here.
16456
16457 2002-04-07 Akim Demaille <akim@epita.fr>
16458
16459 * src/gram.h, src/gram.c (nitems): Remove, it is an alias of
16460 nritems.
16461 Adjust dependencies.
16462
16463 2002-04-07 Akim Demaille <akim@epita.fr>
16464
16465 * src/reader.c: Normalize increments to prefix form.
16466
16467 2002-04-07 Akim Demaille <akim@epita.fr>
16468
16469 * src/reader.c, symtab.c: Remove debugging code.
16470
16471 2002-04-07 Akim Demaille <akim@epita.fr>
16472
16473 Rename all the `bucket's as `symbol_t'.
16474
16475 * src/gram.c, src/gram.h, src/lex.c, src/lex.h, src/output.c,
16476 * src/reader.c, src/reader.h, src/reduce.c, src/state.h,
16477 * src/symtab.c, src/symtab.h (bucket): Rename as...
16478 (symbol_t): this.
16479 (symbol_list_new, bucket_check_defined, bucket_make_alias)
16480 (bucket_check_alias_consistence, bucket_pack, bucket_translation)
16481 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
16482 (buckets_new, buckets_free, buckets_do): Rename as...
16483 (symbol_list_new, symbol_check_defined, symbol_make_alias)
16484 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
16485 (symbol_new, symbol_free, hash_compare_symbol_t, hash_symbol_t)
16486 (symbols_new, symbols_free, symbols_do): these.
16487
16488 2002-04-07 Akim Demaille <akim@epita.fr>
16489
16490 Use lib/hash for the symbol table.
16491
16492 * src/gram.c (ntokens): Initialize to 1, to reserve a slot for
16493 EOF.
16494 * src/lex.c (lex): Set the `number' member of new terminals.
16495 * src/reader.c (bucket_check_defined, bucket_make_alias)
16496 (bucket_check_alias_consistence, bucket_translation): New.
16497 (reader, grammar_free, readgram, token_translations_init)
16498 (packsymbols): Adjust.
16499 (reader): Number the predefined tokens.
16500 * src/reduce.c (inaccessable_symbols): Just use hard coded numbers
16501 for predefined tokens.
16502 * src/symtab.h (bucket): Remove all the hash table related
16503 members.
16504 * src/symtab.c (symtab): Replace by...
16505 (bucket_table): this.
16506 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
16507 (buckets_new, buckets_do): New.
16508
16509 2002-04-07 Akim Demaille <akim@epita.fr>
16510
16511 * src/gram.c (nitems, nrules, nsyms, ntokens, nvars, nritems)
16512 (start_symbol, max_user_token_number, semantic_parser)
16513 (error_token_number): Initialize.
16514 * src/reader.c (grammar, start_flag, startval, typed, lastprec):
16515 Initialize.
16516 (reader): Don't.
16517 (errtoken, eoftoken, undeftoken, axiom): Extern.
16518
16519 2002-04-07 Akim Demaille <akim@epita.fr>
16520
16521 * src/gram.h (rule_s): prec and precsym are now pointers
16522 to the bucket giving the priority/associativity.
16523 Member `associativity' removed: useless.
16524 * src/reduce.c, src/conflicts.c: Adjust.
16525
16526 2002-04-07 Akim Demaille <akim@epita.fr>
16527
16528 * src/lalr.c, src/LR0.c, src/closure.c, src/gram.c, src/reduce.c:
16529 Properly escape the symbols' TAG when outputting them.
16530
16531 2002-04-07 Akim Demaille <akim@epita.fr>
16532
16533 * src/lalr.h (LA): Is a bitsetv, not bitset*.
16534
16535 2002-04-07 Akim Demaille <akim@epita.fr>
16536
16537 * src/lalr.h, src/lalr.c (LAruleno): Replace with...
16538 (LArule): this, which is an array to rule_t*.
16539 * src/print.c, src/conflicts.c: Adjust.
16540
16541 2002-04-07 Akim Demaille <akim@epita.fr>
16542
16543 * src/gram.h (rule_t): Rename `number' as `user_number'.
16544 `number' is a new member.
16545 Adjust dependencies.
16546 * src/reduce.c (reduce_grammar_tables): Renumber rule_t.number.
16547
16548 2002-04-07 Akim Demaille <akim@epita.fr>
16549
16550 As a result of the previous patch, it is no longer needed
16551 to reorder ritem itself.
16552
16553 * src/reduce.c (reduce_grammar_tables): Don't sort RITEM.
16554
16555 2002-04-07 Akim Demaille <akim@epita.fr>
16556
16557 Be sure never to walk through RITEMS, but use only data related to
16558 the rules themselves. RITEMS should be banished.
16559
16560 * src/output.c (output_token_translations): Rename as...
16561 (prepare_tokens): this.
16562 In addition to `translate', prepare the muscles `tname' and
16563 `toknum', which were handled by...
16564 (output_rule_data): this.
16565 Remove, and move the remainder of its outputs into...
16566 (prepare_rules): this new routines, which also merges content from
16567 (output_gram): this.
16568 (prepare_rules): Be sure never to walk through RITEMS.
16569 (output_stos): Rename as...
16570 (prepare_stos): this.
16571 (output): Always invoke prepare_states, after all, just don't use it
16572 in the output if you don't need it.
16573
16574 2002-04-07 Akim Demaille <akim@epita.fr>
16575
16576 * src/LR0.c (new_state): Display `nstates' as the name of the
16577 newly created state.
16578 Adjust to initialize first_state and last_state if needed.
16579 Be sure to distinguish the initial from the final state.
16580 (new_states): Create the itemset of the initial state, and use
16581 new_state.
16582 * src/closure.c (closure): Now that the initial state has its
16583 items properly set, there is no need for a special case when
16584 creating `ruleset'.
16585
16586 As a result, now the rule 0, reducing to $axiom, is visible in the
16587 outputs. Adjust the test suite.
16588
16589 * tests/conflicts.at (Solved SR Conflicts)
16590 (Unresolved SR Conflicts): Adjust.
16591 * tests/regression.at (Web2c Report, Rule Line Numbers): Idem.
16592 * tests/conflicts.at (S/R in initial): New.
16593
16594 2002-04-07 Akim Demaille <akim@epita.fr>
16595
16596 * src/LR0.c (allocate_itemsets): Don't loop over ritem: loop over
16597 the RHS of the rules.
16598 * src/output.c (output_gram): Likewise.
16599
16600 2002-04-07 Akim Demaille <akim@epita.fr>
16601
16602 * src/gram.h (rule_t): `lhs' is now a pointer to the symbol's
16603 bucket.
16604 Adjust all dependencies.
16605 * src/reduce.c (nonterminals_reduce): Don't forget to renumber the
16606 `number' of the buckets too.
16607 * src/gram.h: Include `symtab.h'.
16608 (associativity): Move to...
16609 * src/symtab.h: here.
16610 No longer include `gram.h'.
16611
16612 2002-04-07 Akim Demaille <akim@epita.fr>
16613
16614 * src/gram.h, src/gram.c (rules_rhs_length): New.
16615 (ritem_longest_rhs): Use it.
16616 * src/gram.h (rule_t): `number' is a new member.
16617 * src/reader.c (packgram): Set it.
16618 * src/reduce.c (reduce_grammar_tables): Move the useless rules at
16619 the end of `rules', and count them out of `nrules'.
16620 (reduce_output, dump_grammar): Adjust.
16621 * src/print.c (print_grammar): It is no longer needed to check for
16622 the usefulness of a rule, as useless rules are beyond `nrules + 1'.
16623 * tests/reduce.at (Reduced Automaton): New test.
16624
16625 2002-04-07 Akim Demaille <akim@epita.fr>
16626
16627 * src/reduce.c (inaccessable_symbols): Fix a buglet: because of a
16628 lacking `+ 1' to nrules, Bison reported as useless a token if it
16629 was used solely to set the precedence of the last rule...
16630
16631 2002-04-07 Akim Demaille <akim@epita.fr>
16632
16633 * data/bison.c++, data/bison.simple: Don't output the current file
16634 name in #line, to avoid useless diffs between two identical
16635 outputs under different names.
16636
16637 2002-04-07 Akim Demaille <akim@epita.fr>
16638
16639 * src/closure.c, src/print.c, src/reader.c, src/reduce.c:
16640 Normalize loops to using `< nrules + 1', not `<= nrules'.
16641
16642 2002-04-07 Akim Demaille <akim@epita.fr>
16643
16644 * TODO: Update.
16645
16646 2002-04-07 Akim Demaille <akim@epita.fr>
16647
16648 * src/output.c, src/reader.c, src/symtab.c, src/symtab.h: Rename
16649 bucket.value as bucket.number.
16650
16651 2002-04-07 Akim Demaille <akim@epita.fr>
16652
16653 * src/closure.c, src/derives.c, src/gram.h, src/lalr.c,
16654 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
16655 * src/reader.c, src/reduce.c: Let rule_t.rhs point directly to the
16656 RHS, instead of being an index in RITEMS.
16657
16658 2002-04-04 Paul Eggert <eggert@twinsun.com>
16659
16660 * doc/bison.texinfo: Update copyright date.
16661 (Rpcalc Lexer, Symbols, Token Decl): Don't assume ASCII.
16662 (Symbols): Warn about running Bison in one character set,
16663 but compiling and/or running in an incompatible one.
16664 Warn about character code 256, too.
16665
16666 2002-04-03 Paul Eggert <eggert@twinsun.com>
16667
16668 * src/bison.data (YYSTACK_ALLOC): Depend on whether
16669 YYERROR_VERBOSE is nonzero, not whether it is defined.
16670
16671 Merge changes from bison-1_29-branch.
16672
16673 2002-03-20 Paul Eggert <eggert@twinsun.com>
16674
16675 Merge fixes from Debian bison_1.34-1.diff.
16676
16677 * configure.in (AC_PREREQ): 2.53.
16678
16679 2002-03-20 Akim Demaille <akim@epita.fr>
16680
16681 * src/conflicts.c (log_resolution): Argument `resolution' is const.
16682
16683 2002-03-19 Paul Eggert <eggert@twinsun.com>
16684
16685 * src/bison.simple (YYCOPY): New macro.
16686 (YYSTACK_RELOCATE): Use it.
16687 Remove Type arg; no longer needed. All callers changed.
16688 (yymemcpy): Remove; no longer needed.
16689
16690 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
16691 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
16692
16693 2002-03-19 Akim Demaille <akim@epita.fr>
16694
16695 Test and fix the #line outputs.
16696
16697 * tests/atlocal.at (GCC): New.
16698 * tests/synclines.at (AT_TEST_SYNCLINE): New macro.
16699 (Prologue synch line, %union synch line, Postprologue synch line)
16700 (Action synch line, Epilogue synch line): New tests.
16701 * src/reader.c (parse_union_decl): Define the muscle stype_line.
16702 * data/bison.simple, data/bison.c++: Use it.
16703
16704 2002-03-19 Akim Demaille <akim@epita.fr>
16705
16706 * tests/regression.at (%nonassoc and eof, Unresolved SR Conflicts)
16707 (Solved SR Conflicts, %expect not enough, %expect right)
16708 (%expect too much): Move to...
16709 * tests/conflicts.at: this new file.
16710
16711 2002-03-19 Akim Demaille <akim@epita.fr>
16712
16713 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
16714 * data/bison.simple, data/bison.c++: Handle the `#define' part, so
16715 that we can move to enums for instance.
16716 * src/output.c (token_definitions_output): Output a list of
16717 `token-name, token-number' instead of the #define.
16718 (output_skeleton): Name this list `b4_tokens', not `b4_tokendefs'.
16719
16720 2002-03-14 Akim Demaille <akim@epita.fr>
16721
16722 Use Gettext 0.11.1.
16723
16724 2002-03-09 Robert Anisko <robert@lrde.epita.fr>
16725
16726 * data/bison.c++: Make the user able to add members to the generated
16727 parser by subclassing.
16728
16729 2002-03-05 Robert Anisko <robert@lrde.epita.fr>
16730
16731 * src/reader.c (read_additionnal_code): `c' should be an integer, not
16732 a character.
16733 Reported by Nicolas Tisserand and Nicolas Burrus.
16734
16735 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
16736
16737 * src/reader.c: Warn about lacking semi-colons, do not complain.
16738
16739 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
16740
16741 * data/bison.c++: Remove a debug line.
16742
16743 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
16744
16745 * data/bison.c++: Unmerge value as yylval and value as yyval. Unmerge
16746 location as yylloc and location as yyloc. Use YYLLOC_DEFAULT, and
16747 provide a default implementation.
16748
16749 2002-03-04 Akim Demaille <akim@epita.fr>
16750
16751 * tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
16752 * tests/output.at (AT_CHECK_OUTPUT): Likewise.
16753 * tests/headers.at (AT_TEST_CPP_GUARD_H): Ditto.
16754 * tests/semantic.at (Parsing Guards): Similarly.
16755 * src/reader.at (readgram): Complain if the last rule is not ended
16756 with a semi-colon.
16757
16758 2002-03-04 Akim Demaille <akim@epita.fr>
16759
16760 * src/warshall.h, src/warshall.c (bitmatrix_print): Move to...
16761 * src/closure.c: here.
16762 (set_firsts): Use bitsetv_reflexive_transitive_closure instead of
16763 RTC.
16764 * src/warshall.h, src/warshall.c: Remove.
16765 * tests/sets.at (Broken Closure): Adjust.
16766
16767 2002-03-04 Akim Demaille <akim@epita.fr>
16768
16769 * src/output.c (output_skeleton): tempdir is const.
16770 bytes_read is unused.
16771
16772 2002-03-04 Akim Demaille <akim@epita.fr>
16773
16774 * lib/bbitset.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
16775 * lib/bitsetv.h, lib/ebitset.c, lib/lbitset.c, lib/sbitset.c:
16776 Update.
16777 From Michael Hayes.
16778
16779 2002-03-04 Akim Demaille <akim@epita.fr>
16780
16781 * src/closure.c (closure): `r' is unused.
16782
16783 2002-03-04 Akim Demaille <akim@epita.fr>
16784
16785 * tests/sets.at (Broken Closure): Add the ending `;'.
16786 * src/reader.at (readgram): Complain if a rule is not ended with a
16787 semi-colon.
16788
16789 2002-03-04 Akim Demaille <akim@epita.fr>
16790
16791 * src/conflicts.c (set_conflicts): Use bitset_disjoint_p.
16792 (count_sr_conflicts): Use bitset_count.
16793 * src/reduce.c (inaccessable_symbols): Ditto.
16794 (bits_size): Remove.
16795 * src/warshall.h, src/warshall.c: Convert to bitsetv.
16796
16797 2002-03-04 Akim Demaille <akim@epita.fr>
16798
16799 * src/closure.c, src/conflicts.c, src/lalr.c, src/print.c,
16800 * src/reduce.c: Remove the `bitset_zero's following the
16801 `bitset_create's, as now it is performed by the latter.
16802
16803 2002-03-04 Akim Demaille <akim@epita.fr>
16804
16805 * lib/bitset.c, lib/bitset.h, lib/bitsetv.c, lib/bitsetv.h,
16806 * lib/ebitset.c, lib/ebitset.h, lib/lbitset.c, lib/lbitset.h,
16807 * lib/sbitset.c, lib/sbitset.h, lib/bbitset.h: Update from the
16808 latest sources from Michael.
16809
16810 2002-03-04 Akim Demaille <akim@epita.fr>
16811
16812 * src/output.c (output): Don't free the grammar.
16813 * src/reader.c (grammar_free): New.
16814 * src/main.c (main): Call it and don't free symtab here.
16815
16816 2002-03-04 Akim Demaille <akim@epita.fr>
16817
16818 * src/lex.c (parse_percent_token): Be sure to 0-end token_buffer
16819 before returning.
16820 Reported by Benoit Perrot.
16821
16822 2002-03-04 Akim Demaille <akim@epita.fr>
16823
16824 Use bitset operations when possible, not loops over bits.
16825
16826 * src/conflicts.c (set_conflicts, count_sr_conflicts): Use
16827 bitset_or.
16828 * src/print.c (print_reductions): Use bitset_and, bitset_andn.
16829 * src/reduce.c (useless_nonterminals): Formatting changes.
16830 * src/warshall.c (TC): Use bitset_or.
16831
16832 2002-03-04 Akim Demaille <akim@epita.fr>
16833
16834 * src/lalr.h, src/lalr.c (tokensetsize): Remove, unused.
16835 * src/system.h (BITS_PER_WORD, WORDSIZE, SETBIT, RESETBIT, BITISSET):
16836 Ditto.
16837
16838 2002-03-04 Akim Demaille <akim@epita.fr>
16839
16840 * src/lalr.c (F): Now a bitset*.
16841 Adjust all dependencies.
16842
16843 2002-03-04 Akim Demaille <akim@epita.fr>
16844
16845 * src/conflicts.c (shiftset, lookaheadset): Now bitset.
16846 Adjust all dependencies.
16847
16848 2002-03-04 Akim Demaille <akim@epita.fr>
16849
16850 * src/L0.c, src/LR0.h (nstates): Be size_t.
16851 Adjust comparisons (signed vs unsigned).
16852 * src/conflics.c, src/lalr.c, src/lalr.h, src/output.c (LA): Now a
16853 bitset*.
16854 Adjust all dependencies.
16855
16856 2002-03-04 Akim Demaille <akim@epita.fr>
16857
16858 * src/closure.c (firsts): Now, also a bitset.
16859 Adjust all dependencies.
16860 (varsetsize): Remove, now unused.
16861 * src/warshall.h, src/warshall.c: Now work on arrays of bitsets.
16862
16863 2002-03-04 Akim Demaille <akim@epita.fr>
16864
16865 * src/print.c: Convert to use bitset.h, not hand coded iterations
16866 over ints.
16867
16868 2002-03-04 Akim Demaille <akim@epita.fr>
16869
16870 * src/reduce.c: Convert to use bitset.h, not hand coded BSet.
16871
16872 2002-03-04 Akim Demaille <akim@epita.fr>
16873
16874 * src/closure.c (ruleset): Be a bitset.
16875 (rulesetsize): Remove.
16876
16877 2002-03-04 Akim Demaille <akim@epita.fr>
16878
16879 * lib/bitset-int.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
16880 * lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/lbitset.c,
16881 * lib/lbitset.h, lib/sbitset.c, lib/sbitset.h: New.
16882 * src/closure.c (fderives): Be an array of bitsets.
16883
16884 2002-02-28 Robert Anisko <robert@lrde.epita.fr>
16885
16886 * data/bison.c++: Merge the two generated headers. Insert a copyright
16887 notice in each output file.
16888
16889 2002-02-28 Akim Demaille <akim@epita.fr>
16890
16891 * data/bison.c++: Copy the prologue of bison.simple to fetch
16892 useful M4 definitions, such as b4_header_guard.
16893
16894 2002-02-25 Akim Demaille <akim@epita.fr>
16895
16896 * src/getargs.c (version): Give the name of the authors, and use a
16897 translator friendly scheme for the bgr
16898 copyright notice.
16899
16900 2002-02-25 Akim Demaille <akim@epita.fr>
16901
16902 * src/output.c (header_output): Remove, now handled completely via
16903 M4.
16904
16905 2002-02-25 Akim Demaille <akim@epita.fr>
16906
16907 * m4/m4.m4: New, from CVS Autoconf.
16908 * configure.in: Invoke it.
16909 * src/output.c (output_skeleton): Use its result instead of the
16910 hard coded name.
16911
16912 2002-02-25 Akim Demaille <akim@epita.fr>
16913
16914 * lib/tempname.c, lib/mkstemp.c, m4/mkstemp.m4: New, stolen from
16915 Fileutils 4.1.5.
16916 * configure.in: Invoke UTILS_FUNC_MKSTEMP.
16917 * src/output.c (output_skeleton): Use mkstemp to create a real
16918 temporary file.
16919 Move the filling of `skeleton' and its muscle to...
16920 (prepare): here.
16921 (output): Move the definition of the prologue muscle to...
16922 (prepare): here.
16923 * src/system.h (DEFAULT_TMPDIR): New.
16924
16925 2002-02-14 Paul Eggert <eggert@twinsun.com>
16926
16927 Remove the support for C++ namespace cleanliness; it was
16928 causing more problems than it was curing, since it didn't work
16929 properly on some nonstandard C++ compilers. This can wait
16930 for a proper C++ parser.
16931
16932 * NEWS: Document this.
16933 * doc/bison.texinfo (Bison Parser, Debugging): Remove special mention
16934 of C++, as it's treated like C now.
16935 * src/bison.simple (YYSTD): Remove.
16936 (YYSIZE_T, YYFPRINTF, YYPARSE_PARAM_ARG, YYPARSE_PARAM_DECL):
16937 Treat C++ just like Standard C instead of trying to support
16938 namespace cleanliness.
16939
16940 2002-02-14 Akim Demaille <akim@epita.fr>
16941
16942 * tests/regression.at (else): Adjust to Andreas' change.
16943
16944 2002-02-14 Akim Demaille <akim@epita.fr>
16945
16946 * lib/Makefile.am (EXTRA_DIST): Ship strnlen.c.
16947
16948 2002-02-13 Andreas Schwab <schwab@suse.de>
16949
16950 * src/output.c (output_rule_data): Don't output NULL, it might
16951 not be defined yet.
16952
16953 2002-02-11 Robert Anisko <robert@lrde.epita.fr>
16954
16955 * data/bison.c++ (YYDEBUG, YYERROR_VERBOSE): After the prologue.
16956 (Copyright notice): Update.
16957
16958 2002-02-11 Akim Demaille <akim@epita.fr>
16959
16960 * tests/regression.at (%nonassoc and eof): Don't include
16961 nonportable headers.
16962
16963 2002-02-08 Robert Anisko <robert@lrde.epita.fr>
16964
16965 * data/bison.c++: Correct error recovery. Make the user able to
16966 initialize the starting location.
16967
16968 2002-02-07 Akim Demaille <akim@epita.fr>
16969
16970 * tests/input.at: New.
16971
16972 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
16973
16974 * data/bison.c++: Replace some direct m4 expansions by constants. Be
16975 more consistent when naming methods and variables. Put preprocessor
16976 directives around tables only needed for debugging.
16977
16978 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
16979
16980 * data/bison.c++ (yy::b4_name::print_): New method, replaces yyprint in
16981 C++ parsers.
16982 (yy::b4_name::parse): Use print_.
16983
16984 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
16985
16986 * data/bison.c++ (yy::b4_name::parse): Error recovery is back.
16987
16988 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
16989
16990 * data/bison.c++ (yy::b4_name::error_): New method, replaces yyerror in
16991 C++ parsers.
16992 (yy::b4_name::parse): Build verbose error messages, and use error_.
16993
16994 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
16995
16996 * data/bison.c++: Fix m4 quoting in comments.
16997
16998 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
16999
17000 * data/bison.c++: Adjust the parser code. Fix some muscles that were
17001 not expanded by m4.
17002
17003 2002-02-05 Akim Demaille <akim@epita.fr>
17004
17005 * data/bison.c++: Adjust to the M4 back end.
17006 More is certainly needed.
17007
17008 2002-02-05 Akim Demaille <akim@epita.fr>
17009
17010 Give a try to M4 as a back end.
17011
17012 * lib/readpipe.c: New, from wdiff.
17013 * src/Makefile.am (DEFS): Define PKGDATADIR, not BISON_SIMPLE and
17014 BISON_HAIRY.
17015 * src/system.h (BISON_HAIRY, BISON_SIMPLE): Remove the DOS and VMS
17016 specific values. Now it is m4 that performs the lookup.
17017 * src/parse-skel.y: Remove.
17018 * src/muscle_tab.c, src/muscle_tab.h (muscles_m4_output): New.
17019 * src/output.c (actions_output, guards_output)
17020 (token_definitions_output): No longer keeps track of the output
17021 line number, hence remove the second argument.
17022 (guards_output): Check against the guard member of a rule, not the
17023 action member.
17024 Adjust callers.
17025 (output_skeleton): Don't look for the skeleton location, let m4 do
17026 that.
17027 Create `/tmp/muscles.m4'. This is temporary, a proper temporary
17028 file will be used.
17029 Invoke `m4' on m4sugar.m4, muscles.m4, and the skeleton.
17030 (prepare): Given that for the time being changesyntax is not
17031 usable in M4, rename the muscles using `-' to `_'.
17032 Define `defines_flag', `output_parser_name' and `output_header_name'.
17033 * src/output.h (actions_output, guards_output)
17034 (token_definitions_output): Adjust prototypes.
17035 * src/scan-skel.l: Instead of scanning the skeletons, it now
17036 processes the output of m4: `__oline__' and `#output'.
17037 * data/bison.simple: Adjust to be used by M4(sugar).
17038 * tests/Makefile.am: Use check_SCRIPTS to make sure `bison' is up
17039 to date.
17040 * tests/bison.in: Use the secrete envvar `BISON_PKGDATADIR'
17041 instead of the dead `BISON_SIMPLE' and `BISON_HAIRY'.
17042 * data/m4sugar/m4sugar.m4, data/m4sugar/version.m4: New,
17043 shamelessly stolen from CVS Autoconf.
17044
17045 2002-02-05 Akim Demaille <akim@epita.fr>
17046
17047 * lib/hash.c, lib/hash.h: Replace with Fileutils 4.1's version.
17048 * configure.in: Check for the declarations of free and malloc.
17049 * src/muscle_tab.c: Adjust.
17050
17051 2002-02-05 Akim Demaille <akim@epita.fr>
17052
17053 * src/muscle_tab.c (muscle_init): Don't default to NULL muscle
17054 which have no values.
17055
17056 2002-02-05 Akim Demaille <akim@epita.fr>
17057
17058 * src/bison.simple, src/bison.hairy, src/bison.c++: Move to...
17059 * data/: here.
17060
17061 2002-01-29 Paul Eggert <eggert@twinsun.com>
17062
17063 * src/bison.simple (YYSIZE_T): Do not define merely because
17064 YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
17065 On some platforms, <alloca.h> does not declare YYSTD (size_t).
17066
17067 2002-01-27 Akim Demaille <akim@epita.fr>
17068
17069 Fix `%nonassoc and eof'.
17070
17071 * src/state.c (errs_dup): Aaaah! The failure was due to bytes
17072 which were not properly copied! Replace
17073 memcpy (res->errs, src->errs, src->nerrs);
17074 with
17075 memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
17076 !!!
17077 * tests/regression.at (%nonassoc and eof): Adjust to newest
17078 Autotest: `.' is not in the PATH.
17079
17080 2002-01-27 Akim Demaille <akim@epita.fr>
17081
17082 * tests/sets.at (AT_EXTRACT_SETS): New.
17083 (Nullable): Use it.
17084 (Firsts): New.
17085
17086 2002-01-26 Akim Demaille <akim@epita.fr>
17087
17088 * tests/actions.at, tests/calc.at, tests/headers.at,
17089 * tests/torture.at: Adjust to the newest Autotest which no longer
17090 forces `.' in the PATH.
17091
17092 2002-01-25 Akim Demaille <akim@epita.fr>
17093
17094 * tests/regression.at (%nonassoc and eof): New.
17095 Suggested by Robert Anisko.
17096
17097 2002-01-24 Akim Demaille <akim@epita.fr>
17098
17099 Bison dumps core when trying to complain about broken input files.
17100 Reported by Cris van Pelt.
17101
17102 * src/lex.c (parse_percent_token): Be sure to set token_buffer.
17103 * tests/regression.at (Invalid input: 1, Invalid input: 2): Merge
17104 into...
17105 (Invalid inputs): Strengthen: exercise parse_percent_token.
17106
17107 2002-01-24 Robert Anisko <robert.anisko@epita.fr>
17108
17109 * src/Makefile.am: Add bison.c++.
17110 * src/bison.c++: New skeleton.
17111
17112 2002-01-21 Paolo Bonzini <bonzini@gnu.org>
17113
17114 * po/it.po: New.
17115
17116 2002-01-21 Kees Zeelenberg <kzlg@users.sourceforge.net>
17117
17118 * src/files.c (skeleton_find) [MSDOS]: Fix cp definition.
17119
17120 2002-01-20 Marc Autret <marc@gnu.org>
17121
17122 * src/files.c (compute_output_file_names): Fix
17123
17124 2002-01-20 Marc Autret <marc@gnu.org>
17125
17126 * tests/output.at: New test.
17127 * src/files.c (compute_base_names): Don't map extensions when
17128 the YACC flag is set, use defaults.
17129 Reported by Evgeny Stambulchik.
17130
17131 2002-01-20 Marc Autret <marc@gnu.org>
17132
17133 * src/system.h: Need to define __attribute__ away for non-GCC
17134 compilers as well (i.e., the vendor C compiler).
17135 Suggested by Albert Chin-A-Young.
17136
17137 2002-01-11 Tim Van Holder <tim.van.holder@pandora.be>
17138
17139 * lib/hash.h, lib/hash.c: Renamed __P to PARAMS and used the
17140 canonical definition.
17141 * src/system.h: Use the canonical definition for PARAMS (avoids
17142 a conflict with the macro from lib/hash.h).
17143
17144 2002-01-11 Akim Demaille <akim@epita.fr>
17145
17146 * configure.in: Use AC_FUNC_STRNLEN.
17147 Fixes the failures observed on AIX 4.3 by H.Merijn Brand.
17148
17149 2002-01-09 Akim Demaille <akim@epita.fr>
17150
17151 * src/files.c, src/files.h (output_infix): New.
17152 (tab_extension): Remove.
17153 (compute_base_names): Compute the former, drop the latter.
17154 * src/output.c (prepare): Insert the muscles `output-infix', and
17155 `output-suffix'.
17156 * src/parse-skel.y (string, string.1): New.
17157 (section.header): Use it.
17158 (section.yacc): Remove.
17159 (prefix): Remove too.
17160 * src/scan-skel.l: Adjust.
17161 * src/bison.simple, src/bison.hairy: Adjust.
17162
17163 2002-01-09 Akim Demaille <akim@epita.fr>
17164
17165 * configure.in (WERROR_CFLAGS): Compute it.
17166 * src/Makefile.am (CFLAGS): Pass it.
17167 * tests/atlocal.in (CFLAGS): Idem.
17168 * src/files.c: Fix a few warnings.
17169 (get_extension_index): Remove, unused.
17170
17171 2002-01-08 Akim Demaille <akim@epita.fr>
17172
17173 * src/getargs.c (AS_FILE_NAME): New.
17174 (getargs): Use it to convert DOSish file names.
17175 * src/files.c (base_name): Rename as full_base_name to avoid
17176 clashes with `base_name ()'.
17177 (filename_split): New.
17178 (compute_base_names): N-th rewrite, using filename_split.
17179
17180 2002-01-08 Akim Demaille <akim@epita.fr>
17181
17182 * lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
17183 New, stolen from the Fileutils 4.1.
17184 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
17185 * configure.in: Check for the presence of memrchr, and of its
17186 prototype.
17187
17188 2002-01-07 Tim Van Holder <tim.van.holder@pandora.be>
17189
17190 * lib/hash.h (__P): Added definition for this macro.
17191 * src/Makefile.am: Add parse-skel.c and scan-skel.c to
17192 BUILT_SOURCES, to ensure they are generated first.
17193 * src/parse-skel.y: Use YYERROR_VERBOSE instead of
17194 %error-verbose to allow bootstrapping with bison 1.30x.
17195
17196 2002-01-06 Akim Demaille <akim@epita.fr>
17197
17198 * src/reader.c (parse_braces): Don't fetch the next char, the
17199 convention is to fetch on entry.
17200 * tests/torture.at (GNU Cim Grammar): Reintroduce their weird
17201 'switch' without a following semicolon.
17202 * tests/regression.at (braces parsing): New.
17203
17204 2002-01-06 Akim Demaille <akim@epita.fr>
17205
17206 Bison is dead wrong in its RR conflict reports.
17207
17208 * tests/torture.at (GNU Cim Grammar): New.
17209 * src/conflicts.c (count_rr_conflicts): Fix.
17210
17211 2002-01-06 Akim Demaille <akim@epita.fr>
17212
17213 Creating package.m4 from configure.ac causes too many problems.
17214
17215 * tests/Makefile.am (package.m4): Create it by hand,
17216 AC_CONFIG_TESTDIR no longer does in the most recent CVS Autoconf.
17217
17218 2002-01-06 Akim Demaille <akim@epita.fr>
17219
17220 * src/Makefile.am (bison_SOURCES): Add parse-skel.h and
17221 skeleton.h.
17222
17223 2002-01-04 Paul Eggert <eggert@twinsun.com>
17224
17225 * doc/bison.texinfo (Debugging):
17226 Remove YYSTDERR; it's no longer defined or used.
17227 Also, s/cstdio.h/cstdio/.
17228
17229 2002-01-03 Akim Demaille <akim@epita.fr>
17230
17231 * tests/bison.in, tests/atlocal.in: Adjust to CVS Autoconf.
17232
17233 2002-01-03 Akim Demaille <akim@epita.fr>
17234
17235 * src/parse-skel.y (process_skeleton): Don't bind the parser's
17236 tracing code to --trace, wait for a better --trace option, with
17237 args.
17238
17239 2002-01-03 Akim Demaille <akim@epita.fr>
17240
17241 * src/bison.simple (YYSTDERR): Remove, replace `stderr'.
17242 The ISO C++ standard is extremely clear about it: stderr is
17243 considered a macro, not a regular symbol (see table 94 `Header
17244 <cstdio> synopsis', [lib.c.files] 27.8.2 C Library files).
17245 Therefore std:: does not apply to it. It still does with fprintf.
17246 Also, s/cstdio.h/cstdio/.
17247
17248 2002-01-03 Akim Demaille <akim@epita.fr>
17249
17250 * lib/quotearg.c: Use `#include "..."' instead of `#include <...>'
17251 for non system headers.
17252
17253 2002-01-02 Akim Demaille <akim@epita.fr>
17254
17255 Equip the skeleton chain with location tracking, runtime trace,
17256 pure parser and scanner.
17257
17258 * src/parse-skel.y: Request a pure parser, locations, and prefix
17259 renaming.
17260 (%union): Having several members with the same type does not help
17261 type mismatches, simplify.
17262 (YYPRINT, yyprint): New.
17263 (yyerror): ``Rename'' (there is a #define yyerror skel_error) as...
17264 (skel_error): this.
17265 Handle locations.
17266 * src/scan-skel.l: Adjust to these changes.
17267 * src/skeleton.h (LOCATION_RESET, LOCATION_LINES, LOCATION_STEP)
17268 (LOCATION_PRINT, skel_control_t): New.
17269
17270 2001-12-30 Akim Demaille <akim@epita.fr>
17271
17272 * src/parse-skel.y: Get rid of the shift/reduce conflict:
17273 replace `gb' with BLANKS.
17274 * src/scan-skel.l: Adjust.
17275
17276 2001-12-30 Akim Demaille <akim@epita.fr>
17277
17278 * src/system.h: We don't need nor want bcopy.
17279 Throw away MS-DOS crap: we don't need getpid.
17280 * configure.in: We don't need strndup. It was even causing
17281 problems: because Flex includes the headers *before* us,
17282 _GNU_SOURCE is not defined by config.h, and therefore strndup was
17283 not visible.
17284 * lib/xstrndup.c: New.
17285 * src/scan-skel.l: Use it.
17286 Be sure to initialize yylval.muscle member when scanning a MUSCLE.
17287 * src/parse-skel.y: Use %directives instead of #defines.
17288
17289 2001-12-30 Akim Demaille <akim@epita.fr>
17290
17291 * src/skeleton.h: New.
17292 * src/output.c (output_parser, output_master_parser): Remove, dead
17293 code.
17294 * src/output.h (get_lines_number, actions_output, guards_output)
17295 (token_definitions_output): Prototype them.
17296 * src/parse-skel.y: Add the license notice.
17297 Include output.h and skeleton.h.
17298 (process_skeleton): Returns void, and takes a single parameter.
17299 * src/scan-skel.l: Add the license notice.
17300 Include skeleton.h.
17301 Don't use %option yylineno: it seems that then Flex imagines
17302 REJECT has been used, and therefore it won't reallocate its
17303 buffers (which makes no other sense to me than a bug). It results
17304 in warnings for `unused: yy_flex_realloc'.
17305
17306 2001-12-30 Robert Anisko <robert.anisko@epita.fr>
17307
17308 * src/muscle_tab.h (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
17309 (MUSCLE_INSERT_PREFIX): ...to there.
17310 * src/output.c (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
17311 (MUSCLE_INSERT_PREFIX): Move from here...
17312
17313 * src/bison.hairy: Add a section directive. Put braces around muscle
17314 names. This parser skeleton is still broken, but Bison should not
17315 choke on a bad muscle 'syntax'.
17316 * src/bison.simple: Add a section directive. Put braces around muscle
17317 names.
17318
17319 * src/files.h (strsuffix, stringappend): Add declarations.
17320 (tab_extension): Add declaration.
17321 (short_base_name): Add declaration.
17322
17323 * src/files.c (strsuffix, stringappend): No longer static. These
17324 functions are used in the skeleton parser.
17325 (tab_extension): New.
17326 (compute_base_names): Use the computations done in this function
17327 to guess if the generated parsers should have '.tab' in their
17328 names.
17329 (short_base_name): No longer static.
17330
17331 * src/output.c (output_skeleton): New.
17332 (output): Disable call to output_master_parser, and give a try to
17333 a new skeleton handling system.
17334 (guards_output, actions_output): No longer static.
17335 (token_definitions_output, get_lines_number): No longer static.
17336
17337 * configure.in: Use AM_PROG_LEX and AC_PROG_YACC.
17338
17339 * src/Makefile.am (bison_SOURCES): Add scan-skel.l and
17340 parse-skel.y.
17341
17342 * src/parse-skel.y: New file.
17343 * src/scan-skel.l: New file.
17344
17345 2001-12-29 Akim Demaille <akim@epita.fr>
17346
17347 %name-prefix is broken.
17348
17349 * src/files.c (spec_name_prefix): Initialize to NULL, not to "yy".
17350 Adjust all dependencies.
17351 * tests/headers.at (export YYLTYPE): Strengthen this test: use
17352 %name-prefix.
17353
17354 Renaming yylval but not yylloc is not consistent. Now we do.
17355
17356 * src/bison.simple: Prefix yylloc if used.
17357 * doc/bison.texinfo (Decl Summary): Document that.
17358
17359 2001-12-29 Akim Demaille <akim@epita.fr>
17360
17361 * doc/bison.texinfo: Promote `%long-directive' over
17362 `%long_directive'.
17363 Remove all references to fixed-output-files, yacc is enough.
17364
17365 2001-12-29 Akim Demaille <akim@epita.fr>
17366
17367 * src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the
17368 user prologue. These are defaults.
17369 * tests/actions.at (Mid-rule actions): Make sure the user can
17370 define YYDEBUG and YYERROR_VERBOSE.
17371
17372 2001-12-29 Akim Demaille <akim@epita.fr>
17373
17374 * src/output.c (header_output): Don't forget to export YYLTYPE and
17375 yylloc.
17376 * tests/headers.at (export YYLTYPE): New, make sure it does.
17377 * tests/regression.at (%union and --defines, Invalid CPP headers):
17378 Move to...
17379 * tests/headers.at: here.
17380
17381 2001-12-29 Akim Demaille <akim@epita.fr>
17382
17383 * src/gram.h (rule_s): Member `assoc' is of type `associativity'.
17384
17385 2001-12-29 Akim Demaille <akim@epita.fr>
17386
17387 * tests/actions.at (Mid-rule actions): Output on a single line
17388 instead of several.
17389
17390 2001-12-29 Akim Demaille <akim@epita.fr>
17391
17392 * doc/bison.texinfo: Formatting changes.
17393
17394 2001-12-29 Akim Demaille <akim@epita.fr>
17395
17396 Don't store the token defs in a muscle, just be ready to output it
17397 on command. Now possible via `symbols'. Fixes a memory leak.
17398
17399 * src/output.c (token_definitions_output): New.
17400 (output_parser, header_output): Use it.
17401 * src/reader.c (symbols_save): Remove.
17402
17403 2001-12-29 Akim Demaille <akim@epita.fr>
17404
17405 * src/bison.simple: Do not provide a default for YYSTYPE and
17406 YYLTYPE before the user's prologue. Otherwise it's hardly... a
17407 default.
17408
17409 2001-12-29 Akim Demaille <akim@epita.fr>
17410
17411 Mid-rule actions are simply... ignored!
17412
17413 * src/reader.c (readgram): Be sure to attach mid-rule actions to
17414 the empty-rule associated to the dummy symbol, not to the host
17415 rule.
17416 * tests/actions.at (Mid-rule actions): New.
17417
17418 2001-12-29 Akim Demaille <akim@epita.fr>
17419
17420 Memory leak.
17421
17422 * src/reader.c (reader): Free grammar.
17423
17424 2001-12-29 Akim Demaille <akim@epita.fr>
17425
17426 Memory leak.
17427
17428 * src/LR0.c (new_itemsets): Don't allocate `shift_symbol' here,
17429 since it allocates it for each state, although only one is needed.
17430 (allocate_storage): Do it here.
17431
17432 2001-12-29 Akim Demaille <akim@epita.fr>
17433
17434 * src/options.h, src/options.c (create_long_option_table): Rename
17435 as...
17436 (long_option_table_new): this, with a clearer prototype.
17437 (percent_table): Remove, unused,
17438 * src/getargs.c (getargs): Adjust.
17439
17440 2001-12-29 Akim Demaille <akim@epita.fr>
17441
17442 * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
17443 * src/print.c, src/print_graph.c, src/state.h: Rename state_table
17444 as states.
17445
17446 2001-12-29 Akim Demaille <akim@epita.fr>
17447
17448 * src/lalr.c (build_relations): Rename `states' as `states1'.
17449 Sorry, I don't understand exactly what it is, no better name...
17450
17451 2001-12-29 Akim Demaille <akim@epita.fr>
17452
17453 * src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
17454 * src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
17455 * src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
17456 as rules.
17457
17458 2001-12-29 Akim Demaille <akim@epita.fr>
17459
17460 * src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
17461 ago.
17462
17463 2001-12-29 Akim Demaille <akim@epita.fr>
17464
17465 * src/reader.c, src/reader.h (user_toknums): Remove.
17466 Adjust all users to use symbols[i]->user_token_number.
17467
17468 2001-12-29 Akim Demaille <akim@epita.fr>
17469
17470 * src/gram.c, src/gram.h (sprec, sassoc): Remove.
17471 Adjust all users to use symbols[i]->prec or ->assoc.
17472
17473 2001-12-29 Akim Demaille <akim@epita.fr>
17474
17475 * src/reader.c, src/reader.h (tags): Remove.
17476 Adjust all users to use symbols[i]->tag.
17477
17478 2001-12-29 Akim Demaille <akim@epita.fr>
17479
17480 * src/gram.h, src/gram.c (symbols): New, similar to state_table
17481 and rule_table.
17482 * src/reader.c (packsymbols): Fill this table.
17483 Drop sprec.
17484 * src/conflicts.c (resolve_sr_conflict): Adjust.
17485 * src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
17486 single table.
17487 Use symbols[i]->tag instead of tags[i].
17488
17489 2001-12-29 Akim Demaille <akim@epita.fr>
17490
17491 * tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
17492 In addition, put a comment in there, to replace...
17493 * tests/regression.at (%union and C comments): Remove.
17494
17495 2001-12-29 Akim Demaille <akim@epita.fr>
17496
17497 * tests/regression.at (Web2c Actions): Blindly move the actual
17498 output as expected output. The contents *seem* right to me, but I
17499 can't pretend reading perfectly parser tables... Nonetheless, all
17500 the other tests pass correctly, the table look OK, even though the
17501 presence of `$axiom' is to be noted: AFAICS it is useless (but
17502 harmless).
17503
17504 2001-12-29 Akim Demaille <akim@epita.fr>
17505
17506 * src/reader.c (readgram): Don't add the rule 0 if there were no
17507 rules read. In other words, add it _after_ having performed
17508 grammar sanity checks.
17509 Fixes the `tests/regression.at (Invalid input: 1)' Failure.
17510
17511 2001-12-29 Akim Demaille <akim@epita.fr>
17512
17513 * tests/regression.at (Web2c Report): Catch up: the rule 0 is now
17514 visible, and some states have now a different number.
17515
17516 2001-12-29 Akim Demaille <akim@epita.fr>
17517
17518 * src/reader.c (readgram): Bind the initial rule's lineno to that
17519 of the first rule.
17520 * tests/regression.at (Rule Line Numbers, Unresolved SR Conflicts):
17521 (Solved SR Conflicts): Adjust rule 0's line number.
17522
17523 2001-12-29 Akim Demaille <akim@epita.fr>
17524
17525 Fix the `GAWK Grammar' failure.
17526
17527 * src/LR0.c (final_state): Initialize to -1 so that we do compute
17528 the reductions of the first state which was mistakenly confused
17529 with the final state because precisely final_state was initialized
17530 to 0.
17531 * tests/sets.at (Nullable): Adjust: state 0 does have lookaheads,
17532 now noticed by Bison.
17533 * tests/regression.at (Rule Line Numbers): Adjust: state 0 does
17534 have a reduction on $default.
17535
17536 2001-12-29 Akim Demaille <akim@epita.fr>
17537
17538 * src/gram.c (ritem_print): Be sure to subtract 1 when displaying
17539 rule line numbers.
17540 * src/closure.c (print_closure): Likewise.
17541 * src/derives.c (print_derives): Likewise.
17542 * tests/sets.at (Nullable): Adjust: the rule numbers are correct
17543 now.
17544
17545 2001-12-29 Akim Demaille <akim@epita.fr>
17546
17547 * src/lalr.c (lookaheads_print): New.
17548 (lalr): Call it when --trace-flag.
17549 * tests/sets.at (Nullable): Adjust: when tracing, the lookaheads
17550 are dumped.
17551
17552 2001-12-29 Akim Demaille <akim@epita.fr>
17553
17554 * src/derives.c (print_derives): Be sure to use `>= 0', not `> 0',
17555 when walking through ritem, even via rule->rhs.
17556 * src/reduce.c (dump_grammar, useful_production, reduce_output)
17557 (useful_production, useless_nonterminals): Likewise.
17558 (reduce_grammar_tables): Likewise, plus update nritems.
17559 * src/nullable.c (set_nullable): Likewise.
17560 * src/lalr.c (build_relations): Likewise.
17561 * tests/sets.at (Nullable): Adjust.
17562 Fortunately, now, the $axiom is no longer nullable.
17563
17564 2001-12-29 Akim Demaille <akim@epita.fr>
17565
17566 * src/LR0.c (generate_states): Use nritems, not nitems, nor using
17567 the 0-sentinel.
17568 * src/gram.c (ritem_longest_rhs): Likewise.
17569 * src/reduce.c (nonterminals_reduce): Likewise.
17570 * src/print_graph.c (print_graph): Likewise.
17571 * src/output.c (output_rule_data): Likewise.
17572 * src/nullable.c (set_nullable): Likewise.
17573
17574 2001-12-29 Akim Demaille <akim@epita.fr>
17575
17576 * src/output.c: Comment changes.
17577
17578 2001-12-27 Paul Eggert <eggert@twinsun.com>
17579
17580 * src/bison.simple (YYSTACK_ALLOC, YYSIZE_T): Remove special
17581 cases for non-GNU systems like AIX, HP-UX, SGI, Sun, and
17582 Sparc, as they were causing more porting problems than the
17583 (minor) performance improvement was worth.
17584
17585 Also, catch up with 1.31's YYSTD.
17586
17587 2001-12-27 Akim Demaille <akim@epita.fr>
17588
17589 * src/output.c (output_gram): Rely on nritems, not the
17590 0-sentinel. See below.
17591 Use -1 as separator, not 0.
17592 * src/bison.simple (yyparse): Subtract 1 to the rule numbers.
17593 Rely on -1 as separator in yyrhs, instead of 0.
17594 * tests/calc.at (AT_CHECK_CALC): Now, the parsers no longer issue
17595 twice `Now at end of input', therefore there are two lines less to
17596 expect.
17597
17598 2001-12-27 Akim Demaille <akim@epita.fr>
17599
17600 * tests/regression.at (Unresolved SR Conflicts):
17601 (Solved SR Conflicts, Rule Line Numbers): Adjust to the changes
17602 below.
17603
17604 2001-12-27 Akim Demaille <akim@epita.fr>
17605
17606 * src/LR0.c (new_state): Recognize the final state by the fact it
17607 is reached by eoftoken.
17608 (insert_start_shifting_state, insert_eof_shifting_state)
17609 (insert_accepting_state, augment_automaton): Remove, since now
17610 these states are automatically computed from the initial state.
17611 (generate_states): Adjust.
17612 * src/print.c: When reporting a rule number to the user, substract
17613 1, so that the axiom rule is rule 0, and the first user rule is 1.
17614 * src/reduce.c: Likewise.
17615 * src/print_graph.c (print_core): For the time being, just as for
17616 the report, depend upon --trace-flags to dump the full set of
17617 items.
17618 * src/reader.c (readgram): Once the grammar read, insert the rule
17619 0: `$axiom: START-SYMBOL $'.
17620 * tests/set.at: Adjust: rule 0 is now displayed, and since the
17621 number of the states has changed (the final state is no longer
17622 necessarily the last), catch up.
17623
17624 2001-12-27 Akim Demaille <akim@epita.fr>
17625
17626 Try to make the use of the eoftoken valid. Given that its value
17627 is 0 which was also used as a sentinel in ritem, (i) make sure >= 0
17628 is used instead of > 0 where appropriate, (ii), depend upon nritems
17629 instead of the 0-sentinel.
17630
17631 * src/gram.h, src/gram.c (nritems): New.
17632 Expected to be duplication of nitems, but for the time being...
17633 * src/reader.c (packgram): Assert nritems and nitems are equal.
17634 * src/LR0.c (allocate_itemsets, new_itemsets): Adjust.
17635 * src/closure.c (print_closure, print_fderives): Likewise.
17636 * src/gram.c (ritem_print): Likewise.
17637 * src/print.c (print_core, print_grammar): Likewise.
17638 * src/print_graph.c: Likewise.
17639
17640 2001-12-27 Akim Demaille <akim@epita.fr>
17641
17642 * src/main.c (main): If there are complains after grammar
17643 reductions, then output the report anyway if requested, then die.
17644 * src/symtab.c (bucket_new): Initialize `value' to -1, not 0.
17645 * src/reader.c (eoftoken): New.
17646 (parse_token_decl): If the token being defined has value `0', it
17647 is the eoftoken.
17648 (packsymbols): No longer hack `tags' to insert `$' by hand.
17649 Be sure to preserve the value of the eoftoken.
17650 (reader): Make sure eoftoken is defined.
17651 Initialize nsyms to 0: now eoftoken is created just like the others.
17652 * src/print.c (print_grammar): Don't special case the eof token.
17653 * src/regression.at: Adjust: `$' has value 0, not -1, which was a
17654 lie anyway, albeit pleasant.
17655 * tests/calc.at: Exercise error messages with eoftoken.
17656 Change the grammar so that empty input is invalid.
17657 Adjust expectations.
17658 When yyungeting, be sure to use a valid yylloc: use last_yylloc.
17659
17660 2001-12-27 Akim Demaille <akim@epita.fr>
17661
17662 * configure.in: Check the protos of strchr ans strspn.
17663 Replace strchr if needed.
17664 * src/system.h: Provide the protos of strchr, strspn and memchr if
17665 missing.
17666 * lib/strchr.c: New.
17667 * src/reader.c (symbols_save): Use strchr.
17668
17669 2001-12-27 Akim Demaille <akim@epita.fr>
17670
17671 * src/print.c, src/print_graph.c (escape): New.
17672 Use it to quote the TAGS outputs.
17673 * src/print_graph.c (print_state): Now errors are in red, and
17674 reductions in green.
17675 Prefer high to wide: output the state number on a line of its own.
17676
17677 2001-12-27 Akim Demaille <akim@epita.fr>
17678
17679 * src/state.h, src/state.c (reductions_new): New.
17680 * src/LR0.c (set_state_table): Let all the states have a
17681 `reductions', even if reduced to 0.
17682 (save_reductions): Adjust.
17683 * src/lalr.c (initialize_LA, initialize_lookaheads): Adjust.
17684 * src/print.c (print_reductions, print_actions): Adjust.
17685 * src/output.c (action_row): Adjust.
17686
17687 2001-12-27 Akim Demaille <akim@epita.fr>
17688
17689 * src/state.h, src/state.c (errs_new, errs_dup): New.
17690 * src/LR0.c (set_state_table): Let all the states have an errs,
17691 even if reduced to 0.
17692 * src/print.c (print_errs, print_reductions): Adjust.
17693 * src/output.c (output_actions, action_row): Adjust.
17694 * src/conflicts.c (resolve_sr_conflict): Adjust.
17695
17696 2001-12-27 Akim Demaille <akim@epita.fr>
17697
17698 * src/lalr.c (set_goto_map, initialize_F): Use SHIFT_SYMBOL.
17699
17700 2001-12-27 Akim Demaille <akim@epita.fr>
17701
17702 * src/conflicts.c, src/conflicts.h (print_reductions): Move to...
17703 * src/print.c: here.
17704 (lookaheadset, shiftset): New, used as additional storage by
17705 print_reductions.
17706 (print_results): Adjust.
17707 (print_shifts, print_gotos, print_errs): New, extracted from...
17708 (print_actions): here.
17709 * src/print_graph.c (print_actions): Remove dead code.
17710
17711 2001-12-27 Akim Demaille <akim@epita.fr>
17712
17713 * src/reader.c (copy_dollar, copy_at): Better checking of `n' in
17714 `$n' and `@n'.
17715
17716 2001-12-27 Akim Demaille <akim@epita.fr>
17717
17718 * src/lalr.c (add_lookback_edge): Use state_t instead of ints.
17719 (build_relations): Adjust.
17720
17721 2001-12-27 Akim Demaille <akim@epita.fr>
17722
17723 * src/lalr.c (set_goto_map): Remove a wrong but benign loop
17724 duplication.
17725
17726 2001-12-27 Akim Demaille <akim@epita.fr>
17727
17728 * src/reader.c (packgram): Catch nitems overflows.
17729
17730 2001-12-27 Akim Demaille <akim@epita.fr>
17731
17732 * src/files.c, src/files.h (guard_obstack): Remove.
17733 * src/output.c (output): Adjust.
17734 * src/reader.c (parse_braces): New, factoring...
17735 (copy_action, copy_guard): these two which are renamed as...
17736 (parse_action, parse_guard): these.
17737 As a voluntary consequence, using braces around guards is now
17738 mandatory.
17739
17740 2001-12-27 Akim Demaille <akim@epita.fr>
17741
17742 * src/gram.h (rule_t): `guard' and `guard_line' are new members.
17743 * src/reader.c (symbol_list): `guard' and `guard_line' are new
17744 members.
17745 (symbol_list_new): Adjust.
17746 (copy_action): action_line is the first line, not the last.
17747 (copy_guard): Just as for actions, store the `action' only, not
17748 the switch/case/break flesh.
17749 Don't parse the user action that might follow the guard, let...
17750 (readgram): do it, i.e., now, there can be an action after a
17751 guard.
17752 In other words the guard is just explicitly optional.
17753 (packgram): Adjust.
17754 * src/output.c (guards_output): New.
17755 (output_parser): Call it when needed.
17756 (output): Also free the guard and attrs obstacks.
17757 * src/files.c, src/files.h (obstack_save): Remove.
17758 (output_files): Remove.
17759 As a result, if one needs the former `.act' file, using an
17760 appropriate skeleton which requires actions and guards is now
17761 required.
17762 * src/main.c (main): Adjust.
17763 * tests/semantic.at: New.
17764 * tests/regression.at: Use `input.y' as input file name.
17765 Avoid 8+3 problems by requiring input.c when the test needs the
17766 parser.
17767
17768 2001-12-27 Akim Demaille <akim@epita.fr>
17769
17770 * src/reader.c (symbol_list_new): Be sure to initialize all the
17771 fields.
17772
17773 2001-12-27 Akim Demaille <akim@epita.fr>
17774
17775 All the hacks using a final pseudo state are now useless.
17776
17777 * src/LR0.c (set_state_table): state_table holds exactly nstates.
17778 * src/lalr.c (nLA): New.
17779 (initialize_LA, compute_lookaheads, initialize_lookaheads): Use it
17780 instead of lookaheadsp from the pseudo state (nstate + 1).
17781
17782 2001-12-27 Akim Demaille <akim@epita.fr>
17783
17784 * src/output.c (action_row, token_actions): Use a state_t instead
17785 of a integer, and nlookaheads instead of the following state's
17786 lookaheadsp.
17787
17788 2001-12-27 Akim Demaille <akim@epita.fr>
17789
17790 * src/conflicts.c (log_resolution, flush_shift)
17791 (resolve_sr_conflict, set_conflicts, solve_conflicts)
17792 (count_sr_conflicts, count_rr_conflicts, conflicts_output)
17793 (conflicts_print, print_reductions): Use a state_t instead of an
17794 integer when referring to a state.
17795 As much as possible, depend upon nlookaheads, instead of the
17796 `lookaheadsp' member of the following state (since lookaheads of
17797 successive states are successive, the difference between state n + 1
17798 and n served as the number of lookaheads for state n).
17799 * src/lalr.c (add_lookback_edge): Likewise.
17800 * src/print.c (print_core, print_actions, print_state)
17801 (print_results): Likewise.
17802 * src/print_graph.c (print_core, print_actions, print_state)
17803 (print_graph): Likewise.
17804 * src/conflicts.h: Adjust.
17805
17806 2001-12-27 Akim Demaille <akim@epita.fr>
17807
17808 * src/bison.hairy: Formatting/comment changes.
17809 ANSIfy.
17810 Remove `register' indications.
17811 Add plenty of `static'.
17812
17813 2001-12-27 Akim Demaille <akim@epita.fr>
17814
17815 * src/output.c (prepare): Drop the muscle `ntbase' which
17816 duplicates ntokens.
17817 * src/bison.simple: Formatting/comment changes.
17818 Use YYNTOKENS only, which is documented, but not YYNTBASE, which
17819 is an undocumented synonym.
17820
17821 2001-12-22 Akim Demaille <akim@epita.fr>
17822
17823 * src/output.c (output_table_data): Change the prototype to use
17824 `int' for array ranges: some invocations do pass an int, not a
17825 short.
17826 Reported by Wayne Green.
17827
17828 2001-12-22 Akim Demaille <akim@epita.fr>
17829
17830 Some actions of web2c.y are improperly triggered.
17831 Reported by Mike Castle.
17832
17833 * src/lalr.c (traverse): s/F (i)[k] = F (j)[k]/F (j)[k] = F (i)[k]/.
17834 * tests/regression.at (Web2c): Rename as...
17835 (Web2c Report): this.
17836 (Web2c Actions): New.
17837
17838 2001-12-22 Akim Demaille <akim@epita.fr>
17839
17840 Reductions in web2c.y are improperly reported.
17841 Reported by Mike Castle.
17842
17843 * src/conflicts.c (print_reductions): Fix.
17844 * tests/regression.at (Web2c): New.
17845
17846 2001-12-18 Akim Demaille <akim@epita.fr>
17847
17848 Some host fail on `assert (!"foo")', which expands to
17849 ((!"foo") ? (void)0 : __assert("!"foo."", __FILE__, __LINE__))
17850 Reported by Nelson Beebee.
17851
17852 * src/output.c, src/vcg.c: Replace `assert (!"it succeeded")' with
17853 `#define it_succeeded 0' and `assert (it_succeeded)'.
17854
17855 2001-12-17 Marc Autret <autret_m@epita.fr>
17856
17857 * src/bison.simple: Don't hard code the skeleton line and filename.
17858 * src/output.c (output_parser): Rename 'line' as 'output_line'.
17859 New line counter 'skeleton_line' (skeleton-line muscle).
17860
17861 2001-12-17 Paul Eggert <eggert@twinsun.com>
17862
17863 * NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
17864 YYDEBUG must be defined to a nonzero value.
17865
17866 * src/bison.simple (yytname): Do not assume that the user defines
17867 YYDEBUG to a properly parenthesized expression.
17868
17869 2001-12-17 Akim Demaille <akim@epita.fr>
17870
17871 * src/state.h (state_t): Rename lookaheads as lookaheadsp.
17872 nlookaheads is a new member.
17873 Adjust all users.
17874 * src/lalr.h (nlookaheads): Remove this orphan declaration.
17875 * src/lalr.c (initialize_lookaheads): Set nlookaheads for each
17876 state.
17877
17878 2001-12-17 Akim Demaille <akim@epita.fr>
17879
17880 * src/files.h, src/files.c (open_files, close_files): Remove.
17881 * src/main.c (main): Don't open/close files, nor invoke lex_free,
17882 let...
17883 * src/reader.c (reader): Do it.
17884
17885 2001-12-17 Akim Demaille <akim@epita.fr>
17886
17887 * src/conflicts.c (print_reductions): Formatting changes.
17888
17889 2001-12-17 Akim Demaille <akim@epita.fr>
17890
17891 * src/conflicts.c (flush_shift): Also adjust lookaheadset.
17892 (flush_reduce): New.
17893 (resolve_sr_conflict): Adjust.
17894
17895 2001-12-17 Akim Demaille <akim@epita.fr>
17896
17897 * src/output.c (output_obstack): Be static and rename as...
17898 (format_obstack): this, to avoid any confusion with files.c's
17899 output_obstack.
17900 * src/reader.h (muscle_obstack): Move to...
17901 * src/output.h: here, since it's defined in output.c.
17902
17903 2001-12-17 Akim Demaille <akim@epita.fr>
17904
17905 * src/output.c (action_row, save_column, default_goto)
17906 (sort_actions, matching_state, pack_vector): Better variable
17907 locality.
17908
17909 2001-12-17 Akim Demaille <akim@epita.fr>
17910
17911 * src/output.c: Various formatting changes.
17912
17913 2001-12-17 Akim Demaille <akim@epita.fr>
17914
17915 * src/files.c (output_files): Free the output_obstack.
17916 * src/main.c (main): Call print and print_graph conditionally.
17917 * src/print.c (print): Work unconditionally.
17918 * src/print_graph.c (print_graph): Work unconditionally.
17919 * src/conflicts.c (log_resolution): Output only if verbose_flag.
17920
17921 2001-12-16 Marc Autret <autret_m@epita.fr>
17922
17923 * src/output.c (actions_output): Fix. When we use %no-lines,
17924 there is one less line per action.
17925
17926 2001-12-16 Marc Autret <autret_m@epita.fr>
17927
17928 * src/bison.simple: Remove a useless #line directive.
17929 s/#line %%line %%skeleton/#line %%line "%%parser-file-name"/'.
17930 * src/output.c (get_lines_number): New.
17931 (output_parser): Adjust, now takes care about the lines of a
17932 output muscles.
17933 Fix line numbering.
17934 (actions_output): Computes the number of lines taken by actions.
17935 (output_master_parser): Insert new skeleton which is the name of
17936 the output parser file name.
17937
17938 2001-12-15 Marc Autret <autret_m@epita.fr>
17939
17940 * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
17941
17942 2001-12-15 Marc Autret <autret_m@epita.fr>
17943
17944 * src/output.c (output_gram): Keep track of the hairy one.
17945
17946 2001-12-15 Akim Demaille <akim@epita.fr>
17947
17948 Make `make distcheck' work.
17949
17950 * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses
17951 system.h which uses libgettext.h.
17952
17953 2001-12-15 Akim Demaille <akim@epita.fr>
17954
17955 * src/nullable.c (set_nullable): Useless rules must be skipped,
17956 otherwise, since we range over their symbols, we might look at a
17957 nonterminal which no longer ``exists'', i.e., it is not counted in
17958 `nvars', hence we overflow our arrays.
17959
17960 2001-12-15 Akim Demaille <akim@epita.fr>
17961
17962 The header can also be produced directly, without any obstack!
17963 Yahoo!
17964
17965 * src/files.c, src/files.h (defines_obstack): Remove.
17966 (compute_header_macro): Global.
17967 (defines_obstack_save): Remove.
17968 * src/reader.c (parse_union_decl): No longer output to
17969 defines_obstack: its content can be found in the `stype' muscle
17970 anyway.
17971 (output_token_translations): Merge into...
17972 (symbols_output): this.
17973 Rename as...
17974 (symbols_save): this.
17975 (reader): Adjust.
17976 * src/output.c (header_output): New.
17977 (output): Call it.
17978
17979 2001-12-15 Akim Demaille <akim@epita.fr>
17980
17981 * src/reader.c (parse_union_decl): Instead of handling two obstack
17982 simultaneously, use one to define the `stype' muscle, and use the
17983 value of the latter to fill defines_obstack.
17984 (copy_comment): Remove.
17985 (copy_comment2): Work for a single obstack.
17986 Rename as...
17987 (copy_comment): this.
17988
17989 2001-12-15 Akim Demaille <akim@epita.fr>
17990
17991 * src/lex.c, src/lex.h (xgetc): No longer static.
17992 * src/reader.c (parse_union_decl): Revamp.
17993
17994 2001-12-15 Akim Demaille <akim@epita.fr>
17995
17996 Still making progress in separating Bison into (i) input, (ii)
17997 process, (iii) output: now we can directly output the parser file
17998 without using table_obstack at all.
17999
18000 * src/files.c, src/files.h (table_obstack): Bye bye.
18001 (parser_file_name): New.
18002 * src/files.c (compute_output_file_names): Compute it.
18003 * src/output.c (actions_output, output_parser)
18004 (output_master_parser): To a file instead of an obstack.
18005
18006 2001-12-15 Akim Demaille <akim@epita.fr>
18007
18008 Attach actions to rules, instead of pre-outputting them to
18009 actions_obstack.
18010
18011 * src/gram.h (rule_t): action and action_line are new members.
18012 * src/reader.c (symbol_list): Likewise.
18013 (copy_action): Save the actions within the rule.
18014 (packgram): Save them in rule_table.
18015 * src/output.c (actions_output): New.
18016 (output_parser): Use it on `%%actions'.
18017 (output_rule_data): Don't free rule_table.
18018 (output): Do it.
18019 (prepare): Don't save the `action' muscle.
18020 * src/bison.simple: s/%%action/%%actions/.
18021
18022 2001-12-15 Akim Demaille <akim@epita.fr>
18023
18024 * src/reader.c (copy_action): When --yacc, don't append a `;'
18025 to the user action: let it fail if lacking.
18026 Suggested by Arnold Robbins and Tom Tromey.
18027
18028 2001-12-14 Akim Demaille <akim@epita.fr>
18029
18030 * src/lex.c (literalchar): Simply return the char you decoded, non
18031 longer mess around with obstacks and int pointers.
18032 Adjust all callers.
18033
18034 2001-12-14 Akim Demaille <akim@epita.fr>
18035
18036 * src/lex.c (literalchar): Don't escape the special characters,
18037 just decode them, and keep them as char (before, eol was output as
18038 the 2 char string `\n' etc.).
18039 * src/output.c (output_rule_data): Use quotearg to output the
18040 token strings.
18041
18042 2001-12-13 Paul Eggert <eggert@twinsun.com>
18043
18044 * src/bison.simple (YYSIZE_T, YYSTACK_ALLOC, YYSTACK_FREE):
18045 Do not infringe on the global user namespace when using C++.
18046 (YYFPRINTF, YYSTDERR): New macros, needed for the above.
18047 All uses of `fprintf' and `stderr' changed.
18048
18049 * doc/bison.texinfo: Document YYFPRINTF, YYSTDERR.
18050
18051 2001-12-13 Akim Demaille <akim@epita.fr>
18052
18053 The computation of nullable is broken: it doesn't handle empty
18054 RHS's properly.
18055
18056 * tests/torture.at (GNU AWK Grammar): New.
18057 * tests/sets.at (Nullable): New.
18058 * src/nullable.c (set_nullable): Instead of blindly looping over
18059 `ritems', loop over the rules, and then over their rhs's.
18060
18061 Work around Autotest bugs.
18062
18063 * src/warshall.c (bitmatrix_print): Don't use `+--+' as table
18064 frame, because Autotest understand lines starting with a `+' as
18065 traces from the shell. Then, they are not processed properly.
18066 Admittedly an Autotest bug, but we don't have time to wait for
18067 Autotest to catch up.
18068 * tests/regression.at (Broken Closure): Adjust to the new table
18069 frames.
18070 Move to...
18071 * tests/sets.at: here.
18072
18073 2001-12-13 Akim Demaille <akim@epita.fr>
18074
18075 * src/closure.c (closure): Use nrules instead of playing tricks
18076 with BITS_PER_WORD.
18077
18078 2001-12-13 Akim Demaille <akim@epita.fr>
18079
18080 * src/print.c (print_actions): Output the handling of `$' as the
18081 traces do: shifting the token EOF. Before EOF was treated as a
18082 nonterminal.
18083 * tests/regression.at: Adjust some tests.
18084 * src/print_graph.c (print_core): Complete the set of items via
18085 closure. The next-to-final and final states are still unsatisfying,
18086 but that's to be addressed elsewhere.
18087 No longer output the rule numbers, but do output the state number.
18088 A single loop for the shifts + gotos is enough, but picked a
18089 distinct color for each.
18090 (print_graph): Initialize and finalize closure.
18091
18092 2001-12-13 Akim Demaille <akim@epita.fr>
18093
18094 * src/reader.c (readgram): Remove dead code, an strip useless
18095 braces.
18096 (get_type): Remove, unused.
18097
18098 2001-12-12 Akim Demaille <akim@epita.fr>
18099
18100 * src/complain.h, src/complain.c: Remove error_one_per_line, rely
18101 on that of lib/error.c.
18102
18103 2001-12-12 Akim Demaille <akim@epita.fr>
18104
18105 Some hosts don't like `/' in includes.
18106
18107 * src/system.h: Include libgettext.h without qualifying the path.
18108 * src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
18109 $(top_srcdir).
18110
18111 2001-12-11 Marc Autret <autret_m@epita.fr>
18112
18113 * src/output.c (output_parser): Remove useless muscle.
18114
18115 2001-12-11 Marc Autret <autret_m@epita.fr>
18116
18117 * src/bison.simple: Remove #line just before %%epilogue. It
18118 is now handled in ...
18119 * src/reader.c (read_additionnal_code): Add the output of a
18120 #line for the epilogue.
18121
18122 2001-12-10 Marc Autret <autret_m@epita.fr>
18123
18124 * src/reader.c (copy_definition): Re-use CPP-outed code which
18125 replace precedent remove.
18126 * src/bison.simple: Remove #line before %%prologue because
18127 %%input-line is wrong at this time.
18128
18129 2001-12-10 Marc Autret <autret_m@epita.fr>
18130
18131 * src/reader.c (symbols_output): Clean up.
18132 * src/output.c (output_gram, output): Clean up.
18133
18134 2001-12-10 Akim Demaille <akim@epita.fr>
18135
18136 * src/lalr.c (initialize_lookaheads): New. Extracted from...
18137 * src/LR0.c (set_state_table): here.
18138 * src/lalr.c (lalr): Call it.
18139
18140 2001-12-10 Akim Demaille <akim@epita.fr>
18141
18142 * src/state.h (shifts): Remove the `number' member: shifts are
18143 attached to state, hence no longer need to be labelled with a
18144 state number.
18145
18146 2001-12-10 Akim Demaille <akim@epita.fr>
18147
18148 Now that states have a complete set of members, the linked list of
18149 shifts is useless: just fill directly the state's shifts member.
18150
18151 * src/state.h (shifts): Remove the `next' member.
18152 * src/LR0.c (first_state, last_state): Remove.
18153 Adjust the callers.
18154 (augment_automaton): Don't look for the shifts that must be added
18155 a shift on EOF: it is those of the state we looked for! But now,
18156 since shifts are attached, it is no longer needed to looking
18157 merely by its id: its number.
18158
18159 2001-12-10 Akim Demaille <akim@epita.fr>
18160
18161 * src/LR0.c (augment_automaton): Better variable locality.
18162 Remove an impossible branch: if there is a state corresponding to
18163 the start symbol being shifted, then there is shift for the start
18164 symbol from the initial state.
18165
18166 2001-12-10 Akim Demaille <akim@epita.fr>
18167
18168 * src/LR0.c (augment_automaton): Call `insert_eof_shifting_state'
18169 only when appropriate: when insert_start_shifting_state' is not
18170 invoked.
18171 * tests/regression.at (Rule Line Numbers): Adjust.
18172
18173 2001-12-10 Akim Demaille <akim@epita.fr>
18174
18175 * src/LR0.c (augment_automaton): Now that all states have shifts,
18176 merge the two cases addition shifts to the initial state.
18177
18178 2001-12-10 Akim Demaille <akim@epita.fr>
18179
18180 * src/lalr.c (set_state_table): Move to...
18181 * src/LR0.c: here.
18182 * src/lalr.c (lalr): Don't call it...
18183 * src/LR0.c (generate_states): do it.
18184 * src/LR0.h (first_state): Remove, only the table is used.
18185
18186 2001-12-10 Akim Demaille <akim@epita.fr>
18187
18188 * src/LR0.h (first_shift, first_reduction): Remove.
18189 * src/lalr.c: Don't use first_shift: find shifts through the
18190 states.
18191
18192 2001-12-10 Akim Demaille <akim@epita.fr>
18193
18194 * src/LR0.c: Attach shifts to states as soon as they are
18195 computed.
18196 * src/lalr.c (set_state_table): Instead of assigning shifts to
18197 state, just assert that the mapping was properly done.
18198
18199 2001-12-10 Akim Demaille <akim@epita.fr>
18200
18201 * src/LR0.c (insert_start_shift): Rename as...
18202 (insert_start_shifting_state): this.
18203 (insert_eof_shifting_state, insert_accepting_state): New.
18204 (augment_automaton): Adjust.
18205 Better locality of the variables.
18206 When looking if the start_symbol is shifted from the initial
18207 state, using `while (... symbol != start_symbol ...)' sounds
18208 better than `while (... symbol < start_symbol ...)': If fail
18209 to see how the order between symbols could be relevant!
18210
18211 2001-12-10 Akim Demaille <akim@epita.fr>
18212
18213 * src/getargs.h: Don't declare `spec_name_prefix' and
18214 `spec_file_prefix', declared by src/files.h.
18215 * src/files.c, src/files.h: Default for spec_name_prefix is "yy".
18216 * src/muscle_tab.c (muscle_init): Default prefix to NULL.
18217 * src/output.c (prepare): Adjust.
18218 * src/reader.c (symbols_output): Likewise.
18219 * src/vmsgetargs.c: Vaguely adjust, but who cares?
18220
18221 2001-12-10 Akim Demaille <akim@epita.fr>
18222
18223 * src/muscle_tab.c (muscle_init): NULL is a better default than
18224 `"0"'.
18225
18226 2001-12-10 Akim Demaille <akim@epita.fr>
18227
18228 * src/reader.c (reader): Calling symbols_output once is enough.
18229
18230 2001-12-10 Akim Demaille <akim@epita.fr>
18231
18232 Now that states have a complete set of members, the linked list of
18233 reductions is useless: just fill directly the state's reductions
18234 member.
18235
18236 * src/state.h (struct reductions): Remove member `number' and
18237 `next'.
18238 * src/LR0.c (first_reduction, last_reduction): Remove.
18239 (save_reductions): Don't link the new reductions, store them in
18240 this_state.
18241 * src/lalr.c (set_state_table): No need to attach reductions to
18242 states, it's already done.
18243 * src/output.c (output_actions): No longer free the shifts, then
18244 the reductions, then the states: free all the states and their
18245 members.
18246
18247 2001-12-10 Akim Demaille <akim@epita.fr>
18248
18249 * src/options.c (OPTN, DRTV, BOTH): New.
18250 (option_table): Use them.
18251
18252 * src/muscle_tab.c: Don't include xalloc.h and string.h: that's
18253 the job of system.h.
18254 * src/options.c: Don't include stdio.h and xalloc.h for the same
18255 reasons.
18256
18257 2001-12-10 Akim Demaille <akim@epita.fr>
18258
18259 * src/output.c (output, prepare): Make sure the values of the
18260 muscles `action' and `prologue' are 0-terminated.
18261
18262 2001-12-10 Akim Demaille <akim@epita.fr>
18263
18264 Clean up GCC warnings.
18265
18266 * src/reader.c (copy_action): `buf' is not used.
18267 (parse_skel_decl): Be static.
18268 * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'.
18269 * src/options.h (create_long_option_table): Have a real prototype.
18270 * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete)
18271 (hash_delete_at): Return const void *.
18272 Adjust casts to preserve the const.
18273
18274 2001-12-10 Akim Demaille <akim@epita.fr>
18275
18276 * configure.in: Require 2.52g.
18277 M4 is not needed, but AUTOM4TE is.
18278 * m4/m4.m4: Remove.
18279 * tests/Makefile.am: Adjust.
18280
18281 2001-12-10 Akim Demaille <akim@epita.fr>
18282
18283 One structure for states is enough, even though theoretically
18284 there are LR(0) states and LALR(1) states.
18285
18286 * src/lalr.h (state_t): Remove.
18287 (state_table): Be state_t **, not state_t *.
18288 * src/state.h (core, CORE_ALLOC): Rename as...
18289 (state_t, STATE_ALLOC): this.
18290 Add the LALR(1) members: shifts, reductions, errs.
18291 * src/LR0.c (state_table): Rename as...
18292 (state_hash): this, to avoid name clashes with the global
18293 `state_table'.
18294 * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c
18295 * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust.
18296
18297 2001-12-10 Akim Demaille <akim@epita.fr>
18298
18299 Bison dumps core on bash.y.
18300 Reported by Pascal Bart.
18301
18302 * src/warshall.c (bitmatrix_print): New.
18303 (TC): Use it.
18304 When performing a transitive closure R(i, j) && R(j, k) => R(i, k),
18305 j must be the outer loop.
18306 * tests/regression.at (Broken Closure): New.
18307
18308 2001-12-05 Akim Demaille <akim@epita.fr>
18309
18310 * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
18311 its argument.
18312 Reported by Peter Hamorsky.
18313
18314 2001-12-05 Akim Demaille <akim@epita.fr>
18315
18316 * src/conflicts.c (err_table): Remove.
18317 (resolve_sr_conflict): Adjust.
18318 * src/lalr.h (state_t.reduction_table, state_t.shift_table):
18319 Rename as...
18320 (state_t.reductions, state_t.shifts): this.
18321
18322 2001-12-05 Akim Demaille <akim@epita.fr>
18323
18324 * src/reduce.c (reduce_grammar_tables): No longer disable the
18325 removal of useless rules via CPP but via `if (0)', so that the
18326 compiler still check the code is valid.
18327 For instance, it should have noticed `rline' no longer exists: use
18328 the `line' member of rule_t.
18329 * src/gram.c (dummy, rline): Remove, unused.
18330
18331 2001-12-05 Akim Demaille <akim@epita.fr>
18332
18333 * src/output.c (pack_vector): Use assert, not berror.
18334 * src/main.c (berror): Remove, unused.
18335
18336 2001-12-05 Akim Demaille <akim@epita.fr>
18337
18338 New experimental feature: if --verbose --trace output all the
18339 items of a state, not only its kernel.
18340
18341 * src/print.c (print_core): If `trace_flag', then invoke closure
18342 before outputting the items of the state (print_core is no longer
18343 a correct name them).
18344 (print_results): Invoke new_closure/free_closure if needed.
18345
18346 2001-12-05 Akim Demaille <akim@epita.fr>
18347
18348 * src/LR0.c (new_itemsets): Use nshifts only, not shiftcount.
18349 * src/closure.c, src/closure.h (itemsetsize): Rename as...
18350 (nitemset): for consistency with the rest of the project.
18351
18352 2001-12-05 Akim Demaille <akim@epita.fr>
18353
18354 * src/closure.c (print_closure): Improve.
18355 (closure): Use it for printing input and output.
18356
18357 2001-12-05 Akim Demaille <akim@epita.fr>
18358
18359 * src/closure.c (FIRSTS, FDERIVES): Adjust to reality: they are
18360 indexed by nonterminals.
18361
18362 2001-12-05 Akim Demaille <akim@epita.fr>
18363
18364 * src/warshall.c (TC, RTC): De-obsfucate (source reduced to 22% of
18365 what it was!).
18366 * src/warshall.h: Remove accidental duplication of the content.
18367
18368 2001-12-05 Akim Demaille <akim@epita.fr>
18369
18370 * src/closure.c (set_fderives): De-obfuscate.
18371
18372 2001-12-05 Akim Demaille <akim@epita.fr>
18373
18374 * src/closure.c (print_firsts, print_fderives): De-obfuscate.
18375
18376 2001-12-05 Akim Demaille <akim@epita.fr>
18377
18378 * src/closure.c (set_firsts): De-obfuscate.
18379
18380 2001-12-05 Akim Demaille <akim@epita.fr>
18381
18382 * src/output.c (action_row): De-obfuscate
18383 using the good o' techniques: arrays not pointers, variable
18384 locality, BITISSET, RESETBIT etc.
18385
18386 2001-12-05 Akim Demaille <akim@epita.fr>
18387
18388 Pessimize the code to simplify it: from now on, all the states
18389 have a valid SHIFTS, which NSHIFTS is possibly 0.
18390
18391 * src/LR0.c (shifts_new): Be global and move to..
18392 * src/state.c, src/state.h: here.
18393 * src/conflicts, src/lalr.c, src/output.c, src/print.c,
18394 * src/print_graph: Adjust.
18395
18396 2001-12-05 Akim Demaille <akim@epita.fr>
18397
18398 * src/state.h (SHIFT_DISABLE, SHIFT_IS_DISABLED): New.
18399 * src/conflicts.c: Use it.
18400 Restore a few missing `if (!SHIFT_IS_DISABLED)' which were
18401 incorrectly ``simplified''.
18402
18403 2001-12-05 Akim Demaille <akim@epita.fr>
18404
18405 * src/conflicts.c (flush_shift, resolve_sr_conflict): De-obfuscate
18406 using the good o' techniques: arrays not pointers, variable
18407 locality, BITISSET, RESETBIT etc.
18408
18409 2001-12-05 Akim Demaille <akim@epita.fr>
18410
18411 * src/state.h (SHIFT_SYMBOL): New.
18412 * src/conflicts.c: Use it to deobfuscate.
18413
18414 2001-12-05 Akim Demaille <akim@epita.fr>
18415
18416 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts)
18417 (print_reductions): De-obfuscate using the good o' techniques:
18418 arrays not pointers, variable locality, BITISSET.
18419
18420 2001-12-05 Akim Demaille <akim@epita.fr>
18421
18422 * src/conflicts.c (print_reductions): Arrays, not pointers.
18423 Use BITISSET.
18424
18425 2001-12-05 Akim Demaille <akim@epita.fr>
18426
18427 * src/conflicts.c (print_reductions): Pessimize, but clarify.
18428
18429 2001-12-05 Akim Demaille <akim@epita.fr>
18430
18431 * src/conflicts.c (print_reductions): Improve variable locality.
18432
18433 2001-12-05 Akim Demaille <akim@epita.fr>
18434
18435 * src/conflicts.c (print_reductions): Pessimize, but clarify.
18436
18437 2001-12-05 Akim Demaille <akim@epita.fr>
18438
18439 * src/conflicts.c (print_reductions): Improve variable locality.
18440
18441 2001-12-05 Akim Demaille <akim@epita.fr>
18442
18443 * src/state.h (SHIFT_IS_ERROR, SHIFT_IS_GOTO, SHIFT_IS_SHIFT): New.
18444 * src/lalr.c: Use them.
18445
18446 2001-12-05 Akim Demaille <akim@epita.fr>
18447
18448 * src/LR0.c (augment_automaton): Formatting changes.
18449 Better variable locality.
18450
18451 2001-12-05 Akim Demaille <akim@epita.fr>
18452
18453 * src/lalr.c (matrix_print): New.
18454 (transpose): Use it.
18455 Use arrays instead of pointers.
18456
18457 2001-12-05 Akim Demaille <akim@epita.fr>
18458
18459 * src/lalr.c (maxrhs): Move to...
18460 * src/gram.c, src/gram.h (ritem_longest_rhs): here.
18461 * src/lalr.c (build_relations): Adjust.
18462
18463 2001-12-05 Akim Demaille <akim@epita.fr>
18464
18465 * src/lalr.c (transpose): Free the memory allocated to the
18466 argument, as it is replaced by the results by the unique caller.
18467 (build_relations): Merely invoke transpose: it handles the memory
18468 deallocation.
18469 Improve variable locality.
18470 Avoid variables used as mere abbreviations.
18471 (compute_lookaheads): Use arrays instead of pointers.
18472
18473 2001-12-05 Akim Demaille <akim@epita.fr>
18474
18475 * src/lalr.c (initialize_F): Improve variable locality.
18476 Avoid variables used as mere abbreviations.
18477
18478 2001-12-05 Akim Demaille <akim@epita.fr>
18479
18480 * src/derives.c (print_derives): Display the ruleno.
18481 * src/lalr.c (initialize_F, transpose): Better variable locality
18482 to improve readability.
18483 Avoid variables used as mere abbreviations.
18484
18485 2001-12-05 Akim Demaille <akim@epita.fr>
18486
18487 * src/lalr.c (traverse): Use arrays instead of pointers.
18488
18489 2001-12-05 Akim Demaille <akim@epita.fr>
18490
18491 * src/nullable.c (set_nullable): Use a for loop to de-obfuscate
18492 the handling of squeue.
18493 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
18494
18495 2001-12-05 Akim Demaille <akim@epita.fr>
18496
18497 Because useless nonterminals are now kept alive (instead of being
18498 `destroyed'), we now sometimes examine them, and store information
18499 related to them. Hence we need to know their number, and adjust
18500 memory allocations.
18501
18502 * src/reduce.c, src/reduce.h (nuseless_nonterminals): No longer
18503 static.
18504 * src/LR0.c (allocate_itemsets): The memory allocated to
18505 `symbol_count' was used for two different purpose: once to count
18506 the number of occurrences of each symbol, and later reassigned to
18507 `shift_symbol', containing the symbol that can be shifted from a
18508 given state.
18509 Deobfuscate, i.e., allocate, use and free `symbol_count' here
18510 only, and...
18511 (new_itemsets): Allocate `shift_symbol' here.
18512 (allocate_itemsets): symbol_count includes useless nonterminals.
18513 Make room for them.
18514 (free_storage): Use `free', not `XFREE', for pointers that cannot
18515 be null.
18516
18517 2001-12-05 Akim Demaille <akim@epita.fr>
18518
18519 * src/nullable.c (set_nullable): Deobfuscate the handling of
18520 ritem.
18521 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
18522
18523 2001-12-05 Akim Demaille <akim@epita.fr>
18524
18525 * src/gram.c, src/gram.h (ritem_print): New.
18526 * src/gram.c (dummy): Remove, now there is actual code in gram.c.
18527 (This useless function was defined only to work around VMS linkers
18528 that can't handle compilation units with variables only).
18529 * src/reduce.c (dump_grammar): Use it to trace the construction of
18530 ritem.
18531
18532 2001-12-04 Paul Eggert <eggert@twinsun.com>
18533
18534 * src/bison.simple (union yyalloc): Change member names
18535 to be the same as the stack names.
18536 (yyparse): yyptr is now union yyalloc *, not char *.
18537 (YYSTACK_RELOCATE): Likewise. This avoids a GCC warning,
18538 and may generate better code on some machines.
18539 (yystpcpy): Use prototype if __STDC__ is defined, not just
18540 if __cplusplus is defined.
18541
18542 2001-11-30 Akim Demaille <akim@epita.fr>
18543
18544 * configure.in (WARNING_CFLAGS): Add -Werror when possible.
18545 (CFLAGS): Do not include the WARNING_CFLAGS here, since GNU
18546 Gettext doesn't compile cleanly, and dies with -Werror.
18547 * src/Makefile.am, lib/Makefile.am, tests/atlocal.in (CFLAGS):
18548 Include WARNING_CFLAGS here.
18549 * lib/xstrdup.c: Include xalloc.h, so that xstrdup be declared
18550 before being defined.
18551
18552 2001-11-27 Paul Eggert <eggert@twinsun.com>
18553
18554 * lib/quotearg.h (quotearg_n, quotearg_n_style):
18555 First arg is int, not unsigned.
18556 * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
18557 (SIZE_MAX, UINT_MAX): New macros.
18558 (quotearg_n_options): Abort if N is negative.
18559 Avoid overflow check on hosts where size_t is 64 bits and int
18560 is 32 bits, as overflow is impossible there.
18561 Fix off-by-one typo that caused unnecessary reallocation.
18562
18563 2001-11-29 Paul Eggert <eggert@twinsun.com>
18564
18565 Name space cleanup in generated parser.
18566
18567 * doc/bison.texinfo (Bison Parser): Discuss system headers
18568 and their effect on the user name space.
18569
18570 * src/bison.simple:
18571 (YYSTACK_ALLOC, YYSTACK_FREE, union yyalloc, YYSTACK_GAP_MAX,
18572 YYSTACK_BYTES, YYSTACK_RELOCATE): Do not define unless necessary,
18573 i.e. unless ! defined (yyoverflow) || defined (YYERROR_VERBOSE).
18574
18575 (YYSIZE_T): New macro. Use it instead of size_t, to avoid infringing
18576 on user names when possible.
18577
18578 (YYSTACK_USE_ALLOCA): Do not define; just use any existing defn.
18579 Simplify test for whather <alloca.h> exists.
18580
18581 (<stdlib.h>): Include if we will use malloc, and if standard C or C++.
18582
18583 (<stdio.h>): Include if YYDEBUG.
18584
18585 (yymemcpy): Renamed from __yy_memcpy. Do not define unless
18586 ! defined (yyoverflow) && ! defined (yymemcpy).
18587
18588 (yymemcpy, yyparse): Rename local variables as needed so that
18589 they all begin with 'yy'.
18590
18591 (yystrlen, yystpcpy): New functions.
18592
18593 (YY_DECL_NON_LSP_VARIABLES): Renamed from _YY_DECL_VARIABLES.
18594 All uses changed.
18595
18596 (yyparse): size_t -> YYSIZE_T. Use yystrlen and yystpcpy
18597 instead of relying on string.h functions. Use YYSTACK_ALLOC
18598 and YYSTACK_FREE instead of malloc and free.
18599
18600 2001-11-30 Akim Demaille <akim@epita.fr>
18601
18602 * src/bison.simple (YYSTYPE, YYLTYPE): Move their definitions
18603 before their first uses.
18604 (YYBISON, YYPURE): Move to the top of the output.
18605
18606 2001-11-30 Akim Demaille <akim@epita.fr>
18607
18608 * tests/reduce.at (Useless Nonterminals): Fix.
18609
18610 2001-11-30 Akim Demaille <akim@epita.fr>
18611
18612 * src/bison.simple (YYSTACK_FREE): Use `do {;} while (0)' as empty
18613 if body instead of `;' to pacify GCC's warnings.
18614
18615 2001-11-30 Akim Demaille <akim@epita.fr>
18616
18617 Instead of mapping the LHS of unused rules to -1, keep the LHS
18618 valid, but flag the rules as invalid.
18619
18620 * src/gram.h (rule_t): `useful' is a new member.
18621 * src/print.c (print_grammar): Adjust.
18622 * src/derives.c (set_derives): Likewise.
18623 * src/reader.c (packgram, reduce_output): Likewise.
18624 * src/reduce.c (reduce_grammar_tables): Likewise.
18625 * tests/reduce.at (Underivable Rules, Useless Rules): New.
18626
18627 2001-11-30 Akim Demaille <akim@epita.fr>
18628
18629 * src/reduce.c (reduce_output): Formatting changes.
18630 * src/print.c (print_results, print_grammar): Likewise.
18631 * tests/regression.at (Rule Line Numbers)
18632 (Solved SR Conflicts, Unresolved SR Conflicts): Adjust.
18633
18634 2001-11-30 Akim Demaille <akim@epita.fr>
18635
18636 * src/reduce.c (nonterminals_reduce): Instead of throwing away
18637 useless nonterminals, move them at the end of the symbol arrays.
18638 (reduce_output): Adjust.
18639 * tests/reduce.at (Useless Nonterminals): Adjust.
18640
18641 2001-11-30 Akim Demaille <akim@epita.fr>
18642
18643 * src/reduce.c: Various comment/formatting changes.
18644 (nonterminals_reduce): New, extracted from...
18645 (reduce_grammar_tables): here.
18646 (reduce_grammar): Call nonterminals_reduce.
18647
18648 2001-11-29 Paul Eggert <eggert@twinsun.com>
18649
18650 * src/bison.simple (YYSTACK_REALLOC): Remove.
18651 (YYSTACK_ALLOC): Resurrect this macro, with its old meaning.
18652 (YYSTACK_FREE, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYSTACK_RELOCATE):
18653 New macros.
18654 (union yyalloc): New type.
18655 (__yy_memcpy): Last arg is size_t, not unsigned int, to remove
18656 an arbitrary restriction on hosts where size_t is wider than int.
18657
18658 (yyparse): Don't dump core if alloca or malloc fails; instead, report
18659 a parser stack overflow. Allocate just one block of memory for all
18660 three stacks, instead of allocating three blocks; this typically is
18661 faster and reduces fragmentation.
18662
18663 Do not limit the number of items in the stack to a value that fits
18664 in 'int', as this is an arbitrary limit on hosts with 64-bit
18665 size_t and 32-bit int.
18666
18667 2001-11-29 Marc Autret <autret_m@epita.fr>
18668
18669 * tests/calc.at [AT_DATA_CALC_Y]: Use %error-verbose instead
18670 of defining YYERROR_VERBOSE.
18671 [AT_DATA]: $4 is now out of C declarations in the prologue.
18672
18673 2001-11-28 Marc Autret <autret_m@epita.fr>
18674
18675 * src/reader.c (parse_dquoted_param): New.
18676 (parse_skel_decl): Use it.
18677 * src/lex.h: Add its prototype.
18678 * src/lex.c (literalchar): Become not static.
18679
18680 2001-11-28 Marc Autret <autret_m@epita.fr>
18681
18682 * src/output.h: And put its extern declaration here.
18683 * src/output.c (error_verbose): Define here.
18684 (prepare): Echo name modification.
18685 * src/getargs.h: Clean its extern declaration.
18686 * src/getargs.c (error_verbose_flag): Remove.
18687 (getargs): Remove case 'e'.
18688 * src/options.c (option_table): 'error-verbose' is now seen as simple
18689 percent option.
18690 Include output.h.
18691
18692 * src/reader.c (read_declarations): Remove case tok_include.
18693 (parse_include_decl): Remove.
18694 * src/lex.h (token_t): Remove tok_include.
18695 * src/options.c (option_table): 'include' is now a simple command line
18696 option.
18697
18698 2001-11-28 Marc Autret <autret_m@epita.fr>
18699
18700 * src/bison.simple: Adjust muscle names.
18701 * src/muscle_tab.c (muscle_init): Also rename the muscles.
18702 * src/output.c (prepare): s/_/-/ for the muscles names.
18703 (output_parser): When scanning for a muscle, allow '-' instead of '_'.
18704
18705 2001-11-28 Marc Autret <autret_m@epita.fr>
18706
18707 * src/bison.simple: Fix debug.
18708 [YYERROR_VERBOSE]: Re-integrate as an internal macro.
18709
18710 2001-11-28 Akim Demaille <akim@epita.fr>
18711
18712 * src/LR0.c (shifts_new): New.
18713 (save_shifts, insert_start_shift, augment_automaton): Use it.
18714
18715 2001-11-28 Akim Demaille <akim@epita.fr>
18716
18717 * src/closure.c (closure): `b' and `ruleno' denote the same value:
18718 keep ruleno only.
18719
18720 2001-11-28 Akim Demaille <akim@epita.fr>
18721
18722 * src/closure.c (closure): Instead of looping over word in array
18723 then bits in words, loop over bits in array.
18724
18725 2001-11-28 Akim Demaille <akim@epita.fr>
18726
18727 * src/closure.c (closure): No longer optimize the special case
18728 where all the bits of `ruleset[r]' are set to 0, to make the code
18729 clearer.
18730
18731 2001-11-28 Akim Demaille <akim@epita.fr>
18732
18733 * src/closure.c (closure): `r' and `c' are new variables, used to
18734 de-obfuscate accesses to RULESET and CORE.
18735
18736 2001-11-28 Akim Demaille <akim@epita.fr>
18737
18738 * src/reduce.c (reduce_print): Use ngettext.
18739 (dump_grammar): Improve the trace accuracy.
18740
18741 2001-11-28 Akim Demaille <akim@epita.fr>
18742
18743 * src/reduce.c (dump_grammar): Don't translate trace messages.
18744
18745 2001-11-28 Akim Demaille <akim@epita.fr>
18746
18747 * tests/reduce.at (Useless Terminals, Useless Nonterminals): New.
18748 * src/reduce.c (reduce_grammar_tables): Do not free useless tags,
18749 as all tags are free'ed afterwards.
18750 From Enrico Scholz.
18751
18752 2001-11-27 Paul Eggert <eggert@twinsun.com>
18753
18754 * src/bison.simple (YYSTACK_REALLOC): Fix typo that caused us to
18755 use alloca when we didn't want to, and vice versa.
18756
18757 2001-11-27 Marc Autret <autret_m@epita.fr>
18758
18759 * src/muscle_tab.c (muscle_init): Remove 'verbose' muscle
18760 initialization.
18761 * src/output.c (prepare): Remove its update.
18762
18763 2001-11-27 Marc Autret <autret_m@epita.fr>
18764
18765 * tests/torture.at [AT_DATA]: Remove YYERROR_VERBOSE definition.
18766 Use %error-verbose.
18767
18768 2001-11-27 Marc Autret <autret_m@epita.fr>
18769
18770 * src/bison.simple: Remove YYERROR_VERBOSE using.
18771 Use %%error_verbose.
18772 (yyparse): Likewise.
18773 * src/output.c (prepare): Give its final value.
18774 * src/muscle_tab.c (muscle_init): Init new muscle 'error_verbose'.
18775 * src/getargs.h: Add its extern declaration.
18776 * src/getargs.c (error_verbose_flag): New int.
18777 (getargs): Update to catch new case.
18778 * src/options.c (option_table): 'error-verbose' is a new option.
18779 (shortopts): Update.
18780
18781 2001-11-27 Akim Demaille <akim@epita.fr>
18782
18783 * src/system.h: Use intl/libgettext.h.
18784 * src/Makefile.am (INCLUDES): Add -I $(top_srcdir).
18785
18786 2001-11-27 Akim Demaille <akim@epita.fr>
18787
18788 * tests/torture.at (Exploding the Stack Size with Malloc):
18789 s/YYSTACK_USE_ALLOCA_ALLOCA/YYSTACK_USE_ALLOCA/.
18790
18791 2001-11-27 Akim Demaille <akim@epita.fr>
18792
18793 * src/files.c: Include error.h.
18794 Reported by Hans Aberg.
18795
18796 2001-11-26 Marc Autret <autret_m@epita.fr>
18797
18798 * src/reader.c (parse_include_decl): New, not yet implemented.
18799 (read_declarations): Add case tok_include.
18800 * src/getargs.h (include): Add its extern definition.
18801 * src/getargs.c (include): New const char *.
18802 (getargs): Add case '-I'.
18803 * src/options.c (option_table): Add include as command line and
18804 percent option.
18805 * src/lex.h (token_t): Add tok_include.
18806
18807 2001-11-26 Akim Demaille <akim@epita.fr>
18808
18809 * src/reader.c (readgram): Make sure rules for mid-rule actions
18810 have a lineno equal to that of their host rule.
18811 Reported by Hans Aberg.
18812 * tests/regression.at (Rule Line Numbers): New.
18813
18814 2001-11-26 Akim Demaille <akim@epita.fr>
18815
18816 * src/LR0.c (allocate_itemsets): kernel_size contains ints, not
18817 size_ts.
18818
18819 2001-11-26 Akim Demaille <akim@epita.fr>
18820
18821 * src/complain.c, src/complain.h (error): Remove, provided by
18822 lib/error.[ch].
18823
18824 2001-11-26 Akim Demaille <akim@epita.fr>
18825
18826 * src/reader.c (read_declarations): Don't abort on tok_illegal,
18827 issue an error message.
18828 * tests/regression.at (Invalid %directive): New.
18829 Reported by Hans Aberg.
18830
18831 2001-11-26 Akim Demaille <akim@epita.fr>
18832
18833 * configure.in: Invoke AC_FUNC_OBSTACK and AC_FUNC_ERROR_AT_LINE.
18834 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
18835
18836 2001-11-26 Akim Demaille <akim@epita.fr>
18837
18838 * src/conflicts.c (conflicts_print): Don't complain at all when
18839 there are no reduce/reduce conflicts, and as many shift/reduce
18840 conflicts as expected.
18841 * tests/regression.at (%expect right): Adjust.
18842
18843 2001-11-23 Akim Demaille <akim@epita.fr>
18844
18845 * lib/alloca.c: Update, from fileutils.
18846
18847 2001-11-23 Akim Demaille <akim@epita.fr>
18848
18849 * lib/Makefile.am (libbison_a_LIBADD): Add @ALLOCA@.
18850
18851 2001-11-23 Akim Demaille <akim@epita.fr>
18852
18853 * src/system.h: Include alloca.h.
18854 * src/main.c (main) [C_ALLOCA]: Call alloca (0).
18855
18856 2001-11-23 Akim Demaille <akim@epita.fr>
18857
18858 * src/print_graph.c (print_actions): Remove `rule', unused.
18859 * src/LR0.c (kernel_size): Contain `int' instead of `size_t' to
18860 pacify GCC's signed < unsigned warnings.
18861 * src/closure.c (itemsetsize): Likewise.
18862 * src/reader.c (symbol_list_new): Static.
18863
18864 2001-11-23 Akim Demaille <akim@epita.fr>
18865
18866 Attaching lineno to buckets is stupid, since only one copy of each
18867 symbol is kept, only the line of the first occurrence is kept too.
18868
18869 * src/symtab.h, src/symtab.c (bucket): Remove the line member.
18870 * src/reader.c (rline_allocated): Remove, unused.
18871 (symbol_list): Have a `line' member.
18872 (symbol_list_new): New.
18873 (readgram): Use it.
18874 * src/print.c (print_grammar): Output the rule line numbers.
18875 * tests/regression.at (Solved SR Conflicts)
18876 (Unresolved SR Conflicts): Adjust.
18877 Reported by Hans Aberg.
18878
18879 2001-11-22 Marc Autret <autret_m@epita.fr>
18880
18881 * src/bison.simple [YYERROR_VERBOSE]: Force its value to be 1 or 0.
18882
18883 2001-11-22 Marc Autret <autret_m@epita.fr>
18884
18885 * src/muscle_tab.c (muscle_init): Remove initialization of
18886 skeleton muscle.
18887 * src/output.c (output_master_parser): Do it here.
18888
18889 2001-11-20 Akim Demaille <akim@epita.fr>
18890
18891 * po/sv.po: New.
18892 * configure.in (ALL_LINGUAS): Adjust.
18893 * po/POTFILE.in: Remove `nullable.c' and `derives.c' which no
18894 longer contains strings to translate.
18895
18896 2001-11-19 Akim Demaille <akim@epita.fr>
18897
18898 * src/conflicts.c (conflicts_print): Add a missing \n.
18899
18900 2001-11-19 Akim Demaille <akim@epita.fr>
18901
18902 * src/nullable.c (nullable_print): New.
18903 (set_nullable): Call it when tracing.
18904 Better locality of variables.
18905
18906 2001-11-19 Akim Demaille <akim@epita.fr>
18907
18908 * src/print.c (print_actions): Better locality of variables.
18909
18910 2001-11-19 Akim Demaille <akim@epita.fr>
18911
18912 * src/derives.c (print_derives): Fix and enrich.
18913 * src/closure.c (print_fderives): Likewise.
18914
18915 2001-11-19 Akim Demaille <akim@epita.fr>
18916
18917 * src/closure.c (itemsetend): Remove, replaced with...
18918 (itemsetsize): new.
18919
18920 2001-11-19 Akim Demaille <akim@epita.fr>
18921
18922 * src/LR0.c (kernel_end): Remove, replaced with...
18923 (kernel_size): new.
18924
18925 2001-11-19 Akim Demaille <akim@epita.fr>
18926
18927 * src/conflicts.c (set_conflicts): Use arrays instead of pointers
18928 to clarify.
18929
18930 2001-11-19 Akim Demaille <akim@epita.fr>
18931
18932 * src/closure.c (closure): Use arrays instead of pointers to clarify.
18933
18934 2001-11-19 Akim Demaille <akim@epita.fr>
18935
18936 * src/closure.c, src/derives.c, src/nullable.c: Adjust various
18937 trace messages.
18938 * src/LR0.c: Likewise.
18939 (allocate_itemsets): Use arrays instead of pointers to clarify.
18940
18941 2001-11-19 Akim Demaille <akim@epita.fr>
18942
18943 * src/getargs.c (statistics_flag): Replace with...
18944 (trace_flag): New.
18945 (longopts): Accept --trace instead of --statistics.
18946 * src/getargs.h, src/options.c: Adjust.
18947 * src/LR0.c, src/closure.c, src/derives.c, src/nullable.c,
18948 * src/reduce.c: Use trace_flags instead of the CPP conditional TRACE.
18949
18950 2001-11-19 Akim Demaille <akim@epita.fr>
18951
18952 * src/LR0.c (new_itemsets, get_state): Use more arrays and fewer
18953 pointers to clarify the code.
18954 (save_reductions, save_shifts): Factor common parts of alternatives.
18955
18956 2001-11-19 Akim Demaille <akim@epita.fr>
18957
18958 * src/LR0.c (new_state, get_state): Complete TRACE code.
18959 * src/closure.c: Include `reader.h' to get `tags', needed by the
18960 trace code.
18961 Rename the conditional DEBUG as TRACE.
18962 Output consistently TRACEs to stderr, not stdout.
18963 * src/derives.c: Likewise.
18964 * src/reduce.c: (inaccessable_symbols): Using if is better style
18965 than goto.
18966 Use `#if TRACE' instead of `#if 0' for tracing code.
18967
18968 2001-11-19 Akim Demaille <akim@epita.fr>
18969
18970 * src/system.h (LIST_FREE, shortcpy): New.
18971 * src/LR0.c: Use them.
18972 * src/output.c (free_itemsets, free_reductions, free_shifts):
18973 Remove, replaced by LIST_FREE.
18974
18975 2001-11-19 Akim Demaille <akim@epita.fr>
18976
18977 * src/state.h (CORE_ALLOC, SHIFTS_ALLOC, ERRS_ALLOC)
18978 (REDUCTIONS_ALLOC): New.
18979 * src/LR0.c, src/conflicts.c: Use them to de-obfuscate memory
18980 allocation.
18981
18982 2001-11-19 Akim Demaille <akim@epita.fr>
18983
18984 * src/LR0.c (new_state): Complete trace code.
18985 * src/nullable.c (set_nullable): Don't translate traces.
18986
18987 2001-11-19 Akim Demaille <akim@epita.fr>
18988
18989 * src/print_graph.c (print_core): Better locality of variables.
18990 * src/print.c (print_core): Likewise.
18991
18992 2001-11-19 Akim Demaille <akim@epita.fr>
18993
18994 * src/vcg.c: You do the output, so you are responsible of the
18995 handling of VCG syntax, in particular: use quotearg.
18996 * src/print_graph.c: Don't.
18997 (print_actions): Don't output the actions as part of the nodes,
18998 since that's the job of the edges.
18999 (print_state): Don't output by hand: fill the node description,
19000 and ask for its output.
19001
19002 2001-11-19 Akim Demaille <akim@epita.fr>
19003
19004 * src/bison.simple (yyparse): When verbosely reporting an error,
19005 no longer put additional quotes around token names.
19006 * tests/calc.at: Adjust.
19007
19008 2001-11-19 Akim Demaille <akim@epita.fr>
19009
19010 * src/symtab.h, src/symtab.c: `line' is a new member of `bucket'.
19011 * src/reader.c (record_rule_lines, rline, rline_allocated): Remove.
19012 * src/output.c: Adjust.
19013
19014 2001-11-19 Akim Demaille <akim@epita.fr>
19015
19016 * src/gram.h (rprec, rprecsym, rassoc): Remove, now part of...
19017 (rule_t): this.
19018 * src/conflicts.c, src/reader.c, src/reduce.c: Adjust.
19019
19020 2001-11-19 Akim Demaille <akim@epita.fr>
19021
19022 * src/gram.h (rule_t): New.
19023 (rule_table): New.
19024 (rrhs, rlhs): Remove, part of state_t.
19025 * src/print_graph.c, src/closure.c, src/conflicts.c, src/derives.c,
19026 * src/lalr.c, src/nullable.c, src/output.c, src/print.c,
19027 * src/reader.c, src/reduce.c: Adjust.
19028
19029 2001-11-19 Akim Demaille <akim@epita.fr>
19030
19031 * src/reader.c (symbols_output): New, extracted from...
19032 (packsymbols): Here.
19033 (reader): Call it.
19034
19035 2001-11-19 Akim Demaille <akim@epita.fr>
19036
19037 * src/lalr.c (set_maxrhs, maxrhs): Remove, replaced with...
19038 (maxrhs): this new function.
19039
19040 2001-11-19 Akim Demaille <akim@epita.fr>
19041
19042 * src/lalr.c (F): New macro to access the variable F.
19043 Adjust.
19044
19045 2001-11-19 Akim Demaille <akim@epita.fr>
19046
19047 * src/lalr.h (LA): New macro to access the variable LA.
19048 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
19049 * src/lalr.c: Adjust.
19050
19051 2001-11-19 Akim Demaille <akim@epita.fr>
19052
19053 * src/lalr.c (initialize_LA): Only initialize LA. Let...
19054 (set_state_table): handle the `lookaheads' members.
19055
19056 2001-11-19 Akim Demaille <akim@epita.fr>
19057
19058 * src/lalr.h (lookaheads): Removed array, whose contents is now
19059 a member of...
19060 (state_t): this structure.
19061 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
19062 Adjust.
19063
19064 2001-11-19 Akim Demaille <akim@epita.fr>
19065
19066 * src/lalr.h (consistent): Removed array, whose contents is now
19067 a member of...
19068 (state_t): this structure.
19069 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
19070 Adjust.
19071
19072 2001-11-19 Akim Demaille <akim@epita.fr>
19073
19074 * src/lalr.h (reduction_table, shift_table): Removed arrays, whose
19075 contents are now members of...
19076 (state_t): this structure.
19077 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
19078 Adjust.
19079
19080 2001-11-19 Akim Demaille <akim@epita.fr>
19081
19082 * src/lalr.h (state_t): New.
19083 (state_table): Be a state_t * instead of a core **.
19084 (accessing_symbol): Remove, part of state_t.
19085 * src/lalr.c: Adjust.
19086 (set_accessing_symbol): Merge into...
19087 (set_state_table): this.
19088 * src/print_graph.c, src/conflicts.c: Adjust.
19089
19090 2001-11-14 Akim Demaille <akim@epita.fr>
19091
19092 * tests/calc.at, tests/output.at, tests/regression.at,
19093 * tests/testsuite.at, tests/torture.at: Rely on Autotest 2.52g:
19094 now the tests are run in private dirs, therefore AC_CLEANUP and
19095 family can be simplified to 0-ary.
19096 * tests/atlocal.in: Now that we run `elsewhere' than in tests/,
19097 use abs. path to find config.h.
19098 * tests/calc.at (AT_CHECK_CALC): Don't try to check the compiler's
19099 stderr, there can be way too much random noise.
19100 Instead pass -Werror to GCC and rely on the exit status.
19101 Reported by Wolfram Wagner.
19102
19103 2001-11-14 Akim Demaille <akim@epita.fr>
19104
19105 * src/bison.simple (yyparse): Let yyls1, yyss1 and yyvs1 be
19106 defined only if yyoverflow is defined, to avoid `warning: unused
19107 variable `yyvs1''.
19108 Reported by The Test Suite.
19109
19110 2001-11-14 Akim Demaille <akim@epita.fr>
19111
19112 * src/print.c: Include reduce.h.
19113 Reported by Hans Aberg.
19114
19115 2001-11-14 Akim Demaille <akim@epita.fr>
19116
19117 * src/lex.c, src/lex.h (token_buffer, unlexed_token_buffer):
19118 Revert a previous patch: these are really const.
19119 * src/conflicts.c (conflict_report): Additional useless pair of
19120 braces to pacify GCC's warnings for `if () if () {} else {}'.
19121 * src/lex.c (parse_percent_token): Replace equal_offset with
19122 arg_offset.
19123 arg is const.
19124 Be sure to strdup `arg' when used, since there is no reason for
19125 token_buffer not to change.
19126
19127 2001-11-14 Akim Demaille <akim@epita.fr>
19128
19129 * src/system.h (EXIT_SUCCESS, EXIT_FAILURE): Ensure a proper
19130 definition.
19131 * src/main.c (main): Use them.
19132 Suggested by Hans Aberg.
19133
19134 2001-11-12 Akim Demaille <akim@epita.fr>
19135
19136 * src/system.h (ngettext): Now that we use ngettext, be sure to
19137 provide a default definition when NLS are not used.
19138
19139 2001-11-12 Akim Demaille <akim@epita.fr>
19140
19141 * doc/bison.texinfo: Use `$' as shell prompt, not `%'.
19142 Use @kbd to denote user input.
19143 (Language and Grammar): ANSIfy the example.
19144 Adjust its layout for info/notinfo.
19145 (Location Tracking Calc): Output error messages to stderr.
19146 Output locations in a more GNUtically correct way.
19147 Fix a couple of Englishos.
19148 Adjust @group/@end group pairs.
19149
19150 2001-11-12 Akim Demaille <akim@epita.fr>
19151
19152 %expect was not functioning at all.
19153
19154 * src/conflicts.c (expected_conflicts): Set to -1.
19155 (conflict_report): Use ngettext.
19156 (conflicts_print): Check %expect and make its violation an error.
19157 * doc/bison.texinfo (Expect Decl): Adjust.
19158 * configure.in (AM_GNU_GETTEXT): Ask for ngettext.
19159 * tests/regression.at (%expect not enough, %expect right)
19160 (%expect too much): New.
19161
19162 2001-11-12 Akim Demaille <akim@epita.fr>
19163
19164 * tests/regression.at (Conflicts): Rename as...
19165 (Unresolved SR Conflicts): this.
19166 (Solved SR Conflicts): New.
19167
19168 2001-11-12 Akim Demaille <akim@epita.fr>
19169
19170 * src/reduce.c (print_results): Rename as...
19171 (reduce_output): This.
19172 Output to OUT, passed as argument, instead of output_obstack.
19173 (dump_grammar): Likewise.
19174 (reduce_free): New.
19175 Also free V1.
19176 (reduce_grammar): No longer call reduce_output, since...
19177 * src/print.c (print_results): do it.
19178 * src/main.c (main): Call reduce_free;
19179
19180 2001-11-12 Akim Demaille <akim@epita.fr>
19181
19182 * src/conflicts.c (print_reductions): Accept OUT as argument.
19183 Output to it, not to output_obstack.
19184 * src/print.c (print_actions): Adjust.
19185
19186 2001-11-12 Akim Demaille <akim@epita.fr>
19187
19188 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts): Return
19189 the result instead of using...
19190 (src_total, rrc_total, src_count, rrc_count): Remove.
19191 (any_conflicts): Remove.
19192 (print_conflicts): Split into...
19193 (conflicts_print, conflicts_output): New.
19194 * src/conflicts.h: Adjust.
19195 * src/main.c (main): Invoke both conflicts_output and conflicts_print.
19196 * src/print.c (print_grammar): Issue `\n' between two rules.
19197 * tests/regression.at (Conflicts): New.
19198 Reported by Tom Lane.
19199
19200 2001-11-12 Akim Demaille <akim@epita.fr>
19201
19202 * tests/regression.at (Invalid input): Remove, duplicate with
19203 ``Invalid input: 1''.
19204
19205 2001-11-12 Akim Demaille <akim@epita.fr>
19206
19207 * tests/torture.at (AT_DATA_STACK_TORTURE)
19208 (Exploding the Stack Size with Alloca)
19209 (Exploding the Stack Size with Malloc): New.
19210
19211 2001-11-12 Akim Demaille <akim@epita.fr>
19212
19213 * src/bison.simple (YYSTACK_REALLOC): New.
19214 (yyparse) [!yyoverflow]: Use it and free the old stack.
19215 Reported by Per Allansson.
19216
19217 2001-11-12 Pascal Bart <pascal.bart@epita.fr>
19218
19219 * src/bison.simple: Define type yystype instead of YYSTYPE, and
19220 define CPP macro, which substitute YYSTYPE by yystype.
19221 * src/reader.c (parse_union_decl): Output yystype/YYSTYPE as we do
19222 with yyltype/YYLTYPE. This allows inclusion of the generated
19223 header within the parser if the compiler, such as GGC, accepts
19224 multiple equivalent #defines.
19225 From Akim.
19226
19227 2001-11-05 Akim Demaille <akim@epita.fr>
19228
19229 * src/reader.c (symbols_output): New, extracted from...
19230 (packsymbols): here.
19231 (reader): Adjust.
19232
19233 2001-11-05 Akim Demaille <akim@epita.fr>
19234
19235 * src/lex.c (parse_percent_token): s/quotearg/quote/.
19236
19237 2001-11-05 Akim Demaille <akim@epita.fr>
19238
19239 * tests/regression.at (AT_TEST_CPP_GUARD_H): Adjust the clean up
19240 pattern.
19241
19242 2001-11-05 Akim Demaille <akim@epita.fr>
19243
19244 * src/options.h (struct option_table_struct): set_flags is void*.
19245 * src/options.c (longopts): Support `--output' and `%output'.
19246 (usage): Adjust.
19247 * src/lex.h (tok_setopt): Remove, replaced with...
19248 (tok_intopt, tok_stropt): these new guys.
19249 * src/lex.c (getopt.h): Not needed.
19250 (token_buffer, unlexed_token_buffer): Not const.
19251 (percent_table): Promote `-' over `_' in directive names.
19252 Active `%name-prefix', `file-prefix', and `output'.
19253 (parse_percent_token): Accept possible arguments to directives.
19254 Promote `-' over `_' in directive names.
19255
19256 2001-11-04 Akim Demaille <akim@epita.fr>
19257
19258 * doc/bison.texinfo (Decl Summary): Split the list into
19259 `directives for grammars' and `directives for bison'.
19260 Sort'em.
19261 Add description of `%name-prefix', `file-prefix', and `output'.
19262 Promote `-' over `_' in directive names.
19263 (Bison Options): s/%locactions/%locations/. Nice Freudian slip.
19264 Simplify the description of `--name-prefix'.
19265 Promote `-' over `_' in directive names.
19266 Promote `--output' over `--output-file'.
19267 Fix the description of `--defines'.
19268 * tests/output.at: Exercise %file-prefix and %output.
19269
19270 2001-11-02 Akim Demaille <akim@epita.fr>
19271
19272 * doc/refcard.tex: Update.
19273
19274 2001-11-02 Akim Demaille <akim@epita.fr>
19275
19276 * src/symtab.h (SUNDEF): New.
19277 * src/symtab.c (bucket_new): Init user_token_number to SUNDEF to
19278 stand for `uninitialized', instead of 0.
19279 * src/reader.c (packsymbols, parse_thong_decl): Adjust.
19280 * src/lex.c (lex): Adjust.
19281
19282 * tests/calc.at (_AT_DATA_CALC_Y): Declare a token for EOF.
19283 Number it 0.
19284 Let yylex return it instead of a plain 0.
19285 Reported by Dick Streefland.
19286
19287 2001-11-02 Akim Demaille <akim@epita.fr>
19288
19289 * tests/regression.at (Mixing %token styles): New test.
19290
19291 2001-11-02 Akim Demaille <akim@epita.fr>
19292
19293 * src/reader.c (parse_thong_decl): Formatting changes.
19294 (token_translations_init): New, extracted from...
19295 (packsymbols): Here.
19296 Adjust.
19297
19298 2001-11-01 Akim Demaille <akim@epita.fr>
19299
19300 * tests/regression.at (AT_TEST_CPP_GUARD_H): New.
19301 Check that `9foo.y' produces correct cpp guards.
19302 * src/files.c (compute_header_macro): Prepend `BISON_' to CPP
19303 guards.
19304 Reported by Wwp.
19305
19306 2001-11-01 Akim Demaille <akim@epita.fr>
19307
19308 * tests/regression.at (Invalid input: 2): New.
19309 * src/lex.c (unlexed_token_buffer): New.
19310 (lex, unlex): Adjust: when unlexing, be sure to save token_buffer
19311 too.
19312 Reported by Wwp.
19313
19314 2001-11-01 Akim Demaille <akim@epita.fr>
19315
19316 * tests/calc.at: Catch up with 1.30.
19317 * configure.in: Bump to 1.49a.
19318 Adjust to newer Autotest.
19319
19320 2001-10-19 Pascal Bart <pascal.bart@epita.fr>
19321
19322 * src/conflicts.c: Move global variables rrc_total and src_total ...
19323 (print_conflicts): here.
19324 * src/output.c (output): Free global variable user_toknums.
19325 * src/lex.c (token_obstack): Become static.
19326
19327 2001-10-18 Akim Demaille <akim@epita.fr>
19328
19329 * tests/atlocal.in (GCC): Add.
19330 * tests/calc.at: s/m4_match/m4_bmatch/.
19331 s/m4_patsubst/m4_bpatsubst/.
19332 (AT_CHECK_CALC): Check the compiler's stderr only if it's GCC.
19333 * configure.in: AC_SUBST(GCC).
19334
19335 2001-10-14 Marc Autret <autret_m@epita.fr>
19336
19337 * src/options.c (create_long_option_table): Fix.
19338
19339 2001-10-10 Akim Demaille <akim@epita.fr>
19340
19341 * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
19342
19343 2001-10-04 Akim Demaille <akim@epita.fr>
19344
19345 * src/reader.c (parse_union_decl): Push the caracters in
19346 union_obstack, not attrs_obstack.
19347
19348 2001-10-04 Akim Demaille <akim@epita.fr>
19349
19350 Merge in the branch 1.29.
19351
19352 * src/reader.c (packsymbols): Use a temporary obstack for
19353 `%%tokendef', since output_stack is already used elsewhere.
19354
19355 2001-10-02 Akim Demaille <akim@epita.fr>
19356
19357 Bump 1.29d.
19358
19359 2001-10-02 Akim Demaille <akim@epita.fr>
19360
19361 Version 1.29c.
19362
19363 2001-10-02 Akim Demaille <akim@epita.fr>
19364
19365 * tests/regression.at (Invalid CPP headers): New.
19366 From Alexander Belopolsky.
19367 * src/files.c (compute_header_macro): Map non alnum chars to `_'.
19368
19369 2001-10-02 Akim Demaille <akim@epita.fr>
19370
19371 * tests/regression.at (Invalid input): New.
19372 * src/lex.c (lex): Be sure to set `token_buffer' in any case.
19373 Reported by Shura.
19374
19375 2001-10-02 Akim Demaille <akim@epita.fr>
19376
19377 * tests/calc.at: Now that --debug works, the tests must be adjusted.
19378
19379 2001-10-02 Akim Demaille <akim@epita.fr>
19380
19381 * src/output.c (output_parser): Assert `skeleton'.
19382 * src/files.c (skeleton_find): Look harder for skeletons on DOSish
19383 systems.
19384 From Shura.
19385
19386 2001-10-01 Marc Autret <autret_m@epita.fr>
19387
19388 * src/lex.h: Echo modifications.
19389 * src/lex.c (unlex): Parameter is now token_t.
19390 From Hans Aberg.
19391
19392 2001-10-01 Marc Autret <autret_m@epita.fr>
19393
19394 * src/main.c: Include lex.h.
19395 From Hans Aberg.
19396
19397 2001-09-29 Akim Demaille <akim@epita.fr>
19398
19399 * src/getargs.c (longopts): `--debug' is `-t', not `-d'.
19400
19401 2001-09-28 Akim Demaille <akim@epita.fr>
19402
19403 * tests/testsuite.at: Update to newer Autotest.
19404 * tests/Makefile.am (EXTRA_DIST): bison is not to be shipped.
19405
19406 2001-09-27 Akim Demaille <akim@epita.fr>
19407
19408 Position independent wrapper.
19409
19410 * tests/bison: Remove.
19411 * tests/bison.in: New.
19412 * configure.in: Adjust.
19413
19414 2001-09-27 Paul Eggert <eggert@twinsun.com>
19415
19416 Port quotearg fixes from tar 1.13.24.
19417
19418 * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
19419 tm to be declared.
19420 (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
19421 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
19422
19423 * m4/Makefile.am (EXTRA_DIST): Add mbrtowc.m4.
19424 * m4/mbrtowc.m4: New file.
19425 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit and stddef.h.
19426 Use jm_FUNC_MBRTOWC instead of AC_CHECK_FUNCS(mbrtowc).
19427
19428 2001-09-27 Akim Demaille <akim@epita.fr>
19429
19430 Bump to 1.29c.
19431
19432 2001-09-27 Akim Demaille <akim@epita.fr>
19433
19434 Version 1.29b.
19435
19436 2001-09-25 Akim Demaille <akim@epita.fr>
19437
19438 * src/system.h: Include `xalloc.h'.
19439 Remove it from the C files.
19440 * src/files.c (output_files): Free the obstacks.
19441 * src/lex.c (init_lex): Rename as...
19442 (lex_init): this.
19443 (lex_free): New.
19444 * src/main.c (main): Use it.
19445
19446 2001-09-24 Marc Autret <autret_m@epita.fr>
19447
19448 * src/vcg.c (open_edge, close_edge, open_node, close_node): Change
19449 to output informations in fout (FILE*).
19450 (open_graph, close_graph): Likewise.
19451 (output_graph, output_edge, output_node): Likewise.
19452 * src/vcg.h: Update function prototypes.
19453 * src/print_graph.c (print_graph): Open output graph file.
19454 (print_actions): Adjust.
19455 * src/files.h: Remove extern declaration.
19456 * src/files.c: Remove graph_obstack declaration.
19457 (open_files): Remove graph_obstack initialization.
19458 (output_files): Remove graph_obstack saving.
19459
19460 2001-09-24 Marc Autret <autret_m@epita.fr>
19461
19462 * src/files.c (compute_output_file_names): Fix.
19463
19464 2001-09-24 Marc Autret <autret_m@epita.fr>,
19465 Akim Demaille <akim@epita.fr>
19466
19467 * src/reader.c (reader): Remove call to free_symtab ().
19468 * src/main.c (main): Call it here.
19469 Include symtab.h.
19470 * src/conflicts.c (initialize_conflicts): Rename as...
19471 (solve_conflicts): this.
19472 * src/print.c (print_core, print_actions, print_state)
19473 (print_grammar): Dump to a file instead a `output_obstack'.
19474 (print_results): Dump `output_obstack', and then proceed with the
19475 FILE *.
19476 * src/files.c (compute_output_file_names, close_files): New.
19477 (output_files): Adjust.
19478 * src/main.c (main): Adjust.
19479
19480 2001-09-23 Marc Autret <autret_m@epita.fr>
19481
19482 * src/files.c (compute_header_macro): Computes header macro name
19483 from spec_defines_file when given.
19484
19485 2001-09-23 Marc Autret <autret_m@epita.fr>
19486
19487 * src/files.c (output_files): Add default extensions.
19488
19489 2001-09-22 Akim Demaille <akim@epita.fr>
19490
19491 * src/conflicts.c (finalize_conflicts): Rename as...
19492 (free_conflicts): this.
19493
19494 2001-09-22 Akim Demaille <akim@epita.fr>
19495
19496 * src/gram.c (gram_free): Rename back as...
19497 (dummy): this.
19498 (output_token_translations): Free `token_translations'.
19499 * src/symtab.c (free_symtab): Free the tag field.
19500
19501 2001-09-22 Akim Demaille <akim@epita.fr>
19502
19503 Remove `translations' as it is always set to true.
19504
19505 * src/gram.h: Adjust.
19506 * src/reader.c (packsymbols, parse_token_decl): Adjust
19507 * src/print.c (print_grammar): Adjust.
19508 * src/output.c (output_token_translations): Adjust.
19509 * src/lex.c (lex): Adjust.
19510 * src/gram.c: Be sure the set pointers to NULL.
19511 (dummy): Rename as...
19512 (gram_free): this.
19513
19514 2001-09-22 Akim Demaille <akim@epita.fr>
19515
19516 * configure.in: Invoke AM_LIB_DMALLOC.
19517 * src/system.h: Use dmalloc.
19518 * src/LR0.c: Be sure to have pointers initialized to NULL.
19519 (allocate_itemsets): Allocate kernel_items only if needed.
19520
19521 2001-09-22 Akim Demaille <akim@epita.fr>
19522
19523 * configure.in: Bump to 1.29b.
19524 * tests/Makefile.am (DISTCLEANFILES): Add package.m4.
19525 * tests/calc.at (_AT_DATA_CALC_Y): #undef malloc so that we don't
19526 need xmalloc.c in calc.y.
19527 From Pascal Bart.
19528
19529 2001-09-21 Akim Demaille <akim@epita.fr>
19530
19531 Version 1.29a.
19532 * Makefile.maint, config/config.guess, config/config.sub,
19533 * config/missing: Update from masters.
19534 * tests/Makefile.am ($(srcdir)/$(TESTSUITE)): No longer depend
19535 upon package.m4.
19536 * configure.in (ALL_LINGUAS): Add `tr'.
19537
19538 2001-09-21 Akim Demaille <akim@epita.fr>
19539
19540 * tests/Makefile.am (package.m4): Move to...
19541 ($(srcdir)/$(TESTSUITE)): here.
19542
19543 2001-09-20 Akim Demaille <akim@epita.fr>
19544
19545 * src/complain.c: No longer try to be standalone: use system.h.
19546 Don't assume __STDC__ is defined to 1. Just test if it is defined.
19547 * src/complain.h: Likewise.
19548 * src/reduce.c (useless_nonterminals, inaccessable_symbols):
19549 Remove the unused variable `n'.
19550 From Albert Chin-A-Young.
19551
19552 2001-09-18 Marc Autret <autret_m@epita.fr>
19553
19554 * doc/bison.1: Update.
19555 * doc/bison.texinfo (Bison Options): Update --defines and --graph
19556 descriptions.
19557 (Option Cross Key): Update.
19558 Add --graph.
19559
19560 2001-09-18 Marc Autret <autret_m@epita.fr>
19561
19562 * tests/regression.at: New test (comment in %union).
19563
19564 2001-09-18 Marc Autret <autret_m@epita.fr>
19565
19566 * src/reader.c (parse_union_decl): Do not output '/'. Let copy_comment
19567 do that.
19568 Reported by Keith Browne.
19569
19570 2001-09-18 Marc Autret <autret_m@epita.fr>
19571
19572 * tests/output.at: Add tests for --defines and --graph.
19573
19574 2001-09-18 Marc Autret <autret_m@epita.fr>
19575
19576 * tests/output.at: Removes tests of %{header,src}_extension features.
19577
19578 2001-09-18 Akim Demaille <akim@epita.fr>
19579
19580 * tests/Makefile.am (package.m4): New.
19581 * tests/calc.at (_AT_CHECK_CALC): Just run `calc input'.
19582 (_AT_CHECK_CALC_ERROR): Likewise.
19583 Factor the `, ' part of verbose error messages.
19584
19585 2001-09-18 Marc Autret <autret_m@epita.fr>
19586
19587 * src/getargs.c (longopts): Declare --defines and --graph as options
19588 with optional arguments.
19589 * src/files.h: Add extern declarations.
19590 * src/files.c (spec_graph_file, spec_defines_file): New.
19591 (output_files): Update.
19592 Remove CPP-outed code.
19593
19594 2001-09-18 Marc Autret <autret_m@epita.fr>
19595
19596 Turn off %{source,header}_extension feature.
19597
19598 * src/files.c (compute_exts_from_gf): Update.
19599 (compute_exts_from_src): Update.
19600 (output_files): CPP-out useless code.
19601 * src/files.h: Remove {header,source}_extension extern declarations.
19602 * src/reader.c (parse_dquoted_param): CPP-out.
19603 (parse_header_extension_decl): Remove.
19604 (parse_source_extension_decl): Remove.
19605 (read_declarations): Remove cases tok_{hdrext,srcext}.
19606 * src/lex.c (percent_table): Remove {header,source}_extension entries.
19607 * src/lex.h (token_t): Remove tok_hdrext and tok_srcext.
19608
19609 2001-09-10 Akim Demaille <akim@epita.fr>
19610
19611 * tests/output.at (AT_CHECK_BISON_FLAGS, AT_CHECK_BISON_PERCENT):
19612 (AT_CHECK_BISON_PERCENT_FLAGS): Merge into...
19613 (AT_CHECK_OUTPUT): this.
19614 Merely check ls' exit status, its output is useless.
19615
19616 2001-09-10 Akim Demaille <akim@epita.fr>
19617
19618 * tests/calc.at: Use m4_match.
19619 (_AT_DATA_CALC_Y): Check `yyin != NULL', not `stdin != NULL'.
19620
19621 2001-09-10 Marc Autret <autret_m@epita.fr>,
19622 Akim Demaille <akim@epita.fr>
19623
19624 * src/vcg.h (graph_s): color, textcolor, bordercolor are now
19625 enum color_e.
19626 * src/print_graph.c (print_graph): Initalize graph.layoutalgorithm
19627 to `normal'.
19628 * src/reader.c (parse_token_decl): Initialize token with tok_eof.
19629 * src/lex.h: Adjust prototype.
19630 (token_t): Add `tok_undef'.
19631 * src/lex.c (struct percent_table_struct): Retval is now a token_t.
19632 (parse_percent_token): Now returns token_t.
19633 Add default statement in switch.
19634 (lex): Separate `c' as an input variable, from the token_t result
19635 part.
19636 (unlexed): Is a token_t.
19637
19638 2001-09-10 Akim Demaille <akim@epita.fr>
19639
19640 * configure.in: Bump to 1.29a.
19641
19642 2001-09-07 Akim Demaille <akim@epita.fr>
19643
19644 Version 1.29.
19645
19646 2001-08-30 Akim Demaille <akim@epita.fr>
19647
19648 * tests/atgeneral.m4, tests/atconfig.in, tests/suite.at: Remove.
19649 * m4/atconfig.m4: Remove.
19650 * tests/testsuite.at, tests/atlocal.in, tests/output.at,
19651 * tests/bison: New.
19652 * tests/regression.at, tests/calc.at: Use m4_define, AT_BANNER,
19653 m4_if, m4_patsubst, and m4_regexp.
19654 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Use an
19655 `input' file instead of echo.
19656
19657 2001-08-29 Akim Demaille <akim@epita.fr>
19658
19659 Bump to 1.28e.
19660
19661 2001-08-29 Akim Demaille <akim@epita.fr>
19662
19663 Version 1.28d.
19664
19665 2001-08-29 Paul Eggert <eggert@twinsun.com>
19666
19667 * src/bison.simple (yyparse): Don't take the address of an
19668 item before the start of an array, as that doesn't conform to
19669 the C Standard.
19670
19671 2001-08-29 Robert Anisko <anisko_r@epita.fr>
19672
19673 * doc/bison.texinfo (Location Tracking Calc): New node.
19674
19675 2001-08-29 Paul Eggert <eggert@twinsun.com>
19676
19677 * src/output.c (output): Do not define const, as this now
19678 causes more problems than it cures.
19679
19680 2001-08-29 Akim Demaille <akim@epita.fr>
19681
19682 * doc/bison.texinfo: Modernize `@node' and `@top' use: just name
19683 the nodes.
19684 Be sure to tag the `detailmenu'.
19685
19686 2001-08-29 Akim Demaille <akim@epita.fr>
19687
19688 * Makefile.maint (do-po-update): Wget refuses to overwrite files:
19689 download in a tmp dir.
19690
19691 2001-08-28 Marc Autret <autret_m@epita.fr>
19692
19693 * config/depcomp: New file.
19694
19695 2001-08-28 Marc Autret <autret_m@epita.fr>
19696
19697 * doc/bison.1 (mandoc): Adjust.
19698 From Juan Manuel Guerrero.
19699
19700 2001-08-28 Marc Autret <autret_m@epita.fr>
19701
19702 * src/print_graph.c (print_state): Fix.
19703
19704 2001-08-27 Marc Autret <autret_m@epita.fr>
19705
19706 * src/vcg.h (classname_s, infoname_s, node_s): Constify the
19707 char * members.
19708 Echo modifications to the functions prototypes.
19709 * src/vcg.c (add_classname, add_infoname): Adjust arguments.
19710
19711 2001-08-27 Marc Autret <autret_m@epita.fr>
19712
19713 * src/vcg.c: Include `xalloc.h'.
19714 (add_colorentry): New.
19715 (add_classname): New.
19716 (add_infoname): New.
19717 * src/vcg.h: Add new prototypes.
19718
19719 2001-08-27 Akim Demaille <akim@epita.fr>
19720
19721 * Makefile.maint: Sync. again with CVS Autoconf.
19722
19723 2001-08-27 Akim Demaille <akim@epita.fr>
19724
19725 * Makefile.maint: Formatting changes.
19726 (po-update, cvs-update, update): New targets.
19727 (AMTAR): Remove.
19728
19729 2001-08-27 Akim Demaille <akim@epita.fr>
19730
19731 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
19732 * Makefile.maint: Sync. with CVS Autoconf.
19733
19734 2001-08-27 Marc Autret <autret_m@epita.fr>
19735
19736 * src/vcg.h (struct infoname_s): New.
19737 (struct colorentry_s): New.
19738 (graph_s): New fields {vertical,horizontal}_order in structure.
19739 Add `infoname' field.
19740 Add `colorentry' field;
19741 * src/vcg_defaults.h (G_VERTICAL_ORDER): New.
19742 (G_HORIZONTAL_ORDER): New.
19743 (G_INFONAME): New.
19744 (G_COLORENTRY): New.
19745 * src/vcg.c (output_graph): Add output of {vertical,horizontal}_order.
19746 Add output of `infoname'.
19747 Add output of `colorentry'.
19748
19749 2001-08-27 Marc Autret <autret_m@epita.fr>
19750
19751 * src/reader.c (parse_dquoted_param): Rename variable `index' to `i'.
19752 This one shadowed a global parameter.
19753
19754 2001-08-24 Marc Autret <autret_m@epita.fr>
19755
19756 * src/print_graph.c (node_output_size): Declared POSIX `size_t' type,
19757 instead of `unsigned'.
19758 (print_state): Do not call obstack_object_size () in obstack_grow ()
19759 to avoid macro variables shadowing.
19760
19761 2001-08-23 Marc Autret <autret_m@epita.fr>
19762
19763 * src/lex.c (percent_table): Typo: s/naem/name/.
19764 Add graph option.
19765 Normalize new options declarations.
19766
19767 2001-08-20 Pascal Bart <pascal.bart@epita.fr>
19768
19769 * tests/suite.at: Exercise %header_extension and %source_extension.
19770
19771 2001-08-16 Marc Autret <autret_m@epita.fr>
19772
19773 * src/reader.c (parse_dquoted_param): New.
19774 (parse_header_extension_decl): Use it.
19775 (parse_source_extension_decl): Likewise.
19776
19777 2001-08-16 Marc Autret <autret_m@epita.fr>
19778
19779 * src/vcg.c: Remove includes of `complain.h' and `xalloc.h'.
19780 (get_xxxx_str): Use assert () instead of complain ().
19781 Remove return invokations in default cases.
19782 (get_decision_str): Modify default behaviour. Remove second argument.
19783 Echo modifications on calls.
19784 (output_graph): Fix.
19785
19786 2001-08-16 Marc Autret <autret_m@epita.fr>
19787
19788 * src/getargs.c (usage): Update with ``-g, --graph''.
19789
19790 2001-08-16 Marc Autret <autret_m@epita.fr>
19791
19792 * doc/bison.texinfo (Bison Options): Add items `-g', `--graph'.
19793 (Option Cross Key): Likewise.
19794 * doc/bison.1: Update.
19795
19796 2001-09-25 Pascal Bart <pascal.bart@epita.fr>
19797
19798 * src/output.c (output_master_parser): Don't finish action_obstack.
19799 (output_parser): Don't care about the muscle action, here.
19800 (prepare): Copy the action_obstack in the action muscle.
19801 (output): Free action_obstack.
19802
19803 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
19804
19805 * src/reader.c (parse_union_decl): Add new obstack union_obstack. Which
19806 will contain `%union' declaration.
19807 (parse_union_decl): Delete #line directive output.
19808 (parse_union_decl): Substitute /attrs_obstack/union_obstack for all
19809 informations about %union.
19810 (parse_union_decl): Copy the union_obstack in the muscle stype.
19811 * src/bison.simple: Add new #line directive.
19812 Add typdef %%stype YYSTYPE.
19813
19814 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
19815
19816 * src/bison.simple: Add new `#line' directive.
19817
19818 2001-09-22 Pascal Bart <pascal.bart@epita.fr>
19819
19820 * src/bison.simple: New `#line' directive.
19821 * src/output.c (output_parser): Support new dynamic muscle input_line.
19822
19823 2001-09-22 Marc Autret <autret_m@epita.fr>
19824
19825 * src/output.c (output_master_parser): New.
19826 (output_parser): Be more re-entrant.
19827
19828 2001-09-21 Marc Autret <autret_m@epita.fr>
19829
19830 * src/reader.c (copy_definition, parse_union_decl): Update and use
19831 `linef' muscle.
19832 (copy_action): Likewise.
19833 Use obstack_1grow ().
19834 * src/muscle_tab.c (muscle_init): Add muscle `linef'.
19835
19836 2001-09-21 Marc Autret <autret_m@epita.fr>
19837
19838 * src/options.c (option_table): Adjust.
19839 * src/lex.c (parse_percent_token): Fix.
19840
19841 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
19842
19843 * src/options.c (symtab.h): Include it, need by lex.h.
19844
19845 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
19846
19847 * src/lex.c (parse_percent_token): Change type of variable `tx', which
19848 is now an option_table_struct*.
19849 (option_strcmp): New function option_strcmp.
19850 (parse_percent_token): Call option_strcmp.
19851 * src/getargs.c (xalloc.h, options.h): Include it.
19852 (getargs): Call create_long_option_table.
19853 (getargs): Free longopts at the end of the function.
19854 (shortopts): Move in options.c.
19855 * src/options.c (create_long_option_table): New function. Convert
19856 information from option_table to option structure.
19857 * src/reader.c (options.h): Include it.
19858
19859 * src/Makefile.am: Adjust.
19860 * src/options.c (option_table): Create from longopts and percent_table.
19861 * src/getargs.c (longopts): Delete.
19862 * src/lex.c (struct percent_table_struct): Delete.
19863 (percent_table): Delete.
19864 (options.h): Include it.
19865 * src/options.c: Create.
19866 * src/options.h: Create.
19867 Declare enum opt_access_e.
19868 Define struct option_table_struct.
19869
19870 2001-09-20 Marc Autret <autret_m@epita.fr>
19871
19872 * doc/bison.texinfo: Adjust terminologies about prologue and epilogue
19873 sections of Bison.
19874
19875 2001-09-19 Pascal Bart <pascal.bart@epita.fr>
19876
19877 * src/bison.simple: s/%%filename/%%skeleton.
19878 * src/muscle_tab.c (getargs.h): Include it.
19879 (muscle_init): Insert new muscle skeleton.
19880
19881 2001-09-18 Pascal Bart <pascal.bart@epita.fr>
19882
19883 * src/output.c (output_parser): Delete unused variable actions_dumped.
19884
19885 2001-09-07 Pascal Bart <pascal.bart@epita.fr>
19886
19887 * src/output.c (output): Delete call to reader_output_yylsp.
19888 * src/reader.c (reader): Likewise.
19889 * src/reader.h: Delete declaration of reader_output_yylsp.
19890
19891 2001-09-02 Marc Autret <autret_m@epita.fr>
19892
19893 * src/reader.c: Include muscle_tab.h.
19894 (parse_union_decl): Update.
19895 (parse_macro_decl): Rename parse_muscle_decl.
19896 Update to use renamed functions and variable.
19897 (read_declarations, copy_action, read_additionnal_code, : Updated
19898 with correct variables and functions names.
19899 (packsymbols, reader): Likewise.
19900
19901 * src/reader.h (muscle_obstack): Extern declaration update.
19902
19903 * src/output.c: Include muscle_tab.h
19904 In all functions using macro_insert, change by using muscle_insert ().
19905 (macro_obstack): Rename muscle_obstack.
19906 Echo modifications in the whole file.
19907 (MACRO_INSERT_INT): Rename MUSCLE_INSERT_INT.
19908 (MACRO_INSERT_STRING): Rename MUSCLE_INSERT_STRING.
19909 (MACRO_INSERT_PREFIX): Rename MUSCLE_INSERT_PREFIX.
19910
19911 * src/muscle_tab.h: Update double inclusion macros.
19912 (macro_entry_s): Rename muscle_entry_s.
19913 Update prototypes.
19914
19915 * src/muscle_tab.c: Include muscle_tab.h.
19916 Rename macro_tabble to muscle_table.
19917 (mhash1, mhash2, mcmp): Use muscle_entry.
19918 (macro_init): Rename muscle_init. Update.
19919 (macro_insert): Rename muscle_insert. Update.
19920 (macro_find): Rename muscle_find. Update.
19921
19922 * src/main.c: Include muscle_tab.h.
19923 (main): Call muscle_init ().
19924 * src/Makefile.am (bison_SOURCES): Echo modifications.
19925
19926 2001-09-02 Marc Autret <autret_m@epita.fr>
19927
19928 Now the files macro_tab.[ch] are named muscle_tab.[ch].
19929
19930 * src/muscle_tab.c, src/muscle_tab.h: Add files.
19931
19932 2001-09-02 Marc Autret <autret_m@epita.fr>
19933
19934 * src/macrotab.c, src/macrotab.h: Remove.
19935
19936 2001-09-01 Pascal Bart <pascal.bart@epita.fr>
19937
19938 * src/reader.c (copy_guard): Use muscle to specify the `#line'
19939 filename.
19940
19941 2001-09-01 Marc Autret <autret_m@epita.fr>
19942
19943 * tests/calc.at (exp): Now, YYERROR_VERBOSE need to be set
19944 to an explicit value to activate the feature. We do it here.
19945
19946 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
19947
19948 * src/output.c (prepare): Delete the `filename' muscule insertion.
19949 * src/reader.c (copy_action): Use `filename' muscule with `#line'.
19950 (parse_union_decl): Likewise.
19951 * src/macrotab.c (macro_init): Initialize filename by infile.
19952
19953 2001-08-31 Marc Autret <autret_m@epita.fr>
19954
19955 * src/bison.simple (YYLSP_NEEDED): New definition.
19956 * src/output.c (prepare): Add macro insertion of `locations_flag'
19957
19958 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
19959
19960 * src/output.c (prepare): Delete insertion of previous muscles,
19961 and insert the `prefix' muscles.
19962 * src/macrotab.c (macro_init): Likewise.
19963 (macro_init): Initialization prefix directive by `yy'.
19964 * src/bison.simple: Substitute all %%yylex, %%yychar, %%yylval,
19965 %%yydebug, %%yyerror, %%yynerrs and %%yyparse by yylex, yychar,
19966 yylval, yydebug, yyerror, yynerrs and yyparse.
19967 New directive `#define' to substitute yydebug, ... with option
19968 name_prefix.
19969
19970 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
19971
19972 * src/main.c (main): Standardize.
19973 * src/output.c (output_table_data, output_parser): Likewise.
19974 * src/macrotab.h, src/macrotab.c, src/bison.simple: Likewise.
19975
19976 2001-08-31 Pascal Bart <pascal.bart@epita.fr>, Marc Autret <autret_m@epita.fr>
19977
19978 * src/reader.c (read_additionnal_code): Rename %%user_code to
19979 %%epilogue.
19980 * src/output.c (output): Rename %%declarations to %%prologue.
19981 * src/bison.simple: Echo modifications.
19982
19983 2001-08-31 Marc Autret <autret_m@epita.fr>
19984
19985 * src/reader.c (readgram): CleanUp.
19986 (output_token_defines): Likewise.
19987 (packsymbols): Likewise.
19988 (reader): Likewise.
19989 * src/output.c (output): CPP-out useless code.
19990
19991 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
19992
19993 * src/reader.c (reader): Delete obsolete call to function
19994 output_trailers and output_headers.
19995 * src/output.h: Remove obsolete functions prototypes of output_headers
19996 and output_trailers.
19997
19998 2001-08-30 Pascal Bart <pascal.bart@epita.fr>
19999
20000 * src/main.c: Include macrotab.h.
20001 * src/macrotab.h (macro_entry_s): Constify fields.
20002 Adjust functions prototypes.
20003 * src/macrotab.c (macro_insert): Constify key and value.
20004 (macro_find): Constify key.
20005 (macro_insert): Include 'xalloc.h'
20006 (macro_insert): Use XMALLOC.
20007 (macro_find): Constify return value.
20008 * src/output.c (output_table_data): Rename table to table_data.
20009 (output_parser): Constify macro_key, macro_value.
20010
20011 2001-08-30 Marc Autret <autret_m@epita.fr>
20012
20013 * src/reader.c (parse_skel_decl): New.
20014 (read_declarations): Add case `tok_skel', call parse_skel_decl ().
20015 * src/lex.h (token_t): New token `tok_skel'.
20016 * src/lex.c (percent_table): Add skeleton option entry.
20017 Standardize.
20018
20019 2001-08-29 Marc Autret <autret_m@epita.fr>
20020
20021 * src/bison.simple: Add %%user_code directive at the end.
20022 * src/reader.c (read_additionnal_code): New.
20023 (reader): Use it.
20024 * src/output.c (output_program): Remove.
20025 (output): Update.
20026
20027 2001-08-28 Marc Autret <autret_m@epita.fr>
20028
20029 * src/output.c (output_actions): Clean up.
20030 (output_gram): CPP-out useless code.
20031 * src/reader.c (reader): Clean up, CPP-out useless code.
20032
20033 2001-08-28 Pascal Bart <pascal.bart@epita.fr>
20034
20035 * src/output.c (output): Copy attrs_obstack in the '%%definitions'
20036 directive.
20037 * src/bison.simple: Add `%%definitions'.
20038
20039 2001-08-28 Marc Autret <autret_m@epita.fr>
20040
20041 * config/depcomp: New file.
20042
20043 2001-08-27 Paul Eggert <eggert@twinsun.com>
20044
20045 * src/bison.simple (yyparse): Don't take the address of an
20046 item before the start of an array, as that doesn't conform to
20047 the C Standard.
20048
20049 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
20050
20051 * src/output.c (output): Remove the initialization of the macro
20052 obstack. It was done too late here.
20053
20054 * src/reader.c (parse_macro_decl): Fix. Use of the macro obstack was
20055 completely wrong.
20056 (reader): Initialize the macro obstack here, since we need it to grow
20057 '%define' directives.
20058
20059 * src/reader.h: Declare the macro obstack as extern.
20060
20061 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
20062
20063 * src/output.c (output_parser): Fix. Store single '%' characters in
20064 the output obstack instead of throwing them away.
20065
20066 2001-08-27 Akim Demaille <akim@epita.fr>
20067
20068 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
20069
20070 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
20071
20072 * lib/Makefile.am: Adjust.
20073
20074 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
20075
20076 * src/bison.simple: Update and add '%%' directives.
20077
20078 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
20079
20080 * src/reader.c (reader): Remove calls to 'output_headers' and
20081 'output_trailers'. Remove some C output.
20082 (readgram): Disable a piece of code that was writing a default
20083 definition for 'YYSTYPE'.
20084 (reader_output_yylsp): Remove.
20085 (packsymbols): Output token defintions to a macro.
20086 (copy_definition): Disable C output.
20087
20088 * src/reader.c (parse_macro_decl): New function used to parse macro
20089 declarations.
20090 (copy_string2): Put the body of copy_string into this new function.
20091 Add a parameter to let the caller choose whether he wants to copy the
20092 string delimiters or not.
20093 (copy_string): Be a simple call to copy_string2 with the last argument
20094 bound to true.
20095 (read_declarations): Add case for macro definition.
20096 (copy_identifier): New.
20097 (parse_macro_decl): Read macro identifiers using copy_identifier
20098 rather than lex.
20099
20100 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
20101
20102 * src/output.c (prepare): Add prefixed names.
20103 (output_parser): Output semantic actions.
20104 (output_parser): Fix bug on '%%line' directives.
20105
20106 * src/output.c (output_headers): Remove. The C code printed by this
20107 function should now be in the skeletons.
20108 (output_trailers): Remove.
20109 (output): Disable call to 'reader_output_yylsp'.
20110 (output_rule_data): Do not output tables to the table obstack.
20111
20112 * src/output.c: Remove some C dedicated output.
20113 Improve the use of macro and output obstacks.
20114 (output_defines): Remove.
20115
20116 * src/output.c (output_token_translations): Associate 'translate'
20117 table with a macro. No output to the table obstack.
20118 (output_gram): Same for 'rhs' and 'prhs'.
20119 (output_stos): Same for 'stos'.
20120 (output_rule_data): Same for 'r1' and 'r2'.
20121 (token_actions): Same for 'defact'.
20122 (goto_actions): Same for 'defgoto'.
20123 (output_base): Same for 'pact' and 'pgoto'.
20124 (output_table): Same for 'table'.
20125 (output_check): Same for 'check'.
20126
20127 * src/output.c (output_table_data): New function.
20128 (output_short_table): Remove.
20129 (output_short_or_char_table): Remove.
20130
20131 * src/output.c (output_parser): Replace most of the skeleton copy code
20132 with something new. Skeletons are now processed character by character
20133 rather than line by line, and Bison looks for '%%' macros. This is the
20134 first step in making Bison's output process (a lot) more flexible.
20135 (output_parser): Use the macro table.
20136
20137 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
20138
20139 * src/main.c (main): Initialize the macro table.
20140
20141 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
20142
20143 * src/lex.c (percent_table): Add tok_define.
20144 * src/lex.h: Add tok_define.
20145
20146 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
20147
20148 * src/macrotab.c: New file.
20149 * src/macrotab.h: New file.
20150 * src/Makefile.am: Update.
20151
20152 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
20153
20154 * lib/hash.c: New file.
20155 * lib/hash.h: New file.
20156 * lib/Makefile.am: Update.
20157
20158 2001-08-15 Akim Demaille <akim@epita.fr>
20159
20160 Version 1.28c.
20161
20162 2001-08-15 Marc Autret <autret_m@epita.fr>
20163
20164 * src/reader.c (readgram): Indent output macro YYSTYPE.
20165 (packsymbols): Likewise.
20166 (output_token_defines): Likewise.
20167 * src/files.c: Standardize.
20168 (compute_header_macro): New.
20169 (defines_obstack_save): New. Use compute_header_macro.
20170 (output_files): Update. Use defines_obstack_save.
20171
20172 2001-08-15 Akim Demaille <akim@epita.fr>
20173
20174 * doc/bison.texinfo (Table of Symbols): Document
20175 YYSTACK_USE_ALLOCA.
20176
20177 2001-08-15 Akim Demaille <akim@epita.fr>
20178
20179 * missing: Update from CVS Automake.
20180 * config/config.guess, config/config.sub, config/texinfo.tex:
20181 Update from gnu.org.
20182
20183 2001-08-15 Akim Demaille <akim@epita.fr>
20184
20185 * Makefile.maint: Sync with CVS Autoconf.
20186
20187 2001-08-14 Pascal Bart <pascal.bart@epita.fr>
20188
20189 * doc/bison.texinfo: Include GNU Free Documentation License from
20190 `fdl.texi'.
20191 * doc/fdl.texi: Add to package.
20192
20193 2001-08-14 Marc Autret <autret_m@epita.fr>
20194
20195 Turn on %{source,header}_extension features.
20196
20197 * src/lex.c (percent_table): Un-CPP out header_extension and
20198 source_extension.
20199 * src/files.c (compute_exts_from_gf): Compare pointers with NULL.
20200 (compute_exts_from_src): Remove conditions. It restores priorities
20201 between options.
20202
20203 2001-08-14 Marc Autret <autret_m@epita.fr>
20204
20205 * src/files.c (compute_base_names): Add extensions computing when
20206 `--file-prefix' used.
20207 Standardize function calls.
20208
20209 2001-08-13 Marc Autret <autret_m@epita.fr>
20210
20211 * src/bison.simple (YYSTACK_USE_ALLOCA): Changed to allow users
20212 defining it (defined but null disables alloca).
20213
20214 2001-08-13 Marc Autret <autret_m@epita.fr>
20215
20216 * src/bison.simple (_yy_memcpy): CPP reformat.
20217
20218 2001-08-13 Pascal Bart <pascal.bart@epita.fr>
20219
20220 * tests/atconfig.in (CPPFLAGS): Fix.
20221
20222 2001-08-10 Pascal Bart <pascal.bart@epita.fr>
20223
20224 * doc/bison.texinfo: Include GNU General Public License from
20225 `gpl.texi'.
20226 * doc/gpl.texi: Add to package.
20227
20228 2001-08-10 Marc Autret <autret_m@epita.fr>
20229
20230 * src/print_graph.h: Fix.
20231 * src/reader.c (read_declarations): Use parse_header_extension_decl ().
20232
20233 2001-08-10 Akim Demaille <akim@epita.fr>
20234
20235 * src/system.h: Provide default declarations for stpcpy, strndup,
20236 and strnlen.
20237
20238 2001-08-10 Robert Anisko <anisko_r@epita.fr>
20239
20240 * doc/bison.texinfo (Locations): Update @$ stuff.
20241
20242 2001-08-09 Robert Anisko <anisko_r@epita.fr>
20243
20244 * src/bison.simple (YYLLOC_DEFAULT): Update.
20245 (yyparse): Adjust.
20246
20247 2001-08-08 Marc Autret <autret_m@epita.fr>
20248
20249 * doc/bison.texinfo: Change @samp{$<@dots{}>} to
20250 @samp{$<@dots{}>@var{n}} in Section Actions in Mid-Rule.
20251 Reported by Fabrice Bauzac.
20252
20253 2001-08-08 Marc Autret <autret_m@epita.fr>
20254
20255 * src/vcg_default.h: Use NULL instead of 0 to initialize pointers.
20256 * src/vcg.c (output_node): Fix.
20257 * src/vcg.h: Cleanup.
20258 * src/print_graph.c: Add comments.
20259 (node_output_size): New global variable. Simplify the formatting of
20260 the VCG graph output.
20261 (print_actions): Unused code is now used. It notifies the final state
20262 and no action states in the VCG graph. It also give the reduce actions.
20263 The `shift and goto' edges are red and the `go to state' edges are
20264 blue.
20265 Get the current node name and node_obstack by argument.
20266 (node_obstack): New variable.
20267 (print_state): Manage node_obstack.
20268 (print_core): Use node_obstack given by argument.
20269 A node is not only computed here but in print_actions also.
20270 (print_graph): CPP out useless code instead of commenting it.
20271
20272 2001-08-07 Pascal Bart <pascal.bart@epita.fr>
20273
20274 * tests/atconfig.in (CPPFLAGS): Fix.
20275
20276 2001-08-07 Akim Demaille <akim@epita.fr>
20277
20278 * src/print_graph.c (quote): New.
20279 (print_core): Use it.
20280
20281 2001-08-06 Akim Demaille <akim@epita.fr>, Marc Autret <autret_m@epita.fr>
20282
20283 * src/vcg.c (complain.h): Include it.
20284 Unepitaize `return' invocations.
20285 [NDEBUG] (main): Remove.
20286 * src/vcg.h (node_t, edge_t, graph_t): Constify the char * members.
20287 * src/files.c (open_files): Initialize graph_obstack.
20288 * src/print_graph.c (print_actions): CPP out useless code.
20289 (print_core): Don't output the last `\n' in labels.
20290 Use `quote'.
20291 * src/files.c (output_files): Output the VCG file.
20292 * src/main.c (main): Invoke print_graph ();
20293
20294 2001-08-06 Marc Autret <autret_m@epita.fr>
20295
20296 Automaton VCG graph output.
20297 Using option ``-g'' or long option ``--graph'', you can generate
20298 a gram_filename.vcg file containing a VCG description of the LALR (1)
20299 automaton of your grammar.
20300
20301 * src/main.c: Call to print_graph() function.
20302 * src/getargs.h: Update.
20303 * src/getargs.c (options): Update to catch `-g' and `--graph' options.
20304 (graph_flag): New flag.
20305 (longopts): Update.
20306 (getargs): Add case `g'.
20307 * src/files.c (graph_obstack): New obstack struct.
20308 (open_files): Initialize new obstack.
20309 (output_files): Saves graph_obstack if required.
20310 * src/files.h (graph_obstack): New extern declaration.
20311 * src/Makefile.am: Add new source files.
20312
20313 2001-08-06 Marc Autret <autret_m@epita.fr>
20314
20315 * src/print_graph.c, src/print_graph.h (graph): New.
20316 * src/vcg.h: New file.
20317 * src/vcg.c: New file, VCG graph handling.
20318
20319 2001-08-06 Marc Autret <autret_m@epita.fr>
20320
20321 Add of %source_extension and %header_extension which specify
20322 the source or/and the header output file extension.
20323
20324 * src/files.c (compute_base_names): Remove initialisation of
20325 src_extension and header_extension.
20326 (compute_exts_from_gf): Update.
20327 (compute_exts_from_src): Update.
20328 (output_files): Update.
20329 * src/reader.c (parse_header_extension_decl): New.
20330 (parse_source_extension_decl): New.
20331 (read_declarations): New case statements for the new tokens.
20332 * src/lex.c (percent_table): Add entries for %source_extension
20333 and %header_extension.
20334 * src/lex.h (token_e): New tokens tok_hdrext and tok_srcext.
20335
20336 2001-08-06 Marc Autret <autret_m@epita.fr>
20337
20338 * configure.in: Bump to 1.28c.
20339 * doc/bison.texinfo: Texinfo thingies.
20340
20341 2001-08-04 Pascal Bart <pascal.bart@epita.fr>
20342
20343 * tests/atconfig.in (CPPFLAGS): Add.
20344 * tests/calc.at (AT_CHECK): Use CPPFLAGS.
20345
20346 2001-08-03 Akim Demaille <akim@epita.fr>
20347
20348 Version 1.28b.
20349
20350 2001-08-03 Akim Demaille <akim@epita.fr>
20351
20352 * tests/Makefile.am (check-local): Ship testsuite.
20353 * tests/calc.at (_AT_DATA_CALC_Y): Prototype all the functions.
20354 Include `string.h'.
20355
20356 2001-08-03 Akim Demaille <akim@epita.fr>
20357
20358 * configure.in: Try using -Wformat when compiling.
20359
20360 2001-08-03 Akim Demaille <akim@epita.fr>
20361
20362 * configure.in: Bump to 1.28b.
20363
20364 2001-08-03 Akim Demaille <akim@epita.fr>
20365
20366 * src/complain.c: Adjust strerror_r portability issues.
20367
20368 2001-08-03 Akim Demaille <akim@epita.fr>
20369
20370 Version 1.28a.
20371
20372 2001-08-03 Akim Demaille <akim@epita.fr>
20373
20374 * src/getargs.c, src/getarg.h (skeleton)): Constify.
20375 * src/lex.c (literalchar): Avoid name clashes on `buf'.
20376 * src/getargs.c: Include complain.h.
20377 * src/files.c, src/files.h (skeleton_find): Avoid name clashes.
20378 * lib/quotearg.c, lib/quotearg.h: Update from fileutils 4.1.
20379
20380 2001-08-03 Akim Demaille <akim@epita.fr>
20381
20382 * src/reader.c (readgram): Display hidden chars in error messages.
20383
20384 2001-08-03 Akim Demaille <akim@epita.fr>
20385
20386 Update to gettext 0.10.39.
20387
20388 2001-08-03 Akim Demaille <akim@epita.fr>
20389
20390 * lib/strspn.c: New.
20391
20392 2001-08-01 Marc Autret <autret_m@epita.fr>
20393
20394 * doc/bison.texinfo: Update.
20395 * doc/bison.1 (mandoc): Update.
20396 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove .c and .h.
20397 * src/files.c: Support output files extensions computing.
20398 (src_extension): New static variable.
20399 (header_extension): New static variable.
20400 (tr): New function.
20401 (get_extension_index): New function, gets the index of an extension
20402 filename in a string.
20403 (compute_exts_from_gf): New function, computes extensions from the
20404 grammar file extension.
20405 (compute_exts_from_src): New functions, computes extensions from the
20406 C source file extension, file given by ``-o'' option.
20407 (compute_base_names): Update.
20408 (output_files): Update.
20409
20410 2001-08-01 Robert Anisko <anisko_r@epita.fr>
20411
20412 * doc/bison.texi: Document @$.
20413 (Locations): New section.
20414
20415 2001-07-18 Akim Demaille <akim@epita.fr>
20416
20417 * Makefile.maint, GNUmakefile: New, from Autoconf 2.52.
20418 * config/prev-version.txt, config/move-if-change: New.
20419 * Makefile.am: Adjust.
20420
20421 2001-07-08 Pascal Bart <pascal.bart@epita.fr>
20422
20423 * src/bison.simple (yyparse): Suppress warning `comparaison
20424 between signed and unsigned'.
20425
20426 2001-07-05 Pascal Bart <pascal.bart@epita.fr>
20427
20428 * src/getargs.h (raw_flag): Remove.
20429 * src/getargs.c: Die on `-r'/`--raw'.
20430 * src/lex.c (parse_percent_token): Die on `%raw'.
20431 * src/reader.c (output_token_defines): Suppress call to `raw_flag'.
20432 * tests/calc.at: Suppress test with option `--raw'.
20433
20434 2001-07-14 Akim Demaille <akim@epita.fr>
20435
20436 * config/: New.
20437 * configure.in: Require Autoconf 2.50.
20438 Update to gettext 0.10.38.
20439
20440 2001-03-16 Akim Demaille <akim@epita.fr>
20441
20442 * doc/bison.texinfo: ANSIfy the examples.
20443
20444 2001-03-16 Akim Demaille <akim@epita.fr>
20445
20446 * getargs.c (skeleton): New variable.
20447 (longopts): --skeleton is a new option.
20448 (shortopts, getargs): -S is a new option.
20449 * getargs.h: Declare skeleton.
20450 * output.c (output_parser): Use it.
20451
20452 2001-03-16 Akim Demaille <akim@epita.fr>
20453
20454 * m4/strerror_r.m4: New.
20455 * m4/error.m4: Run AC_FUNC_STRERROR_R.
20456 * lib/error.h, lib/error.c: Update.
20457
20458 2001-03-16 Akim Demaille <akim@epita.fr>
20459
20460 * src/getargs.c (longopts): Clean up.
20461
20462 2001-02-21 Akim Demaille <akim@epita.fr>
20463
20464 * src/reader.c (gensym): `gensym_count' is your own.
20465 Use a static buf to create the symbol name, as token_buffer is no
20466 longer a buffer.
20467
20468 2001-02-08 Akim Demaille <akim@epita.fr>
20469
20470 * src/conflicts.c (conflict_report): Be sure not to append to res
20471 between two calls, which could happen if both first sprintf were
20472 skipped, but not the first cp += strlen.
20473
20474 2001-02-08 Akim Demaille <akim@epita.fr>
20475
20476 * lib/memchr.c, lib/stpcpy.c, lib/strndup.c, lib/strnlen.c:
20477 New, from fileutils 4.0.37.
20478 * configure.in: Require Autoconf 2.49c. I took some time before
20479 making this decision. This is the only way out for portability
20480 issues in Bison, it would mean way too much duplicate effort to
20481 import in Bison features implemented in 2.49c since 2.13.
20482 AC_REPLACE_FUNCS and AC_CHECK_DECLS the functions above.
20483
20484 2001-02-02 Akim Demaille <akim@epita.fr>
20485
20486 * lib/malloc.c, lib/realloc.c: New, from the fileutils 4.0.37.
20487 * lib/xalloc.h, lib/xmalloc.c: Update.
20488
20489 2001-01-19 Akim Demaille <akim@epita.fr>
20490
20491 Get rid of the ad hoc handling of token_buffer in the scanner: use
20492 the obstacks.
20493
20494 * src/lex.c (token_obstack): New.
20495 (init_lex): Initialize it. No longer call...
20496 (grow_token_buffer): this. Remove it.
20497 Adjust all the places which used it to use the obstack.
20498
20499 2001-01-19 Akim Demaille <akim@epita.fr>
20500
20501 * src/lex.h: Rename all the tokens:
20502 s/\bENDFILE\b/tok_eof/g;
20503 s/\bIDENTIFIER\b/tok_identifier/g;
20504 etc.
20505 Let them be enums, not #define, to ease debugging.
20506 Adjust all the code.
20507
20508 2001-01-18 Akim Demaille <akim@epita.fr>
20509
20510 * src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
20511 * src/lex.c (maxtoken, grow_token_buffer): Static.
20512
20513 2001-01-18 Akim Demaille <akim@epita.fr>
20514
20515 Since we now use obstacks, more % directives can be enabled.
20516
20517 * src/lex.c (percent_table): Also accept `%yacc',
20518 `%fixed_output_files', `%defines', `%no_parser', `%verbose', and
20519 `%debug'.
20520 Handle the actions for `%semantic_parser' and `%pure_parser' here,
20521 instead of returning a token.
20522 * src/lex.h (SEMANTIC_PARSER, PURE_PARSER): Remove, unused.
20523 * src/reader.c (read_declarations): Adjust.
20524 * src/files.c (open_files): Don't call `compute_base_names', don't
20525 compute `attrsfile' since they depend upon data which might be
20526 *in* the input file now.
20527 (output_files): Do it here.
20528 * src/output.c (output_headers): Document the fact that this patch
20529 introduces a guaranteed SEGV for semantic parsers.
20530 * doc/bison.texinfo: Document them.
20531 * tests/suite.at: Exercise these %options.
20532
20533 2000-12-20 Akim Demaille <akim@epita.fr>
20534
20535 Also handle the output file (--verbose) with obstacks.
20536
20537 * files.c (foutput): Remove.
20538 (output_obstack): New.
20539 Adjust all dependencies.
20540 * src/conflicts.c: Return a string.
20541 * src/system.h (obstack_grow_string): Rename as...
20542 (obstack_sgrow): this. Be ready to work with non literals.
20543 (obstack_fgrow4): New.
20544
20545 2000-12-20 Akim Demaille <akim@epita.fr>
20546
20547 * src/files.c (open_files): Fix the computation of short_base_name
20548 in the case of `-o foo.tab.c'.
20549
20550 2000-12-20 Akim Demaille <akim@epita.fr>
20551
20552 * src/reader.c (copy_string, copy_comment, copy_comment2, copy_at)
20553 (copy_dollar): Now that everything uses obstacks, get rid of the
20554 FILE * parameters.
20555
20556 2000-12-20 Akim Demaille <akim@epita.fr>
20557
20558 * src/files.c (open_files): Actually the `.output' file is based
20559 on the short_base_name, not base_name.
20560 * tests/suite.at (Checking output file names): Adjust.
20561
20562 2000-12-20 Akim Demaille <akim@epita.fr>
20563
20564 * src/bison.s1: Remove, we now use directly...
20565 * src/bison.simple: this.
20566 * src/Makefile.am: Use pkgdata instead of data.
20567
20568 2000-12-20 Akim Demaille <akim@epita.fr>
20569
20570 * src/files.c (guard_obstack): New.
20571 (open_files): Initialize it.
20572 (output_files): Dump it...
20573 * src/files.h: Export it.
20574 * src/reader.c (copy_guard): Use it.
20575
20576 2000-12-19 Akim Demaille <akim@epita.fr>
20577
20578 * src/files.c (outfile, defsfile, actfile): Removed as global
20579 vars.
20580 (open_files): Don't compute them.
20581 (output_files): Adjust.
20582 (base_name, short_base_name): Be global.
20583 Adjust dependencies.
20584
20585 2000-12-19 Akim Demaille <akim@epita.fr>
20586
20587 * src/files.c (strsuffix): New.
20588 (stringappend): Be just like strcat but allocate.
20589 (base_names): Eve out from open_files.
20590 Try to simplify the rather hairy computation of base_name and
20591 short_base_name.
20592 (open_files): Use it.
20593 * tests/suite.at (Checking output file names): New test.
20594
20595 2000-12-19 Akim Demaille <akim@epita.fr>
20596
20597 * src/system.h (obstack_grow_literal_string): Rename as...
20598 (obstack_grow_string): this.
20599 * src/output.c (output_parser): Recognize `%% actions' instead of
20600 `$'.
20601 * src/bison.s1: s/$/%% actions/.
20602 * src/bison.hairy: Likewise.
20603
20604 2000-12-19 Akim Demaille <akim@epita.fr>
20605
20606 * src/output.c (output_parser): Compute the `#line' lines when
20607 there are.
20608 * src/Makefile.am (bison.simple): Be a simple copy of bison.s1.
20609 Suggested by Hans Aberg.
20610
20611 2000-12-19 Akim Demaille <akim@epita.fr>
20612
20613 Let the handling of the skeleton files be local to the procedures
20614 that use it.
20615
20616 * src/files.c (xfopen, xfclose, skeleton_find, guardfile): No
20617 longer static.
20618 (fparser, open_extra_files): Remove.
20619 (open_files, output_files): Don't take care of fparser.
20620 * src/files.h: Adjust.
20621 * src/output.c (output_parser): Open and close the file to the
20622 skeleton.
20623 * src/reader.c (read_declarations): When %semantic_parser, open
20624 fguard.
20625
20626 2000-12-19 Akim Demaille <akim@epita.fr>
20627
20628 * src/file.h (BISON_SIMPLE, BISON_HAIRY): Move from here...
20629 * src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
20630
20631 2000-12-19 Akim Demaille <akim@epita.fr>
20632
20633 * src/files.c (open_files): Yipee! We no longer need all the code
20634 looking for `/tmp' since we have no tmp file.
20635
20636 2000-12-19 Akim Demaille <akim@epita.fr>
20637
20638 * src/system.h (EXT_TAB, EXT_OUTPUT, EXT_STYPE_H, EXT_GUARD_C):
20639 New macros.
20640 * src/files.c (open_files): Less dependency on MSDOS etc.
20641
20642 2000-12-14 Akim Demaille <akim@epita.fr>
20643
20644 * src/bison.s1 (YYLLOC_DEFAULT): New macro.
20645 Provide a default definition.
20646 Use it when executing the default @ action.
20647 * src/reader.c (reader_output_yylsp): No longer include
20648 `timestamp' and `text' in the default YYLTYPE.
20649
20650 2000-12-12 Akim Demaille <akim@epita.fr>
20651
20652 * src/reader.c (copy_definition, parse_union_decl, copy_action)
20653 (copy_guard): Quote the file names.
20654 Reported by Laurent Mascherpa.
20655
20656 2000-12-12 Akim Demaille <akim@epita.fr>
20657
20658 * src/output.c (output_headers, output_program, output): Be sure
20659 to escape special characters when outputting filenames.
20660 (ACTSTR_PROLOGUE, ACTSTR_EPILOGUE): Remove.
20661 (output_headers): Don't depend on them, Use ACTSTR.
20662
20663 2000-11-17 Akim Demaille <akim@epita.fr>
20664
20665 * lib/obstack.h: Formatting changes.
20666 (obstack_grow, obstack_grow0): Don't cast WHERE at all: it
20667 prevents type checking.
20668 (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
20669 cast the value to (void *): assigning a `foo *' to a `void *'
20670 variable is valid.
20671 (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
20672 * src/reader.c (parse_union_decl): Typo: use obstack_1grow to
20673 append characters.
20674
20675 2000-11-17 Akim Demaille <akim@epita.fr>
20676
20677 * tests/Makefile.am (suite.m4, regression.m4, calc.m4): Rename
20678 as...
20679 (suite.m4, regression.m4, calc.m4): these.
20680 * tests/atgeneral.m4: Update from CVS Autoconf.
20681
20682 2000-11-17 Akim Demaille <akim@epita.fr>
20683
20684 * tests/regression.m4 (%union and --defines): New test,
20685 demonstrating a current bug in the obstack implementation.
20686
20687 2000-11-17 Akim Demaille <akim@epita.fr>
20688
20689 * src/bison.s1 (_YY_DECL_VARIABLES, YY_DECL_VARIABLES): New
20690 macros.
20691 Use them to declare the variables which are global or local to
20692 `yyparse'.
20693
20694 2000-11-17 Akim Demaille <akim@epita.fr>
20695
20696 * acconfig.h: Remove, no longer used.
20697
20698 2000-11-07 Akim Demaille <akim@epita.fr>
20699
20700 * src: s/Copyright (C)/Copyright/g.
20701
20702 2000-11-07 Akim Demaille <akim@epita.fr>
20703
20704 * src/reader.c (reader): #define YYLSP_NEEDED to 1 instead of just
20705 defining.
20706 * src/bison.s1: s/#ifdef YYLSP_NEEDED/#if YYLSP_NEEDED/.
20707
20708 2000-11-07 Akim Demaille <akim@epita.fr>
20709
20710 * src/bison.s1 (YYLEX): Use #if instead of #ifdef.
20711 Merge in a single CPP if/else.
20712
20713 2000-11-07 Akim Demaille <akim@epita.fr>
20714
20715 * src/output.c (output): Remove useless variables.
20716 * lib/obstack.c (obstack_grow, obstack_grow0): Rename the second
20717 argument `data' for consistency with the prototypes.
20718 Qualify it `const'.
20719 (obstack_copy, obstack_copy0): Rename the second argument as
20720 `address' for consistency. Qualify it `const'.
20721 * lib/obstack.h (obstack_copy, obstack_copy0, obstack_grow)
20722 (obstack_grow0, obstack_ptr_grow, obstack_ptr_grow_fast): Qualify
20723 `const' their input argument (`data' or `address').
20724 Adjust the corresponding macros to include `const' in casts.
20725
20726 2000-11-03 Akim Demaille <akim@epita.fr>
20727
20728 * src/Makefile.am (INCLUDES): s/PFILE/BISON_SIMPLE/.
20729 s/PFILE1/BISON_HAIRY/.
20730 Adjust dependencies.
20731
20732 2000-11-03 Akim Demaille <akim@epita.fr>
20733
20734 For some reason, this was not applied.
20735
20736 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
20737 `unlink': it's no longer used.
20738
20739 2000-11-03 Akim Demaille <akim@epita.fr>
20740
20741 * src/files.c (skeleton_find): New function, eved out of...
20742 (open_files, open_extra_files): here.
20743
20744 2000-11-03 Akim Demaille <akim@epita.fr>
20745
20746 Don't use `atexit'.
20747
20748 * src/files.c (obstack_save): New function.
20749 (done): Rename as...
20750 (output_files): this.
20751 Use `obstack_save'.
20752 * src/main.c (main): Don't use `atexit' to register `done', since
20753 it no longer has to remove tmp files, just call `output_files'
20754 when there are no errors.
20755
20756 2000-11-02 Akim Demaille <akim@epita.fr>
20757
20758 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
20759 `unlink': it's no longer used.
20760 * src/files.h: Formatting changes.
20761
20762 2000-11-02 Akim Demaille <akim@epita.fr>
20763
20764 Remove the last uses of mktemp and unlink/delete.
20765
20766 * src/files.c (fdefines, ftable): Removed.
20767 (defines_ostack, table_obstack): New.
20768 Adjust dependencies of the former into uses of the latter.
20769 * src/output.c (output_short_or_char_table, output_short_table):
20770 Convert to using obstacks.
20771 * src/reader.c (copy_comment2): Accept one FILE * and two
20772 obstacks.
20773 (output_token_defines, reader_output_yylsp): Use obstacks.
20774 * src/system.h (obstack_fgrow3): New.
20775 * po/POTFILES.in: Adjust.
20776
20777 2000-11-01 Akim Demaille <akim@epita.fr>
20778
20779 Change each use of `fattrs' into a use of `attrs_obstack'.
20780
20781 * src/reader.c (copy_at): Typo: s/yylloc/yyloc/.
20782 * src/files.c (fattrs): Remove.
20783 (attrs_obstack): New.
20784 Adjust all dependencies.
20785 (done): If SEMANTIC_PARSER, dump attrs_obstack into attrsfile.
20786
20787 2000-11-01 Akim Demaille <akim@epita.fr>
20788
20789 Introduce obstacks.
20790 Change each use of `faction' into a use of `action_obstack'.
20791
20792 * lib/obstack.h, lib/obstack.c: New files.
20793 * src/files.c (faction): Remove.
20794 (action_obstack): New.
20795 Adjust all dependencies.
20796
20797 2000-10-20 Akim Demaille <akim@epita.fr>
20798
20799 * lib/quote.h (PARAMS): New macro. Use it.
20800
20801 2000-10-16 Akim Demaille <akim@epita.fr>
20802
20803 * src/output.c (output_short_or_char_table): New function.
20804 (output_short_table, output_token_translations): Use it.
20805 (goto_actions): Use output_short_table.
20806
20807 2000-10-16 Akim Demaille <akim@epita.fr>
20808
20809 * src/symtab.c (bucket_new): New function.
20810 (getsym): Use it.
20811
20812 * src/output.c (output_short_table): New argument to display the
20813 comment associated with the table.
20814 Adjust dependencies.
20815 (output_gram): Use it.
20816 (output_rule_data): Nicer output layout for YYTNAME.
20817
20818 2000-10-16 Akim Demaille <akim@epita.fr>
20819
20820 * src/lex.c (read_typename): New function.
20821 (lex): Use it.
20822 * src/reader.c (copy_dollar): Likewise.
20823
20824 2000-10-16 Akim Demaille <akim@epita.fr>
20825
20826 * src/reader.c (copy_comment2): Expect the input stream to be on
20827 the `/' which is suspected to open a comment, instead of being
20828 called after `//' or `/*' was read.
20829 (copy_comment, copy_definition, parse_union_decl, copy_action)
20830 (copy_guard): Adjust.
20831
20832 2000-10-16 Akim Demaille <akim@epita.fr>
20833
20834 * src/reader.c (parse_expect_decl): Use `skip_white_space' and
20835 `read_signed_integer'.
20836
20837 2000-10-16 Akim Demaille <akim@epita.fr>
20838
20839 * src/reader.c (copy_dollar): New function.
20840 (copy_guard, copy_action): Use it.
20841
20842 2000-10-16 Akim Demaille <akim@epita.fr>
20843
20844 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
20845 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
20846 New files, from Fileutils 4.0.27.
20847 * src/main.c (printable_version): Remove.
20848 * src/lex.c, src/reader.c: Use `quote'.
20849
20850 2000-10-04 Akim Demaille <akim@epita.fr>
20851
20852 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
20853
20854 2000-10-04 Akim Demaille <akim@epita.fr>
20855
20856 * doc/bison.texinfo: Various typos spotted by Neil Booth.
20857
20858 2000-10-04 Akim Demaille <akim@epita.fr>
20859
20860 When a literal string is used to define two different tokens,
20861 `bison -v' segfaults.
20862 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
20863
20864 * tests/regression.m4: New file.
20865 Include the core of the sample provided by Piotr Gackiewicz.
20866 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
20867 properly.
20868
20869 2000-10-04 Akim Demaille <akim@epita.fr>
20870
20871 * src/reader.c (parse_expect_decl): Keep `count' within the size
20872 of `buffer'.
20873 From Neil Booth.
20874
20875 2000-10-02 Paul Eggert <eggert@twinsun.com>
20876
20877 * bison.s1 (yyparse): Assign the default value
20878 unconditionally, to avoid a GCC warning and make the parser a
20879 tad smaller.
20880
20881 2000-10-02 Akim Demaille <akim@epita.fr>
20882
20883 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
20884 options.
20885
20886 2000-10-02 Akim Demaille <akim@epita.fr>
20887
20888 * src/derives.c, src/print.c, src/reduce.c: To ease the
20889 translation, move some `\n' out of the translated strings.
20890
20891 2000-10-02 Akim Demaille <akim@epita.fr>
20892
20893 The location tracking mechanism is precious for parse error
20894 messages. Nevertheless, it is enabled only when `@n' is used in
20895 the grammar, which is a different issue (you can use it in error
20896 message, but not in the grammar per se). Therefore, there should
20897 be another means to enable it.
20898
20899 * src/getargs.c (getargs): Support `--locations'.
20900 (usage): Report it.
20901 * src/getargs.h (locationsflag): Export it.
20902 * src/lex.c (percent_table): Support `%locations'.
20903 * src/reader.c (yylsp_needed): Remove this variable, now replaced
20904 with `locationsflag'.
20905 * doc/bison.texinfo: Document `--locations' and `%locations'.
20906 Sort the options.
20907 * tests/calc.m4: Test it.
20908
20909 For regularity of the names, replace each
20910 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
20911 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
20912 In addition replace each `flag' with `_flag'.
20913
20914 2000-10-02 Akim Demaille <akim@epita.fr>
20915
20916 Also test parse error messages, including with YYERROR_VERBOSE.
20917
20918 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
20919 associative).
20920 Use it to check the computations.
20921 Use it to check `nonassoc' is honored.
20922 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
20923 `--yyerror-verbose'.
20924 (_AT_CHECK_CALC): Adjust to this option.
20925 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
20926
20927 2000-10-02 Akim Demaille <akim@epita.fr>
20928
20929 Test also `--verbose', `--defines' and `--name-prefix'. Testing
20930 the latter demonstrates a flaw in the handling of non debugging
20931 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
20932 was used in order to simplify:
20933
20934 #if YYDEBUG
20935 if (yydebug)
20936 {
20937 ...
20938 }
20939 #endif
20940
20941 into
20942
20943 if (yydebug)
20944 {
20945 ...
20946 }
20947
20948 unfortunately this leads to a CPP conflict when
20949 `--name-prefix=foo' is used since it produces `#define yydebug
20950 foodebug'.
20951
20952 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
20953 (YYDPRINTF): New macro.
20954 Spread its use.
20955 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
20956 the bison options.
20957 Also test `--verbose', `--defines' and `--name-prefix'.
20958
20959 2000-10-02 Akim Demaille <akim@epita.fr>
20960
20961 Improve the readability of the produced parsers.
20962
20963 * src/bison.s1: Formatting changes.
20964 Improve the comment related to the `$' mark.
20965 (yydefault): Don't fall through to `yyresume': `goto' there.
20966 * src/output.c (output_parser): When the `$' is met, skip the end
20967 of its line.
20968 New variable, `number_of_dollar_signs', to check there's exactly
20969 one `$' in the parser skeleton.
20970
20971 2000-10-02 Akim Demaille <akim@epita.fr>
20972
20973 * lib/xstrdup.c: New file, from the fileutils.
20974 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
20975 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
20976 instead of strlen + xmalloc + strcpy.
20977 * src/symtab.c (copys): Remove, use xstrdup instead.
20978
20979 2000-10-02 Akim Demaille <akim@epita.fr>
20980
20981 * src/gram.h (associativity): New enum type which replaces the
20982 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
20983 `right_assoc', `left_assoc' and `non_assoc'.
20984 Adjust all dependencies.
20985 * src/reader.c: Formatting changes.
20986 (LTYPESTR): Don't define it, use it as a literal in
20987 `reader_output_yylsp'.
20988 * src/symtab.h (symbol_class): New enum type which replaces the
20989 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
20990 `sunknown', `stoken and `snterm'.
20991
20992 2000-10-02 Akim Demaille <akim@epita.fr>
20993
20994 * src/getargs.c (fixed_outfiles): Rename as...
20995 (yaccflag): for consistency and accuracy.
20996 Adjust dependencies.
20997
20998 2000-10-02 Akim Demaille <akim@epita.fr>
20999
21000 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
21001 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
21002 difficult and introduced a lot of core dump. It turns out that
21003 Bison used an implementation of `xmalloc' based on `calloc', and
21004 at various places it does depend upon the initialization to 0. I
21005 have not tried to isolate the pertinent places, and all the former
21006 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
21007 someone should address this issue.
21008
21009 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
21010 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
21011 files.
21012 Adjust dependencies.
21013 * src/warshall.h: New file.
21014 Propagate.
21015
21016 2000-10-02 Akim Demaille <akim@epita.fr>
21017
21018 Various anti-`extern in *.c' changes.
21019
21020 * src/system.h: Include `assert.h'.
21021
21022 2000-10-02 Akim Demaille <akim@epita.fr>
21023
21024 * src/state.h (nstates, final_state, first_state, first_shift)
21025 (first_reduction): Move their exportation from here...
21026 * src/LR0.h: to here.
21027 Adjust dependencies.
21028 * src/getargs.c (statisticsflag): New variable.
21029 Add support for `--statistics'.
21030 Adjust dependencies.
21031
21032 Remove a lot of now useless `extern' statements in most files.
21033
21034 2000-10-02 Akim Demaille <akim@epita.fr>
21035
21036 * src/LR0.h: New file.
21037 Propagate its use.
21038
21039 2000-10-02 Akim Demaille <akim@epita.fr>
21040
21041 * src/print.h: New file.
21042 Propagate its use.
21043 * src/print.c: Formatting and ordering changes.
21044 (verbose, terse): Replace with...
21045 (print_results): this new function.
21046 Adjust dependencies.
21047
21048 2000-10-02 Akim Demaille <akim@epita.fr>
21049
21050 * src/conflicts.c (conflict_report): New function.
21051 (conflict_log, verbose_conflict_log): Replace with...
21052 (print_conflicts): this function.
21053 Adjust dependencies.
21054 * src/conflicts.h: New file.
21055 Propagate its inclusion.
21056
21057 2000-10-02 Akim Demaille <akim@epita.fr>
21058
21059 * src/nullable.h: New file.
21060 Propagate its inclusion.
21061 * src/nullable.c: Formatting changes.
21062
21063 2000-10-02 Akim Demaille <akim@epita.fr>
21064
21065 * src/reduce.h: New file.
21066 Propagate its inclusion.
21067 * src/reduce.c: Topological sort and other formatting changes.
21068 (bool, TRUE, FALSE): Move their definition to...
21069 * src/system.h: here.
21070
21071 2000-10-02 Akim Demaille <akim@epita.fr>
21072
21073 * src/files.c: Formatting changes.
21074 (tryopen, tryclose, openfiles): Rename as...
21075 (xfopen, xfclose, open_files): this.
21076 (stringappend): static.
21077 * src/files.h: Complete the list of exported symbols.
21078 Propagate its use.
21079
21080 2000-10-02 Akim Demaille <akim@epita.fr>
21081
21082 * src/reader.h: New file.
21083 Propagate its use instead of tedious list of `extern' and
21084 prototypes.
21085 * src/reader.c: Formatting changes, topological sort,
21086 s/register//.
21087
21088 2000-10-02 Akim Demaille <akim@epita.fr>
21089
21090 * src/lex.h: Prototype `lex.c' exported functions.
21091 * src/reader.c: Adjust.
21092 * src/lex.c: Formatting changes.
21093 (safegetc): Rename as...
21094 (xgetc): this.
21095
21096 2000-10-02 Akim Demaille <akim@epita.fr>
21097
21098 * src/lalr.h: New file.
21099 Propagate its inclusion instead of prototypes and `extern'.
21100 * src/lalr.c: Formatting changes, topological sorting etc.
21101
21102 2000-10-02 Akim Demaille <akim@epita.fr>
21103
21104 * src/output.c (token_actions): Introduce a temporary array,
21105 YYDEFACT, that makes it possible for this function to use
21106 output_short_table.
21107
21108 2000-10-02 Akim Demaille <akim@epita.fr>
21109
21110 `user_toknums' is output as a `short[]' in `output.c', while it is
21111 defined as a `int[]' in `reader.c'. For consistency with the
21112 other output tables, `user_toknums' is now defined as a table of
21113 shorts.
21114
21115 * src/reader.c (user_toknums): Be a short table instead of an int
21116 table.
21117 Adjust dependencies.
21118
21119 Factor the short table outputs.
21120
21121 * src/output.c (output_short_table): New function.
21122 * src/output.c (output_gram, output_stos, output_rule_data)
21123 (output_base, output_table, output_check): Use it.
21124
21125 2000-10-02 Akim Demaille <akim@epita.fr>
21126
21127 * src/output.c (output): Topological sort of the functions, in
21128 order to get rid of the `static' prototypes.
21129 No longer use `register'.
21130 * src/output.h: New file.
21131 Propagate its inclusion in files explicitly prototyping functions
21132 from output.c.
21133
21134 2000-09-21 Akim Demaille <akim@epita.fr>
21135
21136 * src/atgeneral.m4: Update from Autoconf.
21137
21138 2000-09-21 Akim Demaille <akim@epita.fr>
21139
21140 * src/closure.h: New file.
21141 * src/closure.c: Formatting changes, topological sort over the
21142 functions, use of closure.h.
21143 (initialize_closure, finalize_closure): Rename as...
21144 (new_closure, free_closure): these. Adjust dependencies.
21145 * src/LR0.c: Formatting changes, topological sort, use of
21146 cloture.h.
21147 (initialize_states): Rename as...
21148 (new_states): this.
21149 * src/Makefile.am (noinst_HEADERS): Adjust.
21150
21151 2000-09-20 Akim Demaille <akim@epita.fr>
21152
21153 * src/acconfig.h: Don't protect config.h against multiple
21154 inclusion.
21155 Don't define PARAMS.
21156 * src/system.h: Define PARAMS.
21157 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
21158 purpose of config.h. system.h must not try to fix wrong
21159 definitions in config.h.
21160
21161 2000-09-20 Akim Demaille <akim@epita.fr>
21162
21163 * src/derives.h: New file.
21164 * src/main.c, src/derives.h: Use it.
21165 Formatting changes.
21166 * src/Makefile.am (noinst_HEADERS): Adjust.
21167
21168 2000-09-20 Akim Demaille <akim@epita.fr>
21169
21170 * tests/atgeneral.m4: Update from Autoconf.
21171 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
21172 (AT_CHECK_CALC): New macros.
21173 Use these macros to test bison with options `', `--raw',
21174 `--debug', `--yacc', `--yacc --debug'.
21175
21176 2000-09-19 Akim Demaille <akim@epita.fr>
21177
21178 * src/output.c: Formatting changes.
21179 * src/machine.h: Remove, leaving its contents in...
21180 * src/system.h: here.
21181 Include stdio.h.
21182 Adjust all dependencies on stdio.h and machine.h.
21183 * src/getargs.h: New file.
21184 Let all `extern' declarations about getargs.c be replaced with
21185 inclusion of `getargs.h'.
21186 * src/Makefile.am (noinst_HEADERS): Adjust.
21187
21188 * tests/calc.m4 (yyin): Be initialized in main, not on the global
21189 scope.
21190 (yyerror): Returns void, not int.
21191 * doc/bison.texinfo: Formatting changes.
21192
21193 2000-09-19 Akim Demaille <akim@epita.fr>
21194
21195 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
21196 portable.
21197
21198 2000-09-18 Akim Demaille <akim@epita.fr>
21199
21200 * configure.in: Append WARNING_CFLAGS to CFLAGS.
21201 * src/Makefile.am (INCLUDES): Don't.
21202 Be ready to fetch headers in lib/.
21203
21204 2000-09-18 Akim Demaille <akim@epita.fr>
21205
21206 * doc/bison.texinfo: Update the copyright.
21207 ANSIfy and GNUify the examples.
21208 Remove the old menu.
21209
21210 2000-09-18 Akim Demaille <akim@epita.fr>
21211
21212 First set of tests: use the `calc' example from the documentation.
21213
21214 * src/bison.s1 (yyparse): Condition the code using `yytname' which
21215 is defined only when YYDEBUG is.
21216 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
21217 * src/files.c (tryopen, tryclose): Formatting changes.
21218 Move to the top and be static.
21219 * src/reader.c (read_signed_integer): Likewise.
21220 * tests/calc.m4: New file.
21221 * Makefile.am, suite.m4: Adjust.
21222 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
21223
21224 2000-09-18 Akim Demaille <akim@epita.fr>
21225
21226 Add support for an Autotest test suite for Bison.
21227
21228 * m4/m4.m4, m4/atconfig.m4: New files.
21229 * m4/Makefile.am (EXTRA_DIST): Adjust.
21230 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
21231 files.
21232 * src/getargs.c: Display a more standard --version message.
21233 * src/reader.c (reader): Formatting changes.
21234 No longer depend upon VERSION_STRING.
21235 * configure.in: No longer use `dnl'.
21236 Set up the test suite and the new directory `tests/.
21237 (VERSION_STRING): Remove.
21238
21239 2000-04-14 Akim Demaille <akim@epita.fr>
21240
21241 * src/reader.c (copy_comment2): New function, same as former
21242 `copy_comment', but outputs into two FILE *.
21243 (copy_comment): Use it.
21244 (parse_union_decl): Use it.
21245 (get_type, parse_start_decl): Use the same `invalid' message.
21246 (parse_start_decl, parse_union_decl): Use the same `multiple'
21247 message.
21248 (parse_union_decl, copy_guard, copy_action): Use the same
21249 `unmatched' message.
21250 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
21251
21252 2000-03-31 Akim Demaille <akim@epita.fr>
21253
21254 * src/files.c (tryopen, tryclose): Move to the top.
21255 Be static.
21256
21257 2000-03-31 Akim Demaille <akim@epita.fr>
21258
21259 * src/main.c (main): Don't call `done', exit does it.
21260
21261 2000-03-31 Akim Demaille <akim@epita.fr>
21262
21263 * allocate.c: s/return (foo)/return foo/.
21264 * lalr.c: Likewise.
21265 * LR0.c: Likewise.
21266 * output.c: Likewise.
21267 * reader.c: Likewise.
21268 * symtab.c: Likewise.
21269 * vmsgetargs.c: Likewise.
21270
21271 2000-03-31 Akim Demaille <akim@epita.fr>
21272
21273 Clean up the error reporting functions.
21274
21275 * src/report.c: New file.
21276 * src/report.h: Likewise.
21277 * src/Makefile.am: Adjust.
21278 * m4/error.m4: New file.
21279 * m4/Makefile.am: Adjust.
21280 * configure.in (jm_PREREQ_ERROR): Call it.
21281 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
21282 Remove.
21283 (fatal, fatals): Remove. All callers use complain.c::fatal.
21284 (warn, warni, warns, warnss, warnss): Remove. All callers use
21285 complain.c::complain.
21286 (toomany): Remove, use fatal instead.
21287 * src/files.c (done): No argument, use complain_message_count.
21288 * src/main.c (main): Register `done' to `atexit'.
21289
21290 * src/getargs.c (usage): More `fputs', less `fprintf'.
21291
21292 2000-03-28 Akim Demaille <akim@epita.fr>
21293
21294 * lib/: New directory.
21295 * Makefile.am (SUBDIRS): Adjust.
21296 * configure.in: Adjust.
21297 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
21298 useless.
21299 * src/alloca.c: Moved to lib/.
21300 * src/getopt.c: Likewise.
21301 * src/getopt1.c: Likewise.
21302 * src/getopt.h: Likewise.
21303 * src/ansi2knr.c: Likewise.
21304 * src/ansi2knr.1: Likewise.
21305 * src/Makefile.am: Adjust.
21306 * lib/Makefile.am: New file.
21307
21308 2000-03-28 Akim Demaille <akim@epita.fr>
21309
21310 * src/getargs.c (usage): Refresh the help message.
21311
21312 2000-03-17 Akim Demaille <akim@epita.fr>
21313
21314 * src/getopt1.c: Updated from textutils 2.0e
21315 * src/getopt.c: Likewise.
21316 * src/getopt.h: Likewise.
21317
21318 2000-03-17 Akim Demaille <akim@epita.fr>
21319
21320 * src/Makefile.am (bison.simple): Fix the awk program: quote only
21321 the file name, not the whole `#line LINE FILE'.
21322
21323 2000-03-17 Akim Demaille <akim@epita.fr>
21324
21325 On syntax errors, report the token on which we choked.
21326
21327 * src/bison.s1 (yyparse): In the label yyerrlab, when
21328 YYERROR_VERBOSE, add yychar in msg.
21329
21330 2000-03-17 Akim Demaille <akim@epita.fr>
21331
21332 * src/reader.c (copy_at): New function.
21333 (copy_guard): Use it.
21334 (copy_action): Use it.
21335
21336 2000-03-17 Akim Demaille <akim@epita.fr>
21337
21338 Be kind to translators, save some useless translations.
21339
21340 * src/main.c (banner): New function.
21341 (fatal_banner): Use it.
21342 (warn_banner): Use it.
21343
21344 2000-03-17 Akim Demaille <akim@epita.fr>
21345
21346 * src/reader.c (copy_definition): Use copy_string and
21347 copy_comment. Removed now unused `match', `ended',
21348 `cplus_comment'.
21349 (copy_comment, copy_string): Moved, to be visible from
21350 copy_definition.
21351
21352 2000-03-17 Akim Demaille <akim@epita.fr>
21353
21354 * src/reader.c (copy_string): Declare `static inline'. No
21355 problems with inline, since it is checked by configure.
21356 (copy_comment): Likewise.
21357
21358 2000-03-17 Akim Demaille <akim@epita.fr>
21359
21360 * src/reader.c (packsymbols): Formatting changes.
21361
21362 2000-03-17 Akim Demaille <akim@epita.fr>
21363
21364 * src/reader.c (copy_comment): New function, factored out from:
21365 (copy_action): Use it. Removed now unused `match', `ended',
21366 `cplus_comment'.
21367 (copy_guard): Likewise.
21368
21369 2000-03-17 Akim Demaille <akim@epita.fr>
21370
21371 * src/reader.c (copy_string): New function, factored out from:
21372 (copy_action): Use it.
21373 (copy_guard): Likewise.
21374
21375 2000-03-17 Akim Demaille <akim@epita.fr>
21376
21377 Change the handling of @s so that they behave exactly like $s.
21378 There is now a pseudo variable @$ (readble and writable), location
21379 of the lhs of the rule (by default ranging from the location of
21380 the first symbol of the rhs, to the location of the last symbol,
21381 or, if the rhs is empty, YYLLOC).
21382
21383 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
21384 yyval.
21385 (yyparse): When providing a default semantic action, provide a
21386 default location action.
21387 (after the $): No longer change `*YYLSP', just stack YYLOC the
21388 same way you stack YYVAL.
21389 * src/reader.c (read_declarations): Use warns.
21390 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
21391 (copy_action, case '@'): Likewise.
21392 Use a standard error message, to save useless work from
21393 translators.
21394
21395 2000-03-17 Akim Demaille <akim@epita.fr>
21396
21397 * src/bison.s1: Formatting and cosmetics changes.
21398 * src/reader.c: Likewise.
21399 Update the Copyright notice.
21400
21401 2000-03-17 Akim Demaille <akim@epita.fr>
21402
21403 * src/bison.s1 (#line): All set to `#line' only, since the
21404 Makefile now handles them.
21405
21406 2000-03-16 Akim Demaille <akim@epita.fr>
21407
21408 * src/output.c (output_rule_data): Output the documentation of
21409 some of the tables.
21410 (Copyright notice): Update.
21411 Formatting changes.
21412
21413 2000-03-16 Akim Demaille <akim@epita.fr>
21414
21415 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
21416 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
21417 One `#if YYDEBUG' remains, since it uses variables which are
21418 defined only if `YYDEBUG != 0'.
21419
21420 2000-03-16 Akim Demaille <akim@epita.fr>
21421
21422 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
21423 and related variables so that the similarities are highlighted.
21424
21425 2000-03-16 Akim Demaille <akim@epita.fr>
21426
21427 * src/bison.s1: Properly indent CPP directives.
21428
21429 2000-03-16 Akim Demaille <akim@epita.fr>
21430
21431 * src/bison.s1: Properly indent the `alloca' CPP section.
21432
21433 2000-03-16 Akim Demaille <akim@epita.fr>
21434
21435 Do not hard code values of directories in `configure.in'.
21436 Update the `configure' tool chain.
21437
21438 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
21439 src/makefile.am.
21440 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
21441 (AC_OUTPUT): Add m4/Makefile.
21442 Bump to bison 1.28a, 1.29 has never been released.
21443 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
21444 handled via src/Makefile.am.
21445 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
21446 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
21447 autoheader.
21448 * Makefile.am (SUBDIRS): Add m4.
21449 (ACLOCAL_AM_FLAGS): New variable.
21450 (AUTOMAKE_OPTIONS): Add check-news.
21451 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
21452 the proper line number and file name.
21453 (DEFS): Propagate the location of bison library files and of the
21454 locale files.
21455 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
21456 builddir.
21457 * acinclude.m4: Remove, replaced by the directory m4.
21458 * m4/Makefile.am (EXTRA_DIST): New variable.
21459 * m4/gettext.m4: New file, from the fileutils.
21460 * m4/lcmessage.m4: Likewise
21461 * m4/progtest.m4: Likewise.
21462 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
21463
21464 2000-03-10 Akim Demaille <akim@epita.fr>
21465
21466 * src/closure.c:
21467 Formatting changes of various comments.
21468 Respect the GNU coding standards at various places.
21469 Don't use `_()' when no translation is needed.
21470
21471 1999-12-13 Jesse Thilo <jthilo@gnu.org>
21472
21473 * src/files.c:
21474 OS/2 honors TMPDIR environment variable.
21475
21476 1999-12-13 Jesse Thilo <jthilo@gnu.org>
21477
21478 * doc/bison.texinfo: Tweaked spelling and grammar.
21479 Updated ISBN.
21480 Removed reference to price of printed copy.
21481 Mention BISON_SIMPLE and BISON_HAIRY.
21482
21483 1999-12-13 Jesse Thilo <jthilo@gnu.org>
21484
21485 * configure.in, NEWS:
21486 Bison 1.29 released.
21487
21488 1999-10-27 Jesse Thilo <jthilo@gnu.org>
21489
21490 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
21491 Added reference card.
21492
21493 1999-07-26 Jesse Thilo <jthilo@gnu.org>
21494
21495 * po/ru.po: Added Russian translation.
21496
21497 1999-07-26 Jesse Thilo <jthilo@gnu.org>
21498
21499 * configure.in: Added Russian translation.
21500
21501 1999-07-06 Jesse Thilo <jthilo@gnu.org>
21502
21503 * configure.in, NEWS, README:
21504 Released version 1.28.
21505
21506 1999-06-14 Jesse Thilo <jthilo@gnu.org>
21507
21508 * src/system.h:
21509 Squashed redefinition warning on some systems.
21510
21511 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
21512 Have configure build version string instead of relying on ANSI string
21513 concatentation.
21514
21515 1999-06-14 Jesse Thilo <jthilo@gnu.org>
21516
21517 * po/POTFILES.in: Got rid of version.c.
21518
21519 1999-06-14 Jesse Thilo <jthilo@gnu.org>
21520
21521 * acconfig.h, configure.in:
21522 Have configure build version string instead of relying on ANSI string
21523 concatentation.
21524
21525 1999-06-08 Jesse Thilo <jthilo@gnu.org>
21526
21527 * doc/bison.1:
21528 Dropped mention of `+' for long-named options.
21529
21530 1999-05-30 Jesse Thilo <jthilo@gnu.org>
21531
21532 * src/files.c: Added <unistd.h> for unlink().
21533
21534 * src/Makefile.am, src/system.h:
21535 I18n fixes.
21536
21537 1999-05-30 Jesse Thilo <jthilo@gnu.org>
21538
21539 * README: Added a FAQ list.
21540
21541 * configure.in, acconfig.h:
21542 I18n fixes.
21543
21544 1999-05-30 Jesse Thilo <jthilo@gnu.org>
21545
21546 * doc/FAQ, doc/Makefile.am:
21547 Added a FAQ list.
21548
21549 1999-05-19 Jesse Thilo <jthilo@gnu.org>
21550
21551 * src/alloc.h, src/symtab.h, src/version.c:
21552 Protected inclusion of "config.h" with HAVE_CONFIG_H.
21553
21554 1999-04-18 Jesse Thilo <jthilo@gnu.org>
21555
21556 * src/.cvsignore, src/Makefile.am:
21557 Reorganized: sources in `src', documentation in `doc'.
21558
21559 * src/lex.c (literalchar):
21560 fixed the code for escaping double quotes (thanks
21561 Jonathan Czisny.)
21562
21563 1999-04-18 Jesse Thilo <jthilo@gnu.org>
21564
21565 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
21566 Adjusted paths to reflect directory reorganization.
21567
21568 1999-04-18 Jesse Thilo <jthilo@gnu.org>
21569
21570 * doc/.cvsignore, doc/Makefile.am:
21571 Reorganized: sources in `src', documentation in `doc'.
21572
21573 1999-04-18 Jesse Thilo <jthilo@gnu.org>
21574
21575 * configure.in:
21576 Updated AC_INIT file to reflect directory reorganization.
21577
21578 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
21579 Reorganized: sources in `src', documentation in `doc'.
21580
21581 1999-04-13 Jesse Thilo <jthilo@gnu.org>
21582
21583 * src/allocate.c:
21584 Don't declare calloc() and realloc() if not necessary.
21585
21586 1999-04-13 Jesse Thilo <jthilo@gnu.org>
21587
21588 * configure.in, acconfig.h, acinclude.m4:
21589 Don't declare calloc() and realloc() if not necessary.
21590
21591 1999-03-23 Jesse Thilo <jthilo@gnu.org>
21592
21593 * po/.cvsignore: Added i18n support.
21594
21595 1999-03-23 Jesse Thilo <jthilo@gnu.org>
21596
21597 * acconfig.h, configure.in, Makefile.am:
21598 Added i18n support.
21599
21600 1999-03-22 Jesse Thilo <jthilo@gnu.org>
21601
21602 * src/bison.s1: Fixed #line numbers.
21603
21604 1999-03-15 Jesse Thilo <jthilo@gnu.org>
21605
21606 * po/es.po, po/fr.po, po/nl.po, po/de.po:
21607 Added PO files from Translation Project.
21608
21609 1999-03-03 Jesse Thilo <jthilo@gnu.org>
21610
21611 * Makefile.am:
21612 Added support for non-ANSI compilers (ansi2knr).
21613
21614 1999-02-16 Jesse Thilo <jthilo@gnu.org>
21615
21616 * configure.in: Bumped version number to 1.27.
21617
21618 * Makefile.am:
21619 Added `bison.simple' to list of files removed by `make distclean'.
21620
21621 1999-02-12 Jesse Thilo <jthilo@gnu.org>
21622
21623 * src/files.c, src/files.h:
21624 Defined locations of parser files in config.h instead of Makefile.
21625
21626 1999-02-12 Jesse Thilo <jthilo@gnu.org>
21627
21628 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
21629 Defined locations of parser files in config.h instead of Makefile.
21630
21631 1999-02-09 Jesse Thilo <jthilo@gnu.org>
21632
21633 * Makefile.am:
21634 Removed inappropriate use of $< macro.
21635
21636 1999-02-05 Jesse Thilo <jthilo@gnu.org>
21637
21638 * po/Makefile.in.in, po/POTFILES.in:
21639 Add `po' directory skeleton.
21640
21641 1999-01-27 Jesse Thilo <jthilo@gnu.org>
21642
21643 * README: Document help-bison list.
21644
21645 * configure.in: Add check for mkstemp().
21646
21647 1999-01-20 Jesse Thilo <jthilo@gnu.org>
21648
21649 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
21650 Hush a few compiler warnings.
21651
21652 * src/files.c:
21653 Add tryclose(), which verifies that fclose was successful.
21654 Hush a couple of compiler warnings.
21655
21656 1999-01-20 Jesse Thilo <jthilo@gnu.org>
21657
21658 * Makefile.am, OChangeLog:
21659 ChangeLog is now automatically generated. Include the old version as
21660 OChangeLog.
21661
21662 1999-01-14 Jesse Thilo <jthilo@gnu.org>
21663
21664 * 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:
21665 Update FSF address.
21666
21667 1999-01-14 Jesse Thilo <jthilo@gnu.org>
21668
21669 * doc/bison.texinfo: Fix formatting glitch.
21670
21671 * doc/bison.texinfo: Update FSF address.
21672
21673 1999-01-14 Jesse Thilo <jthilo@gnu.org>
21674
21675 * acconfig.h: Update FSF address.
21676
21677 1999-01-08 Jesse Thilo <jthilo@gnu.org>
21678
21679 * src/system.h:
21680 Don't define PACKAGE here, since config.h defines it.
21681
21682 1998-12-30 Jesse Thilo <jthilo@gnu.org>
21683
21684 * src/reader.c: Update copyright date.
21685
21686 * src/main.c:
21687 Ditch sprintf to statically-sized buffers in fatal/warn functions in
21688 favor of output directly to stderr (avoids buffer overruns).
21689
21690 * src/reader.c: Some checks for premature EOF.
21691
21692 * 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:
21693 Use prototypes if the compiler understands them.
21694
21695 * src/files.c: Honor TMPDIR on Unix hosts.
21696 Use prototypes if the compiler understands them.
21697
21698 * src/reader.c:
21699 Fix a couple of buffer overrun bugs.
21700 Use prototypes if the compiler understands them.
21701
21702 * src/system.h: Include unistd.h and ctype.h.
21703 Use #ifdef instead of #if for NLS symbols.
21704
21705 1998-12-30 Jesse Thilo <jthilo@gnu.org>
21706
21707 * doc/bison.texinfo:
21708 Delete comment "consider using @set for edition number, etc..." since
21709 we now are doing so.
21710
21711 1998-12-30 Jesse Thilo <jthilo@gnu.org>
21712
21713 * configure.in:
21714 Use prototypes if the compiler understands them.
21715
21716 * NEWS: Document 1.26 highlights.
21717
21718 * Makefile.am: Require Automake 1.3 or later.
21719
21720 * acconfig.h:
21721 Use prototypes if the compiler understands them.
21722
21723 1998-12-29 Jesse Thilo <jthilo@gnu.org>
21724
21725 * src/version.c:
21726 Use VERSION symbol from automake for version number.
21727
21728 1998-12-29 Jesse Thilo <jthilo@gnu.org>
21729
21730 * acconfig.h, configure.in, version.cin:
21731 Use VERSION symbol from automake for version number.
21732
21733 1998-11-28 Jesse Thilo <jthilo@gnu.org>
21734
21735 * Makefile.am:
21736 Distribute original version of simple parser (bison.s1), not built
21737 version (bison.simple).
21738
21739 1998-11-28 Jesse Thilo <jthilo@gnu.org>
21740
21741 * doc/bison.texinfo: Add info dir entry.
21742
21743 * doc/bison.texinfo:
21744 Let automake put version number into documentation.
21745
21746 1998-11-26 Jesse Thilo <jthilo@gnu.org>
21747
21748 * src/bison.cld, src/build.com, src/vmshlp.mar:
21749 Add non-RCS files from /gd/gnu/bison.
21750
21751 1998-11-26 Jesse Thilo <jthilo@gnu.org>
21752
21753 * doc/bison.1:
21754 Document the BISON_HAIRY and BISON_SIMPLE variables.
21755
21756 1998-11-25 Jesse Thilo <jthilo@gnu.org>
21757
21758 * src/version.c: Build version.c automatically.
21759
21760 * src/reader.c:
21761 Fix token numbering (used to start at 258, not 257).
21762
21763 * src/system.h: Include config.h.
21764
21765 * src/getargs.c: Update bug report address.
21766
21767 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
21768 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
21769
21770 1998-11-25 Jesse Thilo <jthilo@gnu.org>
21771
21772 * Makefile.am:
21773 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
21774
21775 * configure.in, version.cin:
21776 Build version.c automatically.
21777
21778 * AUTHORS: Add AUTHORS file.
21779
21780 * README: Update bug report address.
21781
21782 * bison.simple:
21783 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
21784
21785 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
21786 Add automake stuff.
21787
21788 1998-11-25 Jesse Thilo <jthilo@gnu.org>
21789
21790 * doc/bison.texinfo: Clean up some formatting.
21791
21792 1998-05-05 Richard Stallman <rms@gnu.org>
21793
21794 * doc/bison.texinfo:
21795 Explain better why to make a pure parser.
21796
21797 1998-01-05 Richard Stallman <rms@gnu.org>
21798
21799 * src/files.c (openfiles):
21800 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
21801 find a temporary directory, if possible. Do not unlink files while
21802 they are open.
21803
21804 1997-08-25 Richard Stallman <rms@gnu.org>
21805
21806 * src/reader.c (stack_offset;):
21807 Change some warni to warns.
21808
21809 * src/lex.c (literalchar): Use warns, not warni.
21810
21811 1997-06-28 Richard Stallman <rms@gnu.org>
21812
21813 * src/bison.s1: Add a Bison version comment.
21814
21815 * src/main.c (fatal, warn, berror):
21816 Use program_name.
21817
21818 1997-06-28 Richard Stallman <rms@gnu.org>
21819
21820 * Makefile.in (bison_version): New variable.
21821 (dist): Use that variable.
21822 (bison.s1): Substitute the Bison version into bison.simple.
21823
21824 * bison.simple: Add a Bison version comment.
21825
21826 1997-06-18 Richard Stallman <rms@gnu.org>
21827
21828 * src/main.c (fatal, warn, berror):
21829 Make error messages standard.
21830 (toomany): Improve error message text.
21831
21832 * 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:
21833 new.h renamed to alloc.h.
21834
21835 1997-06-18 Richard Stallman <rms@gnu.org>
21836
21837 * Makefile.in: new.h renamed to alloc.h.
21838
21839 1997-05-24 Richard Stallman <rms@gnu.org>
21840
21841 * src/lex.c (literalchar):
21842 Fix the code for escaping \, " and '.
21843
21844 (lex): Avoid trouble when there are many chars
21845 to discard in a char literal with just several chars in it.
21846
21847 1997-05-17 Richard Stallman <rms@gnu.org>
21848
21849 * src/bison.s1:
21850 Use malloc, if using alloca is troublesome.
21851 (YYSTACK_USE_ALLOCA): New flag macro.
21852 Define it for some systems and compilers.
21853 (YYSTACK_ALLOC): New macro.
21854 (yyparse): Use YYSTACK_ALLOC to allocate stack.
21855 If it was malloc'd, free it.
21856
21857 1997-05-17 Richard Stallman <rms@gnu.org>
21858
21859 * bison.simple:
21860 Use malloc, if using alloca is troublesome.
21861 (YYSTACK_USE_ALLOCA): New flag macro.
21862 Define it for some systems and compilers.
21863 (YYSTACK_ALLOC): New macro.
21864 (yyparse): Use YYSTACK_ALLOC to allocate stack.
21865 If it was malloc'd, free it.
21866
21867 1997-04-23 Richard Stallman <rms@gnu.org>
21868
21869 * src/bison.s1:
21870 (alloca) [__hpux]: Always define as __builtin_alloca.
21871
21872 1997-04-23 Richard Stallman <rms@gnu.org>
21873
21874 * bison.simple:
21875 (alloca) [__hpux]: Always define as __builtin_alloca.
21876
21877 1997-04-22 Richard Stallman <rms@gnu.org>
21878
21879 * src/bison.s1:
21880 [__hpux]: Include alloca.h (right for HPUX 10)
21881 instead of declaring alloca (right for HPUX 9).
21882
21883 * src/bison.s1 (__yy_memcpy):
21884 Declare arg `count' as unsigned int.
21885 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
21886
21887 1997-04-22 Richard Stallman <rms@gnu.org>
21888
21889 * bison.simple:
21890 [__hpux]: Include alloca.h (right for HPUX 10)
21891 instead of declaring alloca (right for HPUX 9).
21892
21893 * bison.simple (__yy_memcpy):
21894 Declare arg `count' as unsigned int.
21895 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
21896
21897 1997-01-03 Richard Stallman <rms@gnu.org>
21898
21899 * src/allocate.c: [__STDC__ or _MSC_VER]:
21900 Declare calloc and realloc to return void *.
21901
21902 1997-01-02 Richard Stallman <rms@gnu.org>
21903
21904 * src/system.h:
21905 [_MSC_VER]: Include stdlib.h and process.h.
21906 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
21907
21908 * src/main.c (main): Return FAILURE as a value.
21909 (printable_version): Declare arg as int, not char.
21910
21911 1997-01-02 Richard Stallman <rms@gnu.org>
21912
21913 * Makefile.in (dist):
21914 Explicitly check for symlinks, and copy them.
21915
21916 1996-12-19 Richard Stallman <rms@gnu.org>
21917
21918 * src/files.c:
21919 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
21920
21921 1996-12-18 Paul Eggert <eggert@gnu.org>
21922
21923 * src/bison.s1 (yyparse):
21924 If __GNUC__ and YYPARSE_PARAM are both defined,
21925 declare yyparse to have a void * argument.
21926
21927 1996-12-18 Paul Eggert <eggert@gnu.org>
21928
21929 * bison.simple (yyparse):
21930 If __GNUC__ and YYPARSE_PARAM are both defined,
21931 declare yyparse to have a void * argument.
21932
21933 1996-12-17 Richard Stallman <rms@gnu.org>
21934
21935 * src/reduce.c (nbits): Add some casts.
21936
21937 1996-08-12 Richard Stallman <rms@gnu.org>
21938
21939 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
21940
21941 1996-08-12 Richard Stallman <rms@gnu.org>
21942
21943 * bison.simple: Test _MSDOS as well as _MSDOS_.
21944
21945 1996-07-31 Richard Stallman <rms@gnu.org>
21946
21947 * src/bison.s1:
21948 [__sun && __i386]: Include alloca.h.
21949
21950 1996-07-31 Richard Stallman <rms@gnu.org>
21951
21952 * bison.simple:
21953 [__sun && __i386]: Include alloca.h.
21954
21955 1996-07-30 Richard Stallman <rms@gnu.org>
21956
21957 * src/bison.s1: Comment change.
21958
21959 * src/bison.s1: Test _MSDOS_, not MSDOS.
21960
21961 1996-07-30 Richard Stallman <rms@gnu.org>
21962
21963 * bison.simple: Comment change.
21964
21965 * bison.simple: Test _MSDOS_, not MSDOS.
21966
21967 1996-06-01 Richard Stallman <rms@gnu.org>
21968
21969 * 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:
21970 Insert `_' macro around many string constants.
21971
21972 * src/main.c:
21973 Insert `_' macro around many string constants.
21974
21975 (main): Call setlocale, bindtextdomain and textdomain.
21976
21977 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
21978 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
21979 [ENABLE_NLS]: Include libintl.h.
21980 [ENABLE_NLS] (gettext): Define.
21981 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
21982 (N_, PACKAGE, LOCALEDIR): New macros.
21983
21984 1996-06-01 Richard Stallman <rms@gnu.org>
21985
21986 * POTFILES.in: New file.
21987
21988 * Makefile.in (allocate.o):
21989 Define target explicitly.
21990
21991 * Makefile.in (CFLAGS): Set to @CFLAGS@.
21992 (LDFLAGS): Set to @LDFLAGS@.
21993 (configure): Run autoconf only if preceding `cd' succeeds.
21994 (bison.s1): Redirect output to temporary file then move the
21995 temporary to the target, rather than redirecting directly to bison.s1.
21996 (clean): Remove config.status and config.log.
21997 (distclean): Don't remove config.status here.
21998
21999 1996-05-12 Richard Stallman <rms@gnu.org>
22000
22001 * src/bison.s1:
22002 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
22003
22004 1996-05-12 Richard Stallman <rms@gnu.org>
22005
22006 * bison.simple:
22007 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
22008
22009 1996-05-11 Richard Stallman <rms@gnu.org>
22010
22011 * src/bison.s1 (__yy_memcpy):
22012 Really reorder the args, as was supposedly done on Feb 14 1995.
22013 (yyparse): Calls changed accordingly.
22014
22015 1996-05-11 Richard Stallman <rms@gnu.org>
22016
22017 * Makefile.in (dist): Don't use $(srcdir).
22018
22019 * bison.simple (__yy_memcpy):
22020 Really reorder the args, as was supposedly done on Feb 14 1995.
22021 (yyparse): Calls changed accordingly.
22022
22023 1996-01-27 Richard Stallman <rms@gnu.org>
22024
22025 * src/output.c (output_rule_data):
22026 Test YYERROR_VERBOSE in the conditional
22027 around the definition of ttyname.
22028
22029 1995-12-29 Richard Stallman <rms@gnu.org>
22030
22031 * src/bison.s1:
22032 Fix line numbers in #line commands.
22033
22034 1995-12-29 Richard Stallman <rms@gnu.org>
22035
22036 * bison.simple:
22037 Fix line numbers in #line commands.
22038
22039 1995-12-27 Richard Stallman <rms@gnu.org>
22040
22041 * src/bison.s1 (YYPARSE_PARAM_DECL):
22042 In C++, make it always null.
22043 (YYPARSE_PARAM_ARG): New macro.
22044 (yyparse): Use YYPARSE_PARAM_ARG.
22045
22046 1995-12-27 Richard Stallman <rms@gnu.org>
22047
22048 * bison.simple (YYPARSE_PARAM_DECL):
22049 In C++, make it always null.
22050 (YYPARSE_PARAM_ARG): New macro.
22051 (yyparse): Use YYPARSE_PARAM_ARG.
22052
22053 1995-11-29 Richard Stallman <rms@gnu.org>
22054
22055 * doc/bison.texinfo:
22056 Describe literal string tokens, %raw, %no_lines, %token_table.
22057
22058 1995-11-29 Daniel Hagerty <hag@gnu.org>
22059
22060 * doc/bison.texinfo: Fixed update date
22061
22062 1995-10-16 Richard Stallman <rms@gnu.org>
22063
22064 * src/version.c: Version 1.25.
22065
22066 1995-10-16 Richard Stallman <rms@gnu.org>
22067
22068 * NEWS: *** empty log message ***
22069
22070 1995-10-16 Richard Stallman <rms@gnu.org>
22071
22072 * doc/bison.1, doc/bison.rnh:
22073 Add new options.
22074
22075 1995-10-15 Richard Stallman <rms@gnu.org>
22076
22077 * src/vmsgetargs.c, src/getargs.c:
22078 Added -n, -k, and -raw switches.
22079 (noparserflag, toknumflag, rawtoknumflag): New variables.
22080
22081 * src/symtab.h (SALIAS):
22082 New #define for adding aliases to %token.
22083 (struct bucket): Added `alias' field.
22084
22085 * src/reduce.c (reduce_grammar):
22086 Revise error message.
22087 (print_notices): Remove final `.' from error message.
22088
22089 * src/reader.c (reader_output_yylsp):
22090 New function.
22091 (readgram): Use `#if 0' around code that accepted %command
22092 inside grammar rules: The documentation doesn't allow it,
22093 and it will fail since the %command processors scan for the next %.
22094 (parse_token_decl): Extended the %token
22095 declaration to allow a multi-character symbol as an alias.
22096 (parse_thong_decl): New function.
22097 (read_declarations): Added %thong declarations.
22098 (read_declarations): Handle NOOP to deal with allowing
22099 % declarations as another means to specify the flags.
22100 (readgram): Allow %prec prior to semantics embedded in a rule.
22101 (skip_to_char, read_declarations, copy_definition)
22102 (parse_token_decl, parse_start_decl, parse_type_decl)
22103 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
22104 (get_type_name, copy_guard, copy_action, readgram)
22105 (get_type, packsymbols): Revised most error messages.
22106 Changed `fatal' to `warnxxx' to avoid aborting for error.
22107 Revised and use multiple warnxxx functions to avoid using VARARGS1.
22108 (read_declarations): Improve the error message for
22109 an invalid character. Do not abort.
22110 (read_declarations, copy_guard, copy_action): Use
22111 printable_version to avoid unprintable characters in printed output.
22112 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
22113 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
22114 Allow the type of a non-terminal can be given
22115 more than once, as long as all specifications give the same type.
22116
22117 * src/output.c:
22118 (output_headers, output_trailers, output, output_gram)
22119 (output_rule_data): Implement noparserflag variable.
22120 Implement toknumflag variable.
22121 (output): Call reader_output_yylsp to output LTYPESTR.
22122
22123 * src/main.c (main):
22124 If reader sees an error, don't process the grammar.
22125 (fatals): Updated to not use VARARGS1.
22126 (printable_version, int_to_string, warn, warni, warns, warnss)
22127 (warnsss): New error reporting functions. Avoid abort for error.
22128
22129 * src/lex.h:
22130 Added THONG and NOOP for alias processing.
22131 Added SETOPT for the new code that allows setting options with %flags.
22132
22133 * src/lex.c:
22134 Include getopt.h. Add some extern decls.
22135 (safegetc): New function to deal with EOF gracefully.
22136 (literalchar); new function to deal with reading \ escapes.
22137 (lex): Use literalchar.
22138 (lex): Implemented "..." tokens.
22139 (literalchar, lex, parse_percent_token): Made tokenbuffer
22140 always contain the token. This includes growing the token
22141 buffer while reading an integer.
22142 (parse_percent_token): Replaced if-else statement with percent_table.
22143 (parse_percent_token): Added % declarations as another
22144 way to specify the flags -n, -l, and -r. Also added hooks for
22145 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
22146 major changes to files.c.
22147 (lex) Retain in the incoming stream a character following
22148 an incorrect '/'.
22149 (skip_white_space, lex): Revised most error messages
22150 and changed fatal to warn to avoid aborting.
22151 (percent_table): Added %thong declarations.
22152
22153 * src/gram.h: Comment changes.
22154
22155 * src/files.c (openfiles, open_extra_files, done):
22156 Add faction flag
22157 and actfile file. Handle noparserflag. Both for -n switch.
22158
22159 * src/conflicts.c (resolve_sr_conflict):
22160 Remove use of alloca.
22161
22162 1995-06-01 Jim Meyering <meyering@gnu.org>
22163
22164 * doc/bison.texinfo: *** empty log message ***
22165
22166 1995-05-06 Richard Stallman <rms@gnu.org>
22167
22168 * src/bison.s1: Comment change.
22169
22170 1995-05-06 Richard Stallman <rms@gnu.org>
22171
22172 * bison.simple: Comment change.
22173
22174 1995-05-03 Richard Stallman <rms@gnu.org>
22175
22176 * src/version.c: Version now 1.24.
22177
22178 * src/bison.s1: Change distribution terms.
22179
22180 * src/version.c: Version now 1.23.
22181
22182 1995-05-03 Richard Stallman <rms@gnu.org>
22183
22184 * doc/bison.texinfo:
22185 Rewrite "Conditions for Using Bison".
22186 Update version to 1.24.
22187
22188 1995-05-03 Richard Stallman <rms@gnu.org>
22189
22190 * bison.simple: Change distribution terms.
22191
22192 1995-02-23 Richard Stallman <rms@gnu.org>
22193
22194 * src/files.c: Test __VMS_POSIX as well as VMS.
22195
22196 1995-02-14 Jim Meyering <meyering@gnu.org>
22197
22198 * src/bison.s1 (__yy_memcpy):
22199 Renamed from __yy_bcopy to avoid
22200 confusion. Reverse FROM and TO arguments to be consistent with
22201 those of memcpy.
22202
22203 1995-02-14 Jim Meyering <meyering@gnu.org>
22204
22205 * bison.simple (__yy_memcpy):
22206 Renamed from __yy_bcopy to avoid
22207 confusion. Reverse FROM and TO arguments to be consistent with
22208 those of memcpy.
22209
22210 1994-11-10 David J. MacKenzie <djm@gnu.org>
22211
22212 * NEWS: reformat
22213
22214 * NEWS: New file.
22215
22216 * Makefile.in (DISTFILES): Include NEWS.
22217
22218 * Makefile.in (DISTFILES):
22219 Include install-sh, not install.sh.
22220
22221 * configure.in: Update to Autoconf v2 macro names.
22222
22223 1994-10-05 David J. MacKenzie <djm@gnu.org>
22224
22225 * Makefile.in: fix typo
22226
22227 * Makefile.in (prefix, exec_prefix):
22228 Let configure set them.
22229
22230 1994-09-28 David J. MacKenzie <djm@gnu.org>
22231
22232 * Makefile.in: Set datadir to $(prefix)/share.
22233
22234 1994-09-15 Richard Stallman <rms@gnu.org>
22235
22236 * src/bison.s1:
22237 Update copyright notice and GPL version.
22238
22239 1994-09-15 Richard Stallman <rms@gnu.org>
22240
22241 * bison.simple:
22242 Update copyright notice and GPL version.
22243
22244 1994-07-12 Richard Stallman <rms@gnu.org>
22245
22246 * src/reduce.c, src/reader.c:
22247 entered into RCS
22248
22249 1994-05-05 David J. MacKenzie <djm@gnu.org>
22250
22251 * Makefile.in: entered into RCS
22252
22253 1994-03-26 Richard Stallman <rms@gnu.org>
22254
22255 * src/bison.s1: entered into RCS
22256
22257 1994-03-26 Richard Stallman <rms@gnu.org>
22258
22259 * bison.simple: entered into RCS
22260
22261 1994-03-25 Richard Stallman <rms@gnu.org>
22262
22263 * src/main.c: entered into RCS
22264
22265 1994-03-24 Richard Stallman <rms@gnu.org>
22266
22267 * src/conflicts.c: entered into RCS
22268
22269 1994-01-02 Richard Stallman <rms@gnu.org>
22270
22271 * Makefile.in: *** empty log message ***
22272
22273 1993-11-21 Richard Stallman <rms@gnu.org>
22274
22275 * src/bison.s1: *** empty log message ***
22276
22277 1993-11-21 Richard Stallman <rms@gnu.org>
22278
22279 * doc/bison.texinfo: entered into RCS
22280
22281 * doc/bison.texinfo: *** empty log message ***
22282
22283 1993-11-21 Richard Stallman <rms@gnu.org>
22284
22285 * bison.simple: *** empty log message ***
22286
22287 1993-10-25 David J. MacKenzie <djm@gnu.org>
22288
22289 * doc/bison.texinfo: *** empty log message ***
22290
22291 1993-10-19 Richard Stallman <rms@gnu.org>
22292
22293 * src/bison.s1: *** empty log message ***
22294
22295 1993-10-19 Richard Stallman <rms@gnu.org>
22296
22297 * bison.simple: *** empty log message ***
22298
22299 1993-10-14 Richard Stallman <rms@gnu.org>
22300
22301 * src/bison.s1: *** empty log message ***
22302
22303 1993-10-14 Richard Stallman <rms@gnu.org>
22304
22305 * bison.simple: *** empty log message ***
22306
22307 1993-09-14 David J. MacKenzie <djm@gnu.org>
22308
22309 * doc/bison.texinfo: *** empty log message ***
22310
22311 1993-09-13 Noah Friedman <friedman@gnu.org>
22312
22313 * Makefile.in: *** empty log message ***
22314
22315 1993-09-10 Richard Stallman <rms@gnu.org>
22316
22317 * src/conflicts.c: *** empty log message ***
22318
22319 * src/system.h: entered into RCS
22320
22321 1993-09-10 Richard Stallman <rms@gnu.org>
22322
22323 * doc/bison.1: entered into RCS
22324
22325 1993-09-06 Noah Friedman <friedman@gnu.org>
22326
22327 * src/version.c: entered into RCS
22328
22329 1993-09-06 Noah Friedman <friedman@gnu.org>
22330
22331 * Makefile.in: *** empty log message ***
22332
22333 1993-07-30 David J. MacKenzie <djm@gnu.org>
22334
22335 * Makefile.in: *** empty log message ***
22336
22337 1993-07-24 Richard Stallman <rms@gnu.org>
22338
22339 * src/bison.s1: *** empty log message ***
22340
22341 1993-07-24 Richard Stallman <rms@gnu.org>
22342
22343 * bison.simple: *** empty log message ***
22344
22345 1993-07-08 David J. MacKenzie <djm@gnu.org>
22346
22347 * Makefile.in: *** empty log message ***
22348
22349 1993-07-04 Richard Stallman <rms@gnu.org>
22350
22351 * src/bison.s1: *** empty log message ***
22352
22353 1993-07-04 Richard Stallman <rms@gnu.org>
22354
22355 * bison.simple: *** empty log message ***
22356
22357 1993-06-26 David J. MacKenzie <djm@gnu.org>
22358
22359 * src/getargs.c: entered into RCS
22360
22361 1993-06-26 David J. MacKenzie <djm@gnu.org>
22362
22363 * doc/bison.texinfo: *** empty log message ***
22364
22365 * doc/bison.1: New file.
22366
22367 1993-06-25 Richard Stallman <rms@gnu.org>
22368
22369 * src/getargs.c: New file.
22370
22371 1993-06-16 Richard Stallman <rms@gnu.org>
22372
22373 * src/bison.s1: *** empty log message ***
22374
22375 1993-06-16 Richard Stallman <rms@gnu.org>
22376
22377 * bison.simple: *** empty log message ***
22378
22379 1993-06-03 Richard Stallman <rms@gnu.org>
22380
22381 * src/bison.s1: New file.
22382
22383 1993-06-03 Richard Stallman <rms@gnu.org>
22384
22385 * doc/bison.texinfo: *** empty log message ***
22386
22387 1993-06-03 Richard Stallman <rms@gnu.org>
22388
22389 * bison.simple: New file.
22390
22391 1993-05-19 Richard Stallman <rms@gnu.org>
22392
22393 * doc/bison.texinfo: New file.
22394
22395 1993-05-07 Noah Friedman <friedman@gnu.org>
22396
22397 * Makefile.in: *** empty log message ***
22398
22399 1993-04-28 Noah Friedman <friedman@gnu.org>
22400
22401 * src/reader.c: *** empty log message ***
22402
22403 1993-04-23 Noah Friedman <friedman@gnu.org>
22404
22405 * src/alloc.h: entered into RCS
22406
22407 1993-04-20 David J. MacKenzie <djm@gnu.org>
22408
22409 * src/version.c: *** empty log message ***
22410
22411 * src/files.c, src/allocate.c:
22412 entered into RCS
22413
22414 * src/reader.c: *** empty log message ***
22415
22416 * src/lex.c: entered into RCS
22417
22418 * src/conflicts.c: New file.
22419
22420 * src/symtab.c: entered into RCS
22421
22422 * src/alloc.h: New file.
22423
22424 * src/LR0.c: entered into RCS
22425
22426 1993-04-18 Noah Friedman <friedman@gnu.org>
22427
22428 * src/reader.c: New file.
22429
22430 * src/version.c: *** empty log message ***
22431
22432 1993-04-18 Noah Friedman <friedman@gnu.org>
22433
22434 * Makefile.in: *** empty log message ***
22435
22436 1993-04-17 Noah Friedman <friedman@gnu.org>
22437
22438 * Makefile.in: *** empty log message ***
22439
22440 1993-04-15 Richard Stallman <rms@gnu.org>
22441
22442 * src/main.c, src/files.c:
22443 New file.
22444
22445 1993-04-15 Noah Friedman <friedman@gnu.org>
22446
22447 * configure.in: entered into RCS
22448
22449 * configure.in: *** empty log message ***
22450
22451 * configure.in: New file.
22452
22453 1993-04-14 Richard Stallman <rms@gnu.org>
22454
22455 * Makefile.in: New file.
22456
22457 1993-04-13 Richard Stallman <rms@gnu.org>
22458
22459 * src/version.c: New file.
22460
22461 1993-03-25 Richard Stallman <rms@gnu.org>
22462
22463 * src/output.c: entered into RCS
22464
22465 1992-09-25 Richard Stallman <rms@gnu.org>
22466
22467 * configure.bat: entered into RCS
22468
22469 1992-06-22 Richard Stallman <rms@gnu.org>
22470
22471 * src/vmsgetargs.c: entered into RCS
22472
22473 1992-06-22 Richard Stallman <rms@gnu.org>
22474
22475 * doc/bison.rnh: entered into RCS
22476
22477 1992-04-20 David J. MacKenzie <djm@gnu.org>
22478
22479 * README: entered into RCS
22480
22481 1992-01-22 Richard Stallman <rms@gnu.org>
22482
22483 * src/machine.h: entered into RCS
22484
22485 1991-12-21 Richard Stallman <rms@gnu.org>
22486
22487 * src/lalr.c, src/closure.c:
22488 entered into RCS
22489
22490 1991-12-20 Richard Stallman <rms@gnu.org>
22491
22492 * src/state.h: entered into RCS
22493
22494 1991-12-18 Richard Stallman <rms@gnu.org>
22495
22496 * src/print.c, src/nullable.c, src/derives.c:
22497 entered into RCS
22498
22499 1991-11-03 David J. MacKenzie <djm@gnu.org>
22500
22501 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
22502 entered into RCS
22503
22504 1988-09-09 Richard Stallman <rms@gnu.org>
22505
22506 * src/bison.hairy: entered into RCS
22507
22508 1987-12-16 Richard Stallman <rms@gnu.org>
22509
22510 * REFERENCES: entered into RCS
22511
22512
22513 -----
22514
22515 Copyright (C) 1987, 1988, 1991, 1992, 1993, 1994, 1995, 1996,
22516 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
22517 Free Software Foundation, Inc.
22518
22519 Copying and distribution of this file, with or without
22520 modification, are permitted provided the copyright notice and this
22521 notice are preserved.