]> git.saurik.com Git - bison.git/blob - ChangeLog
Better error message.
[bison.git] / ChangeLog
1 2008-11-15 Akim Demaille <demaille@gostai.com>
2
3 Better error message.
4 * bootstrap (find_tool): Fix the error message.
5
6 2008-11-15 Akim Demaille <demaille@gostai.com>
7
8 Update variant.yy to newest interface.
9 * examples/variant.yy: Define lex_symbol.
10 Adjust.
11
12 2008-11-15 Akim Demaille <demaille@gostai.com>
13
14 Don't use locations in variant.yy.
15 * examples/variant.yy: Adjust to not using locations.
16
17 2008-11-15 Akim Demaille <demaille@gostai.com>
18
19 Comment changes.
20 * data/local.mk, etc/local.mk, examples/local.mk: Use Automake
21 comments for the license.
22
23 2008-11-15 Akim Demaille <demaille@gostai.com>
24
25 Remove tests/Makefile.am.
26 * tests/Makefile.am: Rename as...
27 * tests/local.mk: this.
28 * Makefile.am, configure.ac: Adjust.
29 * Makefile.am (DISTCLEANFILES): Define.
30 (maintainer-check, maintainer-xml-check, maintainer-push-check):
31 Remove, we no longer need to bounce to the real targets.
32
33 2008-11-15 Akim Demaille <demaille@gostai.com>
34
35 Comment changes.
36
37 2008-11-15 Akim Demaille <demaille@gostai.com>
38
39 djgpp/local.mk.
40 * Makefile.am (EXTRA_DIST): Move djgpp related part to...
41 * djgpp/local.mk: this new file.
42
43 2008-11-15 Akim Demaille <demaille@gostai.com>
44
45 Remove doc/Makefile.am.
46 * doc/Makefile.am: Rename as...
47 * doc/local.mk: this.
48 Adjust paths
49 * Makefile.am, configure.ac: Adjust.
50 * Makefile.am (MOSTLYCLEANFILES): New.
51 * src/local.mk: Adjust.
52
53 2008-11-15 Akim Demaille <demaille@gostai.com>
54
55 Move sc_tight_scope into maint.mk.
56 It does not work, and I don't know how it was supposed to work: it seems
57 to be looking for sources in the build tree. I just moved it at a better
58 place, fixing it is still required.
59
60 * src/local.mk (echo): Remove.
61 (sc_tight_scope): Move to...
62 * maint.mk: here.
63
64 2008-11-15 Akim Demaille <demaille@gostai.com>
65
66 Regen.
67 * src/parse-gram.h, src/parse-gram.h: Regen.
68
69 2008-11-15 Akim Demaille <demaille@gostai.com>
70
71 Remove src/Makefile.am.
72 * src/Makefile.am: Rename as...
73 * src/local.mk: this.
74 Prefix all the paths with src/.
75 (AUTOMAKE_OPTIONS): Build object files in the sub dirs.
76 (AM_CPPFLAGS): Find find in builddir/src.
77 (YACC): Move the flags into...
78 (AM_YFLAGS): here.
79 * maint.mk (sc_tight_scope): Disable.
80 It used to bounce to the version in src/Makefile.am which is now
81 part of this very Makefile.
82 * Makefile.am, configure.ac: Adjust.
83 * src/scan-code-c.c, src/scan-code.l: We can no longer rely on
84 include "..." to find files "here": we are no longer in src/, so
85 qualify the includes with src/.
86 * doc/Makefile.am (PREPATH): No longer include the top_builddir
87 prefix.
88 (.x.1): Adjust to be able to create src/foo from the top level
89 Makefile, instead of going bounce to src/Makefile the creation of
90 foo.
91
92 2008-11-15 Akim Demaille <demaille@gostai.com>
93
94 Remove useless variable.
95 * doc/Makefile.am (srcsrcdir): Remove.
96
97 2008-11-15 Akim Demaille <demaille@gostai.com>
98
99 Remove data/Makefile.am.
100 * data/Makefile.am: Rename as...
101 * data/local.mk: this.
102 Adjust paths.
103 * Makefile.am, configure.ac: Adjust.
104
105 2008-11-15 Akim Demaille <demaille@gostai.com>
106
107 Remove etc/Makefile.am.
108 * etc/Makefile.am: Rename as...
109 * etc/local.mk: this.
110 Adjust.
111 * Makefile.am, configure.ac: Adjust.
112
113 2008-11-15 Akim Demaille <demaille@gostai.com>
114
115 Remove examples/local.mk.
116 examples/calc++/Makefile.am might be interesting to keep as is, since
117 it is an example in itself.
118
119 * examples/Makefile.am: Rename as...
120 * examples/local.mk: this.
121 Adjust.
122 * Makefile.am, configure.ac: Adjust.
123
124 2008-11-15 Akim Demaille <demaille@gostai.com>
125
126 Remove build-aux/Makefile.am.
127 Recursive Makefiles are really way too slow, let's get rid of some of
128 them.
129
130 * build-aux/Makefile.am: Rename as...
131 * build-aux/local.mk: this.
132 Adjust paths.
133 * Makefile.am, configure.ac: Adjust.
134
135 2008-11-15 Akim Demaille <demaille@gostai.com>
136
137 Provide convenience constructors for locations and positions.
138 * data/location.cc (position::position): Accept file, line and
139 column as arguments with default values.
140 Always qualify initial line and column literals as unsigned.
141 (location::location): Provide convenience constructors.
142
143 2008-11-15 Akim Demaille <demaille@gostai.com>
144
145 Instead of using make_symbol<TOK_FOO>, generate make_FOO for each token type.
146 Using template buys us nothing, and makes it uselessly complex to
147 construct a symbol. Besides, it could not be generalized to other
148 languages, while make_FOO would work in C/Java etc.
149
150 * data/lalr1.cc (b4_symbol_): New.
151 (b4_symbol): Use it.
152 (b4_symbol_constructor_declaration_)
153 (b4_symbol_constructor_definition_): Instead of generating
154 specializations of an overloaded template function, just generate
155 several functions whose names are forged from the token names
156 without the token.prefix.
157 (b4_symbol_constructor_declarations): Generate them for all the
158 symbols, not just by class of symbol type, now that instead of
159 specializing a function template by the token, we generate a
160 function named after the token.
161 (b4_symbol_constructor_specialization_)
162 (b4_symbol_constructor_specializations): Remove.
163 * etc/bench.pl.in: Adjust to this new API.
164
165 2008-11-13 Akim Demaille <demaille@gostai.com>
166
167 %define token.prefix.
168 Provide a means to add a prefix to the name of the tokens as output in the
169 generated files. Because of name clashes, it is good to have such a
170 prefix such as TOK_ that protects from names such as EOF, FILE etc.
171 But it clutters the grammar itself.
172
173 * data/bison.m4 (token.prefix): Empty by default.
174 * data/c.m4 (b4_token_enum, b4_token_define): Use it.
175 * data/lalr1.cc (b4_symbol): Ditto.
176
177 2008-11-13 Akim Demaille <demaille@gostai.com>
178
179 Compute at M4 time some of the subtractions.
180 * data/lalr1.cc (b4_substract): New.
181 (b4_rhs_data): Use it.
182
183 2008-11-13 Akim Demaille <demaille@gostai.com>
184
185 symbol::token.
186 This is allows the user to get the type of a token return by
187 yylex.
188
189 * data/lalr1.cc (symbol::token): New.
190 (yytoknum_): Define when %define lex_symbol, independently of
191 %debug.
192 (yytoken_number_): Move into...
193 (symbol::token): here, since that's the only use.
194 The other one is YYPRINT which was not officially supported
195 by lalr1.cc, and anyway it did not work since YYPRINT uses this
196 array under a different name (yytoknum).
197
198 2008-11-13 Akim Demaille <demaille@gostai.com>
199
200 YYERRCODE.
201 * TODO (YYERRCODE): Mention the case of $undef.
202
203 2008-11-13 Akim Demaille <demaille@gostai.com>
204
205 TODO: YYPRINT.
206 * TODO (YYPRINT): New.
207
208 2008-11-13 Akim Demaille <demaille@gostai.com>
209
210 Comment changes.
211 * data/lalr1.cc, data/yacc.c: Fix the description of the
212 yytranslate and yytoknum tables.
213
214 2008-11-13 Akim Demaille <demaille@gostai.com>
215
216 Define make_symbol in the header.
217 To reach good performances these functions should be inlined (yet this is
218 to measure precisely). To this end they must be available to the caller.
219
220 * data/lalr1.cc (b4_symbol_constructor_definition_): Qualify
221 location_type with the class name.
222 Since will now be output in the header, declare "inline".
223 No longer use b4_symbol_constructor_specializations, but
224 b4_symbol_constructor_definitions in the header.
225 Don't call it in the *.cc file.
226
227 2008-11-13 Akim Demaille <demaille@gostai.com>
228
229 Define yytranslate in the header for lex_symbol.
230 * data/lalr1.cc: Move the invocation of b4_yytranslate_definition
231 into the header file when using %define lex_symbol.
232 (yytranslate_): Declare inline.
233
234 2008-11-13 Akim Demaille <demaille@gostai.com>
235
236 Define the constructors of symbol_type in b4_symbol_constructor_definitions.
237 The constructors are called by the make_symbol functions, which a
238 forthcoming patch will move elsewhere. Hence the interest of putting them
239 together.
240
241 The stack_symbol_type does not need to be moved, it is used only by the
242 parser.
243
244 * data/lalr1.cc: Move symbol_type and symbol_base_type
245 constructors into...
246 (b4_symbol_constructor_definitions): here.
247 Adjust.
248
249 2008-11-13 Akim Demaille <demaille@gostai.com>
250
251 Make it easier to move the definition of yytranslate_.
252 Forthcoming changes will make it possible to use yytranslate_
253 from outside the parser implementation file.
254
255 * data/lalr1.cc (b4_yytranslate_definition): New.
256 Use it.
257
258 2008-11-13 Akim Demaille <demaille@gostai.com>
259
260 Remove useless class specification.
261 * data/lalr1.cc (b4_symbol_constructor_specialization_): No need
262 to refer to the class name to use a type defined by the class for
263 arguments of member functions.
264
265 2008-11-13 Akim Demaille <demaille@gostai.com>
266
267 Finer input type for yytranslate.
268 This patch is debatable: the tradition expects yylex to return an int
269 which happens to correspond to token_number (which is an enum). This
270 allows for instance to return characters (such as '*' etc.). But this
271 goes against the stronger typing I am trying to have with the new
272 lex interface which return a symbol_type. So in this case, feed
273 yytranslate_ with a token_type.
274
275 * data/lalr1.cc (yytranslate_): When in %define lex-symbol,
276 expect a token_type.
277
278 2008-11-13 Akim Demaille <demaille@gostai.com>
279
280 Honor lex-params in %define lex_symbol mode.
281 * data/lalr1.cc: Use b4_lex_param.
282
283 2008-11-13 Akim Demaille <demaille@gostai.com>
284
285 Simplify names.
286 * src/output.c (symbol_definitions_output): Rename symbol
287 attributes type_name and has_type_name as type and has_type.
288 * data/lalr1.cc: Adjust uses.
289
290 2008-11-13 Akim Demaille <demaille@gostai.com>
291
292 Use b4_type_names for the union type.
293 The union used to compute the size of the variant used to iterate over the
294 type of all the symbols, with a lot of redundancy. Now iterate over the
295 lists of symbols having the same type-name.
296
297 * data/lalr1.cc (b4_char_sizeof_): New.
298 (b4_char_sizeof): Use it.
299 Adjust to be called with a list of numbers instead of a single
300 number.
301 Adjust its caller for new-line issues.
302
303 2008-11-13 Akim Demaille <demaille@gostai.com>
304
305 Define the "identifier" of a symbol.
306 Symbols may have several string representations, for instance if they
307 have an alias. What I call its "id" is a string that can be used as
308 an identifier. May not exist.
309
310 Currently the symbols which have the "tag_is_id" flag set are those that
311 don't have an alias. Look harder for the id.
312
313 * src/output.c (is_identifier): Move to...
314 * src/symtab.c (is_identifier): here.
315 * src/symtab.h, src/symtab.c (symbol_id_get): New.
316 * src/output.c (symbol_definitions_output): Use it to define "id"
317 and "has_id".
318 Remove the definition of "tag_is_id".
319 * data/lalr1.cc: Use the "id" and "has_id" whereever "tag" and
320 "tag_is_id" were used to produce code.
321 We still use "tag" for documentation.
322
323 2008-11-11 Akim Demaille <demaille@gostai.com>
324
325 Locations are no longer required by lalr1.cc.
326 * data/lalr1.cc (_b4_args, b4_args): New.
327 Adjust all uses of locations to make them optional.
328 * tests/c++.at (AT_CHECK_VARIANTS): No longer use the locations.
329 (AT_CHECK_NAMESPACE): Check the use of locations.
330 * tests/calc.at (_AT_DATA_CALC_Y): Adjust to be usable with or
331 without locations with lalr1.cc.
332 Test these cases.
333 * tests/output.at: Check lalr1.cc with and without location
334 support.
335 * tests/regression.at (_AT_DATA_EXPECT2_Y, _AT_DATA_DANCER_Y):
336 Don't use locations.
337
338 2008-11-11 Akim Demaille <demaille@gostai.com>
339
340 AT_FULL_COMPILE.
341 * tests/local.at (AT_FULL_COMPILE): New.
342 * tests/actions.at, tests/calc.at, tests/regression.at: Use it.
343
344 2008-11-11 Akim Demaille <demaille@gostai.com>
345
346 Support parens in calc++.
347 * doc/bison.texinfo (Calc++ Scanner, Calc++ Parser): Support parens.
348 * examples/calc++/test (run): Check the expected output.
349 Adjust callers.
350 Check parens too.
351
352 2008-11-11 Akim Demaille <demaille@gostai.com>
353
354 Simplify lalr1.cc since %defines is mandatory.
355 * data/lalr1.cc: Remove useless calls to b4_defines_if.
356
357 2008-11-11 Akim Demaille <demaille@gostai.com>
358
359 TODO: yyfmt.
360 * TODO (yysyntax_error): New item.
361
362 2008-11-11 Akim Demaille <demaille@gostai.com>
363
364 Prefer M4 to CPP.
365 * data/lalr1.cc: Use b4_error_verbose_if instead of #if
366 YYERROR_VERBOSE.
367
368 2008-11-11 Akim Demaille <demaille@gostai.com>
369
370 Support i18n of the parse error messages.
371 * TODO (lalr1.cc/I18n): Remove.
372 * data/lalr1.cc (yysyntax_error_): Support the translation of the
373 error messages, as done in yacc.c.
374 Stay within the yy* pseudo namespace.
375
376 2008-11-11 Akim Demaille <demaille@gostai.com>
377
378 More TODO.
379 * TODO (single stack, yysyntax_error): New.
380
381 2008-11-11 Akim Demaille <demaille@gostai.com>
382
383 Make it possible to return a symbol_type from yylex.
384 * data/lalr1.cc (b4_lex_symbol_if): New.
385 (parse): When lex_symbol is defined, expected yylex to return the
386 complete lookahead.
387 * etc/bench.pl.in (generate_grammar_list): Extend to support this
388 yylex interface.
389 (bench_variant_parser): Exercise it.
390
391 2008-11-11 Akim Demaille <demaille@gostai.com>
392
393 Remove useless bench case.
394 * etc/bench.pl.in (bench_variant_parser): VARIANT_DESTROY is
395 no longer used.
396
397 2008-11-11 Akim Demaille <demaille@gostai.com>
398
399 Improve display of directives.
400 * etc/bench.pl.in (parse_term): Don't add useless eol.
401
402 2008-11-11 Akim Demaille <demaille@gostai.com>
403
404 Use string_cast in the bench.
405 * etc/bench.pl.in (generate_grammar_list): Define and use
406 string_cast.
407
408 2008-11-11 Akim Demaille <demaille@gostai.com>
409
410 Replace yychar with a Boolean.
411 * data/lalr1.cc (parse::yychar): Replace by...
412 (parse::yyempty): this.
413
414 2008-11-11 Akim Demaille <demaille@gostai.com>
415
416 Factor the tables.
417 * TODO: New item.
418
419 2008-11-11 Akim Demaille <demaille@gostai.com>
420
421 Let yytranslate handle the eof case.
422 * data/lalr1.cc (yytranslate_): Handle the EOF case.
423 Adjust callers.
424 No longer expect yychar to be equal to yyeof_, rather, test the
425 lookahead's (translated) kind.
426
427 2008-11-11 Akim Demaille <demaille@gostai.com>
428
429 yychar cannot be empty in yyerrlab.
430 * TODO (yychar == yyempty_): New.
431 * data/lalr1.cc: Remove the handling of this case.
432 This eases forthcoming changes related to yychar and yytranslate.
433
434 2008-11-11 Akim Demaille <demaille@gostai.com>
435
436 Bench: syntactic sugar for %define/#define.
437 * etc/bench.pl.in (parse_dirs): Support %d and #d with arguments.
438 (&bench_push_parser, bench_variant_parser): Use this feature.
439 (&eat): New.
440 Use it.
441
442 2008-11-11 Akim Demaille <demaille@gostai.com>
443
444 Less memory pressure on the "list" bench.
445 * etc/bench.pl.in (generate_grammar_list): Do not accumulate all
446 the values, to limit memory pressure.
447
448 2008-11-11 Akim Demaille <demaille@gostai.com>
449
450 Introduce make_symbol.
451 make_symbol provides a means to construct a full symbol (kind, value,
452 location) in a single shot. It is meant to be a Symbol constructor,
453 parameterized by the symbol kind so that overloading would prevent
454 incorrect kind/value pairs. Unfortunately parameterized constructors do
455 not work well in C++ (unless the parameter also appears as an argument,
456 which is not acceptable), hence the use of a function instead of a
457 constructor.
458
459 * data/lalr1.cc (b4_symbol_constructor_declaration_)
460 (b4_symbol_constructor_declarations)
461 (b4_symbol_constructor_specialization_)
462 (b4_symbol_constructor_specializations)
463 (b4_symbol_constructor_definition_)
464 (b4_symbol_constructor_definitions): New.
465 Use them where appropriate to generate declaration, declaration of
466 the specializations, and implementations of the templated
467 overloaded function "make_symbol".
468 (variant::variant): Always define a default ctor.
469 Also provide a copy ctor.
470 (symbol_base_type, symbol_type): New ctor overloads for value-less
471 symbols.
472 (symbol_type): Now public, so that functions such as yylex can use
473 it.
474
475 2008-11-11 Akim Demaille <demaille@gostai.com>
476
477 Inform m4 whether a tag is a valid id.
478 * src/output.c (is_identifier): New.
479 (symbol_definitions_output): Use it to define tag_is_id.
480 But maybe this should be done at m4 level?
481
482 2008-11-11 Akim Demaille <demaille@gostai.com>
483
484 Test 214 was failing: it greps with a pattern containing [ ]*
485 which obviously meant to catch spaces and tabs, but contained only
486 spaces. Tabulations in sources are a nuisance, so to simplify the
487 matter, get rid of all the tabulations in the Java sources. The
488 other skeletons will be treated equally later.
489
490 * data/java.m4, data/lalr1.java: Untabify.
491 * tests/java.at: Simplify AT_CHECK_JAVA_GREP invocations:
492 tabulations are no longer generated.
493
494 2008-11-11 Paolo Bonzini <bonzini@gnu.org>
495
496 * bootstrap.conf: Replace m4/warning.m4 with warnings module.
497 * configure.ac: Adjust usage.
498 * lib/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
499 * src/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
500 * tests/atlocal.in: Replace $(WARNING_*FLAGS) with $(WARN_*FLAGS).
501
502 2008-11-10 Di-an Jan <dianj@freeshell.org>
503
504 Workaround Java's ``code too large'' problem for parser tables
505 in most cases, by using one function per initialization.
506 * data/java.m4 (b4_typed_parser_table, b4_integral_parser_table): New.
507 * data/lalr1.java (yypact_, yydefact_, yypgoto_, yydefgoto_,
508 yytable_, yycheck_, yystos_, yytoken_number_, yyr1_, yyr2_, yyrhs_
509 yyprhs_, yyrline_, yytranslate_table_): Use b4_integral_parser_table.
510 (yytname_): Use b4_typed_parser_table.
511 * doc/bison.texinfo (Java Bison Interface): Add note on Java's
512 ``code too large'' error.
513
514 2008-11-10 Di-an Jan <dianj@freeshell.org>
515
516 * NEWS: Document them.
517
518 General Java skeleton improvements.
519 * configure.ac (gt_JAVACOMP): Request target of 1.4, which allows
520 using gcj < 4.3 in the testsuite, according to comments in
521 gnulib/m4/javacomp.m4.
522 * data/java.m4 (stype, parser_class_name, lex_throws, throws,
523 location_type, position_type): Remove extraneous brackets from
524 b4_percent_define_default.
525 (b4_lex_param, b4_parse_param): Remove extraneous brackets from
526 m4_define and m4_define_default.
527 * data/lalr1.java (b4_pre_prologue): Change to b4_user_post_prologue,
528 which marks the end of user code with appropriate syncline, like all
529 the other skeletons.
530 (b4_user_post_prologue): Add. Don't silently drop.
531 (yylex): Remove.
532 (parse): Inline yylex.
533 * doc/bison.texinfo (bisonVersion, bisonSkeleton): Document.
534 (%{...%}): Fix typo of %code imports.
535 * tests/java.at (AT_JAVA_COMPILE): Add "java" keyword.
536
537 Support annotations on parser class with %define annotations.
538 * data/lalr1.java (annotations): Add to parser class modifier.
539 * doc/bison.texinfo (Java Parser Interface): Document
540 %define annotations.
541 (Java Declarations Summary): Document %define annotations.
542 * tests/java.at (Java parser class modifiers): Test annotations.
543
544 Do not generate code for %error-verbose unless requested.
545 * data/lalr1.java (errorVerbose): Rename to yyErrorVerbose.
546 Make private. Make conditional on %error-verbose.
547 (getErrorVerbose, setErrorVerbose): New.
548 (yytnamerr_): Make conditional on %error-verbose.
549 (yysyntax_error): Make some code conditional on %error-verbose.
550 * doc/bison.texinfo (Java Bison Interface): Remove the parts
551 about %error-verbose having no effect.
552 (getErrorVerbose, setErrorVerbose): Document.
553
554 Move constants for token names to Lexer interface.
555 * data/lalr1.java (Lexer): Move EOF, b4_token_enums(b4_tokens) here.
556 * data/java.m4 (b4_token_enum): Indent for move to Lexer interface.
557 (parse): Qualify EOF to Lexer.EOF.
558 * doc/bison.texinfo (Java Parser Interface): Move documentation of
559 EOF and token names to Java Lexer Interface.
560 * tests/java.at (_AT_DATA_JAVA_CALC_Y): Remove Calc qualifier.
561
562 Make yyerror public.
563 * data/lalr1.java (Lexer.yyerror): Use longer parameter name.
564 (yyerror): Change to public. Add Javadoc comments. Use longer
565 parameter names. Make the body rather than the declarator
566 conditional on %locations.
567 * doc/bison.texinfo (yyerror): Document. Don't mark as protected.
568
569 Allow user to add code to the constructor with %code init.
570 * data/java.m4 (b4_init_throws): New, for %define init_throws.
571 * data/lalr1.java (YYParser.YYParser): Add b4_init_throws.
572 Add %code init to the front of the constructor body.
573 * doc/bison.texinfo (YYParser.YYParser): Document %code init
574 and %define init_throws.
575 (Java Declarations Summary): Document %code init and
576 %define init_throws.
577 * tests/java.at (Java %parse-param and %lex-param): Adjust grep.
578 (Java constructor init and init_throws): Add tests.
579
580 2008-11-10 Akim Demaille <demaille@gostai.com>
581
582 Update TODO.
583 * TODO (-D): is implemented.
584 (associativity): Same precedence must have the same associativity.
585 For instance, how can a * b / c be parsed if * is %left and / is
586 %right?
587 (YYERRORCODE, YYFAIL, YYBACKUP): New.
588
589 2008-11-10 Akim Demaille <demaille@gostai.com>
590
591 Formatting changes.
592
593 2008-11-10 Akim Demaille <demaille@gostai.com>
594
595 More information about the symbols.
596 * src/output.c (type_names_output): Document all the symbols,
597 including those that don't have a type-name.
598 (symbol_definitions_output): Define "is_token" and
599 "has_type_name".
600 * data/lalr1.cc (b4_type_action_): Skip symbols that have an empty
601 type-name, now that they are defined too in b4_type_names.
602
603 2008-11-10 Akim Demaille <demaille@gostai.com>
604
605 Regen.
606
607 2008-11-10 Akim Demaille <demaille@gostai.com>
608
609 Make parser::yytranslate static.
610 Small speedup (1%) on the list grammar. And makes yytranslate_ available
611 in non member functions.
612
613 * data/lalr1.cc (yytranslate_): Does not need to be a instance
614 function.
615
616 2008-11-10 Akim Demaille <demaille@gostai.com>
617
618 Avoid trailing spaces.
619 * data/c.m4: b4_comment(TEXT): Don't indent empty lines.
620 * data/lalr1.cc: Don't indent before rule and symbol actions, as
621 they can be empty, and anyway this incorrectly indents the first
622 action.
623
624 2008-11-10 Akim Demaille <demaille@gostai.com>
625
626 Comment changes.
627
628 2008-11-10 Akim Demaille <demaille@gostai.com>
629
630 Use "enum" for integral constants.
631 This is just nicer to read, I observed no speedup.
632
633 * data/lalr1.cc (yyeof_, yylast_, yynnts_, yyempty_, yyfinal_)
634 (yterror_, yyerrcode_, yyntokens_): Define as members of an enum.
635 (yyuser_token_number_max_, yyundef_token_): Move into...
636 (yytranslate_): here.
637
638 2008-11-10 Akim Demaille <demaille@gostai.com>
639
640 Shortcuts in bench directives.
641 * etc/bench.pl.in (parse_dirs): New.
642 Use it.
643 (bench_variant_parser, bench_fusion_parser): Use %s and %d.
644 Create the benches in "benches/".
645
646 2008-11-10 Akim Demaille <demaille@gostai.com>
647
648 Formatting changes.
649 * data/lalr1.cc: here.
650
651 2008-11-10 Akim Demaille <demaille@gostai.com>
652
653 Adjust verbose message to using emacs.
654 * etc/bench.pl.in: Inform compilation-mode when we change the
655 directory.
656 (generate_grammar_list): Recognize %define "variant" in addition
657 to %define variant.
658
659 2008-11-10 Akim Demaille <demaille@gostai.com>
660
661 Classify symbols by type-name.
662 * src/uniqstr.h (UNIQSTR_CMP): New.
663 * src/output.c (symbol_type_name_cmp, symbols_by_type_name)
664 (type_names_output): New.
665 (muscles_output): Use it.
666 * data/lalr1.cc (b4_symbol_action_): Remove.
667 (b4_symbol_case_, b4_type_action_): New.
668 Adjust uses of b4_symbol_action_ to use b4_type_action_.
669
670 2008-11-10 Akim Demaille <demaille@gostai.com>
671
672 Change the handling of the symbols in the skeletons.
673 Before we were using tables which lines were the symbols and which
674 columns were things like number, tag, type-name etc. It is was
675 difficult to extend: each time a column was added, all the numbers had
676 to be updated (you asked for colon $2, not for "tag"). Also, it was
677 hard to filter these tables when only a subset of the symbols (say the
678 tokens, or the nterms, or the tokens that have and external number
679 *and* a type-name) was of interest.
680
681 Now instead of monolithic tables, we define one macro per cell. For
682 instance "b4_symbol(0, tag)" is a macro name which contents is
683 self-decriptive. The macro "b4_symbol" provides easier access to
684 these cells.
685
686 * src/output.c (type_names_output): Remove.
687 (symbol_numbers_output, symbol_definitions_output): New.
688 (muscles_output): Call them.
689 (prepare_symbols): Define b4_symbols_number.
690
691 2008-11-10 Akim Demaille <demaille@gostai.com>
692
693 --trace=muscles
694 * src/getargs.h, src/getargs.c (trace_muscle): New.
695 (trace_types, trace_args): Support it.
696 * src/output.c (output_skeleton): Use it.
697
698 2008-11-10 Akim Demaille <demaille@gostai.com>
699
700 muscles_output.
701 * src/output.c (muscles_output): New, extracted from...
702 (output_skeleton): here.
703 Adjust.
704
705 2008-11-10 Akim Demaille <demaille@gostai.com>
706
707 Formatting changes.
708
709 2008-11-10 Akim Demaille <demaille@gostai.com>
710
711 Update the variant example.
712 * examples/variant.yy: Formatting changes.
713 One stage build.
714
715 2008-11-10 Akim Demaille <demaille@gostai.com>
716
717 Support constructor with an argument.
718 This improves the "list" bench by 2%.
719
720 * data/lalr1.cc (variant::build): Add an overloaded version with
721 an argument.
722 * tests/c++.at (AT_CHECK_VARIANT): Check it.
723
724 2008-11-10 Akim Demaille <demaille@gostai.com>
725
726 Test variants.
727 * tests/c++.at (AT_CHECK_VARIANTS): New.
728 Use it with and without %define assert.
729
730 2008-11-10 Akim Demaille <demaille@gostai.com>
731
732 Add %precedence support.
733 Unfortunately it is not possible to reuse the %prec directive. This
734 is because to please POSIX, we do not require to end the rules with a
735 semicolon. As a result,
736
737 foo: bar %prec baz
738
739 is ambiguous: either a rule which precedence is that of baz, or a rule,
740 and then a declaration of the precedence of the token baz.
741
742 * doc/bison.texinfo: Document %precedence.
743 (Precedence Only): New.
744 * src/assoc.h, src/assoc.c (precedence_assoc): New.
745 * src/conflicts.c (resolve_sr_conflict): Support it.
746 * src/scan-gram.l, src/parse-gram.y (%precedence): New token.
747 Parse it.
748 * tests/calc.at: Use %precedence for NEG.
749 * tests/conflicts.at (%precedence does not suffice)
750 (%precedence suffices): New tests.
751
752 2008-11-09 Akim Demaille <demaille@gostai.com>
753
754 Make benches in a sub dirs.
755 * etc/bench.pl.in ($dir): New.
756 Use it.
757 Check the use of constructors with an argument.
758 (bench_variant_parser): Fix.
759
760 2008-11-09 Akim Demaille <demaille@gostai.com>
761
762 fix eof condition
763
764 2008-11-09 Akim Demaille <demaille@gostai.com>
765
766 Fix --help.
767
768 2008-11-09 Akim Demaille <demaille@gostai.com>
769
770 Require the generation of parse-gram.output.
771 * src/Makefile.am (YACC): Pass --report=all.
772
773 2008-11-09 Akim Demaille <demaille@gostai.com>
774
775 Formatting changes.
776
777 2008-11-09 Akim Demaille <demaille@gostai.com>
778
779 Update TODO.
780 * TODO: Remove obsolete items.
781 Update others.
782
783 2008-11-09 Akim Demaille <demaille@gostai.com>
784
785 Enhance bench.pl.
786 * etc/bench.pl.in (parse, parse_expr, parse_term, parse_fact)
787 (@token, $grammar, $bench): New.
788 (generate_grammar_variant): Rename as...
789 (generate_grammar_list): this.
790 (generate_grammar): Adjust.
791 (bench_grammar): Rename as...
792 (bench): this.
793 Use it in the various bench-marking routines.
794 (-b, -g): New options.
795
796 2008-11-09 Akim Demaille <demaille@gostai.com>
797
798 Use a static hierarchy for symbols in the C++ parser.
799 * data/lalr1.cc (symbol_base_type, symbol_type)
800 (stack_symbol_type): Make it a static hierarchy.
801 Adjust dependencies.
802
803 2008-11-09 Akim Demaille <demaille@gostai.com>
804
805 bench.pl -d, --directive.
806 * etc/bench.pl.in (@directive): New.
807 (&bench_grammar): Use it.
808 (&bench_list_grammar): New, to provide access to the "variant"
809 grammar.
810 Use it.
811 (getopts): Support -d, --directive.
812
813 2008-11-09 Akim Demaille <demaille@gostai.com>
814
815 Use inline for small operations.
816 * data/lalr1.cc (symbol_base_type, symbol_type)
817 (stack_symbol_type): Declare constructor and other operations as
818 inline.
819 (yy_destroy_): Inline.
820
821 2008-11-09 Akim Demaille <demaille@gostai.com>
822
823 Introduce a hierarchy for symbols.
824 * data/lalr1.cc (symbol_base_type, symbol_type): New.
825 (data_type): Rename as...
826 (stack_symbol_type): this.
827 Derive from symbol_base_type.
828 (yy_symbol_value_print_): Merge into...
829 (yy_symbol_print_): this.
830 Rename as...
831 (yy_print_): this.
832 (yydestruct_): Rename as...
833 (yy_destroy_): this.
834 (b4_symbols_actions, YY_SYMBOL_PRINT): Adjust.
835 (parser::parse): yyla is now of symbol_type.
836 Use its type member instead of yytoken.
837
838 2008-11-09 Akim Demaille <demaille@gostai.com>
839
840 Rename data_type and stack_symbol_type.
841 * data/lalr1.cc (data_type): Rename as...
842 (stack_symbol_type): this.
843
844 2008-11-09 Akim Demaille <demaille@gostai.com>
845
846 Handle semantic value and location together.
847 * data/lalr1.cc (b4_symbol_actions): Bounce $$ and @$ to
848 yydata.value and yydata.location.
849 (yy_symbol_value_print_, yy_symbol_print_, yydestruct_)
850 (YY_SYMBOL_PRINT): Now take semantic value and location as a
851 single arg.
852 Adjust all callers.
853 (yydestruct_): New overload for a stack symbol.
854
855 2008-11-09 Akim Demaille <demaille@gostai.com>
856
857 Push a complete symbol, not connected parts.
858 * data/lalr1.cc (yypush_): Take a data_type&, not disconnected
859 state, value and location.
860 Adjust callers.
861
862 2008-11-09 Akim Demaille <demaille@gostai.com>
863
864 Agregate yylval and yylloc.
865 * data/lalr1.cc (parser::yylval, parser::yylloc): Replace by...
866 (parser::yyla): this.
867
868 2008-11-09 Akim Demaille <demaille@gostai.com>
869
870 Rely on the state stack to display reduction traces.
871 To display rhs symbols before a reduction, we used information about the rule
872 reduced, which required the tables yyrhs and yyprhs. Now use rely only on the
873 state stack to get the same information.
874
875 * data/lalr1.cc (b4_rhs_data, b4_rhs_state): New.
876 Use them.
877 (parser::yyrhs_, parser::yyprhs_): Remove.
878 (parser::yy_reduce_print_): Use the state stack.
879
880 2008-11-09 Akim Demaille <demaille@gostai.com>
881
882 Fuse yyval and yyloc into yylhs.
883 * data/lalr1.cc (b4_lhs_value, b4_lhs_location): Adjust to using
884 yylhs.
885 (parse): Replace yyval and yyloc with yylhs.value and
886 yylhs.location.
887 After a user action, compute yylhs.state earlier.
888 (yyerrlab1): Do not play tricks with yylhs.location, rather, use a
889 fresh error_token.
890
891 2008-11-09 Di-an Jan <dianj@freeshell.org>
892
893 Remove unused variable.
894 * src/output.c (type_names_output): Remove unused variable sep.
895
896 2008-11-09 Paolo Bonzini <bonzini@gnu.org>
897
898 Change tests/output.at quoting.
899 * tests/output.at (AT_CHECK_OUTPUT): Use conventional m4 quoting when
900 expanding arguments.
901
902 2008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
903
904 Don't add a semicolon to actions for %skeleton or %language.
905 It breaks Java test cases as reported by Akim Demaille.
906 * src/scan-code.l: Implement.
907
908 2008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
909
910 Clean up %skeleton and %language priority implementation.
911 * src/getargs.c (skeleton_prio): Use default_prio rather than 2, and
912 remove static qualifier because others will soon need to see it.
913 (language_prio): Likewise.
914 (getargs): Use command_line_prio rather than 0.
915 * src/getargs.h (command_line_prio, grammar_prio, default_prio): New
916 enum fields.
917 (skeleton_prio): Extern it.
918 (language_prio): Extern it.
919 * src/parse-gram.y: Use grammar_prio rather than 1.
920
921 2008-11-07 Akim Demaille <demaille@gostai.com>
922
923 Moving push traces into yypush_.
924 * data/lalr1.cc (yypush_): Now takes a optional trace message.
925 Adjust all uses.
926
927 2008-11-07 Akim Demaille <demaille@gostai.com>
928
929 The single-stack C++ parser is now the standard one.
930 * data/lalr1.cc: Rename as...
931 * data/lalr1-split.cc: this.
932 * data/lalr1-fusion.cc: Rename as...
933 * data/lalr1.cc: this.
934 * etc/bench.pl.in: Adjust.
935
936 2008-11-07 Akim Demaille <demaille@gostai.com>
937
938 Avoid empty-if warnings.
939 Reported by Quentin Hocquet.
940
941 * data/lalr1-fusion.cc (YY_SYMBOL_PRINT, YY_REDUCE_PRINT)
942 (YY_STACK_PRINT): Provide some contents even when !YYDEBUG.
943
944 2008-11-07 Akim Demaille <demaille@gostai.com>
945
946 Pass command line location to skeleton_arg and language_argmatch.
947 * src/getargs.h, src/getargs.c (skeleton_arg, language_argmatch):
948 The location argument is now mandatory.
949 Adjust all dependencies.
950 (getargs): Use command_line_location.
951
952 2008-11-07 Akim Demaille <demaille@gostai.com>
953
954 -D, --define.
955 * src/getargs.c (usage): Document -D.
956 Fix help string for --locations.
957 (command_line_location): New.
958 (short_options, long_options, getargs): Support -D, --define.
959 (getargs): Move -d support at the right place.
960 * doc/bison.texinfo (Bison Options): Update.
961 * tests/input.at (%define, --define): New.
962
963 2008-11-07 Akim Demaille <demaille@gostai.com>
964
965 Initialize the muscle table before parsing the command line.
966 * src/getargs.c (quotearg.h, muscle_tab.h): Include.
967 (getargs): Define file_name.
968 * src/main.c (main): Initialize muscle_tab before calling
969 getargs.
970 * src/muscle_tab.c (muscle_init): No longer define file_name, as
971 its value is not available yet.
972
973 2008-11-07 Akim Demaille <demaille@gostai.com>
974
975 Locations without columns for command line arguments.
976 * src/location.c (location_print): Don't display negative columns.
977 * src/location.h: Document this.
978
979 2008-11-07 Akim Demaille <demaille@gostai.com>
980
981 Fix --help.
982 * src/getargs.c (usage): Fix help string for -W.
983
984 2008-11-07 Akim Demaille <demaille@gostai.com>
985
986 Handle more general types of option arguments.
987 * build-aux/cross-options.pl: The argument ends at the first
988 space, not the first non-symbol character.
989 Use @var for each word appearing the argument description.
990
991 2008-11-07 Akim Demaille <demaille@gostai.com>
992
993 Destroy the variants that remain on the stack in case of error.
994 * data/lalr1-fusion.cc (yydestruct_): Invoke the variant's
995 destructor.
996 Display the value only if yymsg is nonnull.
997 (yyreduce): Invoke yydestruct_ when popping lhs symbols.
998
999 2008-11-07 Akim Demaille <demaille@gostai.com>
1000
1001 Add "%define assert" to variants.
1002 This is used to help the user catch cases where some value gets
1003 ovewritten by a new one. This should not happen, as this will
1004 probably leak.
1005
1006 Unfortunately this uncovered a bug in the C++ parser itself: the
1007 lookahead value was not destroyed between two calls to yylex. For
1008 instance if the previous lookahead was a std::string, and then an int,
1009 then the value of the std::string was correctly taken (i.e., the
1010 lookahead was now an empty string), but std::string structure itself
1011 was not reclaimed.
1012
1013 This is now done in variant::build(other&) (which is used to take the
1014 value of the lookahead): other is not only stolen from its value, it
1015 is also destroyed. This incurs a new performance penalty of a few
1016 percent, and union becomes faster again.
1017
1018 * data/lalr1-fusion.cc (variant::build(other&)): Destroy other.
1019 (b4_variant_if): New.
1020 (variant::built): New.
1021 Use it whereever the status of the variant changes.
1022 * etc/bench.pl.in: Check the penalty of %define assert.
1023
1024 2008-11-07 Akim Demaille <demaille@gostai.com>
1025
1026 Use "%define variant" in bench.pl.
1027 * etc/bench.pl.in: No longer use the pseudo directive %variants,
1028 just use %define variants.
1029
1030 2008-11-07 Akim Demaille <demaille@gostai.com>
1031
1032 Regen.
1033 * src/parse-gram.h, src/parse-gram.c: Regen.
1034
1035 2008-11-04 Joel E. Denny <jdenny@ces.clemson.edu>
1036
1037 Fix user actions without a trailing semicolon.
1038 Reported by Sergei Steshenko at
1039 <http://lists.gnu.org/archive/html/bug-bison/2008-11/msg00001.html>.
1040 * THANKS (Sergei Steshenko): Add.
1041 * src/scan-code.l (SC_RULE_ACTION): Fix it.
1042 * tests/regression.at (Fix user actions without a trailing semicolon):
1043 New test case.
1044
1045 2008-11-04 Akim Demaille <demaille@gostai.com>
1046
1047 Use b4_copyright_years.
1048 * data/yacc.c (b4_copyright_years): New.
1049 Fix its value according to the comments in the file.
1050 Use it and undefine it.
1051
1052 2008-11-04 Akim Demaille <demaille@gostai.com>
1053
1054 Formatting changes.
1055 * data/lalr1-fusion.cc, src/parse-gram.y: here.
1056
1057 2008-11-04 Akim Demaille <demaille@gostai.com>
1058
1059 Formatting changes.
1060 * data/lalr1-fusion.cc: here.
1061
1062 2008-11-04 Akim Demaille <demaille@gostai.com>
1063
1064 Use strict on bench.pl.
1065 * etc/bench.pl.in (&run, &generate_grammar): New.
1066 Rename the grammar generating functions for consistency.
1067 Change the interface so that the list of benches to run is passed
1068 as (optionless) arguments.
1069 (&compile): Use &run.
1070
1071 2008-11-04 Akim Demaille <demaille@gostai.com>
1072
1073 Remove spurious initial empty lines.
1074 * data/glr.c, data/glr.cc, data/lalr1.cc, data/lalr1.java,
1075 * data/yacc.c: End the @output lines with an @.
1076
1077 2008-11-04 Akim Demaille <demaille@gostai.com>
1078
1079 Improve the display of sizes.
1080 * etc/bench.p.in: Higher precision.
1081 Sort by decreasing size.
1082
1083 2008-11-04 Akim Demaille <demaille@gostai.com>
1084
1085 Don't memcpy C++ structures.
1086 * data/lalr1-fusion.cc (b4_symbol_variant): Adjust additional
1087 arguments.
1088 (variant::build): New overload for
1089 copy-construction-that-destroys.
1090 (variant::swap): New.
1091 (parser::yypush_): Use it in variant mode.
1092
1093 2008-11-04 Akim Demaille <demaille@gostai.com>
1094
1095 Better defaults for bench.pl.
1096 * etc/bench.pl.in ($verbose, $cflags, $iterations): Change the
1097 default values.
1098 Adjust &verbose uses.
1099 (-q, --quiet): New.
1100
1101 2008-11-04 Akim Demaille <demaille@gostai.com>
1102
1103 Make variant.yy more complex.
1104 std::list cannot be copied via memcpy, they are more demanding than
1105 std::string. Use one std::list to strengthen the test.
1106
1107 * examples/variant.yy: Use lalr1-fusion.cc, not lalr1.cc.
1108 Adjust.
1109 Create a list of strings, instead of a single large string.
1110
1111 2008-11-04 Akim Demaille <demaille@gostai.com>
1112
1113 bench.pl --bench.
1114 * etc/bench.pl.in (--bench, $bench): New.
1115
1116 2008-11-04 Akim Demaille <demaille@gostai.com>
1117
1118 Sort methods.
1119 * data/lalr1-fusion.cc (destroy): Use as() in its definition.
1120 Define it after as().
1121
1122 2008-11-04 Akim Demaille <demaille@gostai.com>
1123
1124 Useless parens.
1125 * data/lalr1-fusion.cc (b4_rhs_location): Remove useless parens.
1126
1127 2008-11-04 Akim Demaille <demaille@gostai.com>
1128
1129 Issue missing synclines after user actions.
1130 * data/c.m4 (b4_case): Issue synclines on the output file.
1131
1132 2008-11-04 Akim Demaille <demaille@gostai.com>
1133
1134 Remove trailing empty line.
1135 * data/lalr1-fusion.cc: Don't add an empty line after the user's
1136 epilogue.
1137
1138 2008-11-04 Akim Demaille <demaille@gostai.com>
1139
1140 Fix output of copyright years.
1141 * data/bison.m4 (b4_copyright): Fix the indentation of the
1142 copyright year paragraph.
1143 Use b4_copyright_years when no years are given.
1144 * data/lalr1.cc, data/lalr1-fusion.cc, data/location.cc
1145 (b4_copyright_years): New.
1146 Use it.
1147
1148 2008-11-04 Akim Demaille <demaille@gostai.com>
1149
1150 Avoid the spurious initial empty line.
1151 * data/lalr1-fusion.cc, data/location.cc: Put a trailing "@" at
1152 the end of @output request to suppress the empty line that
1153 results.
1154
1155 2008-11-04 Akim Demaille <demaille@gostai.com>
1156
1157 Remove parser::rhs_number_type.
1158 * data/lalr1-fusion.cc (rhs_number_type): No longer define it.
1159 (yyrhs_): Use b4_table_define.
1160
1161 2008-11-04 Akim Demaille <demaille@gostai.com>
1162
1163 Fix iteration type.
1164 * data/lalr1-fusion.cc: Use an int to iterate up to an int.
1165
1166 2008-11-04 Akim Demaille <demaille@gostai.com>
1167
1168 Factor the declaration of the integer tables.
1169 * data/lalr1-fusion.cc (b4_table_define): New.
1170 Use it.
1171
1172 2008-11-03 Akim Demaille <demaille@gostai.com>
1173
1174 Fix indentation of tables in lalr1.cc
1175 * data/lalr1-fusion.cc: Fix the indentation.
1176
1177 2008-11-03 Akim Demaille <demaille@gostai.com>
1178
1179 Destroy the lhs symbols after reduction.
1180 * data/lalr1-fusion.cc (parse): After the user action, when in
1181 variant mode, destroy the lhs symbols.
1182
1183 2008-11-03 Akim Demaille <demaille@gostai.com>
1184
1185 Simplify yysyntax_error_ use.
1186 * data/lalr1-fusion.cc (yysyntax_error_): Always pass it the token
1187 type, but make it unnamed in the declaration when it is not used.
1188
1189 2008-11-03 Akim Demaille <demaille@gostai.com>
1190
1191 Let yy::variant::build return an lvalue.
1192 * data/lalr1-fusion.cc (variant::build): Return a reference to the
1193 object.
1194
1195 2008-11-03 Akim Demaille <demaille@gostai.com>
1196
1197 Define yy::variant only when needed.
1198 * data/lalr1-fusion.cc (yy::variant): Define only if variants are
1199 used.
1200
1201 2008-11-03 Akim Demaille <demaille@gostai.com>
1202
1203 Bench the three-stack lalr1.cc.
1204 * etc/bench.pl.in: Bench the three-stack lalr1.cc vs. the
1205 one-stack one.
1206
1207 2008-11-03 Akim Demaille <demaille@gostai.com>
1208
1209 Fail on parse error in calc++.
1210 * doc/bison.texinfo (calc++.cc): Propagate failures to the exit
1211 status.
1212 * examples/calc++/test ($me, $number, $exit, run): New.
1213 Use them to propagate errors to the exit status.
1214
1215 2008-11-03 Akim Demaille <demaille@gostai.com>
1216
1217 Don't specify the skeleton twice in the example.
1218 * examples/calc++/Makefile.am: Don't pass -S to Bison, the grammar
1219 file does what is needed.
1220
1221 2008-11-03 Akim Demaille <demaille@gostai.com>
1222
1223 bench: Improve output.
1224 * etc/bench.pl.in (bench_grammar): Tune the printf format.
1225
1226 2008-11-03 Akim Demaille <demaille@gostai.com>
1227
1228 bench: check impact of %debug on variants.
1229 * etc/bench.pl.in (variant_grammar): Fix the computation of
1230 $variant.
1231 Generate a grammar file that can work with or without %debug.
1232 Do use the @directive.
1233 (bench_variant_parser): Check impact of %debug.
1234 (@directives): Rename all the occurrences to...
1235 (@directive): this, for consistency.
1236
1237 2008-11-03 Akim Demaille <demaille@gostai.com>
1238
1239 bench: report the size too.
1240 * etc/bench.pl.in ($iterations): Defaults to -3.
1241 (&bench_grammar): Require hireswallclock.
1242 Compute and display the size of the result.
1243 More comments.
1244
1245 2008-11-03 Akim Demaille <demaille@gostai.com>
1246
1247 bench: More use of the verbosity level.
1248 * etc/bench.pl.in ($verbose, &verbose): New.
1249 Use them.
1250 More POD documentation.
1251
1252 2008-11-03 Akim Demaille <demaille@gostai.com>
1253
1254 bench.pl: a command line interface
1255 * etc/bench.pl.in: More doc.
1256 Some fixes in the documentation.
1257 ($cflags, $iterations, &help, &getopt): New.
1258 Use them.
1259 (&variant_grammar): Let the number of stages be 10 times what is
1260 specified.
1261
1262 2008-11-03 Akim Demaille <demaille@gostai.com>
1263
1264 Bench the use of Boost.Variants.
1265 * etc/bench.pl.in ($cxx, &variant_grammar, &bench_variant_parser):
1266 New.
1267 (&compile): Be ready to compile C++ parsers.
1268 (&bench_push_parser): Move debug information to the outermost
1269 level.
1270 * THANKS: Add Michiel De Wilde.
1271
1272 2008-11-03 Akim Demaille <demaille@gostai.com>
1273
1274 bench.pl: Pass directives as a list instead of as a string.
1275 * etc/bench.pl.in (&directives): New.
1276 (&triangular_grammar, &calc_grammar): Use it to format the Bison
1277 directives.
1278 (&triangular_grammar): Do use the directives (were ignored).
1279 (&bench_grammar, &bench_push_parser): Adjust to pass lists of
1280 directives.
1281
1282 2008-11-03 Akim Demaille <demaille@gostai.com>
1283
1284 Improve genericity of bench.pl.
1285 * etc/bench.pl.in (&bench_grammar): Take the set of benches as
1286 argument.
1287 (&bench_push_parser): New.
1288 Call it.
1289
1290 2008-11-03 Akim Demaille <demaille@gostai.com>
1291
1292 Add documentation to bench.pl.
1293 * etc/bench.pl.in: Comment changes.
1294
1295 2008-11-03 Akim Demaille <demaille@gostai.com>
1296
1297 Fuse the three stacks into a single one.
1298 In order to make it easy to perform benchmarks to ensure that there are no
1299 performance loss, lalr1.cc is forked into lalr1-fusion.cc. Eventually,
1300 lalr1-fusion.cc will replace lalr1.cc.
1301
1302 Meanwhile, to make sure that lalr1-fusion.cc is correctly exercized by the
1303 test suite, the user must install a symbolic link from lalr1.cc to it.
1304
1305 Instead of having three stacks (state, value, location), use a stack
1306 of triples. This considerably simplifies the code (and it will be
1307 easier not to require locations as currently does the C++ parser),
1308 and also gives a 10% speedup according to etc/bench (probably mainly since
1309 memory allocation is done once instead of three times).
1310
1311 Another motivation is to make it easier to destruct properly
1312 semantic values: now that they are bound to their state (hence
1313 symbol type) it will be easier to call the appropriate destructor.
1314
1315 These changes should probably benefit the C parser too.
1316
1317 * data/lalr1.cc: Copy as... * data/lalr1-fusion.cc: this new
1318 file.
1319 (b4_rhs_value, b4_rhs_location): New definitions overriding those
1320 from c++.m4.
1321 (state_stack_type, semantic_stack_type, location_stack_type)
1322 (yystate_stack_, yysemantic_stack_, yylocation_stack_): Remove.
1323 (data_type, stack_type, yystack_): New.
1324 (YYLLOC_DEFAULT, yypush_): Adjust.
1325 (yyerror_range): Now based on data_type, not location_type.
1326
1327 2008-11-03 Akim Demaille <demaille@gostai.com>
1328
1329 Push the state, value, and location at the same time.
1330 This is needed to prepare a forthcoming patch that fuses the three
1331 stacks into one.
1332
1333 * data/lalr1.cc (parser::yypush_): New.
1334 (parser::yynewstate): Change the semantics: instead of arriving to
1335 this label when value and location have been pushed, but yystate
1336 is to be pushed on the state stack, now the three of them must
1337 have been pushed before. yystate still must be the new state.
1338 This allows to use yypush_ everywhere instead of individual
1339 handling of the stacks.
1340
1341 2008-11-03 Akim Demaille <demaille@gostai.com>
1342
1343 Prefer references to pointers.
1344 * data/lalr1.cc (b4_symbol_actions): New, overrides the default C
1345 definition to use references instead of pointers.
1346 (yy_symbol_value_print_, yy_symbol_print_, yydestruct_):
1347 Take the value and location as references.
1348 Adjust callers.
1349
1350 2008-11-03 Akim Demaille <demaille@gostai.com>
1351
1352 stack::size instead of stack::height.
1353 * data/lalr1.cc (stack::height): Rename as...
1354 (stack::size): this.
1355 Fix the output type.
1356 Comment changes.
1357
1358 2008-11-03 Akim Demaille <demaille@gostai.com>
1359
1360 Use variants to support objects as semantic values.
1361 This patch was inspired by work by Michiel De Wilde. But he used Boost
1362 variants which (i) requires Boost on the user side, (ii) is slow, and
1363 (iii) has useless overhead (the parser knows the type of the semantic value
1364 there is no reason to duplicate this information as Boost.Variants do).
1365
1366 This implementation reserves a buffer large enough to store the largest
1367 objects. yy::variant implements this buffer. It was implemented with
1368 Quentin Hocquet.
1369
1370 * src/output.c (type_names_output): New.
1371 (output_skeleton): Invoke it.
1372 * data/c++.m4 (b4_variant_if): New.
1373 (b4_symbol_value): If needed, provide a definition for variants.
1374 * data/lalr1.cc (b4_symbol_value, b4_symbol_action_)
1375 (b4_symbol_variant, _b4_char_sizeof_counter, _b4_char_sizeof_dummy)
1376 (b4_char_sizeof, yy::variant): New.
1377 (parser::parse): If variants are requested, define
1378 parser::union_type, parser::variant, change the definition of
1379 semantic_type, construct $$ before running the user action instead
1380 of performing a default $$ = $1.
1381 * examples/variant.yy: New.
1382 Based on an example by Michiel De Wilde.
1383
1384 2008-11-03 Akim Demaille <demaille@gostai.com>
1385
1386 Parameterize the extraction of semantic values.
1387 To make future changes easier, no longer rely on ".TYPE" being the
1388 way to get a semantic value.
1389
1390 * data/c.m4 (b4_symbol_value): New.
1391 Use it.
1392 * data/c++.m4, data/yacc.c: Use it.
1393 * data/glr.c: Use b4_symbol_value.
1394 (b4_rhs_data): New.
1395 Use it.
1396
1397 2008-11-03 Akim Demaille <demaille@gostai.com>
1398
1399 Prepare easier M4 changes.
1400 * data/lalr1.cc: Use escaped [] instead of literals to prepare
1401 future changes.
1402
1403 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
1404
1405 Initiate further development.
1406 * NEWS: Create an empty section for new entries.
1407 * gnulib: Update submodule to HEAD.
1408
1409 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
1410
1411 * NEWS: Version 2.4.
1412
1413 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
1414
1415 Prepare for next release.
1416 * NEWS: Briefly mention changes since 2.3b.
1417 * README: Say GNU m4 1.4.6, which we've been requiring in release
1418 announcements already, not 1.4.3, which breaks the build.
1419
1420 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
1421
1422 Say %language is experimental.
1423 We're thinking of extending it's effect on output file naming. See the
1424 thread at
1425 <http://lists.gnu.org/archive/html/bison-patches/2008-10/msg00003.html>.
1426 * NEWS: Say it's experimental.
1427 * doc/bison.texinfo (Decl Summary): Say it's experimental, and so don't
1428 recommend it over %skeleton for now.
1429 (Bison Options): Likewise.
1430 (C++ Bison Interface): Use %skeleton not %language.
1431 (Calc++ Parser): Use %skeleton not %language.
1432 * src/getargs.c (usage): Say it's experimental.
1433
1434 2008-11-01 Di-an Jan <dianj@freeshell.org>
1435 Paolo Bonzini <bonzini@gnu.org>
1436
1437 Support all Java parser class modifiers.
1438 * data/java.m4 (b4_percent_define_get3): New.
1439 (b4_final_if, b4_strictfp_if): New.
1440 * data/lalr1.java (final, strictfp, extends, implements): Support.
1441 * doc/bison.texinfo (final, strictfp, extends, implements): Add
1442 documentation.
1443 * tests/java.at (AT_CHECK_JAVA_MINIMAL): New.
1444 (AT_CHECK_JAVA_MINIMAL_W_LEXER): New.
1445 (AT_CHECK_JAVA_GREP): New.
1446 (Java parser class modifiers): New test.
1447 (Java parser class extends and implements): New test.
1448
1449 Model exception propagation better with throws and lex_throws.
1450 * data/java.m4 (b4_list2): New.
1451 (throws): Change default.
1452 * data/lalr1.java (yyaction): Add throws.
1453 (parse): Add lex_throws in addition to throws.
1454 * doc/bison.texinfo (throws, lex_throws): Add documentation.
1455 * tests/java.at (Java throws specifications): New test.
1456
1457 Improve documentation for Java parsers.
1458 * doc/bison.texinfo (Java Parsers): Add subsections.
1459 Don't quote first argument of %define.
1460 (Java Bison Interface): Document output files. Move documentation
1461 of parser class and merge into Java Parser Interface. Document
1462 features that error out. Document directives with no effect.
1463 Move note about Javadoc higher.
1464 (Java Semantic Values): Explicitly mention stype.
1465 Document that generic types cannot be used.
1466 (Java Location Values): Use @deftypeivar. Document constructors.
1467 Correct return value for toString.
1468 (Java Parser Interface): List undocumented constants/fields.
1469 Move documentation of fields added by %parse-param closer to list
1470 of members. Document that token names are added as fields.
1471 Document constructors accurately. Remove error method.
1472 (Java Scanner Interface): Move note on %pure-parser to Java Bison
1473 Interface. Describe %code lexer and yylex accutately.
1474 Remove documentation that does not match the code.
1475 (Java Action Features): New.
1476 (Java Differences): Add reference. Add item on semantic values.
1477 Add note about @{ ... @}. Clarify %% epilogue placement.
1478 (Java Declarations Summary): New.
1479
1480 Fix Java skeleton.
1481 * data/java.m4 (b4_prefix): Correct quoting for m4_define_default.
1482 (b4_remove_comma): Quote test argument.
1483 (b4_identification): Remove "bison" field.
1484 * tests/java.at (Java parser class and package names): New test.
1485 (Java %parse-param and %lex-param): New test.
1486 (Java stype, position_class and location_class): New test.
1487
1488 2008-10-31 Di-an Jan <dianj@freeshell.org>
1489
1490 * data/lalr1.jave: Update copyright years.
1491 (YYParser): Correct name of "generated from" file in Javadoc:
1492 use b4_file_name instead of @ofile@.
1493 (Location constructor): Correct Javadoc parameter name.
1494 (yylloc): Add missing opening m4 quote after b4_location_if.
1495 This removes a stray [ in the Javadoc of Lexer.getStartPos.
1496 (Lexer.yyerror): Fix incorrect m4 and Javadoc.
1497 (YYParser constructor): Correct Javadoc parameter name.
1498
1499 2008-10-30 Joel E. Denny <jdenny@ces.clemson.edu>
1500
1501 Always put auxiliary code files in the same dir as other output files.
1502 * src/files.c (compute_file_name_parts): When the user specifies
1503 --output but not --file-prefix, extract the directory prefix from the
1504 file prefix not from the grammar file name. This affects the location
1505 of files like location.hh generated by the C++ skeleton. The includes
1506 in the other output files require this fix.
1507 * tests/output.at (AT_CHECK_OUTPUT): Automatically create directories
1508 for expected output files.
1509 (Output files): Add a test for the above.
1510
1511 2008-10-29 Joel E. Denny <jdenny@ces.clemson.edu>
1512
1513 * gnulib: Update submodule to HEAD.
1514
1515 2008-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
1516
1517 Update copyright year.
1518 * src/files.c: Here.
1519
1520 2008-10-28 Di-an Jan <dianj@freeshell.org> (tiny change)
1521
1522 Don't overwrite the input file.
1523 * src/files.c (output_file_name_check): Fatal error if using input file
1524 for output.
1525 * tests/output.at: (AT_CHECK_CONFLICTING_OUTPUT): Add return status
1526 argument.
1527 (Conflicting output files): Add test.
1528
1529 2008-10-28 Akim Demaille <demaille@gostai.com>
1530
1531 Space changes.
1532 * data/lalr1.cc: Formatting changes.
1533
1534 2008-10-28 Akim Demaille <demaille@gostai.com>
1535
1536 Don't define debugging functions when !YYDEBUG.
1537 * data/lalr1.cc (debug_stream, set_debug_stream)
1538 (debug_level_type, debug_level, set_debug_level): Don't
1539 declare them when YYDEBUG is not defined.
1540 The implementation are already YYDEBUG-aware.
1541
1542 2008-10-28 Akim Demaille <demaille@gostai.com>
1543
1544 Prefer "continue" for empty loop bodies.
1545 * etc/bench.pl.in: Use "continue" instead of {}.
1546
1547 2008-10-28 Akim Demaille <demaille@gostai.com>
1548
1549 Space and comments changes.
1550 * data/c++.m4, data/glr.c, data/lalr1.cc: Copyright year changes.
1551 * data/c.m4, data/lalr1.cc: Space changes.
1552
1553 2008-10-28 Akim Demaille <demaille@gostai.com>
1554
1555 Make gnulib a submodule.
1556 * gnulib: New.
1557 * .gitmodules (gnulib): New.
1558
1559 2008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
1560
1561 Fix yyerror_range for user-defined location type in C++. Reported by
1562 Georg Sauthoff at
1563 <http://lists.gnu.org/archive/html/bug-bison/2008-08/msg00008.html>.
1564 * data/lalr1.cc (parse): Change type of yyerror_range to location_type.
1565 * THANKS (Georg Sauthoff): Add.
1566
1567 2008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
1568
1569 Update several administrative files mainly to facilitate releasing.
1570 * HACKING (Administrivia): Make the git-merge-changelog notes more
1571 helpful.
1572 (Test suite): Don't say lalr1.cc is not exercised in the test suite.
1573 (Release Procedure): Update for git and add numerous details that were
1574 previously missing.
1575 * Makefile.am (EXTRA_DIST): Remove Makefile.cfg and Makefile.maint.
1576 * maint.mk (announcement): Don't list bison as a bootstrap tool so
1577 that announcements don't claim we bootstrapped with whatever bison
1578 happened to be in PATH. Add flex as a bootstrap tool.
1579 * Makefile.maint: Remove, previously replaced by maint.mk.
1580 * Makefile.cfg: Remove, and migrate settings to...
1581 * cfg.mk: ... here for the sake of `make announcement'.
1582 * bootstrap.conf (gnulib_modules): Add announce-gen.
1583 * README: Say GNU Bison instead of just Bison. Suggested by Karl
1584 Berry.
1585
1586 2008-10-08 Di-an Jan <dianj@freeshell.org> (tiny change)
1587
1588 Small but important bugfixes for the Java skeleton.
1589 * data/lalr1.java (yyerror): Change Location to b4_location_type.
1590 (yy_symbol_print): Call toString on yyvaluep.
1591
1592 2008-08-29 Akim Demaille <demaille@gostai.com>
1593
1594 Clarify UPDATED use.
1595 * doc/bison.texinfo: It refers to the last edition of this file,
1596 not to the release date of Bison.
1597 Reported by Joel E. Denny.
1598
1599 2008-08-29 Akim Demaille <demaille@gostai.com>
1600
1601 * README: Update FAQ pointer.
1602 Reported by Joel E. Denny.
1603
1604 2008-08-27 Eric Blake <ebb9@byu.net>
1605
1606 Resync m4sugar from autoconf.
1607 * data/m4sugar/m4sugar.m4 (m4_defn, m4_popdef, m4_undefine)
1608 (m4_init): Adjust to latest m4.git changes.
1609 (m4_mapall_sep, _m4_list_cmp, m4_version_compare): Reduce side
1610 effects.
1611 * data/m4sugar/foreach.m4 (_m4_shiftn): Fix off-by-one bug.
1612 (_m4_list_cmp): Reduce side effects.
1613
1614 2008-08-27 Akim Demaille <demaille@gostai.com>
1615
1616 Check yyerrok in calc.at.
1617 * tests/calc.at (calc.y): Use yyerrok on "( error )".
1618 (AT_CHECK_CALC): Add a check that ensures that yyerrok works as
1619 expected.
1620
1621 2008-08-27 Akim Demaille <demaille@gostai.com>
1622
1623 Support yyerrok in lalr1.cc.
1624 YYBACKUP is still to import back into lalr1.cc.
1625 * data/lalr1.cc (yyerrork, yyclearin, YYRECOVERING): Define.
1626
1627 2008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
1628
1629 For maintainer-check*, don't recompile for a $(VERSION) update.
1630 * cfg.mk: New file.
1631 (_is-dist-target): Override the one in GNUmakefile.
1632 * Makefile.am (EXTRA_DIST): Add cfg.mk.
1633
1634 2008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
1635
1636 Update for recent change to gnulib.
1637 * src/parse-gram.y: Don't include strverscmp.h. It comes from
1638 string.h now.
1639
1640 2008-08-15 Eric Blake <ebb9@byu.net>
1641
1642 Remaining m4sugar merge from autoconf.
1643 * data/m4sugar/m4sugar.m4: Copy entire file from autoconf.
1644 * data/m4sugar/foreach.m4: New file, copied from autoconf.
1645 * data/Makefile.am (dist_m4sugar_DATA): Distribute it.
1646 * src/output.c (output_skeleton): Tell m4 how to find it.
1647
1648 Partial m4sugar merge from autoconf: m4_map.
1649 * data/m4sugar/m4sugar.m4 (m4_fst): Delete.
1650 (m4_map, m4_map_sep, _m4_map): Rewrite more efficiently.
1651 (m4_apply, _m4_apply, m4_mapall, m4_mapall_sep): New macros.
1652 * data/java.m4 (b4_token_enums): Use more efficient short-circuit
1653 for empty list.
1654 * data/c.m4 (b4_token_defines, b4_token_enums, b4_c_ansi_formals):
1655 Likewise.
1656 (b4_parse_param_for): Avoid m4_fst, now that autoconf no longer
1657 declares it.
1658
1659 2008-08-07 Joel E. Denny <jdenny@ces.clemson.edu>
1660
1661 Keep .version and PACKAGE_VERSION in sync.
1662 * Makefile.am ($(top_srcdir)/.version): Declare configure as a
1663 dependency, and add comments justifying this in more detail. Discussed
1664 starting at
1665 <http://lists.gnu.org/archive/html/bison-patches/2008-07/msg00022.html>.
1666
1667 2008-08-06 Eric Blake <ebb9@byu.net>
1668
1669 Partial m4sugar merge from autoconf: m4_shiftn.
1670 * data/m4sugar/m4sugar.m4 (m4_shiftn): Faster implementation.
1671 (m4_shift2, m4_shift3): New macros.
1672 (m4_case, m4_bmatch, m4_bpatsubsts, m4_join): Adjust clients.
1673 * data/c.m4 (b4_c_function_def, b4_c_ansi_function_def)
1674 (b4_c_ansi_function_decl, b4_c_function_call): Likewise.
1675 * data/java.m4 (b4_remove_comma): Likewise.
1676
1677 Partial m4sugar merge from autoconf: m4_wrap vs. m4 1.6.
1678 * data/m4sugar/m4sugar.m4 (m4_unquote, m4_wrap_lifo): New macros.
1679 (m4_wrap): Guarantee FIFO order, in spite of m4 1.6.
1680 (m4_init): Consolidate wrapped text into single m4_wrap.
1681 * data/bison.m4 (b4_check_user_names_wrap): Stick with LIFO order
1682 in wrapped text.
1683
1684 2008-08-05 Eric Blake <ebb9@byu.net>
1685
1686 Partial m4sugar merge from autoconf: builtins, version.m4.
1687 * data/m4sugar/m4sugar.m4 (changeword): Nuke.
1688 (m4_prepend): Remove, as it is unused and inherently quadratic,
1689 whereas m4_append is linear in newer m4.
1690 (m4_mkstemp): New builtin.
1691 (m4_symbols): Make rename conditional.
1692 (m4_version_prereq): Ensure fatal error if used in bison, which
1693 intentionally lacks version.m4.
1694
1695 Fix comments in m4sugar.
1696 * data/m4sugar/m4sugar.m4: Comment changes, borrowed from autoconf.
1697
1698 2008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
1699
1700 Update for recent .gitignore fix in Gnulib.
1701 * bootstrap: Back out 2008-07-18 hack now that gnulib-tool creates
1702 anchored .gitignore entries.
1703
1704 2008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
1705
1706 Set gnu or gnits strictness.
1707 * configure.ac (AM_INIT_AUTOMAKE): Set gnu strictness during
1708 development and gnits strictness for releases. Based on Eric Blake's
1709 suggestion at
1710 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00019.html>.
1711
1712 2008-07-31 Paolo Bonzini <bonzini@gnu.org>
1713
1714 * NEWS: Clarify documentation of %language.
1715
1716 2008-07-31 Paolo Bonzini <bonzini@gnu.org>
1717
1718 Support usage of git-merge-changelog.
1719 * .gitattributes: New.
1720 * HACKING: Document usage of git-merge-changelog.
1721 * bootstrap: Install git-merge-changelog entries in .git/config
1722 if appropriate.
1723
1724 2008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
1725
1726 Remove remaining dependence on CVS Id keyword.
1727 * ChangeLog: For the sake of people still using CVS, don't use dollars
1728 when mentioning Id.
1729 * data/xslt/bison.xsl: Remove Id from header comments, where it was
1730 unusual anyway.
1731 * data/xslt/xml2dot.xsl: Likewise.
1732 * data/xslt/xml2text.xsl: Likewise.
1733 * data/xslt/xml2xhtml.xsl: Likewise.
1734 * doc/Doxyfile.in (PROJECT_NUMBER): Don't use ID.
1735 * doc/Makefile.am (neutralize): Remove, no longer needed.
1736 (.x.1): Don't use neutralize.
1737 (edit): Don't substitute for ID.
1738 (Doxyfile): Don't define Id, and thus don't depend on ChangeLog.
1739
1740 2008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
1741
1742 Fix dependence on computed configure variables.
1743 * doc/Makefile.am (common_dep): Depend on $(top_srcdir)/configure not
1744 $(top_srcdir)/configure.ac so that changes to computed variables, such
1745 as PACKAGE_VERSION, are seen.
1746 * tests/Makefile.am ($(srcdir)/package.m4): Likewise.
1747
1748 2008-07-20 Joel E. Denny <jdenny@ces.clemson.edu>
1749
1750 Update copyright dates for recent changes.
1751 * Makefile.am: Here.
1752 * src/Makefile.am: Here.
1753 * src/reduce.c: Here.
1754 * tests/reduce.at: Here.
1755
1756 2008-07-18 Joel E. Denny <jdenny@ces.clemson.edu>
1757
1758 Use git-version-gen for version names between releases.
1759 * .cvsignore (.tarball-version, GNUmakefile, *~): Add.
1760 * .gitignore (/.tarball-version, /GNUmakefile, /*~): Add.
1761 * .prev-version: New.
1762 * .version.in: Remove.
1763 * ChangeLog: Remove the Id previously used for capturing the CVS
1764 revision.
1765 * GNUmakefile: Remove, now copied from Gnulib.
1766 * Makefile.am: Add code suggested by comments in
1767 build-aux/git-version-gen.
1768 (EXTRA_DIST): Remove GNUmakefile, handled by Gnulib. Add maint.mk,
1769 .prev-version, and .version.
1770 * NEWS (2.3b+): Rename to...
1771 (?.?): ... this because we're dropping the "+" version naming scheme,
1772 but, in general, we still can't be sure of our next release name.
1773 * bootstrap: Add a quick hack to remove from .gitignore the
1774 GNUmakefile entry that gnulib adds. We already have a /GNUmakefile
1775 entry. This should really be fixed in gnulib instead.
1776 * bootstrap.conf (gnulib_modules): Add gnumakefile.
1777 * configure.ac (AC_INIT): Set version name by invoking
1778 build-aux/git-version-gen.
1779 (AC_CONFIG_FILES): Remove .version, now generated by
1780 build-aux/git-version-gen.
1781 * maint.mk: New, copied from coreutils.
1782 * doc/.cvsignore (bison.1): Add.
1783 * doc/.gitignore (/bison.1): Add.
1784 * doc/bison.1: Remove, generated.
1785 * src/.cvsignore (revision.c): Remove.
1786 * src/.gitignore (/revision.c): Remove.
1787 * src/Makefile.am (bison_SOURCES): Remove revision.c and revision.h.
1788 (BUILT_SOURCES): Remove revision.c.
1789 (revision.c): Remove.
1790 * src/getargs.c (version): Don't print revision after the VERSION.
1791 * src/revision.h: Remove.
1792
1793 2008-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
1794
1795 Fix untranslatable composition of sentences. Reported by Goran
1796 Uddeborg at
1797 <http://lists.gnu.org/archive/html/bug-bison/2008-06/msg00000.html>.
1798 * THANKS (Goran Uddeborg): Add.
1799 * src/reduce.c (reduce_print): Report the number of nonterminals and
1800 rules useless in the grammar in separate sentences.
1801 * tests/reduce.at (Useless Rules): Update output.
1802 (Reduced Automaton): Likewise.
1803 (Underivable Rules): Likewise.
1804 (Empty Language): Likewise.
1805
1806 2008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
1807
1808 Fix some .gitignore and .cvsignore problems.
1809 * bootstrap (insert_sorted_if_absent): Replace all uses with...
1810 (insert_vc_ignore): ... this new function, which prepends `/' to all
1811 .gitignore entries before passing them to insert_sorted_if_absent.
1812 * bootstrap.conf (vc_ignore): Set to '.cvsignore .gitignore' so that
1813 .cvsignore files are maintained even though Bison developers run
1814 bootstrap while using Git.
1815 * .cvsignore (*.patch *.log log patches applied): Remove, apparently
1816 unneeded by Bison.
1817 (gnulib): Add.
1818 * .gitignore (/*.patch *.log log patches applied): Remove, broken and
1819 unneeded. Reported by Eric Blake.
1820 * lib/.gitignore (/*~): Add.
1821 * po/.cvsignore, runtime-po/.cvsignore: Sync with .gitignore.
1822 * examples/calc++/.gitignore (/calc++.exe): Add. Reported by Eric
1823 Blake.
1824 * src/.gitignore (/bison.exe): Add. Reported by Eric Blake.
1825
1826 2008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
1827
1828 Improve forward-compatibility with GNU M4. Reported by Eric Blake at
1829 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00000.html>.
1830 * bootstrap.conf (gnulib_modules): Add unsetenv.
1831 * lib/.gitignore, lib/.cvsignore (/unsetenv.c): Add.
1832 * m4/.gitignore, m4/.cvsignore (/environ.m4): Add.
1833 (/setenv.m4): Add.
1834 * src/output.c (output_skeleton): For the m4 invocation, pass -dV as
1835 the first argument because it may become position-dependent, and unset
1836 POSIXLY_CORRECT so Bison's skeletons have access to GNU M4 extensions.
1837 Add comments explaining these issues in more detail.
1838
1839 2008-07-14 Joel E. Denny <jdenny@ces.clemson.edu>
1840
1841 Add .gitignore everywhere based on .cvsignore.
1842 * .gitignore: New.
1843 * build-aux/.gitignore: New.
1844 * data/.gitignore: New.
1845 * doc/.gitignore: New.
1846 * etc/.gitignore: New.
1847 * examples/.gitignore: New.
1848 * examples/calc++/.gitignore: New.
1849 * lib/.gitignore: New.
1850 * m4/.gitignore: New.
1851 * po/.gitignore: New.
1852 * runtime-po/.gitignore: New.
1853 * src/.gitignore: New.
1854 * tests/.gitignore: New.
1855
1856 2008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
1857
1858 * NEWS (2.3b+): New section, empty for now.
1859 * configure.ac (AC_INIT): 2.3b -> 2.3b+.
1860
1861 2008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
1862
1863 * NEWS (2.3b): Update release date since there has been a delay in
1864 getting the announcements and tarballs out.
1865
1866 2008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
1867
1868 * NEWS: Version 2.3b.
1869 * configure.ac (AC_INIT): Likewise.
1870 (PACKAGE_COPYRIGHT_YEAR): Update to 2008.
1871
1872 2008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
1873
1874 * HACKING: Don't say don't mention HACKING in the ChangeLog. We've
1875 been doing it for years.
1876 (Test suite): Mention maintainer-push-check and maintainer-xml-check.
1877 (Release Procedure): Add FIXME about make alpha being unmaintained.
1878
1879 2008-05-13 Joel E. Denny <jdenny@ces.clemson.edu>
1880
1881 * data/yacc.c: Reformat m4 a little for readability.
1882 * src/lalr.c (build_relations): Correct comment.
1883
1884 2008-05-12 Juan Manuel Guerrero <juan.guerrero@gmx.de>
1885
1886 DJGPP specific issue.
1887 * djgpp/config.sed: Fixes required to run configure scripts generated
1888 by autoconf 2.62.
1889
1890 2008-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
1891
1892 * HACKING (Release Procedure): translation@iro.umontreal.ca is now
1893 coordinator@translationproject.org.
1894
1895 2008-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
1896
1897 * THANKS: Add Eric Blake.
1898
1899 2008-04-23 Eric Blake <ebb9@byu.net>
1900
1901 Revert prior patch, by working around autoconf regression.
1902 * tests/output.at (m4_expand): Add workaround for autoconf 2.62.
1903 ("Output file name: ("): Uncomment test.
1904 ("Output file name: )"): Likewise.
1905 Based on an idea from Noah Misch.
1906
1907 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
1908
1909 Work-around an Autoconf 2.62 AT_SETUP bug that was not present in
1910 2.61. Reported by Juan Manuel Guerrero at
1911 <http://lists.gnu.org/archive/html/bug-bison/2008-04/msg00011.html>.
1912 * tests/output.at ("Output file name: ("): Comment out test case for
1913 now.
1914 ("Output file name: )"): Likewise.
1915
1916 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
1917
1918 * GNUmakefile: Update git-version-gen invocation so make dist
1919 succeeds.
1920
1921 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
1922
1923 Update to the current gnulib CVS repository, and fix trigraph handling
1924 in Bison.
1925 * bootstrap: Update gnulib CVS repository URL.
1926 (symlink_to_dir): Encapsulate the code that guarantees the destination
1927 directory exists into...
1928 (check_dst_dir): ... this new function, and...
1929 (cp_mark_as_generated): ... reuse it here so that bootstrap doesn't
1930 fail when copying files into lib/uniwidth/.
1931 * src/output.c (prepare_symbols): When writing yytname muscles, where
1932 symbol names will be encoded in C-string literals, tell quotearg to
1933 escape trigraphs. This used to be the default in gnulib.
1934 * tests/regression.at (Token definitions): Because of the change in
1935 gnulib's quotearg behavior, string_as_id in parse-gram.y no longer
1936 escapes trigraphs in symbol names. Thus, yytname no longer has
1937 trigraphs unnecessarily doubly escaped. Update test case output.
1938 Extend test case to be sure Bison's own error messages will no longer
1939 have trigraphs in symbol names unnecessarily escaped once.
1940
1941 2008-04-20 Joel E. Denny <jdenny@ces.clemson.edu>
1942
1943 Fix make dist infinite loop reported by Juan Manuel Guerrero at
1944 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00009.html>.
1945 * .cvsignore: Add .version.
1946 * .version.in: New.
1947 * bootstrap.conf (gnulib_modules): Add git-version-gen.
1948 * configure.ac (AC_CONFIG_FILES): Add .version.
1949 * build-aux/.cvsignore: Add git-version-gen.
1950
1951 2008-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
1952
1953 * NEWS (2.3a+): Mention that -g now takes an argument.
1954 * doc/bison.texinfo (Bison Options): Reword -W entry a little for
1955 consistency. Update the -g and -x entries now that they take
1956 arguments. Use brackets to indicate optional arguments.
1957 * src/getargs.c (usage): Explain the relationship between arguments of
1958 long and short options more completely. Document --defines and -d
1959 separately since the former takes an argument but, for POSIX Yacc, the
1960 latter does not.
1961 (short_options): Let -W take an optional argument like --warnings.
1962 (getargs): Sort cases.
1963
1964 2008-02-28 Akim Demaille <demaille@gostai.com>
1965
1966 * doc/bison.texinfo: Fix a few typos.
1967
1968 2008-02-28 Akim Demaille <akim@epita.fr>
1969
1970 * doc/bison.texinfo (Bison Options): Document -W.
1971 Based on Joel E. Denny's NEWS entry, and Automake's documentation.
1972
1973 2008-02-28 Akim Demaille <akim@epita.fr>
1974
1975 * src/getargs.c (short_options): Split and sort for readability.
1976 -g and -x take optional arguments, just like their long options.
1977 * build-aux/cross-options.pl: Use /x to make the regexp easier to
1978 understand.
1979 Fix the handling of $opt which resulted in all the argument to be
1980 considered as optional.
1981
1982 2008-02-22 Joel E. Denny <jdenny@ces.clemson.edu>
1983
1984 * NEWS (2.3a+): Don't say %language is experimental. Mention Java and
1985 say its interface is experimental.
1986 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
1987 Java.
1988 (Bison Options): In the -L and --language entry, mention Java.
1989 (Java Bison Interface): Say the interface is experimental.
1990 * src/getargs.c (usage): Mention -L and --language.
1991
1992 * NEWS (2.3a+): Say the push parsing interface is experimental.
1993 * doc/bison.texinfo (Push Decl): Likewise.
1994 (Decl Summary): Likewise in the "%define api.push_pull" entry.
1995 (Push Parser Function): Likewise.
1996 (Pull Parser Function): Likewise.
1997 (Parser Create Function): Likewise.
1998 (Parser Delete Function): Likewise.
1999 (Table of Symbols): Likewise in the yypstate_delete, yypstate_new,
2000 yypull_parse, and yypush_parse entries.
2001
2002 * NEWS (2.3a+): Mention XML support, and say the schema is
2003 experimental.
2004 * doc/bison.texinfo (Bison Options): Mention -x and --xml.
2005 * src/getargs.c (usage): Say the XML schema is experimental.
2006
2007 * NEWS (2.3a+): Say option instead of flag.
2008
2009 2008-02-21 Wojciech Polak <polak@gnu.org>
2010
2011 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Change footer
2012 text.
2013
2014 2008-02-20 Joel E. Denny <jdenny@ces.clemson.edu>
2015
2016 Fix impure push parser compile error reported by Bob Rossi at
2017 <http://lists.gnu.org/archive/html/help-bison/2008-02/msg00023.html>.
2018 * data/yacc.c: Clean up whitespace in the output a little.
2019 (yypstate_allocated): Define for impure push parsers regardless of
2020 whether the pull interface is also requested.
2021 * tests/push.at (Push Parsing: Multiple impure instances): Extend to
2022 check impure push parsers without the pull interface.
2023
2024 * data/yacc.c (yypstate_new): Don't try to invoke yyerror since
2025 yyerror takes arguments specified by %parse-param while yypstate_new
2026 does not.
2027 * doc/bison.texinfo (Parser Create Function): Document that
2028 yypstate_new returns 0 for multiple impure parser instances.
2029 * tests/push.at (Push Parsing: Multiple impure instances): Update
2030 expected stderr output.
2031
2032 2008-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
2033
2034 * runtime-po/POTFILES.in (push.c): Remove.
2035
2036 2008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
2037
2038 * data/Makefile.am (dist_pkgdata_DATA): Remove push.c.
2039 * data/push.c: Rename to...
2040 * data/yacc.c: ... this, overwriting it.
2041 * etc/bench.pl.in (bench_grammar): `%pure-parser'-> `%define api.pure'.
2042 `%push-pull-parser' -> `%define api.push_pull "both"'.
2043 Remove old yacc.c tests, and update push.c tests to yacc.c.
2044
2045 2008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
2046
2047 * data/bison.m4 (b4_percent_code_get): Output %code block comments like
2048 `"%code top" blocks' instead of `%code "top" blocks'.
2049 * data/push.c: Import yacc.c changes from 2008-01-09 and 2007-08-03.
2050 Clean up whitespace in the output a little.
2051
2052 2008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
2053
2054 Fix documentation problems reported by Tim Josling at
2055 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00013.html>.
2056 * NEWS (2.3a+): Mention removal of --no-parser, -n, and %no-parser.
2057 * doc/bison.texinfo (Token Decl): Token numbers are *nonnegative*
2058 integers. Explain the effect of literal string aliases on error
2059 messages. Copy token 0 documentation from the C++ skeleton
2060 documentation.
2061
2062 2008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
2063
2064 Accept a token number in a %left, %right, or %nonassoc for POSIX
2065 conformance. Reported by Tim Josling at
2066 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00010.html>.
2067 * NEWS (2.3a+): Mention.
2068 * doc/bison.texinfo (Precedence Decl): Describe how literal strings
2069 and code numbers are treated by precedence declarations.
2070 * src/parse-gram.y (precedence_declaration): Use symbols.prec instead
2071 of symbols.1.
2072 (symbols.prec): New, just like symbols.1 but uses symbol.prec instead
2073 of symbol.
2074 (symbol.prec): New, just like symbol but allows INT.
2075 * src/symtab.c (symbol_user_token_number_set): Remove an aver that no
2076 longer holds.
2077 * tests/regression.at (Token number in precedence declaration): New
2078 test case.
2079
2080 2008-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
2081
2082 DJGPP specific issues.
2083 * djgpp/config.bat: Add filenames that are not 8.3 clean and that must
2084 be changed. Copyright timestamp adjusted.
2085 * djgpp/config.sed: Add filenames that are not 8.3 clean and that must
2086 be changed. Copyright timestamp adjusted.
2087 * djgpp/config.site: Copyright timestamp adjusted.
2088 * djgpp/config_h.sed: Copyright timestamp adjusted.
2089 * djgpp/djunpack.bat: Copyright timestamp adjusted.
2090 * djgpp/fnchnage.lst: Add filenames that are not 8.3 clean to the
2091 filename translation list.
2092 * djgpp/subpipe.c (init_subpipe): Check the environment variables
2093 TMPDIR, TMP and TEMP, in that order, to determinate where the temp
2094 files shall be created. Before trying to use the temp dir where the
2095 environment variable points to check that the dir really exists. If
2096 not default to the cwd as temp dir. Copyright timestamp adjusted.
2097 * djgpp/subpipe.h: Copyright timestamp adjusted.
2098 * djgpp/testsuite.sed: Copyright timestamp adjusted.
2099
2100 2008-01-30 Paul Eggert <eggert@cs.ucla.edu>
2101
2102 * doc/bison.texinfo: Update Back-Cover text to reflect new GNU wording.
2103
2104 2008-01-09 Paul Eggert <eggert@cs.ucla.edu>
2105
2106 * data/yacc.c (yyparse): Correct the comment when locations aren't used.
2107 Problem reported by Claudio Saavedra in
2108 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00003.html>.
2109
2110 2008-01-05 Wojciech Polak <polak@gnu.org>
2111
2112 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Precede an XHTML
2113 document's title with the input grammar file name.
2114
2115 2007-12-22 Joel E. Denny <jdenny@ces.clemson.edu>
2116
2117 Automate regression testing of the XML/XSLT implementation. Discussed
2118 starting at
2119 <http://lists.gnu.org/archive/html/bison-patches/2007-11/msg00021.html>.
2120 * configure.ac (XSLTPROC): New substitution.
2121 * Makefile.am (maintainer-xml-check): New phony target invoking...
2122 * tests/Makefile.am (maintainer-xml-check): ... this new phony target
2123 invoking make maintainer-check with BISON_TEST_XML=1.
2124 * tests/atlocal.in (XSLTPROC): New.
2125 * tests/local.at (AT_BISON_CHECK): New macro to (1) instruct Valgrind
2126 not to report reachable memory when Bison is expected to have a
2127 non-zero exit status and (2) to compare XML/XSLT output with --graph
2128 and --report=all output for every working grammar when
2129 BISON_TEST_XML=1.
2130 (AT_BISON_CHECK_NO_XML): Likewise, but skip XML checks.
2131 (AT_BISON_CHECK_XML): New.
2132 (AT_QUELL_VALGRIND): New.
2133 * tests/testsuite.at (ORIGINAL_AT_CHECK): Remove this and...
2134 (AT_CHECK): ... don't redefine this since this was the old way to
2135 quell Valgrind.
2136 * tests/actions.at: Rewrite all AT_CHECK invocations for bison as
2137 AT_BISON_CHECK invocations.
2138 * tests/c++.at: Likewise.
2139 * tests/calc.at: Likewise.
2140 * tests/conflicts.at: Likewise.
2141 * tests/cxx-type.at: Likewise.
2142 * tests/existing.at: Likewise.
2143 * tests/glr-regression.at: Likewise.
2144 * tests/headers.at: Likewise.
2145 * tests/input.at: Likewise.
2146 * tests/java.at: Likewise.
2147 * tests/output.at: Likewise.
2148 * tests/push.at: Likewise.
2149 * tests/reduce.at: Likewise.
2150 * tests/regression.at: Likewise.
2151 * tests/sets.at: Likewise.
2152 * tests/skeletons.at: Likewise.
2153 * tests/synclines.at: Likewise.
2154 * tests/torture.at: Likewise.
2155 (Big triangle): Use AT_BISON_CHECK_NO_XML instead since this grammar
2156 tends to hang xsltproc.
2157 (Big horizontal): Likewise.
2158
2159 2007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
2160
2161 In XML output, remove redundant class attribute on symbol element.
2162 * data/xslt/bison.xsl (xsl:key name="bison:symbolByName"): New.
2163 * data/xslt/xml2xhtml.xsl (xsl:template match="symbol"): Use it to
2164 look up a symbol to determine whether it's a nonterminal or terminal.
2165 * src/gram.c (rule_rhs_print_xml): Remove class attribute.
2166 * src/state.c (state_rule_lookahead_tokens_print_xml): Likewise.
2167
2168 Add prec/assoc information to XML output.
2169 * src/gram.c (grammar_rules_print_xml): For each rule that has a
2170 %prec, add a percent_prec attribute.
2171 * src/print-xml.c (print_grammar): For each terminal that has a
2172 precedence or associativity, add a prec or assoc attribute.
2173 (xml_indent): New.
2174 (xml_puts): Use xml_indent.
2175 (xml_printf): Use xml_indent.
2176 * src/print-xml.h (xml_indent): Prototype.
2177
2178 * tests/existing.at (GNU pic Grammar): Fix a rule miscopied from
2179 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
2180
2181 2007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
2182
2183 * data/xslt/bison.xsl (bison:ruleNumber): Rename to...
2184 (bison:ruleByNumber): ... this for clarity.
2185 * data/xslt/xml2dot.xsl (xsl:template match="item"): Update.
2186 * data/xslt/xml2text.xsl (xsl:template match="item"): Update.
2187 (xsl:template match="reduction"): Update.
2188 (xsl:template match="item"): Update.
2189 (xsl:template match="reduction"): Update.
2190
2191 In the XML output, don't print the list of rules where symbols appear.
2192 Compute it in XSLT instead. Discussed at
2193 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00024.html>.
2194 * data/xslt/bison.xsl (bison:ruleByLhs): New.
2195 (bison:ruleByRhs): New.
2196 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Use
2197 bison:ruleByRhs.
2198 (xsl:template match="terminal/rule"): Remove.
2199 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
2200 bison:ruleByRhs.
2201 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
2202 Remove.
2203 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Use
2204 bison:ruleByRhs and mode="number-link" for rule template.
2205 (xsl:template match="terminal/rule"): Remove.
2206 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
2207 bison:ruleByRhs and mode="number-link" for rule template.
2208 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
2209 Rewrite as...
2210 (xsl:template match="rule" mode="number-link"): ... this.
2211 * src/print-xml.c (print_grammar): Don't print the list of rules.
2212
2213 2007-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
2214
2215 Don't let --report affect XML output; always print all information.
2216 Discussed at
2217 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00020.html>.
2218 * src/conflicts.c (log_resolution): Implement.
2219 * src/print-xml.c (print_core): Implement.
2220 (print_state): Implement.
2221 (print_xml): Implement.
2222
2223 * NEWS (2.3a+): Fix quotes.
2224 * src/parse-gram.y (prologue_declaration): For consistency with -v,
2225 don't let %verbose clear the list specified by --report.
2226
2227 2007-11-26 Akim Demaille <akim@epita.fr>
2228
2229 * data/Makefile.am (dist_pkgdata_DATA): Ship and install bison.xsl.
2230
2231 2007-11-24 Joel E. Denny <jdenny@ces.clemson.edu>
2232
2233 In the XML output, list useless and unused symbols and rules with the
2234 useful ones and add a "usefulness" attribute. Discussed starting at
2235 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00017.html>.
2236 * src/gram.c (grammar_rules_partial_print_xml): Remove.
2237 (grammar_rules_print_xml): Print all rules instead of just those
2238 useful in the grammar, and add a "usefulness" attribute.
2239 * src/gram.h (grammar_rules_partial_print_xml): Remove prototype.
2240 * src/print-xml.c (print_rules_useless_in_parser): Remove.
2241 (print_grammar): Print all nonterminals instead of just useful ones,
2242 and add a "usefulness" attribute to nonterminals and terminals.
2243 (print_xml): Don't print a separate "reductions" or
2244 "rules-useless-in-parser" element.
2245 * src/reduce.c (reduce_output): Use reduce_token_unused_in_grammar.
2246 (reduce_xml): Remove.
2247 (reduce_token_unused_in_grammar): New.
2248 (reduce_nonterminal_useless_in_grammar): New.
2249 * src/reduce.h (reduce_xml): Remove prototype.
2250 (reduce_token_unused_in_grammar): Add prototype.
2251 (reduce_nonterminal_useless_in_grammar): Add prototype.
2252 * data/xslt/xml2text.xsl: Update for XML changes.
2253 * data/xslt/xml2xhtml.xsl: Update for XML changes.
2254 * tests/reduce.at (Useless Terminals): Update output.
2255 (Useless Rules): Update output.
2256 (Reduced Automaton): Update output.
2257
2258 Say "Terminals unused in grammar" instead of "Unused terminals".
2259 * NEWS (2.3a+): Update.
2260 * doc/bison.texinfo (Understanding): Update example output.
2261 * src/reduce.c (reduce_output): Implement.
2262 * data/xslt/xml2text.xsl: Implement.
2263 * data/xslt/xml2xhtml.xsl: Implement.
2264
2265 2007-11-18 Joel E. Denny <jdenny@ces.clemson.edu>
2266
2267 Accept --report-file=FILE to override the default `.output' filename.
2268 * NEWS (2.3a+): Mention.
2269 * doc/bison.texinfo (Bison Options): Add an entry.
2270 * src/files.c (compute_output_file_names): Don't override
2271 spec_verbose_file if already set.
2272 * src/getargs.c (usage): Document --report-file.
2273 (REPORT_FILE_OPTION): New anonymous enum member.
2274 (long_options): Add entry for it.
2275 (getargs): Add case for it setting spec_verbose_file.
2276
2277 * build-aux/cross-options.pl: Don't record a short option just because
2278 there's an arg.
2279 * doc/.cvsignore: Add yacc.1.
2280
2281 2007-11-14 Akim Demaille <akim@epita.fr>
2282
2283 * doc/yacc.1.in: New.
2284 * configure.ac, doc/Makefile.am: Adjust.
2285 * configure.ac (PACKAGE_COPYRIGHT_YEAR): New substitution, and new
2286 config.h symbol.
2287 Use AC_SUBST for assignments too.
2288 * src/getargs.c (version): Use PACKAGE_COPYRIGHT_YEAR.
2289
2290 2007-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
2291
2292 * src/gram.c: Remove comments that duplicate comments in gram.h.
2293
2294 When reporting useless rules and nonterminals, say "useless in grammar"
2295 instead of "useless", and say "useless in parser" instead of "never
2296 reduced". Discussed starting at
2297 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00033.html>.
2298 * NEWS (2.3a+): Mention this change.
2299 * data/xslt/xml2text.xsl: Update output text and expected input XML
2300 element names to match changes below.
2301 * data/xslt/xml2xhtml.xsl: Likewise.
2302 (xsl:template match="bison-xml-report"): Add missing entry in Table of
2303 Contents: "Rules useless in parser due to conflicts".
2304 * doc/bison.texinfo (Decl Summary): Reword a little.
2305 (Understanding): Update example output for changes below.
2306 * src/gram.c: (rule_useful_p): Rename to...
2307 (rule_useful_in_grammar_p): ... this.
2308 (rule_useless_p): Rename to...
2309 (rule_useless_in_grammar_p): ... this.
2310 (rule_never_reduced_p): Rename to...
2311 (rule_useless_in_parser_p): ... this.
2312 (grammar_rules_print): Update for renames.
2313 (grammar_rules_print_xml): Update for renames.
2314 (grammar_rules_never_reduced_report): Rename to...
2315 (grammar_rules_useless_report): ... this since it is used for either
2316 kind of useless rule.
2317 * src/gram.h: Reword comments and update function names in prototypes.
2318 * src/main.c (main): Say "rule useless in parser due to conflicts".
2319 * src/print-xml.c (print_rules_never_reduced): Rename to...
2320 (print_rules_useless_in_parser): ... this, and rename output XML
2321 element "rules-never-reduced" to "rules-useless-in-parser".
2322 (print_xml): Update for rename.
2323 * src/print.c (print_results): Say "Rules useless in parser due to
2324 conflicts".
2325 * src/reduce.c (reduce_grammar_tables): Say "rule useless in grammar".
2326 (nonterminals_reduce): Say "nonterminal useless in grammar".
2327 (reduce_output): Say "Nonterminals useless in grammar".
2328 Say "Rules useless in grammar".
2329 (reduce_xml): Rename output XML element "useless" to
2330 "useless-in-grammar".
2331 (reduce_print): Don't report the count of grammatically useless rules
2332 as "rules never reduced" just because %yacc is specified.
2333 In the correct report of this count, say nonterminal(s) and rule(s)
2334 "useless in grammar".
2335 * tests/conflicts.at (S/R in initial): Update expected output.
2336 (Defaulted Conflicted Reduction): Likewise.
2337 (Unreachable States After Conflict Resolution): Likewise.
2338 * tests/existing.at (GNU pic Grammar): Likewise.
2339 * tests/reduce.at (Useless Nonterminals): Likewise.
2340 (Useless Rules): Likewise.
2341 (Reduced Automaton): Likewise.
2342 (Underivable Rules): Likewise.
2343 (Empty Language): Likewise.
2344
2345 2007-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
2346
2347 * data/bison.m4 (b4_cat): Put a newline after the end delimiter of the
2348 here document and before the EOF so that BSD's implementation of Bourne
2349 shell doesn't parse the delimiter as part of the here document.
2350 * doc/.cvsignore: Add cross-options.texi.
2351 * src/getargs.c (usage): Add a blank line after the warning categories.
2352
2353 2007-11-08 Paolo Bonzini <bonzini@gnu.org>
2354
2355 * data/lalr1.java (Lexer): Remove usage of b4_pure_if.
2356
2357 2007-11-05 Akim Demaille <akim@epita.fr>
2358
2359 Remove Id: from bison.1.
2360 * doc/Makefile.am (remove_time_stamp): Include the sed invocation.
2361 (perl -0777 -pi -e 's/\.PP\nId): New.
2362 (.x.1): Use it to ignore the version control revision.
2363
2364 2007-11-05 Akim Demaille <demaille@gostai.com>
2365
2366 * build-aux/Makefile.am: Ship cross-options.pl.
2367 * doc/Makefile.am: Always refer to cross-options.texi with
2368 $(srcdir).
2369 (MAINTAINERCLEANFILES): Add it.
2370
2371 2007-11-04 Akim Demaille <demaille@gostai.com>
2372
2373 Generate the long/short option cross-table.
2374 * build-aux/cross-options.pl: New.
2375 * doc/Makefile.am (cross-options.texi): New.
2376 * doc/bison.texinfo: Use it.
2377
2378 2007-11-04 Akim Demaille <demaille@gostai.com>
2379
2380 Generate bison.1 using help2man.
2381 * doc/common.x, doc/bison.x: New.
2382 * doc/Makefile.am (bison.1, .x.1): New.
2383 The code is taken from autoconf-2.61/man/Makefile.am.
2384 * configure.ac: Look for help2man.
2385
2386 2007-11-04 Akim Demaille <demaille@gostai.com>
2387
2388 Complete --help.
2389 * src/getargs.c (usage): Document -W, make it clear that -d,
2390 -g and -x have optional arguments.
2391
2392 2007-11-04 Akim Demaille <demaille@gostai.com>
2393
2394 Find sha1sum when named gsha1sum.
2395 * bootstrap (find_tool): New.
2396 ($SHA1SUM): New.
2397
2398 2007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
2399
2400 Deprecate %pure-parser and add `%define api.pure'. Discussed starting
2401 at
2402 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00006.html>.
2403 * NEWS (2.3a+): Mention.
2404 * data/bison.m4 (b4_pure_if): Don't define it here.
2405 * data/c.m4 (b4_identification): Depend on individual skeletons to
2406 define b4_pure_flag, b4_push_flag, or b4_pull_flag if they use the
2407 values of the %define variables api.pure or api.push_pull. Define
2408 YYPURE, YYPUSH, and YYPULL accordingly.
2409 * data/glr.c: Define b4_pure_if based on `%define api.pure' unless
2410 glr.cc has already defined b4_pure_flag.
2411 * data/push.c: Define b4_pure_if based on `%define api.pure'.
2412 Remove YYPUSH and YYPULL since they're back in b4_identification again.
2413 * data/yacc.c: Define b4_pure_if based on `%define api.pure'.
2414 * doc/bison.texinfo (Pure Decl): Update.
2415 (Push Decl): Update.
2416 (Decl Summary): Add api.pure to %define entry.
2417 In %pure-parser entry, say it's deprecated and reference %define.
2418 (Pure Calling): Update.
2419 (Error Reporting): Update.
2420 (C++ Scanner Interface): Update.
2421 (How Can I Reset the Parser): Update.
2422 (Table of Symbols): In %pure-parser entry, say it's deprecated and
2423 reference %define.
2424 * src/getargs.c (pure_parser): Remove global variable.
2425 * src/getargs.h (pure_parser): Remove extern.
2426 * src/output.c (prepare): Don't define pure_flag muscle.
2427 * src/parse-gram.y (prologue_declaration): Implement %pure-parser as a
2428 wrapper around `%define api.pure'.
2429 * tests/calc.at (Simple LALR Calculator): Update.
2430 (Simple GLR Calculator): Update.
2431 * tests/cxx-type.at (GLR: Resolve ambiguity, pure, no locations):
2432 Update.
2433 (GLR: Resolve ambiguity, pure, locations): Update.
2434 (GLR: Merge conflicting parses, pure, no locations): Update.
2435 (GLR: Merge conflicting parses, pure, locations): Update.
2436 * tests/glr-regression.at (Uninitialized location when reporting
2437 ambiguity): Update
2438 * tests/input.at (Unused %define api.pure): New test case.
2439 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Update definition for
2440 AT_PURE_IF and AT_PURE_AND_LOC_IF.
2441 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
2442
2443 2007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
2444
2445 %define push_pull -> %define api.push_pull. Discussed starting at
2446 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00005.html>.
2447 * data/push.c: Expect the new name.
2448 * data/yacc.c: Likewise.
2449 * doc/bison.texinfo (Push Decl): Update.
2450 (Decl Summary): Update %define entry.
2451 (Push Parser Function): Update.
2452 (Pull Parser Function): Update.
2453 (Parser Create Function): Update.
2454 (Parser Delete Function): Update.
2455 * tests/calc.at (Simple LALR Calculator): Update.
2456 * tests/input.at (%define enum variables): Update.
2457 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
2458 (Push Parsing: Multiple impure instances): Update.
2459 (Push Parsing: Unsupported Skeletons): Update.
2460 * tests/torture.at (Exploding the Stack Size with Alloca): Update.
2461 (Exploding the Stack Size with Malloc): Update.
2462
2463 * NEWS (2.3a+): Add an entry for the push parser, and clean up the
2464 other entries some.
2465
2466 2007-10-27 Joel E. Denny <jdenny@ces.clemson.edu>
2467
2468 For the XML output's terminal element, rename @number to @token-number,
2469 and add @symbol-number. In the nonterminal element, rename @number to
2470 @symbol-number. Discussed starting at
2471 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00040.html>.
2472 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Update for
2473 renames.
2474 (xsl:template match="nonterminal"): Likewise.
2475 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Likewise.
2476 (xsl:template match="nonterminal"): Likewise.
2477 * src/print-xml.c (print_grammar): Implement.
2478
2479 2007-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
2480
2481 * data/xslt/xml2dot.xsl (xsl:template match="automaton/state"): After
2482 2007-10-11 change, the child elements here are items not rules.
2483 (xsl:template match="item"): New.
2484 (xsl:template match="rule"): Update for new reduced itemset.
2485 (xsl:template match="point"): Remove.
2486 (xsl:template match="empty"): For consistency with --graph, don't
2487 output "/* empty */".
2488 * data/xslt/xml2text.xsl (xsl:template match="terminal"): When invoking
2489 line-wrap, don't pass a negative value as first-line-length since this
2490 won't work with the following changes.
2491 (xsl:template name="line-wrap"): Simplify slightly.
2492 (xsl:template name="ws-search"): Eliminate recursion.
2493 * src/print_graph.c (print_core): Don't print a reduction's lookahead
2494 set next to an item whose dot is not at the end of the RHS even if it
2495 happens to be associated with the same rule.
2496
2497 2007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
2498
2499 Add %define lr.keep_unreachable_states.
2500 * NEWS (2.3a+): Mention it in the entry for unreachable state removal.
2501 * doc/bison.texinfo (Decl Summary): Mention it in the %define entry.
2502 * src/main.c (main): Implement it.
2503 * tests/conflicts.at (Unreachable States After Conflict Resolution):
2504 Extend to test it, and fix a typo.
2505
2506 2007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
2507
2508 * NEWS (2.3a+): Add entry for recent .output file lookahead set fix.
2509 * doc/bison.texinfo (Understanding): Remove a bogus lookahead set in
2510 the example .output text.
2511 * tests/regression.at (Extra lookahead sets in report): Improve wording
2512 of comments.
2513
2514 2007-10-17 Wojciech Polak <polak@gnu.org>
2515
2516 * src/print-xml.c (print_grammar): Renamed
2517 <terminal> and <nonterminal> attributes:
2518 "type" to "number" and "symbol" to "name".
2519 * data/xslt/xml2text.xsl (xsl:template match="terminal"):
2520 Use new attribute names.
2521 (xsl:template match="nonterminal"): Likewise.
2522 * data/xslt/xml2xhtml.xsl: Likewise.
2523
2524 2007-10-17 Joel E. Denny <jdenny@ces.clemson.edu>
2525
2526 * doc/bison.texinfo (Bison Options): Add entry for --print-datadir.
2527 (Option Cross Key): Likewise.
2528
2529 * src/print-xml.c (print_core): Don't print a reduction's lookahead set
2530 next to an item whose dot is not at the end of the RHS even if it
2531 happens to be associated with the same rule.
2532 * src/print.c (print_core): Likewise.
2533 * tests/conflicts.at (Unresolved SR Conflicts): Update output.
2534 (Resolved SR Conflicts): Update output.
2535 * tests/regression.at (Extra lookahead sets in report): New test case.
2536
2537 2007-10-11 Wojciech Polak <polak@gnu.org>
2538
2539 * src/print-xml.c (print_core): Remove item set
2540 redundancy.
2541 * data/xslt/bison.xsl (bison:ruleNumber): New key.
2542 Improve processing time. Suggested by Joel E. Denny.
2543 * data/xslt/xml2dot.xsl (xsl:template name="escape"):
2544 Write xsl:param "required" attribute as comment.
2545 * data/xslt/xml2text.xsl (xsl:template match="item"): New.
2546 (xsl:template match="rule"): Support new reduced itemset.
2547 (xsl:template match="point"): Remove.
2548 * data/xslt/xml2xhtml.xsl: Likewise.
2549
2550 2007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
2551
2552 * src/getargs.c (version): Update copyright year.
2553
2554 2007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
2555
2556 Make xml2dot.xsl and --graph produce the same output.
2557 * data/xslt/xml2dot.xsl (xsl:template match="rule"): Use a `&#10;'
2558 instead of a `\n'. That is, don't add escapes yet or they'll be doubly
2559 escaped later.
2560 (xsl:template name="output-node"): Use the new escape template instead
2561 of the string-replace template directly.
2562 (xsl:template name="output-edge"): Likewise.
2563 (xsl:template name="escape"): New, escapes backslashes and newlines in
2564 addition to quotation marks.
2565 * src/graphviz.c (start_graph, output_node, output_edge): Add
2566 whitespace to output for legibility.
2567
2568 Make xml2text.xsl and --report produce the same output, and remove the
2569 XML "conflicts" element since a conflict summary is easily extracted
2570 from the automaton.
2571 * data/xslt/bison.xsl: New.
2572 (xsl:template match="state" mode="bison:count-conflicts): New.
2573 * data/xslt/xml2text.xsl: Import bison.xsl.
2574 (xsl:template match="bison-xml-report"): Instead of styling the
2575 "conflicts" element, style the "automaton" element with mode
2576 "conflicts". Unlike the former, the latter lists S/R and R/R
2577 conflicts for a state on the same line.
2578 (xsl:template match="conflicts"): Remove.
2579 (xsl:template match="conflict"): Remove.
2580 (xsl:template match="terminal"): Line-wrap the list of rules in which
2581 the terminal is used.
2582 (xsl:template match="nonterminal"): Likewise for nonterminals.
2583 (xsl:template match="automaton" mode="conflicts"): New.
2584 (xsl:template match="state" mode="conflicts"): New.
2585 (xsl:template name="line-wrap"): New.
2586 (xsl:template name="ws-search"): New.
2587 * data/xslt/xml2xhtml.xsl: Import bison.xsl.
2588 (xsl:template match="bison-xml-report"): Instead of styling the
2589 "conflicts" element, style the "automaton" element with mode
2590 "conflicts."
2591 (xsl:template match="conflicts"): Remove.
2592 (xsl:template match="conflict"): Remove.
2593 (xsl:template match="automaton" mode="conflicts"): New.
2594 (xsl:template match="state" mode="conflicts): New.
2595 * src/conflicts.c (conflicts_output_xml): Remove.
2596 * src/conflicts.h (conflicts_output_xml): Remove prototype.
2597 * src/print-xml.c (print_xml): Don't invoke conflicts_output_xml.
2598 * src/print.c (print_grammar): Consistently wrap at the 66th column so
2599 the corresponding XSLT is easier. Also, never wrap between a word and
2600 the comma that follows it.
2601
2602 2007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
2603
2604 Improve C++ namespace support. Discussed starting at
2605 <http://lists.gnu.org/archive/html/help-bison/2007-09/msg00016.html>.
2606 * data/c++.m4: (b4_namespace_ref, b4_namespace_open,
2607 b4_namespace_close): New macros that interpret the %define variable
2608 "namespace" so its value can contain "::" to indicate nested
2609 namespaces.
2610 * data/glr.cc (b4_namespace): Don't define, and replace all uses with
2611 the above macros.
2612 * data/lalr1.cc (b4_namespace): Likewise.
2613 * data/location.cc (b4_namespace): Likewise.
2614 * doc/bison.texinfo (Decl Summary): Move `%define push_pull' entry
2615 inside a new table in the general %define entry. Document `%define
2616 namespace' there as well. Point the %name-prefix entry to it since it
2617 explains it more completely in the case of C++.
2618 (C++ Bison Interface): Mention `%define namespace' instead of
2619 %name-prefix.
2620 (Table of Symbols): Remove the `%define push_pull' entry. The %define
2621 entry suffices.
2622 * tests/c++.at (Relative namespace references): New test case.
2623 (Absolute namespace references): New test case.
2624 (Syntactically invalid namespace references): New test case.
2625 * tests/input.at (C++ namespace reference errors): New test case.
2626
2627 2007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
2628
2629 Add syncline support and location accessor to internal %define
2630 interfaces.
2631 * data/bison.m4 (b4_percent_define_get_loc): New.
2632 (b4_percent_define_get_syncline): New.
2633 (b4_percent_define_flag_if): Use b4_percent_define_get_loc.
2634 (b4_percent_define_default): Record defining location as line 1 rather
2635 than 0 for the sake of synchronizing #line's, and define
2636 b4_percent_define_syncline(VARIABLE).
2637 (b4_percent_define_check_values): Use b4_percent_define_get_loc.
2638 * src/muscle_tab.c (muscle_syncline_grow): New.
2639 (muscle_code_grow): Use muscle_syncline_grow.
2640 (muscle_percent_define_insert): Use muscle_percent_define_get_loc, and
2641 define b4_percent_define_syncline(VARIABLE).
2642 (muscle_percent_define_get_loc): New.
2643 (muscle_percent_define_get_syncline): New.
2644 (muscle_percent_define_flag_if): Use muscle_percent_define_get_loc, and
2645 remove some unused variables.
2646 (muscle_percent_define_default): Record defining location as line 1
2647 rather than 0 for the sake of synchronizing #line's, and define
2648 b4_percent_define_syncline(VARIABLE).
2649 (muscle_percent_define_check_values): Use
2650 muscle_percent_define_get_loc.
2651 * src/muscle_tab.h (muscle_percent_define_get_loc): Prototype.
2652 (muscle_percent_define_get_syncline): Prototype.
2653 * tests/skeletons.at (%define Boolean variables: invalid skeleton
2654 defaults): Update output for location change.
2655 (Complaining during macro argument expansion): Extend to test
2656 b4_percent_define_get_loc and b4_percent_define_get_syncline errors.
2657
2658 2007-10-07 Joel E. Denny <jdenny@ces.clemson.edu>
2659
2660 Fix some error-reporting macro bugs.
2661 * data/bison.m4 (b4_cat): New.
2662 (b4_error, b4_error_at): Use b4_cat to send error directives directly
2663 to stdout so they don't become arguments to other macros. Update
2664 comments and add examples.
2665 (b4_warn, b4_warn_at, b4_complain, b4_complain_at): Update comments and
2666 add examples.
2667 (b4_fatal, b4_fatal_at): Likewise, and invoke m4_exit(1) immediately
2668 after printing the error directive so that M4 doesn't report subsequent
2669 problems that are induced by this problem.
2670 * src/scan-skel.l: Recognize @` digraph outside of directive arguments
2671 instead of just in them. Recognize @\n in both places. Both expand to
2672 the empty string. Needed by b4_cat.
2673 * tests/skeletons.at (Complaining during macro argument expansion):
2674 New test case.
2675 (Fatal errors make M4 exit immediately): New test case.
2676
2677 2007-10-04 Joel E. Denny <jdenny@ces.clemson.edu>
2678
2679 Implement --print-datadir.
2680 * src/getargs.c (usage): Mention.
2681 (PRINT_DATADIR_OPTION): New anonymous enum member.
2682 (long_options): Add entry for it.
2683 (getargs): Add case for it calling compute_pkgdatadir.
2684 * src/output.c (output_skeleton): Encapsulate data directory
2685 computation from here...
2686 (prepare): ... and from here...
2687 (compute_pkgdatadir): ... into this new function.
2688 * src/output.h (compute_pkgdatadir): Prototype.
2689
2690 2007-09-29 Joel E. Denny <jdenny@ces.clemson.edu>
2691
2692 * src/print-xml.c (escape_bufs): New static global variable
2693 replacing...
2694 (xml_escape_n): ... the static local variable buf here.
2695 (print_xml): Free memory for escape_bufs.
2696 * src/reduce.c (reduce_xml): XML-escape terminal symbol tags.
2697
2698 2007-09-25 Joel E. Denny <jdenny@ces.clemson.edu>
2699
2700 Replace `%push-parser' and `%push-pull-parser' with
2701 `%define push_pull "push"' and `%define push_pull "both"'.
2702 `%define push_pull "pull"' is the default.
2703 * doc/bison.texinfo (Push Decl, Push Parser Function,
2704 Pull Parser Function, Parser Create Function, Parser Delete Function):
2705 Update declarations.
2706 (Decl Summary, Table of Symbols): Replace %push-parser and
2707 %push-pull-parser entries with a %define push_pull entry.
2708 * data/bison.m4 (b4_percent_define_check_values): New macro.
2709 (b4_pull_if, b4_push_if, b4_use_push_for_pull_if): Move these
2710 definitions...
2711 * data/c.m4 (b4_identification): ... and the YYPUSH and YYPULL cpp
2712 definitions...
2713 * data/push.c: ... to here and compute them from the value of the
2714 %define variable push_pull.
2715 * data/c-skel.m4: Instead of choosing the push.c skeleton for push
2716 parsing requests here...
2717 * data/yacc.c: ... hack this to switch to push.c any time
2718 b4_use_push_pull_flag or the %define variable push_pull is set. This
2719 will go away when we mv push.c yacc.c.
2720 * data/c++-skel.m4, data/glr.c, data/java-skel.m4: Don't report that
2721 push parsing is not supported since unused %define variables are
2722 reported anyway.
2723 * src/getargs.c, src/getargs.h (pull_parser, push_parser): Remove.
2724 * src/muscle_tab.h (muscle_percent_define_check_values): Update
2725 comments for consistency with b4_percent_define_check_values.
2726 * src/output.c (prepare): Don't insert b4_pull_flag and b4_push_flag
2727 muscles.
2728 * src/parse-gram.y (PERCENT_PUSH_PARSER, PERCENT_PUSH_PULL_PARSER):
2729 Remove.
2730 (prologue_declaration): Remove %push-parser and %push-pull-parser
2731 rules.
2732 * src/scan-gram.l (%push-parser, %push-pull-parser): Remove rules.
2733 * tests/calc.at: Update declarations.
2734 * tests/input.at (%define enum variables): New test case.
2735 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update
2736 declaration.
2737 (Push Parsing: Multiple impure instances): Update declaration.
2738 (Push Parsing: Unsupported Skeletons): New test case.
2739 * tests/torture.at (Exploding the Stack Size with Alloca): Update
2740 declaration.
2741 (Exploding the Stack Size with Malloc): Update declaration.
2742
2743 2007-09-24 Wojciech Polak <polak@gnu.org>
2744
2745 Add XSLT transformations.
2746
2747 * data/xslt/xml2dot.xsl: Transform XML into DOT.
2748 * data/xslt/xml2text.xsl: Transform XML into plain text.
2749 * data/xslt/xml2xhtml.xsl: Transform XML into XHTML.
2750 * data/Makefile.am (xsltdir): New variable.
2751 (dist_xslt_DATA): Add xslt/*.xsl files.
2752
2753 2007-09-23 Paul Eggert <eggert@cs.ucla.edu>
2754
2755 * src/conflicts.c (log_resolution): Fix indenting bugs I introduced.
2756 Problem reported by Wojciech Polak.
2757 * src/print-xml.c (xml_puts): Work even if LEVEL exceeds INT_MAX/2.
2758 (xml_printf): Undo change I made on 21 September; that is,
2759 indent 2 spaces, not 1.
2760
2761 2007-09-23 Joel E. Denny <jdenny@ces.clemson.edu>
2762
2763 Pacify ./configure --enable-gcc-warnings.
2764 * src/print-xml.c, src/print-xml.h (xml_puts): Make third argument
2765 `char const *' instead of `char *'.
2766 * src/state.c (state_rule_lookahead_tokens_print_xml): Remove unused
2767 local variable `sep'.
2768
2769 2007-09-21 Paul Eggert <eggert@cs.ucla.edu>
2770
2771 * src/gram.c (rule_rhs_print_xml): Now static, since it isn't used
2772 elsewhere.
2773 * src/print-xml.c: Prefer "const" after types; that's more consistent.
2774 (xml_printf): Indent just 1 space for level.
2775 (e_char, xlate_char): Remove.
2776 (xml_escape_string): Rewrite to avoid undefined behavior (used
2777 storage that was freed from the stack).
2778 (xml_escape_n): Don't bother checking for subscript error.
2779
2780 2007-09-21 Wojciech Polak <polak@gnu.org>
2781
2782 Add Bison XML Automaton Report.
2783
2784 Add support for an -x option to generate an XML report.
2785 It is not documented yet.
2786 * src/print-xml.c: New file.
2787 * src/print-xml.h: Likewise.
2788 * lib/timevar.def (TV_XML): New var.
2789 * src/Makefile.am (bison_SOURCES): Add print-xml.c, print-xml.h.
2790 * src/conflicts.c: Include print-xml.h.
2791 (solved_conflicts_xml_obstack): New var.
2792 (log_resolution, conflicts_solve, conflicts_free):
2793 Add support for XML report.
2794 (conflicts_output_val): New function.
2795 * src/conflicts.h (conflicts_output_val): New decl.
2796 * src/files.c (spec_xml_file): New var.
2797 (compute_output_file_names, output_file_names_free): Add XML support.
2798 * src/files.h (spec_xml_file): New decl.
2799 * src/getargs.c (xml_flag): New var.
2800 (usage, short_options, long_options, getargs): Add XML support.
2801 * src/getargs.h (xml_flag): New decl.
2802 * src/gram.c: Include print-xml.h.
2803 (rule_lhs_print_xml, rule_rhs_print_xml):
2804 (grammar_rules_partial_print_xml, grammar_rules_print_xml):
2805 New functions.
2806 * src/gram.h: Declare external ones.
2807 * src/main.c: Include print-xml.h.
2808 (main): Add XML support.
2809 * src/reduce.c: Include print-xml.h.
2810 (reduce_xml): New function.
2811 * src/reduce.h: Declare it.
2812 * src/state.c: Include print-xml.h.
2813 (state_new): Add XML support.
2814 (state_rule_lookahead_tokens_print_xml): New function.
2815 * src/state.h: Declare it.
2816 (struct state): New member solved_conflicts_xml.
2817 * src/symtab.c (symbol_class_get_string): New function.
2818 * src/symtab.h: Declare it.
2819
2820 2007-09-21 Paul Eggert <eggert@cs.ucla.edu>
2821
2822 * GNUmakefile: Switch to coreutils's version.
2823 * bootstrap: Likewise.
2824 * Makefile.cfg: Adjust to new GNUmakefile.
2825 * README-hacking: Likewise.
2826
2827 Import from gnulib:
2828
2829 2006-08-18 Paul Eggert <eggert@cs.ucla.edu>
2830 Bruno Haible <bruno@clisp.org>
2831
2832 * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
2833 and is a script that invokes bison. Tighten the code. Add comments.
2834
2835 2007-08-28 Joel E. Denny <jdenny@ces.clemson.edu>
2836
2837 Spell "boolean" as "Boolean". Reported by Akim Demaille.
2838 * data/bison.m4 (b4_percent_define_flag_if): Fix complaint.
2839 * doc/bison.texinfo (Decl Summary): Fix.
2840 * src/muscle_tab.c (muscle_percent_define_flag_if): Fix complaint.
2841 * tests/input.at (Boolean %define variables): Update output.
2842 * tests/skeletons.at (%define boolean variables: invalid skeleton
2843 defaults): Rename to...
2844 (%define Boolean variables: invalid skeleton defaults): ... this and
2845 update output.
2846
2847 2007-08-17 Joel E. Denny <jdenny@ces.clemson.edu>
2848
2849 In impure push mode, don't allow more than one yypstate to be allocated
2850 since multiple impure parsers would corrupt yynerrs.
2851 * data/push.c (yypstate_allocated): New static global variable
2852 initialized to 0.
2853 (yypull_parse): If yypstate_new returns 0, don't report it as memory
2854 exhaustion if yypstate_allocated is 1, but still return 2.
2855 (yypstate_new): Invoke yyerror and return 0 if yypstate_allocated is
2856 already 1. Otherwise, set it to 1.
2857 (yypstate_delete): Set it to 0.
2858 * tests/push.at (Push Parsing: Multiple impure instances): New test
2859 case.
2860
2861 2007-08-17 Bob Rossi <bob@brasko.net>
2862
2863 * doc/bison.texinfo (Push Decl): Document the push parser.
2864 (Table of Symbols): Ditto.
2865 (Pure Decl): Ditto.
2866 (Decl Summary): Ditto.
2867 (Multiple Parsers, Push Parser Function, Pull Parser Function,
2868 Parser Create Function, Parser Delete Function):
2869 Add new push parser symbols.
2870 (Table of Symbols): Document push-parser, push-pull-parser,
2871 yypush_parse, yypull_parse, yypstate_new and yypstate_delete.
2872
2873 2007-08-15 Paul Eggert <eggert@cs.ucla.edu>
2874
2875 Update to GPLv3.
2876 * doc/gpl-3.0.texi: New file.
2877 * doc/gpl.texi: Remove.
2878 * COPYING, GNUmakefile, HACKING, Makefile.am, Makefile.cfg:
2879 * Makefile.maint, NEWS, PACKAGING, README, README-alpha:
2880 * README-hacking, TODO, bootstrap, bootstrap.conf:
2881 * configure.ac, data/Makefile.am, data/README, data/bison.m4:
2882 * data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4:
2883 * data/glr.c, data/glr.cc, data/java-skel.m4, data/java.m4:
2884 * data/lalr1.cc, data/lalr1.java, data/location.cc:
2885 * data/push.c, data/yacc.c, data/m4sugar/m4sugar.m4:
2886 * djgpp/Makefile.maint, djgpp/README.in, djgpp/config.bat:
2887 * djgpp/config.sed, djgpp/config.site, djgpp/config_h.sed:
2888 * djgpp/djunpack.bat, djgpp/subpipe.c, djgpp/subpipe.h:
2889 * djgpp/testsuite.sed, doc/Makefile.am, doc/bison.texinfo:
2890 * doc/fdl.texi, doc/refcard.tex, etc/Makefile.am, etc/README:
2891 * etc/bench.pl.in, examples/Makefile.am, examples/extexi:
2892 * examples/calc++/Makefile.am, lib/Makefile.am, lib/abitset.c:
2893 * lib/abitset.h, lib/bbitset.h, lib/bitset.c, lib/bitset.h:
2894 * lib/bitset_stats.c, lib/bitset_stats.h, lib/bitsetv-print.c:
2895 * lib/bitsetv-print.h, lib/bitsetv.c, lib/bitsetv.h:
2896 * lib/ebitset.c, lib/ebitset.h, lib/get-errno.c:
2897 * lib/get-errno.h, lib/lbitset.c, lib/lbitset.h:
2898 * lib/libiberty.h, lib/main.c, lib/subpipe.c, lib/subpipe.h:
2899 * lib/timevar.c, lib/timevar.def, lib/timevar.h:
2900 * lib/vbitset.c, lib/vbitset.h, lib/yyerror.c:
2901 * m4/c-working.m4, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4:
2902 * m4/timevar.m4, src/LR0.c, src/LR0.h, src/Makefile.am:
2903 * src/assoc.c, src/assoc.h, src/closure.c, src/closure.h:
2904 * src/complain.c, src/complain.h, src/conflicts.c:
2905 * src/conflicts.h, src/derives.c, src/derives.h, src/files.c:
2906 * src/files.h, src/flex-scanner.h, src/getargs.c:
2907 * src/getargs.h, src/gram.c, src/gram.h, src/graphviz.c:
2908 * src/lalr.c, src/lalr.h, src/location.c, src/location.h:
2909 * src/main.c, src/muscle_tab.c, src/muscle_tab.h:
2910 * src/nullable.c, src/nullable.h, src/output.c, src/output.h:
2911 * src/parse-gram.c, src/parse-gram.h, src/parse-gram.y:
2912 * src/print.c, src/print.h, src/print_graph.c:
2913 * src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c:
2914 * src/reduce.h, src/relation.c, src/relation.h:
2915 * src/revision.h, src/scan-code.h, src/scan-code.l:
2916 * src/scan-gram.h, src/scan-gram.l, src/scan-skel.h:
2917 * src/scan-skel.l, src/state.c, src/state.h, src/symlist.c:
2918 * src/symlist.h, src/symtab.c, src/symtab.h, src/system.h:
2919 * src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h:
2920 * tests/Makefile.am, tests/actions.at, tests/c++.at:
2921 * tests/calc.at, tests/conflicts.at, tests/cxx-type.at:
2922 * tests/existing.at, tests/glr-regression.at:
2923 * tests/headers.at, tests/input.at, tests/java.at:
2924 * tests/local.at, tests/output.at, tests/push.at:
2925 * tests/reduce.at, tests/regression.at, tests/sets.at:
2926 * tests/skeletons.at, tests/synclines.at, tests/testsuite.at:
2927 * tests/torture.at:
2928 Update to GPLv3.
2929
2930 2007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
2931
2932 Get rid of broken %no-parser, -n, and --no-parser implementation and
2933 documentation.
2934 * TODO: Don't mention them.
2935 * doc/bison.1: Likewise.
2936 * doc/bison.texinfo (Decl Summary): Likewise.
2937 (Bison Options): Likewise.
2938 (Option Cross Key): Likewise.
2939 * src/getargs.c (no_parser_flag): Remove global variable.
2940 (usage): Don't print description of -n and --no-parser.
2941 (long_options): Remove --no-parser entry here.
2942 (getargs): Remove -n case in the switch here.
2943 * src/getargs.h (no_parser_flag): Remove extern.
2944 * tests/regression.at (Web2c Actions): Remove comment that mentions
2945 --no-parser.
2946
2947 2007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
2948
2949 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Do not
2950 name user variables starting with `yy'. Just pass NULL instead of a
2951 dummy local &yylval to yypush_parse.
2952 * tests/torture.at (AT_DATA_STACK_TORTURE): Do not name user variables
2953 starting with `yy'.
2954
2955 2007-08-03 Joel E. Denny <jdenny@ces.clemson.edu>
2956
2957 * data/yacc.c (yyexhaustedlab): Define it when YYERROR_VERBOSE is
2958 true since it's then always used regardless of whether yyoverflow is
2959 defined. Reported by Christian Burger at
2960 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00031.html>.
2961 * THANKS: Add Christian Burger.
2962
2963 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
2964 node names: say "Decl Summary" not "Bison Declaration Summary".
2965
2966 2007-07-28 Joel E. Denny <jdenny@ces.clemson.edu>
2967
2968 * src/muscle_tab.c (muscle_percent_define_flag_if): In order to
2969 determine whether this function has already complained about an invalid
2970 value for a %define boolean variable, don't check whether Bison has
2971 ever examined the value. As written, the check was a tautology.
2972 Instead, record and check for this complaint using a separate muscle.
2973
2974 2007-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
2975
2976 Fix push parsing memory leak reported by Brandon Lucia at
2977 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00032.html>.
2978 * THANKS: Add Brandon Lucia.
2979 * data/push.c (yypstate_delete): Free the stack if it was reallocated
2980 but the parse never completed and thus freed it.
2981 * tests/Makefile.am (TESTSUITE_AT): Add push.at.
2982 * tests/testsuite.at: Include push.at.
2983 * test/push.at: New.
2984 (Push Parsing: Memory Leak for Early Deletion): New test case.
2985
2986 2007-07-17 Joel E. Denny <jdenny@ces.clemson.edu>
2987
2988 Improve handling of multiple S/R conflicts in the same state and of S/R
2989 conflicts involving multiple reductions.
2990 * src/conflicts.c (resolve_sr_conflict): Don't assign the error action
2991 set for a state here or Bison will abort if it is reassigned on a
2992 later conflicted reduction in the same state.
2993 Similarly, don't finalize and assign the solved conflicts report here
2994 or it will be lost if it is reassigned on a later conflicted reduction
2995 in the same state.
2996 (set_conflicts): Instead, assign them both here after all S/R conflicts
2997 in the state have been fully examined.
2998 * src/print.c (shift_set): Rename to...
2999 (no_reduce_set): ... this.
3000 (print_reductions): Update for rename, and add %nonassoc error action
3001 tokens to no_reduce_set so that, when printing the first remaining
3002 reduction on an error action token, the reduction is enclosed in
3003 brackets.
3004 (print_results): Update for rename.
3005 * tests/conflicts.at (Solved conflicts report for multiple reductions
3006 in a state): New test case.
3007 (%nonassoc error actions for multiple reductions in a state): New test
3008 case.
3009
3010 * src/main.c (main): Don't depend on C99 features.
3011
3012 2007-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
3013
3014 * build-aux/.cvsignore: Add compile.
3015 * lib/.cvsignore: Add charset.alias, ref-add.sed, ref-del.sed, and
3016 uniwidth.
3017
3018 2007-07-10 Joel E. Denny <jdenny@ces.clemson.edu>
3019
3020 * bootstrap (slurp): Create target directories that don't exist.
3021 Specifically, we need lib/uniwidth/ because of recent Gnulib changes.
3022
3023 2007-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
3024
3025 * LR0.c (new_itemsets): Fix wording in comments: say item index rather
3026 than item number.
3027 * closure.c (closure): Likewise.
3028 * state.h (reductions): Comment sorting of rules.
3029 (state): Comment sorting of items.
3030
3031 2007-07-02 Joel E. Denny <jdenny@ces.clemson.edu>
3032
3033 Fix C++ test cases after recent Gnulib changes. Discussed starting at
3034 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00000.html>.
3035 * examples/calc++/Makefile.am (DEFAULT_INCLUDES): Override Automake's
3036 definition in order to avoid Gnulib headers since we don't use config.h
3037 here.
3038 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Use AT_DATA_GRAMMAR
3039 rather than AT_DATA so that config.h is included.
3040
3041 2007-07-01 Joel E. Denny <jdenny@ces.clemson.edu>
3042
3043 * data/glr.c (yy_yypstack, yypstates, yypdumpstack): Use YYFPRINTF
3044 instead of fprintf. Guard these functions with #if YYDEBUG instead of
3045 #ifdef YYDEBUG for consistency with all other uses of YYDEBUG in Bison
3046 and so that YYFPRINTF is guaranteed to be defined here.
3047
3048 2007-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
3049
3050 * src/muscle_tab.c (muscle_percent_define_invalid_value): Replace
3051 with...
3052 (muscle_percent_define_check_values): ... this more helpful function.
3053 Again, it's not used yet, but it will be.
3054 * src/muscle_tab.h: Likewise.
3055
3056 Improve some comments in parser table construction.
3057 * src/LR0.c (new_itemsets): Explain sorting of itemset and kernel_base.
3058 (generate_states): Don't mention ruleset, which is internal to closure.
3059 * src/closure.c (closure): Explain sorting of core and itemset, which
3060 is required for this function to behave correctly.
3061 * src/closure.h (closure): Mention sorting.
3062
3063 2007-05-28 Joel E. Denny <jdenny@ces.clemson.edu>
3064
3065 * src/lalr.c (state_lookahead_tokens_count): For code readability,
3066 move the check for disabled transitions to an aver since conflict
3067 resolution hasn't happened yet.
3068
3069 * src/lalr.c (state_lookahead_tokens_count): Remove the check that
3070 labels a state as inconsistent just because it has error transitions.
3071 The original form of this check appeared in revision 1.1 of lalr.c,
3072 which was committed on 1991-12-21. Now (at least), changing the
3073 consistency label on such a state appears to have no useful effect in
3074 any of the places it is examined, which I enumerate below. The key
3075 point to understanding each item in this enumeration is that a state
3076 with an error transition is labelled consistent in the first place only
3077 if it has no rules, so the check cannot matter for states that have
3078 rules. (1) Labelling a state as inconsistent will cause set_conflicts
3079 to try to identify its conflicts, and a state must have *rules* to have
3080 conflicts. (2) Labelling a state as inconsistent will affect how
3081 action_row sets the default *rule* for the state. (3) Labelling a
3082 state as inconsistent will cause build_relations to add lookback edges
3083 to *rules* in that state.
3084 * src/state.h (struct state): Word the comment for member consistent
3085 more carefully.
3086
3087 2007-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
3088
3089 Don't depend on C99 features.
3090 * src/conflicts.c (conflicts_update_state_numbers): Fix for-loop.
3091 * src/lalr.c (lalr_update_state_numbers): Fix for-loop.
3092 * src/reader.c (check_and_convert_grammar): Fix for-loop.
3093 * src/state.c (state_mark_reachable_states): Fix for-loop.
3094 (state_remove_unreachable_states): Fix for-loop.
3095
3096 Don't widen struct state with member reachable just to temporarily
3097 record reachability. Instead, use a local bitset.
3098 * src/state.h (struct state): Remove member.
3099 * src/state.c (state_new): Don't initialize it.
3100 (state_mark_reachable_states): Rename to...
3101 (state_record_reachable_states): ... this, and use bitset.
3102 (state_remove_unreachable_states): Use bitset.
3103
3104 2007-05-26 Joel E. Denny <jdenny@ces.clemson.edu>
3105
3106 * src/Makefile.am (yacc): Quote target action commands properly so
3107 that the yacc script isn't corrupt. Reported by Hans Aberg at
3108 <http://lists.gnu.org/archive/html/bug-bison/2007-05/msg00003.html>.
3109
3110 * data/glr.c (yylval): As in yacc.c, don't extern in the header for
3111 the case of pure parsers. Reported by Frans Englich at
3112 <http://lists.gnu.org/archive/html/help-bison/2007-05/msg00018.html>.
3113 * THANKS: Add Frans Englich.
3114
3115 * NEWS (2.3a+): In the %code entry, reference section `Bison
3116 Declaration Summary' from the manual now since the %code summary has
3117 moved there.
3118 * doc/bison.texinfo (Prologue Alternatives): Mention that directives
3119 in the rules section must be terminated by semicolons.
3120
3121 2007-05-20 Joel E. Denny <jdenny@ces.clemson.edu>
3122
3123 Extend the front-end API for %define variables to more completely
3124 mirror the back-end. This will be useful in the future.
3125 * data/bison.m4 (b4_percent_define_get, b4_percent_define_ifdef):
3126 Update comments to mention the new front-end counterparts of these
3127 macros.
3128 * src/muscle_tab.c (MUSCLE_COMMON_DECODE): New macro with common code
3129 for muscle_string_decode and muscle_location_decode.
3130 (muscle_string_decode): New static function.
3131 (muscle_location_decode): Use MUSCLE_COMMON_DECODE.
3132 (muscle_percent_define_get, muscle_percent_define_ifdef): New
3133 functions.
3134 (muscle_percent_define_flag_if): Use muscle_percent_define_ifdef and
3135 muscle_percent_define_get to mimic the b4_percent_define_flag_if
3136 implementation more closely.
3137 (muscle_percent_define_invalid_value): New function.
3138 * src/muscle_tab.h (muscle_percent_define_get,
3139 muscle_percent_define_ifdef, muscle_percent_define_invalid_value):
3140 Prototype.
3141
3142 2007-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
3143
3144 * NEWS (2.3a+): Mention yesterday's state-removal change.
3145 (2.3a): Remove the %language entry, which was added after 2.3a.
3146 * src/LR0.c, src/closure.c, src/closure.h, src/conflicts.c,
3147 src/conflicts.h, src/lalr.c, src/lalr.h, src/print.c,
3148 src/print_graph.c, src/state.c, src/state.h, tests/conflicts.at,
3149 tests/existing.at: Update copyright date.
3150
3151 2007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
3152
3153 If conflict resolution makes states unreachable, remove those states,
3154 report rules that are then unused, and don't report conflicts in those
3155 states.
3156 * src/conflicts.c, src/conflicts.h (conflicts_update_state_numbers):
3157 New global function.
3158 * src/lalr.c, src/lalr.h (lalr_update_state_numbers): New global
3159 function.
3160 * src/main.c (main): After conflict resolution, remove the unreachable
3161 states and update all data structures that reference states by number.
3162 * src/state.c (state_new): Initialize each state's reachable member to
3163 false.
3164 (state_mark_reachable_states): New static function.
3165 (state_remove_unreachable_states): New global function.
3166 * src/state.h (struct state): Add member bool reachable.
3167 (state_remove_unreachable_states): Prototype.
3168 * tests/conflicts.at (Unreachable States After Conflict Resolution):
3169 New test case.
3170 * tests/existing.at (GNU pic Grammar): Update test case output now that
3171 an unused rule is discovered.
3172
3173 2007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
3174
3175 Minor code cleanup in parser table construction.
3176 * src/LR0.c (new_itemsets): Use item_number_is_symbol_number.
3177 (new_itemsets, save_reductions): Update for rename to nitemset.
3178 * src/closure.c (nritemset): Rename to...
3179 (nitemset): ... this since the "r" appears to meaningless and isn't
3180 used in the comments.
3181 (closure): Update for rename.
3182 * src/closure.h (nritemset): Update extern to...
3183 (nitemset): ... this.
3184 * src/lalr.c (LA): Fix a typo in comments.
3185 * src/print.c (print_core): Update for rename to nitemset.
3186 * src/print_graph.c (print_graph): Likewise.
3187 * src/state.h: Fix some typos in header comments.
3188
3189 2007-04-04 Paul Eggert <eggert@cs.ucla.edu>
3190
3191 * THANKS: Use ASCII for Sebastien Fricker's name. Bison source
3192 still sticks to ASCII. Sorry!
3193
3194 * README-hacking: New file, taken mostly from coreutils, with changes
3195 for Bison. Contains much of the contents of:
3196 * README-cvs: Remove.
3197 * bootstrap: Sync from gnulib.
3198 * build-aux/.cvsignore: Remove *.t, mkinstalldirs.
3199 * lib/.cvsignore: Add wchar.h, wctype.h. Remove exit.h.
3200
3201 2007-03-10 Joel E. Denny <jdenny@ces.clemson.edu>
3202
3203 * doc/bison.texinfo (Destructor Decl): Fix typo reported by Sebastian
3204 Setzer.
3205 (Java Differences): Fix some typos.
3206 * THANKS: Add Sebastian Setzer.
3207
3208 2007-03-07 Paolo Bonzini <bonzini@gnu.org>
3209
3210 * data/java.m4 (b4_single_class_if): Remove.
3211 (b4_abstract_if): Look at "%define abstract".
3212 (b4_lexer_if): New.
3213 (b4_union_name): Rename...
3214 (b4_yystype): ... to this. Map to "%define stype".
3215 (b4_rhs_value, b4_parse_param_decl, b4_lex_param_decl,
3216 b4_maybe_throws): Fix quoting.
3217 (b4_lex_param_call): Move below to keep b4_*_param_decl close.
3218 * data/lalr1.java (Lexer interface): Always define.
3219 (Lexer interface within parser class): Remove.
3220 (YYLexer class): New, used when "%code lexer" is present.
3221 (constructor): When "%code lexer" is used, pass %lex-param
3222 to the lexer constructor.
3223 (yylex, yyparse): Remove %lex-param from method invocations
3224 (YYStack, yyaction, yyparse): Rename b4_union_name to b4_yystype.
3225
3226 * doc/bison.texinfo (Java Bison Interface): Mention "%define
3227 abstract". Rename "%define union_name" to "%define stype".
3228 Rename method names according to previous patch.
3229 (Java Scanner Interface): Describe "%code lexer" instead of
3230 "%pure-parser" and "%define single_class".
3231 (Java Differences): Mention "%code lexer".
3232
3233 * tests/java.at (_AT_DATA_JAVA_CALC_Y): Remove final argument.
3234 Include scanner here, using macros from tests/local.at.
3235 (AT_DATA_CALC_Y): Remove final argument.
3236 (_AT_CHECK_JAVA_CALC): Likewise.
3237 (AT_CHECK_JAVA_CALC): Likewise. Test all four combinations
3238 of %locations and %error-verbose.
3239 (main): Test with and without %lex-param.
3240 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_LEXPARAM_IF.
3241 (AT_BISON_OPTION_POPDEFS): Pop it.
3242
3243 2007-03-07 Juan Manuel Guerrero <juan.guerrero@gmx.de>
3244
3245 DJGPP spefic issue. Inhibit the use of disallowed characters for
3246 file name genertion on Win98, WinXP, etc. These are |<>":?*\
3247 and concern testsuite case 46.
3248 * Makefile.am: djgpp/testsuite.sed added to EXTRA_DIST
3249 * djgpp/testsuite.sed: Inhibit the use of disallowed characters.
3250 * djgpp/config.bat: Inhibit the use of disallowed characters.
3251
3252 2007-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
3253
3254 Miscellaneous %define and %code cleanup.
3255 * data/bison.m4 (b4_percent_define_flag_if): Correct comments on how
3256 values are interpreted.
3257 * doc/bison.texinfo (Decl Summary): Clean up and extend %define
3258 documentation a little more.
3259 * src/muscle_tab.c (MUSCLE_USER_NAME_CONVERT,
3260 muscle_percent_define_insert, muscle_percent_code_grow): New
3261 functions/macros.
3262 * src/muscle_tab.h (muscle_percent_define_insert,
3263 muscle_percent_code_grow): Prototype.
3264 * src/parse-gram.y (prologue_declaration): Use
3265 muscle_percent_define_insert and muscle_percent_code_grow when parsing
3266 %define and %code directives.
3267
3268 Make it easy to share %define boolean variables between the front-end
3269 and back-end. Though not used yet, this will be useful in the future.
3270 * data/bison.m4 (b4_check_user_names): Rewrite comments to talk about
3271 Bison uses of names rather than just skeleton uses of names.
3272 (b4_percent_define_get, b4_percent_define_ifdef): Rename
3273 b4_percent_define_skeleton_variables(VARIABLE) to
3274 b4_percent_define_bison_variables(VARIABLE).
3275 (b4_percent_code_get, b4_percent_code_ifdef): Rename
3276 b4_percent_code_skeleton_qualifiers(QUALIFIER) to
3277 b4_percent_code_bison_qualifiers(QUALIFIER).
3278 (b4_check_user_names_wrap): Update for renames.
3279 * src/muscle_tab.c, src/muscle_tab.h (muscle_percent_define_flag_if,
3280 muscle_percent_define_default): New functions mimicking
3281 b4_percent_define_flag_if and b4_percent_define_default.
3282
3283 For %define variables, report locations for invalid values and
3284 redefinitions.
3285 * data/bison.m4 (b4_percent_define_flag_if): Read
3286 b4_percent_define_loc(VARIABLE) to report the location of an invalid
3287 value for VARIABLE.
3288 (b4_percent_define_default): Save a special location in
3289 b4_percent_define_loc(VARIABLE) in case the default value for VARIABLE
3290 must later be reported as invalid.
3291 * src/muscle_tab.c (muscle_location_grow, muscle_location_decode): New
3292 functions.
3293 (muscle_percent_define_insert): Record the location of VARIABLE in
3294 muscle percent_define_loc(VARIABLE), and use it to report the previous
3295 location for a redefinition.
3296 (muscle_percent_define_flag_if): Update like b4_percent_define_flag_if.
3297 (muscle_percent_define_default): Update like b4_percent_define_default.
3298 (muscle_grow_user_name_list): Rename to...
3299 (muscle_user_name_list_grow): ... this for consistency and use
3300 muscle_location_grow.
3301 * src/muscle_tab.h (muscle_location_grow): Prototype.
3302 * tests/input.at (%define errors): Update expected output.
3303 * tests/skeletons.at (%define boolean variables: invalid skeleton
3304 defaults): New test case.
3305
3306 2007-02-28 Joel E. Denny <jdenny@ces.clemson.edu>
3307
3308 * src/print.c (lookahead_set, state_default_rule): Remove.
3309 (print_reductions): Replace state_default_rule invocation with
3310 equivalent use of yydefact, which was computed in token_actions in
3311 tables.c.
3312 (print_results): Don't allocate lookahead_set.
3313
3314 2007-02-27 Paolo Bonzini <bonzini@gnu.org>
3315
3316 * data/lalr1.java: Prefix all private members with yy.
3317
3318 2007-02-24 Joel E. Denny <jdenny@ces.clemson.edu>
3319
3320 Use YYFPRINTF instead of fprintf where appropriate. Reported by
3321 Sebastien Fricker at
3322 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00035.html>.
3323 * THANKS: Add Sebastien Fricker.
3324 * data/glr.c, data/push.c, data/yacc.c (yy_reduce_print): Implement.
3325 * doc/bison.texinfo (Tracing): Make it clearer that YYFPRINTF must
3326 accept a variable number of arguments.
3327
3328 2007-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
3329
3330 * bootstrap: Remove occurrences of .#bootmp from lib/Makefile.
3331
3332 2007-02-13 Juan Manuel Guerrero <juan.guerrero@gmx.de>
3333
3334 * djgpp/config.bat: Adjustments concerning the use of autoconf 2.61.
3335 * djgpp/config.sed: Adjustments concerning the use of autoconf 2.61.
3336 * djgpp/config.site: Adjustments concerning the use of autoconf 2.61.
3337
3338 2007-02-11 Paul Eggert <eggert@cs.ucla.edu>
3339
3340 Undo my 2007-02-07 change, switching back to the c-strcase module
3341 introduced in the 2007-02-03 change. Bruno Haible reported that
3342 the 2007-02-07 change would be dangerous in Turkish if we add a
3343 language whose name contains "i", since "i" is not lowercase "I"
3344 in Turkish.
3345 * bootstrap.conf (gnulib_modules): Add c-strcase. Remove strcase.
3346 * lib/.cvsignore: Add c-ctype.c, c-ctype.h, c-strcase.h,
3347 c-strcasecomp.c, c-strncasecmp.c. Remove strcasecmp.c, strncasecmp.c.
3348 * m4/.cvsignore: Remove strcase.m4.
3349 * src/getargs.c: Revert 2007-02-07 change, as follows.
3350 Include c-strcase.h.
3351 (language_argmatch): Use c_strcasecmp rather than strcasecmp.
3352
3353 2007-02-11 Bruno Haible <bruno@clisp.org>
3354
3355 Enable the Java related testsuite tests when the only Java compiler
3356 found is a gcj < 4.3. Discussed at
3357 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00016.html>.
3358 * configure.ac (gt_JAVACOMP): Don't specify a target_version.
3359
3360 2007-02-11 Joel E. Denny <jdenny@ces.clemson.edu>
3361
3362 * data/Makefile.am: Update copyright date.
3363 * data/push.c (yypull_parse): Report memory exhaustion and return 2 if
3364 yypstate_new returns NULL.
3365 (yypstate_new): Return NULL if malloc does.
3366 * src/reader.c (packgram): Move translation of rule actions from the
3367 beginning of packgram to...
3368 (check_and_convert_grammar): ... here right before packgram is invoked
3369 so it's easier to write more complete comments, and remove redundant
3370 code.
3371
3372 2007-02-10 Joel E. Denny <jdenny@ces.clemson.edu>
3373
3374 As in semantic actions, make @$ in %initial-action, %destructor, and
3375 %printer imply %locations.
3376 * src/scan-code.l (SC_SYMBOL_ACTION): Set locations_flag = true when
3377 scanning @$.
3378 * tests/actions.at (AT_CHECK_ACTION_LOCATIONS): New macro supporting...
3379 (@$ in %initial-action implies %locations,
3380 @$ in %destructor implies %locations,
3381 @$ in %printer implies %locations): ... these new test cases.
3382
3383 2007-02-07 Paul Eggert <eggert@cs.ucla.edu>
3384
3385 Undo most of the 2007-02-03 change, switching to the strcase module
3386 now that gnulib strcase has been fixed.
3387 * bootstrap.conf (gnulib_modules): Remove c-strcase. Add strcase.
3388 * lib/.cvsignore: Remove c-ctype.c, c-ctype.h, c-strcase.h,
3389 c-strcasecomp.c, c-strncasecmp.c. Add strcasecmp.c, strncasecmp.c
3390 * m4/.cvsignore: Add strcase.m4.
3391 * src/getargs.c: Revert 2007-02-03 change, as follows.
3392 Don't include c-strcase.h.
3393 (language_argmatch): Use strcasecmp rather than c_strcasecmp.
3394 strcasecmp has "unspecified behavior" outside the POSIX locale,
3395 but it works fine in practice if at least one argument is ASCII,
3396 as is the case in Bison.
3397
3398 2007-02-07 Paolo Bonzini <bonzini@gnu.org>
3399
3400 * tests/java.at: Skip tests if only one of javac/java is present.
3401 Reported by Joel E. Denny.
3402 * tests/atlocal.in: Adjust copyright years.
3403
3404 2007-02-05 Paolo Bonzini <bonzini@gnu.org>
3405
3406 * data/lalr1.java (Stack): Work around old verifiers that disallow
3407 access to the private fields of an inner class, from the outer class.
3408 We can make Stack's fields public because user code doesn't have access
3409 to the instance of Stack used by parse(). Reported by Paul Eggert.
3410
3411 2007-02-03 Paul Eggert <eggert@cs.ucla.edu>
3412
3413 * .cvsignore: Add javacomp.sh, javaexec.sh. Is this really
3414 the right spot for these files?
3415 * bootstrap.conf (gnulib_modules): Add c-strcase.
3416 * lib/.cvsignore: Add c-ctype.c c-ctype.h, c-strcasecomp.c,
3417 c-strncasecmp.c.
3418 * src/getargs.c: Include c-strcase.h.
3419 (language_argmatch): Use c_strcasecmp rather than strcasecmp,
3420 to avoid unspecified behavior.
3421
3422 2007-02-01 Joel E. Denny <jdenny@ces.clemson.edu>
3423
3424 * doc/bison.texinfo (Decl Summary): Correct typo.
3425
3426 2007-01-30 Paolo Bonzini <bonzini@gnu.org>
3427
3428 * data/bison.m4 (b4_percent_define_flag_if): Don't treat 0 as false.
3429 Complain if the value does not match empty, "true" or "false".
3430 * data/c++.m4: Adjust default definitions of %define variables.
3431 * data/java.m4: Adjust default definitions of %define variables.
3432 * doc/bison.texinfo (Decl Summary): Adjust the %define entry according
3433 to above behavior.
3434 * tests/input.at (Boolean %define variables): Test new behavior.
3435
3436 2007-01-29 Paolo Bonzini <bonzini@gnu.org>
3437
3438 * NEWS: Mention java.
3439 * TODO: Remove things that are done.
3440 * bootstrap.conf: Add javacomp-script and javaexec-script.
3441 * configure.ac: Invoke gt_JAVACOMP and gt_JAVAEXEC.
3442
3443 * data/Makefile.am: Add new files.
3444 * data/java-skel.m4: New.
3445 * data/java.m4: New.
3446 * data/lalr1.java: New.
3447
3448 * doc/bison.texinfo: Put "A Complete C++ Example" under
3449 C++ Parsers. Add Java Parsers. Put C++ Parsers and Java Parsers
3450 under Other Languages.
3451
3452 * src/getargs.c (valid_languages): Add Java.
3453 * src/getargs.h (struct bison_language): Update size of string fields.
3454
3455 * tests/Makefile.am: Add java.at.
3456 * tests/atlocal.in: Add CONF_JAVA and CONF_JAVAC.
3457 * tests/java.at: New.
3458 * tests/testsuite.at: Include it.
3459
3460 2007-01-28 Joel E. Denny <jdenny@ces.clemson.edu>
3461
3462 Clean up.
3463 * src/scan-skel.l (at_directive_perform): Add at_directive_argc and
3464 at_directive_argv arguments so these no longer have to be global
3465 variables. Also, update the implementation for the following changes.
3466 (fail_for_at_directive_too_many_args,
3467 fail_for_at_directive_too_few_args): Add at_directive_name argument.
3468 (at_directive_name): Remove as at_directive_argv[0] will be used for
3469 this now.
3470 (AT_DIRECTIVE_ARGC_MAX): Increment to make space in at_directive_argv
3471 for the directive name.
3472 (at_directive_argc, at_directive_argv): Make these local within
3473 skel_lex instead of global.
3474 (INITIAL): Update directive start action for above changes.
3475 (SC_AT_DIRECTIVE_ARG): Rename to...
3476 (SC_AT_DIRECTIVE_ARGS): ... this, and update for above changes.
3477 (SC_AT_DIRECTIVE_SKIP_WS): Update.
3478 (scan_skel): Move yylex_destroy to...
3479 (skel_scanner_free): ... here.
3480 * tests/skeletons.at (installed skeleton file name): Rename to...
3481 (installed skeleton file names): ... this.
3482
3483 2007-01-27 Joel E. Denny <jdenny@ces.clemson.edu>
3484
3485 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
3486 node names: say "Table of Symbols" not "Bison Symbols", and say "Decl
3487 Summary" not "Directives".
3488 * doc/bison.texinfo (Decl Summary, Calc++ Parser): Cross-reference the
3489 %code entry in "Decl Summary" rather than the one in "Table of Symbols"
3490 since the former is now the more complete one.
3491 (Prologue Alternatives): Likewise and do the same for %defines.
3492 (Table of Symbols): Add summary of %code, add summary of %define, and
3493 move full %code documentation to...
3494 (Decl Summary): ... here for consistency with other entries in these
3495 sections.
3496 Move %define entry in order to keep this list alphabetized.
3497 Reword %define entry a little to put less emphasis on the skeleton
3498 concept, which most users shouldn't have to think about.
3499
3500 2007-01-26 Paul Eggert <eggert@cs.ucla.edu>
3501
3502 Adjust to recent gnulib changes.
3503 * lib/.cvsignore: Remove stpcpy.h, strndup.h, strnlen.h.
3504 Add string.h, string_.h, unistd_.h, wchar_.h.
3505 * m4/.cvsignore: Add gnulib-common.m4, string_h.m4, wchar.m4.
3506 * src/system.h: Don't include <stpcpy.h>; this is now done by
3507 <string.h>.
3508
3509 2007-01-23 Paolo Bonzini <bonzini@gnu.org>
3510
3511 Simplify implementation of unqualified %code, implement macros for
3512 uniform treatment of boolean %define flags. Document %define.
3513 * data/bison.m4 (b4_percent_define_ifdef, b4_percent_define_flag_if,
3514 b4_percent_code_ifdef): New.
3515 (b4_percent_code_get): Map unqualified %code to b4_percent_code().
3516 * data/c++.m4: Define default value for global_tokens_and_yystype.
3517 * data/glr.cc: Likewise.
3518 * data/location.cc: Use b4_percent_define_flag_if.
3519
3520 * doc/bison.texinfo (Decl Summary): Document %define.
3521
3522 * src/parse-gram.y (Unqualified %code): Change muscle name to
3523 b4_percent_code().
3524 (content.opt): Default to empty.
3525
3526 2007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
3527
3528 Implement support for relative and absolute skeleton file names.
3529 Discussed starting at
3530 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00071.html>.
3531 * doc/bison.texinfo (Decl Summary): Document in %skeleton entry.
3532 (Bison Options): Document in --skeleton entry.
3533 * src/output.c (output_skeleton): Use strncpy rather than strcpy since
3534 full_skeleton can't necessarily hold all of pkgdatadir.
3535 If the specified skeleton file name contains a `/', don't prepend
3536 pkgdatadir.
3537 * src/parse-gram.y (prologue_declaration): If the specified skeleton
3538 file name contains a `/', prepend the grammar file directory.
3539 * tests/Makefile.am (TESTSUITE_AT): Add skeletons.at.
3540 * skeletons.at: New file.
3541 (relative skeleton file names): New test case.
3542 (installed skeleton file names): New test case.
3543 * tests/testsuite.at: Include skeletons.at.
3544
3545 * bootstrap: Update copyright to 2007.
3546
3547 2007-01-17 Paolo Bonzini <bonzini@gnu.org>
3548
3549 * bootstrap: Remove occurrences of .#bootmp from the files.
3550
3551 2007-01-17 Akim Demaille <akim@epita.fr>
3552
3553 * doc/bison.texinfo (Calc++ Parser): Don't try to alias
3554 nonterminals.
3555 Use per-type %printer.
3556
3557 2007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
3558
3559 * NEWS, data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4,
3560 data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
3561 djgpp/config.site, src/files.c, src/files.h, src/main.c,
3562 src/muscle_tab.c, src/muscle_tab.h, src/parse-gram.y, src/reader.h,
3563 src/scan-skel.h, src/scan-skel.l, tests/actions.at, tests/calc.at,
3564 tests/glr-regression.at, tests/input.at, tests/local.at,
3565 tests/output.at, tests/torture.at: Update copyright to 2007.
3566
3567 2007-01-16 Akim Demaille <akim@epita.fr>
3568
3569 * doc/bison.texinfo (Calc++ Parsing Driver): Let "parse" return an
3570 error code.
3571 (Calc++ Scanner): Exit with failure if we can't open the input
3572 file.
3573 Accept "-" standing for stdin.
3574 (Calc++ Top Level): Print the result only if the parsing was
3575 successful.
3576
3577 2007-01-16 Akim Demaille <akim@epita.fr>
3578
3579 * data/lalr1.cc (yy_reduce_print_): Add a missing end-of-line.
3580
3581 2007-01-15 Paolo Bonzini <bonzini@gnu.org>
3582 and Joel E. Denny <jdenny@ces.clemson.edu>
3583
3584 Clean up %define and %code implementation in M4 some. Most
3585 importantly, rename all related macros to be in the b4_percent_define
3586 and b4_percent_code namespaces. Also, complete support for `.' in
3587 %define variable names and %code qualifiers.
3588 * data/bison.m4 (b4_check_user_names): Check for special
3589 "SKELETON-NAMESPACE(name)" macros instead of using two nested
3590 m4_foreach loops.
3591 (b4_get_percent_define, b4_get_percent_code): Rename to...
3592 (b4_percent_define_get, b4_percent_code_get): ... these.
3593 Extend documentation with examples.
3594 For SKELETON-NAMESPACE (as documented for b4_check_user_names), use
3595 b4_percent_define_skeleton_variables and
3596 b4_percent_code_skeleton_qualifiers.
3597 Expect any value for the %define variable `foo' to be stored in the
3598 macro named `b4_percent_define(foo)'; expect any %code blocks for the
3599 qualifier `foo' to be stored in a macro named `b4_percent_code(foo)';
3600 expect any unqualified %code blocks to be stored in a macro named
3601 `b4_percent_code_unqualified'.
3602 Use m4_indir so that %define variable names and %code qualifiers can
3603 contain `.', which is allowed by the grammar parser.
3604 (b4_percent_define_default): New macro to set a default value for a
3605 %define variable.
3606 (m4_wrap): Update wrapped code, and fix some underquoting.
3607 (b4_check_user_names_wrap): Update and define outside the m4_wrap.
3608 Expect grammar uses of %define variables and %code qualifiers to be
3609 defined in b4_percent_define_user_variables and
3610 b4_percent_code_user_qualifiers.
3611 * data/c++.m4: Use b4_percent_define_default rather than
3612 m4_define_default. Fix some underquoting. Skeleton usage of %define
3613 variable define_location_comparison now implies skeleton usage of
3614 %define variable filename_type.
3615 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
3616 data/push.c, data/yacc.c: Update macro names.
3617 * src/parse-gram.y (prologue_declaration, grammar_declaration): Update
3618 muscle names.
3619
3620 2007-01-14 Juan Manuel Guerrero <juan.guerrero@gmx.de>
3621
3622 DJGPP specific issues.
3623
3624 * djgpp/config.site: Set ac_cv_path_mkdir to a sane DJGPP specific
3625 default. Set gl_cv_absolute_wctype_h to a sane DJGPP specific default.
3626
3627 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
3628
3629 * tests/glr-regression.at: Use AT_PARSER_CHECK rather than AT_CHECK to
3630 run parsers in all tests so that Valgrind is invoked during
3631 maintainer-check-valgrind.
3632 (Duplicate representation of merged trees): Free all semantic values.
3633 (Duplicated user destructor for lookahead): Likewise.
3634
3635 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
3636
3637 * tests/local.at (AT_PARSER_CHECK): Add a PRE argument to specify a
3638 command-line prefix.
3639 * tests/torture.at (Exploding the Stack Size with Alloca): Stderr is
3640 ignored, so use that PRE to set --log-fd=1 in VALGRIND_OPTS so we don't
3641 miss Valgrind messages.
3642 (Exploding the Stack Size with Malloc): Likewise.
3643
3644 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
3645
3646 Ignore YYSTACK_USE_ALLOCA for push parsers since the stacks can't be
3647 locals. Reported by Juan Manuel Guerrero at
3648 <http://lists.gnu.org/archive/html/bug-bison/2007-01/msg00000.html>.
3649 * data/push.c: Enclose the #ifdef YYSTACK_USE_ALLOCA in b4_push_if.
3650 Fix some indentation also.
3651 * tests/torture.at (Exploding the Stack Size with Alloca): Add comment
3652 explaining this issue.
3653
3654 2007-01-09 Paolo Bonzini <bonzini@gnu.org>
3655 and Joel E. Denny <jdenny@ces.clemson.edu>
3656
3657 Simplify union and prologue handling, and escape union and lex/parse
3658 params with digraphs.
3659 * data/bison.m4 (b4_pre_prologue, b4_post_prologue): Set their default
3660 values to the empty string since these are no longer guaranteed
3661 initialized by the front-end.
3662 * data/glr.c, data/glr.cc, data/lalr1.cc, data/push.c, data/yacc.c: Add
3663 braces around b4_user_stype since this is no longer done by the
3664 front-end.
3665 * src/files.c, src/files.h (pre_prologue_obstack,
3666 post_prologue_obstack): Remove.
3667 * src/muscle_tab.c (muscle_pair_list_grow): Don't duplicate header
3668 comments here. Use MUSCLE_OBSTACK_SGROW so that values are escaped
3669 with digraphs. This fixes lex params and parse params.
3670 * src/muscle_tab.h (muscle_pair_list_grow): Update comments.
3671 * src/output.c (prepare): Remove muscle insertion of the prologues.
3672 (output): Remove freeing of pre_prologue_obstack and
3673 post_prologue_obstack.
3674 * src/parse-gram.y (prologue_declaration): Use muscle_code_grow rather
3675 than prologue_augment for prologue parsing so you don't need prologue
3676 obstacks.
3677 (grammar_declaration): For %union RHS, use `braceless' instead of
3678 "{...}" so that braces are already stripped and code is escaped with
3679 digraphs.
3680 * src/reader.c (prologue_augment): Remove.
3681 (reader): Remove initialization of pre_prologue_obstack and
3682 post_prologue_obstack.
3683 * src/reader.h (prologue_augment): Remove.
3684
3685 * data/c.m4: Remove stray parenthesis.
3686
3687 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
3688
3689 Remove quotes from variables names in %define directives and from
3690 qualifiers in %code directives, and restrict the characters that are
3691 allowed in them to M4-friendly ones. For %define, continue to support
3692 the quoted form as a deprecated feature. Discussed starting at
3693 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00023.html>.
3694 * NEWS (2.3a+): Add entry for the change to %define. Update entry for
3695 %code.
3696 * doc/bison.texinfo (Prologue Alternatives): Update.
3697 (Decl Summary): In %defines entry, update mention of `%code requires'
3698 and `%code provides'.
3699 (C++ Location Values): Update %define uses.
3700 (Calc++ Parser Interface): Likewise.
3701 (Calc++ Parser): Likewise, and update `%code requires' uses.
3702 (Table of Symbols): Update %code documentation.
3703 * src/parse-gram.y (prologue_declaration): For %define variables, use
3704 `variable' instead of `STRING'.
3705 (grammar_declaration): For %code qualifiers, use `ID' instead of
3706 `STRING'.
3707 (variable): New nonterminal that takes an `ID' or a `STRING'.
3708 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update %code
3709 and %define uses.
3710 * tests/calc.at (_AT_DATA_CALC_Y): Update %define use.
3711 * tests/input.at (Reject unused %code qualifiers): Update %code uses.
3712 (%define errors): Update %define uses.
3713
3714 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
3715
3716 * src/parse-gram.y (prologue_declaration): Use MUSCLE_INSERT_STRING
3717 instead of muscle_insert for %define values so that M4-special
3718 characters are replaced with digraphs.
3719 * tests/input.at (%define errors): Extend to check weird values.
3720
3721 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
3722
3723 Instead of having skeletons declare all valid %define variables and
3724 %code qualifiers, provide macros that retrieve the associated values
3725 and build these lists automatically. Thus Bison will now warn when a
3726 variable or qualifier is not used by the skeleton in the current
3727 invocation regardless of whether it might sometimes be used by that
3728 skeleton in other invocations. Also, move all %define value macros to
3729 the b4_percent_define_ namespace, and remove the %define "NAME" {CODE}
3730 form, which is replaced by %code.
3731 * data/bison.m4 (b4_check_for_unrecognized_names): Rename to...
3732 (b4_check_user_names): ... this, and change the series of valid name
3733 arguments to a single list argument for names used in the skeleton
3734 similar to the existing list argument for names used in the grammar.
3735 Warn instead of complaining.
3736 (b4_get_percent_define, b4_get_percent_code): New to retrieve %define
3737 values and %code code, to format %code code properly, and to build
3738 lists of all %define variables and %code qualifiers used in the
3739 skeleton: b4_skeleton_percent_define_variables and
3740 b4_skeleton_percent_code_qualifiers.
3741 (b4_check_percent_define_variables, b4_check_percent_code_qualifiers):
3742 Remove, and...
3743 (m4_wrap): ... m4_wrap b4_check_user_names invocations instead so that
3744 the skeleton names lists can finish building first. In place of
3745 b4_used_percent_define_variables and b4_used_percent_code_qualifiers,
3746 expect the lists b4_user_percent_define_variables and
3747 b4_user_percent_code_qualifiers.
3748 * data/c++.m4: Where setting default values for b4_parser_class_name,
3749 b4_location_type, b4_filename_type, b4_namespace, and
3750 b4_define_location_comparison, update their names to the
3751 b4_percent_define_ namespace.
3752 * data/glr.c: Don't use b4_check_percent_define_variables and
3753 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
3754 * data/glr.cc, data/lalr1.cc: Likewise, and use b4_get_percent_define.
3755 (b4_parser_class_name, b4_namespace): Define these using
3756 b4_get_percent_define for parser_class_name and namespace.
3757 * data/location.cc: Use b4_get_percent_define.
3758 * data/push.c: Don't use b4_check_percent_define_variables and
3759 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
3760 * data/yacc.c: Likewise, and don't call m4_exit in
3761 b4_use_push_for_pull_if or m4_wrap code will never execute.
3762 * src/muscle_tab.c, src/muscle_tab.h (muscle_grow_used_name_list):
3763 Rename to...
3764 (muscle_grow_user_name_list): ... this for consistency with the
3765 terminology used in bison.m4.
3766 * src/parse-gram.y (prologue_declaration): Prepend "percent_define_" to
3767 %define variable names, and rename muscle used_percent_define_variables
3768 to user_percent_define_variables.
3769 (grammar_declaration): Rename muscle used_percent_code_qualifiers to
3770 user_percent_code_qualifiers.
3771 (content): Remove.
3772 (content.opt): Replace content RHS with STRING RHS so %define "NAME"
3773 {CODE} form is no longer accepted.
3774 * tests/input.at (Reject bad %code qualifiers): Rename to...
3775 (Reject unused %code qualifiers): ... this, and update test output.
3776 (%define error): Update test output.
3777
3778 2007-01-07 Joel E. Denny <jdenny@ces.clemson.edu>
3779
3780 Check for unrecognized %define variables similar to checking for
3781 unrecognized %code qualifiers. Check for redefined %define variables.
3782 * data/bison.m4 (b4_check_for_unrecognized_names): New macro that
3783 generalizes...
3784 (b4_check_percent_code_qualifiers): ... this, which now wraps it.
3785 (b4_check_percent_define_variables): New, also wraps it.
3786 * data/glr.c: Unless glr.cc is wrapping glr.c, declare no valid %define
3787 variables using b4_check_percent_define_variables.
3788 * data/glr.cc, data/lalr1.cc: Declare the valid %define variables as
3789 all those exercised in the test suite and all those listed in the
3790 `Default values' section of c++.m4. Are there others?
3791 * data/push.c, data/yacc.c: Declare no valid %define variables.
3792 * src/muscle_tab.c, src/muscle_tab.h (muscle_find_const): New function,
3793 similar to muscle_find, but it works even when the muscle stores a
3794 const value.
3795 (muscle_grow_used_name_list): New function for constructing the used
3796 name list muscles that b4_check_for_unrecognized_names requires.
3797 * src/parse-gram.y (prologue_declaration): Warn if a variable is
3798 %define'd more than once. Define the b4_used_percent_define_variables
3799 muscle with muscle_grow_used_name_list.
3800 (grammar_declaration): Abbreviate %code code with
3801 muscle_grow_used_name_list.
3802 * tests/input.at (%define errors): New.
3803
3804 2007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
3805
3806 Provide warn_at, complain_at, and fatal_at function callbacks to the
3807 skeletons, and use this for %code qualifier complaints.
3808 * data/bison.m4 (b4_error_at): New, invoked by...
3809 (b4_warn_at, b4_complain_at, b4_fatal_at): ... these new macros to wrap
3810 the skeleton scanner's new @warn_at(...@), @complain_at(...@), and
3811 @fatal_at(...@) directives.
3812 (b4_check_percent_code_qualifiers): Rewrite to expect locations for
3813 qualifiers in b4_used_percent_code_qualifiers and to use
3814 b4_complain_at.
3815 * src/location.c, src/location.h (boundary_set_from_string): New global
3816 function.
3817 * src/muscle_tab.c, src/muscle_tab.h (muscle_boundary_grow): New global
3818 function.
3819 * src/parse-gram.y (grammar_declaration): Add locations for qualifiers
3820 to b4_used_percent_code_qualifiers.
3821 * src/scan-skel.l (fail_for_at_directive_too_few_args): New static
3822 function.
3823 (AT_DIRECTIVE_ARGC_MAX): Increase for boundary arguments.
3824 (lineno): Rename to...
3825 (out_lineno): ... this so I don't misunderstand it again.
3826 (SC_AT_DIRECTIVE_SKIP_WS): Don't increment out_lineno for newlines
3827 here; these newlines are in the input but not the output file.
3828 (SC_AT_DIRECTIVE_ARG): Likewise. Extract directive execution to...
3829 (at_directive_perform): ... this new static function, and add handling
3830 of new @warn_at(...@), @complain_at(...@), and @fatal_at(...@)
3831 directives.
3832 * tests/input.at (Reject bad %code qualifiers): Update test output with
3833 locations and extend.
3834
3835 * tests/output.at (Output file name: [, Output file name: ]): Remove
3836 bogus comment about these tests failing.
3837
3838 2007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
3839
3840 Clean up b4_check_percent_code_qualifiers a little.
3841 * data/bison.m4 (b4_check_percent_code_qualifiers): Expect qualifiers
3842 in b4_used_percent_code_qualifiers to be double-M4-quoted. Rewrite
3843 documentation and add examples.
3844 * src/parse-gram.y (grammar_declaration): Double-M4-quote those
3845 qualifiers here.
3846
3847 2007-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
3848
3849 Don't use m4_divert since it makes m4_divert_push and m4_divert_pop
3850 unreliable -- especially when they're hidden inside another macro.
3851 * data/bison.m4, data/c++-skel.m4, data/c++.m4, data/c-skel.m4,
3852 data/c.m4: Remove m4_divert(-1).
3853 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
3854 data/push.c, data/yacc.c: Likewise, and replace m4_divert(0) with
3855 m4_divert_push(0) and m4_divert_pop(0).
3856 * src/output.c (output_skeleton): Don't add an m4_divert_push(0) and
3857 an m4_wrap([m4_divert_pop(0)]) to the M4. Diversion -1, which is
3858 pushed and popped by m4sugar, should be first on the stack.
3859
3860 Provide warn, complain, and fatal function callbacks to the skeletons.
3861 This provides more flexibility than m4_fatal, improves the error
3862 message format, and captures messages for translation. Discussed
3863 starting at
3864 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00063.html>.
3865 * data/bison.m4 (b4_error): New, invoked by...
3866 (b4_warn, b4_complain, b4_fatal): ... these new macros to wrap the
3867 skeleton scanner's new @warn(...@), @complain(...@), and @fatal(...@)
3868 directives. Because these M4 macros might be called when the current
3869 diversion is -1 or 0, m4_divert_push and m4_divert_pop is used; thus
3870 the previous removal of uses of m4_divert, which caused trouble.
3871 (b4_check_percent_code_qualifiers): Use b4_complain instead of
3872 m4_fatal to report unrecognized %code qualifiers.
3873 * data/c++-skel.m4: Use b4_complain instead of m4_fatal to report C++
3874 push parser requests.
3875 * data/glr.c: Use b4_complain instead of m4_fatal to report
3876 non-deterministic push parser requests.
3877 Update @output usage to @output(...@) form.
3878 * data/glr.cc, data/lalr1.cc: Use b4_fatal instead of m4_fatal to
3879 report missing %defines. Update @output usage to @output(...@) form.
3880 * data/location.cc, data/push.c, data/yacc.c: Update @output usage to
3881 @output(...@) form.
3882 * src/main.c (main): Invoke skel_scanner_free.
3883 * src/scan-skel.h (skel_scanner_free): Prototype new function.
3884 * src/scan-skel.l (FLEX_NO_OBSTACK): Don't define; we now need the
3885 obstack_for_string from flex-scanner.h.
3886 (YY_DECL): Use to declare skel_lex static.
3887 (decode_at_digraphs): Remove; now handled in the new
3888 SC_AT_DIRECTIVE_ARG start condition.
3889 (fail_for_at_directive_too_many_args, fail_for_invalid_at): New static
3890 functions.
3891 (at_directive_name, AT_DIRECTIVE_ARGC_MAX, at_directive_argc,
3892 at_directive_argv): New static globals.
3893 (INITIAL): Use fail_for_invalid_at.
3894 Don't parse `@output file_name\n' or `@basename(...@)'. Instead,
3895 recognize the start of a generalized `@directive(...@)' form and
3896 start...
3897 (SC_AT_DIRECTIVE_ARG): ... this new start condition to parse the
3898 directive args (using the new obstack_for_string), to decode the
3899 contained @ diagraphs, and to perform the directive. It recognizes
3900 @basename(...@), @warn(...@), @complain(...@), @fatal(...@), and
3901 @output(...@).
3902 (SC_AT_DIRECTIVE_SKIP_WS): New start condition started by
3903 SC_AT_DIRECTIVE_ARG to skip whitespace after the argument delimiter,
3904 `@,'.
3905 (scan_skel): Initialize obstack_for_string on the first call.
3906 (skel_scanner_free): New function to free obstack_for_string.
3907 * tests/input.at (Reject bad %code qualifiers): Update test output.
3908
3909 2007-01-04 Joel E. Denny <jdenny@ces.clemson.edu>
3910
3911 Consolidate the 4 prologue alternative directives (%code, %requires,
3912 %provides, and %code-top) into a single %code directive with an
3913 optional qualifier field. Discussed at
3914 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00012.html>.
3915 * NEWS (2.3a+): Rewrite the existing entry for the prologue
3916 alternatives.
3917 * doc/bison.texinfo (Prologue Alternatives): Update.
3918 (Decl Summary): Update to %code "requires" and %code "provides".
3919 (Calc++ Parser): Update to %code "requires".
3920 (Table of Symbols): Remove entries for %requires, %provides, and
3921 %code-top. Rewrite %code entry, and add a %code "QUALIFIER" entry.
3922 * data/bison.m4 (b4_user_provides, b4_user_requires): Remove as these
3923 are replaced by b4_percent_code_provides and b4_percent_code_requires,
3924 which are skeleton-specific.
3925 (b4_check_percent_code_qualifiers): New. A skeleton can use this to
3926 declare what %code qualifiers it supports and to complain if any other
3927 qualifiers were used in the grammar.
3928 * data/glr.cc: Update to use b4_user_code([b4_percent_code_requires])
3929 and b4_user_code([b4_percent_code_provides]) in place of
3930 b4_user_requires and b4_user_provides.
3931 * data/glr.c, data/lalr1.cc, data/push.c, data/yacc.c: Likewise.
3932 Add b4_user_code([b4_percent_code_top]) and
3933 b4_user_code([b4_percent_code]).
3934 Invoke b4_check_percent_code_qualifiers.
3935 * src/parse-gram.y (PERCENT_CODE_TOP, PERCENT_PROVIDES,
3936 PERCENT_REQUIRES): Remove.
3937 (grammar_declaration): Remove RHS's for %code-top, %provides, and
3938 %requires. Rewrite the %code RHS as the unqualified form defining the
3939 muscle b4_percent_code. Add another RHS for the qualified %code form,
3940 which defines muscles of the form b4_percent_code_QUALIFIER and the
3941 b4_used_percent_code_qualifiers muscle.
3942 * src/scan-gram.l (PERCENT_CODE_TOP, PERCENT_PROVIDES,
3943 PERCENT_REQUIRES): Remove.
3944 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update to use
3945 %code "requires" and %code "provides".
3946 * tests/input.at (Reject bad %code qualifiers): New.
3947
3948 2007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
3949
3950 Use the new code_props interface for destructors and printers.
3951 * src/symtab.h (symbol, semantic_type): Remove destructor_location and
3952 printer_location members, and change the type of the destructor and
3953 printer members to code_props.
3954 (symbol_destructor_set, symbol_destructor_get, symbol_printer_set,
3955 symbol_printer_get, semantic_type_destructor_set,
3956 semantic_type_printer_set, default_tagged_destructor_set,
3957 default_tagless_destructor_set, default_tagged_printer_set,
3958 default_tagless_printer_set): Use code_props in arguments and return
3959 types in place of char const * and location.
3960 (symbol_destructor_location_get, symbol_printer_location_get): Remove
3961 since the locations are now contained in the return of
3962 symbol_destructor_get and symbol_printer_get.
3963 * src/output.c (symbol_destructors_output, symbol_printers_output):
3964 Replace with...
3965 (symbol_code_props_output): ... this to eliminate duplicate code.
3966 (output_skeleton): Update to use symbol_code_props_output.
3967 * src/reader.c (symbol_should_be_used): Update use of
3968 symbol_destructor_get.
3969 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
3970 Update uses of the various _destructor_set and _printer_set functions.
3971 * src/symtab.c: (default_tagged_destructor_location,
3972 default_tagless_destructor_location, default_tagged_printer_location,
3973 default_tagless_printer_location): Remove since we...
3974 (default_tagged_destructor, default_tagless_destructor,
3975 default_tagged_printer, default_tagless_printer): ... change the type
3976 of these to code_props.
3977 (symbol_new, semantic_type_new, symbol_destructor_set,
3978 semantic_type_destructor_set, symbol_destructor_get,
3979 symbol_printer_set, semantic_type_printer_set, symbol_printer_get,
3980 symbol_check_alias_consistency, default_tagged_destructor_set,
3981 default_tagless_destructor_set, default_tagged_printer_set,
3982 default_tagless_printer_set): Update.
3983 (symbol_destructor_location_get, symbol_printer_location_get): Remove.
3984 (SYMBOL_CODE_PRINT): New similar to SYMBOL_ATTR_PRINT but for
3985 code_props members.
3986 (symbol_print): Use SYMBOL_CODE_PRINT.
3987
3988 2007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
3989
3990 Use the new code_props interface for rule actions.
3991 * src/symlist.h (symbol_list): Replace action, action_location, and
3992 used members with a code_props action_props member.
3993 * src/reader.c (symbol_should_be_used, grammar_rule_check,
3994 grammar_midrule_action, grammar_current_rule_merge_set,
3995 grammar_current_rule_symbol_append, packgram): Update.
3996 * src/scan-code.h (translate_rule_action): Remove, no longer used.
3997 * src/scan-code.l (handle_action_dollar): Update.
3998 (translate_rule_action): Remove, no longer used.
3999 * src/symlist.c (symbol_list_sym_new, symbol_list_syms_print): Update.
4000
4001 2007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
4002
4003 Use the new code_props interface in parse-gram.y.
4004 * src/parse-gram.y (prologue_declaration, braceless, epilogue.opt):
4005 Update all uses of translate_* functions to use the new code_props
4006 interface and to use gram_scanner_last_string_free and
4007 code_scanner_last_string_free where possible.
4008 (grammar_declaration): symbol_list_destructor_set and
4009 symbol_list_printer_set now perform the translation, so don't do it
4010 here. Use gram_scanner_last_string_free where possible.
4011 * src/scan-code.h, src/scan-code.l (translate_symbol_action,
4012 translate_code): Remove, no longer used.
4013 * src/symlist.h, src/symlist.c (symbol_list_destructor_set,
4014 symbol_list_printer_set): Perform code translation here rather than
4015 depending on the caller to do so.
4016
4017 * src/symlist.h (struct symbol_list): Correct some documentation typos.
4018 * src/scan-gram.h (gram_last_string): Remove declaration.
4019 * src/scan-gram.l (last_string): Declare it static.
4020
4021 2007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
4022
4023 Encapsulate code properties and related functionality for the various
4024 destructors, printers, and actions into a code_props structure and
4025 interface. This patch merely implements code_props in scan-code.h and
4026 scan-code.l. Future patches will rewrite other modules to use it.
4027 Discussed starting at
4028 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00020.html>.
4029 * src/location.h (EMPTY_LOCATION_INIT): Define so that it's easier to
4030 consistently initialize const structs that have an empty location
4031 field.
4032 * src/location.c (empty_location): Initialize with EMPTY_LOCATION_INIT
4033 to ensure consistency.
4034 * src/scan-code.h (code_props): New structure.
4035 (code_props_none_init, CODE_PROPS_NONE_INIT, code_props_none): New
4036 function, macro, and const global variable for initializing a
4037 code_props with no code.
4038 (code_props_plain_init, code_props_symbol_action_init,
4039 code_props_rule_action_init, code_props_translate_code): The rest of
4040 the new code_props functional interface. Among other things, the init
4041 functions set the code_props kind field so that
4042 code_props_translate_code will know whether to behave like
4043 translate_symbol_action, translate_rule_action, or translate_code.
4044 These old translate functions must remain until all other modules are
4045 updated to use the new code_props interface.
4046 (code_scanner_last_string_free): New function similar to
4047 gram_scanner_last_string_free.
4048 (code_scanner_free): Add documentation.
4049 * src/scan-code.l: Implement the new interface.
4050 (code_lex): Make it static, add a code_props* argument, and remove the
4051 rule argument.
4052 (last_string): New static global similar to the one in scan-gram.l.
4053 (SC_RULE_ACTION): Update to use the code_props* argument to code_lex
4054 instead of rule.
4055 (SC_SYMBOL_ACTION): For $$, set the is_value_used member of the
4056 code_props since Bison may one day use this information for destructors
4057 and printers.
4058 (<*><<EOF>>): Use STRING_FINISH so that last_string is set.
4059 (handle_action_dollar): Use symbol_list_n_get and set used flag
4060 directly since symbol_list_n_used_set is removed.
4061 (translate_action): Add a code_props* argument and remove the rule,
4062 action, and location arguments. Pass the code_props* on to code_lex.
4063 (translate_rule_action, translate_symbol_action, translate_code):
4064 Rewrite as wrappers around the new code_props interface.
4065 * src/symlist.h, src/symlist.c (symbol_list_n_used_set): Remove since
4066 it would eventually need to break the encapsulation of code_props.
4067
4068 2007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
4069
4070 * etc/.cvsignore: New.
4071
4072 2007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
4073
4074 Add maintainer-push-check to run maintainer-check using push parsing in
4075 place of pull parsing where available.
4076 * Makefile.am (maintainer-push-check): New.
4077 * data/bison.m4 (b4_use_push_for_pull_if): New.
4078 * data/push.c: Redefine b4_push_if and b4_use_push_for_pull_if
4079 appropriately based on their existing values.
4080 (yypush_parse): Don't print push-parser-specific diagnostics if push
4081 parsing is being used in place of pull parsing.
4082 * data/yacc.c: If push parsing should replace pull parsing, redirect to
4083 push.c.
4084 * src/output.c (prepare): Check BISON_USE_PUSH_FOR_PULL environment
4085 variable, and insert b4_use_push_for_pull_flag into muscles.
4086 * tests/Makefile.am (maintainer-push-check): New.
4087
4088 2006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
4089
4090 * data/push.c (yypush_parse): Set yynew = 1 at the end of a parse
4091 (whether successful or failed) so that yypush_parse can be invoked
4092 again to start a new parse using the same yypstate.
4093 * tests/torture.at (AT_DATA_STACK_TORTURE): For push mode, extend to
4094 check multiple yypull_parse invocations on the same yypstate. For pull
4095 mode, extend to check multiple yyparse invocations.
4096 (Exploding the Stack Size with Alloca): Extend to try with
4097 %push-pull-parser.
4098 (Exploding the Stack Size with Malloc): Likewise.
4099
4100 * tests/calc.at (Simple LALR Calculator): Don't specify
4101 %skeleton "push.c" since %push-pull-parser implies that now.
4102 * tests/headers.at (export YYLTYPE): Don't check for the push
4103 declarations. Otherwise, this test case can't be used to see if push
4104 mode can truly emulate pull mode.
4105 * tests/input.at (Torturing the Scanner): Likewise.
4106 * tests/local.at (AT_YACC_OR_PUSH_IF, AT_PUSH_IF): Remove.
4107 (AT_YYERROR_SEES_LOC_IF): Rather than AT_YACC_OR_PUSH_IF, use
4108 AT_YACC_IF, which now includes the case of push mode since %skeleton
4109 need not be used for push mode. This will be more intuitive once
4110 push.c is renamed to yacc.c.
4111
4112 2006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
4113
4114 For push mode, convert yyparse from a macro to a function, invoke yylex
4115 instead of passing a yylexp argument to yypull_parse, and don't
4116 generate yypull_parse or yyparse unless %push-pull-parser is declared.
4117 Discussed starting at
4118 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00163.html>.
4119 * data/bison.m4 (b4_pull_if): New.
4120 * data/c.m4 (b4_identification): Define YYPULL similar to YYPUSH.
4121 * data/push.c: Improve M4 quoting a little.
4122 (b4_generate_macro_args, b4_parenthesize): Remove.
4123 (yyparse): If there's a b4_prefix, #define this to b4_prefix[parse]
4124 any time a pull parser is requested.
4125 Don't #define this as a wrapper around yypull_parse. Instead, when
4126 both push and pull are requested, make it a function that does that
4127 same thing.
4128 (yypull_parse): If there's a b4_prefix, #define this to
4129 b4_prefix[pull_parse] when both push and pull are requested.
4130 Don't define this as a function unless both push and pull are
4131 requested.
4132 Remove the yylexp argument and hard-code yylex invocation instead.
4133 * etc/bench.pl.in (bench_grammar): Use %push-pull-parser instead of
4134 %push-parser.
4135 * src/getargs.c (pull_parser): New global initialized to true.
4136 * getargs.h (pull_parser): extern it.
4137 * src/output.c (prepare): Insert pull_flag muscle.
4138 * src/parse-gram.y (PERCENT_PUSH_PULL_PARSER): New token.
4139 (prologue_declaration): Set both push_parser and pull_parser = true for
4140 %push-pull-parser. Set push_parser = true and pull_parser = false for
4141 %push-parser.
4142 * src/scan-gram.l: Don't accept %push_parser as an alternative to
4143 %push-parser since there's no backward-compatibility concern here.
4144 Scan %push-pull-parser.
4145 * tests/calc.at (Simple LALR(1) Calculator): Use %push-pull-parser
4146 instead of %push-parser.
4147 * tests/headers.at (export YYLTYPE): Make yylex static, and don't
4148 prototype it in the module that calls yyparse.
4149 * tests/input.at (Torturing the Scanner): Likewise.
4150 * tests/local.at (AT_PUSH_IF): Check for %push-pull-parser as well.
4151
4152 2006-12-26 Joel E. Denny <jdenny@ces.clemson.edu>
4153
4154 Update etc/bench.pl. Optimize push mode a little (the yyn change
4155 deserves most of the credit).
4156 * Makefile.am (SUBDIRS): Add etc subdirectory.
4157 * configure.ac (AC_CONFIG_FILES): Add etc/bench.pl and etc/Makefile.
4158 * data/push.c (b4_declare_parser_state_variables): Move yyn, yyresult,
4159 yytoken, yyval, and yyloc declarations to...
4160 (yyparse or yypush_parse): ... here to improve performance. For
4161 yypush_parse invocations after the first, be sure to assign yyn its old
4162 value again.
4163 (yypstate_new): Don't bother initializing the yyresult field since the
4164 initial value isn't used.
4165 (yyn, yyresult, yytoken, yyval, yyloc): For each NAME in this list,
4166 remove the #define that, in push mode, set it to yyps->NAME.
4167 * etc/Makefile.am: New.
4168 * etc/bench.pl: Remove and build it instead from...
4169 * etc/bench.pl.in: ... this new file. Use @abs_top_builddir@ to invoke
4170 "tests/bison" from the build directory by default rather than just
4171 invoking "bison" from $PATH.
4172 (calc_grammar): Update push parser code: don't declare yylval globally,
4173 don't define yyparse_wrapper, and don't #define yyparse.
4174 (bench_grammar): Update to check all working combinations of yacc.c,
4175 push.c, impure, pure, pull, and push.
4176
4177 2006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
4178
4179 For push mode, add pull wrappers around yypush_parse.
4180 * data/push.c: (b4_generate_macro_args, b4_parenthesize): New macros.
4181 (yypull_parse): New function wrapping yypush_parse.
4182 (yyparse): New #define wrapping yypull_parse.
4183 * tests/calc.at (_AT_DATA_CALC_Y): Call yyparse even when %push-parser
4184 is declared.
4185 * tests/headers.at (export YYLTYPE): Make yylex global. For push mode,
4186 prototype yylex in the module that calls yyparse, and don't prototype
4187 yyparse there. Otherwise, the yyparse expansion won't compile.
4188 * tests/input.at (Torturing the Scanner): Likewise.
4189
4190 2006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
4191
4192 Enable push parsers to operate in impure mode. Thus, %push-parser no
4193 longer implies %pure-parser. The point of this change is to move
4194 towards being able to test the push parser code by running the entire
4195 test suite as if %push-parser had been declared.
4196 * data/push.c (yypush_parse): For impure mode, remove the
4197 yypushed_char, yypushed_val, and yypushed_loc arguments.
4198 Instead, declare these as local variables initialized to the global
4199 yychar, yylval, and yylloc.
4200 For the first yypush_parse invocation only, restore the initial values
4201 of these global variables when it's time to read a token since they
4202 have been overwritten.
4203 * src/parse-gram.y (prologue_declaration): Don't set pure_parser for
4204 %push-parser.
4205 * tests/calc.at (Simple LALR(1) Calculator): Always declare
4206 %pure-parser along with %push-parser since this test case was designed
4207 for pure push parsers.
4208 * tests/local.at (AT_PURE_OR_PUSH_IF): Remove unused.
4209 (AT_YACC_OR_PUSH_IF): New.
4210 (AT_YYERROR_SEES_LOC_IF): Fix enough that the test suite passes, but
4211 add a note that it's still wrong for some cases (as it has been for a
4212 while).
4213 (AT_PURE_LEX_IF): Use AT_PURE_IF instead of AT_PURE_OR_PUSH_IF since
4214 %push-parser no longer implies %pure-parser.
4215
4216 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
4217
4218 Remove some unnecessary differences between the pull parser code and
4219 the push parser code. This patch enables yynerrs in push mode.
4220 * data/push.c: Reformat M4 a little.
4221 (b4_yyerror_range): Remove and convert all uses to just yyerror_range.
4222 (b4_declare_scanner_communication_variables): Don't omit yynerrs just
4223 because push mode is on. Instead, if pure mode is on, move yynerrs
4224 to...
4225 (b4_declare_parser_state_variables): ... here.
4226 (yynerrs, yyerror_range): For push mode, #define each NAME in this list
4227 to yyps->NAME so it can be used in yypush_parse.
4228 (yypush_parse): Don't omit uses of yynerrs in push mode.
4229
4230 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
4231
4232 Fix bug such that the first pushed token's value and location are
4233 sometimes overwritten (sometimes by %initial-action) before being used.
4234 * data/push.c (yypush_parse): Rename arguments yynchar, yynlval, and
4235 yynlloc to yypushed_char, yypushed_val, and yypushed_loc for clarity.
4236 For the first yypush_parse invocation, initialize yychar to YYEMPTY to
4237 more closely mimic the pull parser logic.
4238 Don't copy the pushed token to yychar, yylval, and yylloc until it's
4239 time to read a token, which is after any initialization of yylval and
4240 yylloc.
4241 (gottoken): Rename label to...
4242 (yyread_pushed_token): ... for clarity and to avoid infringing on the
4243 user namespace.
4244
4245 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
4246
4247 Rearrange initialization of the parser state variables so that the
4248 skeleton doesn't have to have a copy for pull mode and another for push
4249 mode. This patch also fixes at least a bug such that yylloc was not
4250 initialized (with b4_location_initial_line and
4251 b4_location_initial_column) upon calling yypush_parse. However, that
4252 initialization now overwrites the first token's location;
4253 %initial-action assigning @$ already did the same thing, and both bugs
4254 will be fixed in a later patch.
4255 * data/push.c (b4_yyssa): Remove and convert all uses to just yyssa.
4256 (b4_declare_parser_state_variables): Remove initialization of yytoken,
4257 yyss, yyvs, yyls, and yystacksize.
4258 (yypstate_new): Remove initialization of some yypstate fields: yystate,
4259 yyerrstatus, yytoken, yyss, yyvs, yyls, yystacksize, yyssp, yyvsp, and
4260 yylsp.
4261 (yyssa, yyvsa, yylsa): For push mode, #define each NAME in this list to
4262 yyps->NAME so it can be used in yypush_parse.
4263 (yyparse or yypush_parse): For yypush_parse, don't print the
4264 "Starting parse" diagnostic for invocations after the first.
4265 Add initialization of yytoken, yyss, yyvs, yyls, and yystacksize; for
4266 yypush_parse, only do it for the first invocation.
4267 Allow yystate, yyerrstatus, yyssp, yyvsp, yylsp, and yylloc
4268 initialization to occur in yypush_parse but only on the first
4269 invocation.
4270
4271 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
4272
4273 * data/push.c: Add CPP guards around push parser declarations in both
4274 the header and the code file.
4275 In the code file, move the push parser declarations to the same place
4276 they appear in the header file.
4277 Clean up the M4 some, especially the inconsistent underquoting in
4278 some b4_c_function_def and b4_c_function_decl uses.
4279
4280 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
4281
4282 Encapsulate the push parser state variables into an M4 macro so the
4283 push skeleton doesn't have to list them again for pull mode's yyparse.
4284 For push mode, remove yypush_parse's local equivalents of these
4285 variables to eliminate unnecessary copying between the two sets at
4286 run-time. This patch also fixes at least a bug related to multiple
4287 %initial-action invocations in push mode.
4288 * data/push.c (b4_declare_parser_variables): Rename to...
4289 (b4_declare_scanner_communication_variables): ... this for clarity and
4290 update both uses.
4291 (b4_declare_yyparse_variables): Remove and move its contents to the one
4292 spot where it was invoked.
4293 (b4_declare_parser_state_variables): New macro containing the parser
4294 state variables required by push mode.
4295 (struct yypstate): Replace all fields but yynew with
4296 b4_declare_parser_state_variables.
4297 (yystate, yyn, yyresult, yyerrstatus, yytoken, yyss, yyssp, yyvs,
4298 yyvsp, yyls, yylsp, yystacksize, yyval, yyloc): For push mode, #define
4299 each NAME in this list to yyps->NAME so it can be used in yypush_parse.
4300 (yyparse or yypush_parse): For yyparse in pull mode, replace local
4301 parser state variable declarations with
4302 b4_declare_parser_state_variables.
4303 Don't initialize parser state variables when calling yypush_parse since
4304 yypstate_new already does that.
4305 Invoke the user's initial action only upon the first yypush_parse
4306 invocation.
4307 Remove all code that copies between the local parser state variables
4308 and the yypstate.
4309
4310 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
4311
4312 * data/push.c (union yyalloc): Rename yyss, yyvs, and yyls fields to
4313 prevent a name collision in a future patch where these names will
4314 sometimes be #define'd.
4315 (YYSTACK_RELOCATE): Add an argument to select a union yyalloc field
4316 since it no longer has the same name as the existing argument.
4317 (yyparse or yypush_parse): Update all uses of YYSTACK_RELOCATE.
4318
4319 2006-12-19 Paolo Bonzini <bonzini@gnu.org>
4320 and Joel E. Denny <jdenny@ces.clemson.edu>
4321
4322 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
4323 that the argument is case-insensitive, and there's no `=' here.
4324 For the %skeleton entry, mention that %language is better.
4325 (Bison Options): Likewise for --language and --skeleton. Move the
4326 --skeleton entry so that the `Tuning the parser' section is sorted
4327 alphabetically on long options.
4328 (C++ Bison Interface): Don't use the word skeleton. Don't explain the
4329 %language directive in detail here; cross-reference the %language
4330 documentation instead.
4331 (Calc++ Parser): Use `%require "@value{VERSION}"' rather than
4332 `%require "2.3b"' so that the example is always up-to-date.
4333 (Table of Symbols): Add entries for %language and %skeleton.
4334 * examples/extexi (normalize): Instead of replacing every %require
4335 argument with the current Bison version, just substitute for
4336 `@value{VERSION}'. This guarantees that we're testing what actually
4337 appears in the documentation.
4338 * examples/calc++/Makefile.am ($(calc_extracted)): Use `$(VERSION)'
4339 rather than `@VERSION@'.
4340
4341 2006-12-18 Paul Eggert <eggert@cs.ucla.edu>
4342
4343 * NEWS: Reword the %language news a bit, and put it earlier.
4344
4345 * src/getargs.c (skeleton_arg): Last arg is now location const *.
4346 Rewrite to simplify the logic.
4347 (language_argmatch): Likewise.
4348 (program_name): We now own this var.
4349 * src/getargs.h (struct bison_language): Use char[] rather than
4350 const char *.
4351
4352 * doc/bison.texinfo (Decl Summary, Bison Options): Don't claim
4353 Java is supported.
4354 * src/complain.c (program_name): Remove decl; no longer needed.
4355 * src/main.c (program_name): Remove; now belongs to getargs.
4356
4357 2006-12-18 Paolo Bonzini <bonzini@gnu.org>
4358
4359 * NEWS: Document %language.
4360
4361 * data/Makefile.am (dist_pkgdata_DATA): Add c-skel.m4, c++-skel.m4.
4362
4363 * data/c-skel.m4, data/c++-skel.m4: New files.
4364 * data/glr.c: Complain on push parsers.
4365
4366 * doc/bison.texinfo (C++ Parser Interface): Prefer %language
4367 over %skeleton.
4368 (Decl Summary): Document %language and %skeleton.
4369 (Command line): Document -L.
4370
4371 * examples/extexi: Rewrite %require directive.
4372 * examples/calc++/Makefile.am: Pass VERSION to extexi.
4373
4374 * src/files.c (compute_exts_from_gc): Look in language structure
4375 for .y extension.
4376 (compute_file_name_parts): Check whether .tab should be added.
4377 * src/getargs.c (valid_languages, skeleton_prio, language_prio):
4378 (language, skeleton_arg, language_argmatch): New.
4379 (long_options): Add --language.
4380 (getargs): Use skeleton_arg, add -L/--language.
4381 * src/getargs.h: Include location.h.
4382 (struct bison_language, language, skeleton_arg, language_argmatch): New.
4383 * src/output.c (prepare): Pick default skeleton from struct language.
4384 Don't dispatch C skeletons here.
4385 * src/parse-gram.y (PERCENT_LANGUAGE): New.
4386 (prologue_declaration): Add "%language" rule, use skeleton_arg.
4387 * src/scan-gram.l ("%language"): New rule.
4388
4389 * tests/calc.at: Test %skeleton and %language.
4390 * tests/local.at (AT_SKEL_CC_IF): Look for %language.
4391 (AT_GLR_IF): Look for %skeleton "glr.cc".
4392 (AT_LALR1_CC_IF, AT_GLR_CC_IF): Rewrite.
4393 (AT_YACC_IF): Reject %language.
4394
4395 2006-12-18 Paul Eggert <eggert@cs.ucla.edu>
4396
4397 * src/symtab.h (struct semantic_type): Remove the tag 'semantic_type',
4398 since it wasn't used; only the typedef name 'semantic_type' is needed.
4399 Also, omit trailing white space.
4400
4401 * bootstrap: Sync from coreutils.
4402 (gnulib_extra_files): Add build-aux/announce.gen.
4403 (slurp): Adjust .gitignore files like .cvsignore files.
4404 * build-aux/announce-gen: Remove from CVS, since bootstrap
4405 now creates this.
4406
4407 2006-12-16 Joel E. Denny <jdenny@ces.clemson.edu>
4408
4409 Make %push-parser imply %pure-parser. This fixes several bugs; see
4410 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00148.html>.
4411 * src/parse-gram.y (prologue_declaration): For %push-parser, also set
4412 pure_parser = true.
4413 * data/push.c: Don't bother testing b4_push_if when deciding whether
4414 to expand b4_declare_parser_variables globally.
4415 (yypush_parse): Likewise in here.
4416
4417 * data/push.c (yypush_parse): Add b4_parse_param to arguments.
4418 (yy_reduce_print): Reformat M4 for readability.
4419
4420 2006-12-15 Bob Rossi <bob@brasko.net>
4421 and Joel Denny <jdenny@ces.clemson.edu>
4422
4423 * data/push.c (yypstate): Add typedef, and update all uses of
4424 struct yypstate to just yypstate.
4425 * tests/calc.at (_AT_DATA_CALC_Y): Update here as well.
4426
4427 2006-12-14 Bob Rossi <bob@brasko.net>
4428
4429 * data/push.c (yypush_parse): Declare prototype regardless of
4430 %locations option.
4431
4432 2006-12-14 Bob Rossi <bob@brasko.net>
4433
4434 * data/push.c (yyparse): Remove the prototype and the #define when in
4435 push-parser mode.
4436
4437 2006-12-13 Bob Rossi <bob@brasko.net>
4438
4439 * data/push.c (yypstate_init): Rename to...
4440 (yypstate_new): ... this and use b4_c_function_def.
4441 (yypstate_delete): New.
4442 (yypush_parse): Change parameters yynval and yynlloc to be const.
4443 * tests/calc.at (_AT_DATA_CALC_Y): Use new yypstate_new and
4444 yypstate_delete functions.
4445
4446 2006-12-13 Joel E. Denny <jdenny@ces.clemson.edu>
4447
4448 * configure.ac (AC_PREREQ): Require Autoconf 2.61 because of our
4449 strange test case titles. Reported by Bob Rossi.
4450
4451 2006-12-13 Paul Eggert <eggert@cs.ucla.edu>
4452
4453 * TODO: Add pointer to Sylvain Schmitz's work on static detection
4454 of potential ambiguities in GLR grammers.
4455
4456 2006-12-12 Joel E. Denny <jdenny@ces.clemson.edu>
4457
4458 * tests/testsuite.at (AT_CHECK): When checking if $1 starts with
4459 `bison ', use m4_index instead of m4_substr since chopping up a string
4460 containing M4-special characters causes problems here.
4461
4462 Fix a couple of bugs related to special characters in user-specified
4463 file names, and make it easier for skeletons to compute output file
4464 names with the same file name prefix as Bison-computed output file
4465 names.
4466 * data/glr.cc, data/push.c, data/yacc.c: In @output, use
4467 b4_parser_file_name and b4_spec_defines_file instead of
4468 @output_parser_name@ and @output_header_name@, which are now redundant.
4469 * data/glr.c, data/lalr1.cc: Likewise. Also, in header #include's, use
4470 b4_parser_file_name, b4_spec_defines_file, and the new
4471 @basename(FILENAME@) instead of @output_parser_name@ and
4472 @output_header_name@, which inappropriately escaped the file names as
4473 C string literals.
4474 * src/files.c (all_but_ext): Remove static qualifier.
4475 (compute_output_file_names): Move `free (all_but_ext)' to...
4476 (output_file_names_free): ... here since all_but_ext is needed later.
4477 * src/files.h (all_but_ext): Extern.
4478 * src/muscle_tab.h (MUSCLE_INSERT_STRING_RAW): New macro that does
4479 exactly what MUSCLE_INSERT_STRING used to do.
4480 (MUSCLE_INSERT_STRING): Use MUSCLE_OBSTACK_SGROW so that M4-special
4481 characters are escaped properly.
4482 * src/output.c (prepare): Define muscle file_name_all_but_ext as
4483 all_but_ext.
4484 For pkgdatadir muscle, maintain previous functionality by using
4485 MUSCLE_INSERT_STRING_RAW instead of MUSCLE_INSERT_STRING. The problem
4486 is that b4_pkgdatadir is used inside m4_include in the skeletons, so
4487 digraphs would never be expanded. Hopefully no one has M4-special
4488 characters in his Bison installation path.
4489 * src/scan-skel.l: Don't parse @output_header_name@ and
4490 @output_parser_name@ anymore since they're now redundant.
4491 In @output, use decode_at_digraphs.
4492 Parse a new @basename command that invokes last_component.
4493 (decode_at_digraphs): New.
4494 (BASE_QPUTS): Remove unused.
4495 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): New macro.
4496 (Output file name): New tests.
4497
4498 2006-12-09 Joel E. Denny <jdenny@ces.clemson.edu>
4499
4500 Warn about output files that are generated by the skeletons and that
4501 conflict with other output files.
4502 * data/glr.c: Don't generate the header file here when glr.cc does.
4503 * src/files.c (file_names, file_names_count): New static globals.
4504 (compute_output_file_names): Invoke output_file_name_check for files
4505 not generated by the skeletons and remove existing checks.
4506 (output_file_name_check): New function that warns about conflicting
4507 output file names.
4508 (output_file_names_free): Free file_names.
4509 * src/files.h (output_file_name_check): Declare.
4510 * src/scan-skel.l: Invoke output_file_name_check for files generated by
4511 the skeletons.
4512 * tests/output.at (AT_CHECK_CONFLICTING_OUTPUT): New.
4513 (Conflicting output files): New tests.
4514
4515 2006-12-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4516
4517 * doc/bison.texinfo: Fix a couple of typos.
4518
4519 2006-12-08 Bob Rossi <bob@brasko.net>
4520
4521 * data/push.c: (yypvarsinit, yypvars, struct yypvars, yypushparse):
4522 Rename to...
4523 (yypstate_init, yypstate, struct yypstate, yypush_parse): ... these and
4524 update all uses.
4525 (b4_yyssa, b4_yyerror_range, yypstate_init): Rename pv to yyps.
4526 (yypush_parse): Rename yypvars argument to yyps and remove redundant
4527 local pv.
4528 (yypstate_init, yypush_parse): Declare in Bison-generated header file.
4529 * tests/calc.at (_AT_DATA_CALC_Y): Use newly named functions.
4530
4531 2006-12-07 Bob Rossi <bob@brasko.net>
4532 and Joel Denny <jdenny@ces.clemson.edu>
4533
4534 * data/push.c (yypvarsinit): Change return type from void* to struct
4535 yypvars*. No longer cast to void* on return.
4536 (struct yypvars): Remove yylen since it need not be remembered between
4537 yypushparse invocations.
4538 (yypushparse): Don't copy between yylen and pv->yylen.
4539
4540 2006-12-05 Bob Rossi <bob@brasko.net>
4541
4542 * data/push.c (yychar_set, yylval_set, yylloc_set): Delete.
4543 (yypushparse): Add yynchar, yynlval, yynlloc parameters.
4544 (b4_declare_parser_variables): Do not declare yynerrs for push mode.
4545 (struct yypvars): Remove b4_declare_parser_variables.
4546 (yypvarsinit): Remove init code for removed variables.
4547 (global scope): Do not declare b4_declare_parser_variables if
4548 push or pure mode.
4549 (yypushparse): Add b4_declare_parser_variables.
4550 Init new local variables, and remove init code for removed
4551 yypvars variables.
4552 (yyparse): Delete.
4553 * tests/calc.at (_AT_DATA_CALC_Y): Call yypushparse for push mode
4554 and yyparse for other modes.
4555 (AT_CHECK_CALC_LALR): Added '%skeleton "push.c"' for push tests.
4556 * tests/local.at (AT_PUSH_IF, AT_PURE_OR_PUSH_IF): Added.
4557 (AT_YYERROR_SEES_LOC_IF): push-parser makes this false.
4558 (AT_PURE_LEX_IF): True if pure or push parser.
4559
4560 2006-12-05 Joel E. Denny <jdenny@ces.clemson.edu>
4561
4562 Document Yacc prologue alternatives and default %destructor's and
4563 %printer's as experimental. Don't mention Java yet. Discussed at
4564 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00002.html>.
4565 * NEWS (2.3a+): Say they're experimental. Remove any mention of Java.
4566 (2.3a): Annotate this entry to say the old forms of these features were
4567 also experimental.
4568 * doc/bison.texinfo (Prologue Alternatives, Freeing Discarded Symbols,
4569 Table of Symbols): Say they're experimental. Comment out any mention
4570 of Java (we'll want this back eventually).
4571
4572 2006-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
4573
4574 Support a file name argument to %defines. Deprecate `=' in
4575 %file-prefix, %name-prefix, and %output. Discussed at
4576 <http://lists.gnu.org/archive/html/help-bison/2006-09/msg00001.html>.
4577 * NEWS (2.3a+): Mention.
4578 * doc/bison.texinfo (Decl Summary, Table of Symbols): Add entry for new
4579 form of %defines, and remove `=' from entries for %file-prefix,
4580 %name-prefix, and %output.
4581 * src/parse-gram.y (prologue_declaration): Implement.
4582 * tests/calc.at (Simple LALR Calculator, Simple GLR Calculator, Simple
4583 LALR1 C++ Calculator, Simple GLR C++ Calculator): Remove the `=' from
4584 all but one occurrence of %name-prefix.
4585 * tests/headers.at (export YYLTYPE): Remove the `=' from %name-prefix.
4586 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Likewise.
4587 * tests/output.at (AT_CHECK_OUTPUT): Remove the `=' from all but one
4588 occurrence of each of %file-prefix and %output. Add check for %defines
4589 with argument.
4590 * tests/reduce.at (Useless Terminals, Useless Nonterminals,
4591 Useless Rules, Reduced Automaton, Underivable Rules, Empty Language):
4592 Remove the `=' from %output.
4593
4594 2006-11-21 Joel E. Denny <jdenny@ces.clemson.edu>
4595
4596 Don't escape $ in test case titles since Autoconf 2.61 now does that
4597 correctly.
4598 * tests/actions.at (Default %printer and %destructor are not for error
4599 or $undefined): Here.
4600 (Default %printer and %destructor are not for $accept): Here.
4601 * tests/input.at (Invalid $n and @n): Here.
4602
4603 2006-11-20 Joel E. Denny <jdenny@ces.clemson.edu>
4604
4605 Rename <!> to <>. Discussed starting at
4606 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00039.html>.
4607 * NEWS (2.3a+): Update.
4608 * doc/bison.texinfo (Freeing Discarded Symbols, Table of Symbols):
4609 Update.
4610 * src/parse-gram.y (TYPE_TAG_NONE, generic_symlist_item): Implement.
4611 * src/scan-gram.l (INITIAL): Implement.
4612 * src/symlist.c (symbol_list_default_tagless_new): Update comment.
4613 * src/symlist.h (symbol_list, symbol_list_default_tagless_new): Update
4614 comment.
4615 * tests/actions.at (Default tagless %printer and %destructor,
4616 Default tagged and per-type %printer and %destructor,
4617 Default %printer and %destructor are not for error or $undefined,
4618 Default %printer and %destructor are not for $accept,
4619 Default %printer and %destructor for mid-rule values): Update.
4620 * tests/input.at (Default %printer and %destructor redeclared,
4621 Unused values with default %destructor): Update.
4622
4623 2006-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
4624
4625 Don't let %prec take a nonterminal.
4626 * src/reader.c (grammar_current_rule_prec_set): Make the %prec symbol a
4627 token.
4628 * tests/input.at (%prec takes a token): New test checking that %prec
4629 won't take a nonterminal.
4630
4631 2006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
4632
4633 * tests/testsuite.at (AT_CHECK): Don't miss an exit value of 0 because
4634 it was double-quoted.
4635 * src/Makefile.am (YACC): Use --warnings=all,error so that Bison's own
4636 grammar is maintained with Bison's highest standards.
4637 * src/getargs.c: Fix some typos in Doxygen comments.
4638
4639 2006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
4640
4641 Fix memory leaks in scanners generated by at least Flex 2.5.9 and
4642 later. Reported by Paul Eggert in
4643 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00014.html>.
4644 * src/flex-scanner.h (yylex_destroy): Define for Flex before 2.5.9.
4645 * src/scan-code.l (translate_action): Don't bother invoking
4646 yy_delete_buffer (YY_CURRENT_BUFFER) before creating the first buffer.
4647 (code_scanner_free): Instead of invoking
4648 yy_delete_buffer (YY_CURRENT_BUFFER) directly, invoke yylex_destroy,
4649 which frees more.
4650 * src/scan-gram.l (gram_scanner_free): Likewise.
4651 * src/scan-skel.l (scan_skel): Likewise.
4652
4653 2006-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
4654
4655 * src/files.c (tr): Change return type to void.
4656 * src/muscle_tab.c (muscle_insert): Free storage in case muscle_grow
4657 has been called previously for the same key.
4658 (muscle_find): Return storage instead of value so that
4659 --enable-gcc-warnings doesn't produce warnings that the return discards
4660 const. aver that the value and storage are the same since storage
4661 could potentially be NULL when value is not.
4662 * tests/testsuite.at (AT_CHECK): Treat an unspecified exit value the
4663 same as 0.
4664
4665 2006-11-08 Paul Eggert <eggert@cs.ucla.edu>
4666
4667 * bootstrap.conf (excluded_files): Exclude m4/codeset.m4 (undoing
4668 the earlier change today), m4/intl.m4, m4/intldir.m4. This gives
4669 us a slightly cleaner distribution, and also works.
4670 * m4/.cvsignore: Add inline.m4, wint_t.m4 to accommodate recent
4671 gnulib changes.
4672
4673 2006-11-08 Joel E. Denny <jdenny@ces.clemson.edu>
4674 and Paul Eggert <eggert@cs.ucla.edu>
4675
4676 Don't let Bison leak memory except when it complains.
4677 * src/files.h (parser_file_name, spec_verbose_file, spec_graph_file):
4678 (spec_defines_file, dir_prefix): Now char *, not const char *,
4679 since they are freed.
4680 * src/files.c: Likewise.
4681 (all_but_ext, all_but_tab_ext, src_extension, header_extension):
4682 Likewise.
4683 (tr): Now operates in-place. All uses changed.
4684 (compute_exts_from_gf, compute_exts_from_src): Don't leak temporary
4685 values.
4686 (compute_file_name_parts, compute_output_file_names): Don't store
4687 read-only data in variables that will be freed.
4688 (compute_output_file_names): Free all_but_ext, all_but_tab_ext,
4689 src_extension, and header_extension.
4690 (output_file_names_free): New public function to free
4691 spec_verbose_file, spec_graph_file, spec_defines_file,
4692 parser_file_name, and dir_prefix.
4693 * src/getargs.c (getargs): Don't store read-only data in variables that
4694 will be freed.
4695 * src/main.c (main): Invoke output_file_names_free, code_scanner_free
4696 (which previously existed but was unused), and quotearg_free.
4697 * src/muscle_tab.h (muscle_insert): value arg is now a `char const *'.
4698 * src/muscle_tab.c: Likewise.
4699 (muscle_entry): Make the value char const *,
4700 and add a new storage member that is char * and can be freed.
4701 (muscle_entry_free): New private function.
4702 (muscle_init): Use it instead of free.
4703 (muscle_insert, muscle_grow): Update and use new storage member.
4704 (muscle_code_grow): Free the string passed to muscle_grow
4705 since it's not needed anymore.
4706 * src/parse-gram.y (%union): Make `chars' member a `char const *', and
4707 add a new `char *code' member.
4708 ("{...}"): Declare semantic type as code.
4709 * src/scan-code.h (translate_rule_action):
4710 (translate_symbol_action, translate_code, translate_action): Return
4711 `char const *' rather than `char *' since external code should not free
4712 these strings.
4713 * src/scan-code.l: Likewise.
4714 * src/scan-gram.l (<SC_BRACED_CODE>): Use val->code for BRACED_CODE,
4715 which is "{...}" in the parser.
4716 * tests/Makefile.am (maintainer-check-valgrind): Set
4717 VALGRIND_OPTS='--leak-check=full --show-reacheable=yes' before invoking
4718 Valgrind.
4719 * tests/calc.at (_AT_DATA_CALC_Y): fclose the FILE* so Valgrind doesn't
4720 complain.
4721 * tests/testsuite.at (AT_CHECK): Redefine so that running Bison and
4722 expecting a non-zero exit status sets --leak-check=summary and
4723 --show-reachable=no for Valgrind. Bison unabashedly leaks memory in
4724 this case, and we don't want to hear about it.
4725
4726 2006-11-08 Paul Eggert <eggert@cs.ucla.edu>
4727
4728 * bootstrap (runtime-po/Makevars): Derive from po/Makevars
4729 instead of from the template, to simplify configuration a bit.
4730 * bootstrap.conf (excluded_files): Don't exclude m4/codeset.m4
4731 and m4/wint_t.m4, as they are needed with the latest gnulib.
4732
4733 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
4734
4735 Disable unset/unused mid-rule value warnings by default, and recognize
4736 --warnings=midrule-values to enable them. Discussed starting at
4737 <http://lists.gnu.org/archive/html/help-bison/2006-10/msg00030.html>.
4738 * NEWS (2.3a+): Mention.
4739 * src/getargs.c, src/getargs.h (warnings_args, warnings_types, enum
4740 warnings): Add entry for midrule-values subargument.
4741 * src/reader.c (symbol_should_be_used): Don't return true just because
4742 the value is a set/used mid-rule value unless
4743 --warnings=midrule-values was specified.
4744 * tests/input.at (Unused values, Unused values before symbol
4745 declarations): Run tests with and without --warnings=midrule-values.
4746
4747 * src/reader.c (check_and_convert_grammar): Use symbol_list_free rather
4748 than LIST_FREE directly.
4749
4750 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
4751
4752 Finish implementing --warnings=error, which should not be implied by
4753 --warnings=all (or by its synonyms -W and --warnings without
4754 subarguments).
4755 * src/complain.c (set_warning_issued): New function to report that
4756 warnings are being treated as errors and to record an error if so.
4757 Invoke...
4758 (warn_at, warn): ... here.
4759 * src/getargs.c (warnings_args, warnings_types): Reorder so that
4760 "error - warnings are errors" does not appear above "all - all of the
4761 above".
4762 (getargs): For -W and --warnings without subarguments, don't let
4763 FLAGS_ARGMATCH set warnings_error in warnings_flag.
4764 * src/getargs.h (enum warnings): Unset warnings_error in warnings_all.
4765
4766 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
4767
4768 * src/getargs.c (flags_argmatch): Don't cause segmentation fault for
4769 empty subargument list. For example: `bison --warnings= parser.y'.
4770
4771 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
4772
4773 * data/push.c, data/yacc.c: Make sure there's a newline at the end of
4774 the parser header file so that gcc doesn't warn.
4775
4776 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
4777
4778 Split the default %destructor/%printer into two kinds: <*> and <!>.
4779 Discussed starting at
4780 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00060.html>.
4781 * NEWS (2.3a+): Mention.
4782 * doc/bison.texinfo (Freeing Discarded Symbols): Document this and the
4783 previous change today related to mid-rules.
4784 (Table of Symbols): Remove %symbol-default and add <*> and <!>.
4785 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): Remove.
4786 (TYPE_TAG_ANY): Add as <*>.
4787 (TYPE_TAG_NONE): Add as <!>.
4788 (generic_symlist_item): Remove RHS for %symbol-default and add RHS's
4789 for <*> and <!>.
4790 * src/scan-gram.l (PERCENT_SYMBOL_DEFAULT): Remove.
4791 (TYPE_TAG_ANY, TYPE_TAG_NONE): Add.
4792 * src/symlist.c (symbol_list_default_new): Split into tagged and
4793 tagless versions.
4794 (symbol_list_destructor_set, symbol_list_printer_set): Split
4795 SYMLIST_DEFAULT case into SYMLIST_DEFAULT_TAGGED and
4796 SYMLIST_DEFAULT_TAGLESS.
4797 * src/symlist.h: Update symbol_list_default*_new prototypes.
4798 (symbol_list.content_type): Split enum value SYMLIST_DEFAULT into
4799 SYMLIST_DEFAULT_TAGGED and SYMLIST_DEFAULT_TAGLESS.
4800 * src/symtab.c (default_destructor, default_destructor_location,
4801 default_printer, default_printer_location): Split each into tagged and
4802 tagless versions.
4803 (symbol_destructor_get, symbol_destructor_location_get,
4804 symbol_printer_get, symbol_printer_location_get): Implement tagged
4805 default and tagless default cases.
4806 (default_destructor_set, default_printer_set): Split each into tagged
4807 and tagless versions.
4808 * src/symtab.h: Update prototypes.
4809 * tests/actions.at (Default %printer and %destructor): Rename to...
4810 (Default tagless %printer and %destructor): ... this, and extend.
4811 (Per-type %printer and %destructor): Rename to...
4812 (Default tagged and per-type %printer and %destructor): ... this, and
4813 extend.
4814 (Default %printer and %destructor for user-defined end token): Extend.
4815 (Default %printer and %destructor are not for error or $undefined):
4816 Update.
4817 (Default %printer and %destructor are not for $accept): Update.
4818 (Default %printer and %destructor for mid-rule values): Extend.
4819 * tests/input.at (Default %printer and %destructor redeclared): Extend.
4820 (Unused values with default %destructor): Extend.
4821
4822 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
4823
4824 Don't apply the default %destructor/%printer to an unreferenced midrule
4825 value. Mentioned at
4826 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00104.html>.
4827 * src/symtab.c (dummy_symbol_get): Name all dummy symbols initially
4828 like $@n instead of just @n so that the default %destructor/%printer
4829 logic doesn't see them as user-defined symbols.
4830 (symbol_is_dummy): Check for both forms of the name.
4831 * src/reader.c (packgram): Remove the `$' from each midrule symbol
4832 name for which the midrule value is referenced in any action.
4833 * tests/actions.at (Default %printer and %destructor for mid-rule
4834 values): New test.
4835 * tests/regression.at (Rule Line Numbers, Web2c Report): Update output
4836 for change to dummy symbol names.
4837
4838 2006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
4839
4840 Warn about unset midrule $$ if the corresponding $n is used.
4841 * src/reader.c (symbol_should_be_used): Check midrule parent rule for
4842 $n usage.
4843 (packgram): Before invoking grammar_rule_check on any rule, make sure
4844 all actions have already been scanned in order to set `used' flags.
4845 Otherwise, checking that a midrule's $$ is set will not always work
4846 properly because the midrule check must forward-reference the midrule's
4847 parent rule.
4848 * tests/input.at (AT_CHECK_UNUSED_VALUES): Extend to check the new
4849 warning.
4850
4851 2006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
4852
4853 More improvements to the documentation of the prologue alternatives:
4854 * NEWS (2.3a+): Mention the new `Prologue Alternatives' section in the
4855 Bison manual.
4856 * doc/bison.texinfo (Prologue Alternatives): Correct some errors. Add
4857 some text to clarify the relative importance of the new directives and
4858 to show how these directives may be viewed as code labels.
4859
4860 2006-10-16 Joel E. Denny <jdenny@ces.clemson.edu>
4861
4862 Similar to the recently removed %before-header, add %code-top as the
4863 alternative to the pre-prologue. Mentioned at
4864 <http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00063.html>.
4865 Also, let the prologue alternatives appear in the grammar section.
4866 * src/parse-gram.y (PERCENT_CODE_TOP): New token.
4867 (prologue_declaration): Move the existing prologue alternatives to...
4868 (grammar_declaration): ... here and add %code-top.
4869 * src/scan-gram.l (PERCENT_CODE_TOP): New token.
4870
4871 Clean up and extend documentation for the prologue alternatives.
4872 * NEWS (2.3a+): Describe prologue alternatives.
4873 * doc/bison.texinfo (Prologue): Move discussion of prologue
4874 alternatives to...
4875 (Prologue Alternatives): ... this new section, and extend it to discuss
4876 all 4 directives in detail.
4877 (Table of Symbols): Clean up discussion of prologue alternatives and
4878 add %code-top.
4879
4880 2006-10-16 Juan Manuel Guerrero <juan.guerrero@gmx.de>
4881
4882 DJGPP specific issues.
4883
4884 * djgpp/config.bat: config.hin has been moved to lib. Adjust
4885 config.bat accordingly.
4886 * djgpp/config.sed: Adjust config.sed for the use of autoconf 2.60.
4887 * djgpp/config.site: Likewise.
4888
4889 2006-10-16 Paolo Bonzini <bonzini@gnu.org>
4890
4891 Replace %*-header with %provides, %requires, %code. See discussion at
4892 http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00002.html
4893
4894 * data/bison.m4 (b4_user_requires, b4_user_provides): New.
4895 (b4_user_start_header): Remove.
4896 * data/glr.c: Use new macros instead of b4_*start_header
4897 and b4_*end_header.
4898 * data/glr.cc: Likewise.
4899 * data/lalr1.cc: Likewise.
4900 * data/push.c: Likewise.
4901 * data/yacc.c: Likewise.
4902
4903 * doc/bison.texinfo: Remove %before-header, rename
4904 %{start,end,after}-header to %requires, %provides, %code.
4905
4906 * src/parse-gram.y: Likewise (also rename token names accordingly).
4907 * src/scan-gram.l: Likewise.
4908 * tests/actions.at: Likewise.
4909
4910 2006-10-14 Paul Eggert <eggert@cs.ucla.edu>
4911
4912 * lib/Makefile.am (AM_CFLAGS): Remove $(WERROR_CFLAGS).
4913 Problem reported by Joel E. Denny.
4914
4915 2006-10-14 Jim Meyering <jim@meyering.net>
4916
4917 (Sync from coreutils.)
4918 Work also when the working directory (with e.g. coreutils sources)
4919 is version controlled with git, rather than CVS.
4920 * bootstrap (CVS_only_file): Test for the existence of README-cvs,
4921 rather than CVS.
4922 In messages and comments, say e.g., "checked-out sources",
4923 rather than "CVS sources".
4924 (version_controlled_file): New function. Work for git as well as
4925 for CVS. Don't use grep's -q option.
4926 (slurp): Call it here, in place of CVS-specific code.
4927
4928 2006-10-14 Joel E. Denny <jdenny@ces.clemson.edu>
4929
4930 Fix testsuite for ./configure --enable-gcc-warnings:
4931 * configure.ac (gcc-warnings): Move -Wall before -Wno-sign-compare.
4932 Otherwise, gcc 4.1.0 (at least) warns about sign comparisons in
4933 __AT_CHECK_PRINTER_AND_DESTRUCTOR in tests/actions.at.
4934 * test/input.at (Torturing the Scanner): #include <stdlib.h> for abort.
4935 * test/regression.at (Diagnostic that expects two alternatives):
4936 Likewise.
4937
4938 2006-10-12 Paul Eggert <eggert@cs.ucla.edu>
4939
4940 * bootstrap.conf (gnulib_modules): Add config-h.
4941 * djgpp/subpipe.c: Include <config.h> unconditionally; don't
4942 worry about HAVE_CONFIG_H.
4943 * lib/abitset.c: Likewise.
4944 * lib/bitset.c: Likewise.
4945 * lib/bitset_stats.c: Likewise.
4946 * lib/bitsetv-print.c: Likewise.
4947 * lib/bitsetv.c: Likewise.
4948 * lib/ebitset.c: Likewise.
4949 * lib/get-errno.c: Likewise.
4950 * lib/lbitset.c: Likewise.
4951 * lib/subpipe.c: Likewise.
4952 * lib/timevar.c: Likewise.
4953 * lib/vbitset.c: Likewise.
4954 * lib/bitset.c: Include "bitset.h" first, to test interface.
4955 * lib/bitset_stats.c: Include "bitset_stats.h" first.
4956 * lib/bitsetv-print.c: Include "bitsetv-print.h" first.
4957 * lib/bitsetv.c: Include "bitsetv.h" first.
4958 * lib/get-errno.c: Include "get-errno.h" first.
4959 * m4/.cvsignore: Add config-h.m4.
4960 * tests/actions.at (Default %printer and %destructor for ...):
4961 Adjust expected line numbers in output to reflect removal of #if
4962 HAVE_CONFIG_H lines.
4963 * tests/glr-regression.at (Missed %merge type warnings when ...):
4964 Likewise.
4965 * tests/regression.at (Braced code in declaration in rules section):
4966 Likewise.
4967 * tests/atlocal.in (CPPFLAGS): Don't define HAVE_CONFIG_H.
4968 * tests/local.at (AT_DATA_GRAMMAR_PROLOGUE):
4969 Include <config.h> unconditionally.
4970
4971 * bootstrap: Sync from coreutils, as follows:
4972
4973 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
4974
4975 * bootstrap (symlink_to_gnulib): Fix bug: the dot_dots shell
4976 variable was sometimes used without being initialized. This
4977 messed up the installation of the INSTALL file in some cases.
4978
4979 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
4980
4981 * bootstrap (usage, main program, symlink_to_gnulib): Add option
4982 --copy. Inspired by a suggestion from Bruno Haible.
4983
4984 2006-10-03 Jim Meyering <jim@meyering.net>
4985
4986 * bootstrap: Undo last change to this file, since now gnulib-tool
4987 sticks with the automake default in generating dependencies.
4988
4989 2006-10-12 Paul Eggert <eggert@cs.ucla.edu>
4990
4991 * configure.ac: Use AC_PROG_CC_STDC; this is more modern than
4992 the old AC_PROG_CC / AM_PROG_CC_STDC combination.
4993
4994 * doc/bison.1: Add copyright notice.
4995
4996 * data/glr.c: Don't include <stdarg.h>; not used.
4997
4998 * NEWS: The -g and --graph options now output graphs in Graphviz
4999 DOT format, not VCG format.
5000 * doc/bison.1: Likewise.
5001 * doc/bison.texinfo (Understanding, Bison Options): Likewise.
5002 * THANKS: Add Satya Kiran Popuri, who proposed the initial version
5003 of this change in
5004 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00158.html>.
5005 * TODO: Remove Graphviz entry.
5006 * src/Makefile.am (bison_SOURCES): Add graphviz.c and graphviz.h;
5007 remove vcg.c, vcg.h, vcg_defaults.h.
5008 * src/vcg.c, src/vcg.h, src/vcg_defaults.h: Remove.
5009 * src/graphviz.c, src/graphviz.h: New files.
5010 * src/files.c (compute_output_file_names): Output .dot, not .vcg.
5011 * src/files.h: Make comment more generic.
5012 * src/main.c (main): Likewise.
5013 * src/print_graph.h: Likewise.
5014 * src/getargs.c (usage): Make usage description more generic.
5015 * src/print_graph.c: Include graphviz.h rather than vcg.h.
5016 (static_graph, fgraph): Remove. All uses changed to pass
5017 arguments instead of sharing a static var.
5018 (print_core, print_actions, print_state, print_graph):
5019 Output graphviz format rather than VCG format.
5020 * tests/.cvsignore: Remove *.vcg; add *.dot.
5021 * tests/output.at: Expect *.dot files, not *.vcg files.
5022
5023 * data/Makefile.am (dist_pkgdata_DATA): Add bison.m4; this
5024 accommodates the 2006-10-08 change.
5025
5026 2006-10-11 Bob Rossi <bob@brasko.net>
5027
5028 * data/push.c (yypushparse, yypvarsinit, yypvars): Wrap in b4_push_if.
5029 (b4_yyssa, b4_yyerror_range): New macros.
5030 (struct yypvars): Remove yyssa_ptr and yyerror_range_ptr fields.
5031 (yypvarsinit): Remove init of removed fields.
5032 (yypushparse): Remove use of removed fields; use new macros instead.
5033
5034 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
5035
5036 * data/push.c (yypushparse): Fix memory leak if yymsg is malloced
5037 in a push parser. Reindent slightly to match yacc.c better.
5038
5039 2006-10-11 Bob Rossi <bob@brasko.net>
5040
5041 * data/push.c (struct yypvars): Remove yymsgbuf, yymsgbuf_ptr, yymsg,
5042 yymsg_alloc fields.
5043 (yypvarsinit, yypushparse): Remove init of removed fields.
5044 (yypushparse): Use yymsgbuf instead of yymsgbuf_ptr.
5045
5046 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
5047
5048 * THANKS: Add Paolo Bonzini and Bob Rossi.
5049
5050 2006-10-08 Paolo Bonzini <bonzini@gnu.org>
5051
5052 * data/c.m4 (b4_copyright, b4_epilogue, b4_location_initial_column,
5053 b4_location_initial_line, p4_parse_param, b4_ints_in, b4_flag_if,
5054 b4_define_flag_if and uses, b4_basename, b4_syncline, b4_user_code,
5055 b4_define_user_cde and uses): Remove.
5056 (b4_comment, b4_prefix, b4_sync_start): New.
5057 * data/bison.m4: New file, with most of the content removed from c.m4.
5058 * src/muscle_tab.h: Use "do {...} while(0)" throughout.
5059 * src/output.c (output_skeleton): Pass bison.m4.
5060 (prepare): Pass glr_flag and nondeterministic_flag. Pass prefix
5061 only if specified.
5062
5063 2006-10-05 Paul Eggert <eggert@cs.ucla.edu>
5064
5065 Fix test failure reported by Tom Lane in
5066 <http://lists.gnu.org/archive/html/bug-bison/2006-10/msg00000.html>
5067 and try to make such failures easier to catch in the future.
5068 * data/glr.c (YYTRANSLATE): Don't check for nonpositive arg;
5069 that's now the caller's responsibility.
5070 (yyprocessOneStack, yyrecoverSyntaxError, yyparse):
5071 Set yychar = YYEOF if it's negative.
5072 * tests/actions.at (yylex): Abort if asked to read past EOF.
5073 * tests/conflicts.at (yylex): Likewise.
5074 * tests/cxx-type.at (yylex): Likewise.
5075 * tests/glr-regression.at (yylex): Likewise.
5076 * tests/input.at (yylex): Likewise.
5077 * tests/regression.at (yylex): Likewise.
5078 * tests/torture.at (yylex): Likewise.
5079
5080 2006-10-01 Paul Eggert <eggert@cs.ucla.edu>
5081
5082 Fix problems with translating English-language diagnostics.
5083 * bootstrap: Fix bug introduced in recent bootstrap changes, with
5084 respect to bison-runtime pot generation. The YY_ stuff
5085 wasn't being captured.
5086 * bootstrap.conf (XGETTEXT_OPTIONS_RUNTIME): New var.
5087 * po/POTFILES.in: Add src/location.c, src/scan-code.l.
5088 * runtime-po/POTFILES.in: Add data/push.c.
5089
5090 2006-09-29 Paul Eggert <eggert@cs.ucla.edu>
5091
5092 Merge bootstrap changes from coreutils.
5093
5094 2006-09-28 Jim Meyering <jim@meyering.net>
5095
5096 Automatically generated dependencies are important even
5097 when all of the sources in a directory come from gnulib.
5098 * bootstrap (gnulib_tool): Remove the "no-dependencies" automake
5099 option that gnulib-tool adds to what becomes our lib/gnulib.mk.
5100
5101 2006-09-23 Jim Meyering <jim@meyering.net>
5102
5103 * bootstrap (gnulib_tool_options): Add "--local-dir gl".
5104
5105 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
5106
5107 * bootstrap: Add support for --force.
5108 (usage): New function. Describe usage less tersely.
5109 (CVS_only_file): New var.
5110
5111 2006-09-21 Paul Eggert <eggert@cs.ucla.edu>
5112
5113 * data/push.c (YYPUSH_MORE): Make it an enum instead.
5114 (yypushparse): Use YYPUSH_MORE instead of the mystery constant.
5115 Adjust white space and comments to match GNU style better.
5116
5117 2006-09-20 Bob Rossi <bob@brasko.net>
5118
5119 * data/push.c (yyresult_get): Remove function.
5120 (YYPUSH_MORE): Add #define.
5121 (yypushparse): Modify return value.
5122
5123 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
5124
5125 * stamp-h.in: Remove; no longer needed.
5126 * .cvsignore: Replace autom4te.cache and config.cache with *.cache.
5127 Remove config.h, config.hin, intl (no longer created).
5128 * lib/.cvsignore: Add config.h, config.hin, configmake.h, inttypes.h,
5129 stamp-h1.
5130
5131 Sync bootstrap from coreutils, as follows:
5132
5133 2006-09-18 Paul Eggert <eggert@cs.ucla.edu>
5134
5135 * bootstrap (symlink_to_gnulib): New function.
5136 (cp_mark_as_generated): Use it, to prefer symlinks-to-gnulib
5137 to copies-of-gnulib.
5138 (cp_mark_as_generated, slurp, gnulib_files):
5139 Avoid making a copy if it's the same as the old version.
5140 (gnulib_files): Add support for this variable (used by Bison).
5141
5142 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
5143
5144 * src/getargs.c (usage): Rework to use conventions similar to
5145 coreutils, to make translation a bit easier and the code a bit
5146 smaller. Problem reported by Tim Van Holder.
5147
5148 2006-09-15 Paul Eggert <eggert@cs.ucla.edu>
5149
5150 Use some of gnulib's new modules, taken from coreutils.
5151
5152 * bootstrap: Sync from coreutils, except add support for gnulib_files.
5153 * bootstrap.conf: New file.
5154 (gnulib_modules): Add configmake, inttypes, unistd.
5155 (XGETTEXT_OPTIONS): Add complain, complain_at,
5156 fatal, fatal_at, warn, warn_at, unexpected_end.
5157 * configure.ac (AC_CONFIG_HEADERS): config.h is now in lib, not here.
5158 (gl_USE_SYSTEM_EXTENSIONS): Remove; gl_EARLY now does this.
5159 (gl_EARLY): Add.
5160 (AM_STDBOOL_H): Remove; gl_INIT now dows this.
5161 (gl_INIT): Add
5162 (GNULIB_AUTOCONF_SNIPPET): Remove.
5163 (AM_GNU_GETTEXT): Add; require formatstring macros since that's
5164 the pickiest.
5165 * lib/.cvsignore: Add inttypes_.h.
5166 * lib/Makefile.am: Include gnulib.mk first so we can append to it.
5167 (AM_CFLAGS): Add WERROR_CFLAGS, to be more like coreutils.
5168 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES): Remove
5169 no-longer-necessary initializations.
5170 (lib_SOURCES): Remove, replacing by libbison_a_SOURCES.
5171 * lib/subpipe.c: Include <unistd.h> unconditionally, now that we
5172 use the unistd module.
5173 * src/system.h: Likewise.
5174 * m4/.cvsignore: Remove *_gl.m4, gnulib.m4, inttypes_h.m4, uintmax_t.m4,
5175 ulonglong.m4. Add gettext.m4, gnulib-cache.m4, gnulib-comp.m4,
5176 gnulib-tool.m4, inttypes-h.m4, inttypes-pri.m4, inttypes.m4.
5177 * src/Makefile.am (DEFS): Remove, since configmake does this for us.
5178 (AM_CPPFLAGS): Remove -I../lib, since Automake does that for us.
5179 * src/system.h: Include inttypes.h unconditionally, now that we
5180 use the inttypes module. Don't bother to include stdint.h, since
5181 inttypes.h now does that for us.
5182 (LOCALEDIR): Remove, now that we use the configmake module.
5183 * src/getargs.c: Include configmake.h.
5184 * src/main.c: Likewise.
5185 * src/output.c: Likewise.
5186 * tests/atlocal.in (CPPFLAGS): Include from $abs_top_builddir/lib,
5187 not from $abs_top_builddir, since config.h moved.
5188
5189
5190 Port to GCC 2.95. First two problems reported by Michael Deutschmann in
5191 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00018.html>.
5192
5193 * src/parse-gram.y (symbol_declaration): Don't put statements
5194 before declarations; it's not portable to C89.
5195 * src/scan-code.l (handle_action_at): Likewise.
5196
5197 * src/scan-code.l: Always initialize braces_level; the old code
5198 left it uninitialized and therefore had undefined behavior.
5199
5200 Don't attempt to redefine 'assert', since it runs afoul of
5201 systems where standard headers (mistakenly) include <assert.h>.
5202 Instead, define and use our own alternative, called 'aver'.
5203 * src/reader.c: Don't include assert.h, since we no longer
5204 use assert.
5205 * src/scan-code.l: Likewise.
5206 * src/system.h (assert): Remove, replacing with....
5207 (aver): New function, taking a bool arg. All uses changed.
5208 * src/tables.c (pack_vector): Ensure that aver arg is bool,
5209 not merely an integer.
5210
5211 2006-09-15 Bob Rossi <bob@brasko.net>
5212
5213 * data/Makefile.am (dist_pkgdata_DATA): Add push.c.
5214 * data/c.m4 (YYPUSH): New.
5215 (b4_push_if): New macro. Use it instead of #ifdef YYPUSH.
5216 * src/getargs.c (push_parser): New var.
5217 * src/getargs.h (push_parser): New declaration.
5218 * src/output.c (prepare): Add macro insertion of `push_flag'.
5219 * src/parse-gram.y (PERCENT_PUSH_PARSER): New token.
5220 (prologue_declaration): Parse %push-parser.
5221 * src/scan-gram.l: Scan new PERCENT_PUSH_PARSER token.
5222 * tests/calc.at (_AT_CHECK_CALC_ERROR): Add "Return" and "Now" to
5223 list of removed lines from the traces observed.
5224 (AT_CHECK_CALC_LALR): Added push parser tests.
5225
5226 2006-09-13 Paul Eggert <eggert@cs.ucla.edu>
5227
5228 * NEWS: Version 2.3a.
5229 * configure.ac (AC_INIT): Likewise.
5230
5231 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Remove
5232 "#define YYSTYPE int" that caused "make maintainer-check" to fail
5233 due to header ordering dependencies. I don't know why the #define
5234 was there.
5235
5236 Fix glr.cc and lalr1.cc's use of YYDEBUG so that there's zero
5237 runtime cost when YYDEBUG is not defined, and so that some tests
5238 that used to fail now work. Problem and initial suggestion by
5239 Paolo Bonzini.
5240 * data/c++.m4 (b4_parse_param_cons): Omit leading ','.
5241 * data/glr.cc (b4_parser_class_name):
5242 Initialize yycdebug_ only if YYDEBUG. Also, initialize yydebug_.
5243 (debug_level, set_debug_level): Affect yydebug_, not ::yydebug.
5244 (yydebug_) [YYDEBUG]: New member.
5245 (yycdebug_): Now defined only if YYDEBUG.
5246 * data/lalr1.cc (yydebug_, yycdebug_): Now defined only if YYDEBUG.
5247 (YYCDEBUG) [!YYDEBUG]: Don't use yydebug_ and yycdebug_.
5248 (b4_parser_class_name): Initialize yydebug_ and yycdebug_ only
5249 if YYYDEBUG.
5250 (debug_stream, set_debug_stream, debug_level, set_debug_level):
5251 Define only if YYDEBUG.
5252 * tests/calc.at (_AT_DATA_CALC_Y) [!YYDEBUG]: Omit call to
5253 set_debug_level.
5254 * tests/regression.at (_AT_DATA_DANCER_Y) [!YYDEBUG]: Likewise.
5255 * tests/calc.at (AT_CHECK_CALC_GLR_CC): Uncomment calls to
5256 AT_CHECK_CALC_GLR_CC that are working now.
5257
5258 2006-09-12 Paul Eggert <eggert@cs.ucla.edu>
5259
5260 * data/glr.cc (YYERROR_VERBOSE, YYTOKEN_TABLE): Remove.
5261 We don't need them in glr.cc, and glr.c defines them.
5262 Defining YYERROR_VERBOSE to 0 here breaks glr.c, since glr.c
5263 assumes that defining it to anything is the same as defining
5264 it to 1. Problem reported by Paolo Bonzini.
5265
5266 2006-09-12 Paolo Bonzini <bonzini@gnu.org> (tiny change)
5267
5268 * data/c.m4 (b4_null, b4_case): Define.
5269 * src/output.c (prepare_symbols): Use b4_null.
5270 (user_actions_output): Use b4_case.
5271
5272 2006-09-11 Paul Eggert <eggert@cs.ucla.edu>
5273
5274 * data/glr.c (b4_shared_declarations): Put start-header first,
5275 before any #includes that we generate, so that feature-test
5276 macros work. Problem reported by Michael Deutschmann in
5277 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00004.html>.
5278 * data/lalr1.cc: Likewise.
5279 * doc/bison.texinfo (Prologue): Document that feature-test macros
5280 should be defined before any Bison declarations.
5281 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Put defns
5282 that depend on location.hh after, not before, Bison decls, since
5283 we now include location.hh after the first user prologue.
5284
5285 * doc/bison.texinfo (Calc++ Parser): Fix memory leak reported by
5286 Sander Brandenburg in
5287 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00002.html>.
5288 Also, fix minor white space and comment issues.
5289 (Prologue): Mention that it's better to define feature-test macros
5290 before Bison declarations. Problem reported by Michael Deutschmann.
5291
5292 * README-cvs: Fix typo: "&" should be "&&". Problem reported
5293 by Jim Meyering.
5294 * m4/.cvsignore: Add argmatch.m4. Remove obstack.m4, strerror_r.m4.
5295 This adjusts to recent gnulib changes.
5296
5297 2006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
5298
5299 Finish implementation of per-type %destructor/%printer. Discussed
5300 starting at
5301 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>
5302 and
5303 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>.
5304 * NEWS (2.3+): Add a description of this feature to the default
5305 %destructor/%printer description.
5306 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise.
5307 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
5308 Invoke semantic_type_destructor_set or semantic_type_printer_set when a
5309 list node contains a semantic type.
5310 * src/symtab.c, src/symtab.h: Extend with a table that associates
5311 semantic types with their %destructor's and %printer's.
5312 (semantic_type_from_uniqstr, semantic_type_get,
5313 semantic_type_destructor_set, semantic_type_printer_set): New functions
5314 composing the public interface of that table.
5315 (symbol_destructor_get, symbol_destructor_location_get,
5316 symbol_printer_get, symbol_printer_location_get): If there's no
5317 per-symbol %destructor/%printer, look up the per-type before trying
5318 the default.
5319 * tests/actions.at (Per-type %printer and %destructor): New test case.
5320 * tests/input.at (Default %printer and %destructor redeclared):
5321 Extend to check that multiple occurrences of %symbol-default in a
5322 single %destructor/%printer declaration is an error.
5323 (Per-type %printer and %destructor redeclared, Unused values with
5324 per-type %destructor): New test cases.
5325
5326 2006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
5327
5328 Require default %destructor/%printer to be declared using
5329 %symbol-default instead of an empty symbol list, and start working on
5330 new per-type %destructor/%printer. Discussed at
5331 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00007.html>.
5332 * NEWS (2.3+): Add %symbol-default to example.
5333 * bison.texinfo (Freeing Discarded Symbols): Likewise.
5334 (Table of Symbols): Add entry for %symbol-default.
5335 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): New token.
5336 (generic_symlist, generic_symlist_item): New nonterminals for creating
5337 a list in which each item is a symbol, semantic type, or
5338 %symbol-default.
5339 (grammar_declaration): Use generic_symlist in %destructor and %printer
5340 declarations instead of symbols.1 or an empty list.
5341 (symbol_declaration, precedence_declaration, symbols.1): Update actions
5342 for changes to symbol_list.
5343 * src/reader.c: Update for changes to symbol_list.
5344 * src/scan-code.l: Likewise.
5345 * src/scan-gram.l: Scan new PERCENT_SYMBOL_DEFAULT token.
5346 * src/symlist.c, src/symlist.h: Extend such that a list node may
5347 represent a semantic type or a %symbol-default in addition to just an
5348 ordinary symbol. Add switched functions for setting %destructor's and
5349 %printer's.
5350 * tests/actions.at, tests/input.at: Add %symbol-default to all default
5351 %destructor/%printer declarations.
5352
5353 2006-08-23 Joel E. Denny <jdenny@ces.clemson.edu>
5354
5355 Whether the default %destructor/%printer applies to a particular symbol
5356 isn't a question of whether the user *declares* that symbol (in %token,
5357 for example). It's a question of whether the user by any means
5358 *defines* the symbol at all (by simply using a char token, for
5359 example). $end is defined by Bison whereas any other token with token
5360 number 0 is defined by the user. The error token is always defined by
5361 Bison regardless of whether the user declares it with %token, but we
5362 may one day let the user define error as a nonterminal instead.
5363 * NEWS (2.3+): Say "user-defined" instead of "user-declared".
5364 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise, and document
5365 the meaning of "user-defined".
5366 * tests/actions.at (Default %printer and %destructor for user-declared
5367 end token): Rename to...
5368 (Default %printer and %destructor for user-defined end token): ...
5369 this.
5370
5371 * src/symtab.c (symbol_destructor_get, symbol_printer_get): In the
5372 computation of whether to apply the default, don't maintain a list of
5373 every Bison-defined symbol. Instead, just check for a first character
5374 of '$', which a user symbol cannot have, and check for the error token.
5375
5376 2006-08-21 Joel E. Denny <jdenny@ces.clemson.edu>
5377
5378 Don't apply the default %destructor or %printer to the error token,
5379 $undefined, or $accept. This change fits the general rule that the
5380 default %destructor and %printer are only for user-declared symbols,
5381 and it solves several difficulties that are described in the new test
5382 cases listed below.
5383 * src/symtab.c (symbol_destructor_get, symbol_printer_get): Implement.
5384 * tests/actions.at (Default %printer and %destructor are not for error
5385 or $undefined, Default %printer and %destructor are not for $accept):
5386 New test cases.
5387
5388 2006-08-19 Joel E. Denny <jdenny@ces.clemson.edu>
5389
5390 Allow %start after the first rule.
5391 * src/reader.c (grammar_current_rule_begin): Don't set the start symbol
5392 when parsing the first rule.
5393 (check_and_convert_grammar): Search for it here after all grammar
5394 declarations have been parsed. Skip midrules, which have dummy LHS
5395 nonterminals.
5396 * src/symtab.c (symbol_is_dummy): New function.
5397 * src/symtab.h (symbol_is_dummy): Declare it.
5398 * tests/input.at (%start after first rule): New test.
5399
5400 2006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
5401
5402 Redo some of the previous commit: add back the ability to use
5403 non-aliased/undeclared string literals since it might be useful to
5404 those declaring %token-table.
5405 * src/reader.c (check_and_convert_grammar): Undo changes in previous
5406 commit: don't worry about complaints from symbols_pack.
5407 * src/symtab.c (symbol_new, symbol_class_set,
5408 symbol_check_alias_consistency): Undo changes in previous commit: count
5409 each string literal as a new symbol and token, assign it a symbol
5410 number, and don't complain about non-aliased string literals.
5411 (symbols_pack): Since symbol_make_alias still does not decrement symbol
5412 and token counts but does still set aliased tokens to the same number,
5413 symbol_pack_processor now leaves empty slots in the symbols array.
5414 Remove those slots.
5415 * tests/regression.at (Undeclared string literal): Remove test case
5416 added in previous commit since non-aliased string literals are allowed
5417 again.
5418 (Characters Escapes, Web2c Actions): Undo changes in previous commit:
5419 remove unnecessary string literal declarations.
5420 * tests/sets.at (Firsts): Likewise.
5421
5422 2006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
5423
5424 Don't allow an undeclared string literal, but allow a string literal to
5425 be used before its declaration.
5426 * src/reader.c (check_and_convert_grammar): Don't invoke packgram if
5427 symbols_pack complained.
5428 * src/symtab.c (symbol_new): Don't count a string literal as a new
5429 symbol.
5430 (symbol_class_set): Don't count a string literal as a new token, and
5431 don't assign it a symbol number since symbol_make_alias does that.
5432 (symbol_make_alias): It's not necessary to decrement the symbol and
5433 token counts anymore. Don't assume that an alias declaration occurs
5434 before any uses of the identifier or string, and thus don't assert that
5435 one of them has the highest symbol number so far.
5436 (symbol_check_alias_consistency): Complain if there's a string literal
5437 that wasn't declared as an alias.
5438 (symbols_pack): Bail if symbol_check_alias_consistency failed since
5439 symbol_pack asserts that every token has been assigned a symbol number
5440 although undeclared string literals have not.
5441 * tests/regression.at (String alias declared after use, Undeclared
5442 string literal): New test cases.
5443 (Characters Escapes, Web2c Actions): Declare string literals as
5444 aliases.
5445 * tests/sets.at (Firsts): Likewise.
5446
5447 2006-08-14 Joel E. Denny <jdenny@ces.clemson.edu>
5448
5449 In the grammar scanner, STRING_FINISH unclosed constructs and return
5450 them to the parser in order to improve error messages.
5451 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER,
5452 SC_BRACED_CODE, SC_PROLOGUE): Implement.
5453 * tests/input.at (Unclosed constructs): New test case.
5454 * tests/regression.at (Invalid inputs): Update now that unclosed %{ is
5455 seen.
5456
5457 * src/scan-gram.h, src/scan-gram.l (gram_last_braced_code_loc): Remove
5458 unused global.
5459
5460 2006-08-13 Joel E. Denny <jdenny@ces.clemson.edu>
5461
5462 Handle string aliases for character tokens correctly.
5463 * src/symtab.c (symbol_user_token_number_set): If the token has an
5464 alias, check and set its alias's user token number instead of its own,
5465 which is set to indicate the alias. Previously, every occurrence of
5466 the character token in the grammar overwrote that alias indicator with
5467 the character code.
5468 * tests/input.at (String aliases for character tokens): New test.
5469
5470 2006-08-12 Joel E. Denny <jdenny@ces.clemson.edu>
5471
5472 * src/parse-gram.y: Add `%expect 0' so we don't overlook conflicts.
5473
5474 2006-08-11 Paul Eggert <eggert@cs.ucla.edu>
5475
5476 * bootstrap: Put in need-ngettext argument to AM_GNU_GETTEXT,
5477 to prevent failures when building on older platforms.
5478 Check for autopoint failure.
5479 Set XGETTEXT_OPTIONS to values that check for C format strings,
5480 so that translators are warned about them (this also helps
5481 prevent core dumps).
5482
5483 * lib/subpipe.c (create_subpipe): Use new gnulib pipe_safer
5484 function, since it simplifies our code a bit.
5485
5486 * configure.ac (AC_ARG_ENABLE): Use -Wextra -Wno-sign-compare
5487 rather than -W, so we don't get bogus warnings about sign comparisons.
5488 Add -Wpointer-arith, since that warning is useful (it reports code
5489 that does not conform to C89 and that some compilers reject).
5490 * data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c: Undo latest change,
5491 since it's no longer needed.
5492
5493 2006-08-10 Joel E. Denny <jdenny@ces.clemson.edu>
5494
5495 Clean up scanners a bit.
5496 * src/flex-scanner.h (FLEX_NO_OBSTACK): New macro that blocks obstack
5497 definitions so gcc won't warn when obstack_for_string is unused.
5498 * src/scan-code.l: config.h and system.h are already #include'd by
5499 scan-code-c.c, so get rid of them here.
5500 * src/scan-gram.l: Likewise.
5501 * src/scan-skel.l: Likewise, and use flex-scanner.h without obstack
5502 definitions rather than duplicating the rest of it.
5503 * src/scan-gram-c.c, scan-skel-c.c: #include "system.h".
5504
5505 2006-08-09 Joel E. Denny <jdenny@ces.clemson.edu>
5506
5507 Suppress signed/unsigned comparison warnings for yycheck.
5508 * data/c.m4 (b4_safest_int_type): New macro.
5509 * data/glr.c, data/lalr1.cc: Wherever you compare yycheck[i] against
5510 a signed int type, cast it to b4_safest_int_type first.
5511 * data/yacc.c: Likewise.
5512 (b4_safest_int_type): Overwrite the one from c.m4 since b4_int_type is
5513 also overwritten.
5514
5515 2006-08-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> (tiny change)
5516
5517 * doc/bison.texinfo: Fix some typos.
5518
5519 2006-08-02 Paul Eggert <eggert@cs.ucla.edu>
5520
5521 * m4/.cvsignore: Add inttypes_h.m4,lib-ld.m4, lib-prefix.m4,
5522 po.m4, stdint_h.m4, uintmax_t.m4, ulonglong.m4, warning.m4.
5523
5524 * bootstrap (gnulib_tool): Stop using --assume-autoconf;
5525 the latest gnulib does this a different way.
5526 (get_translations): Sharuzzaman Ahmat Raslan reported that the ms
5527 translation was patched, so stop omitting it.
5528
5529 2006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
5530
5531 Enable declaration of default %printer/%destructor. Make the parser
5532 use these for all user-declared grammar symbols for which the user does
5533 not declare a specific %printer/%destructor. Thus, the parser uses it
5534 for token 0 if the user declares it but not if Bison generates it as
5535 $end. Discussed starting at
5536 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>,
5537 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>,
5538 and
5539 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>.
5540 * NEWS (2.3+): Mention.
5541 * doc/bison.texinfo (Actions in Mid-Rule): It's no longer impossible to
5542 declare a %destructor for a mid-rule's semantic value. It's just
5543 impossible to declare one specific to it.
5544 (Freeing Discarded Symbols): Mention that @$ can be used in %destructor
5545 code. Describe default %destructor form.
5546 * src/parse-gram.y (grammar_declaration): Parse default
5547 %printer/%destructor declarations.
5548 * src/output.c (symbol_destructors_output): Use symbol_destructor_get
5549 and symbol_destructor_location_get rather than accessing the destructor
5550 and destructor_location members of struct symbol.
5551 (symbol_printers_output): Likewise but for %printer's.
5552 * src/reader.c (symbol_should_be_used): Likewise but for %destructor's
5553 again.
5554 * src/symtab.c (default_destructor, default_destructor_location,
5555 default_printer, default_printer_location): New static global
5556 variables to record the default %destructor and %printer.
5557 (symbol_destructor_get, symbol_destructor_location_get,
5558 symbol_printer_get, symbol_printer_location_get): New functions to
5559 compute the appropriate %destructor and %printer for a symbol.
5560 (default_destructor_set, default_printer_set): New functions to set the
5561 default %destructor and %printer.
5562 * src/symtab.h: Prototype all those new functions.
5563 * tests/actions.at (Default %printer and %destructor): New test to
5564 check that the right %printer and %destructor are called, that they're
5565 not called for $end, and that $$ and @$ work correctly.
5566 (Default %printer and %destructor for user-declared end token): New
5567 test to check that the default %printer and %destructor are called for
5568 a user-declared end token.
5569 * tests/input.at (Default %printer and %destructor redeclared, Unused
5570 values with default %destructor): New tests to check related grammar
5571 warnings and errors.
5572
5573 2006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
5574
5575 Clean up handling of %destructor for the end token (token 0).
5576 Discussed starting at
5577 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>
5578 and
5579 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00013.html>.
5580
5581 Make the skeletons consistent in how they pop the end token and invoke
5582 its %destructor.
5583 * data/glr.c (yyrecoverSyntaxError, yyparse): Don't pop the start
5584 state, which has token number 0, since this would invoke the
5585 %destructor for the end token.
5586 * data/lalr1.cc (yy::parser::parse): Don't check for the final state
5587 until after shifting the end token, or else it won't be popped.
5588 * data/yacc.c (yyparse): Likewise.
5589
5590 * data/glr.c (yyparse): Clear the lookahead after shifting it even when
5591 it's the end token. Upon termination, destroy an unshifted lookahead
5592 even when it's the end token.
5593 * data/lalr1.cc (yy::parser::parse): Likewise.
5594 * data/yacc.c (yyparse): Likewise.
5595
5596 * src/reader.c (packgram): Don't check rule 0. This suppresses unused
5597 value warnings for the end token when the user gives the end token a
5598 %destructor.
5599
5600 * tests/actions.at (Printers and Destructors): Test all the above.
5601
5602 2006-07-24 Paul Eggert <eggert@cs.ucla.edu>
5603
5604 Update to latest gnulib and gettext versions.
5605 * bootstrap (gnulib-modules): Remove hard-locale, stdio-safer.
5606 Add fopen-safer.
5607 (gnulib_files): Add m4/warning.m4. Don't worry about files
5608 overwritten by autopoint.
5609 Replace gt_INTL_SUBDIR_CORE with an empty body in m4/gettext_gl.m4.
5610 Suppress "id", "ms", "tr" translations for now, since gettext 0.15
5611 rejects them.
5612 Don't use autoreconf; instead, invoke autopoint etc. by hand,
5613 so that we can remove the intl files at a better time.
5614 (intl_files_to_remove): Remove aclocal.m4, since it gets
5615 rebuilt anyway. Remove m4/inttypes_h.m4, m4/inttypes.m4,
5616 m4/isc-posix.m4, m4/lib-ld.m4, m4/lib-prefix.m4, m4/po.m4,
5617 m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
5618 Add m4/inttypes-h.m4, m4/lock.m4, m4/visibility.m4.
5619 Remove datarootdir hack; no longer needed.
5620 * configure.ac: Use gl_WARNING_CFLAGS rather than BISON_WARNING.
5621 (AM_GNU_GETTEXT_VERSION): Bump from 0.12 to 0.15.
5622 * lib/.cvsignore: Remove hard-locale.c, hard-locale.h, strdup.c,
5623 strdup.h.
5624 * m4/.cvsignore: Remove hard-locale.m4, strdup.m4.
5625 * m4/warning.m4: Remove from CVS, since we now use gnulib's version.
5626
5627 2006-07-20 Paul Eggert <eggert@cs.ucla.edu>
5628
5629 * bootstrap: Adjust to today's change to gnulib-tool by invoking
5630 it with --assume-autoconf='latest-stable'.
5631
5632 2006-07-13 Joel E. Denny <jdenny@ces.clemson.edu>
5633
5634 * src/parse-gram.y (grammar_declaration): Don't confuse Doxygen (at
5635 least 1.4.7 and 1.4.4) by putting a #line between `typedef union
5636 YYSTYPE' and `{'.
5637 * src/muscle_tab.h (muscle_grow): Replace the header comments with
5638 those from muscle_tab.c since the old ones are misleading.
5639
5640 2006-07-13 Akim Demaille <akim@epita.fr>
5641
5642 Support %define "KEY" {VALUE}.
5643 * src/scan-code.h, src/scan-code.l (translate_action)
5644 (translate_rule_action, translate_symbol_action, translate_code):
5645 Return char *, not const char *.
5646 * src/parse-gram.y (declaration): Rename as...
5647 (prologue_declaration): this.
5648 (string_content): Remove this nonterminal, use STRING.
5649 (braceless, content, content.opt): New nonterminal.
5650 Use them.
5651 (%define): Now accept content.opt, i.e., accept also BRACED_CODE
5652 as value.
5653 * src/scan-gram.l (getargs.h): Don't include it.
5654
5655 2006-07-12 Paul Eggert <eggert@cs.ucla.edu>
5656
5657 * data/lalr1.cc (YYCDEBUG): Use 'if (yydebug_) (*yycdebug_)'
5658 rather than a for-loop that declares a local bool variable. This
5659 should work around a compatibility problem with a Cray x1e C++
5660 compiler reported by Hung Nguyen in
5661 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00022.html>.
5662 The for-loop was introduced in the 2004-11-17 change but I don't
5663 know why it was needed.
5664
5665 2006-07-12 Akim Demaille <akim@epita.fr>
5666
5667 * data/c.m4: Comment changes.
5668
5669 2006-07-10 Akim Demaille <akim@lrde.epita.fr>
5670
5671 * src/complain.c (error_message, ERROR_MESSAGE): New.
5672 To factor...
5673 (fatal_at, fatal, warn_at, warn, complain_at, complain): these.
5674 * src/complain.h, src/complain.c (warning_issued): Remove, unused.
5675
5676 2006-07-09 Paul Eggert <eggert@cs.ucla.edu>
5677
5678 * NEWS: Instead of %union, you can define and use your own union type
5679 YYSTYPE if your grammar contains at least one <type> tag.
5680 Your YYSTYPE need not be a macro; it can be a typedef.
5681 * doc/bison.texinfo (Value Type, Multiple Types, Location Type):
5682 (Union Decl, Decl Summary): Document this.
5683 * data/glr.c (YYSTYPE): Implement this.
5684 * data/glr.cc (YYSTYPE): Likewise.
5685 * data/lalr1.cc (YYSTYPE): Likewise.
5686 * data/yacc.c (YYSTYPE): Likewise.
5687 * src/output.c (prepare): Output tag_seen_flag.
5688 * src/parse-gram.y (declaration, grammar_declaration):
5689 Use 'union_seen' rather than 'typed' to determine whether
5690 %union has been seen, since grammars can now be typed without
5691 %union.
5692 (symbol_declaration, type.opt, symbol_def):
5693 Keep track of whether a tag has been seen.
5694 * src/reader.c (union_seen, tag_seen): New vars.
5695 (typed): remove.
5696 * src/reader.h (union_seen, tag_seen, typed): Likewise.
5697 * src/scan-code.l (untyped_var_seen): New variable.
5698 (handle_action_dollar): Adjust to above changes.
5699 (handle_action_dollar, handle_action_at):
5700 Improve overflow checking for outlandish numbers.
5701 * tests/input.at (AT_CHECK_UNUSED_VALUES): Redo test to
5702 avoid new diagnostics generated by above changes.
5703 * tests/regression.at (YYSTYPE typedef): Add test to check
5704 for type tags without %union.
5705
5706 * src/symlist.c (symbol_list_length): Return int, not unsigned
5707 int, since callers expect int. This may need to get revisited
5708 once we have proper integer overflow checking.
5709
5710 * src/scan-gram.h (gram_scanner_cursor): Remove decl, since this
5711 object is now static.
5712
5713 * src/getargs.c (flags_argmatch): Return void, not int,
5714 to pacify ./configure --enable-gcc-warnings.
5715
5716 * src/flex-scanner.h (STRING_FREE): Don't use FLEX_PREFIX (last_string)
5717 since last_string is already defined to FLEX_PREFIX (last_string).
5718
5719 2006-07-09 Akim Demaille <akim@lrde.epita.fr>
5720
5721 Implement --warnings/-W.
5722 * src/getargs.c (report_argmatch, trace_argmatch): Remove,
5723 replaced by...
5724 (flags_argmatch, FLAGS_ARGMATCH): this new function and macro.
5725 Adjust callers.
5726 * src/getargs.h, src/getargs.c (warnings, warnings_flags)
5727 (warnings_args, warnings_types): New.
5728 (getargs, short_options, long_options): Accept -W/--warnings.
5729 Sort the options by alphabetical order, upper case letter right
5730 before its lower case.
5731
5732 2006-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
5733
5734 Change %merge result type clash warnings to errors. Discussed at
5735 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00026.html>.
5736 * src/reader.c (record_merge_function_type): Use complain_at.
5737 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
5738 declared later): Update test case results.
5739
5740 2006-07-09 Akim Demaille <akim@lrde.epita.fr>
5741
5742 * src/getargs.h, src/getargs.c: Swap --report and --trace handling
5743 to be in alphabetical order.
5744 (trace_args): Spelling fixes.
5745
5746 2006-07-09 Paul Eggert <eggert@cs.ucla.edu>
5747
5748 * data/yacc.c (YYID, yy_stack_print): Prefix local vars with "yy"
5749 so they don't collide with user-defined macros.
5750 (yy_stack_print): Don't assume that yytype_int16 promotes to int;
5751 this was never guaranteed, and now that we're using gnulib stdint,
5752 which defines int_fast16_t to long int, the problem is exposed.
5753
5754 2006-07-08 Paul Eggert <eggert@cs.ucla.edu>
5755
5756 * data/c.m4 (b4_basename): Simplify a bit, since we don't
5757 need the full POSIX semantics (and weren't implementing them
5758 anyway).
5759
5760 Adjust to Autoconf 2.60 and today's gnulib.
5761 * bootstrap (gnulib_modules): Add stdint.
5762 Remove special case for m4/onceonly_2_57.m4, since gnulib-tool
5763 no longer copies it.
5764 (intl_files_to_remove): Remove m4/longlong.m4 and m4/wchar_t.m4,
5765 since stdint needs the former and wcwidth (which is now required
5766 by mbswidth) needs the latter.
5767 Append 'datarootdir = @datarootdir@' to po/Makefile.in.in, to
5768 work around a compatibility glitch between gettext 0.14.6 and
5769 Autoconf 2.60.
5770 * configure.ac (AC_PREREQ): Require Autoconf 2.60.
5771 Do not check for uintptr_t, since new stdint module does the right
5772 thing.
5773 * lib/.cvsignore: Remove alloca.c, alloca.h, alloca_.h.
5774 Add stdint.h, stdint_.h, wcwidth.h.
5775 * m4/.cvsignore: Remove alloca.m4, onceonly.m4.
5776 Add absolute-header.m4, double-slash-root.m4, longlong.m4,
5777 stdint.m4, wchar_t.m4, wcwidth.m4.
5778 * src/files.c: Include <dirname.h> and <stdio-safer.h> in the
5779 usual order for ../lib/*.h files.
5780 (file_name_split): Use last_component, not base_name, to adjust
5781 to gnulib changes.
5782 * src/parse-gram.h: Include <strverscmp.h> in the usual order
5783 for ../lib/*.h files.
5784 (YYTYPE_INT16, YYTYPE_INT8, YYTYPE_UINT16, YYTYPE_UINT8):
5785 Define unconditionally, since we now assume the stdint module.
5786 * src/scan-skel.l: Include <dirname.h>.
5787 (BASE_QPUTS): Use last_component, not base_name.
5788 * src/system.h: Include <unlocked-io.h> in the usual order
5789 for ../lib/*.h files. Include <stdint.h> unconditionally,
5790 since we now use the stdint module.
5791 (uintptr_t): Declare if UINTPTR_MAX is not defined, not
5792 HAVE_UINTPTR_T, since we now use the stdint module.
5793 (base_name): Remove decl, since files now include <dirname.h>
5794 to get the decl.
5795
5796 2006-07-08 Akim Demaille <akim@lrde.epita.fr>
5797
5798 * data/c.m4 (b4_location_initial_column, b4_location_initial_line):
5799 New, default to 1.
5800 * data/yacc.c, data/glr.c, data/location.cc: Use them.
5801 * NEWS, doc/bison.texinfo: The initial column and line are 1 by
5802 default.
5803 * tests/calc.at: Adjust.
5804
5805 2006-07-08 Akim Demaille <akim@lrde.epita.fr>
5806
5807 * data/c.m4 (b4_basename): New.
5808 (b4_syncline): Also output the location of its invocation (from
5809 the skeleton).
5810 (b4_user_action, b4_define_user_action, b4_user_actions)
5811 (b4_user_initial_action, b4_user_post_prologue, b4_user_start_header)
5812 (b4_user_stype): New.
5813 * data/yacc.c, data/glr.c, data/lalr1.cc, data/glr.cc: Use them.
5814
5815 2006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
5816
5817 In the grammar file, the first column is 1 not 0 on the first line as
5818 on every other line.
5819 * src/parse-gram.y (%initial-action): Initialize @$ correctly.
5820 * tests/input.at (Torturing the Scanner): Update output.
5821
5822 * src/scan-gram.l (scanner_cursor): Declare it static.
5823
5824 2006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
5825
5826 In warnings, say "previous declaration" rather than "first
5827 declaration".
5828 * src/symtab.c (redeclaration): Do that here.
5829 * src/reader.c (record_merge_function_type): In the case of a result
5830 type clash, report the previous declaration rather than the very first
5831 one in the grammar file.
5832 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
5833 declared later): Add a third declaration to check this behavior.
5834 * tests/input.at (Incompatible Aliases): Update output.
5835
5836 2006-06-27 Akim Demaille <akim@epita.fr>
5837
5838 * doc/Doxyfile.in: New.
5839 * doc/Makefile.am: Use it.
5840 * src/lalr.h, src/symtab.h: Initial doxygenation.
5841
5842 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
5843
5844 Don't miss %merge result type warnings just because the LHS types are
5845 declared after the %merge. This continues the effort of the previous
5846 patch.
5847 * src/reader.c (get_merge_function): Don't set the merger type yet.
5848 (record_merge_function_type): New function for setting the merger type
5849 and checking for clashes.
5850 (grammar_current_rule_merge_set): Set the location of the %merge for
5851 the current rule.
5852 (packgram): Invoke record_merge_function_type for each rule now that
5853 all symbol type declarations have been parsed.
5854 * src/reader.h (merger_list.type_declaration_location): New member
5855 storing the location of the first %merge from which the type for this
5856 merging function was derived.
5857 * src/symlist.h (symbol_list.merger_declaration_location): New member
5858 storing the location of a rule's %merge, if any.
5859 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
5860 declared later): New test to catch the error fixed by the above patch.
5861
5862 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
5863
5864 Get action warnings (grammar_rule_check) right even when symbol
5865 declarations appear after the rules. Discussed at
5866 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00108.html>
5867 and
5868 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00151.html>.
5869 Don't mistake the type of $$ in a midrule to be that of its parent
5870 rule's $$.
5871 * src/reader.c (grammar_current_rule_end): Don't invoke
5872 grammar_rule_check yet since not all symbol declarations may have been
5873 parsed yet.
5874 (grammar_midrule_action): Likewise.
5875 Don't record whether the midrule's $$ has been used yet since actions
5876 haven't been translated yet.
5877 Record the midrule's parent rule and its RHS index within the parent
5878 rule.
5879 (grammar_current_rule_action_append): Don't translate the action yet
5880 since not all symbol declarations may have been parsed yet and, thus,
5881 warnings about types for $$, $n, @$, and @n can't be reported yet.
5882 (packgram): Translate the action and invoke grammar_rule_check now that
5883 all symbol declarations have been parsed.
5884 * src/scan-code.l (handle_action_dollar): Now that this is invoked
5885 after parsing the entire grammar file, the symbol list here in the case
5886 of a midrule is actually the midrule's empty RHS, so reference its
5887 parent rule's RHS where necessary.
5888 On the other hand, now that you can already know it's a midrule, you
5889 aren't forced to think $$ has the same type as its parent rule's $$.
5890 (handle_action_at): In the case of a midrule, reference the parent rule
5891 where necessary.
5892 * src/symlist.c (symbol_list_new): Initialize new midrule-related
5893 members.
5894 (symbol_list_length): Now that this is invoked after all rules have
5895 been parsed, a NULL symbol (rather than a NULL symbol list node)
5896 terminates a rule. symbol_list_print already does this correctly.
5897 * src/symlist.h (symbol_list.midrule_parent_rule,
5898 symbol_list.midrule_parent_rhs_index): New members so that midrules can
5899 remember their relationships with their parents.
5900 * tests/input.at (Type Clashes): Extend to catch the midrule $$ error
5901 fixed by the above patch.
5902 (_AT_UNUSED_VALUES_DECLARATIONS, AT_CHECK_UNUSED_VALUES): New m4 macros
5903 implementing...
5904 (Unused values): ... this old test case and...
5905 (Unused values before symbol declarations): ... this new test case.
5906 This one is the same as `Unused values' except that all symbol
5907 declarations appear after the rules in order to catch the rest of the
5908 errors fixed by the above patch.
5909
5910 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
5911
5912 More cleanup.
5913 * src/reader.c (current_rule): Declare it static since it's no longer
5914 used outside this file.
5915 (grammar_current_rule_action_append): Remove redundant arguments from
5916 translate_rule_action invocation.
5917 * src/reader.h (current_rule): Remove this unused extern.
5918 * src/scan-code.h (translate_rule_action): Remove redundant arguments.
5919 * src/scan-code.l (translate_rule_action): Likewise.
5920
5921 2006-06-25 Joel E. Denny <jdenny@ces.clemson.edu>
5922
5923 Clean up yesterday's patch.
5924 * parse-gram.y (rhs): Move grammar_midrule_action invocation from here
5925 to...
5926 * src/reader.c (grammar_current_rule_action_append): ... here for
5927 consistency with grammar_current_rule_symbol_append.
5928 * tests/regression.at (Braced code in declaration in rules section):
5929 Make yyerror and yylex static as usual.
5930
5931 2006-06-24 Joel E. Denny <jdenny@ces.clemson.edu>
5932
5933 Fix bug that mistakes braced code in a declaration in the rules section
5934 to be a rule action. Mentioned at
5935 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00105.html>.
5936 * src/scan-gram.l: Move midrule action detection from the start of the
5937 scanning of any braced code to...
5938 * src/parse-gram.y (rhs): ... the parsing of braced code as a rule
5939 action. For readability, use $2 and @2 rather than the equivalent
5940 global variables.
5941 * tests/regression.at (Braced code in declaration in rules section):
5942 New test to catch the error fixed by the above patch.
5943
5944 Work on code readability some.
5945 * src/scan-code.l (current_rule): Get rid of this misleading and
5946 redundant declaration: it's actually extern'ed in reader.h.
5947 (YY_DECL, code_lex, handle_action_dollar, handle_action_at,
5948 translate_action): Add a rule argument and use it instead of the global
5949 current_rule.
5950 (translate_rule_action): This already receives current_rule through an
5951 argument, so pass it on to translate_action instead of assigning
5952 current_rule to current_rule.
5953 (translate_symbol_action, translate_code): Pass rule = NULL to
5954 translate_action.
5955
5956 2006-06-23 Joel E. Denny <jdenny@ces.clemson.edu>
5957
5958 Rename %before-definitions to %start-header and %after-definitions to
5959 %end-header. Don't use these declarations to separate pre-prologue
5960 blocks from post-prologue blocks. Add new order-independent
5961 declarations %before-header and %after-header as alternatives to the
5962 traditional Yacc pre-prologue and post-prologue blocks. Discussed at
5963 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00110.html>.
5964 * NEWS (2.3+): Update for these changes.
5965 * data/glr.c (b4_before_definitions): Update to...
5966 (b4_start_header): ... this.
5967 (b4_after_definitions): Update to...
5968 (b4_end_header): ... this.
5969 * data/glr.cc: Likewise.
5970 * data/lalr1.cc: Likewise.
5971 * data/yacc.c: Likewise.
5972 * doc/bison.texinfo (The prologue): Update names, and replace remaining
5973 prologue blocks with %*-header declarations.
5974 (Calc++ Parser): Likewise.
5975 (Decl Summary): Update names.
5976 (Table of Symbols): Update description.
5977 * src/parse-gram.y (PERCENT_AFTER_DEFINITIONS): Update to...
5978 (PERCENT_END_HEADER): ... this.
5979 (PERCENT_BEFORE_DEFINITIONS): Update to...
5980 (PERCENT_START_HEADER): ... this.
5981 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
5982 (declaration): Update token names and m4 macro names.
5983 When parsing %end-header and %start-header, invoke translate_code
5984 before muscle_code_grow, and no longer set global booleans to remember
5985 whether these declarations have been seen.
5986 Parse new %after-header and %before-header.
5987 * src/reader.c (before_definitions, after_definitions): Remove.
5988 (prologue_augment): Accept a new bool argument to specify whether to
5989 augment the pre-prologue or post-prologue.
5990 * src/reader.h (before_definitions, after_definitions): Remove these
5991 extern's.
5992 (prologue_augment): Add new bool argument.
5993 * src/scan-gram.l (PERCENT_AFTER_DEFINITIONS): Update to...
5994 (PERCENT_END_HEADER): ... this.
5995 (PERCENT_BEFORE_DEFINITIONS): Update to...
5996 (PERCENT_START_HEADER): ... this.
5997 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
5998 * tests/actions.at (Printers and Destructors): Update names.
5999
6000 2006-06-22 Joel E. Denny <jdenny@ces.clemson.edu>
6001
6002 Add comparison operators for C++ location classes. Discussed at
6003 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00092.html>.
6004 * data/c++.m4 (b4_define_location_comparison): New boolean %define
6005 declaration indicating whether filename_type has an operator==. If
6006 filename_type is `std::string', it defaults to `1', `0' otherwise.
6007 * data/location.cc: Iff b4_define_location_comparison is `1', add
6008 operator== and operator!= for class position and for class location.
6009
6010 Some minor fixes.
6011 * src/scan-action.l: Remove unused file.
6012 * src/symtab.c (symbol_printer_set): Use printer_location not
6013 destructor_location.
6014 * src/symtab.h (struct symbol): Replace incorrect source comment for
6015 printer members.
6016 * tests/input.at (Incompatible Aliases): Update output with correct
6017 printer location.
6018
6019 2006-06-20 Joel E. Denny <jdenny@ces.clemson.edu>
6020
6021 Don't put the pre-prologue in the header file. For the yacc.c code
6022 file and the glr.c header and code files, move the pre-prologue before
6023 the token definitions. Add new %before-definitions and
6024 %after-definitions to declare code that will go in both the header file
6025 and code file. Discussed at
6026 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00000.html>,
6027 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00016.html>,
6028 and
6029 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00055.html>.
6030 * NEWS (2.3+): Describe these changes.
6031 * data/glr.c (b4_pre_prologue): Move from within to before...
6032 (b4_shared_declarations): ... this.
6033 Add new b4_before_definitions before b4_token_enums.
6034 Add new b4_after_definitions at the end.
6035 * data/glr.cc (b4_pre_prologue): Replace with...
6036 (b4_before_definitions): ... this in the header file.
6037 (b4_after_definitions): New near the end of the header file.
6038 * data/lalr1.cc (b4_pre_prologue): Move from the header file to the
6039 code file right before including the header file.
6040 (b4_before_definitions): New in the previous position of
6041 b4_pre_prologue in the header file.
6042 (b4_after_definitions): New near the end of the header file.
6043 * data/yacc.c: Clean up some m4 quoting especially in the header file.
6044 (b4_token_enums_defines): In the code file, move to right before
6045 YYSTYPE for consistency with the header file.
6046 (b4_before_definitions): New right before b4_token_enums_defines in
6047 both the header and code file.
6048 (b4_after_definitions): New right after YYLTYPE and yylloc in both the
6049 header and code file.
6050 * doc/bison.texinfo (Prologue): Show use of %before-definitions instead
6051 of prologues for %union dependencies.
6052 (Decl Summary): In %defines description, mention the effect of
6053 %before-definitions and %after-definitions on the header file.
6054 (Calc++ Parser): Forward declare driver in a %before-definitions rather
6055 than in the pre-prologue so that make check succeeds.
6056 (Table of Symbols): Add entries for %before-definitions and
6057 %after-definitions.
6058 * src/parse-gram.y (PERCENT_BEFORE_DEFINITIONS): New token for
6059 %before-definitions.
6060 (PERCENT_AFTER_DEFINITIONS): New token for %after-definitions.
6061 (declaration): Parse those declarations and append to
6062 b4_before_definitions and b4_after_definitions, respectively.
6063 * src/reader.c (before_definitions, after_definitions): New bools to
6064 track whether those declarations have been seen.
6065 (prologue_augment): Add to the post-prologue if %union,
6066 %before-definitions, or %after-definitions has been seen.
6067 * src/reader.h (before_definitions, after_definitions): New extern's.
6068 * src/scan-gram.l: Scan the new declarations.
6069 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Place the second
6070 prologue block in a %before-definitions or a %after-definitions based
6071 on whether the %union is declared.
6072 * tests/regression.at (Early token definitions with --yacc, Early token
6073 definitions without --yacc): Move tests for token definitions into the
6074 post-prologue since token names are no longer defined in the
6075 pre-prologue.
6076
6077 2006-06-20 Akim Demaille <akim@epita.fr>
6078
6079 * src/symtab.h, src/symtab.c (symbol_from_uniqstr): New.
6080 (symbol_get): Use it.
6081 * src/parse-gram.y: Use it.
6082
6083 2006-06-19 Joel E. Denny <jdenny@ces.clemson.edu>
6084
6085 * src/scan-gram.l: Remove unused declaration of last_string_1 so the
6086 build succeeds when configured with --enable-gcc-warnings.
6087
6088 2006-06-19 Paul Eggert <eggert@cs.ucla.edu>
6089
6090 * src/parse-gram.y (char_name): New function.
6091 (CHAR, STRING, string_content): For %printer, properly escape.
6092 (ID): Prefer fputs to fprintf.
6093 (id): Reindent to be consistent with other rules.
6094 Properly quote char.
6095
6096 The Translation Project changed its way of publishing translations
6097 to maintainers. I haven't received any responses to my request
6098 for supporting the old way, or for documenting the new way. I
6099 have modified 'bootstrap' to use screen scraping
6100 (in this case, HTML scraping). This is unreliable and inelegant,
6101 but I don't see any better way. Yuck.
6102 * bootstrap (TP_URL, WGET_COMMAND): New vars.
6103 (get_translations): New function, which uses HTML scraping to
6104 deduce locations of latest translations.
6105 Use this function to grab both bison and bison-runtime .po files.
6106 Don't bother priming the pump for the runtime-po domain any more,
6107 as it's now translated better than bison is.
6108
6109 2006-06-19 Akim Demaille <akim@epita.fr>
6110
6111 * src/scan-gram.l: No longer "parse" things after `%union' until
6112 `{'. Rather, return a single "%union" token.
6113 No longer make symbols: return strings, and leave the conversion
6114 to symbols to the parser.
6115 (SC_PRE_CODE, token_type): Remove.
6116 * src/parse-gram.y (%union): New field `character'.
6117 Sort tokens.
6118 (CHAR): New token.
6119 (ID, ID_COLON): Now that the scanner no longer makes them
6120 identifiers, adjust all uses to invoke symbol_get.
6121 (id_colon): New, wraps the conversion from string to symbol.
6122 (%union): Accept a possible union_name.
6123 (symbol): Now can be a char.
6124 * data/c.m4 (b4_union_name): Leave a default value.
6125 * data/glr.c, data/yacc.c: Use it.
6126
6127 2006-06-11 Joel E. Denny <jdenny@ces.clemson.edu>
6128
6129 For associating token numbers with token names for "yacc.c", don't use
6130 #define statements unless `--yacc' is specified; always use enum
6131 yytokentype. Most important discussions start at:
6132 <http://lists.gnu.org/archive/html/bison-patches/2005-09/msg00053.html>,
6133 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00052.html>,
6134 and
6135 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00043.html>.
6136 * NEWS (2.3+): Mention.
6137 * data/c.m4 (b4_yacc_if): New.
6138 (b4_token_enums_defines): Use b4_yacc_if to decide whether to add the
6139 token #define's.
6140 * doc/bison.texinfo (Bison Options): Describe the effect of `--yacc'
6141 on token name definitions.
6142 * src/getargs.c (usage): Capitalize `Yacc' in English.
6143 * src/output.c (prepare): Define b4_yacc_flag.
6144 * tests/regression.at (Early token definitions): Test that tokens names
6145 are defined before the pre-prologue not just before the post-prologue.
6146 Remove this test case and copy to...
6147 (Early token definitions with --yacc): ... this to test #define's.
6148 (Early token definitions without --yacc): ... and this to test enums.
6149
6150 2006-06-11 Paul Eggert <eggert@cs.ucla.edu>
6151
6152 * NEWS: Reword the post-2.3 change to not be so optimistic about
6153 removing the old "look-ahead" spelling.
6154 Update previous look-ahead/lookahead change reports.
6155 * REFERENCES: look-ahead -> lookahead (since that's
6156 what he actually wrote).
6157 * doc/refcard.tex: look ahead -> lookahead,
6158 look-ahead -> lookahead
6159
6160 2006-06-09 Joel E. Denny <jdenny@ces.clemson.edu>
6161
6162 For consistency, use `lookahead' instead of `look-ahead' or
6163 `look_ahead'. Discussed starting at
6164 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00049.html>
6165 and then at
6166 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00017.html>.
6167 * NEWS: For the next release, note the change to `--report'.
6168 * TODO, doc/bison.1: Update English.
6169 * doc/bison.texinfo: Update English.
6170 (Understanding Your Parser, Bison Options): Document as
6171 `--report=lookahead' rather than `--report=look-ahead'.
6172 * src/conflicts.c: Update English in comments.
6173 (lookahead_set): Rename from look_ahead_set.
6174 (flush_reduce): Rename argument look_ahead_tokens to lookahead_tokens.
6175 (resolve_sr_conflict): Rename local look_ahead_tokens to
6176 lookahead_tokens, and update other uses.
6177 (flush_shift, set_conflicts, conflicts_solve, count_sr_conflicts,
6178 count_rr_conflicts, conflicts_free): Update uses.
6179 * src/getargs.c (report_args): Move "lookahead" before alternate
6180 spellings.
6181 (report_types): Update uses.
6182 (usage): For `--report' usage description, state `lookahead' spelling
6183 rather than `look-ahead'.
6184 * src/getargs.h (report.report_lookahead_tokens): Rename from
6185 report_look_ahead_tokens.
6186 * src/lalr.c: Update English in comments.
6187 (compute_lookahead_tokens): Rename from compute_look_ahead_tokens.
6188 (state_lookahead_tokens_count): Rename from
6189 state_look_ahead_tokens_count.
6190 Rename local n_look_ahead_tokens to n_lookahead_tokens.
6191 (lookahead_tokens_print): Rename from look_ahead_tokens_print.
6192 Rename local n_look_ahead_tokens to n_lookahead_tokens.
6193 Update other uses.
6194 Update English in output.
6195 (add_lookback_edge, initialize_LA, lalr, lalr_free): Update uses.
6196 * src/print.c: Update English in comments.
6197 (lookahead_set): Rename from look_ahead_set.
6198 (print_reduction): Rename argument lookahead_token from
6199 look_ahead_token.
6200 (print_core, state_default_rule, print_reductions, print_results):
6201 Update uses.
6202 * src/print_graph.c: Update English in comments.
6203 (print_core): Update uses.
6204 * src/state.c: Update English in comments.
6205 (reductions_new): Update uses.
6206 (state_rule_lookahead_tokens_print): Rename from
6207 state_rule_look_ahead_tokens_print, and update other uses.
6208 * src/state.h: Update English in comments.
6209 (reductions.lookahead_tokens): Rename from look_ahead_tokens.
6210 (state_rule_lookahead_tokens_print): Rename from
6211 state_rule_look_ahead_tokens_print.
6212 * src/tables.c: Update English in comments.
6213 (conflict_row, action_row): Update uses.
6214 * tests/glr-regression.at
6215 (Incorrect lookahead during deterministic GLR,
6216 Incorrect lookahead during nondeterministic GLR): Rename
6217 print_look_ahead to print_lookahead.
6218 * tests/torture.at: Update English in comments.
6219 (AT_DATA_LOOKAHEAD_TOKENS_GRAMMAR): Rename from
6220 AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR.
6221 (Many lookahead tokens): Update uses.
6222 * data/glr.c: Update English in comments.
6223 * lalr1.cc: Likewise.
6224 * yacc.c: Likewise.
6225 * src/conflicts.h: Likewise.
6226 * src/lalr.h: Likewise.
6227 * src/main.c: Likewise.
6228 * src/output.c: Likewise.
6229 * src/parse-gram.c: Likewise.
6230 * src/tables.h: Likewise.
6231 * tests/calc.at: Likewise.
6232
6233 2006-06-08 Joel E. Denny <jdenny@ces.clemson.edu>
6234
6235 * src/flex-scanner.h (yytext): Remove stray `*/' in #define.
6236
6237 2006-06-07 Paul Eggert <eggert@cs.ucla.edu>
6238
6239 * TODO: Add request from Nelson H. F. Beebe to be able to install
6240 Bison without installing the yacc script.
6241
6242 2006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
6243
6244 * src/flex-scanner.h: For the sake of Flex 2.5.4, don't #define yyleng
6245 and yytext if they're already #define'd.
6246 * src/flex-scanner.h, src/location.h: Move #include "system.h" to...
6247 * src/scan-code-c.c: ... here.
6248 * src/scan-code.l, src/scan-gram.l: ... and here. Also #include
6249 <config.h>.
6250
6251 2006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
6252
6253 Get Bison to build again when configured with --enable-gcc-warnings.
6254 * src/location.c, src/location.h, src/main.c, src/scan-code.l: Add some
6255 missing #include's.
6256 * src/scan-code.l (handle_action_dollar, handle_action_at): Rename
6257 loc argument as it shadows a global.
6258 * src/scan-gram.l: Remove stray comma that prevents boundary_set
6259 invocation.
6260
6261 * src/.cvsignore: Add scan-code.c.
6262
6263 2006-06-07 Akim Demaille <akim@epita.fr>
6264
6265 * src/scan-gram.l: Move the "add a trailing ; to actions" code
6266 to...
6267 * src/scan-code.l: here.
6268 * tests/input.at (Torturing the Scanner): Fix another location
6269 error.
6270
6271 2006-06-07 Akim Demaille <akim@epita.fr>
6272
6273 * src/Makefile.am (BUILT_SOURCES): Fix the trailing backslash.
6274
6275 2006-06-06 Akim Demaille <akim@epita.fr>
6276
6277 Extract the parsing of user actions from the grammar scanner.
6278 As a consequence, the relation between the grammar scanner and
6279 parser is much simpler. We can also split "composite tokens" back
6280 into simple tokens.
6281 * src/gram.h (ITEM_NUMBER_MAX, RULE_NUMBER_MAX): New.
6282 * src/scan-gram.l (add_column_width, adjust_location): Move to and
6283 rename as...
6284 * src/location.h, src/location.c (add_column_width)
6285 (location_compute): these.
6286 Fix the column count: the initial column is 0.
6287 (location_print): Be robust to ending column being 0.
6288 * src/location.h (boundary_set): New.
6289 * src/main.c: Adjust to scanner_free being renamed as
6290 gram_scanner_free.
6291 * src/output.c: Include scan-code.h.
6292 * src/parse-gram.y: Include scan-gram.h and scan-code.h.
6293 Use boundary_set.
6294 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_INITIAL_ACTION)
6295 (PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Remove the {...} part,
6296 which is now, again, a separate token.
6297 Adjust all dependencies.
6298 Whereever actions with $ and @ are used, use translate_code.
6299 (action): Remove this nonterminal which is now useless.
6300 * src/reader.c: Include assert.h, scan-gram.h and scan-code.h.
6301 (grammar_current_rule_action_append): Use translate_code.
6302 (packgram): Bound check ruleno, itemno, and rule_length.
6303 * src/reader.h (gram_in, gram__flex_debug, scanner_cursor)
6304 (last_string, last_braced_code_loc, max_left_semantic_context)
6305 (scanner_initialize, scanner_free, scanner_last_string_free)
6306 (gram_out, gram_lineno, YY_DECL_): Move to...
6307 * src/scan-gram.h: this new file.
6308 (YY_DECL): Rename as...
6309 (GRAM_DECL): this.
6310 * src/scan-code.h, src/scan-code.l, src/scan-code-c.c: New.
6311 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
6312 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
6313 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
6314 Move these declarations, and...
6315 (obstack_for_string, STRING_GROW, STRING_FINISH, STRING_FREE):
6316 these to...
6317 * src/flex-scanner.h: this new file.
6318 * src/scan-gram.l (rule_length, rule_length_overflow)
6319 (increment_rule_length): Remove.
6320 (last_braced_code_loc): Rename as...
6321 (gram_last_braced_code_loc): this.
6322 Adjust to the changes of the parser.
6323 Move all the handling of $ and @ into...
6324 * src/scan-code.l: here.
6325 * src/scan-gram.l (handle_dollar, handle_at): Remove.
6326 (handle_action_dollar, handle_action_at): Move to...
6327 * src/scan-code.l: here.
6328 * src/Makefile.am (bison_SOURCES): Add flex-scanner.h,
6329 scan-code.h, scan-code-c.c, scan-gram.h.
6330 (EXTRA_bison_SOURCES): Add scan-code.l.
6331 (BUILT_SOURCES): Add scan-code.c.
6332 (yacc): Be robust to white spaces.
6333
6334 * tests/conflicts.at, tests/input.at, tests/reduce.at,
6335 * tests/regression.at: Adjust the column numbers.
6336 * tests/regression.at: Adjust the error message.
6337
6338 2006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
6339
6340 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
6341 Use Akim's wording from
6342 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00056.html>.
6343
6344 2006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
6345
6346 Between Bison releases, manually append `+' to the previous Bison
6347 release number, and use that as a signal to automatically print the
6348 ChangeLog's CVS Id keyword from --version. Discussed starting at
6349 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00028.html>.
6350 * ChangeLog: Add Id header.
6351 * configure.ac (AC_INIT): Append `+' to `2.3'.
6352 * src/.cvsignore: Add revision.c.
6353 * src/Makefile.am (bison_SOURCES): Add revision.c and revision.h.
6354 (BUILT_SOURCES): Add revision.c.
6355 (revision.c): New target rule. This file defines a new global variable
6356 named revision. It initializes it with either the Id from ChangeLog
6357 or, if VERSION doesn't contain `+', with the empty string.
6358 * src/getargs.c (version): Print the value of revision.
6359 * src/revision.h: Extern revision.
6360
6361 2006-06-05 Paul Eggert <eggert@cs.ucla.edu>
6362
6363 * NEWS: Version 2.3.
6364 * configure.ac (AC_INIT): Likewise.
6365
6366 2006-05-30 Paul Eggert <eggert@cs.ucla.edu>
6367
6368 * data/glr.c (YYRECOVERING): Define to be a function-like macro
6369 with no arguments, not as an object-like macro. This is for
6370 compatibility with data/yacc.c. Problem reported by John P. Hartmann in
6371 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00059.html>.
6372 * doc/bison.texinfo (Action Features, Error Recovery, Table of Symbols):
6373 Document this.
6374
6375 2006-05-30 Joel E. Denny <jdenny@ces.clemson.edu>
6376
6377 * src/getargs.c (usage): Back out yesterday's modification of the
6378 --help output so that we don't have to wait for translation before
6379 releasing 2.3.
6380
6381 2006-05-29 Paul Eggert <eggert@cs.ucla.edu>
6382
6383 * doc/bison.texinfo (Introduction): Don't say "GLR grammar".
6384 Problem reported by Akim Demaille.
6385
6386 2006-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
6387
6388 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
6389
6390 2006-05-26 Paul Eggert <eggert@cs.ucla.edu>
6391
6392 * data/yacc.c (yy_reduce_print): Omit trailing white space in
6393 generated source code. Problem reported by Frans Englich in
6394 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00049.html>.
6395
6396 2006-05-22 Paul Eggert <eggert@cs.ucla.edu>
6397
6398 * Makefile.maint (gzip_rsyncable, GZIP_ENV): Compute within the
6399 shell, not within 'make', so that 'make' by an ordinary builder
6400 (using GNU make) does not worry about configuring gzip. This also
6401 works around a bug reported independently by Keith Thompson and by
6402 Georg Schwarz, whereby gzip 1.2.4 --help would output usage on
6403 stderr rather than stdout, messing up the build logs.
6404
6405 2006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
6406
6407 * data/yacc.c (yyparse): Wrap the final return from yyparse inside YYID
6408 to make sure that YYID will never be unused. This fixes a 'make
6409 maintainer-check' failure caused by the recent changes to the 'Trivial
6410 grammars' test case, which caused g++ 4.1.0 to complain that YYID was
6411 not used.
6412 * data/glr.c (yyparse): Wrap yyparse's return inside YYID just in case.
6413
6414 2006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
6415
6416 * data/glr.c (yyresolveLocations): Remove bogus YYASSERT that the
6417 state before an empty RHS is always resolved here. Only the location
6418 of that state is guaranteed to be resolved, and that's enough. This
6419 fixes the remaining bug reported by Derek M. Jones in
6420 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
6421 * tests/glr-regression.at (Uninitialized location when reporting
6422 ambiguity): Test the above case.
6423 Also, the embedded comments in this test case claim it checks the case
6424 of an empty RHS that has inherited the initial location. However, the
6425 corresponding LHS was already resolved, so yyresolveLocations didn't
6426 actually have reason to modify it. Fix this by forcing
6427 nondeterministic operation at the beginning of the parse.
6428
6429 2006-05-20 Paul Eggert <eggert@cs.ucla.edu>
6430
6431 * data/c.m4 (b4_yy_symbol_print_generate):
6432 (b4_yy_symbol_print_generate): Use 'YYSTYPE const' rather than
6433 'const YYSTYPE', and similarly for YYLTYPE. This fixes one
6434 of the bugs reported today by Derek M Jones in
6435 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
6436 * doc/bison.texinfo (Value Type): Document that YYSTYPE must be
6437 defined to be a type name without parens or brackets.
6438 (Location Type): Similarly for YYLTYPE.
6439 * tests/regression.at (Trivial grammars): Put in a test for this
6440 bug that will be caught by 'make maintainer-check' (though not,
6441 alas, by 'make check' unless your compiler is picky).
6442
6443 2006-05-19 Paul Eggert <eggert@cs.ucla.edu>
6444
6445 * NEWS: Version 2.2.
6446 * configure.ac (AC_INIT): Likewise.
6447
6448 2006-05-17 Joel E. Denny <jdenny@ces.clemson.edu>
6449
6450 * data/glr.c (yyreportTree): Make room in yystates for the state
6451 preceding the RHS. This fixes the segmentation fault reported by Derek
6452 M. Jones in
6453 <http://lists.gnu.org/archive/html/help-bison/2006-05/msg00035.html>.
6454 (yyreportTree, yypdumpstack): Subtract 1 from yyrule before printing
6455 to the user. Reported for yyreportTree by Derek M. Jones later in the
6456 same thread.
6457 * THANKS: Add Derek M. Jones.
6458 Update my email address.
6459 Fix typo in Steve Murphy's name.
6460
6461 2006-05-14 Paul Eggert <eggert@cs.ucla.edu>
6462
6463 * data/glr.c (yyreportSyntaxError): Fix off-by-one error in
6464 checking against YYLAST that caused the parser to miss a potential
6465 alternative in its diagnostic.
6466 Problem reported by Maria Jose Moron Fernandez in
6467 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00024.html>.
6468 * data/lalr1.cc (yysyntax_error_): Likewise.
6469 * data/yacc.c (yysyntax_error): Likewise.
6470 * tests/regression.at (_AT_DATA_DANCER_Y): Use static array for
6471 tokens, in case we run into an older C compiler.
6472 (_AT_DATA_EXPECT2_Y, AT_CHECK_EXPECT2): New macros.
6473 Use them to check for the off-by-one error fixed above.
6474
6475 * data/yacc.c (yytnamerr): Fix typo: local var should be of type
6476 YYSIZE_T, not size_t.
6477 * tests/regression.at (Trivial grammars): New test, to catch
6478 the error fixed by the above patch.
6479
6480 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
6481
6482 * doc/bison.texinfo (C++ Bison Interface): Clarify the naming
6483 scheme.
6484 Reported by Steve Murphy.
6485
6486 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
6487
6488 * data/glr.cc, data/lalr1.cc: Using %defines is mandatory.
6489 * data/glr.cc: b4_location_flag is now b4_locations_flag.
6490
6491 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
6492
6493 Implement --trace=m4.
6494 * src/getargs.c (trace_types, trace_args): Accept trace_m4.
6495 * src/output.c (output_skeleton): When set, pass -dV to m4.
6496
6497 Factor the handling of flags in m4.
6498 * src/output.c (prepare): Rename the muscle names debug, defines,
6499 error_verbose to debug_flag, defines_flag, error_verbose_flag.
6500 * data/c.m4: Adjust.
6501 (_b4_define_flag_if, b4_define_flag_if, b4_defines_if): New.
6502 Use b4_define_flag_if to define other b4_FLAG_if macros.
6503 (b4_location_if): As a consequence, rename as...
6504 (b4_locations_if): this, for consistency.
6505 Adjust all the skeletons.
6506
6507 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
6508
6509 * etc/bench.pm: Shorten bench names.
6510
6511 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
6512
6513 * src/output.h, src/output.c (error_verbose): Move to...
6514 * src/getargs.h, src/getargs.c: here.
6515 Sort the flags.
6516 Adjust dependencies.
6517
6518 2006-05-13 Paul Eggert <eggert@cs.ucla.edu>
6519
6520 * data/c.m4 (b4_copyright): Put the special exception for Bison
6521 skeletons here, so we don't have to put it in each skeleton. All
6522 uses changed. Suggested by Akim Demaille. Also, wrap the
6523 copyright notice, in case it is longer than 80 columns. Replace
6524 comma by newline after title.
6525
6526 2006-05-11 Paul Eggert <eggert@cs.ucla.edu>
6527
6528 * doc/bison.texinfo (Calc++ Scanner): The flex behavior is an
6529 incompatibility, not a bug. Mention that it wasn't fixed as of
6530 flex 2.5.33.
6531
6532 2006-05-11 Akim Demaille <akim@lrde.epita.fr>
6533
6534 * examples/extexi: Enforce the precedence of concatenation over
6535 >>.
6536 Reported by Tommy Nordgren.
6537
6538 2006-05-11 Akim Demaille <akim@lrde.epita.fr>
6539
6540 * data/lalr1.cc (yytranslate_): Rename token as t to avoid clashes
6541 with the member "token".
6542 Reported by Martin Nylin.
6543
6544 2006-05-08 Paul Eggert <eggert@cs.ucla.edu>
6545
6546 * data/glr.c: Switch to Bison 2.2 special-exception language in
6547 the copyright notice. Use more-regular format for titles and
6548 copyright notices.
6549 * data/glr.cc: Likewise.
6550 * data/location.cc: Likewise.
6551 * data/yacc.cc: Likewise.
6552 * doc/bison.texinfo (Conditions): Document this.
6553 * NEWS: likewise. Upgrade version to 2.2.
6554
6555 2006-04-27 Akim Demaille <akim@lrde.epita.fr>
6556
6557 * data/glr.cc: Remove dead code.
6558
6559 2006-04-25 Paul Eggert <eggert@cs.ucla.edu>
6560
6561 * bootstrap: Comment out the AM_CPPFLAGS line, since we don't use
6562 that variable and the line breaks the bootstrap. Problem reported
6563 by Juan M. Guerrero.
6564
6565 2006-04-24 Akim Demaille <akim@lrde.epita.fr>
6566
6567 * doc/bison.texinfo (Multiple start-symbols): New.
6568
6569 2006-04-24 Akim Demaille <akim@lrde.epita.fr>
6570
6571 * etc/README, etc/bench.pl: New.
6572
6573 2006-04-03 Akim Demaille <akim@lrde.epita.fr>
6574
6575 * src/scan-gram.l: Be robust to BRACED_CODE appearing before any
6576 rule.
6577 Reported by Mickael Labau.
6578 * tests/input.at (Torturing the Scanner): Test it.
6579
6580 2006-03-16 Paul Eggert <eggert@cs.ucla.edu>
6581
6582 * doc/bison.texinfo (Decl Summary): Don't mention yylloc twice.
6583 Problem reported by Bob Rossi.
6584
6585 2006-03-13 Paul Eggert <eggert@cs.ucla.edu>
6586
6587 * doc/bison.texinfo: Remove @shorttitlepage stuff; it wasn't used
6588 and didn't really work.
6589 For the index, use @ifnotinfo, not @iftex.
6590 Minor cleanups of spacing and terminology.
6591
6592 2006-03-12 Akim Demaille <akim@lrde.epita.fr>
6593
6594 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Fix the definition
6595 of AT_NAME_PREFIX when %name-prefix is not used.
6596
6597 2006-03-12 Akim Demaille <akim@lrde.epita.fr>
6598
6599 Apply --prefix to C++ skeletons too: they change the namespace.
6600 The test suite already exercize these cases.
6601 * data/c++.m4 (b4_namespace): New.
6602 * data/lalr1.cc, data/glr.cc, data/location.cc: Use it instead of `yy'.
6603 * data/lalr1.cc (yytnameerr_): Move its definition into the namespace.
6604 * data/yacc.c, data/glr.c: Remove a useless `[]'.
6605 * doc/bison.texinfo: Document it.
6606 (Option Cross Key): Use @multitable in all formats. It looks
6607 nicer, even in TeX outputs.
6608 (Rules): Use the same code whatever the output type is.
6609 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS)
6610 (_AT_BISON_OPTION_POPDEFS): Support AT_NAME_PREFIX.
6611 * tests/calc.at: Use it, instead of hard coding `yy'.
6612
6613 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
6614
6615 * TODO: Remove dead items.
6616
6617 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
6618
6619 * doc/FAQ: Remove, merged into...
6620 * doc/bison.texinfo (FAQ): this.
6621 * doc/Makefile.am (EXTRA_DIST): Adjust.
6622
6623 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
6624
6625 * data/c.m4 (b4_token_enum): Always define the enum of tokens,
6626 even if empty.
6627 * data/lalrl1.cc, data/glr.cc (parser::token_type): New.
6628 * doc/bison.texinfo (Calc++ Scanner): Use it.
6629
6630 2006-03-09 Paul Eggert <eggert@cs.ucla.edu>
6631
6632 Fix two nits reported by twlevo, plus one more that I discovered.
6633
6634 * src/assoc.h (assoc_to_string): Give a name to the arg, as
6635 this is the usual Bison style.
6636 * src/location.h (location_print): Likewise.
6637
6638 * src/reader.h (token_name): Likewise.
6639
6640 2006-03-08 Paul Eggert <eggert@cs.ucla.edu>
6641
6642 Fix some nits reported by twlevo.
6643 * doc/FAQ: Remove ancient Y2K FAQ, replacing it with "secure"
6644 and "POSIX". Use more-modern syntax for URLs. Mention C++
6645 and ask for Java. Don't hardwire OS version numbers. Add
6646 copyright notice.
6647 * m4/.cvsignore: Add unistd_h.m4, for latest gnulib.
6648 * src/conflicts.c (solved_conflicts_obstack): Now static.
6649
6650 2006-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
6651
6652 * doc/bison.texinfo (Introduction): Mention GLR and C++ as on the web
6653 page. Say "you can use it" not "you may use it" as on the web page;
6654 we're describing capabilities not granting permission.
6655
6656 2006-03-06 Paul Eggert <eggert@cs.ucla.edu>
6657
6658 * data/glr.c (yyresolveLocations): Rename local variables to avoid
6659 shadowing warnings. Use usual patter for iterating through RHS.
6660 * tests/glr-regression.at
6661 (Uninitialized location when reporting ambiguity):
6662 Modify yylex so that it uses its argument, rather than trying
6663 to rely on ARGSUSED (which doesn't work for gcc with warnings).
6664 const char -> char const.
6665
6666 * tests/Makefile.am ($(srcdir)/package.m4, maintainer-check-valgrind):
6667 Don't use tabs inside commands; it messes up 'ps'.
6668 Problem reported by twlevo.
6669
6670 2006-03-06 Joel E. Denny <jdenny@ces.clemson.edu>
6671
6672 * tests/glr-regression.at (Uninitialized location when reporting
6673 ambiguity): New test case.
6674 * data/glr.c (yyresolveLocations): New function, which uses
6675 YYLLOC_DEFAULT.
6676 (yyresolveValue): Invoke yyresolveLocations before reporting an
6677 ambiguity.
6678 * doc/bison.texinfo (Default Action for Locations): Note
6679 YYLLOC_DEFAULT's usage for ambiguity locations.
6680 (GLR Semantic Actions): Cross-reference those notes.
6681
6682 2006-03-04 Joel E. Denny <jdenny@ces.clemson.edu>
6683
6684 * tests/glr-regression.at (Leaked semantic values when reporting
6685 ambiguity): Remove unnecessary union and type declarations.
6686 (Leaked lookahead after nondeterministic parse syntax error): New test
6687 case.
6688 * data/glr.c (yyparse): Check for zero stacks remaining before
6689 attempting to shift the lookahead so that you don't lose it.
6690
6691 2006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
6692
6693 Avoid memory leaks by not invoking longjmp in yyreportAmbiguity.
6694 * tests/glr-regression.at (Leaked semantic values when reporting
6695 ambiguity): New test case.
6696 * data/glr.c (yyreportAmbiguity): Invoke yyyerror directly and return
6697 yyabort rather than invoking yyFail, which invokes longjmp. Remove the
6698 now unnecessary yystackp parameter.
6699 (yyresolveValue): Return yyreportAmbiguity's result. Now the necessary
6700 destructors can be called.
6701
6702 * tests/glr-regression.at: Don't invoke bison with `-t' unnecessarily
6703 in existing testcases.
6704
6705 2006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
6706
6707 Don't leak semantic values for parent RHS when a user action cuts the
6708 parser, and clean up related code a bit.
6709 * tests/glr-regression.at (Leaked merged semantic value if user action
6710 cuts parse): Rename to...
6711 (Leaked semantic values if user action cuts parse): ... this. Add check
6712 for leaked parent RHS values.
6713 * data/glr.c (yydestroyGLRState): In debugging output, distinguish
6714 between an unresolved state (non-empty chain of semantic options) and
6715 an incomplete one (signaled by an empty chain).
6716 (yyresolveStates): Document the interface. Move all manipulation of a
6717 successfully or unsuccessfully resolved yyGLRState to...
6718 (yyresolveValue): ... here so that yyresolveValue always leaves a
6719 yyGLRState with consistent data and thus is easier to understand.
6720 Remove the yyvalp and yylocp parameters since they are always just
6721 taken from the yys parameter. When reporting a discarded merged value
6722 in debugging output, note that it is incompletely merged. Document the
6723 interface.
6724 (yyresolveAction): If resolving any of the RHS states fails, destroy
6725 them all rather than leaking them. Thus, as long as user actions are
6726 written to clean up the RHS correctly, yyresolveAction always cleans up
6727 the RHS of a semantic option. Document the interface.
6728
6729 2006-02-27 Paul Eggert <eggert@cs.ucla.edu>
6730
6731 * data/glr.c (yyexpandGLRStack): Catch an off-by-one error that
6732 led to a segmentation fault in GNU Pascal. Problem reported
6733 by Waldek Hebisch.
6734
6735 2006-02-21 Joel E. Denny <jdenny@ces.clemson.edu>
6736
6737 * doc/bison.texinfo (Mid-Rule Actions): Explain how to bury a
6738 mid-rule action inside a nonterminal symbol in order to declare a
6739 destructor for its semantic value.
6740
6741 2006-02-16 Paul Eggert <eggert@cs.ucla.edu>
6742
6743 * data/yacc.c [(! defined yyoverflow || YYERROR_VERBOSE) && !
6744 YYSTACK_USE_ALLOCA && ! defined YYSTACK_ALLOC && defined
6745 __cplusplus && ! defined _STDLIB_H && !
6746 ((defined YYMALLOC || defined malloc) && (defined YYFREE ||
6747 defined free))]: Include <stdlib.h> rather than rolling our own
6748 declarations of malloc and free, to avoid problems with
6749 incompatible declarations (using 'throw') C++'s stdlib.h. This
6750 should fix Debian bug 340012
6751 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=340012>,
6752 reported by Guillaume Melquiond.
6753
6754 2006-02-13 Paul Eggert <eggert@cs.ucla.edu>
6755
6756 * NEWS: Clarify symbols versus types in unused-value warnings.
6757
6758 * configure.ac (AC_INIT): Bump version number.
6759
6760 2006-02-13 Paul Eggert <eggert@cs.ucla.edu>
6761
6762 * NEWS: Version 2.1a.
6763 * tests/headers.at (AT_TEST_CPP_GUARD_H): Declare yyerror and yylex,
6764 since C99 requires this.
6765
6766 2006-02-11 Paul Eggert <eggert@cs.ucla.edu>
6767
6768 * m4/c-working.m4: New file.
6769 * configure.ac (BISON_TEST_FOR_WORKING_C_COMPILER): Use it.
6770
6771 2006-02-10 Paul Eggert <eggert@cs.ucla.edu>
6772
6773 * Makefile.maint: Merge from coreutils.
6774
6775 2006-02-09 Paul Eggert <eggert@cs.ucla.edu>
6776
6777 More portability fixes for problems summarized by Nelson H. F. Beebe.
6778
6779 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Catch a
6780 configuration screwup "./configure CC=/opt/SUNWspro/bin/c89
6781 CFLAGS="-xarch=generic64" CXX=/opt/SUNWspro/bin/CC
6782 LDFLAGS="-xarch=generic64" with Sun C 5.7 on Solaris 10; this
6783 messes up because C++ code is compiled in 32-bit mode but linked
6784 in 64-bit mode.
6785
6786 2006-02-08 Paul Eggert <eggert@cs.ucla.edu>
6787
6788 More portability fixes for problems summarized by Nelson H. F. Beebe.
6789
6790 * doc/bison.texinfo (Calc++ Scanner): Work around a bug in flex
6791 2.5.31. This resembles the 2005-10-10 patch to src/scan-skel.l.
6792
6793 * examples/calc++/Makefile.am (check_PROGRAMS): Renamed from
6794 nodist_PROGRAMS, since we don't need to actually compile the
6795 example if we're just doing a plain 'make'. This avoids bothering
6796 the installer unnecessarily about problems due to weird C++
6797 compilers.
6798
6799 2006-02-06 Paul Eggert <eggert@cs.ucla.edu>
6800
6801 More portability fixes for problems summarized by Nelson H. F. Beebe.
6802
6803 * tests/headers.at (AT_TEST_CPP_GUARD_H): Use #include <...> rather
6804 than #include "...", and compile with -I'.'. The old method was
6805 not portable, according to Posix and the C standard, and it does
6806 not work with Sun C 5.7, where previous #line directives affect
6807 the working directory used in later #include "..." directives.
6808
6809 2006-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
6810
6811 Various DJGGP specific issues in /djgpp
6812
6813 2006-02-02 Paul Eggert <eggert@cs.ucla.edu>
6814
6815 More portability fixes for problems summarized by Nelson H. F. Beebe.
6816
6817 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check that
6818 '#include <map>' works and that you can apply ++ to iterators.
6819
6820 2006-02-01 Paul Eggert <eggert@cs.ucla.edu>
6821
6822 Work around portability problems summarized by Nelson H. F. Beebe in
6823 <http://lists.gnu.org/archive/html/bug-bison/2005-09/msg00021.html>.
6824
6825 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
6826 that '#include <string>' works.
6827
6828 * data/lalr1.cc (yytranslate_): No longer inline, to work around a
6829 porting problem to g++ 3.4.3 on Darwin 7.9.0, where g++ complained
6830 "warning: sorry: semantics of inline function static data `const
6831 unsigned char translate_table[262]' are wrong (you'll wind up with
6832 multiple copies)".
6833
6834 * lib/bbitset.h (struct bitset_vtable): Rename members not, and,
6835 or, xor to not_, and_, or_, and xor_, respectively. This works
6836 around a bug in GCC 3.4.3 on Irix 6.5, which apparently has a
6837 random system header somewhere that includes the equivalent of
6838 <iso646.h>.
6839
6840 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that "$CC
6841 -E" works; it apparently doesn't work with PathScale EKO Compiler
6842 Suite Version 2.0.
6843
6844 2006-01-30 Joel E. Denny <jdenny@ces.clemson.edu>
6845
6846 During deterministic GLR operation, user actions should be able to
6847 influence the parse by changing yychar. To make this easier to fix and
6848 to make glr.c easier to evolve in general, don't maintain yytoken in
6849 parallel with yychar; just compute yytoken when needed.
6850 * tests/glr-regression.at (Incorrect lookahead during deterministic
6851 GLR): Check that setting yychar in a user action has the intended
6852 effect.
6853 * data/glr.c (yyGLRStack): Remove yytokenp member.
6854 (yyclearin): Don't set *yytokenp.
6855 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Examine
6856 yychar rather than *yytokenp to determine the current lookahead.
6857 Compute yytoken locally when needed.
6858 (yyparse): Likewise. Remove the local yytoken that yytokenp used to
6859 point to.
6860
6861 * doc/bison.texinfo (Bison Options): Remove stray sentence fragment
6862 after `--report' documentation.
6863
6864 2006-01-30 Paul Eggert <eggert@cs.ucla.edu>
6865
6866 * src/parse-gram.y (grammar_declaration): Location of printer
6867 symbol is @1, not list->location. Bug reported by twlevo.
6868 * tests/input.at (Incompatible Aliases): Adjust to above change.
6869
6870 2006-01-29 Paul Eggert <eggert@cs.ucla.edu>
6871
6872 * tests/input.at (AT_CHECK_UNUSED_VALUES): Remove. Instead, do
6873 all the test at once. This makes the output easier to read in the
6874 normal case.
6875
6876 Fix a longstanding bug uncovered by bro-0.9a9/src/parse.y, which I
6877 got from <http://bro-ids.org/download.html>. The bug is that
6878 when two actions appeared in succession, the second one was
6879 scanned before the first one was added to the grammar rule
6880 as a midrule action. Bison then output the incorrect warning
6881 "parse.y:905.17-906.36: warning: unused value: $3".
6882 * src/parse-gram.y (BRACED_CODE, action): These are no longer
6883 associated with a value.
6884 (rhs): Don't invoke grammar_current_rule_action_append.
6885 (action): Invoke it here instead.
6886 * src/reader.c (grammar_midrule_action): Now extern.
6887 (grammar_current_rule_action_append): Don't invoke
6888 grammar_midrule_action; that is now the scanner's job.
6889 * src/reader.h (last_string, last_braced_code_loc):
6890 (grammar_midrule_action): New decls.
6891 * src/scan-gram.l (last_string): Now extern, sigh.
6892 (last_braced_code_loc): New extern variable.
6893 (<INITIAL>"{"): Invoke grammar_midrule_action if the current
6894 rule already has an action.
6895 (<SC_BRACED_CODE>"}"): Set last_braced_code_loc before returning.
6896 * tests/input.at (AT_CHECK_UNUSED_VALUES):
6897 Add some tests to check that the above changes fixed the bug.
6898
6899 2006-01-27 Paul Eggert <eggert@cs.ucla.edu>
6900
6901 * src/reader.c (symbol_should_be_used): Renamed from symbol_typed_p.
6902 All used changed. Check whether the symbol has a destructor,
6903 not whether it is typed.
6904 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add a destructor, so
6905 that the values are still reported as unused. All line numbers
6906 adjusted.
6907
6908 2006-01-23 Paul Eggert <eggert@cs.ucla.edu>
6909
6910 Work around a bug in bro 0.8, which underparenthesizes its
6911 definition of YYLLOC_DEFAULT.
6912 * data/glr.c: Change all uses of YYLLOC_DEFAULT to parenthesize
6913 their arguments.
6914 * data/lalr1.cc: Likewise.
6915 * data/yacc.cc: Likewise.
6916
6917 2006-01-22 Paul Eggert <eggert@cs.ucla.edu>
6918
6919 Work around a bug in Pike 7.0, and give the Pike folks a
6920 better way to override the usual int widths.
6921 * data/yacc.c (b4_int_type): Use yytype_uint8, etc., so that the
6922 user can override the types.
6923 (short): #undef, to work around a bug in Pike 7.0.
6924 (yytype_uint8, yytype_int8, yytype_uint16, yytype_int16): New types.
6925 (union yyalloc.yyss): Use yytype_int16 rather than short.
6926 All uses changed.
6927 (yysigned_char): Remove.
6928 * src/parse-gram.y (YYTYPE_UINT8, YYTYPE_INT8, YYTYPE_UINT16):
6929 (YYTYPE_INT16): New macros, to test the new facility in yacc.c.
6930 * tests/regression.at (Web2c Actions): Adjust to above changes.
6931
6932 * src/reader.c (check_and_convert_grammar): New function.
6933 (reader): Close the input file even if something went wrong during
6934 parsing. Minor file descriptor leak reported by twlevo.
6935
6936 * src/assoc.c (assoc_to_string): Use a default: abort (); case
6937 to pacify gcc -Wswitch-default.
6938 * src/scan-gram.l (adjust_location): Use a default: break; case
6939 to pacify gcc -Wswitch-default.
6940 * src/scan-skel.h (skel_get_lineno, skel_get_in, skel_get_out):
6941 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
6942 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
6943 Move these decls to scan-skel.l, since they don't need to be
6944 visible elsewhere.
6945 * src/scan-skel.l: Accept the above decls.
6946 (skel_lex): New decl, to pacify GCC when unpatched flex 2.5.31
6947 is used.
6948
6949 2006-01-21 Paul Eggert <eggert@cs.ucla.edu>
6950
6951 * Makefile.cfg (local-checks-to-skip): Add changelog-check,
6952 since we don't want to insist on a version number at the start
6953 of the changelog every time.
6954 * Makefile.maint: Sync from coreutils a bit better.
6955 (sc_trailing_blank): Renamed from sc_trailing_space.
6956 All uses changed.
6957 (sc_no_if_have_config_h, sc_require_config_h):
6958 (sc_prohibit_assert_without_use): New rules.
6959 (sc_obsolete_symbols): Don't catch Makefile.maint itself.
6960 (sc_dd_max_sym_length): Fix leading spaces in rule.
6961 (sc_system_h_headers): Prefix with @.
6962 (sc_useless_cpp_parens, m4-check): Output line numbers.
6963 (changelog-check): Allow version only in head.
6964 * data/c.m4: Use "defined FOO" instead of "defined (FOO)", to
6965 satisfy new Makefile.maint rule.
6966 * data/glr.c: Likewise.
6967 * data/glr.cc: Likewise.
6968 * data/lalr1.cc: Likewise.
6969 * data/yacc.c: Likewise.
6970 * lib/ebitsetv.c: Likewise.
6971 * lib/lbitset.c: Likewise.
6972 * lib/subpipe.c: Likewise.
6973 * lib/timevar.c: Likewise.
6974 * src/system.h: Likewise.
6975 * data/yacc.c (YYSTYPE): Don't generate trailing spaces in output.
6976 * djgpp/Makefile.maint: Add copyright notice.
6977 * djgpp/README.in: Likewise.
6978 * djgpp/config.bat: Likewise.
6979 * djgpp/config.site: Likewise.
6980 * djgpp/config_h.sed: Likewise.
6981 * djgpp/djunpack.bat: Likewise.
6982 * djgpp/config.sed: Fix copyright notice to match standard format.
6983 * djgpp/subpipe.h: Likewise.
6984 * lib/bitsetv-print.c: Likewise.
6985 * lib/bitsetv.c: Likewise.
6986 * lib/subpipe.h: Likewise.
6987 * lib/timevar.c: Likewise.
6988 * lib/timevar.h: Likewise.
6989 * djgpp/subpipe.c: Use standard recipe for config.h.
6990 * lib/abitset.c: Likewise.
6991 * lib/bitset.c: Likewise.
6992 * lib/bitset_stats.c: Likewise.
6993 * lib/bitsetv-print.c: Likewise.
6994 * lib/bitsetv.c: Likewise.
6995 * lib/ebitsetv.c: Likewise.
6996 * lib/get-errno.c: Likewise.
6997 * lib/lbitset.c: Likewise.
6998 * lib/subpipe.c: Likewise.
6999 * lib/timevar.c: Likewise.
7000 * lib/vbitset.c: Likewise.
7001 * tests/local.at: Likewise.
7002 * src/scan-gram.l: Don't include verify.h, since system.h does
7003 that for us.
7004 * .x-sc_require_config_h: New file.
7005 * .x-sc_unmarked_diagnostics: New file.
7006
7007 2006-01-20 Paul Eggert <eggert@cs.ucla.edu>
7008
7009 Be a bit more systematic about using 'abort'.
7010 * lib/abitset.c (abitset_test): Remove ATTRIBUTE_UNUSED; not needed.
7011 * lib/bitset.c (bitset_bytes, bitset_init, bitset_op4_cmp):
7012 Put 'default: abort ();' before some other case, to satisfy older
7013 pedantic compilers.
7014 * lib/bitset_stats.c (bitset_stats_init): Likewise.
7015 * lib/ebitset.c (ebitset_elt_find, ebitset_op3_cmp): Likewise.
7016 * lib/lbitset.c (lbitset_elt_find, lbitset_op3_cmp): Likewise.
7017 * src/conflicts.c (resolve_sr_conflict): Likewise.
7018 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str):
7019 (get_decision_str, get_orientation_str, get_node_alignment_str):
7020 (get_arrow_mode_str, get_crossing_type_str, get_view_str):
7021 (get_linestyle_str, get_arrowstyle_str): Likewise.
7022 * src/conflicts.c (resolve_sr_conflict):
7023 Use a default case rather than one for the one remaining enum
7024 value, to catch invalid enum values as well.
7025 * src/lalr.c (set_goto_map, map_goto):
7026 Prefer "assert (FOO);" to "if (!FOO) abort ();".
7027 * src/nullable.c (nullable_compute, token_definitions_output):
7028 Likewise.
7029 * src/reader.c (packgram, reader): Likewise.
7030 * src/state.c (transitions_to, state_new, state_reduction_find):
7031 Likewise.
7032 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias):
7033 (symbol_pack): Likewise.
7034 * src/tables.c (conflict_row, pack_vector): Likewise.
7035 * src/scan-skel.l (QPUTS): Remove unnecessary parens.
7036 (BASE_QPUTS, "@output ".*\n): Remove unnecessary asserts.
7037 * src/system.h: Don't include <assert.h>.
7038 (assert): New macro.
7039
7040 * doc/bison.texinfo (Prologue, Rules, Actions, Union Decl, Action Decl):
7041 (Destructor Decl, Parser Function, Pure Calling):
7042 Describe rules for braces inside C code more carefully.
7043
7044 2006-01-19 Paul Eggert <eggert@cs.ucla.edu>
7045
7046 Fix some porting glitches found by Nelson H. F. Beebe.
7047 * lib/abitset.c (abitset_resize): Rewrite to avoid warnings from
7048 compilers that don't understand that abort () does not return.
7049 * src/state.c (transitions_to): Likewise.
7050 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
7051 that '#include <cstdlib>' works.
7052 * src/system.h (INT8_MIN, INT16_MIN, INT32_MIN, INT8_MAX):
7053 (INT16_MAX, UINT8_MAX, INT32_MAX, UINT16_MAX, UINT32_MAX):
7054 #undef if ! defined __STDC_VERSION__ || __STDC_VERSION__ < 199901,
7055 for the benefit of some pre-C99 compilers.
7056
7057 * bootstrap: Undo changes to gnulib files that autoreconf made.
7058
7059 Minor fixups to get 'make maintainer-check' to work.
7060 * configure.ac: Don't use -Wnested-externs, as it's incompatible
7061 with the new verify.h implementation.
7062 * data/c.m4 (b4_yy_symbol_print_generate): YYUSE (yyoutput).
7063 * data/glr.c (YYUSE): Depend on __GNUC__ as well.
7064 * data/yacc.c (YYUSE): Likewise.
7065 * data/lalr1.cc (yysyntax_error_): YYUSE (yystate).
7066 * lib/subpipe.c (end_of_output_subpipe): The args are unused.
7067 * src/parse-gram.y (declaration): Don't pass a string constant
7068 to a function that expects char *, since GCC might complain
7069 about the constant value.
7070 * src/reader.c (symbol_typed_p): Add parens to pacify GCC.
7071 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): #undef yylloc and yylval
7072 before #defining them.
7073 * tests/glr-regression.at
7074 (Incorrectly initialized location for empty right-hand side in GLR):
7075 In yyerror, use the msg arg.
7076 (Corrupted semantic options if user action cuts parse):
7077 (Incorrect lookahead during deterministic GLR):
7078 (Incorrect lookahead during nondeterministic GLR):
7079 Don't name a local var 'index'; it shadows string.h's 'index'.
7080
7081 2006-01-19 Akim Demaille <akim@epita.fr>
7082
7083 * tests/calc.at (_AT_DATA_CALC_Y): Initialize the whole initial
7084 location, not just parts of it.
7085
7086 2006-01-18 Paul Eggert <eggert@cs.ucla.edu>
7087
7088 * NEWS: Document the fact that multiple %unions are now allowed.
7089 * doc/bison.texinfo (Union Decl): Likewise.
7090 * TODO: This feature is now implemented, so remove it from
7091 the wishlist.
7092
7093 * Makefile.maint: Merge with coreutils Makefile.maint.
7094 (CVS_LIST): Use build-aux version if available.
7095 (VERSION_REGEXP): New macro.
7096 (syntax-check-rules): Add sc_no_if_have_config_h,
7097 sc_prohibit_assert_without_use, sc_require_config_h,
7098 sc_useless_cpp_parens.
7099 (sc_obsolete_symbols): Check for O_NDELAY.
7100 (sc_dd_max_sym_length): Track coreutils.
7101 (sc_unmarked_diagnostics): Look in all files, not just *.c.
7102 (sc_useless_cpp_parens): New rule.
7103 (news-date-check): Look for version or today's date.
7104 (changelog-check): Don't require version number near head.
7105 (copyright-check): Use current year instead of hardwiring 2005.
7106 (my-distcheck): Depend on $(release_archive_dir)/$(prev-tgz).
7107 (announcement): Add --gpg-key-ID.
7108
7109 * djgpp/config.sed: Add copyright notice, and replace "filesystem"
7110 with "file system".
7111
7112 Avoid undefined behavior that addressed just before the start of an
7113 array. Problem reported by twlevo.
7114 * src/reader.c (packgram): Prepend a new sentinel before ritem.
7115 * src/lalr.c (build_relations): Rely on new sentinel.
7116 * src/gram.c (gram_free): Adjust to new sentinel.
7117
7118 2006-01-12 Joel E. Denny <jdenny@ces.clemson.edu>
7119
7120 * data/glr.c (yyGLRStateSet): Rename yylookaheadStatuses to
7121 yylookaheadNeeds. All uses updated.
7122 (yysplitStack): Rename local yynewLookaheadStatuses to
7123 yynewLookaheadNeeds.
7124 * data/glr-regression.at (Incorrect lookahead during nondeterministic
7125 GLR): In comments, change `lookahead status' to `lookahead need'.
7126
7127 2006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
7128
7129 * data/glr.c (yysplitStack): A little stylistic rewrite.
7130
7131 2006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
7132
7133 * data/glr.c (yyaddDeferredAction): Flesh out the comment.
7134
7135 2006-01-11 Joel E. Denny <jdenny@ces.clemson.edu>
7136
7137 * doc/bison.texinfo: Fix some typos.
7138 (GLR Semantic Actions): New subsection discussing special
7139 considerations because GLR semantic actions might be deferred.
7140 (Actions): Mention look-ahead usage of yylval.
7141 (Actions and Locations): Mention look-ahead usage of yylloc.
7142 (Special Features for Use in Actions): Add YYEOF entry and mention it
7143 in the yychar entry.
7144 In the yychar entry, remove mention of the local yychar case (pure
7145 parser) since this is irrelevant information when writing semantic
7146 actions and since it's already discussed in `Table of Symbols' where
7147 yychar is otherwise described as an external variable.
7148 In the yychar entry, don't call it the `current' look-ahead since it
7149 isn't when semantic actions are deferred.
7150 In the yychar and yyclearin entries, add note about deferred semantic
7151 actions.
7152 Add yylloc and yylval entries discussing look-ahead usage.
7153 (Look-Ahead Tokens): When discussing yychar, don't call it the
7154 `current' look-ahead, and do mention yylval and yylloc.
7155 (Error Recovery): Cross-reference `Action Features' when mentioning
7156 yyclearin.
7157 (Table of Symbols): In the yychar entry, don't call it the `current'
7158 look-ahead.
7159 In the yylloc and yylval entries, mention look-ahead usage.
7160
7161 2006-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
7162
7163 * tests/glr-regression.at: Update copyright year to 2006.
7164
7165 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
7166
7167 * data/glr.c (yyGLRStateSet): Add yybool* yylookaheadStatuses member to
7168 use during nondeterministic operation to track which stacks have
7169 actually needed the current lookahead.
7170 (yyinitStateSet, yyfreeStateSet, yyremoveDeletes, yysplitStack):
7171 Allocate, deallocate, resize, and otherwise shuffle space for
7172 yylookaheadStatuses in parallel with yystates member of yyGLRStateSet.
7173 (yysplitStack, yyprocessOneStack, yyparse): Set lookahead status
7174 appropriately during nondeterministic operation.
7175 (yySemanticOption): Add int yyrawchar, YYSTYPE yyval, and YYLTYPE yyloc
7176 members to store the current lookahead to be used by the deferred
7177 user action.
7178 (yyaddDeferredAction): Add size_t yyk parameter specifying the stack
7179 from which the RHS is taken. Set the lookahead members of the new
7180 yySemanticOption according to the lookahead status for stack yyk.
7181 (yyglrShiftDefer, yyglrReduce): Pass yyk parameter on to
7182 yyaddDeferredAction.
7183 (yyresolveAction): Set yychar, yylval, and yylloc to the lookahead
7184 members of yySemanticOption before invoking yyuserAction, and then set
7185 them back to their current values afterward.
7186 (yyparse): Set yychar = YYEMPTY where yytoken = YYEMPTY.
7187 (yyreportAmbiguity): Add /*ARGSUSED*/ to pacify lint.
7188 * tests/glr-regression.at: Remove `.' from the ends of recent test case
7189 titles for consistency.
7190 (Leaked merged semantic value if user action cuts parse): In order to
7191 suppress lint warnings, use arguments in merge function, and assign
7192 char value < 128 in main.
7193 (Incorrect lookahead during deterministic GLR): New test case.
7194 (Incorrect lookahead during nondeterministic GLR): New test case.
7195
7196 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
7197
7198 * data/c.m4 (b4_yy_symbol_print_generate): In yy_symbol_print, accept
7199 !yyvaluep as signal that no semantic value is available to print.
7200 * data/glr.c (yydestroyGLRState): If state is not resolved, don't try
7201 to print a semantic value.
7202
7203 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
7204
7205 * tests/glr-regression.at: For consistency with my newer test cases,
7206 don't thank myself.
7207
7208 2006-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
7209
7210 * data/glr.c (yyresolveValue): When merging semantic options, if at
7211 least one user action succeeds but a later one cuts the parse, then
7212 destroy the semantic value before returning rather than leaking it.
7213 (yyresolveStates): If a user action cuts the parse and thus
7214 yyresolveValue fails, ignore the (unset) semantic value rather than
7215 corrupting the yyGLRState, and empty the semantic options list since
7216 the user actions should have called all necessary destructors.
7217 Simplify code with YYCHK.
7218 * tests/glr-regression.at (Corrupted semantic options if user action
7219 cuts parse): New test case.
7220 (Undesirable destructors if user action cuts parse): New test case.
7221 Before applying any of this patch, this test case never actually failed
7222 for me... but only because the corrupted semantic options usually
7223 masked this bug.
7224 (Leaked merged semantic value if user action cuts parse): New test
7225 case.
7226
7227 2006-01-05 Akim Demaille <akim@epita.fr>
7228
7229 * src/reader.c, src/symlist.h, src/symlist.c: s/mid_rule/midrule/.
7230
7231 2006-01-04 Paul Eggert <eggert@cs.ucla.edu>
7232
7233 * data/c.m4 (b4_c_modern): New macro, with a new provision for
7234 _MSC_VER. Problem reported by Cenzato Marco.
7235 (b4_c_function_def): Use it.
7236 * data/yacc.c (YYMODERN_C): Remove. All uses replaced by
7237 b4_c_modern.
7238 (yystrlen, yystpcpy, yyparse): Use b4_c_function... macros rather
7239 than rolling our own.
7240
7241 2006-01-04 Akim Demaille <akim@epita.fr>
7242
7243 Also warn about non-used mid-rule values.
7244 * src/symlist.h, src/symlist.c (symbol_list): Add a mid_rule
7245 member.
7246 (symbol_list_new): Adjust.
7247 * src/reader.c (symbol_typed_p): New.
7248 (grammar_rule_check): Use it.
7249 (grammar_midrule_action): Bind a mid-rule LHS to its rule.
7250 Check its rule.
7251 * tests/input.at (AT_CHECK_UNUSED_VALUES): New.
7252 Use it.
7253 * tests/actions.at (Exotic Dollars): Adjust.
7254
7255 2006-01-04 Akim Demaille <akim@epita.fr>
7256
7257 * src/reader.c (grammar_midrule_action): If $$ is set in a
7258 mid-rule, move the `used' bit to its lhs.
7259 * tests/input.at (Unused values): New.
7260 * tests/actions.at (Exotic Dollars): Adjust: exp is not typed.
7261
7262 2006-01-03 Paul Eggert <eggert@cs.ucla.edu>
7263
7264 * doc/bison.texinfo (Bison Options): Say more accurately what
7265 --yacc does.
7266 * src/parse-gram.y (rules_or_grammar_declaration): Don't complain
7267 about declarations in the grammar when in Yacc mode, as POSIX does
7268 not require a diagnostic when the grammar uses extensions.
7269
7270 * src/reduce.c (reduce_grammar): Remove unnecessary cast to bool.
7271
7272 Warn about dubious constructions like "%token T T".
7273 Reported by twlevo.
7274 * src/symtab.h (struct symbol.declared): New member.
7275 * src/symtab.c (symbol_new): Initialize it to false.
7276 (symbol_class_set): New arg DECLARING, specifying whether
7277 this is a declaration that we want to warn about, if there
7278 is more than one of them. All uses changed.
7279
7280 * data/glr.c, data/glr.cc, data/lalr1.cc, data/yacc.c:
7281 Allow multiple %union directives, whose contents concatenate.
7282 * src/parse-gram.y (grammar_declaration): Likewise.
7283 Use muscle_code_grow, so that we don't need stype_line any more.
7284 All uses changed.
7285
7286 * src/muscle_tab.c (muscle_grow): Fix comment.
7287
7288 * ChangeLog, data/c.m4, data/glr.c, data/glr.cc, data/location.cc:
7289 * data/yacc.c, src/getargs.c, src/output.c, tests/cxx-type.at:
7290 Update copyright year to 2006.
7291
7292 2006-01-03 Akim Demaille <akim@epita.fr>
7293
7294 Have glr.cc pass (some of) the calc.at tests.
7295 * data/glr.cc (b4_parse_param_orig): New.
7296 (b4_parse_param): Improve its definition, and bound it more
7297 clearly in the skeleton.
7298 (b4_epilogue): Append, instead of prepending, in order to keep
7299 #line consistency.
7300 Simplify the generation of auxiliary functions: locations and
7301 purity are mandated.
7302 (b4_global_tokens_and_yystype): Honor it.
7303 * data/location.cc (c++.m4): Don't include it.
7304 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Define AT_GLR_CC_IF
7305 and AT_SKEL_CC_IF.
7306 * tests/calc.at (AT_CHECK_CALC): Rely on AT_SKEL_CC_IF instead of
7307 AT_LALR1_CC_IF.
7308 Be sure to initialize the first position's filename.
7309 (AT_CHECK_CALC_LALR1_CC): Add %location and %defines, they are
7310 mandated anyway.
7311 (AT_CHECK_CALC_GLR_CC): New.
7312 Use it to exercise glr.cc as a lalr1.cc drop-in replacement.
7313
7314 2006-01-02 Akim Demaille <akim@epita.fr>
7315
7316 * src/output.c (output_skeleton): Don't hard wire the inclusion of
7317 c.m4.
7318 * data/c++.m4, data/glr.c, data/yacc.c: Include c.m4.
7319 * data/glr.cc: Do not include stack.hh.
7320
7321 2006-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
7322
7323 * data/glr.c: Reformat whitespace with tabs.
7324 (b4_lpure_formals): Remove this unused m4 macro.
7325 * tests/cxx-type.at: Reformat whitespace with tabs.
7326 (_AT_TEST_GLR_CXXTYPES): In union Node, rename node_info to nodeInfo
7327 since it's a member. Rename type to isNterm for clarity.
7328
7329 2005-12-29 Akim <akim@sulaco.local>
7330
7331 Let glr.cc catch up with symbol_value_print.
7332 * data/glr.cc (b4_yysymprint_generate): Replace by...
7333 (b4_yy_symbol_print_generate): this.
7334 (yy_symbol_print, yy_symbol_value_print): Declare them.
7335
7336 2005-12-28 Paul Eggert <eggert@cs.ucla.edu>
7337
7338 * src/location.h (boundary): Note that a line or column equal
7339 to INT_MAX indicates an overflow.
7340 * src/scan-gram.l: Include verify.h. Don't include get-errno.h.
7341 (rule_length_overflow, increment_rule_length, add_column_width):
7342 New functions.
7343 (<INITIAL>{id}, <SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'"):
7344 (<SC_BRACED_CODE>"}"):
7345 Use increment_rule_length rather than incrementing it by hand.
7346 (adjust_location, handle_syncline): Diagnose overflow.
7347 (handle_action_dollar, handle_action_at):
7348 Fix bug with monstrosities like $-2147483648.
7349 Remove now-unnecessary checks.
7350 (scan_integer): Verify assumptions and remove now-unnecessary checks.
7351 (convert_ucn_to_byte): Verify assumptions.
7352 (handle_syncline): New arg LOC. All callers changed.
7353 Don't store through a value derived from char const * pointer.
7354
7355 * src/reader.c (grammar_rule_check): Rewrite slightly to avoid
7356 GCC warnings.
7357
7358 2005-12-27 Paul Eggert <eggert@cs.ucla.edu>
7359
7360 * src/reader.c (grammar_midrule_action, grammar_symbol_append):
7361 Remove unnecessary forward static decls.
7362
7363 2005-12-27 Akim Demaille <akim@epita.fr>
7364
7365 * src/reader.c (grammar_current_rule_check): Also check that $$
7366 is used.
7367 Take the rule to check as argument, hence rename as...
7368 (grammar_rule_check): this.
7369 * src/reader.h, src/reader.c (grammar_rule_begin, grammar_rule_end):
7370 Rename as...
7371 (grammar_rule_begin, grammar_rule_end): these, for consistency.
7372 (grammar_midrule_action, grammar_symbol_append): Now static.
7373 * tests/torture.at (input): Don't rely on the default action
7374 being always performed.
7375 * tests/calc.at: "Set" $$ even when the action is "cut" with
7376 YYERROR or other.
7377 * tests/actions.at (Exotic Dollars): Instead of using unused
7378 values, check that the warning is issued.
7379
7380 2005-12-22 Paul Eggert <eggert@cs.ucla.edu>
7381
7382 * NEWS: Improve wording for unused-value warnings.
7383
7384 2005-12-22 Akim Demaille <akim@epita.fr>
7385
7386 * data/lalr1.cc, data/yacc.c, data/glr.c, data/c.m4
7387 (b4_yysymprint_generate): Rename as...
7388 (b4_yy_symbol_print_generate): this.
7389 Generate yy_symbol_print instead of yysymprint.
7390 Generate also yy_symbol_value_print, and use it.
7391
7392 2005-12-22 Akim Demaille <akim@epita.fr>
7393
7394 * NEWS: Warn about unused values.
7395 * src/symlist.h, src/symlist.c (symbol_list, symbol_list_new): Add
7396 a `used' member.
7397 (symbol_list_n_get, symbol_list_n_used_set): New.
7398 (symbol_list_n_type_name_get): Use symbol_list_n_get.
7399 * src/scan-gram.l (handle_action_dollar): Flag used symbols.
7400 * src/reader.c (grammar_current_rule_check): Check that values are
7401 used.
7402 * src/symtab.c (symbol_print): Accept 0.
7403 * tests/existing.at: Remove the type information.
7404 Empty the actions.
7405 Remove useless actions (beware of mid-rule actions: perl -000
7406 -pi -e 's/\s*\{\}(?=[\n\s]*[|;])//g').
7407 * tests/actions.at (Exotic Dollars): Use unused values.
7408 * tests/calc.at: Likewise.
7409 * tests/glr-regression.at (No users destructors if stack 0 deleted):
7410 Likewise.
7411
7412 * src/gram.c (rule_useful_p, rule_never_reduced_p): Use
7413 rule_useful_p.
7414
7415 2005-12-21 Paul Eggert <eggert@cs.ucla.edu>
7416
7417 Undo 2005-12-01 tentative license wording change. The wording is
7418 still being reviewed by the lawyers, and we don't want to wait for
7419 them before publishing a test release. For now, revert to the
7420 previous wording.
7421 * NEWS: Undo 2005-12-01 change.
7422 * data/glr.c: Revert to previous license wording.
7423 * data/glr.cc: Likewise.
7424 * data/lalr1.cc: Likewise.
7425 * data/location.cc: Likewise.
7426 * data/yacc.c: Likewise.
7427
7428 * NEWS: Reword %destructor vs YYABORT etc.
7429 * data/glr.c: Use American spacing, for consistency.
7430 * data/glr.cc: Likewise.
7431 * data/lalr1.cc: Likewise.
7432 * data/yacc.c: Likewise.
7433 * data/yacc.c: Reformat comments slightly.
7434 * doc/bison.texinfo: Replace "non-" with "non" when that makes sense,
7435 for consistency. Fix some spelling errors and reword recently-included
7436 text slightly.
7437 * tests/cxx-type.at: Cast results of malloc, for C++.
7438
7439 2005-12-21 Joel E. Denny <address@hidden>
7440
7441 * tests/cxx-type.at: Construct a tree, count the parents of shared
7442 nodes, and free each node once and only once. Previously, the memory
7443 for semantic values was leaked instead.
7444
7445 2005-12-21 Joel E. Denny <address@hidden>
7446
7447 * data/glr.c (struct yyGLRStack): If pure, add yyval and yyloc members.
7448 (yylval, yylloc): If pure, #define to yystackp->yyval and
7449 yystackp->yyloc similar to yychar and yynerrs.
7450 (yyparse): If pure, remove local yylval and yylloc. Add local
7451 yystackp to accommodate pure definitions of yylval and yylloc.
7452 (b4_lex_param, b4_lyyerror_args, b4_lpure_args): If pure, change
7453 yylvalp and yyllocp to &yylval and &yylloc.
7454 (nerrs, char, lval, lloc): If pure, add #define's for b4_prefix[]
7455 namespace. Previously, nerrs and char were missing, but lval and lloc
7456 weren't necessary.
7457 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Remove
7458 yylvalp and yyllocp parameters since, if pure, these are now always
7459 accessible through yystackp. If not pure, they are still accessible
7460 globally.
7461 * data/glr.c, data/yacc.c (YYLLOC_DEFAULT): Change `if (N)' to
7462 `if (YYID (N))' to pacify lint.
7463
7464 2005-12-21 Akim Demaille <akim@epita.fr>
7465
7466 YYACCEPT, YYERROR, and YYABORT, as user actions, should not
7467 destroy the RHS symbols of a rule.
7468 * data/yacc.c (yylen): Initialize to 0.
7469 Keep its value to the number of items to possibly shift.
7470 In particular, a regular successful parse that ends on YYFINAL by
7471 a (internal) YYACCEPT must not have yylen != 0.
7472 (yyerrorlab, yyreturn): Pop the RHS.
7473 Reorder a bit to emphasize the `shifting' bits of code.
7474 (YYPOPSTACK): Now accept a number of items to pop.
7475 * data/lalr1.cc: Likewise.
7476 * data/glr.c: Formatting changes.
7477 Use goto instead of fall through.
7478 * doc/bison.texinfo (Destructor Decl): Complete.
7479
7480 2005-12-20 Juan Manuel Guerrero <juan.guerrero@gmx.de>
7481
7482 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
7483 * djgpp/Makefile.maint: Fix PACKAGE variable computation.
7484 * djgpp/config.bat: Replace every occurence of the file name
7485 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
7486 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
7487 * djgpp/config.sed: Replace every occurence of the file name
7488 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
7489 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
7490 * djgpp/djunpack.bat: DJGPP specific file.
7491 * djgpp/fnchange.lst: DJGPP specific file.
7492 * djgpp/README.in: Add new information about how to unpack the bison
7493 source on MSDOS and other systems which have 8.3 file name restrictions
7494 using djunpack.bat and fnchange.lst.
7495
7496 2005-12-12 Paul Eggert <eggert@cs.ucla.edu>
7497
7498 * bootstrap (build_cvs_prefix): Remove; unused.
7499 (CVS_PREFIX): Adjust to yesterday's Savannah reorganization
7500 when getting gnulib.
7501
7502 2005-12-12 "Joel E. Denny" <jdenny@ces.clemson.edu>
7503
7504 * data/glr.c: Reorder typedef declarations for structs to match order
7505 of struct declarations.
7506 Rename yystack everywhere to yystackp except in yyparse where it's not
7507 a pointer.
7508 (yyglrShift): Change parameter YYSTYPE yysval to YYSTYPE* yyvalp for
7509 consistency.
7510 (yyis_table_ninf): Change 0 to YYID (0) to pacify lint.
7511 (yyreportSyntaxError): Add /*ARGSUSED*/ to pacify lint.
7512 (yyparse): Change while (yytrue) to while ( YYID (yytrue)) to pacify
7513 lint.
7514
7515 2005-12-09 Paul Eggert <eggert@cs.ucla.edu>
7516
7517 * tests/sets.at (Accept): Fix typos in regular expression used to
7518 sed out the final state number.
7519
7520 Work around portability problem on Solaris 10: flex-generated
7521 files include <stdio.h> before <config.h>, which messes up
7522 because the latter defines __EXTENSIONS__. Address the problem
7523 by creating two new little files that include <config.h> first,
7524 then include the flex-generated files. Rewrite everyone else
7525 to include <config.h> first, as well.
7526 * lib/timevar.c: Always include "config.h".
7527 * src/Makefile.am (bison_SOURCES): Replace scan-gram.l with
7528 scan-gram-c.c, and scan-skel.l with scan-skel-c.c.
7529 (EXTRA_bison_SOURCES): New macro.
7530 * src/scan-gram-c.c, src/scan-skel-c.c: New files.
7531 * src/system.h: Don't include config.h.
7532 * src/LR0.c: Include <config.h> first.
7533 * src/assoc.c: Likewise.
7534 * src/closure.c: Likewise.
7535 * src/complain.c: Likewise.
7536 * src/conflicts.c: Likewise.
7537 * src/derives.c: Likewise.
7538 * src/files.c: Likewise.
7539 * src/getargs.c: Likewise.
7540 * src/gram.c: Likewise.
7541 * src/lalr.c: Likewise.
7542 * src/location.c: Likewise.
7543 * src/main.c: Likewise.
7544 * src/muscle_tab.c: Likewise.
7545 * src/nullable.c: Likewise.
7546 * src/output.c: Likewise.
7547 * src/parse-gram.y: Likewise.
7548 * src/print.c: Likewise.
7549 * src/print_graph.c: Likewise.
7550 * src/reader.c: Likewise.
7551 * src/reduce.c: Likewise.
7552 * src/relation.c: Likewise.
7553 * src/state.c: Likewise.
7554 * src/symlist.c: Likewise.
7555 * src/symtab.c: Likewise.
7556 * src/tables.c: Likewise.
7557 * src/uniqstr.c: Likewise.
7558 * src/vcg.c: Likewise.
7559
7560 * src/parse-gram.y: Fix minor problems uncovered by lint.
7561 (current_lhs, current_lhs_location): Now static.
7562 (current_assoc): Remove unused variable.
7563
7564 Cleanups so that Bison-generated parsers have less lint.
7565 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate):
7566 Prepend /*ARGSUSED*/, for lint's sake.
7567 * data/glr.c (YYUSE): Properly parenthesize, and use an alternate
7568 definition if 'lint' is defined.
7569 (YYID): New macro (or function, if lint).
7570 All uses of /*CONSTCOND*/0 replaced by YYID(0).
7571 * data/yacc.c: Likewise.
7572 * data/glr.c (yyuserAction, yyuserMerge, yy_reduce_print):
7573 (yyrecoverSyntaxError): Prepend /*ARGSUSED*/.
7574 * data/glr.cc (YYLLOC_DEFAULT): Omit /*CONSTCOND*/ since this code
7575 is C++ only.
7576 * data/lalr1.cc (YYUSE): Just use a cast, since this code is C++ only.
7577 * data/yacc.c (YYSTACK_FREE) [defined YYSTACK_ALLOC]:
7578 Use YYID(0) rather than 0, for lint.
7579 (yystrlen): Rewrite to avoid lint warning about ptrdiff_t overflow.
7580 (yysyntax_error): Rewrite to avoid lint warnings about parenthesization.
7581
7582 2005-12-07 Paul Eggert <eggert@cs.ucla.edu>
7583
7584 * tests/glr-regression.at
7585 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
7586 Close memory leak reported by twlevo.
7587
7588 2005-12-06 "Joel E. Denny" <jdenny@ces.clemson.edu>
7589
7590 * data/glr.c (yyprocessOneStack, yyparse): Synchronize the shift for
7591 all stacks.
7592 (yyparse): Iterate another stack in order to call user destructors.
7593 * tests/glr-regression.at (No users destructors if stack 0 deleted):
7594 New test case.
7595 (Duplicated user destructor for lookahead): This test now is expected
7596 to succeed.
7597
7598 2005-12-01 Paul Eggert <eggert@cs.ucla.edu>
7599
7600 * NEWS: Document the following change.
7601 * data/yacc.c: Say "parser skeleton" rather than "file", since
7602 it's no longer just a file.
7603 * data/glr.c: Grant a special exception for C GLR parsers, that
7604 reads like the already-existing exception for C LALR(1) parsers.
7605 * data/glr.cc: Likewise.
7606 * data/lalr1.cc: Likewise.
7607 * data/location.cc: Likewise.
7608 * data/yacc.c: Reword the "written by" statement to clarify that
7609 it was the parser skeleton, not the entire output file.
7610 * data/glr.c: Written by Paul Hilfinger.
7611 * data/glr.cc: Written by Akim Demaille.
7612 * data/lalr1.cc: Likewise.
7613
7614 2005-11-18 Paul Eggert <eggert@cs.ucla.edu>
7615
7616 * data/yacc.c (yy_reduce_print, YY_REDUCE_PRINT):
7617 Fix typos in previous change that broke 'make check'.
7618 YY_REDUCE_PRINT cannot be a pseudo-varargs macro; that isn't
7619 supported in C.
7620 * tests/calc.at (_AT_CHECK_CALC,_AT_CHECK_CALC_ERROR):
7621 Don't check NUM-STDERR-LINES, since the output format is fluctuating.
7622 We can revert this once things settle down.
7623
7624 * src/conflicts.c (conflicts_print): Don't print file name twice
7625 when %expect fails because there were no conflicts.
7626 * doc/bison.texinfo (Expect Decl): Tighten up wording in previous
7627 change.
7628 * tests/conflicts.at (%expect not enough, %expect too much):
7629 (%expect with reduce conflicts): Adjust to new behavior.
7630
7631 2005-11-18 Akim Demaille <akim@epita.fr>
7632
7633 * src/conflicts.c (conflicts_print): Unsatisfied %expectation are
7634 errors.
7635 * NEWS: Document this.
7636 * doc/bison.texinfo (Expect Decl): Likewise.
7637
7638 2005-11-16 Akim Demaille <akim@epita.fr>
7639
7640 Generalize the display of semantic values and locations in traces.
7641 * data/glr.c (yy_reduce_print): Fix indices (again).
7642 * data/c++.m4 (b4_rhs_value, b4_rhs_location): Don't expect
7643 literal integers.
7644 * data/lalr1.cc (yyreduce_print): Rename as...
7645 (yy_reduce_print): this.
7646 Display values and locations.
7647 * data/yacc.c (yy_reduce_print): Likewise.
7648 (YY_REDUCE_PRINT): Adjust to pass the required arguments.
7649 (yysymprint): Move higher to be visible from yy_reduce_print).
7650 (yyparse): Adjust.
7651 * tests/calc.at: Adjust the expected length of the traces.
7652
7653 2005-11-14 Akim Demaille <akim@epita.fr>
7654
7655 * data/glr.c (yy_reduce_print): The loop was quite wrong: type are
7656 from 1 to N, while values and location start at 0.
7657 (b4_rhs_location, b4_rhs_value): Add parens around $1 and $2.
7658
7659 2005-11-14 Akim Demaille <akim@epita.fr>
7660
7661 * data/glr.c (yy_reduce_print): Fix the $ number.
7662
7663 2005-11-14 Akim Demaille <akim@epita.fr>
7664
7665 "Use" parse parameters.
7666 * data/c.m4 (b4_parse_param_for, b4_parse_param_use): New.
7667 * data/glr.c, data/glr.cc: Use them.
7668 * data/glr.c (YYUSE): Have a C++ definition that supports
7669 non-pointer types.
7670
7671 2005-11-14 Akim Demaille <akim@epita.fr>
7672
7673 * data/glr.c (yyexpandGLRStack): Declare only if defined.
7674
7675 2005-11-14 Akim Demaille <akim@epita.fr>
7676
7677 * data/glr.cc: New.
7678 * data/m4sugar/m4sugar.m4 (m4_prepend): New.
7679
7680 2005-11-12 Akim Demaille <akim@epita.fr>
7681
7682 Let position and location be PODs.
7683 * data/location.cc (position::initialize, location::initialize): New.
7684 (position::position, location::location): Define only if
7685 b4_location_constructors is defined.
7686 * data/lalr1.cc (b4_location_constructors): Define it for backward
7687 compatibility.
7688 * doc/bison.texinfo (Initial Action Decl): Use initialize.
7689
7690 2005-11-12 Akim Demaille <akim@epita.fr>
7691
7692 * data/lalr1.cc: Move the body of the ctor and dtor into the
7693 parser file (instead of the header).
7694 Wrap the implementations in a "namespace yy".
7695
7696 2005-11-12 Akim Demaille <akim@epita.fr>
7697
7698 Have glr.c include its header file when created.
7699 * data/glr.c (b4_shared_declarations): New.
7700 Output them verbatim in the parser if !%defines, otherwise
7701 output then in the header file, and include it instead.
7702
7703 2005-11-11 Akim Demaille <akim@epita.fr>
7704
7705 * data/glr.c: Comment changes.
7706
7707 2005-11-11 Akim Demaille <akim@epita.fr>
7708
7709 When yydebug, report semantic and location values for reductions.
7710 * data/glr.c (yy_reduce_print): Report the semantic values and the
7711 locations.
7712 (YY_REDUCE_PRINT): Adjust.
7713 (yyglrReduce): Use them.
7714 (b4_rhs_value, b4_rhs_location): Remove m4_eval invocations.
7715 * data/c.m4 (b4_yysymprint_generate): Specify the const arguments.
7716 * tests/calc.at (_AT_CHECK_CALC_ERROR): Remove the reduction
7717 traces.
7718
7719 2005-11-10 Akim Demaille <akim@epita.fr>
7720
7721 * data/glr.c (yynewGLRStackItem, YY_RESERVE_GLRSTACK): New.
7722 (yyaddDeferredAction, yyglrShift, yyglrShiftDefer): Use them.
7723 (yyexpandGLRStack, YYRELOC): Define only when YYSTACKEXPANDABLE.
7724
7725 2005-11-09 Albert Chin-A-Young <china@thewrittenword.com>
7726
7727 * m4/cxx.m4, examples/Makefile.am: Don't build
7728 examples/calc++ if no C++ compiler is available. (trivial change)
7729
7730 2005-11-09 Akim Demaille <akim@epita.fr>
7731
7732 * src/scan-skel.l: Use a couple of asserts.
7733
7734 2005-11-03 Akim Demaille <akim@epita.fr>
7735
7736 In some (weird) cases, the final state number is incorrect.
7737 Reported by Alexandre Duret-Lutz.
7738 * src/LR0.c (state_list_append): Remove the computation of
7739 final_state.
7740 (save_reductions): Do it here.
7741 (get_state): Alpha conversion.
7742 (generate_states): Use a for loop.
7743 * src/gram.h (item_number_is_rule_number)
7744 (item_number_is_symbol_number): New.
7745 * src/state.c: Use assert.
7746 * src/system.h: Include assert.h.
7747 * tests/sets.at (Accept): New.
7748
7749 2005-10-30 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
7750
7751 * data/glr.c (yyfill): Adjust comment.
7752 (yyresolveAction): Initialize default location properly
7753 for empty right-hand sides.
7754 (yydoAction): Ditto.
7755 Add comment explaining apparently dead code.
7756 * tests/glr-regression.at
7757 (Incorrectly initialized location for empty right-hand side in GLR):
7758 New test.
7759
7760 2005-10-30 Paul Eggert <eggert@cs.ucla.edu>
7761
7762 * bootstrap (cleanup_gnulib): New function. Use it to clean up
7763 gnulib when interrupted. This fixes some race conditions and
7764 works around some portability problems (one noted by Paul
7765 Hilfinger).
7766
7767 2005-10-22 Akim <akim@epita.fr>
7768
7769 * Makefile.cfg: Adjust to config -> build-aux.
7770 Reported by twledo.
7771
7772 2005-10-21 Akim Demaille <akim@epita.fr>
7773
7774 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Pass
7775 the %parse-params.
7776 * data/glr.c (YY_SYMBOL_PRINT, yydestroyGLRState): Adjust.
7777 * data/yacc.c (b4_Pure_if): Rename as...
7778 (b4_yacc_pure_if): this.
7779 (YY_SYMBOL_PRINT, yyparse): Adjust.
7780 * doc/bison.texinfo: Formatting changes.
7781
7782 2005-10-21 Akim Demaille <akim@epita.fr>
7783
7784 Finish the transition config -> build-aux.
7785 * configure.ac, Makefile.am: Use build-aux.
7786 * config/prev-version, config/announce-gen, config/Makefile.am:
7787 Move to...
7788 * build-aux/prev-version, build-aux/announce-gen,
7789 * build-aux/Makefile.am: here.
7790
7791 2005-10-14 Akim Demaille <akim@epita.fr>
7792
7793 * examples/calc++/test: Use set -x only when VERBOSE.
7794
7795 2005-10-13 Paul Eggert <eggert@cs.ucla.edu>
7796
7797 * NEWS: Bison now warns if it finds a stray `$' or `@' in an action.
7798 * src/scan-gram.l (<SC_BRACED_CODE>[$@]): Implement this.
7799
7800 2005-10-13 Akim Demaille <akim@epita.fr>
7801
7802 * src/scan-skel.l: Output the base name parts of the parser and
7803 header file names.
7804 * tests/output.at (AT_CHECK_OUTPUT): Support subdirectories, and
7805 additional checks.
7806 Use this to exercise C++ outputs in subdirs.
7807 Reported by Oleg Smolsky.
7808
7809 2005-10-12 Paul Eggert <eggert@cs.ucla.edu>
7810
7811 * data/c.m4 (b4_c_function_def): Look at __C99_FUNC__, not at
7812 __STDC_VERSION__, as IBM cc 7.0 doesn't define the latter either.
7813 Problem reported by John P. Hartmann.
7814 * data/yacc.c (YYMODERN_C): Likewise. Don't define if the user has
7815 already defined it.
7816
7817 2005-10-12 Akim Demaille <akim@epita.fr>
7818
7819 * src/parse-gram.y (version_check): Exit 63 to please missing
7820 (stands for "version mismatch).
7821 * tests/input.at, doc/bison.texinfo: Adjust.
7822
7823 2005-10-10 Paul Eggert <eggert@cs.ucla.edu>
7824
7825 Work around portability problems with Visual Age C compiler
7826 (xlc and xlC_r) reported by John P. Hartmann.
7827 * data/location.cc (initial_column, initial_line): Remove.
7828 All uses replaced by 0 and 1.
7829 * src/scan-gram.l (gram_wrap): Redefine to avoid bug in flex 2.5.31
7830 that xlc complains about.
7831 * src/scan-skel.l (skel_wrap): Likewise.
7832 * data/c.m4 (b4_c_function_def): Look at __STDC_VERSION__ as well
7833 as __STDC__.
7834 * data/yacc.c (YYMODERN_C): New macro, which also looks at
7835 __STDC_VERSION__. Use it everywhere instead of looking at
7836 __STDC__ and __cplusplus.
7837
7838 2005-10-10 Akim Demaille <akim@epita.fr>
7839
7840 * examples/calc++/test: Be quiet unless VERBOSE.
7841
7842 2005-10-05 Paul Eggert <eggert@cs.ucla.edu>
7843
7844 * data/c.m4 (yydestruct, yysymprint):
7845 Use YYUSE instead of casting to void.
7846 * data/glr.c (YYUSE): New macro.
7847 (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
7848 Use it instead of rolling our own.
7849 (YYLLOC_DEFAULT, YYCHK, YYDPRINTF, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
7850 (YYCHK1):
7851 Use /*CONSTCOND*/ to suppress lint warnings.
7852 * data/lalr1.cc (YYLLOC_DEFAULT, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
7853 (YY_STACK_PRINT): Use 'false' not '0'.
7854 (YYUSE): New macro.
7855 (yysymprint_, yydestruct_): Use it instead of rolling our own.
7856 * data/yacc.c (YYUSE): New macro.
7857 (YYCOPY, YYSTACK_RELOCATE, YYBACKUP, YYLLOC_DEFAULT):
7858 (YYDPRINTF, YY_SYMBOL_PRINT, YY_STACK_PRINT, YY_REDUCE_PRINT):
7859 (yyerrorlab): Use /*CONSTCOND*/ to suppress lint warnings.
7860
7861
7862 * data/m4sugar/m4sugar.m4 (_m4_map): New macro.
7863 (m4_map, m4_map_sep): Use it. Handle the empty list correctly.
7864
7865 2005-10-04 Paul Eggert <eggert@cs.ucla.edu>
7866
7867 Undo the parts of the unlocked-I/O change that substituted
7868 putc or puts for printf. This might hurt performance a bit,
7869 but some people prefer the printf style.
7870 * data/c.m4 (yysymprint): Prefer printf to puts and putc.
7871 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): Remove.
7872 All uses replaced by YYFPRINTF and YYDPRINTF.
7873 * data/yacc.c: Likewise.
7874 * lib/bitset.c (bitset_print): Likewise.
7875 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer printf to
7876 putc and puts.
7877 * lib/lbitset.c (debug_lbitset): Likewise.
7878 * src/closure.c (print_firsts, print_fderives): Likewise.
7879 * src/gram.c (grammar_dump): Likewise.
7880 * src/lalr.c (look_ahead_tokens_print): Likewise.
7881 * src/output.c (escaped_output): Likewise.
7882 (user_actions_output): Break apart two printfs.
7883 * src/parse-gram.y (%printer): Prefer printf to putc and puts.
7884 * src/reduce.c (reduce_print): Likewise.
7885 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
7886 * src/system.h: Include unlocked-io.h rathe than stdio.h.
7887
7888 * data/glr.c (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
7889 Use assignments rather than casts-to-void to suppress
7890 unused-variable warnings. This pacifies 'lint'.
7891 * data/lalr1.cc (yysymprint_, yydestruct_): Use a call to suppress
7892 unused-variable warnings.
7893
7894 2005-10-03 Juan Manuel Guerrero <juan.guerrero@gmx.de>
7895
7896 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
7897
7898 2005-10-02 Paul Eggert <eggert@cs.ucla.edu>
7899
7900 Use unlocked I/O for a minor performance improvement on hosts like
7901 GNU/Linux and Solaris that support unlocked I/O. The basic idea
7902 is to use the gnlib unlocked-io module, and to prefer putc and
7903 puts to printf when either will work (since the latter doesn't
7904 come in an unlocked flavor).
7905 * bootstrap (gnulib_modules): Add unlocked-io.
7906 * data/c.m4 (yysymprint): Prefer puts and putc to printf.
7907 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): New macros.
7908 Prefer them to YYFPRINTF and YYDPRINTF if either will do,
7909 and similarly for puts and putc and printf.
7910 * data/yacc.c: Likewise.
7911 * lib/bitset.c (bitset_print): Likewise.
7912 * lib/bitset.h [USE_UNLOCKED_IO]: Include unlocked-io.h.
7913 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer putc and puts
7914 to printf.
7915 * lib/lbitset.c (debug_lbitset): Likewise.
7916 * src/closure.c (print_firsts, print_fderives): Likewise.
7917 * src/gram.c (grammar_dump): Likewise.
7918 * src/lalr.c (look_ahead_tokens_print): Likewise.
7919 * src/output.c (escaped_output): Likewise.
7920 (user_actions_output): Coalesce two printfs.
7921 * src/parse-gram.y (%printer): Prefer putc and puts to printf.
7922 * src/reduce.c (reduce_print): Likewise.
7923 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
7924 * src/system.h: Include unlocked-io.h rather than stdio.h.
7925
7926 * data/lalr1.cc: Don't put an unmatched ' in a dnl comment, as
7927 this confuses xgettext.
7928
7929 2005-10-02 Akim Demaille <akim@epita.fr>
7930
7931 * bootstrap (gnulib_modules): Add strverscmp.
7932 * lib/.cvsignore: Add strverscmp.c, strverscmp.h.
7933 * m4/.cvsignore: Add strverscmp.m4.
7934 * src/parse-gram.y (%require): New token, new rule.
7935 (version_check): New.
7936 * src/scan-gram.l (%require): Adjust.
7937 * tests/input.at (AT_REQUIRE): New.
7938 Use it.
7939 * doc/bison.texinfo (Require Decl): New.
7940 (Calc++ Parser): Use %require.
7941
7942 2005-10-02 Akim Demaille <akim@epita.fr>
7943
7944 * data/location.cc: New.
7945
7946 2005-10-02 Paul Eggert <eggert@cs.ucla.edu>,
7947 Akim Demaille <akim@epita.fr>
7948
7949 Make sure -odir/foo.cc creates dir/location.hh etc.
7950 * src/files.h (spec_outfile, parser_file_name, spec_name_prefix)
7951 (spec_file_prefix, spec_verbose_file, spec_graph_file)
7952 (spec_defines_file): Now const.
7953 (dir_prefix): New.
7954 (short_base_name): Remove.
7955 * src/files.c: Adjust.
7956 (dirname.h): Include.
7957 (base_name): Don't prototype it.
7958 (finput): Remove, duplicates gram_in.
7959 (full_base_name, short_base_name): Replace by...
7960 (all_but_ext, all_but_tab_ext): these.
7961 (compute_base_names): Rename as...
7962 (compute_file_name_parts): this.
7963 Update to compute the new variables, including dir_prefix.
7964 Adjust dependencies.
7965 * src/output.c (prepare): Output them.
7966 * src/reader.c: Adjust to use gram_in, not finput.
7967 * src/scan-skel.l (@dir_prefix@): New.
7968
7969 2005-10-02 Juan Manuel Guerrero <juan.guerrero@gmx.de>
7970
7971 * lib/subpipe.c: New function end_of_output_subpipe() added
7972 to allow support for non-posix systems. This is a no-op function
7973 for posix systems.
7974
7975 * lib/subpipe.h: New function end_of_output_subpipe() added
7976 to allow support for non-posix systems. This is a no-op function
7977 for posix systems.
7978
7979 * src/output.c (output_skeleton): Use end_of_output_subpipe() to
7980 handle the lack of pipe/fork functionality on non-posix systems.
7981
7982 * djgpp/Makefile.maint: DJGPP specific file.
7983
7984 * djgpp/README.in: DJGPP specific file.
7985
7986 * djgpp/config.bat: DJGPP specific configuration file.
7987
7988 * djgpp/config.sed: DJGPP specific configuration file.
7989
7990 * djgpp/config.site: DJGPP specific configuration file.
7991
7992 * djgpp/config_h.sed: DJGPP specific configuration file.
7993
7994 * djgpp/subpipe.c: DJGPP specific replacement file for lib/subpipe.c.
7995
7996 * djgpp/subpipe.h: DJGPP specific replacement file for lib/subpipe.h.
7997
7998 2005-10-02 Akim Demaille <akim@epita.fr>
7999
8000 * data/location.cc: New, extract from...
8001 * data/lalr1.cc: here.
8002 (location.hh): Include it after the user prologue, in case the
8003 filename type is defined by the user.
8004 Forward declation location and position before the pre-prologue.
8005 (yyresult_): Rename as...
8006 (yyresult): this, it's a local variable, not an attribute.
8007 * data/Makefile.am (dist_pkgdata_DATA): Adjust.
8008
8009 2005-10-01 Akim Demaille <akim@epita.fr>
8010
8011 * examples/extexi: Restore the #line generation.
8012
8013 2005-09-30 Akim Demaille <akim@epita.fr>,
8014 Alexandre Duret-Lutz <adl@gnu.org>
8015
8016 Move the token type and YYSTYPE in the parser class.
8017 * data/lalr1.cc (stack.hh, location.hh): Include earlier.
8018 (parser::token): New, from the moved free definition of tokens.
8019 (parser::semantic_value): Now a full definition instead of an
8020 indirection to YYSTYPE.
8021 (b4_post_prologue): No longer included in the header file, but
8022 in the implementation file.
8023 * doc/bison.texi (C+ Language Interface): Update.
8024 * src/parse-gram.y: Support unary %define.
8025 * tests/actions.at: Define global_tokens_and_yystype for backward
8026 compatibility until we update the tests.
8027 * tests/calc.at: Idem.
8028 (first_line, first_column, last_line, last_column): Define for lalr1.cc
8029 to simplify the code.
8030
8031 2005-09-29 Paul Eggert <eggert@cs.ucla.edu>
8032
8033 Port to SunOS 4.1.4, which lacks strtoul and strerror.
8034 Ah, the good old days! Problem reported by Peter Klein.
8035 * bootstrap (gnulib_modules): Add strerror, strtoul.
8036 * lib/.cvsignore: Add strerror.c, strtol.c, strtoul.c
8037 * m4/.cvsignore: Add strerror.m4, strtol.m4, strtoul.m4.
8038
8039 2005-09-29 Akim Demaille <akim@epita.fr>
8040
8041 * data/c.m4 (b4_error_verbose_if): New.
8042 * data/lalr1.cc: Use it.
8043 (YYERROR_VERBOSE_IF): Remove.
8044 (yyn_, yylen_, yystate_, yynerrs_, yyerrstatus_): Remove as
8045 parser members, replaced by...
8046 (yyn, yylen, yystate, yynerss, yyerrstatus): these parser::parse
8047 local variables.
8048 (yysyntax_error_): Takes the state number as argument.
8049 (yyreduce_print_): Use the argument yyrule, not the former
8050 attribute yyn_.
8051
8052 2005-09-26 Paul Eggert <eggert@cs.ucla.edu>
8053
8054 * bootstrap (gnulib_modules): Add verify.
8055 * lib/.cvsignore: Add verify.h.
8056 * src/getargs.c: Use ARGMATCH_VERIFY rather than verify.
8057 * src/system.h (verify): Remove.
8058 Include verify.h instead.
8059 * src/tables.c (tables_generate): Use new API for 'verify'.
8060
8061 2005-09-21 Paul Eggert <eggert@cs.ucla.edu>
8062
8063 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Do not use
8064 local variables whose names begin with 'yy'.
8065 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
8066 Trivial changes from Joel E. Denny.
8067
8068 * bootstrap (gnulib_modules): Remove alloca. Bison doesn't need
8069 it itself.
8070 * src/main.c (main) [C_ALLOCA]: Don't flush alloca'ed memory; we
8071 don't use alloca any more.
8072
8073 * data/yacc.c [YYSTACK_USE_ALLOCA && !defined __GNUC__ && ! defined
8074 __BUILTIN_VA_ARG_INCR && ! defined _AIX && ! defined _MSC_VER &&
8075 defined _ALLOCA_H]: Don't include <stdlib.h>; not needed in this case.
8076 * tests/torture.at (Exploding the Stack Size with Alloca): Adjust
8077 to match yacc.c, to test more hosts.
8078
8079 2005-09-20 Paul Eggert <eggert@cs.ucla.edu>
8080
8081 * data/yacc.c (YYSIZE_T): Reindent to make it clearer. This
8082 doesn't affect behavior.
8083 (YYSTACK_ALLOC) [YYSTACK_USE_ALLOCA]: Improve support for
8084 Solaris, AIX, MSC.
8085 (_STDLIB_H): Renamed from YYINCLUDED_STDLIB_H. All uses changed.
8086 This works a bit better with glibc, if user code has already included
8087 stdlib.h.
8088 * doc/bison.texinfo (Bison Parser): Document that users can't
8089 arbitrarily use malloc and free for other purposes. Document
8090 that <alloca.h> and <malloc.h> might be included.
8091 (Table of Symbols): Under YYSTACK_USE_ALLOCA, Don't claim that the
8092 user must declare alloca.
8093
8094 * HACKING (release): Forwarn the Translation Project about
8095 stable releses.
8096
8097 2005-09-20 Akim Demaille <akim@epita.fr>
8098
8099 * data/glr.c: Use b4_token_enums, not b4_token_enums_defines.
8100
8101 2005-09-19 Paul Eggert <eggert@cs.ucla.edu>
8102
8103 * data/yacc.c (YYSIZE_MAXIMUM): New macro.
8104 (YYSTACK_ALLOC_MAXIMUM): Use it.
8105 (yysyntax_error): New function.
8106 (yyparse) [YYERROR_VERBOSE]: Don't leak memory indefinitely if
8107 multiple syntax errors are reported, and alloca is being used.
8108 Instead, reallocate buffers twice as big each time, so that
8109 we waste at most half the allocated memory. Start with a small
8110 (128-byte) buffer that will suffice in most cases anyway.
8111 Use yysyntax_error to do most of the work.
8112
8113 * doc/bison.texinfo (Error Reporting, Table of Symbols):
8114 yynerrs is the number of errors reported, not the number of
8115 errors encountered.
8116
8117 * tests/glr-regression.at (Duplicated user destructor for lookahead):
8118 Mark it as expected to fail.
8119 Cast result of malloc; problem reported by twlevo@xs4all.nl.
8120 * tests/actions.at, tests/calc.at, tests/glr-regression.at:
8121 Don't start user-code symbols with "yy", to avoid name space problems.
8122
8123 2005-09-19 Akim Demaille <akim@epita.fr>
8124
8125 Remove the traits, failed experiment.
8126 It never proved useful, and anyway because of the current
8127 definition, it was not possible to have several specialization of
8128 this traits, making it useless.
8129 * data/lalr1.cc (yy:traits): Remove.
8130 Inline its definitions in the parser class.
8131
8132 2005-09-19 Akim Demaille <akim@epita.fr>
8133
8134 * tests/atlocal.in (LIBS): Pass INTLLIBS to address failures on at
8135 least Mac OSX with a /usr/local install of gettext.
8136
8137 2005-09-19 Akim Demaille <akim@epita.fr>
8138
8139 * data/lalr1.cc (yyparse): Rename yylooka and yyilooka as yychar
8140 and yytoken for similarity with the other skeletons.
8141
8142 2005-09-19 Akim Demaille <akim@epita.fr>
8143
8144 * NEWS, configure.ac: update version number to 2.1a.
8145
8146 2005-09-16 Paul Eggert <eggert@cs.ucla.edu>
8147
8148 * NEWS: Version 2.1.
8149
8150 * NEWS: Remove notice of yytname change, since it was never in an
8151 official release.
8152 * data/glr.c (yydestroyGLRState): Rename local var to avoid shadowing
8153 diagnostic.
8154 * src/output.c (prepare): Likewise.
8155 * data/lalr1.cc (YYERROR_VERBOSE_IF): New macro.
8156 (yysyntax_error_): Use it to avoid GCC warning when YYERROR_VERBOSE
8157 is not defined. This is an awful hack, but it's enough for now.
8158 All callers changed.
8159 * tests/glr-regression-at (make_value): Args are const pointers now,
8160 to avoid GCC warning.
8161 (Duplicated user destructor for lookahead): New test. Currently
8162 skipped. It fails on my host but I'm not sure it'll always fail.
8163
8164 2005-09-16 Akim Demaille <akim@epita.fr>
8165
8166 * src/symtab.h (struct symbol): Declare the printer and destructor
8167 as const, to avoid accidental calls to free.
8168 (symbol_destructor_set, symbol_printer_set): Adjust.
8169 * src/symtab.c: Adjust.
8170
8171 2005-09-16 Akim Demaille <akim@epita.fr>
8172
8173 * data/c.m4 (b4_token_enums): New.
8174 (b4_token_defines): Rename as...
8175 (b4_token_enums_defines): this.
8176 (b4_token_defines): New, output only the #defines.
8177 * data/yacc.c, data/glr.c: Adjust.
8178 * data/lalr1.cc: Use b4_token_enums instead of b4_token_enums_defines.
8179 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Define
8180 as default values.
8181
8182 2005-09-16 Akim Demaille <akim@epita.fr>
8183
8184 * data/lalr1.cc (yylex_): Remove, inline its code.
8185 (yyreport_syntax_error_): Remove, replaced by...
8186 (yysyntax_error_): this which returns a string and leaves to the
8187 caller the call to the users' error function.
8188 (yylooka_, yyilooka_, yylval, yylloc, yyerror_range_, yyval, yyloc):
8189 Move from members of the parser object...
8190 (yylooka, yyilooka, yylval, yylloc, yyerror_range, yyval, yyloc):
8191 to local variables of the parse function.
8192
8193 2005-09-16 Akim Demaille <akim@epita.fr>
8194
8195 * doc/bison.texinfo (Calc++ Parser): Don't promote defining YYEOF
8196 since it's in Bison's name space.
8197
8198 2005-09-15 Paul Eggert <eggert@cs.ucla.edu>
8199
8200 * data/glr.c (yyresolveValue): Add default case to pacify
8201 gcc -Wswitch-default. Problem reported by twlevo@xs4all.nl.
8202
8203 * NEWS: Document when yyparse started to return 2.
8204 * doc/bison.texinfo (Parser Function): Document when yyparse
8205 returns 2.
8206
8207 * data/lalr1.cc: Revert part of previous change, as it's incompatible.
8208 (b4_filename_type): Renamed back from b4_file_name_type. All uses
8209 changed.
8210 (class position): file_name -> filename (reverting). All uses changed.
8211
8212 2005-09-14 Paul Eggert <eggert@cs.ucla.edu>
8213
8214 * examples/calc++/Makefile.am ($(calc_sources_generated)): Don't
8215 do anything if $@ exists. This reverts part of the 2005-07-07
8216 patch.
8217
8218 2005-09-11 Paul Eggert <eggert@cs.ucla.edu>
8219
8220 * Makefile.am (EXTRA_DIST): Do not distribute REFERENCES; it
8221 contains obsolete information and isn't worth distributing as a
8222 separate file anyway.
8223 * data/glr.c [defined YYSETJMP]: Don't include <setjmp.h>.
8224 (YYJMP_BUF, YYSETJMP, YYLONGJMP) [!defined YYSETJMP]: New macros.
8225 All uses of jmp_buf, setjmp, longjmp changed to use these instead.
8226 (yyparse): Abort if user code uses longjmp to throw an unexpected
8227 value.
8228
8229 2005-09-09 Paul Eggert <eggert@cs.ucla.edu>
8230
8231 * data/c.m4 (b4_identification): Define YYBISON_VERSION.
8232 Suggested by twlevo@xs4all.nl.
8233
8234 * data/glr.c (YYCHK1): Do not assume YYE is in range.
8235 This avoids a diagnostic from gcc -Wswitch-enum.
8236 Problem reported by twlevo@xs4all.nl.
8237
8238 * doc/bison.texinfo: Don't use "filename", as per GNU coding
8239 standards. Use "file name" or "file" or "name", depending on
8240 the context.
8241 (Invocation): The output of "bison hack/foo.y" goes to foo.tab.c,
8242 not to hack/foo.tab.c.
8243 (Calc++ Top Level): 2nd arg of main is not const.
8244 * data/glr.c: b4_filename -> b4_file_name.
8245 * data/lalr1.cc: Likewise. Also, b4_filename_type -> b4_file_name_type.
8246 All uses changed.
8247 (class position): filename -> file_name. All uses changed.
8248 * data/yacc.c: b4_filename -> b4_file_name.
8249 * lib/bitset.h: filename -> file_name in local vars.
8250 * lib/bitset_stats.c: Likewise.
8251 * src/files.c: Likewise.
8252 * src/scan-skel.l ("@output ".*\n): Likewise.
8253 * src/files.c (file_name_split): Renamed from filename_split.
8254 * src/muscle_tab.c (muscle_init): Output b4_file_name, not b4_filename.
8255
8256 2005-09-08 Paul Eggert <eggert@cs.ucla.edu>
8257
8258 * lib/.cvsignore: Add pipe-safer.c, stdio--.h, unistd--.h,
8259 to accommodate latest gnulib.
8260
8261 * tests/glr-regression.at (Duplicate representation of merged trees):
8262 Add casts to pacify g++. Problem reported by twlevo@xs4all.nl.
8263
8264 * bootstrap: Add comment as to why the AM_LANGINFO_CODESET hack is
8265 needed.
8266
8267 2005-08-26 Paul Eggert <eggert@cs.ucla.edu>
8268
8269 * data/glr.c (yydestroyGLRState): Renamed from yydestroyStackItem.
8270 All uses changed. Invoke user destructor after an error during a
8271 split parse (trivial change from Joel E. Denny).
8272
8273 * tests/glr-regression.at
8274 (User destructor after an error during a split parse): New test case.
8275 Problem reported by Joel E. Denny in:
8276 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00029.html
8277
8278 2005-08-25 Paul Eggert <eggert@cs.ucla.edu>
8279
8280 * README-cvs: Give URLs for recommended tools.
8281 Mention Gzip version problem, and bootstrapping issues.
8282 Remove troubleshooting section, as it's somewhat obsolete.
8283
8284 * bootstrap (no_cache): New var, to accommodate different wget
8285 variants. Use it instead of '-C off'. Problem reported by
8286 twlevo@xs4all.nl.
8287
8288 * data/glr.c (yydestroyStackItem): New function.
8289 (yyrecoverSyntaxError, yyreturn): Use it to improve quality of
8290 debugging information. Problem reported by Joel E. Denny.
8291
8292 2005-08-25 Akim Demaille <akim@epita.fr>
8293
8294 * tests/local.at (AT_COMPILE_CXX): Pass $LINKS too.
8295
8296 2005-08-24 Paul Eggert <eggert@cs.ucla.edu>
8297
8298 * data/glr.c (yyrecoverSyntaxError, yyreturn):
8299 Don't invoke destructor on unresolved entries.
8300 * tests/glr-regression.at
8301 (User destructor for unresolved GLR semantic value): New test case.
8302 Problem reported by Joel E. Denny in:
8303 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00016.html
8304
8305 2005-08-21 Paul Eggert <eggert@cs.ucla.edu>
8306
8307 * lib/.cvsignore: Remove realloc.c, strncasecmp.c, xstrdup.c.
8308 Add strnlen.c.
8309 * m4/.cvsignore: Remove codeset.m4, gettext.m4, lib-ld.m4,
8310 lib-prefix.m4, po.m4.
8311
8312 * data/glr.c (yyreturn): Use "Cleanup:" rather than "Error:"
8313 in yydestruct diagnostic, since it might not be an error.
8314 Problem reported by Joel Denny near end of
8315 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
8316 * data/lalr1.cc (yyerturn): Likewise.
8317 * data/yacc.c (yyreturn): Likewise.
8318 * tests/calc.at (_AT_CHECK_CALC_ERROR): Adjust to the above change.
8319
8320 * src/files.c: Remove obsolete FIXME comment.
8321
8322 * data/glr.c (YY_SYMBOL_PRINT): Append a newline, for consistency
8323 with the other templates, and to fix bogus run-on messages such
8324 as the one reported at the end of
8325 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
8326 All callers changed to avoid the newline.
8327 (yyprocessOneStack): Output two lines rather than one, to accommodate
8328 the above change. This changes the debug output format slightly.
8329
8330 * data/glr.c (yyresolveValue): Fix redundant parse tree problem
8331 reported by Joel E. Denny in
8332 <http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00004.html>
8333 (trivial change).
8334 * tests/glr-regression.at (Duplicate representation of merged trees):
8335 New test, from Joel E. Denny in:
8336 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00013.html>.
8337 * THANKS: Add Joel E. Denny.
8338
8339 * configure.ac (AC_INIT): Bump to 2.0c.
8340
8341 2005-07-24 Paul Eggert <eggert@cs.ucla.edu>
8342
8343 * NEWS: Version 2.0b.
8344
8345 * Makefile.am (SUBDIRS): Put examples before tests, so that
8346 "make check" doesn't finish with "All 1 tests passed".
8347
8348 * tests/regression.at (Token definitions): Don't rely on
8349 AT_PARSER_CHECK for data that contains backslashes. It currently
8350 uses 'echo', and 'echo' isn't portable if its argument contains
8351 backslashes. Problem found on OpenBSD 3.4. Also, do not assume
8352 that the byte '\0xff' is not printable in the C locale; it is,
8353 under OpenBSD 3.4 (!). Luckily, '\0x80' through '\0x9e' are
8354 not printable, so use '\0x81' to test.
8355
8356 * data/glr.c (YYOPTIONAL_LOC): Define even if it's not a recent
8357 version of GCC, since the macro is used with non-GCC compilers.
8358
8359 Fix core dump reported by Pablo De Napoli in
8360 <http://lists.gnu.org/archive/html/bug-bison/2005-07/msg00053.html>.
8361 * tests/regression.at (Invalid inputs with {}): New test.
8362 * src/parse-gram.y (token_name): Translate type before using
8363 it as an index.
8364
8365 * data/glr.c (ATTRIBUTE_UNUSED): Remove, since it infringes on
8366 the user's name space. All uses changed to __attribute__
8367 ((__unused__)).
8368 (yyFail, yyMemoryExhausted, yyreportAmbiguity):
8369 Add __attribute__ ((__noreturn__)).
8370
8371 * etc/clcommit: Remove. We weren't using it, and it failed
8372 "make maintainer-distcheck".
8373 * Makefile.maint: Merge from coreutils.
8374 (CVS_LIST, CVS_LIST_EXCEPT): New macros.
8375 (syntax-check-rules): Change list of rules as described below.
8376 (sc_cast_of_alloca_return_value, sc_dd_max_sym_length):
8377 (sc_file_system, sc_obsolete_symbols, sc_prohibit_atoi_atof):
8378 (sc_prohibit_jm_in_m4, sc_root_tests, sc_tight_scope):
8379 (sc_trailing_space): New rules.
8380 (sc_xalloc_h_in_src): Remove.
8381 (sc_cast_of_argument_to_free, sc_cast_of_x_alloc_return_value):
8382 (sc_space_tab, sc_error_exit_success, sc_changelog):
8383 (sc_system_h_headers, sc_sun_os_names, sc_unmarked_diagnostics):
8384 (makefile-check, po-check, author_mark_check):
8385 (makefile_path_separator_check, copyright-check):
8386 Use grep -n, to make it easier to find violations.
8387 Use CVS_LIST and CVS_LIST_EXCEPT.
8388 (header_regexp, h_re): Remove.
8389 (dd_c): New macro.
8390 (sc_dd_max_sym_length, .re-list, news-date-check): New rules.
8391 (my-distcheck): Use more-modern GCC flags.
8392 (signatures, %.asc): Remove.
8393 (rel-files, announcement): Remove signatures.
8394 Restore old updating code, even though we don't use it, so
8395 that we're the same as coreutils.
8396 (alpha, beta, major): Depend on news-date-check.
8397 Make the upload commands.
8398
8399 * data/c.m4, data/lalr1.cc, data/yacc.c: Normalize white space.
8400 * lib/abitset.h, lib/bbitset.h, lib/bitset.h: Likewise.
8401 * lib/bitset_stats.c, lib/ebitset.h, lib/lbitset.c: Likewise.
8402 * lib/libitset.h, lib/timevar.c, lib/vbitset.h: Likewise.
8403 * src/Makefile.am, src/gram.c, src/muscle_tab.h: Likewise.
8404 * src/parse-gram.y, src/system.h, src/tables.c, src/vcg.c: Likewise.
8405 * src/vcg_defaults.h, tests/cxx-type.at, tests/existing.at: Likewise.
8406 * tests/sets.at: Likewise.
8407
8408 * data/m4sugar/m4sugar.m4: Sync from Autoconf, except that
8409 we comment out the Autoconf version number.
8410 * doc/bison.texinfo (Calc++ Scanner): Don't use atoi, as
8411 it's error-prone and "make maintainer-distcheck" rejects it.
8412
8413 * lib/subpipe.c: Include <fcntl.h> without checking for HAVE_FCNTL_H.
8414 Indent calls to "error" to pacify "make maintainer-distcheck",
8415 when the calls are not intended to be translated.
8416 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't check for fcntl.h.
8417
8418 * src/Makefile.am (DEFS): Use +=, to pacify
8419 "make maintainer-distcheck".
8420 (bison_SOURCES): Add scan-skel.h.
8421 (sc_tight_scope): New rule, from coreutils.
8422
8423 * src/files.c (src_extension, header_extension):
8424 Now static, not extern.
8425 * src/getargs.c (short_options): Likewise.
8426 * src/muscle_tab.c (muscle_table): Likewise.
8427 * src/parse-gram.y (current_class, current_type, current_prec):
8428 Likewise.
8429 * src/reader.c (grammar_end, previous_rule_end): Likewise.
8430 * src/getargs.h: Redo comments to pacify "make maintainer-distcheck".
8431 * src/main.c (main): Cast bindtextdomain and textdomain calls to
8432 void, to avoid warning when NLS is disabled.
8433 * src/output.c: Include scan-skel.h.
8434 (scan_skel): Remove decl, since scan-skel.h does this.
8435 (output_skeleton):
8436 Indent calls to "error" to pacify "make maintainer-distcheck".
8437 * src/print_graph.c: Don't include <obstack.h>, as system.h does this.
8438 * src/reader.h (gram_end, gram_lineno): New decls to pacify
8439 "make maintainer-distcheck".
8440 * src/scan-skel.l (skel_lex, skel_get_lineno, skel_get_in):
8441 (skel_get_out, skel_get_leng, skel_get_text, skel_set_lineno):
8442 (skel_set_in, skel_set_out, skel_get_debug, skel_set_debug):
8443 (skel_lex_destroy, scan_skel): Move these decls to...
8444 * src/scan-skel.h: New file.
8445 * src/uniqstr.c (uniqstr_assert):
8446 Indent calls to "error" to pacify "make maintainer-distcheck".
8447
8448 * tests/Makefile.am ($(srcdir)/package.m4): Use $(VAR),
8449 not @VAR@.
8450
8451 * tests/torture.at: Revamp to avoid misuse of atoi that
8452 "make maintainer-distcheck" complained about.
8453
8454 * examples/extexi (message): Don't print a message more than once,
8455 and omit line-number decoration that makes Emacs compile think
8456 that informative messages are worth worrying about.
8457
8458 2005-07-22 Paul Eggert <eggert@cs.ucla.edu>
8459
8460 * configure.ac: Update version number.
8461
8462 * Makefile.am (SUBDIRS): Add examples; somehow this got removed
8463 accidentally.
8464 * examples/calc++/calc++-parser.yy: Remove from CVS, as it's
8465 autogenerated by the maintainer.
8466 * examples/calc++/.cvsignore: Add *.yy.
8467
8468 * lib/bitset.c (bitset_alloc): Don't cast xcalloc result.
8469 * lib/bitset_stats.c (bitset_stats_init): Likewise.
8470 * lib/bitsetv.c (bitsetv_alloc): Likewise.
8471
8472 * po/POTFILES.in: Add lib/xalloc-die.c; remove lib/xmalloc.c.
8473
8474 * src/relation.c (relation_transpose): Rewrite to avoid bogus complaint
8475 from maintainer-distcheck about casting the argument of 'free'.
8476
8477 * NEWS: Mention recent yytname changes.
8478 * THANKS: Add Anthony Heading, twlevo@xs4all.nl.
8479
8480 * bootstrap: For translations that have not yet been upgraded to
8481 the new runtime-po domain, prime the pump by extracting the
8482 relevant strings from the obsolete translations. This code can be
8483 removed once the bison-runtime domain has been translated by each
8484 team.
8485
8486 * src/scan-gram.l (<SC_PRE_CODE>.): Don't double-quote token names,
8487 now that token names are already quoted.
8488
8489 Fix problem reported by Anthony Heading.
8490 * data/glr.c (YYTOKEN_TABLE): New macro.
8491 (yytname): Define if YYTOKEN_TABLE.
8492 * data/yacc.c (YYTOKEN_TABLE, yytname): Likewise.
8493 * data/lalr1.cc (YYTOKEN_TABLE, yytname_): Likewise.
8494 (YYERROR_VERBOSE): Define the same way the other skeletons do.
8495 * src/output.c (prepare_symbols): Output token_table_flag.
8496
8497 2005-07-21 Paul Eggert <eggert@cs.ucla.edu>
8498
8499 * data/glr.c (yyinitGLRStack, yyreturn): Don't call malloc
8500 again if the first call fails.
8501
8502 * data/glr.c (yytnamerr): New function.
8503 (yyreportSyntaxError): Use it to dequote most string literals.
8504 * data/lalr1.c (yytname_): Renamed from yyname_, for compatibility
8505 with other skeletons. All uses changed.
8506 (yytnameerr_): New function.
8507 (yyreport_syntax_error): Use it to dequote most string literals.
8508 * data/yacc.c (yytnamerr): New function.
8509 (yyerrlab): Use it to decode most string literals.
8510 * doc/bison.texinfo (Decl Summary, Calling Convention):
8511 Clarify quoting convention of yytname.
8512 * src/output.c (prepare_symbols): Quote all names. This undoes
8513 the 2005-04-17 change, which is now accomplished (mostly) via
8514 changes in the parsers as described above.
8515 * tests/regression.at (Token definitions, Web2c Actions):
8516 Undo most 2005-04-17 change here, too.
8517
8518 2005-07-20 Paul Eggert <eggert@cs.ucla.edu>
8519
8520 Fix more problems reported by twlevo@xs4all.nl.
8521 * tests/cxx-type.at: Don't pipe output of ./types through sed to
8522 remove trailing spaces. This loses the exit status of ./types,
8523 and isn't needed since ./types shouldn't be emitting trailing
8524 spaces.
8525 * data/glr.c (yyreturn): Don't pop stack if yyinitStateSet failed,
8526 as the stack isn't valid in that case.
8527
8528 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
8529 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
8530 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
8531 Add declarations to pacify "gcc -Wmissing-prototypes" when flex 2.5.31
8532 is used.
8533 * src/scan-skel.l (skel_get_lineno, skel_get_in, skel_get_out):
8534 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
8535 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
8536 Likewise.
8537
8538 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Work even with
8539 overly-picky compilers that reject 'char *foo = "bar";'.
8540
8541 * src/symtab.c (SYMBOL_ATTR_PRINT, symbol_print): Direct output
8542 to FILE * parameter, not to stderr. This fixes a typo introduced
8543 in the 2005-07-12 change.
8544
8545 * lib/subpipe.c (create_subpipe): Rewrite slightly to avoid
8546 warnings from GCC 4.
8547
8548 * data/glr.c (yyexpandGLRStack, yyaddDeferredAction, yyexpandGLRStack):
8549 (yyglrShiftDefer, yysplitStack):
8550 Remove unused parameters b4_pure_formals. All uses changed.
8551 (yyglrShift): Remove unused parameters b4_user_formals.
8552 All uses changed.
8553 (yyglrReduce): Removed unused parameter yylocp. All uses changed.
8554
8555 2005-07-18 Paul Eggert <eggert@cs.ucla.edu>
8556
8557 Destructor cleanups and regularization among the three skeletons.
8558 * NEWS: Document the behavior changes.
8559 * data/glr.c (yyrecoverSyntaxError): Don't bother to pop the
8560 stack before failing, as the cleanup code will do it for us now.
8561 * data/lalr1.cc (yyerrlab): Likewise.
8562 * data/glr.c (yyparse): Pop everything off the stack before
8563 freeing it, so that destructors get called properly.
8564 * data/lalr1.cc (yyreturn): Likewise.
8565 * data/yacc.c (yyreturn): Pop and destroy the start symbol, too.
8566 This is more consistent.
8567 * doc/bison.texinfo (Destructor Decl): Mention more reasons
8568 why destructors might be called. 1.875 -> 2.1.
8569 (Destructor Decl, Decl Summary, Table of Symbols):
8570 Some English-language cleanups for %destructor.
8571 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
8572 Add output line for destructor of start symbol.
8573 * tests/calc.at (AT_CHECK_CALC): Add one to line counts,
8574 because of that same extra output line.
8575
8576 * NEWS: Document minor wording changes in diagnostics of
8577 Bison-generated parsers.
8578 * data/glr.c (yyMemoryExhausted): Renamed from yyStackOverflow.
8579 Remove unused formals. All uses changed.
8580 (yyreportAmbiguity): "ambiguity detected" -> "syntax is ambiguous".
8581 (yyparse): Rename yyoverflowlab to yyexhaustedlab.
8582 * data/yacc.c (yyparse): "parser stack overflow" -> "memory exhausted".
8583 Rename yyoverflowab to yyexhaustedlab.
8584 When memory exhaustion occurs during syntax-error reporting,
8585 report it separately rather than in a single diagnostic; this
8586 eases translation.
8587 * doc/bison.texinfo (Memory Management): Renamed from Stack Overflow.
8588 (Memory Exhausted): Renamed from Parser Stack Overflow.
8589 Revamp wording slightly to prefer "memory exhaustion".
8590 * tests/actions.at: "parser stack overflow" -> "memory exhausted".
8591
8592 * data/c.m4 (b4_yysymprint_generate): Use YYFPRINTF, not fprintf.
8593
8594 Add i18n support to the GLR skeleton. Partially fix the C++
8595 skeleton; a C++ expert needs to finish this. Remove debugging
8596 msgids; there's little point to having them translated, since they
8597 can be understood only by someone who can read the
8598 (English-language) source code.
8599
8600 Generate runtime-po/bison-runtime.pot automatically, so that we
8601 don't have to worry about garbage getting in that file. We'll
8602 make sure after the next official release that old msgids don't
8603 get lost. See
8604 <http://lists.gnu.org/archive/html/bison-patches/2005-07/msg00119.html>.
8605
8606 * runtime-po/Makefile.in.in, runtime-po/bison-runtime.pot: Remove.
8607 Now auto-generated.
8608 * PACKAGING: Don't claim that Gawk, GCC, Perl use this method yet.
8609 Fix typos in explanations of the runtime file.
8610 * bootstrap: Change gettext keyword from YYI18N to YY_.
8611 Use standard Makefile.in.in in runtime-po, since we'll arrange
8612 for backward-compatible bison-runtime.po files in a different way.
8613 * data/glr.c (YY_): New macro, from yacc.c.
8614 (yyuserAction, yyreportAmbiguity, yyreportSyntaxError, yyparse):
8615 Translate messages intended for users.
8616 (yyreportSyntaxError): Change "virtual memory" to "memory" to match
8617 the wording in the other skeletons. We don't know that the memory
8618 is virtual.
8619 * data/lalr1.cc (YY_): Renamed from _. All uses changed.
8620 Use same method that yacc.c uses.
8621 Don't translate debugging messages.
8622 (yy::yyreport_syntax_error): Put in a FIXME for the i18n stuff;
8623 it doesn't work (yet), and requires C++ expertise to fix.
8624 * data/yacc.c (YY_): Renamed from YY18N. All uses changed.
8625 Move defn to a more logical place, to be consistent with other
8626 skeletons.
8627 Don't translate debugging messages.
8628 Don't assume line numbers fit in unsigned int; use unsigned long fmts.
8629 * doc/bison.texinfo: Mention <libintl.h>. Change glibc cross reference
8630 to gettext cross reference. Add indexing terms. Mention YYENABLE_NLS.
8631 * runtime-po/POTFILES.in: Add data/glr.c, data/lalr1.cc.
8632
8633 Fix yyerror / yylex test glitches noted by twlevo@xs4all.nl.
8634 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Have yyerror return
8635 void, not int.
8636 * tests/glr-regression.at (Badly Collapsed GLR States):
8637 Likewise.
8638 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
8639 yylex should return 0 at EOF rather than aborting.
8640
8641 Improve tests for stack overflow in GLR parser.
8642 Problem reported by twlevo@xs4all.nl.
8643 * data/glr.c (struct yyGLRStack): Remove yyerrflag member.
8644 All uses removed.
8645 (yyStackOverflow): Just longjmp, but with value 2 so that caller
8646 can handle the problem.
8647 (YYCHK1): Use goto (a la yacc.c) rather than setting a flag.
8648 (yyparse): New local variable yyresult to record the result.
8649 Use result of setjmp to set it, rather than storing itinto
8650 struct.
8651 (yyDone): Remove label.
8652 (yyacceptlab, yyabortlab, yyoverflowlab, yyreturn): New labels,
8653 to mimic yacc.c. Do not discard lookahead if it's EOF (possible
8654 if YYABORT is used).
8655 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Exit with
8656 yyparse status; put status > 1 into diagnostic.
8657 Check that status==2 works.
8658 * tests/calc.at, tests/cxx-type.at, tests/glr-regression.at:
8659 Use exit status 3 for failure to open (which shouldn't happen).
8660
8661 2005-07-17 Paul Eggert <eggert@cs.ucla.edu>
8662
8663 * tests/conflicts.at (%nonassoc and eof): Don't exit with status
8664 1 on syntax error; just let yyparse do its thing.
8665 * tests/glr-regression.at (Badly Collapsed GLR States): Likewise.
8666 * tests/torture.at (AT_DATA_STACK_TORTURE): Likewise.
8667 (Exploding the Stack Size with Alloca):
8668 (Exploding the Stack Size with Malloc):
8669 Expect exit status 2, not 1, since the parser is supposed to blow
8670 its stack. Problem reported by twlevo@xs4all.nl.
8671
8672 * data/glr.c (yyparse): Don't assume that the initial calls
8673 to YYMALLOC succeed; in that case, yyparse incorrectly returned 0.
8674 Print a stack-overflow message and fail instead.
8675 Initialize the line-number information before creating the stack,
8676 so that the stack-overflow message can report line zero safely.
8677
8678 2005-07-14 Paul Eggert <eggert@cs.ucla.edu>
8679
8680 Fix problems reported by twlevo@xs4all.nl.
8681 * data/glr.c (YYSTACKEXPANDABLE): Don't define if already defined.
8682 (yyuserMerge): Provide a default case if b4_mergers is empty.
8683 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Define YYSTACKEXPANDABLE.
8684 * tests/glr-regression.at
8685 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
8686 Add casts to pacify C++ compilers.
8687 * tests/glr-regression.at (Improper merging of GLR delayed action
8688 sets): Declare yylex before using it.
8689 * tests/Makefile.am (maintainer-check-g++): Fix a stray
8690 $(GXX) that escaped the renaming of GXX to CXX. Remove bogus
8691 test for valgrind; valgrind is independent of g++.
8692 (maintainer-check-posix): Add _POSIX2_VERSION=200112, to check
8693 for compatibility with POSIX 1003.1-2001 (if running coreutils).
8694 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Port to stricter C++.
8695 Use a destructor, so that we can expand the stack. Change
8696 YYSTYPE to char * so that we can free it. Cast result of malloc.
8697
8698 2005-07-13 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
8699
8700 * data/glr.c (yyuserAction): Fix uninitialized variable that caused
8701 a valgrind failure. Problem reported by twlevo@xs4all.nl.
8702
8703 2005-07-13 Paul Eggert <eggert@cs.ucla.edu>
8704
8705 * PACKAGING: New file, suggested by Bruno Haible and taken from
8706 similar wording in gettext's PACKAGING file.
8707 * NEWS: Mention PACKAGING.
8708 * Makefile.am (EXTRA_DIST): Add PACKAGING.
8709
8710 2005-07-12 Paul Eggert <eggert@cs.ucla.edu>
8711
8712 * NEWS: Document recent i18n improvements.
8713 * bootstrap: Get runtime translations into runtime-po.
8714 Create runtime-po files automatically, if possible.
8715 * configure.ac: Invoke BISON_I18N, so that we eat our own dog food.
8716 * data/yacc.c: Rewrite inclusion of <libintl.h> so that ENABLE_NLS
8717 does not infringe on the user's name space.
8718 (YYENABLE_NLS): Renamed from ENABLE_BISON_NLS.
8719 * doc/bison.texinfo (Internationalization): Revamp the English
8720 and Texinfo syntax a bit, to try to make it clearer.
8721 (Bison Options, Option Cross Key): Mention --print-localedir.
8722 * m4/bison-i18n.m4 (BISON_I18N): Rename ENABLE_BISON_NLS to
8723 YYENABLE_NLS. Quote a bit more.
8724 * runtime-po/.cvsignore: New file.
8725 * runtime-po/Makefile.in.in (mostlyclean): Remove *.old.pot.
8726 * runtime-po/Rules-quot: Remove; now created by bootstrap.
8727 * runtime-po/quot.sed: Likewise.
8728 * runtime-po/boldquot.sed: Likewise.
8729 * runtime-po/en@quot.header: Likewise.
8730 * runtime-po/en@boldquot.header: Likewise.
8731 * runtime-po/insert-header.sin: Likewise.
8732 * runtime-po/remove-potcdate.sin: Likewise.
8733 * runtime-po/Makevars: Likewise.
8734 * runtime-po/LINGUAS: Likewise.
8735 * runtime-po/de.po: Likewise; we will rely on the translation project
8736 to maintain this, so "bootstrap" should get it.
8737 * src/getarg.c (PRINT_LOCALEDIR_OPTION): Let the C compiler determine
8738 its value.
8739 * src/main.c (main): Bind the bison-runtime domain, too.
8740
8741 2005-07-12 Bruno Haible <bruno@clisp.org>
8742
8743 * data/yacc.c: Include <libintl.h> when NLS is enabled.
8744 (YYI18N): Renamed from _. Use dgettext when NLS is enabled.
8745 * po/POTFILES.in: Remove autogenerated file src/parse-gram.c.
8746 * runtime-po: New directory.
8747 * runtime-po/Makefile.in.in: New file, copied from po/, with modified
8748 $(DOMAIN).pot-update rule, so that old messages are never dropped.
8749 * runtime-po/Rules-quot: New file, copied from po/.
8750 * runtime-po/quot.sed: Likewise.
8751 * runtime-po/boldquot.sed: Likewise.
8752 * runtime-po/en@quot.header: Likewise.
8753 * runtime-po/en@boldquot.header: Likewise.
8754 * runtime-po/insert-header.sin: Likewise.
8755 * runtime-po/remove-potcdate.sin: Likewise.
8756 * runtime-po/Makevars: New file.
8757 * runtime-po/POTFILES.in: New file.
8758 * runtime-po/LINGUAS: New file.
8759 * runtime-po/bison-runtime.pot: New file.
8760 * runtime-po/de.po: New file.
8761 * m4/bison.m4: New file.
8762 * Makefile.am (SUBDIRS): Add runtime-po.
8763 (aclocaldir, aclocal_DATA): New variables.
8764 * configure.ac: Add AC_CONFIG_FILES of runtime-po/Makefile.in.
8765 Define aclocaldir.
8766 * src/getargs.c (usage): Document --print-localedir option.
8767 (PRINT_LOCALEDIR_OPTION): New enum item.
8768 (long_options): Add --print-localedir option.
8769 (getargs): Handle --print-localedir option.
8770 * doc/bison.texinfo (Bison Parser): Remove paragraph about _().
8771 (Internationalization): New section.
8772
8773 2005-07-12 Akim Demaille <akim@epita.fr>
8774
8775 * src/symtab.h, src/symtab.c (symbol_print): Swap the arguments,
8776 for consistency with the rest of the code.
8777 * src/symlist.h, src/symlist.c (symbol_list_print): Ditto.
8778 Add separators.
8779
8780 2005-07-12 Akim Demaille <akim@epita.fr>
8781
8782 * src/parse-gram.y: Use %printer instead of YYPRINT.
8783
8784 2005-07-12 Akim Demaille <akim@epita.fr>
8785
8786 * src/symtab.h, src/symtab.c (symbol_print): New.
8787 * src/symlist.h, src/symlist.c (symbol_list_print): New.
8788 * src/symlist.c (symbol_list_n_type_name_get): Report the culprit.
8789
8790 2005-07-12 Akim Demaille <akim@epita.fr>
8791
8792 * data/glr.c (b4_syncline): Fix (swap) the definitions of
8793 b4_at_dollar and b4_dollar_dollar.
8794
8795 2005-07-11 Paul Eggert <eggert@cs.ucla.edu>
8796
8797 * doc/bison.texinfo (Mystery Conflicts): Add reference to DeRemer
8798 and Pennello's paper.
8799
8800 2005-07-09 Paul Eggert <eggert@cs.ucla.edu>
8801
8802 * data/yacc.c (yyparse): Undo previous patch. Instead,
8803 set yylsp[0] and yyvsp[0] only if the initial action
8804 sets yylloc and yylval, respectively.
8805
8806 * data/yacc.c (yyparse): In the initial action, set
8807 yylsp[0] and yyvsp[0] rather than yylloc and yylval.
8808 This avoids the use of undefined variables if the initial
8809 action does not set yylloc and/or yylval.
8810
8811 2005-07-07 Paul Eggert <eggert@cs.ucla.edu>
8812
8813 * examples/calc++/calc++-driver.cc, examples/calc++/calc++-driver.hh:
8814 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc:
8815 Remove from CVS. These files are automatically generated.
8816 * examples/extexi: Clarify that this file is now part of Bison,
8817 not GNU M4, and that it works with any POSIX-compatible Awk.
8818 * examples/calc++/Makefile.am (run_extexi): Remove; not used.
8819 ($(calc_extracted)): Renamed from $(calc_sources_extracted),
8820 so that we also get calc++-parser.yy. Geneate it.
8821 Use $(AWK), not gawk, since any conforming Awk will do.
8822 Put comment before action, since older 'make' can't handle comment
8823 in action.
8824 $(BUILT_SOURCES): List all built sources, not just some of them.
8825 $(MAINTAINERCLEANFILES): Remove *.stamp, and all built sources.
8826 $($(srcdir)/calc++-parser.stamp): Work even if POSIXLY_CORRECT.
8827 $($(calc_sources_generated)): Remove unnecessary test for existence
8828 of target. (This had a shell syntax error anyway; a stray "x".)
8829 (calc_extracted): List $(srcdir)/calc++-parser.yy, not
8830 calc++-parser.yy.
8831 * examples/.cvsignore, examples/calc++/.cvsignore: New files.
8832
8833 * bootstrap (gnulib_modules): Add gettext, now that it's no longer
8834 implied by the other modules.
8835
8836 2005-07-06 Akim Demaille <akim@epita.fr>
8837
8838 Bind examples/calc++ to the package.
8839 * examples/calc++/Makefile: Remove, replaced by...
8840 * examples/calc++/Makefile.am: ... this new file.
8841 * examples/calc++/test: Remove input.
8842 * examples/calc++/compile: Remove.
8843 * examples/Makefile.am: New.
8844 * configure.ac, Makefile.am: Adjust.
8845 * doc/Makefile.am (clean-local): New, for more recent texi2dvis.
8846
8847 2005-07-05 Paul Eggert <eggert@cs.ucla.edu>
8848
8849 * data/glr.c (yyFail): Drastically simplify; since the format argument
8850 never had any % directives, we can simply pass it to yyerror.
8851 (yyparse): Use "t a; a=b;" rather than "t a = b;" when a will
8852 be modified later, as that is the usual style in glr.c.
8853 Problems reported by Paul Hilfinger.
8854
8855 Rewrite GLR parser to catch more buffer overrun, storage exhaustion,
8856 and size overflow errors.
8857 * data/glr.c: Include <stdio.h> etc. after user prolog, not before,
8858 in case the user prolog sets feature-test macros like _GNU_SOURCE.
8859 (YYSIZEMAX): New macro.
8860 (yystpcpy): New function, taken from yacc.c.
8861 (struct yyGLRStack.yyspaceLeft): Now size_t, not int.
8862 (yyinitGLRStack, yyfreeGLRstack): Remove unnecessary forward decls,
8863 so that we don't have to maintain their signatures.
8864 (yyFail): Check for buffer overflow, by using vsnprintf rather
8865 than vsprintf. Allocate a bigger buffer if possible.
8866 Report an error if buffer allocation fails.
8867 (yyStackOverflow): New function.
8868 (yyinitStateSet, yyinitGLRStack): Return a boolean indicating whether
8869 the initialization was successful. It might fail if storage was
8870 exhausted.
8871 (yyexpandGLRStack): Add more checks for storage allocation failure.
8872 Use yyStackOverflow to report failures.
8873 (yymarkStackDeleted, yyglrShift, yyglrShiftDefer, yydoAction):
8874 (yysplitStack, yyprocessOneStack, yyparse, yypstack):
8875 Don't assume stack number fits in int.
8876 (yysplitStack): Check for storage allocation failure.
8877 (yysplitStack, yyprocessOneStack): Add pure_formals, so that we
8878 can print diagnostics on storage allocation failure. All callers
8879 changed.
8880 (yyresolveValue): Use yybool for boolean.
8881 (yyreportSyntaxError): Check for size-calculation overflow.
8882 This code is taken from yacc.c.
8883 (yyparse): Check for storage allocation errors when allocating
8884 the initial stack.
8885
8886 2005-07-05 Akim Demaille <akim@epita.fr>
8887
8888 Extract calc++ from the documentation.
8889 * doc/bison.texinfo (Calc++): Add the extraction marks.
8890 * examples/extexi: New, from the aborted GNU Programming 2E.
8891 Separate the different paragraph of a file with empty lines.
8892 * examples/Makefile: Use it to extract the whole calc++ example.
8893
8894 2005-06-24 Akim Demaille <akim@epita.fr>
8895
8896 * doc/bison.texinfo (C++ Parser Interface): Use defcv to define
8897 class typedefs.
8898
8899 2005-06-22 Akim Demaille <akim@epita.fr>
8900
8901 * doc/bison.texinfo (C++ Language Interface): First stab.
8902 (C++ Parsers): Remove.
8903
8904 2005-06-22 Akim Demaille <akim@epita.fr>
8905
8906 * data/lalr1.cc (yylex_): Honor %lex-param.
8907
8908 2005-06-22 Akim Demaille <akim@epita.fr>
8909
8910 Start a set of simple examples.
8911 * examples/calc++/Makefile, examples/calc++/calc++-driver.cc,
8912 * examples/calc++/calc++-driver.hh,
8913 * examples/calc++/calc++-parser.yy,
8914 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc,
8915 * examples/calc++/compile, examples/calc++/test: New.
8916
8917 2005-06-09 Paul Eggert <eggert@cs.ucla.edu>
8918
8919 * data/yacc.c (malloc, free) [defined __cplusplus]: Wrap inside
8920 extern "C" {}. This fixes a problem reported by Paul Hilfinger,
8921 which stems from the 2005-05-27 patch.
8922
8923 2005-06-06 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
8924
8925 * data/glr.c: Modify treatment of unused parameters to permit use
8926 of g++ (which doesn't allow __attribute__ ((unused)) for parameters).
8927
8928 2005-05-30 Paul Eggert <eggert@cs.ucla.edu>
8929
8930 Fix infringement on user name space reported by Janos Zoltan Szabo.
8931 * data/yacc.c (yyparse): strlen -> yystrlen.
8932
8933 2005-05-30 Akim Demaille <akim@epita.fr>
8934
8935 * data/lalr1.cc (_): New.
8936 Translate the various messages.
8937
8938 2005-05-27 Paul Eggert <eggert@cs.ucla.edu>
8939
8940 Fix infringement on user name space reported by Bruno Haible.
8941 * data/yacc.c (YYSIZE_T): Define first, so that later decls can use it.
8942 Prefer GCC's __SIZE_TYPE__ if available, so that we don't infringe on
8943 the user's name space.
8944 (alloca): Include <stdlib.h> to get it, if it's not built in.
8945 (YYMALLOC, YYFREE): Define only if needed.
8946 (malloc, free): Declare, but only if needed, as this infringes on
8947 the user name space.
8948
8949 2005-05-25 Paul Eggert <eggert@cs.ucla.edu>
8950
8951 Fix BeOS, FreeBSD, MacOS porting problems reported by Bruno Haible.
8952 * lib/bitset.c (bitset_print): Don't assume size_t can be printed
8953 with %d format.
8954 * lib/ebitset.c (min, max): Undef before defining.
8955 * lib/vbitset.c (min, max): Likewise.
8956 * lib/subpipe.c (create_subpipe): Save local variables in case
8957 vfork clobbers them.
8958
8959 2005-05-24 Bruno Haible <bruno@clisp.org>
8960
8961 * tests/synclines.at (AT_SYNCLINES_COMPILE): Add support for the
8962 error message syntax used by gcc-4.0.
8963
8964 2005-05-23 Paul Eggert <eggert@cs.ucla.edu>
8965
8966 * README: Mention m4 1.4.3. Remove obsolete advice about
8967 Sun Forte Developer 6 update 2, VMS, and MS-DOS.
8968
8969 * bootstrap: Remove workaround for problem I encountered with
8970 gettext 0.14.1; it seems to be fixed now.
8971
8972 2005-05-22 Paul Eggert <eggert@cs.ucla.edu>
8973
8974 * NEWS: Version 2.0a.
8975
8976 * src/files.c: Include "stdio-safer.h"; this fixes a typo in
8977 the previous change.
8978
8979 Various maintainer cleanups.
8980 * .cvsignore: Add a.exe, a.out, b.out,, conf[0-9]*, confdefs*,
8981 conftest*, for benefit of CVS commands run at the same time as
8982 "configure". Add build-aux, since "bootstrap" now creates it and
8983 its subfiles.
8984 * Makefile.cfg (move_if_change): Remove.
8985 * Makefile.maint: Remove the update stuff; we now use "bootstrap".
8986 (ftp-gnu, www-gnu, move_if_change, local_updates, update):
8987 (po_repo, do-po-update, po-update, wget_files, get-targets):
8988 (config.guess-url_prefix, config.sub-url_prefix):
8989 (ansi2knr.c-url_prefix, texinfo.tex-url_prefix):
8990 (standards.texi-url_prefix, make-stds.texi-url_prefix, taget, url):
8991 ($(get-targets), cvs-files, automake_repo, wget-update, cvs-update):
8992 Remove.
8993 * configure.ac (AC_CONFIG_AUX_DIR): Change from config to build-aux;
8994 this is now the recommended name.
8995 * config/.cvsignore: Remove config.guess, config.rpath, config.sub,
8996 depcomp, install-sh, mdate-sh, missing, mkinstalldirs, texinfo.tex,
8997 ylwrap. These files now go into build-aux.
8998 * config/move-if-change: Remove.
8999 * config/prev-version.txt: Bump from 1.75 to 2.0.
9000
9001 * bootstrap: Add stdio-safer, unistd-safer modules.
9002 Remove m4/glibc2.m4 (introduced by latest gnulib, but
9003 we don't need it).
9004 * lib/.cvsignore: Add dup-safer.c, fd-safer.c,
9005 fopen-safer.c, stdio-safer.h, unistd-safer.h.
9006 * lib/subpipe.c: Include "unistd-safer.h".
9007 (create_subpipe): Make sure all the newly-created
9008 file descriptors are > 2, so that diagnostics don't
9009 get sent down them (which might cause Bison to hang, in theory).
9010 * m4/.cvsignore: Add stdio-safer.m4, unistd-safer.m4.
9011 * src/files.c (xfopen): Use fopen_safer, not fopen.
9012
9013 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Port
9014 yesterday's yacc.c fix.
9015
9016 2005-05-21 Paul Eggert <eggert@cs.ucla.edu>
9017
9018 * data/glr.c, data/lalr1.cc: Update copyright date.
9019
9020 Fix a destructor bug reported by Wolfgang Spraul in
9021 <http://lists.gnu.org/archive/html/bug-bison/2005-05/msg00042.html>.
9022 * data/yacc.c (yyabortlab): Don't call destructor, and
9023 don't set yychar to EMPTY.
9024 (yyoverflowlab): Don't call destructor.
9025 (yyreturn): Call destructor, if yychar is neither YYEOF nor YYEMPTY.
9026 * tests/calc.at (AT_CHECK_CALC): Expect one fewer output lines,
9027 since we no longer output the message "discarding lookahead token
9028 end of input ()".
9029
9030 2005-05-20 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
9031
9032 * data/glr.c (YY_SYMBOL_PRINT): Don't print newline at end to
9033 fix a small glitch in debugging output.
9034 (yyprocessOneStack, yyrecoverSyntaxError, yyparse): Print newline
9035 after YY_SYMBOL_PRINT where needed.
9036
9037 (struct yyGLRState): Add some comments.
9038 (struct yySemanticOption): Add some comments.
9039 (union yyGLRStackItem): Add comment.
9040
9041 (yymergeOptionSets): Correct this to properly perform the union,
9042 avoiding infinite reported by Michael Rosien.
9043 Update comment.
9044
9045 * tests/glr-regression.at: Add test for GLR merging error reported
9046 by M. Rosien.
9047
9048 2005-05-13 Paul Eggert <eggert@cs.ucla.edu>
9049
9050 * COPYING, ChangeLog, GNUmakefile, HACKING, Makefile.am,
9051 Makefile.cfg, Makefile.maint, NEWS, README, README-alpha,
9052 README-cvs, TODO, bootstrap, configure.ac, data/Makefile.am,
9053 data/README, data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c,
9054 data/m4sugar/m4sugar.m4, doc/Makefile.am, doc/bison.texinfo,
9055 doc/fdl.texi, doc/gpl.texi, doc/refcard.tex, lib/Makefile.am,
9056 lib/abitset.c, lib/abitset.h, lib/bbitset.h, lib/bitset.c,
9057 lib/bitset.h, lib/bitset_stats.c, lib/bitset_stats.h,
9058 lib/bitsetv-print.c, lib/bitsetv-print.h, lib/bitsetv.c,
9059 lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/get-errno.c,
9060 lib/get-errno.h, lib/lbitset.c, lib/lbitset.h, lib/libiberty.h,
9061 lib/main.c, lib/subpipe.c, lib/subpipe.h, lib/timevar.c,
9062 lib/timevar.def, lib/timevar.h, lib/vbitset.c, lib/vbitset.h,
9063 lib/yyerror.c, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4, m4/timevar.m4,
9064 m4/warning.m4, src/LR0.c, src/LR0.h, src/Makefile.am, src/assoc.c,
9065 src/assoc.h, src/closure.c, src/closure.h, src/complain.c,
9066 src/complain.h, src/conflicts.c, src/conflicts.h, src/derives.c,
9067 src/derives.h, src/files.c, src/files.h, src/getargs.c,
9068 src/getargs.h, src/gram.c, src/gram.h, src/lalr.c, src/lalr.h,
9069 src/location.c, src/location.h, src/main.c, src/muscle_tab.c,
9070 src/muscle_tab.h, src/nullable.c, src/nullable.h, src/output.c,
9071 src/output.h, src/parse-gram.c, src/parse-gram.h,
9072 src/parse-gram.y, src/print.c, src/print.h, src/print_graph.c,
9073 src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c,
9074 src/reduce.h, src/relation.c, src/relation.h, src/scan-gram.l,
9075 src/scan-skel.l, src/state.c, src/state.h, src/symlist.c,
9076 src/symlist.h, src/symtab.c, src/symtab.h, src/system.h,
9077 src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h,
9078 src/vcg.c, src/vcg.h, src/vcg_defaults.h, tests/Makefile.am,
9079 tests/actions.at, tests/c++.at, tests/calc.at, tests/conflicts.at,
9080 tests/cxx-type.at, tests/existing.at, tests/glr-regression.at,
9081 tests/headers.at, tests/input.at, tests/local.at, tests/output.at,
9082 tests/reduce.at, tests/regression.at, tests/sets.at,
9083 tests/synclines.at, tests/testsuite.at, tests/torture.at:
9084 Update FSF postal mail address.
9085
9086 2005-05-11 Paul Eggert <eggert@cs.ucla.edu>
9087
9088 * tests/local.at (AT_COMPILE_CXX): Treat LDFLAGS like AT_COMPILE does.
9089 Problem reported by Ralf Menzel.
9090
9091 2005-05-01 Paul Eggert <eggert@cs.ucla.edu>
9092
9093 * tests/actions.at: Test that stack overflow invokes destructors.
9094 From Marcus Holland-Moritz.
9095 * data/yacc.c (yyerrlab): Move the code that destroys the stack
9096 from here....
9097 (yyreturn): to here. That way, destructors are called properly
9098 even if the stack overflows, or the user calls YYACCEPT or
9099 YYABORT. Stack-overflow problem reported by Marcus Holland-Moritz.
9100 (yyoverflowlab): Destroy the lookahead.
9101
9102 2005-04-24 Paul Eggert <eggert@cs.ucla.edu>
9103
9104 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): Add more-descriptive comment.
9105
9106 2005-04-17 Paul Eggert <eggert@cs.ucla.edu>
9107
9108 * NEWS: Bison-generated C parsers no longer quote literal strings
9109 associated with tokens.
9110 * src/output.c (prepare_symbols): Don't escape strings,
9111 since users don't want to see C escapes.
9112 * tests/calc.at (AT_CHECK_CALC): Adjust to lack of quotes
9113 in diagnostics.
9114 * tests/input.at (Torturing the Scanner): Likewise.
9115 * tests/regression.at (Token definitions, Web2c Actions): Likewise.
9116
9117 2005-04-16 Paul Eggert <eggert@cs.ucla.edu>
9118
9119 * tests/torture.at (AT_INCREASE_DATA_SIZE): Skip the test if
9120 the data size is known to be too small and we can't increase it.
9121 This works around an HP-UX 11.00 glitch reported by Andrew Benham.
9122
9123 2005-04-15 Paul Eggert <eggert@cs.ucla.edu>
9124
9125 * src/parse-gram.y: Include quotearg.h.
9126 (string_as_id): Quote $1 before using it as a key, since the
9127 lexer no longer quotes it for us.
9128 (string_content): Don't strip quotes, since lexer no longer
9129 quotes it for us.
9130 * src/scan-gram.l: Include quotearg.h.
9131 ("\""): Omit quote.
9132 ("'"<SC_ESCAPED_CHARACTER>): Quote symbol before using it as
9133 a key, since the rest of the lexer doesn't quote it.
9134 * src/symtab.c (symbol_get): Don't quote symbol; caller does it now.
9135 * tests/regression.at (Token definitions): Check for backslashes
9136 in token strings.
9137
9138 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): New macro.
9139 (YYSIZE_T): Define to unsigned long int when using an older compiler.
9140 (yyparse): Revamp code to generate long syntax error message, to
9141 make it easier to translate, and to avoid problems with arithmetic
9142 overflow. Change "virtual memory" to "memory" in diagnostic, since
9143 we don't know whether the memory is virtual.
9144
9145 2005-04-13 Paul Eggert <eggert@cs.ucla.edu>
9146
9147 * NEWS: Bison-generated C parsers now use the _ macro to
9148 translate strings.
9149 * data/yacc.c (_) [!defined _]: New macro.
9150 All English strings wrapped inside this macro.
9151 * doc/bison.texinfo (Bison Parser): Document _.
9152 * po/POTFILES.in: Include src/parse-gram.c, since it now
9153 includes translateable strings that parse-gram.y doesn't.
9154
9155 2005-04-12 Paul Eggert <eggert@cs.ucla.edu>
9156
9157 * src/symtab.c (symbol_make_alias): Call symbol_type_set,
9158 reverting the 2004-10-11 change to this function.
9159 (symbol_check_alias_consistency): Don't call symbol_type_set
9160 if the type name is already correct.
9161 * tests/input.at (Typed symbol aliases): New test, from Tim Van Holder.
9162
9163 2005-03-25 Paul Eggert <eggert@cs.ucla.edu>
9164
9165 * tests/regression.at (Token definitions): Don't use a token named
9166 c, as that generates a "#define c ..." that runs afoul of buggy
9167 stdlib.h that uses the identifier c as a member of struct
9168 drand48_data. Problem reported by Horst Wente.
9169
9170 2005-03-21 Paul Eggert <eggert@cs.ucla.edu>
9171
9172 * bootstrap: Change translation URL from
9173 http://www2.iro.umontreal.ca/~gnutra/po/maint/bison/ to
9174 http://www.iro.umontreal.ca/translation/maint/bison/ to avoid
9175 redirection glitches. Problem reported by twlevo@xs4all.nl.
9176
9177 2005-03-20 Paul Eggert <eggert@cs.ucla.edu>
9178
9179 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Don't put options
9180 after operands; POSIX says this isn't portable for the c99 command.
9181
9182 2005-03-18 Paul Eggert <eggert@cs.ucla.edu>
9183
9184 * tests/glr-regression.at (glr-regr2a.y): Try to dump core
9185 immediately if a data overrun has occurred; this may help us track
9186 down what may be a spurious failure on MacOS.
9187
9188 2005-03-17 Paul Eggert <eggert@cs.ucla.edu>
9189
9190 Respond to problems reported by twlevo@xs4all.nl.
9191
9192 * bootstrap: Use "trap - 0" rather than the unportable "trap 0".
9193
9194 * src/vcg.h: Comment fix.
9195 * src/vcg_defaults.h: Parenthesize macro bodies to make them safe.
9196 (G_CMAX): Change to -1 instead of INT_MAX.
9197
9198 * data/yacc.c (yyparse): Omit spaces before #line.
9199
9200 2005-03-15 Paul Eggert <eggert@cs.ucla.edu>
9201
9202 * src/tables.c (state_number_to_vector_number): Put it inside an
9203 "#if 0", since it's not currently used. Problem reported by
9204 Roland McGrath.
9205
9206 2005-03-06 Paul Eggert <eggert@cs.ucla.edu>
9207
9208 * src/output.c (escaped_output): Renamed from
9209 escaped_file_name_output, since we now use it for symbol tags as
9210 well. All uses changed.
9211 (symbol_destructors_output, symbol_printers_output):
9212 Escape symbol tags too.
9213 Problem reported by Matyas Forstner in
9214 <http://lists.gnu.org/archive/html/bug-bison/2005-03/msg00009.html>.
9215
9216 * src/muscle_tab.c (muscle_code_grow): Don't quote numbers; it's
9217 not needed.
9218 * src/output.c (user_actions_output, token_definitions_output,
9219 symbol_destructors_output, symbol_printers_output): Likewise.
9220 * src/reader.c (prologue_augment): Likewise.
9221 * src/scan-gram.l (handle_action_dollar, handle_action_at): Likewise.
9222
9223 * src/vcg.c (output_edge): Don't quote linestyle arg.
9224 Problem reported by twlevo@xs4all.nl.
9225
9226 2005-02-28 Paul Eggert <eggert@cs.ucla.edu>
9227
9228 * doc/bison.texinfo (Semantic Tokens): Fix scoping problem in
9229 example, reported by Derek M Jones. Also, make the example even
9230 more outrageous, to better illustrate how bad the problem is.
9231
9232 2005-02-24 Paul Eggert <eggert@cs.ucla.edu>
9233
9234 * doc/bison.texinfo (Mfcalc Symtab): Correct the prototype for
9235 putsym. Typo reported by Sebastian Piping.
9236
9237 2005-02-23 Paul Eggert <eggert@cs.ucla.edu>
9238
9239 * doc/bison.texinfo (Language and Grammar): some -> same
9240 (Epilogue): int he -> in the
9241 Typos reported by Sebastian Piping via Justin Pence.
9242
9243 2005-02-07 Paul Eggert <eggert@cs.ucla.edu>
9244
9245 * tests/glr-regression.at (Improper handling of embedded actions
9246 and dollar(-N) in GLR parsers): Renamed from "Improper handling of
9247 embedded actions and $-N in GLR parsers", work around an Autoconf bug
9248 with dollar signs in test names.
9249 * tests/input.at (Invalid dollar-n): Renamed from "Invalid \$n",
9250 for a similar reason.
9251
9252 2005-01-28 Paul Eggert <eggert@cs.ucla.edu>
9253
9254 * src/vcg.c (output_graph): G_VIEW -> normal_view in case someone
9255 wants to redefine G_VIEW.
9256
9257 2005-01-27 Paul Eggert <eggert@cs.ucla.edu>
9258
9259 * src/vcg.c (get_view_str): Remove case for normal_view.
9260 Problem reported by twlevo@xs4all.nl.
9261
9262 2005-01-24 Paul Eggert <eggert@cs.ucla.edu>
9263
9264 * configure.ac (O0CFLAGS, O0CXXFLAGS): Fix quoting bug.
9265 Problem reported by twlevo@xs4all.nl.
9266
9267 * doc/bison.texinfo: Change @dircategory from "GNU programming
9268 tools" to "Software development". Requested by Richard Stallman
9269 via Karl Berry.
9270
9271 2005-01-23 Paul Eggert <eggert@cs.ucla.edu>
9272
9273 * tests/c++.at (AT_CHECK_DOXYGEN): Don't use options after operands.
9274 Problem reported by twlevo@xs4all.nl.
9275
9276 2005-01-21 Paul Eggert <eggert@cs.ucla.edu>
9277
9278 * data/yacc.c (YYCOPY, yystpcpy, yyparse): Remove "register"
9279 keyword; it's not needed with modern compilers, and it doesn't
9280 affect correctness with older compilers. Suggested by
9281 twlevo@xs4all.nl.
9282
9283 2005-01-17 Paul Eggert <eggert@cs.ucla.edu>
9284
9285 * data/glr.c (yyuserAction): Add "default: break;" case to pacify
9286 gcc -Wswitch-default.
9287 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
9288 * data/yacc.c (yyparse): Likewise.
9289
9290 2005-01-12 Paul Eggert <eggert@cs.ucla.edu>
9291
9292 * src/system.h (OUTPUT_EXT, TAB_EXT): Define only if not defined
9293 already. Let config.h define any nonstandard values.
9294
9295 2005-01-10 Paul Eggert <eggert@cs.ucla.edu>
9296
9297 * tests/calc.at (_AT_DATA_CALC_Y): Use alarm (100), not alarm (10),
9298 for the benefit of slower hosts. Problem reported by
9299 Nelson H. F. Beebe.
9300
9301 2005-01-07 Paul Eggert <eggert@cs.ucla.edu>
9302
9303 * data/yacc.c (yyparse): Pacify non-GCC compilers about yyerrorlab
9304 being defined and not used.
9305 * data/lalr1.cc (yyparse): Likewise.
9306 Use "if (false)" rather than "if (0)".
9307
9308 2005-01-05 Paul Eggert <eggert@cs.ucla.edu>
9309
9310 * TODO: Mention that we should allow NUL bytes in tokens.
9311
9312 2005-01-02 Paul Eggert <eggert@cs.ucla.edu>
9313
9314 * src/scan-skel.l (<<EOF>>): Don't close standard output.
9315 Problem reported by Hans Aberg.
9316
9317 2005-01-01 Paul Eggert <eggert@cs.ucla.edu>
9318
9319 * src/getargs.c (version): Happy new year; update overall
9320 program copyright date from 2004 to 2005.
9321
9322 * src/scan-skel.l ("@output ".*\n): Don't close standard output.
9323 Problem reported by Hans Aberg.
9324 * tests/output.at (AT_CHECK_OUTPUT): New arg SHELLIO.
9325 (Output file names.): Add a test for the case when standard output
9326 is closed.
9327
9328 2004-12-26 Paul Eggert <eggert@cs.ucla.edu>
9329
9330 * doc/bison.texinfo (@copying): Update FDL version number to 1.2,
9331 to fix an oversight in the Bison 2.0 manual.
9332
9333 2004-12-25 Paul Eggert <eggert@cs.ucla.edu>
9334
9335 * NEWS: Version 2.0. Reformat the existing news items since
9336 1.875, so that related items are grouped together.
9337 * configure.ac (AC_INIT): Bump version to 2.0.
9338 * src/parse-gram.c, src/parse-gram.h: Regenerate with 2.0.
9339
9340 * tests/torture.at (Exploding the Stack Size with Alloca): Set
9341 YYSTACK_USE_ALLOCA to 1 if __GNUC__ or alloca are defined;
9342 otherwise, we're not testing alloca. Unfortunately there's no
9343 simple way to consult HAVE_ALLOCA here.
9344
9345 * data/lalr1.cc (yydestruct_): Pacify unused variable warning
9346 for yymsg, too.
9347
9348 * src/LR0.c (new_itemsets): Use memset rather than zeroing by
9349 hand. This avoids a warning about comparing int to size_t when
9350 GCC warnings are enabled.
9351
9352 2004-12-22 Paul Eggert <eggert@cs.ucla.edu>
9353
9354 * NEWS: Bison-generated parsers no longer default to using the
9355 alloca function (when available) to extend the parser stack, due
9356 to widespread problems in unchecked stack-overflow detection.
9357 * data/glr.c (YYMAXDEPTH): Remove undef when zero. It's the user's
9358 responsibility to set it to a positive value. This lets the user
9359 specify a value that is not a preprocessor constant.
9360 * data/yacc.c (YYMAXDEPTH): Likewise.
9361 (YYSTACK_ALLOC): Define only if YYSTACK_USE_ALLOCA is nonzero.
9362 * doc/bison.texinfo (Stack Overflow): YYMAXDEPTH no longer needs
9363 to be a compile-time constant. However, explain the constraints on it.
9364 Also, explain the constraints on YYINITDEPTH.
9365 (Table of Symbols): Explain that alloca is no longer the default.
9366 Explain the user's responsibility if they define YYSTACK_USE_ALLOCA
9367 to 1.
9368
9369 * doc/bison.texinfo (Location Default Action): Mention that n must
9370 be zero when k is zero. Suggested by Frank Heckenbach.
9371
9372 2004-12-22 Akim Demaille <akim@epita.fr>
9373
9374 * data/lalr1.cc (parser::token_number_type, parser::rhs_number_type)
9375 (parser::state_type, parser::semantic_type, parser::location_type):
9376 Private, not public.
9377 (parser::parse): Return ints, not bool.
9378 Returning a bool introduces a problem: 0 corresponds to false, and
9379 it seems weird to return false on success. Returning true changes
9380 the conventions for yyparse.
9381 Alternatively we could return void and send an exception.
9382 There is no clear consensus (yet?).
9383 (state_stack, semantic_stack, location_stack): Rename as...
9384 (state_stack_type, semantic_stack_type, location_stack_type): these.
9385 Private, not public.
9386 * tests/c++.at: New.
9387 * tests/testsuite.at, tests/Makefile.am: Adjust.
9388
9389 2004-12-21 Akim Demaille <akim@epita.fr>
9390
9391 * data/lalr1.cc (parser::parse): Return a bool instead of an int.
9392
9393 2004-12-21 Akim Demaille <akim@epita.fr>
9394
9395 Don't impose std::string for filenames.
9396
9397 * data/lalr1.cc (b4_filename_type): New.
9398 (position::filename): Use it.
9399 (parser.hh): Move the inclusion of stack.hh and location.hh below
9400 the user code, so that needed headers for the filename type can be
9401 included first.
9402 Forward declare them before the user code.
9403 * tests/Makefile.am (check-local, installcheck-local): Pass
9404 TESTSUITEFLAGS to the TESTSUITE.
9405
9406 2004-12-20 Akim Demaille <akim@epita.fr>
9407
9408 Use more STL like names: my_class instead of MyClass.
9409
9410 * data/lalr1.cc (LocationStack, LocationType, RhsNumberType)
9411 (SemanticStack, SemanticType, StateStack, StateType)
9412 (TokenNumberType, Stack, Slice, Traits, Parser::location)
9413 (Parser::value): Rename as...
9414 (location_stack, location_type, rhs_number_type, semantic_stack)
9415 (semantic_type, state_stack, state_type, token_number_type, stack)
9416 (slice, traits, parser::yylloc, parser::yylval): these.
9417
9418 * tests/calc.at, tests/regression.at, tests/actions.at: Adjust.
9419
9420 2004-12-19 Paul Eggert <eggert@cs.ucla.edu>
9421
9422 * data/glr.c (YYLLOC_DEFAULT): Use GNU spacing conventions.
9423 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
9424
9425 2004-12-17 Paul Eggert <eggert@cs.ucla.edu>
9426
9427 Remove uses of 'short int' and 'unsigned short int'. This raises
9428 some arbitrary limits. It uses more memory but nowadays that's
9429 not much of an issue.
9430
9431 This change does not affect the generated parsers; that's a different
9432 task, as some users will want to conserve memory there.
9433
9434 Ideally we should use size_t to represent all object counts, and
9435 something like ptrdiff_t to represent signed differences of object
9436 counts; but that will require more code-cleanup than I have the
9437 time to do right now.
9438
9439 * src/LR0.c (allocate_itemsets, new_itemsets, save_reductions):
9440 Use size_t, not int or short int, to count objects.
9441 * src/closure.c (nritemset, closure): Likewise.
9442 * src/closure.h (nritemset, closure): Likewise.
9443 * src/nullable.c (nullable_compute): Likewise.
9444 * src/print.c (print_core): Likewise.
9445 * src/print_graph.c (print_core): Likewise.
9446 * src/state.c (state_compare, state_hash): Likewise.
9447 * src/state.h (struct state): Likewise.
9448 * src/tables.c (default_goto, goto_actions): Likewise.
9449
9450 * src/gram.h (rule_number, rule): Use int, not short int.
9451 * src/output.c (prepare_rules): Likewise.
9452 * src/state.h (state_number, STATE_NUMBER_MAXIMUM, transitions,
9453 errs, reductions): Likewise.
9454 * src/symtab.h (symbol_number, SYMBOL_NUMBER_MAXIMUM, struct symbol):
9455 Likewise.
9456 * src/tables.c (vector_number, tally, action_number,
9457 ACTION_NUMBER_MINIMUM): Likewise.
9458 * src/output.c (muscle_insert_short_int_table): Remove.
9459
9460 2004-12-17 Akim Demaille <akim@epita.fr>
9461
9462 * data/lalr1.cc: Extensive Doxygenation.
9463 (error_): Rename as...
9464 (error): this, since it is visible to the user.
9465 Adjust callers.
9466 (Parser::message): Now an automatic variable from...
9467 (Parser::yyreport_syntax_error_): here.
9468 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust to
9469 Parser::error.
9470 * tests/input.at: Escape $.
9471
9472 2004-12-16 Paul Eggert <eggert@cs.ucla.edu>
9473
9474 * data/glr.c (b4_lhs_value, b4_rhs_value, b4_rhs-location):
9475 Parenthesize rhs to avoid obscure problems with mistakes like
9476 "foo$$bar = foo$1bar;". Problem reported by twlevo at xs4all.
9477 * data/lalr1.cc (b4_lhs_value, b4_rhs_value, b4_lhs_location,
9478 b4_rhs_location): Likewise.
9479 * data/yacc.c (b4_lhs_value, b4_rhs_value, b4_lhs_location,
9480 b4_rhs_location): Likewise.
9481
9482 2004-12-16 Akim Demaille <akim@epita.fr>
9483
9484 * data/lalr1.cc (yyreport_syntax_error_): Catch up with glr.c and
9485 yacc.c: be sure to stay within yycheck_.
9486 * tests/actions.at: Re-enable C++ tests.
9487
9488 2004-12-16 Akim Demaille <akim@epita.fr>
9489
9490 * src/print_graph.c (print_graph): Remove layoutalgorithm uses for
9491 real.
9492
9493 2004-12-16 Akim Demaille <akim@epita.fr>
9494
9495 Use #define to handle the %name-prefix.
9496
9497 * data/glr.c, data/yacc.c: Comment changes.
9498 * data/lalr1.cc (yylex): Use #define to select the name of yylex,
9499 so that one can refer to yylex in the parser file, and have it
9500 renamed, as is the case with other skeletons.
9501
9502 2004-12-16 Akim Demaille <akim@epita.fr>
9503
9504 Move lalr1.cc internals into yy*.
9505
9506 * data/lalr1.cc (semantic_stack_, location_stack_, state_stack_)
9507 (semantic_stack_, location_stack_, pact_, pact_ninf_, defact_)
9508 (pgoto_, defgoto_, table_, table_ninf_, check_, stos_, r1_, r2_)
9509 (name_, rhs_, prhs_, rline_, token_number_, eof_, last_, nnts_)
9510 (empty_, final_, terror_, errcode_, ntokens_)
9511 (user_token_number_max_, undef_token_, n_, len_, state_, nerrs_)
9512 (looka_, ilooka_, error_range_, nerrs_):
9513 Rename as...
9514 (yysemantic_stack_, yylocation_stack_, yystate_stack_)
9515 (yysemantic_stack_, yylocation_stack_, yypact_, yypact_ninf_)
9516 (yydefact_, yypgoto_, yydefgoto_, yytable_, yytable_ninf_)
9517 (yycheck_, yystos_, yyr1_, yyr2_, yyname_, yyrhs_, yyprhs_)
9518 (yyrline_, yytoken_number_, yyeof_, yylast_, yynnts_, yyempty_)
9519 (yyfinal_, yyterror_, yyerrcode_, yyntokens_)
9520 (yyuser_token_number_max_, yyundef_token_, yyn_, yylen_, yystate_)
9521 (yynerrs_, yylooka_, yyilooka_, yyerror_range_, yynerrs_):
9522 these.
9523
9524 2004-12-15 Paul Eggert <eggert@cs.ucla.edu>
9525
9526 Fix some problems reported by twlevo at xs4all.
9527 * src/symtab.c (symbol_new): Report an error if the input grammar
9528 contains too many symbols. This is better than calling abort() later.
9529 * src/vcg.h (enum layoutalgorithm): Remove. All uses removed.
9530 (struct node, struct graph):
9531 Rename member expand to stretch. All uses changed.
9532 (struct graph): Remove member layoutalgorithm. All uses removed.
9533 * src/vcg.c (get_layoutalgorithm_str): Remove. All uses removed.
9534 * src/vcg_defaults.h (G_STRETCH): Renamed from G_EXPAND.
9535 All uses changed.
9536 (N_STRETCH): Rename from N_EXPAND. All uses changed.
9537
9538 2004-12-15 Akim Demaille <akim@epita.fr>
9539
9540 * data/lalr1.cc: Normalize /** \brief ... */ to ///.
9541 Add more Doxygen comments.
9542 (symprint_, stack_print_, reduce_print_, destruct_, pop)
9543 (report_syntax_error_, translate_): Rename as...
9544 (yysymprint_, yystack_print_, yyreduce_print_, yydestruct_)
9545 (yypop_, yyreport_syntax_error_, yytranslate_): this.
9546
9547 2004-12-15 Akim Demaille <akim@epita.fr>
9548
9549 * data/lalr1.cc (lex_): Rename as...
9550 (yylex_): this.
9551 Move the trace here.
9552 Take the %name-prefix into account.
9553 Reported by Alexandre Duret-Lutz.
9554
9555 2004-12-15 Akim Demaille <akim@epita.fr>
9556
9557 Simplify the C++ parser constructor.
9558
9559 * data/lalr1.cc (debug_): Rename as...
9560 (yydebug_): so that the parser's internals are always in the yy*
9561 pseudo namespace.
9562 Adjust uses.
9563 (b4_parse_param_decl): Remove the leading comma as it is now only
9564 called as unique argument list.
9565 (Parser::Parser): Remove the constructor accepting a location and
9566 an initial debugging level.
9567 Remove from the other ctor the argument for the debugging level.
9568 (debug_level_type, debug_level, set_debug_level): New.
9569
9570 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust
9571 constructor calls.
9572
9573 2004-12-15 Akim Demaille <akim@epita.fr>
9574
9575 Remove b4_root related material: failure experiment
9576 (which goal was to allow to derive from a class).
9577
9578 * data/lalr1.cc (b4_root, b4_param, b4_constructor): Remove
9579 definitions and uses.
9580
9581 2004-12-14 Paul Eggert <eggert@cs.ucla.edu>
9582
9583 * data/glr.c (struct yyGLRStack): yyerror_range now has 3 items,
9584 not 2, since it's not portable to subtract 1 from the start of an
9585 array. The new item 0 is never set or used. All uses changed.
9586
9587 (yyrecoverSyntaxError): Use YYLLOC_DEFAULT instead of assuming
9588 the default definition of YYLLOC_DEFAULT. Problem reported
9589 by Frank Heckenbach.
9590
9591 2004-12-12 Paul Eggert <eggert@cs.ucla.edu>
9592
9593 * data/glr.c (YYRHSLOC): Don't have two definitions, one for
9594 the normal case and one for the error case. Just use the
9595 first one uniformly. Problem reported by Frank Heckenbach.
9596 (YYLLOC_DEFAULT): Use the conventions of yacc.c, so we can
9597 use exactly the same macro in both places.
9598 (yyerror_range): Now of type yyGLRStackItem, not YYLTYPE,
9599 so that the normal-case YYRHSLOC works for the error case too.
9600 All uses changed.
9601 * data/yacc.c (YYRHSLOC): New macro, taken from glr.c.
9602 (YYLLOC_DEFAULT): Use the same macro as glr.c.
9603 * doc/bison.texinfo (Location Default Action): Don't claim that
9604 we have an array of locations. Use the same macro for both glr
9605 and lalr parsers. Mention YYRHSLOC. Mention what happens when
9606 the index is 0.
9607
9608 2004-12-10 Paul Eggert <eggert@cs.ucla.edu>
9609
9610 * HACKING: Update email addresses to send announcements to.
9611
9612 * configure.ac (AC_INIT): Bump version to 1.875f.
9613
9614 2004-12-10 Paul Eggert <eggert@cs.ucla.edu>
9615
9616 * NEWS: Version 1.875e.
9617 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875e.
9618
9619 * src/scan-skel.l: Include "complain.h", for "fatal".
9620
9621 * src/relation.h (relation_print, relation_digraph):
9622 Relation sizes are of type relation_node, not size_t (this is
9623 merely a doc fix, since the two types are equivalent).
9624 (relation_transpose): Relation sizes are of type relation_node,
9625 not int.
9626 * src/relation.c: Likewise.
9627 (top, infinity): Now of type relation_node, not int.
9628 (traverse, relation_transpose): Use relation_node, not int.
9629
9630 * data/glr.c (yyuserAction, yyrecoverSyntaxError): Mark args
9631 with ATTRIBUTE_UNUSED if they're not used, to avoid GCC warning.
9632 (yyparse): Remove unused local introduced in 2004-10-25 patch.
9633
9634 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): New arg
9635 specifying whether the test should be skipped. Use it tp
9636 specify that the [%defines %skeleton "lalr1.cc"] tests currently
9637 fail on some hosts, and should be skipped.
9638
9639 2004-12-08 Paul Eggert <eggert@cs.ucla.edu>
9640
9641 * src/system.h (CALLOC, MALLOC, REALLOC): Remove. All callers
9642 changed to use xcalloc, xnmalloc, xnrealloc, respectively,
9643 unless otherwise specified below.
9644
9645 * src/LR0.c (allocate_itemsets): Use xnmalloc, not xcalloc,
9646 to allocate kernel_base, kernel_items, kernel_size, since
9647 they needn't be initialized to 0.
9648 (allocate_storgae): Likewise, for shiftset, redset, shift_symbol.
9649 * src/closure.c (new_closure): Likewise, for itemset.
9650 * src/derives.c (derives_compute): Likewise, for delts, derives, q.
9651 * src/lalr.c (set_goto_map): Likewise, for temp_map.
9652 (initialize_F): Likewise, for reads, edge, reads[i], includes[i].
9653 (build_relations): Likewise for edge, states1, includes.
9654 * src/nullable.c (nullable_compute): Likewise, for squeue, relts.
9655 * src/reader.c (packgram): Likewise, for ritem, rules.
9656 * src/reduce.c (nonterminals_reduce): Likewise for nontermmap.
9657 * src/relation.c (relation_digraph): Likewise for VERTICES.
9658 (relation_transpose): Likewise for new_R, end_R.
9659 * src/symtab.c (symbols_token_translations_init): Likewise for
9660 token_translations.
9661 * src/tables.c (save_row): Likewise for froms, tos, conflict_tos.
9662 (token_actions): Likewise for yydefact, actrow, conflrow,
9663 conflict_list.
9664 (save_column): Likewise for froms[symno], tos[symno].
9665 (goto_actions): Likewise for state_count.
9666 (pack_table): Likewise for base, pos, check.
9667 (tables_generate): Likewise for width.
9668
9669 * src/LR0.c (set_states): Don't reuse kernel_size and kernel_base
9670 for initial core. Just have a separate core, so we needn't worry
9671 about whether kernel_size and kernel_base are initialized.
9672
9673 * src/LR0.c (shift_symbol, redset, shiftset, kernel_base,
9674 kernel_size, kernel_items): Remove unnecessary initialization.
9675 * src/conflicts.c (conflicts): Likewise.
9676 * src/derives.c (derives): Likewise.
9677 * src/muscle_tablc (muscle_insert): Likewise.
9678 * src/relation.c (relation_digraph): Likewise.
9679 * src/tables.c (froms, tos, conflict_tos, tally, width, actrow, order,
9680 conflrow, conflict_table, conflict_list, table, check):
9681 Likewise.
9682
9683 * src/closure.c (new_closure): Arg is of type unsigned int, not int.
9684 This is because all callers pass unsigned int.
9685 * src/closure.h (new_closure): Likewise.
9686
9687 * src/lalr.c (initialize_F): Initialize reads[i] in all cases.
9688 (build_relations): Initialize includes[i] in all cases.
9689 * src/reader.c (packgram): Always initialize rules[ruleno].prec
9690 and rules[ruleno].precsym. Initialize members in order.
9691 * src/relation.c (relation_transpose): Always initialize new_R[i]
9692 and end_R[i].
9693 * src/table.c (conflict_row): Initialize 0 at end of conflict_list.
9694
9695 * src/output.c (prepare_actions): Pass 0 instead of conflict_list[0];
9696 conflict_list[0] was always 0, but now it isn't initialized.
9697
9698 * src/table.c (table_grow): When conflict_table grew, the grown
9699 area wasn't cleared. Fix this.
9700
9701 * lib/.cvsignore: Add strdup.c, strdup.h.
9702 * m4/.cvsignore: Add strdup.m4.
9703
9704 2004-12-07 Paul Eggert <eggert@cs.ucla.edu>
9705
9706 * src/lalr.h (GOTO_NUMBER_MAXIMUM): New macro.
9707 * src/lalr.c (set_goto_map): Don't allow ngotos to equal
9708 GOTO_NUMBER_MAXIMUM, since we occasionally compute
9709 ngotos + 1 without checking for overflow.
9710 (build_relations): Use END_NODE, not -1, to denote end of edges.
9711 * src/lalr.c (set_goto_map, map_goto, initialize_F, add_loopback_edge,
9712 build_relations): Use goto_number, not int, for goto numbers.
9713 * src/tables.c (save_column, default_goto): Likewise.
9714
9715 2004-11-23 Akim Demaille <akim@epita.fr>
9716
9717 * data/lalr1.cc (YYSTYPE): Define it as is done for C, instead
9718 of #defining from yystype.
9719 Don't typedef yystype, C++ does not need it.
9720 This lets it possible to forward declare it as union.
9721
9722 2004-11-23 Paul Eggert <eggert@cs.ucla.edu>
9723
9724 * bootstrap (gnulib_modules): Add extensions.
9725 Problem reported by Jim Meyering.
9726
9727 2004-11-22 Paul Eggert <eggert@cs.ucla.edu>
9728
9729 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c,
9730 src/lalr.c, src/nullable.c, src/relation.c, src/scan-skel.l,
9731 src/system.h, src/tables.c: XFREE -> free, to accommodate
9732 recent change to gnulib xalloc.h.
9733 Problem reported by Jim Meyering.
9734
9735 2004-11-17 Akim Demaille <akim@epita.fr>
9736
9737 * data/lalr1.cc (symprint_): Use cdebug_ to avoid warnings.
9738
9739 2004-11-17 Akim Demaille <akim@epita.fr>,
9740 Alexandre Duret-Lutz <adl@gnu.org>
9741
9742 * data/lalr1.cc (Parser::yycdebug_): New, a pointer, to allow
9743 changes.
9744 (YYCDEBUG): Adjust.
9745 Use it instead of cdebug_.
9746 (Parser::debug_stream, Parser::set_debug_stream): New.
9747 (Parser::symprint_): Define cdebug_ for temporary backward
9748 compatibility.
9749 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use
9750 debug_stream ().
9751
9752 2004-11-17 Akim Demaille <akim@epita.fr>
9753
9754 * data/lalr1.cc (Parser:print_): Remove, use %printer instead.
9755 * tests/regression.at (_AT_DATA_DANCER_Y): Adjust.
9756 * tests/calc.at (_AT_DATA_CALC_Y): Ditto.
9757 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
9758
9759 2004-10-27 Paul Eggert <eggert@cs.ucla.edu>
9760
9761 * data/glr.c (yyloc_default): Remove; not used.
9762 Problem reported by Frank Heckenbach.
9763
9764 2004-10-25 Akim Demaille <akim@epita.fr>
9765
9766 * data/glr.c (YYRHSLOC): Move its definition next to its uses.
9767 Introduce another definition to address simple location arrays.
9768 (yyGLRStack): New member: yyerror_range.
9769 (yyrecoverSyntaxError, yyparse): Update it.
9770 (yyrecoverSyntaxError): Use it when shifting the error token to
9771 have an accurate range, equivalent to the one computed by both
9772 yacc.c and lalr1.cc.
9773 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Change its yylex so
9774 that column numbers start at column 0, as per GNU Coding
9775 Standards, the others tests, and the doc.
9776 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT_WITH_LOC):
9777 Adjust to the above change (first column is 0).
9778 And adjust the location of the "<error>", now covering the whole
9779 line.
9780
9781 2004-10-22 Akim Demaille <akim@epita.fr>
9782 and Paul Eggert <eggert@cs.ucla.edu>
9783
9784 Remove some arbitrary limits on goto numbers and relations.
9785 * src/lalr.c (goto_map, ngotos, from_state, to_state): Omit
9786 initial values, since they're never used.
9787 (set_goto_map): ngotos is now unsigned, so test for overflow
9788 by seeing whether it wraps around to zero.
9789 * src/lalr.h (goto_number): Now size_t, not short int.
9790 (GOTO_NUMBER_MAXIMUM): Remove.
9791 * src/relation.c (relation_print, traverse, relation_transpose):
9792 Check for END_NODE rather than looking at sign.
9793 * src/relation.h (END_NODE): New macro.
9794 (relation_node): Now size_t, not short int.
9795
9796 2004-10-22 Paul Eggert <eggert@cs.ucla.edu>
9797
9798 * doc/bison.texinfo (Language and Grammar): In example, "int" is a
9799 keyword, not an identifier. Problem reported by Baron Schwartz in
9800 <http://lists.gnu.org/archive/html/bug-bison/2004-10/msg00017.html>.
9801
9802 2004-10-11 Akim Demaille <akim@epita.fr>
9803
9804 * src/symtab.c (symbol_check_alias_consistency): Also check
9805 type names, destructors, and printers.
9806 Reported by Alexandre Duret-Lutz.
9807 Recode the handling of associativity and precedence in terms
9808 of symbol_precedence_set.
9809 Accept no redeclaration at all, not even equal to the previous
9810 value.
9811 (redeclaration): New.
9812 Use it to factor redeclaration complaints.
9813 (symbol_make_alias): Don't set the type of the alias, let
9814 symbol_check_alias_consistency do it as for other features.
9815 * src/symtab.h (symbol): Add new member prec_location, and
9816 type_location.
9817 * src/symtab.c (symbol_precedence_set, symbol_type_set): Set them.
9818 * tests/input.at (Incompatible Aliases): New.
9819
9820 2004-10-09 Paul Eggert <eggert@cs.ucla.edu>
9821
9822 .cvsignore fixes to accommodate gnulib changes,
9823 and the practice of naming build directories "_build".
9824 * .cvsignore: Add "_*". Sort.
9825 * lib/.cvsignore: Add getopt_.h, xalloc-die.c.
9826 * m4/.cvsignore: Add "*_gl.m4".
9827
9828 2004-10-06 Akim Demaille <akim@epita.fr>
9829
9830 * src/parse-gram.y (add_param): Fix the truncation of trailing
9831 spaces.
9832
9833 2004-10-05 Akim Demaille <akim@epita.fr>
9834
9835 In Bison 1.875's yacc.c, YYLLOC_DEFAULT was called regardless
9836 whether the reducion was empty or not. This leaves room to
9837 improve the use of YYLLOC_DEFAULT in such a case.
9838 lalr1.cc is still experimental, so changing this is acceptable.
9839 And finally, there are probably not many users who changed the
9840 handling of locations in GLR, so changing is admissible too.
9841
9842 * data/glr.c, data/lalr1.cc, data/yacc.c (YYLLOC_DEFAULT): On an
9843 empty reduction, set @$ to an empty location ending the previously
9844 stacked symbol.
9845 Adjust uses to make sure the code is triggered on empty
9846 reductions.
9847 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust the
9848 expected output: empty reductions have empty locations.
9849
9850 2004-09-29 Akim Demaille <akim@epita.fr>
9851
9852 * data/lalr1.cc: Move towards a more standard C++ coding style
9853 for templates: Class < T > -> Class<T>.
9854
9855 2004-09-29 Akim Demaille <akim@epita.fr>
9856
9857 * data/lalr1.cc: Reinstall the former ctor, for sake of
9858 compatibility, but warn it will be removed.
9859 Move towards a more standard C++ coding style (i.e., type *var ->
9860 type* var).
9861
9862 2004-09-27 Paul Eggert <eggert@cs.ucla.edu>
9863
9864 * src/parse-gram.y (add_param): Rewrite to avoid strchr,
9865 since it's less likely to work if NULs are involved in the future.
9866
9867 2004-09-27 Akim Demaille <akim@epita.fr>
9868
9869 * data/yacc.c (YY_LOCATION_PRINT): Fix its default declaration.
9870
9871 2004-09-27 Akim Demaille <akim@epita.fr>
9872
9873 * data/lalr1.cc (b4_parse_param_decl_1): New.
9874 (b4_parse_param_decl): Use it to have different names between attribute
9875 and argument names.
9876 (b4_cc_constructor_call): Likewise.
9877
9878 2004-09-24 Akim Demaille <akim@epita.fr>
9879
9880 * src/parse-gram.y (add_param): Strip the leading and trailing
9881 blanks from a formal argument declaration.
9882 (YY_LOCATION_PRINT): New.
9883
9884 2004-09-24 Akim Demaille <akim@epita.fr>
9885
9886 * data/c.m4 (b4_yysymprint_generate): Move the YYINPUT invocation
9887 after the location.
9888
9889 2004-09-24 Akim Demaille <akim@epita.fr>
9890
9891 * doc/bison.texinfo (Table of Symbols): Sort.
9892
9893 2004-09-21 Akim Demaille <akim@epita.fr>
9894
9895 * data/yacc.c, data/glr.c (b4_at_dollar, b4_dollar_dollar): Remove
9896 the useless parentheses.
9897 Suggested by Paul Eggert.
9898
9899 2004-09-20 Akim Demaille <akim@epita.fr>
9900
9901 Let the initial-action act on the look-ahead, and use it for the
9902 "initial push" (corresponding to an hypothetical beginning-of-file).
9903 And let lalr1.cc honor %initial-action.
9904
9905 * doc/bison.texinfo (Initial Action Decl): Clarify, and add an
9906 example.
9907 * data/lalr1.cc (Parser::initlocation_): Remove, bad experiment.
9908 (Parser::Parser): Remove the ctor that used to initialize it.
9909 (Parser::parse): Like in the other skeletons, issue the "starting
9910 parse" message before any action.
9911 Honor %initial-action.
9912 Initialize the stacks with the lookahead.
9913 * data/yacc.c: Let $$ and @$ in %initial-action designate the
9914 look-ahead.
9915 Push them in the stacks.
9916 * tests/actions.at, tests/calc.at: Adjust the C++ ctor invocations.
9917
9918 2004-09-20 Akim Demaille <akim@epita.fr>
9919
9920 * doc/bison.texinfo (Initial Action Decl): New.
9921
9922 2004-09-20 Akim Demaille <akim@epita.fr>
9923
9924 * data/yacc.c (YY_LOCATION_PRINT): Use YYLTYPE_IS_TRIVIAL as a
9925 clearer criterion to define it.
9926 (parse): Initialize the initial location when YYLTYPE_IS_TRIVIAL.
9927 When reducing on an empty RHS, use the latest stacked location as
9928 location.
9929 yylloc is not always available.
9930 * data/glr.c: Likewise.
9931 Also, honor initial-actions.
9932
9933 2004-09-20 Akim Demaille <akim@epita.fr>
9934
9935 * data/yacc.c (YY_LOCATION_PRINT): New.
9936 Define when we know YYLTYPE's structure, i.e., when the default
9937 YYLLOC_DEFAULT is used.
9938 * data/c.m4 (b4_yysymprint_generate): Use it.
9939 * data/lalr1.cc (YYLLOC_DEFAULT): Stop relying on the initial
9940 value of the result.
9941 (error_start_): Replace with...
9942 (error_range_): this location array.
9943 This allows to replace code relying on the implementation of
9944 locations by portable code.
9945 * data/yacc.c (yylerrsp): Replace with...
9946 (yyerror_range): this.
9947 Every time a token is popped, update yyerror_range[0], to have an
9948 accurate location for the error token.
9949 * data/glr.c (YY_LOCATION_PRINT): New.
9950 (yyprocessOneStack): Fix an invocation of YY_SYMBOL_PRINT:
9951 deference a pointer.
9952 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): No longer
9953 report the location in %printers.
9954
9955 * src/scan-skel.l: Instead of abort, report error messages to ease
9956 understanding skeleton scanning failures.
9957
9958 2004-09-16 Akim Demaille <akim@epita.fr>
9959
9960 * data/lalr1.cc (Stack::Iterator, Stack::ConstIterator): Rename as...
9961 (iterator, const_iterator): these, to be more in the C++ spirit.
9962 Also, return reverse iterators so that when displaying the stack
9963 we display its bottom first.
9964 (Parser::stack_print_, Parser::reduce_print_): Match the messages
9965 from yacc.c.
9966 We should probably use vector here though.
9967
9968 2004-09-16 Akim Demaille <akim@epita.fr>
9969
9970 Have more complete shift traces.
9971
9972 * data/yacc.c, data/lalr1.c, data/glr.c: Use YY_SYMBOL_PRINT
9973 to report Shifts instead of ad hoc YYDPRINTF invocations,
9974 including for the error token.
9975 * data/lalr1.cc (symprint_): Output the location.
9976 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): In C++, don't
9977 output the location within the %printer.
9978 Activate GLR tests, at least to make sure they compile properly.
9979 They still don't pass though.
9980 * tests/calc.at: Adjust expect verbose output, since now "Entering
9981 state..." is on a different line than the "Shifting" message.
9982
9983 2004-09-08 Akim Demaille <akim@epita.fr>
9984
9985 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Move the
9986 Bison directive from the Bison file to the invocation of this
9987 macro, so that these directives are passed to
9988 AT_BISON_OPTION_PUSHDEFS to get correct help macros.
9989 Use these helping macros (e.g., AT_LOC, AT_VAL and so forth).
9990 Move the AT_SETUP/AT_CLEANUP outside, to report as test title
9991 the extra Bison directives instead of the whole series.
9992 Change the grammar so that there are recoverable errors, and
9993 unrecoverable errors. Now we can have the parser give up before
9994 consuming the whole input. As a result we now can observe that
9995 the lookahead is freed when needed.
9996 Change the parser source to parse argv[1] instead of a hard coded
9997 string.
9998 Simplify yylex, and give a value and location to EOF.
9999 Simplify some invocations of AT_CHECK_PRINTER_AND_DESTRUCTOR that
10000 passed directives already coded in the file.
10001 Add some tests to check the location of "error".
10002 For some tests, the C++ parser is correct, and not yacc.c.
10003 For other tests, they provide different, but unsatisfying, values,
10004 so keep the C++ value so that at least one parser is "correct"
10005 according to the test suite.
10006 (Actions after errors): Remove, this is subsumed by the
10007 AT_CHECK_PRINTER_AND_DESTRUCTOR series.
10008
10009 2004-09-06 Akim Demaille <akim@epita.fr>
10010
10011 * data/lalr1.cc: Adjust the indentation of the labels.
10012 (Parser::pop): New.
10013 Use it.
10014
10015 2004-09-06 Akim Demaille <akim@epita.fr>
10016
10017 * data/yacc.cc, data/glr.cc (yydestruct): Accept an additional
10018 argument, an informative message.
10019 Call YY_SYMBOL_PRINT.
10020 Adjust all callers: integrate the associated YY_SYMBOL_PRINT.
10021 * data/lalr1.cc (destruct_): Likewise.
10022 In addition, no longer depend on b4_yysymprint_generate and
10023 b4_yydestruct_generate to generate these functions, do it "by
10024 hand".
10025
10026 2004-09-03 Akim Demaille <akim@epita.fr>
10027
10028 * data/glr.c, data/lalr1.cc, data/yacc.c: When YYABORT was
10029 invoked, yydestruct the lookahead.
10030 * tests/calc.at (Calculator $1): Update the expected lengths of
10031 traces: there is an added line for the discarded lookahead.
10032 * doc/bison.texinfo (Destructor Decl): Some rewording.
10033 Define "discarded" symbols.
10034
10035 2004-09-02 Akim Demaille <akim@epita.fr>
10036
10037 * data/lalr1.cc (translate_, destruct_): No reason to be static.
10038
10039 2004-09-02 Akim Demaille <akim@epita.fr>
10040
10041 * data/glr.c, yacc.c (YYDSYMPRINT): Remove, not used.
10042 (YYDSYMPRINTF): Rename as...
10043 (YY_SYMBOL_PRINT): this.
10044 * data/lalr1.cc (YY_SYMBOL_PRINT): New, modeled after the previous
10045 two.
10046 Use it instead of direct symprint_ calls.
10047 (yybackup): Tweak the "Now at end of input" case to match yacc.c's
10048 one.
10049
10050 2004-09-02 Akim Demaille <akim@epita.fr>
10051
10052 * data/lalr1.cc (b4_yysymprint_generate): New.
10053 (symprint_): New member function, defined when YYDEBUG.
10054 Use it consistently instead of token/nterm debugging output by
10055 hand.
10056 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust
10057 %printer calls to use cdebug_ when using lalr1.cc.
10058
10059 2004-08-30 Florian Krohm <florian@edamail.fishkill.ibm.com>
10060
10061 * data/glr.c: Guard the declarations of yypstack and yypdumpstack
10062 with #ifdef YYDEBUG.
10063
10064 2004-08-26 Akim Demaille <akim@epita.fr>
10065
10066 * doc/bison.texinfo (Implementing Loops): Rename as...
10067 (Implementing Gotos/Loops): this.
10068
10069 2004-08-13 Paul Eggert <eggert@cs.ucla.edu>
10070
10071 Adjust to latest gnulib.
10072 * bootstrap (gnulib_modules): Add xalloc-die.
10073 Set LC_ALL=C so that file names sort consistently.
10074 Prefer the gnulib copies of gettext.m4, glibc21.m4,
10075 inttypes_h.m4, lib-ld.m4, lib-prefix.m4, po.m4, stdint_h.m4,
10076 uintmax_t.m4, ulonglong.m4.
10077 (intl_files_to_remove): Add gettext.m4, lib-ld.m4, lib-prefix.m4,
10078 po.m4 since we are now using _gl.m4 instead.
10079
10080 2004-08-10 Florian Krohm <florian@edamail.fishkill.ibm.com>
10081
10082 * src/scan-action.l: Remove. Scanning of semantic actions is
10083 handled in scan-gram.l.
10084
10085 2004-08-07 Florian Krohm <florian@edamail.fishkill.ibm.com>
10086
10087 * src/scan-gram.l (handle_syncline): Use uniqstr_new not xstrdup.
10088
10089 * src/location.h (struct): The file member is a uniqstr.
10090 (equal_boundaries): Use UNIQSTR_EQ for comparison.
10091
10092 2004-07-22 Paul Eggert <eggert@cs.ucla.edu>
10093
10094 Fix bug with non-%union parsers that have printers or destructors,
10095 which led to a Bison core dump. Reported by Peter Fales in
10096 <http://lists.gnu.org/archive/html/bug-bison/2004-07/msg00014.html>.
10097
10098 * data/c.m4 (b4_symbol_actions): Don't assume %union was used.
10099 * data/lalr1.cc (yystype) [defined YYSTYPE]: Define to YYSTYPE,
10100 not to our own type.
10101 * src/output.c (symbol_destructors_output, symbol_printers_output):
10102 Don't assume %union.
10103 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR,
10104 AT_CHECK_PRINTER_AND_DESTRUCTOR): New argument
10105 UNION-FLAG. All callers changed.
10106 (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't assume %union.
10107 Use type char, not unsigned int, when declaring an array of char;
10108 this lets us remove a cast.
10109 (Printers and Destructors): Add non-%union test cases.
10110
10111 2004-06-21 Paul Eggert <eggert@cs.ucla.edu>
10112
10113 * doc/bison.texinfo: Minor editorial changes, mostly to the new
10114 GLR writeups. E.g., avoid frenchspacing and the future tense,
10115 change "lookahead" to "look-ahead", and change "wrt" to "with
10116 respect to".
10117
10118 2004-06-21 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
10119
10120 * doc/bison.texinfo (Merging GLR Parses, Compiler Requirements):
10121 New sections, split off from the GLR Parsers section. Put the new
10122 Simple GLR Parser near the start of the GLR section, for clarity.
10123 Rewrite connective text.
10124
10125 2004-06-21 Frank Heckenbach <frank@g-n-u.de>
10126
10127 * doc/bison.texinfo (Simple GLR Parsers): New section.
10128
10129 2004-06-21 Paul Eggert <eggert@cs.ucla.edu>
10130
10131 * NEWS, TODO, doc/bison.texinfo:
10132 Use "look-ahead" instead of "lookahead", to be consistent.
10133 * REFERENCES: Fix incorrect reference to DeRemer and Pennello,
10134 while we're fixing "look-ahead".
10135 * src/conflicts.c (shift_set): Renamed from shiftset.
10136 (look_ahead_set): Renamed from lookaheadset.
10137 * src/print.c: Likewise.
10138 * src/getargs.c (report_args): Add "look-ahead" as the new canonical
10139 name for "lookahead".
10140 (report_types, usage): Likewise.
10141 * src/getargs.h (report_look_ahead_tokens): Renamed from
10142 report_lookaheads.
10143 * src/lalr.c (compute_look_ahead_tokens): Renamed from
10144 compute_lookaheads.
10145 (state_look_ahead_tokens_count): Renamed from state_lookaheads_count.
10146 (look_ahead_tokens_print): Renamed from lookaheads_print.
10147 * src/state.c (state_rule_look_ahead_tokens_print): Renamed from
10148 state_rule_lookaheads_print.
10149 * src/state.h: Likewise.
10150 (reductions.look_ahead_tokens): Renamed from lookaheads.
10151 * tests/torture.at (AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR): Renamed from
10152 AT_DATA_LOOKAHEADS_GRAMMAR.
10153
10154 2004-06-03 Paul Eggert <eggert@cs.ucla.edu>
10155
10156 * README: Update location of patched M4 distribution.
10157
10158 2004-05-30 Albert Chin-A-Young <china@thewrittenword.com>
10159
10160 Don't assume the C++ compiler takes the same arguments as the C compiler
10161 (trivial change).
10162 * configure.ac (O0CXXFLAGS): New var.
10163 * tests/atlocal.in (CXXFLAGS): Use it.
10164
10165 2004-05-29 Paul Eggert <eggert@cs.ucla.edu>
10166
10167 Fix some "make check" problems with C++ reported by
10168 Albert Chin-A-Young for Tru64 C++ in this thread:
10169 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00049.html
10170
10171 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check for std::cerr.
10172 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
10173 Output to a .cc file for C++, not to a .c file.
10174 * tests/calc.at (AT_CHECK_CALC): Likewise.
10175 * tests/regression.at (AT_CHECK_DANCER): Likewise.
10176 * tests/local.at (AT_COMPILE_CXX): Default to OUTPUT.cc, not OUTPUT.c.
10177
10178 2004-05-28 Albert Chin-A-Young <china@thewrittenword.com>
10179
10180 * tests/calc.at, tests/actions.at: Workaround for SGI
10181 C++ compiler. (trivial change)
10182
10183 2004-05-27 Paul Eggert <eggert@cs.ucla.edu>
10184
10185 Spent a few hours checking out which prerequisite versions the
10186 current sources actually require. I went all the way back to
10187 Gettext 0.10.40, Automake 1.4, and Autoconf 2.57 and investigated
10188 a seemingly endless set of combinations of versions more recent
10189 than that. The bottom line is that the current sources require
10190 fairly recent versions of the build tools, and it'll be some work
10191 to change this.
10192 * configure.ac (AC_PREREQ): Increase from 2.58 to 2.59.
10193 (AM_INIT_AUTOMAKE): Increase from 1.7 to 1.8.
10194 (AM_GNU_GETTEXT_VERSION): Increase from 0.11.5 to 0.12.
10195 Add comments explaining why those particular versions are
10196 currently needed.
10197
10198 * src/parse-gram.y (lloc_default): Rewrite to avoid compiler bug
10199 in SGI MIPSpro 7.4.1m. Problem reported by Albert Chin-A-Young in
10200 <http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00037.html>.
10201
10202 * configure.ac (AC_PREREQ): Bump to 2.58, since 2.57 doesn't work
10203 (it fails with a Autoconf-without-aclocal-m4 diagnostic).
10204
10205 2004-05-26 Paul Eggert <eggert@cs.ucla.edu>
10206
10207 * configure.ac (AM_GNU_GETTEXT_VERSION): Lower it from 0.14.1 to
10208 0.11.5. Suggested by Bruno Haible.
10209 * bootstrap: Remove gettext version checking.
10210
10211 * doc/bison.texinfo (Decl Summary): Also mention that %union
10212 can depend on prerequisite types. Problem reported by Tim
10213 Van Holder.
10214
10215 2004-05-25 Paul Eggert <eggert@cs.ucla.edu>
10216
10217 * README: Mention GNU m4 1.4 bugs and Akim's patched version.
10218 * README-alpha: Don't tell people not to package this.
10219
10220 * bootstrap: Don't assume $(...) works; use `...` instead.
10221 Problem reported by Paul Hilfinger. Also, diagnose non-GNU
10222 gettext better.
10223
10224 * doc/bison.texinfo (Decl Summary, Bison Options): Clarify what's
10225 put into the -d output file, and mention what to do if YYSTYPE is
10226 defined as a macro.
10227
10228 2004-05-24 Paul Eggert <eggert@cs.ucla.edu>
10229
10230 Undo change made earlier today: it caused autopoint to not bring
10231 in ABOUT-NLS. Ouch. Instead, substitute our own diagnostic for
10232 autopoint's.
10233
10234 * bootstrap: Check that gettext version matches what's in
10235 configure.ac. Warn users to ignore robots.txt ERROR 404.
10236 * bootstrap: Undo today's earlier change (logged below).
10237 * configure.ac (AM_GNU_GETTEXT_VERSION): Likewise.
10238
10239 The gettext version checking is causing more trouble than it's
10240 curing; remove it. Problem reported by Paul Hilfinger.
10241
10242 * bootstrap: Issue a warning that one can expect a message
10243 'AM_GNU_GETTEXT is used, but not AM_GNU_GETTEXT_VERSION'.
10244 * configure.ac (AM_GNU_GETTEXT_VERSION): Remove.
10245
10246 2004-05-23 Paul Eggert <eggert@cs.ucla.edu>
10247
10248 Ensure that the C++ compiler used for testing actually works on a
10249 simple test program; if not, skip the C++-related tests. Problem
10250 reported by Vin Shelton in:
10251 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00026.html
10252
10253 * m4/cxx.m4: New file.
10254 * configure.ac (BISON_TEST_FOR_WORKING_CXX_COMPILER): Add.
10255 * tests/atlocal.in (BISON_CXX_WORKS): Add.
10256 * tests/local.at (AT_COMPILE_CXX): Use it.
10257
10258 2004-05-21 Paul Eggert <eggert@cs.ucla.edu>
10259
10260 * data/glr.c (yylloc): Output this macro even if locations are not
10261 being generated, as the GLR parser needs it even in that case.
10262 Problem reported by Troy A. Johnson
10263 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=195946>.
10264
10265 * configure.ac (AC_INIT): Update to 1.875e.
10266
10267 2004-05-21 Paul Eggert <eggert@cs.ucla.edu>
10268
10269 * NEWS: Version 1.875d.
10270 * configure.ac (AC_INIT): Likewise.
10271 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875d.
10272
10273 * configure.ac (--enable-gcc-warnings): Do not enable -Wshadow,
10274 -Wmissing-prototypes, or -Wstrict-prototypes for C++. The current
10275 lalr1.cc runs afoul of the first, and the last two are no longer
10276 supported by GCC 3.4.0.
10277 * README: Mention GNU m4 1.4 or later; mention m4 patches.
10278 * HACKING: Use ./bootstrap, not "make update" to import foreign files.
10279
10280 2004-05-06 Paul Eggert <eggert@cs.ucla.edu>
10281
10282 * src/muscle_tab.c (hash_muscle): Accept and return size_t, not
10283 unsigned int, for compatibility with latest gnulib hash module.
10284 * src/state.c (state_hash, state_hasher): Likewise.
10285 * src/symtab.c (hash_symbol, hash_symbol_hasher): Likewise.
10286 * src/uniqstr.c (hash_uniqstr): Likewise.
10287
10288 2004-05-03 Paul Eggert <eggert@cs.ucla.edu>
10289
10290 * NEWS: Unescaped newlines are no longer allowed in char & strings.
10291
10292 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER,
10293 SC_CHARACTER,SC_STRING>): Reject unescaped newlines in
10294 character and string literals.
10295 (unexpected_end): New function.
10296 (unexpected_eof): Use it.
10297 (unexpected_newline): New function.
10298 (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>): Coalesce duplicate
10299 actions.
10300
10301 * NEWS: Document %expect-rr.
10302
10303 * bootstrap (--gnulib-srcdir=*, --cvs-user=*):
10304 Fix typo by replacing $1 with $option.
10305 Remove more 'intl'-related files.
10306 Don't DEFUN AM_INTL_SUBDIR twice.
10307
10308 * lib/.cvsignore: Add strndup.h. Remove memchr.c, memcmp.c,
10309 memrchr.c, strcasecmp.c, strchr.c, strrchr.c, strspn.c, strtol.c,
10310 strtoul.c.
10311 * m4/.cvsignore: Add exitfail.m4, extensions.m4, gnulib.m4,
10312 hard-locale.m4, mbstate_t.m4, strerror_r.m4, strndup.m4,
10313 xstrndup.m4. Remove glibc21.m4, intdiv0.m4, inttypes-pri.m4,
10314 inttypes.m4, inttypes_h.m4, isc-posix.m4, lcmessage.m4,
10315 stdint_h.m4, uintmax_t.m4, ulonglong.m4.
10316 * src/.cvsignore: Add *.output.
10317
10318 * src/parse-gram.y: Put copyright notice inside %{ %} so it
10319 gets copied to the output file.
10320
10321 2004-04-28 Paul Eggert <eggert@twinsun.com>
10322
10323 Get files from the gnulib and po repositories, instead of relying
10324 on them being in our CVS. Upgrade to latest versions of gnulib
10325 and Automake.
10326
10327 * Makefile.am (SUBDIRS): Remove m4; Automake now does m4.
10328 * bootstrap: Bootstrap from gnulib and po repositories.
10329 Much of this code was stolen from GNU diff and GNU tar's bootstrap.
10330 * README-cvs: Document these changes. Remove version numbers from
10331 mentions of build tools, since they change so often. Mention Flex.
10332
10333 * configure.ac (AC_CONFIG_MACRO_DIR): Add, with m4 as arg.
10334 (gl_USE_SYSTEM_EXTENSIONS): Add.
10335 (AC_GNU_SOURCE, AC_AIX, AC_MINIX):
10336 Remove; no longer needed, as gl_USE_SYSTEM_EXTENSIONS
10337 does this for us.
10338 (AC_ISC_POSIX): Remove; we no longer support this
10339 ancient OS, as it gets in the way of latest Autoconf & gnulib.
10340 (AC_HEADER_STDC): Remove: we now assume C89 or better.
10341 (AC_CHECK_HEADERS_ONCE): Use instead of AC_CHECK_HEADERS.
10342 Do not check for C89 headers, except for locale.h which is used
10343 by the Yacc library and must port to K&R hosts.
10344 (AC_CHECK_FUNCS_ONCE): Use instead of AC_CHECK_FUNCS.
10345 Do not check for C89 functions, except for setlocale which is
10346 used by the Yacc library.
10347 (AC_CHECK_DECLS, AC_REPLACE_FUNCS): Remove; no longer needed.
10348 (gl_DIRNAME, gl_ERROR, gl_FUNC_ALLOCA, gl_FUNC_MEMCHR,
10349 gl_FUNC_MEMRCHR, gl_FUNC_STPCPY, gl_FUNC_STRNLEN, gl_FUNC_STRTOL,
10350 gl_GETOPT, gl_HASH, gl_MBSWIDTH, gl_OBSTACK, gl_QUOTE,
10351 gl_QUOTEARG, gl_XALLOC, jm_FUNC_GLIBC_UNLOCKED_IO, jm_FUNC_MALLOC,
10352 AM_GNU_GETTEXT): Remove; now done by:
10353 (GNULIB_AUTOCONF_SNIPPET): Add. "bootstrap" builds this for us.
10354 (AC_CONFIG_FILES): Remove m4/Makefile, as Automake now does this
10355 for us.
10356
10357 * lib/Makefile.am: Include gnulib.mk, built for us by "bootstrap".
10358 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES):
10359 Define to empty, as gnulib.mk will do the rest for us.
10360 ($(libbison_a_OBJECTS), stdbool.h): Remove, as gnulib.mk does this
10361 for us.
10362 (libbison_a_SOURCES): Define to $(lib_SOURCES) now.
10363 (lib_SOURCES): New symbol, containing only the non-gnulib libs.
10364
10365 * src/files.c: Include gnulib's xstrndup.h.
10366
10367 * src/system.h (MALLOC): Use xnmalloc, for better overflow checking.
10368 (REALLOC): Use xnrealloc, for likewise.
10369 (xstrndup, stpcpy): Remove decls, as gnulib does this for us now.
10370 (strnlen, memrchr): Remove decls; functions no longer used.
10371 Include <stpcpy.h>.
10372
10373 * config/depcomp, config/install-sh, lib/alloca.c, lib/argmatch.c,
10374 lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
10375 lib/error.c, lib/error.h, lib/getopt.c, lib/getopt.h,
10376 lib/getopt1.c, lib/gettext.h, lib/hash.c, lib/hash.h,
10377 lib/malloc.c, lib/mbswidth.c, lib/mbswidth.h, lib/memchr.c,
10378 lib/memcmp.c, lib/memrchr.c, lib/obstack.c, lib/obstack.h,
10379 lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h,
10380 lib/realloc.c, lib/stdbool_.h, lib/stpcpy.c, lib/strcasecmp.c,
10381 lib/strchr.c, lib/strncasecmp.c, lib/strnlen.c, lib/strrchr.c,
10382 lib/strspn.c, lib/strtol.c, lib/strtoul.c, lib/unlocked-io.h,
10383 lib/xalloc.h, lib/xmalloc.c, lib/xstrdup.c, lib/xstrndup.c,
10384 m4/Makefile.am, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
10385 m4/error.m4, m4/getopt.m4, m4/hash.m4, m4/malloc.m4,
10386 m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4, m4/memcmp.m4,
10387 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/prereq.m4,
10388 m4/quote.m4, m4/quotearg.m4, m4/realloc.m4, m4/stdbool.m4,
10389 m4/stpcpy.m4, m4/strnlen.m4, m4/strtol.m4, m4/strtoul.m4,
10390 m4/unlocked-io.m4, m4/xalloc.m4, po/LINGUAS, po/Makefile.in.in,
10391 po/Makevars, po/da.po, po/de.po, po/es.po, po/et.po, po/fr.po,
10392 po/hr.po, po/id.po, po/it.po, po/ja.po, po/ms.po, po/nl.po,
10393 po/pt_BR.po, po/ro.po, po/ru.po, po/sv.po, po/tr.po:
10394 Remove, as these files are now generated automatically
10395 by bootstrap or automake.
10396
10397 * po/ChangeLog: Remove: all but one entry was a duplicate
10398 of this file, and I moved that 2000-11-02 entry here.
10399
10400 * config/.cvsignore: Add Makefile, depcomp, install-sh.
10401 * lib/.cvsignore: Add alloca.c, alloca.h, alloca_.h, argmatch.c,
10402 argmatch.h, basename.c, dirname.c, dirname.h, error.c, error.h,
10403 exit.h, exitfail.c, exitfail.h, getopt.c, getopt.h, getopt1.c,
10404 getopt_int.h, gettext.h, gnulib.mk, hard-locale.c, hard-locale.h,
10405 hash.c, hash.h, malloc.c, mbswidth.c, mbswidth.h, memchr.c,
10406 memcmp.c, memrchr.c, obstack.c, obstack.h, quote.c, quote.h,
10407 quotearg.c, quotearg.h, realloc.c, stdbool_.h, stpcpy.c, stpcpy.h,
10408 strcasecmp.c, strchr.c, stripslash.c, strncasecmp.c, strndup.c,
10409 strnlen.c, strrchr.c, strspn.c, strtol.c, strtoul.c,
10410 unlocked-io.h, xalloc.h, xmalloc.c, xstrdup.c, xstrndup.c,
10411 xstrndup.h.
10412 * m4/.cvsignore: Remove Makefile, Makefile.in. Add alloca.m4,
10413 dirname.m4, dos.m4, error.m4, getopt.m4, hash.m4, mbrtowc.m4,
10414 mbswidth.m4, obstack.m4, onceonly.m4, quote.m4, quotearg.m4,
10415 stdbool.m4, stpcpy.m4, strnlen.m4, unlocked-io.m4, xalloc.m4.
10416 * po/.cvsignore: Add *.po, LINGUAS, Makefile.in.in, Makevars.
10417 * src/.cvsignore: Remove *_.c.
10418
10419
10420 * Makefile.maint (GZIP_ENV): Don't use --rsyncable if gzip doesn't
10421 support it. (The latest stable gzip doesn't.)
10422
10423 2004-04-27 Paul Eggert <eggert@twinsun.com>
10424
10425 * data/lalr1.cc (Parser::stos_) [! YYDEBUG]: Define even in this
10426 case, as stos_ is now used by destructors due to the 2004-02-09
10427 change.
10428
10429 Remove more K&R C support.
10430 * lib/libiberty.y (PARAMS): Remove. All uses removed.
10431 * lib/subpipe.c (errno): Remove decl.
10432 Include <stdlib.h> unconditionally.
10433 (EXIT_FAILURE): Remove macro.
10434 * src/complain.c (vfprintf, strerror): Remove.
10435 * src/system.h: Include limits.h, stdlib.h, string.h, locale.h
10436 unconditionally.
10437 (EXIT_FAILURE, EXIT_SUCCESS, setlocale): Remove defns.
10438 Use latest Autoconf recommendations for including inttypes.h, stdint.h.
10439 (strchr, strspn, memchr): Remove decls.
10440 * tests/calc.at (_AT_DATA_CALC_Y): Include stdlib.h, string.h
10441 unconditionally. Do not declare perror.
10442 * tests/conflicts.at (%nonassoc and eof): Include stdlib.h
10443 unconditionally.
10444
10445 * src/complain.c (_): Remove useless defn, as system.h defines this.
10446
10447 * lib/bitset.h (__INT_TO_PTR): Remove; workaround no longer needed
10448 with latest obstack.h.
10449 * lib/ebitset.c (ebitset_elt_alloc): Don't bother to cast args
10450 to procedure types, as obstack.h now does that for us.
10451 * lib/lbitset.c (lbitset_elt_alloc): Likewise.
10452
10453 * lib/subpipe.h [HAVE_SYS_TYPES_H]: Include <sys/types.h>,
10454 so that this include file can stand alone.
10455 * lib/subpipe.c: Do not include <sys/types.h>, as subpipe.h
10456 does this now. Include subpipe.h first after config.h, to
10457 test whether it can stand alone.
10458
10459 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't
10460 declare yyerror when using lalr.cc, as GCC 3.4.0 warns about the
10461 unused declaration.
10462
10463 * tests/synclines.at (%union synch line): Put a dummy member in
10464 the union, because empty unions aren't allowed in C. Caught
10465 by GCC 3.4.0.
10466
10467 2004-04-13 Jim Meyering <jim@meyering.net>
10468
10469 * src/conflicts.c (conflicts_print): Correct format string typo:
10470 use `%%' to produce literal `%'. (trivial change)
10471
10472 2004-03-30 Paul Eggert <eggert@twinsun.com>
10473
10474 * src/getargs.c (version): Update copyright year to 2004.
10475
10476 * data/c.m4 (b4_int_type): Use 'short int' rather than
10477 'short', and similarly for 'long', 'unsigned', etc.
10478 * data/glr.c (YYTRANSLATE, yyconfl, yySymbol, yyItemNum,
10479 yygetLRActions, yyprocessOneStack, yyrecoverSyntaxError,
10480 yy_yypstack, yydumpstack): Likewise.
10481 * data/lalr1.cc (user_token_number_max_, user_token_number_max_,
10482 translate_, seq_, [], pop, Slice, range_, operator+, operator+=):
10483 Likewise.
10484 * data/yacc.c (b4_int_type, yyss, YYSTACK_BYTES, yysigned_char,
10485 yy_stack_print, yyparse): Likewise.
10486 * doc/bison.texinfo (Prologue, Multiple Types): Likewise.
10487 * lib/bbitset.h (bitset_word, BITSET_WORD_BITS): Likewise.
10488 * lib/bitset.c (bitset_print): Likewise.
10489 * lib/bitset_stats.c (bitste_log_histogram_print): Likewise.
10490 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
10491 * lib/bitsetv.c (bitsetv_dump): Likewise.
10492 * lib/ebitset.c (EBITSET_ELT_BITS, ebitset_elt_alloc): Likewise.
10493 * lib/lbitset.c (LBITSET_ELT_BITS, lbitset_elt_alloc, debug_lbitset):
10494 Likewise.
10495 * src/LR0.c (allocate_itemsets): Likewise.
10496 * src/gram.h (rule_number, rule): Likewise.
10497 * src/lalr.h (goto_number): Likewise.
10498 * src/nullable.c (nullable_compute): Likewise.
10499 * src/output.c (prepare_rules): Likewise.
10500 * src/relation.c (relation_print, relation_digraph): Likewise.
10501 * src/relation.h (relation_node): Likewise.
10502 * src/state.h (state_number, transitions, errs, reductions,
10503 struct state): Likewise.
10504 * src/symtab.h (symbol_number, struct symbol): Likewise.
10505 * src/tables.c (vector_number, tally, action_number,
10506 default_goto, goto_actions): Likewise.
10507 * tests/existing.at (GNU Cim Grammar): Likewise.
10508 * tests/regression.at (Web2c Actions): Likewise.
10509
10510 * src/output.c (muscle_insert_short_int_table): Renamed from
10511 muscle_insert_short_table. All uses changed.
10512
10513 2004-03-25 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
10514
10515 * src/parse-gram.y: Define PERCENT_EXPECT_RR.
10516 (declaration): Replace expected_conflicts with expected_sr_conflicts.
10517 Add %expect-rr rule.
10518
10519 * src/scan-gram.l: Recognize %expect-rr.
10520
10521 * src/conflicts.h (expected_sr_conflicts): Rename from
10522 expected_conflicts.
10523 (expected_rr_conflicts): Declare.
10524
10525 * src/conflicts.c (expected_sr_conflicts): Rename from
10526 expected_conflicts.
10527 (expected_rr_conflicts): Define.
10528 (conflicts_print): Check r/r conflicts against expected_rr_conflicts
10529 for GLR parsers.
10530 Use expected_sr_conflicts in place of expected_conflicts.
10531 Warn if expected_rr_conflicts used in non-GLR parser.
10532
10533 * doc/bison.texinfo: Add documentation for %expect-rr.
10534
10535 2004-03-08 Paul Eggert <eggert@gnu.org>
10536
10537 Add support for hex token numbers. Suggested by Odd Arild Olsen in
10538 <http://lists.gnu.org/archive/html/bison-patches/2004-03/msg00000.html>.
10539
10540 * NEWS: Document hexadecimal tokens, no NUL bytes, %destructor
10541 in lalr1.cc.
10542 * doc/bison.texinfo (Token Decl): Add hexadecimal token numbers.
10543 * src/scan-gram.l (scan_integer): New function.
10544 ({int}): Use it.
10545 (0[xX][0-9abcdefABCDEF]+): New pattern, to support hex numbers.
10546 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>, \\x[0-9abcdefABCDEF]+,
10547 handle_action_dollar, handle_action_at, convert_ucn_to_byte):
10548 Say "long int", not "long", for uniformity with GNU style.
10549
10550 2004-02-25 Paul Eggert <eggert@twinsun.com>
10551
10552 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Ignore stdout from
10553 compilers. This fixes a problem with Intel's C++ compiler being
10554 chatty, reported by Guido Trentalancia in
10555 <http://lists.gnu.org/archive/html/bug-bison/2004-02/msg00030.html>.
10556
10557 2004-02-09 Alexandre Duret-Lutz <adl@gnu.org>
10558
10559 Support %destructor and merge error locations in lalr1.cc.
10560
10561 * data/lalr1.cc (b4_cxx_destruct_def): New macro.
10562 (Parser::stos_): Define unconditionally.
10563 (Parser::destruct_): New method. Generate its body with
10564 b4_yydestruct_generate.
10565 (Parser::error_start_): New attribute.
10566 (Parser::parse) <yyerrlab, yyerrlab1>: Call destruct_ on erroneous
10567 token which are discarded.
10568 (Parser::parse) <yyerrlab, yyerrorlab, yyerrlab1>: Update
10569 error_start_ when erroneous token are discarded.
10570 (Parser::parse) <yyerrlab1>: Compute the location of the error
10571 token so that it covers all the discarded tokens.
10572 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust so
10573 it can be called with `%skeleton "lalr1.cc"', and do that.
10574
10575 2004-02-02 Paul Eggert <eggert@twinsun.com>
10576
10577 * src/Makefile.am (AM_CPPFLAGS): New macro. It mentions
10578 $(top_srcdir)/lib and ../lib. This fixes a bug reported
10579 by Paul Hilfinger; the old INCLUDES value didn't mention ../lib.
10580 There's no need to mention top_builddir since Automake does that
10581 for us.
10582 (INCLUDES): Remove, as Automake says it's obsolescent.
10583 Contents migrated into AM_CPPFLAGS as described above.
10584 * lib/Makefile.am (INCLUDES): Remove; obsolescent.
10585
10586 2004-01-14 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
10587
10588 * data/glr.c (yytokenName): Bullet-proof against YYEMPTY token.
10589 (yyreportSyntaxError): Handle case where lookahead token is
10590 YYEMPTY.
10591
10592 2004-01-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10593
10594 * data/glr.c: Put casts on uses of YYREALLOC and YYMALLOC so that
10595 resulting parsers are compilable with C++.
10596
10597 2003-12-23 Paul Eggert <eggert@twinsun.com>
10598
10599 * config/depcomp, config/install-sh: Sync with Automake 1.8.
10600 * src/output.c (output_skeleton): Rename local var.
10601 * tests/input.at (Torturing the Scanner): Don't use \x0 or \0 in
10602 Bison tokens, as this runs afoul of the 2003-10-07 change that
10603 disallowed NUL bytes in character constants or string literals.
10604
10605 * tests/local.at: Require Autoconf 2.59's Autotest.
10606 * tests/testsuite.at: Don't include local.at, since we now assume
10607 Autoconf 2.59 or later. Autoconf 2.59 had some problems with
10608 including it.
10609 * tests/Makefile.am ($(TESTSUITE)): Remove warning about ignoring
10610 multiple inclusion warnings.
10611
10612 2003-12-02 Akim Demaille <akim@epita.fr>
10613
10614 * doc/bison.texinfo (How Can I Reset the Parser): More about start
10615 conditions.
10616 From Bruno Haible.
10617
10618 2003-11-18 Alexandre Duret-Lutz <adl@gnu.org>
10619
10620 * doc/bison.texinfo (Bison Options): Escape `@' in `$@'.
10621
10622 2003-10-07 Paul Eggert <eggert@twinsun.com>
10623
10624 * tests/Makefile.am (clean-local): Don't run 'testsuite --clean'
10625 if testsuite doesn't exist.
10626
10627 * doc/bison.texinfo (Symbols): NUL bytes are not allowed in string
10628 literals, unfortunately.
10629 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
10630 Complain about NUL bytes in character constants or string literals.
10631
10632 2003-10-05 Paul Eggert <eggert@twinsun.com>
10633
10634 * NEWS: Don't document %no-default-prec, as it's still
10635 too experimental.
10636 * doc/bison.texinfo: Document %no-default-prec only if
10637 the defaultprec flag is set. Normally it's not.
10638
10639 2003-10-04 Paul Eggert <eggert@twinsun.com>
10640
10641 * data/glr.c (b4_rhs_value, b4_rhs_location): Yield a
10642 non-modifiable lvalue, instead of a modifiable one.
10643 * doc/bison.texinfo (Actions): Document that $$ can
10644 be assigned to. Do not claim that $$ and $N are
10645 array element references: user code should not rely on this.
10646
10647 2003-10-01 Paul Eggert <eggert@twinsun.com>
10648
10649 * src/parse-gram.h (PERCENT_NO_DEFAULT_PREC): New token.
10650 (grammar_declaration): Use it.
10651 * src/scan-gram.l: New token %no-default-prec.
10652 * tests/conflicts.at: Revamp tests to use %no-default-prec.
10653 * NEWS, doc/bison.texinfo: Document the above.
10654
10655 2003-10-01 Akim Demaille <akim@epita.fr>
10656
10657 VCG no longer supports long_straight_phase.
10658
10659 * src/vcg.c, src/vcg.h: Remove the handling of long_straight_phase.
10660 * src/print_graph.c (print_graph): Adjust.
10661
10662 2003-09-30 Frank Heckenbach <frank@g-n-u.de>
10663 and Paul Eggert <eggert@twinsun.com>
10664
10665 * doc/bison.texinfo (Decl Summary, Contextual Precedence,
10666 Table of Symbols): Document %default-prec.
10667 * src/parse-gram.y (PERCENT_DEFAULT_PREC): New token.
10668 (grammar_declaration): Set default_prec on %default-prec.
10669 * src/scan-gram.l (%default-prec): New token.
10670 * src/reader.h (default_prec): New flag.
10671 * src/reader.c: Likewise.
10672 (packgram): Handle it.
10673 * tests/conflicts.at (%default-prec without %prec,
10674 %default-prec with %prec, %default-prec 1): New tests.
10675
10676 2003-09-30 Paul Eggert <eggert@twinsun.com>
10677
10678 * tests/testsuite.at: Include local.at, not input.at, fixing
10679 a typo in the 2003-08-25 patch.
10680
10681 2003-08-27 Akim Demaille <akim@epita.fr>
10682
10683 * data/lalr1.cc (yyparse) [__GNUC__]: "Use" yyerrorlab to pacify
10684 GCC warnings.
10685
10686 2003-08-26 Akim Demaille <akim@epita.fr>
10687
10688 * config/announce-gen (print_changelog_deltas): Neutralize "<#" as
10689 "<\#" to avoid magic from Gnus when posting parts of this script.
10690
10691 2003-08-26 Akim Demaille <akim@epita.fr>
10692
10693 * data/lalr1.cc (Parser::report_syntax_error_): New, extracted from
10694 (Parser::parse): here.
10695 Adjust: nerrs and errstatus is now replaced by...
10696 (Parser::nerrs_, Parser::errstatus_): New.
10697
10698 2003-08-25 Akim Demaille <akim@epita.fr>
10699
10700 * config/announce-gen, Makefile.cfg: New.
10701 * Makefile.am: Adjust.
10702 * GNUmakefile, Makefile.maint: Update from CVS Autoconf, but
10703 keeping local WGET and WGETFLAGS modifications from Paul Eggert.
10704
10705 2003-08-25 Akim Demaille <akim@epita.fr>
10706
10707 When reducing initial empty rules, Bison parser read an initial
10708 location that is not defined. This results in garbage, and that
10709 affects Bison's own parser. Therefore we need (i) to extend Bison
10710 to support a means to initialize this location, and (ii) to use
10711 this CVS Bison to fix CVS Bison's parser.
10712
10713 * src/reader.h, reader.c (epilogue_augment): Remove, replace
10714 with...
10715 * src/muscle_tab.h, src/muscle_tab.c (muscle_code_grow): this.
10716 * src/parse-gram.y: Adjust.
10717 (%initial-action): New.
10718 (%error-verbose): Since we require CVS Bison, there is no reason
10719 not to use it.
10720 * src/scan-gram.l: Adjust.
10721 * src/Makefile.am (YACC): New, to make sure we use our own parser.
10722 * data/yacc.c (yyparse): Use b4_initial_action.
10723
10724 2003-08-25 Akim Demaille <akim@epita.fr>
10725
10726 * doc/bison.texinfo: Don't promote stdout for error messages.
10727
10728 2003-08-25 Akim Demaille <akim@epita.fr>
10729
10730 * data/lalr1.cc (Parser::reduce_print_): Remove unused yyi.
10731 From Alexandre Duret-Lutz.
10732
10733 2003-08-25 Akim Demaille <akim@epita.fr>
10734
10735 Version 1.875c.
10736
10737 2003-08-25 Akim Demaille <akim@epita.fr>
10738
10739 * data/lalr1.cc (Parser::stack_print_, YY_STACK_PRINT): New.
10740 Use them.
10741
10742 2003-08-25 Akim Demaille <akim@epita.fr>
10743
10744 * data/lalr1.cc (Parser::reduce_print_): New.
10745 Use it.
10746
10747 2003-08-25 Akim Demaille <akim@epita.fr>
10748
10749 Have lalr1.cc catch with Paul Eggert's patch to fix the infinite
10750 error recovery loops. This patch is based on
10751 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00000.html>.
10752 Also, augment the similarity between lalr1.cc and yacc.c.
10753 Note: the locations of error recovery rules are not correct yet.
10754
10755 * data/lalr1.cc: Comment changes to augment the similarity between
10756 lalr1.cc and yacc.c.
10757 (YYERROR): Goto to yyerrorlab, not yyerrlab1.
10758 (yyerrlab1): Remove, but where it used to be (now the bottom part of
10759 yyerrlab), when hitting EOF, pop the whole stack here instead of
10760 merely falling thru the default error handling mechanism.
10761 (yyerrorlab): New label, with the old contents of YYERROR,
10762 plus the following change: pop the stack of rhs corresponding
10763 to the production that invoked YYERROR. That is how Yacc
10764 behaves (required by POSIX).
10765 * tests/calc.at (AT_CHECK_CALC_LALR1_CC): No longer expected to
10766 fail.
10767
10768 2003-08-25 Akim Demaille <akim@epita.fr>
10769
10770 Tune local.at so that people can "autom4te -l autotest calc.at -o
10771 calc" for instance, to extract a sub test suite.
10772
10773 * tests/testsuite.at: Move the initialization, Autotest version
10774 requirement, and AT_TESTED invocation into...
10775 * tests/local.at: here.
10776 * tests/testsuite.at: Include it for compatibility with Autoconf
10777 2.57.
10778 * tests/Makefile.am ($(TESTSUITE)): Report that the warning should
10779 be ignore.
10780
10781 2003-08-04 Paul Eggert <eggert@twinsun.com>
10782
10783 Rework code slightly to avoid gcc -Wtraditional warnings.
10784 * data/glr.c (yyuserMerge): Return void, not YYSTYPE.
10785 The returned value is now stored in *YY0. All callers changed.
10786 * src/output.c (merge_output): Adjust to the above change.
10787
10788 2003-07-26 Paul Eggert <eggert@twinsun.com>
10789
10790 * data/glr.c (YYASSERT): New macro.
10791 (yyfillin, yydoAction, yyglrReduce, yysplitStack,
10792 yyresolveStates, yyprocessOneStack):
10793 Use `YYASSERT (FOO);' rather than `if (! (FOO)) abort ();'.
10794 Derived from a suggestion by Frank Heckenbach.
10795
10796 2003-07-25 Paul Eggert <eggert@twinsun.com>
10797
10798 * data/glr.c (yyglrReduce): Don't use C89 string concatenation,
10799 for portability to K&R C (after ansi2knr, presumably). See
10800 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>
10801 by Frank Heckenbach, though I have omitted the structure-initialization
10802 part of his glr-knr.diff patch since I recall that the Portable
10803 C Compiler didn't require that change.
10804
10805 Let the user specify how to allocate and free memory.
10806 Derived from a suggestion by Frank Heckenbach in
10807 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>.
10808 * data/glr.c (YYFREE, YYMALLOC, YYREALLOC): New macros.
10809 All uses of free, malloc, realloc changed to use these macros,
10810 and unnecessary casts removed.
10811 * data/yacc.c (YYFREE, YYMALLOC): Likewise.
10812
10813 2003-07-06 Matthias Mann <MatthiasMann@gmx.de>
10814
10815 * data/lalr1.cc (operator<<(std::ostream&, const Position&)):
10816 use s.empty() rather than s == "" to test for empty string; see
10817 <http://lists.gnu.org/archive/html/bison-patches/2003-07/msg00003.html>
10818 (trivial change)
10819
10820 2003-06-25 Akim Demaille <akim@epita.fr>
10821
10822 * config/depcomp, config/install-sh: Update from masters.
10823
10824 2003-06-20 Paul Eggert <eggert@twinsun.com>
10825
10826 * data/glr.c (YYLLOC_DEFAULT): Parenthesize arguments as needed,
10827 and return properly parenthesized result.
10828 * data/lalar1.cc (YYLLOC_DEFAULT): Likewise.
10829 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
10830 Remove unnecessary parentheses from uses.
10831 * doc/bison.texinfo (Location Default Action): Describe the
10832 conventions for parentheses.
10833
10834 2003-06-19 Paul Eggert <eggert@twinsun.com>
10835
10836 * data/glr.c (yyremoveDeletes, yy_reduce_print, yyglrReduce,
10837 yyreportTree): Do not assume that size_t is the same width as int,
10838 when printing sizes. Print sizes using an unsigned format.
10839 Problem reported by Frank Heckenbach in
10840 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00035.html>.
10841
10842 Port to Forte Developer 7 C compiler.
10843 * data/glr.c (struct YYLTYPE): If locations are not being used,
10844 declare a single dummy member, as empty structs do not conform
10845 to the C standard.
10846 (YYERROR, YYBACKUP): Do not use "do { ...; return foo; } while (0)";
10847 the Forte Developer 7 C compiler complains that end-of-loop
10848 code is not reached.
10849
10850 2003-06-17 Paul Eggert <eggert@twinsun.com>
10851
10852 * lib/libiberty.h (PARAMS): Spell argument as Args, not as X, to
10853 avoid warnings from picky compilers about redefinition of PARAMS.
10854
10855 2003-06-17 Paul Eggert <eggert@twinsun.com>
10856
10857 Version 1.875b.
10858
10859 * NEWS: Document 1.875b.
10860
10861 * lib/bbitset.h: Do not include config.h; that's the includer's job.
10862 Do not include <sys/types.h>; shouldn't be needed on a C89 host.
10863 * lib/bitset.h (bitset_compatible_p): Indent as per GNU standard.
10864 Don't use 'index' in comments, as it's a builtin fn on some hosts.
10865 * lib/bitset_stats.c: Include gettext.h unconditionally, as
10866 per recent gettext manual's suggestion.
10867 * lib/ebitset.c (ebitset_resize, ebitset_unused_clear):
10868 Use prototypes, not old-style definitions.
10869 * lib/lbitset.c (lbitset_unused_clear): Likewise.
10870 * lib/vbitset.c (vbitset_resize, vbitset_ones, vbitset_zero,
10871 vbitset_empty_p, vbitset_copy1, vbitset_not, vbitset_equal_p,
10872 vbitset_subset_p, vbitset_disjoint_p, vbitset_and, vbitset_and_cmp,
10873 vbitset_andn, vbitset_andn_cmp, vbitset_or, vbitset_or_cmp,
10874 vbitset_xor, vbitset_xor_cmp, vbitset_and_or, vbitset_and_or_cmp,
10875 vbitset_andn_or, vbitset_andn_or_cmp, vbitset_or_and,
10876 vbitset_or_and_cmp, vbitset_copy): Likewise.
10877
10878 * lib/libiberty.h: Do not include config.h; that's the includer's job.
10879 Do not include <stdlib.h>.
10880 (PARAMS): Define unconditionally for C89.
10881 (ATTRIBUTE_NORETURN): Remove.
10882 (ATTRIBUTE_UNUSED): Define unconditionally.
10883
10884 Upgrade to 2003-06-08 libbitset, submitted by Michael Hayes in:
10885 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00005.html>
10886 * lib/Makefile.am (bitsets_sources): Add vbitset.c, vbitset.h.
10887 * lib/vbitset.c, lib/vbitset.h: New files.
10888 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
10889 lib/bitset_stats.c, lib/ebitset.c, lib/lbitset.c: Import
10890 from libbitset.
10891
10892 * doc/bison.texinfo (How Can I Reset the Parser): Renamed from
10893 `How Can I Reset @code{yyparse}', since texinfo does not allow
10894 arbitrary @ in node names.
10895
10896 * m4/Makefile.am (EXTRA_DIST): Add the following files, which
10897 shouldn't be needed according to the gettext 0.12.1 documentation
10898 but which seem to be needed anyway: codeset.m4 glibc21.m4
10899 intdiv0.m4 inttypes-pri.m4 inttypes.m4 inttypes_h.m4 isc-posix.m4
10900 lcmessage.m4 nls.m4 po.m4 stdint_h.m4 uintmax_t.m4 ulonglong.m4.
10901 * po/Makefile.in.in: Upgrade to gettext 0.12.1 version.
10902
10903 * lib/.cvsignore: Add stdbool.h.
10904 * m4/.cvsignore: Add nls.m4, po.m4.
10905
10906 Upgrade to CVS gnulib.
10907 * stdbool_.h: File renamed from stdbool.h.in.
10908 * configure.ac (AM_STDBOOL_H): Invoke this instead of
10909 AC_HEADER_STDBOOL.
10910 (AM_GNU_GETTEXT): Put brackets around args, as latest manual suggests.
10911 (AM_GNU_GETTEXT_VERSION): Update to 0.12.1.
10912 * lib/Makefile.am (EXTRA_DIST): Add stdbool_.h.
10913 (MOSTLYCLEANFILES): New var.
10914 ($(libbison_a_OBJECTS)): Depend on $(STDBOOL_H).
10915 (stdbool.h): New rule.
10916 * lib/dirname.c, lib/dirname.h, lib/hash.c, lib/hash.h,
10917 lib/malloc.c, lib/obstack.h, lib/quote.c, lib/realloc.c,
10918 lib/strcasecmp.c, lib/xalloc.h, m4/alloca.m4, m4/onceonly.m4,
10919 m4/quote.m4: Upgrade to today's gnulib.
10920
10921 * tests/calc.at (AT_CHECK_CALC): New option EXPECTED-TO-FAIL.
10922 (AT_CHECK_CALC_LALR1_CC): Use it, since the C++ LALR parser fails
10923 the tests right now.
10924 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Ensure yylex and
10925 yyerror are declared before use; C99 requires this.
10926
10927 2003-06-09 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10928
10929 * data/glr.c (YYERROR): Update definition to reset yyerrState to 0
10930 first.
10931 (yyrecoverSyntaxError): Correct the logic for setting and testing
10932 yyerrState.
10933 Correct comment on handling EOF.
10934 Allow states with only a default reduction, rather than failing
10935 (I can't quite reconstruct why these were not allowed before).
10936
10937 Fixes to avoid problem that $-N rules in GLR parsers can cause
10938 buffer overruns, corrupting state.
10939
10940 * src/output.c (prepare_rules): Output max_left_semantic_context
10941 definition.
10942 * src/reader.h (max_left_semantic_context): New variable declaration.
10943 * src/scan-gram.l (max_left_semantic_context): Define.
10944 (handle_action_dollar): Update max_left_semantic_context.
10945 * data/glr.c (YYMAXLEFT): New definition.
10946 (yydoAction): Increase size of yyrhsVals by YYMAXLEFT.
10947 (yyresolveAction): Ditto.
10948
10949 Fixes to problems with location handling in GLR parsers reported by
10950 Frank Heckenbach (2003/06/05).
10951
10952 * data/glr.c (YYLTYPE): Make trivial if locations not used.
10953 (YYRHSLOC): Add parentheses, and define only if locations used.
10954 (YYLLOC_DEFAULT): Add parentheses, and give trivial definition if
10955 locations not used.
10956 (yyuserAction): Use YYLLOC_DEFAULT to set *yylocp.
10957 (yydoAction): Remove redundant initialization of *yyvalp and *yylocp.
10958
10959 * tests/cxx-type.at: Exercise location information; update tests
10960 to differentiate output with and without locations.
10961 Remove forward declarations of yylex and yyerror---caused errors
10962 because default YYLTYPE not yet defined.
10963 Change semantic actions to compute strings, rather than printing
10964 them directly (to test proper passing of semantics values). Change
10965 output to prefix notation and update test data and expected results.
10966 (yylex): Track locations.
10967 (stmtMerge): Return value rather than printing, and include arguments
10968 in value.
10969
10970 2003-06-03 Paul Eggert <eggert@twinsun.com>
10971
10972 Avoid warnings generated by GCC 2.95.4 when Bison is
10973 configured with --enable-gcc-warnings.
10974 * data/lalr1.cc (yy::]b4_parser_class_name[::parse,
10975 yy::]b4_parser_class_name[::translate_,
10976 yy::Stack::operator[] (unsigned),
10977 yy::Stack::operator[] (unsigned) const,
10978 yy::Slice::operator[] (unsigned),
10979 yy::Slice::operator[] (unsigned) const):
10980 Rename local vars to avoid warnings.
10981 * tests/glr-regression.at (Improper handling of embedded actions
10982 and $-N in GLR parsers): Remove unused local variable from yylex.
10983 * tests/regression.at (_AT_DATA_DANCER_Y): Declare yylex to take
10984 (void) as arg when not pure, since we now assume C89 when building
10985 Bison. Pacify GCC by using parameter.
10986
10987 2003-06-02 Paul Eggert <eggert@twinsun.com>
10988
10989 * data/lalr1.cc (yy::Position::lines, yy::Position::columns,
10990 yy::Location::lines, yy::Location::columns): Rename arguments
10991 to avoid shadowing; this removes a warning generated by GCC 3.3.
10992
10993 2003-06-01 Paul Eggert <eggert@twinsun.com>
10994
10995 Don't pass C-only warning optins (e.g., -Wmissing-declarations)
10996 to g++, as GCC 3.3 complains if you do it.
10997 * configure.ac (WARNING_CXXFLAGS): New subst. Set it to
10998 everything that WARNING_CFLAGS has, except omit warnings
10999 not suitable for C++.
11000 (AC_PROG_CXX): Use this instead of AC_CHECK_PROGS([CXX], [g++]).
11001 * tests/atlocal.in (CXXFLAGS): New var.
11002 * tests/local.at (AT_COMPILE_CXX): Use it instead of CFLAGS.
11003
11004 Fix a GLR parser bug I reported in February; see
11005 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00008.html>.
11006 The problem was that GLR parsers did not conform to the C standard,
11007 because actions like { $1 = $2 + $3; } expanded to expressions
11008 that invoked YYFILL in separate subexpressions, and YYFILL assigned
11009 to a local variable. The C standard says that expressions
11010 like (var = f ()) + (var = f ()) have undefined behavior.
11011 Another problem was that GCC sometimes issues warnings that
11012 yyfill and its parameters are unused.
11013
11014 * data/glr.c (yyfillin): Renamed from the old yyfill. Mark
11015 as possibly unused.
11016 (yyfill): New function.
11017 (YYFILL): Use it.
11018 (yyuserAction): Change type of yynormal to bool, so that it matches
11019 the new yyfill signature. Mark it as possibly unused.
11020
11021
11022 Follow up on a bug I reported in February, where a Bison-generated
11023 parser can loop. Provide a test case and a fix for yacc.c. I
11024 don't have a fix for lalr1.cc or for glr.c, unfortunately.
11025 The original bug report is in:
11026 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00044.html>
11027
11028 * data/yacc.c (YYERROR): Now just 'goto yyerrorlab', since the
11029 macro's size was becoming unwieldy.
11030 (yyerrlab): Do not discard an empty lookahead symbol, as this
11031 might destroy garbage.
11032 (yyerrorlab): New label, with the old contents of YYERROR,
11033 plus the following change: pop the stack of rhs corresponding
11034 to the production that invoked YYERROR. That is how Yacc
11035 behaves, and POSIX requires this behavior.
11036 (yyerrlab1): Use YYPOPSTACK instead of its definiens.
11037 * tests/calc.at (_AT_DATA_CALC_Y): Include unistd.h if available.
11038 Define 'alarm' to do nothing if unistd.h is not available.
11039 Add a new rule "exp: '-' error;" to test the above change to
11040 data/yacc.c. Use 'alarm' to abort any test taking longer than
11041 10 seconds, as it's probably looping.
11042 (AT_CHECK_CALC): Test recovery from error in new grammar rule.
11043 Also, the new yacc.c generates two fewer diagnostics for an
11044 existing test.
11045
11046 2003-05-24 Paul Eggert <eggert@twinsun.com>
11047
11048 * data/glr.c (YYSTACKEXPANDABLE): Do not evaluate
11049 YYSTYPE_IS_TRIVIAL or YYSTYPE_IS_TRIVIAL unless they are defined.
11050 This fixes a problem reported by John Bowman when the Compaq/HP
11051 Alpha cxx compiler happy (e.g. using cxx -D__USE_STD_IOSTREAM
11052 -ansi -Wall -gall).
11053 * data/yacc.c (union yyalloc): Likewise.
11054 (YYCOPY): Do not evaluate __GNUC__ unless it is defined.
11055
11056 Switch from 'int' to 'bool' where that makes sense.
11057
11058 * lib/abitset.c (abitset_test, abitset_empty_p, abitset_equal_p,
11059 abitset_subset_p, abitset_disjoint_p, abitset_and_cmp,
11060 abitset_andn_cmp, abitset_or_cmp, abitset_xor_cmp, abitset_and_or,
11061 abitset_and_or_cmp, abitset_andn_or_cmp, abitset_or_and_cmp):
11062 Return or accept bool, not int. All callers changed.
11063 * lib/bbitset.h: (bitset_toggle_, bitset_copy_, bitset_and_or_cmp_,
11064 bitset_andn_or_cmp_, bitset_or_and_cmp_): Likewise.
11065 * lib/bitset.c (bitset_only_set_p, bitset_print, bitset_toggle_,
11066 bitset_copy_, bitset_op4_cmp, bitset_and_or_cmp_, bitset_andn_or_cmp_,
11067 bitset_or_and_cmp_): Likewise.
11068 * lib/bitset.h (bitset_test, bitset_only_set_p): Likewise.
11069 * lib/bitset_stats.c (bitset_stats_print, bitset_stats_toggle,
11070 bitset_stats_test, bitset_stats_empty_p, bitset_stats_disjoint_p,
11071 bitset_stats_equal_p, bitset_stats_subset_p, bitset_stats_and_cmp,
11072 bitset_stats_andn_cmp, bitset_stats_or_cmp, bitset_stats_xor_cmp,
11073 bitset_stats_and_or_cmp, bitset_stats_andn_or_cmp,
11074 bitset_stats_or_and_cmp): Likewise.
11075 * lib/ebitset.c (ebitset_elt_zero_p, ebitset_equal_p, ebitset_copy_cmp,
11076 ebitset_test, ebitset_empty_p, ebitset_subset_p, ebitset_disjoint_p,
11077 ebitset_op3_cmp, ebitset_and_cmp, ebitset_andn_cmp, ebitset_or_cmp,
11078 ebitset_xor_cmp): Likewise.
11079 * lib/lbitset.c (lbitset_elt_zero_p, lbitset_equal_p, lbitset_copy_cmp,
11080 lbitset_test, lbitset_empty_p, lbitset_subset_p, lbitset_disjoint_p,
11081 lbitset_op3_cmp, lbitset_and_cmp, lbitset_andn_cmp, lbitset_or_cmp,
11082 lbitset_xor_cmp): Likewise.
11083 * lib/bbitset.h: Include <stdbool.h>.
11084 (struct bitset_vtable): The following members now return bool, not
11085 int: toggle, test, empty_p, disjoint_p, equal_p, subset_p,
11086 and_cmp, andn_cmp, or_cmp, xor_cmp, and_or_cmp, andn_or_cmp,
11087 or_and_cmp).
11088 * src/conflicts.c (count_rr_conflicts): Likewise.
11089 * lib/bitset_stats.h (bitset_stats_enabled): Now bool, not int.
11090 All uses changed.
11091 * lib/ebitset.c (ebitset_obstack_init): Likewise.
11092 * lib/lbitset.c (lbitset_obstack_init): Likewise.
11093 * src/getargs.c (debug_flag, defines_flag, locations_flag,
11094 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
11095 graph_flag): Likewise.
11096 * src/getargs.h (debug_flag, defines_flag, locations_flag,
11097 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
11098 graph_flag): Likewise.
11099 * src/output.c (error_verbose): Likewise.
11100 * src/output.h (error_verbose): Likewise.
11101 * src/reader.c (start_flag, typed): Likewise.
11102 * src/reader.h (typed): Likewise.
11103 * src/getargs.c (LOCATIONS_OPTION): New constant.
11104 (long_options, getargs): Use it.
11105 * src/lalr.c (build_relations): Use bool, not int.
11106 * src/nullable.c (nullable_compute): Likewise.
11107 * src/print.c (print_reductions): Likewise.
11108 * src/tables.c (action_row, pack_vector): Likewise.
11109 * src/muscle_tab.h (MUSCLE_INSERT_BOOL): New macro.
11110 * src/output.c (prepare): Use it.
11111 * src/output.c (token_definitions_output,
11112 symbol_destructors_output, symbol_destructors_output): Use string,
11113 not boolean integer, to keep track of whether to output separator.
11114 * src/print_graph.c (print_core): Likewise.
11115 * src/state.c (state_rule_lookaheads_print): Likewise.
11116
11117 * config/install-sh: Sync from automake 1.7.5.
11118
11119 2003-05-14 Paul Eggert <eggert@twinsun.com>
11120
11121 * src/parse-gram.y (rules_or_grammar_declaration): Require a
11122 semicolon after a grammar declaration, in the interest of possible
11123 future changes to the Bison input language.
11124 Do not allow a stray semicolon at the start of the grammar.
11125 (rhses.1): Allow one or more semicolons after any rule, including
11126 just before "|" as required by POSIX.
11127 * tests/input.at (Torturing the Scanner): Add tests for ";|" in a
11128 grammar.
11129
11130 2003-05-14 Alexandre Duret-Lutz <adl@gnu.org>
11131
11132 %parse-param support for lalr1.cc.
11133
11134 * data/lalr1.cc (b4_parse_param_decl, b4_parse_param_cons,
11135 b4_cc_constructor_calls, b4_cc_constructor_call,
11136 b4_parse_param_vars, b4_cc_var_decls, b4_cc_var_decl): New m4
11137 definitions.
11138 (yy::b4_parser_class_name::b4_parser_class_name): Take extra
11139 parse-param arguments.
11140 (yy::b4_parser_class_name): Declare instance variables to
11141 hold parse-param arguments.
11142 * tests/calc.at: s/value/semantic_value/ because value clashes
11143 with a member of yy::b4_parser_class_name. Adjust C++ code
11144 to handle %parse-param. Enable %parse-param test in C++.
11145
11146 2003-05-12 Paul Eggert <eggert@twinsun.com>
11147
11148 * doc/bison.texinfo (How Can I Reset @code{yyparse}): Reword the
11149 English a bit. Fix fclose typo. Change "const char" to "char
11150 const", and use ANSI C rather than K&R for "main". Suggest
11151 YY_FLUSH_BUFFER over yyrestart (as that is what Flex recommends)
11152 and suggest yy_switch_to_buffer.
11153
11154 2003-05-05 Paul Eggert <eggert@twinsun.com>
11155
11156 * lib/bitset.h (__INT_TO_PTR): Define to a value that presumes
11157 C89. This avoids a diagnostic on compilers that define __STDC__
11158 to 0, fixing a problem with Tru64 cc reported by Martin Mokrejs in
11159 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
11160
11161 2003-05-03 Paul Eggert <eggert@twinsun.com>
11162
11163 * lib/bitset.h (BITSET_FOR_EACH, BITSET_FOR_EACH_REVERSE):
11164 Do not overrun array bounds.
11165 This should fix a bug reported today by Olatunji Oluwabukunmi in
11166 <http://lists.gnu.org/archive/html/bug-bison/2003-05/msg00004.html>.
11167
11168 2003-04-29 Akim Demaille <akim@epita.fr>
11169
11170 * src/gram.h, src/gram.c (pure_parser, glr_parser): Move to...
11171 * src/getargs.c, src/getargs.h: here, as bool, not int.
11172 (nondeterministic_parser): New.
11173 * src/parse-gram.y, src/scan-gram.l: Support
11174 %nondeterministic-parser.
11175 * src/output.c (prepare): Use nondeterministic_parser instead
11176 of glr_parser where appropriate.
11177 * src/tables.c (conflict_row, action_row, save_row)
11178 (token_actions, token_actions, pack_vector): Ditto.
11179
11180 2003-04-29 Akim Demaille <akim@epita.fr>
11181
11182 * doc/bison.texinfo (C++ Parsers, Implementing Loops): New.
11183
11184 2003-04-29 Akim Demaille <akim@epita.fr>
11185
11186 * tests/calc.at: Also test yacc.c and glr.c (but not lalr1.cc yet)
11187 with %pure-parser and %locations to exercise the patch from Yakov
11188 Markovitch below.
11189
11190 2003-04-28 Tim Van Holder <tim.van.holder@pandora.be>
11191
11192 * data/yacc.c: (b4_lex_param): Corrected for the case where
11193 %lex-param is provided and %pure-parser isn't.
11194
11195 2003-04-27 Paul Eggert <eggert@twinsun.com>
11196
11197 Avoid gcc -Wundef warnings reported by Gerald Pfeifer in
11198 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00044.html>.
11199 * data/yacc.c (YYSTACK_ALLOC): Don't evaluate YYSTACK_USE_ALLOCA
11200 if it is not defined.
11201 (YYMAXDEPTH): Don't evaluate YYMAXDEPTH if it is not defined.
11202
11203 2003-04-26 Paul Eggert <eggert@twinsun.com>
11204
11205 * data/lalr1.cc (yy::Parser::pact_ninf_, yy::Parser::table_ninf_):
11206 Declare to be of type suitable for the ninf value itself, not of
11207 type suitable for the corresponding table, since the latter might
11208 be unsigned but the ninf value might be negative. This fixes a
11209 bug reported by Alexandre Duret-Lutz in
11210 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00017.html>.
11211
11212 * configure.ac (AC_FUNC_ERROR_AT_LINE): Remove, since gl_ERROR
11213 invokes it. We shouldn't invoke it twice because it will attempt
11214 to put error.o in the archive twice. This fixes a glitch reported
11215 by Martin Mokrejs in
11216 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
11217
11218 2003-04-21 Paul Eggert <eggert@twinsun.com>
11219
11220 * m4/error.m4: Update from Bruno Haible's 2003-04-14 patch
11221 to gnulib.
11222
11223 2003-04-21 Yakov Markovitch <Markovitch@iso.ru>
11224
11225 * data/glr.c (yyexpandGLRStack) [!YYSTACKEXPANDABLE]:
11226 Fix obvious typo that results in uncompilable GLR parsers
11227 when both %pure-parser and %locations are used. (trivial change)
11228
11229 2003-04-17 Paul Eggert <eggert@twinsun.com>
11230
11231 * src/scan-gram.l: Add %option nounput, since we no longer use unput.
11232 (unexpected_eof): Renamed from unexpected_end_of_file, for brevity.
11233 Do not insert the expected token via unput, as this runs afoul
11234 of a POSIX-compatibility bug in flex 2.5.31.
11235 All uses changed to BEGIN the parent state,
11236 since we no longer insert the expected token via unput.
11237 * tests/regression.at (Invalid inputs): Remove cascaded diagnostic
11238 that is no longer emitted after the above change.
11239
11240 * src/conflicts.c (set_conflicts): Resolve all conflicts, not just
11241 the first one. This change is from Paul Hilfinger, and it fixes
11242 regression reported by Werner Lemberg in
11243 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
11244
11245 (resolve_sr_conflict): Don't invoke state_errs_set
11246 unless one or more tokens have been explicitly made errors.
11247 Otherwise, the above change causes Bison to abort.
11248
11249 * tests/existing.at (GNU pic Grammar): New test case, taken from
11250 Lemberg's email.
11251
11252 2003-03-31 Akim Demaille <akim@epita.fr>
11253
11254 * doc/Makefile.am (AM_MAKEINFOFLAGS): Don't split the info file.
11255
11256 2003-03-31 Akim Demaille <akim@epita.fr>
11257
11258 * src/output.c (prepare_symbols): Avoid trailing spaces in the
11259 output.
11260
11261 2003-03-31 Akim Demaille <akim@epita.fr>
11262
11263 * doc/bison.texinfo (Strings are Destroyed): s/losses/loses/.
11264 From Paul Hilfinger.
11265
11266 2003-03-29 Akim Demaille <akim@epita.fr>
11267
11268 * m4/error.m4: Do not put under dynamic conditions some code which
11269 expansion is under static control.
11270
11271 2003-03-29 Akim Demaille <akim@epita.fr>
11272
11273 * doc/bison.texinfo (How Can I Reset @code{yyparse}): New.
11274
11275 2003-03-29 Akim Demaille <akim@epita.fr>
11276
11277 * doc/bison.texinfo (Strings are Destroyed): New.
11278
11279 2003-03-13 Paul Eggert <eggert@twinsun.com>
11280
11281 * .cvsignore: Add configure.lineno.
11282 * src/.cvsignore: Add yacc.
11283 * tests/.cvsignore: Add testsuite.log.
11284 * doc/fdl.texi: Sync with latest FSF version.
11285
11286 2003-03-12 Paul Eggert <eggert@twinsun.com>
11287
11288 * scan-gram.l (YY_USER_INIT): Initialize code_start, too.
11289 (<INITIAL><<EOF>>, <SC_PRE_CODE><<EOF>>): Set *loc to the scanner
11290 cursor, instead of leaving it undefined. This fixes a bug
11291 reported by Tim Van Holder in
11292 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00023.html>.
11293 * tests/input.at (Torturing the Scanner): Test the scanner on
11294 an empty input file, which was Tim Van Holder's test case.
11295
11296 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): When checking whether
11297 <sys/resource.h> can be included, include sys/time.h and
11298 sys/times.h first, if available. This works around the SunOS
11299 4.1.4 porting bug reported by Bruce Becker in
11300 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00018.html>.
11301
11302 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't
11303 AC_CHECK_HEADERS([sys/wait.h]), as this interferes with
11304 AC_HEADER_SYS_WAIT.
11305
11306 Merge changes from gnulib. This was prompted because the CVS
11307 snapshot didn't build on Solaris 7 due to strnlen problems.
11308
11309 These changes need to be merged back into gnulib:
11310 * lib/hash.c: Include <stdbool.h> unconditionally.
11311 * m4/onceonly.m4 (m4_quote): New macro.
11312 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
11313 Quote AC_FOREACH variable-expansions properly.
11314 The 2003-01-03 obstack.h change also needs merging.
11315 {end of changes requiring merging}
11316
11317 * lib/stdbool.h.in, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
11318 m4/getopt.m4, m4/hash.m4, m4/malloc.m4, m4/memchr.m4,
11319 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/quote.m4,
11320 m4/quotearg.m4, m4/realloc.m4, m4/stpcpy.m4, m4/strnlen.m4,
11321 m4/strtol.m4, m4/strtoul.m4, m4/unlocked-io.m4, m4/xalloc.m4:
11322 New files, imported from gnulib.
11323 * m4/Makefile.am (EXTRA_DIST): Add the new m4/*.m4 files mentioned
11324 above.
11325
11326 * lib/mbswidth.c, m4/error.m4, m4/mbrtowc.m4, m4/mbswidth.m4,
11327 m4/memcmp.m4, m4/prereq.m4, m4/stdbool.m4: Update to current
11328 gnulib sources.
11329
11330 * configure.ac (gl_DIRNAME, gl_GETOPT, gl_HASH, gl_QUOTE, gl_XALLOC):
11331 Add.
11332 (gl_ERROR): New, replacing jm_PREREQ_ERROR.
11333 (gl_FUNC_ALLOCA): New, replacing AC_FUNC_ALLOCA.
11334 (gl_FUNC_STPCPY): New, replacing AC_REPLACE_FUNCS(stpcpy).
11335 (gl_FUNC_STRNLEN): New, replacing AC_FUNC_STRNLEN.
11336 (gl_MBSWIDTH): New, replacing jm_PREREQ_MBSWIDTH.
11337 (gl_OBSTACK): New, replacing AC_FUNC_OBSTACK.
11338 (gl_QUOTEARG): New, replacing jm_PREREQ_QUOTEARG.
11339 (jm_FUNC_GLIBC_UNLOCKED_IO, gl_FUNC_STPCPY, gl_FUNC_STRTOL): New.
11340 (jm_FUNC_MALLOC): New, replacing AC_FUNC_MALLOC.
11341 (jm_FUNC_REALLOC): New, replacing AC_FUNC_REALLOC.
11342 (jm_PREREQ_ARGMATCH): Remove.
11343 (AC_REPLACE_FUNCS): Remove memchr, memrchr, stpcpy, strtol, strtoul.
11344 * lib/Makefile.am (libbison_a_SOURCES): Add argmatch.c, argmatch.h.
11345
11346 * src/system.h: Include <stdbool.h> unconditionally.
11347
11348 * lib/bbitset.h: Include <limits.h> unconditionally. We have been
11349 assuming at least C89 in the bitset code for some time now.
11350
11351 2003-03-03 Akim Demaille <akim@epita.fr>
11352
11353 * ro.po: New.
11354
11355 2003-03-02 Akim Demaille <akim@epita.fr>
11356
11357 * doc/bison.texinfo (Table of Symbols): Reactivate the
11358 documentation for %lex-param, and %parse-param.
11359
11360 2003-03-02 Akim Demaille <akim@epita.fr>
11361
11362 * data/yacc.c, data/glr.c, data/lal1.cc: Use similar code to
11363 generate verbose error messages.
11364 Use the number of tokens as an upper bound in yytname, as it
11365 cannot be a non terminal.
11366
11367 2003-03-02 Akim Demaille <akim@epita.fr>
11368
11369 * tests/regression.at (_AT_DATA_DANCER_Y): Fix the expected error
11370 message.
11371
11372 2003-03-02 Akim Demaille <akim@epita.fr>
11373
11374 * tests/regression.at (_AT_DATA_DANCER_Y, AT_CHECK_DANCER): New.
11375 Use them to exercise yycheck overrun.
11376 Based on Andrew Suffield's grammar.
11377
11378 2003-03-02 Akim Demaille <akim@epita.fr>
11379
11380 Create tests/local.at for Bison generic testing macros.
11381
11382 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Move to...
11383 * tests/local.at (AT_BISON_OPTION_PUSHDEFS, AT_BISON_OPTION_POPDEFS):
11384 This new file.
11385 * tests/calc.at (AT_CHECK_CALC): Adjust.
11386 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR)
11387 (AT_COMPILE, AT_COMPILE_CXX, AT_PARSER_CHECK): Move to...
11388 * tests/local.at: here.
11389 (AT_COMPILE_CXX): Tags the tests using it as c++.
11390 Ignore the test if CXX is not functional.
11391
11392 2003-03-01 Paul Eggert <eggert@twinsun.com>
11393
11394 * src/scan-gram.l (code_start): Initialize it to scanner_cursor,
11395 not loc->end, since loc->end might contain garbage and this leads
11396 to undefined behavior on some platforms.
11397 (id_loc, token_start): Use (IF_LINTed) initial values that do not
11398 depend on *loc, so that the reader doesn't give the the false
11399 impression that *loc is initialized.
11400 (<INITIAL>"%%"): Do not bother setting code_start, since its value
11401 does not survive the return.
11402
11403 2003-03-01 Akim Demaille <akim@epita.fr>
11404
11405 * src/scan-gram.l (code_start): Always initialize it when entering
11406 into yylex, as SC_EPILOGUE is activated *before* the corresponding
11407 yylex invocation. An alternative would be making it static, but
11408 then it starts with the second %%'s beginning, instead of its end.
11409
11410 2003-02-28 Paul Eggert <eggert@twinsun.com>
11411
11412 * lib/mbswidth.c: Include <wchar.h> before "mbswidth.h", to work
11413 around a UnixWare 7.1.1 porting bug reported by John Hughes in
11414 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00030.html>.
11415
11416 2003-02-26 Paul Eggert <eggert@twinsun.com>
11417
11418 * README: Mention compiler bug in Sun Forte Developer 6 update 2.
11419 Remove Sequent/Pyramid discussion (nobody uses them any more).
11420 Merge VMS and MS-DOS discussion; these ports may well be dead
11421 but let's keep mentioning them for now. Put <> around email
11422 addresses. Add copyright notice.
11423
11424 2003-02-24 Paul Eggert <eggert@twinsun.com>
11425
11426 * data/glr.c (yy_reduce_print): yylineno -> yylno,
11427 to avoid collision with flex use of yylineno.
11428 Problem reported by Bruce Lilly in
11429 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00016.html>.
11430 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
11431 * data/yacc.c (yy_reduce_print): Likewise.
11432
11433 * config/depcomp: Sync with Automake 1.7.3.
11434
11435 2003-02-21 Akim Demaille <akim@epita.fr>
11436
11437 * data/lalr1.cc: Use temporary variables instead of casts to
11438 change integer types.
11439 Suggested by Paul Eggert.
11440
11441 2003-02-21 Akim Demaille <akim@epita.fr>
11442
11443 * doc/bison.texinfo: Use "location" consistently to refer to @n,
11444 to avoid confusions with lalr1.cc's notion of Position.
11445 Suggested by Paul Eggert.
11446
11447 2003-02-20 Akim Demaille <akim@epita.fr>
11448
11449 * data/lalr1.cc (position.hh): Make sure "columns" never pushes
11450 before initial_columns.
11451 (location.hh): Use consistent variable names when defining the
11452 operator<<.
11453 Use "last" so that we subtract from Positions, not from unsigned.
11454
11455 2003-02-20 Akim Demaille <akim@epita.fr>
11456
11457 * data/lalr1.cc (position.hh): New subfile, including the extended
11458 and Doxygen'ed documentation of class Position.
11459 (location.hh): Use it.
11460 Document a` la Doxygen.
11461 With the help of Benoit Perrot.
11462
11463 2003-02-20 Akim Demaille <akim@epita.fr>
11464
11465 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Define
11466 AT_YACC_IF.
11467 Redefine AT_YYERROR_SEES_LOC_IF using it.
11468 (_AT_DATA_CALC_Y): Don't declare yyerror when lalr1.cc, as it is
11469 not defined.
11470 Don't use the location in yy::Parser::error_ and
11471 yy::Parser::print_ when not %locations.
11472 Activate more lalr1.cc tests.
11473
11474 2003-02-19 Akim Demaille <akim@epita.fr>
11475
11476 * data/lalr1.cc: When displaying a line number, be sure to make it
11477 an int.
11478
11479 2003-02-19 Akim Demaille <akim@epita.fr>
11480
11481 * data/lalr1.cc (b4_stack_depth_init, yy::Parser::initdepth_):
11482 Remove, useless.
11483 (YYABORT, YYACCEPT, YYERROR): New.
11484 * tests/calc.at: Renable the lalr1.cc test.
11485
11486 2003-02-19 Akim Demaille <akim@epita.fr>
11487
11488 * tests/calc.at (AT_CHECK_CALC): Check different scenarios of
11489 error recovery, mixing with/without pops and discarding of the
11490 lookahead.
11491 Exercise YYERROR.
11492 Disable the lalr1.cc tests as currently it doesn't support YYERROR.
11493
11494 2003-02-17 Paul Eggert <eggert@twinsun.com>
11495
11496 * tests/atlocal.in (LDFLAGS, LIBS): New vars.
11497 * tests/testsuite.at (AT_COMPILE): Use them.
11498 This fixes the testsuite problem reported by Robert Lentz in
11499 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00011.html>.
11500
11501 2003-02-12 Paul Eggert <eggert@twinsun.com>
11502
11503 * data/yacc.c (yyerrlab) [YYERROR_VERBOSE]:
11504 Avoid subscript error in yycheck. Bug reported by Andrew Suffield in
11505 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00003.html>.
11506 * data/glr.c (yyreportSyntaxError) [YYERROR_VERBOSE]: Likewise.
11507 Check for malloc failure, for consistency with yacc.c.
11508 (yytname_size): Remove, for consistency with yacc.c.
11509
11510 The bug still remains in data/lalr1.cc, as I didn't have time
11511 to fix it there.
11512
11513 2003-02-06 Akim Demaille <akim@epita.fr>
11514
11515 * configure.ac (GXX): Rename as...
11516 (CXX): this, to keep the original Autoconf semantics.
11517 Require 2.57.
11518 * data/lalr1.cc: Fix b4_copyright invocations.
11519 If YYDEBUG is not defined, don't depend upon name_ being defined.
11520 (location.hh): Include string and iostream.
11521 (Position::filename): New member.
11522 (Position::Position ()): New.
11523 (operator<< (Position)): New.
11524 (operator- (Position, int)): New.
11525 (Location::first, Location::last): Rename as...
11526 (Location::begin, Location::end): these, to mock the conventional
11527 iterator names.
11528 (operator<< (Location)): New.
11529 * tests/atlocal.in (CXX): New.
11530 * tests/testsuite.at (AT_COMPILE_CXX): New.
11531 * tests/calc.at (_AT_DATA_CALC_Y): Adjust yyerror to report the
11532 locations in a more synthetic way.
11533 (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF is positive if
11534 lalr1.cc is used.
11535 Adjust the C locations to match those from Emacs: first column is
11536 column 0.
11537 Change all the expected results.
11538 Conform to the GCS: simplify the locations when applicable.
11539 (LOC, VAL, YYLLOC_FORMAL, YYLLOC_ARG, USE_YYLLOC, LEX_FORMALS)
11540 (LEX_ARGS, USE_LEX_ARGS, LEX_PRE_FORMALS, LEX_PRE_ARGS): Replace
11541 these CPP macros with the m4 macros new defined by...
11542 (AT_CHECK_PUSHDEFS): this, i.e.:
11543 (AT_LALR1_CC_IF, AT_PURE_LEX_IF, AT_LOC, AT_VAL, AT_LEX_FORMALS)
11544 (AT_LEX_ARGS, AT_USE_LEX_ARGS, AT_LEX_PRE_FORMALS, AT_LEX_PRE_ARGS)
11545 New macros.
11546 (AT_CHECK_POPDEFS): Undefine them.
11547 (AT_CHECK_CALC_LALR1_CC): New.
11548 Use it for the first lalr1.cc test.
11549
11550 2003-02-04 Akim Demaille <akim@epita.fr>
11551
11552 * data/lalr1.cc (YYLLOC_DEFAULT): Fix its definition: be based on
11553 Location as is defined.
11554
11555 2003-02-04 Akim Demaille <akim@epita.fr>
11556
11557 * data/lalr1.cc: If YYDEBUG is not defined, don't depend upon
11558 name_ being defined.
11559
11560 2003-02-03 Paul Eggert <eggert@twinsun.com>
11561
11562 * src/gram.h (start_symbol): Remove unused decl.
11563
11564 Use more-consistent naming conventions for local vars.
11565
11566 * src/derives.c (derives_compute): Change type of local var from
11567 int to rule_number.
11568 * src/gram.c (grammar_rules_partial_print): Likewise.
11569 * src/print.c (print_core): Likewise.
11570 * src/reduce.c (reduce_grammar_tables): Likewise.
11571
11572 * src/gram.c (grammar_dump): Change name of item_number *
11573 local var from r to rp.
11574 * src/nullable.c (nullable_compute): Likewise.
11575
11576 * src/gram.h (ISTOKEN, ISVAR): Use i, not s, for int var.
11577
11578 * src/gram.h (symbol_number_as_item_number): Use sym, not s,
11579 for symbol or symbol_number var.
11580 * src/reader.c (grammar_start_symbol_set): Likewise.
11581 * src/reader.h (grammar_start_symbol_set, grammar_symbol_append):
11582 Likewise.
11583 * src/state.c (transitions_to): Likewise.
11584 * src/state.h: Likewise.
11585 * src/tables.c (symbol_number_to_vector_number): Likewise.
11586
11587 * src/muscle_tab.h (MUSCLE_OBSTACK_SGROW): Use p, not s, for
11588 char * var.
11589
11590 * src/parse-gram.y (lloc_default): Use loc, not r, for YYLTYPE
11591 var.
11592
11593 * src/scan-gram.l (no_cr_read): Use bytes_read, not s, for size
11594 var.
11595
11596 * src/system.h (xstrndup, strchr, strspn, strnlen, memchr, memrchr):
11597 Use str, not s, for char * var. Use ch, not c, for character var.
11598 Use size for size var.
11599
11600 * src/uniqstr.c (uniqstr_new, uniqstr_assert): Use str, not s, for
11601 char * var.
11602 (uniqstr_print, uniqst_print_processor): Use ustr, not s, for
11603 uniqstr var.
11604 * src/uniqstr.h: Likewise.
11605
11606 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
11607 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
11608 get_node_alignment_str, get_arrow_mode_str, get_crossing_type_str,
11609 get_view_str, get_linestyle_str, get_arrowstyle_str): Rename
11610 param to have same name as that of enum, so that we don't use
11611 "s" to stand for a non-state.
11612
11613 2003-02-02 Akim Demaille <akim@epita.fr>
11614
11615 * src/scan-skel.l: Scan more than one inert character per yylex
11616 invocation.
11617
11618 2003-02-01 Paul Eggert <eggert@twinsun.com>
11619
11620 Version 1.875a.
11621
11622 * po/LINGUAS: Add ms.
11623
11624 2003-01-30 Akim Demaille <akim@epita.fr>
11625
11626 * doc/Makefile.am (CLEANFILES): Add bison.fns for distcheck.
11627
11628 2003-01-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
11629
11630 * tests/cxx-type.at: Correct apparent typo in Bison input: $$ instead
11631 of $1.
11632
11633 Changes in response to error report by S. Eken: GLR mode does not
11634 handle negative $ indices or $ indices in embedded rules correctly.
11635 See <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00076.html>.
11636
11637 * data/glr.c (b4_rhs_value): Change to use YYFILL macro.
11638 (b4_rhs_location): Ditto.
11639 (yyfill): New function to copy from stack tree into array
11640 incrementally.
11641 (yyuserAction): Modify to allow incremental move of semantic values
11642 to rhs array when in GLR mode.
11643 Define YYFILL to use in user-defined actions to fill semantic array
11644 as needed.
11645 Remove dummy use of yystack, as there is now a guaranteed use.
11646 (yydoAction): Modify to allow incremental move of semantic values
11647 to rhs array when in GLR mode.
11648 (yyresolveAction): Ditto.
11649 (yyglrShiftDefer): Update comment.
11650 (yyresolveStates): Use X == NULL for pointers, not !X.
11651 (yyglrReduce): Ditto.
11652 (yydoAction): Ditto
11653
11654 * tests/glr-regr1.at: Rename to ...
11655 * tests/glr-regression.at: Add new regression test for the problems
11656 described above (adapted from S. Eken).
11657 Update copyright notice.
11658 * tests/testsuite.at: Rename glr-regr1.at to glr-regression.at.
11659 * tests/Makefile.am: Ditto.
11660
11661 2003-01-28 Paul Eggert <eggert@twinsun.com>
11662
11663 * data/lalr1.cc: Do not use @output_header_name@ unless
11664 b4_defines_flag is set. This fixes two bugs reported by
11665 Tim Van Holder in
11666 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00071.html>
11667 and <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00073.html>.
11668
11669 2003-01-21 Paul Eggert <eggert@twinsun.com>
11670
11671 * data/yacc.c (YYERROR): Move code from yyerrlab1 to here, so that
11672 we don't need to worry about yyerrlab1 being reported as an
11673 "unused label" by non-GCC C compilers. The downside is that if
11674 locations are used then a couple of statements are duplicated each
11675 time YYERROR is invoked, but the upside is that the warnings
11676 should vanish.
11677 (yyerrlab1): Move code to YERROR.
11678 (yyerrlab2): Remove. Change uses back to yyerrlab1.
11679 This reverts some of the 2002-12-27 change.
11680
11681 2003-01-17 Paul Eggert <eggert@twinsun.com>
11682
11683 * src/output.c (symbol_printers_output): Fix typo that led
11684 to core dump. Problem reported by Antonio Rus in
11685 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00058.html>.
11686
11687 2003-01-13 Akim Demaille <akim@epita.fr>,
11688 Quoc Peyrot <chojin@lrde.epita.fr>,
11689 Robert Anisko <anisko_r@lrde.epita.fr>
11690
11691 * data/lalr1.cc (parse::yyerrlab1): When popping the stack, stop
11692 when the stacks contain one element, as the loop would otherwise
11693 free the last state, and then use the top state (the one we just
11694 popped). This means that the initial elements will not be freed
11695 explicitly, as is the case in yacc.c; it is not a problem, as
11696 these elements have fake values.
11697
11698 2003-01-11 Paul Eggert <eggert@twinsun.com>
11699
11700 * NEWS: %expect-violations are now just warnings, reverting
11701 to Bison 1.30 and 1.75 behavior. This fixes the GCC 3.2
11702 bootstrapping problem reported by Matthias Klose; see
11703 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00053.html>.
11704 * src/conflicts.c (conflicts_print): Likewise.
11705 * tests/conflicts.at (%expect not enough, %expect too much,
11706 %expect with reduce conflicts): Likewise.
11707 * doc/bison.texinfo (Expect Decl): Document this. Also mention
11708 that the warning is enabled if the number of conflicts changes
11709 (not necessarily increases).
11710
11711 * src/getargs.c (version): Update copyright year.
11712
11713 2003-01-09 Akim Demaille <akim@epita.fr>
11714
11715 * src/Makefile.am, lib/Makefile.am: Use $(VAR) instead of @VAR@.
11716
11717 2003-01-08 Paul Eggert <eggert@twinsun.com>
11718
11719 * Makefile.maint (WGETFLAGS):
11720 New macro, containing "-C off" to disable proxy caches.
11721 All uses of $(WGET) changed to $(WGET) $(WGETFLAGS).
11722 (rel-check): Use $(WGET) instead of wget.
11723
11724 2003-01-06 Paul Eggert <eggert@twinsun.com>
11725
11726 * doc/bison.texinfo (Generalized LR Parsing): Add a reference to
11727 the GLR paper of Scott, Johnstone and Hussain.
11728
11729 2003-01-04 Paul Eggert <eggert@twinsun.com>
11730
11731 * configure.ac (AC_ARG_ENABLE): Add --disable-yacc.
11732 (YACC_SCRIPT, YACC_LIBRARY): New vars to AC_SUBST.
11733 * lib/Makefile.am (lib_LIBRARIES): liby.a -> @YACC_LIBRARY@.
11734 (EXTRA_LIBRARIES): New var, for liby.a.
11735 * src/Makefile.am (bin_SCRIPTS): yacc -> @YACC_SCRIPT@.
11736 (EXTRA_SCRIPTS): New var, for yacc.
11737
11738 * data/yacc.c (yyerrlab1): Omit attribute if __cplusplus is defined,
11739 since GNU C++ (as of 3.2.1) does not allow attributes on labels.
11740 Problem reported by Nelson H. F. Beebe.
11741
11742 2003-01-03 Paul Eggert <eggert@twinsun.com>
11743
11744 * lib/obstack.h (__INT_TO_PTR) [__STDC__]: Cast result to
11745 (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
11746 when compiling Bison 1.875's `bitset bset = obstack_alloc
11747 (bobstack, bytes);'. Problem reported by Nelson H. F. Beebe.
11748
11749 * src/scan-skel.l (QPUTS): Omit redundant `;' from macro definition.
11750 ([^@\n]): Renamed from [^@\n]+ so that the token buffer does not
11751 grow to a huge size with typical invocation.
11752
11753 * lib/hash.c (_Bool, bool, false, true, __bool_true_false_are_defined):
11754 Use the pattern recommended by Autoconf 2.57, except also protect
11755 against double-definition.
11756 * src/system.h: Likewise.
11757 Portability issues reported by Nelson H. F. Beebe.
11758
11759 * data/glr.c (yybool): Renamed from bool, to avoid collisions in C.
11760 All uses changed. Provide a definition in both C and C++.
11761 (yytrue, yyfalse): Define even if defined (__cplusplus).
11762
11763 * lib/bitset_stats.c (bitset_stats_list): Remove unused var.
11764 Reported by Nelson H. F. Beebe.
11765
11766 * src/scan-skel.l ("@oline@"): Output lineno+1, not lineno.
11767
11768 2003-01-02 Paul Eggert <eggert@twinsun.com>
11769
11770 * data/yacc.c (yyerrlab1): Append `;' after attribute, to
11771 pacify the buggy "smart preprocessor" in MacOS 10.2.3.
11772 Bug reported by Nelson H. F. Beebe.
11773
11774 2003-01-01 Paul Eggert <eggert@twinsun.com>
11775
11776 * Version 1.875.
11777
11778 2002-12-30 Paul Eggert <eggert@twinsun.com>
11779
11780 * src/scan-gram.l (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>","):
11781 Moved here from...
11782 (<INITIAL>","): Here. This causes stray "," to be treated
11783 more uniformly.
11784
11785 * src/scan-gram.l (<SC_BRACED_CODE>"}"): Output ";" before the
11786 last brace in braced code when not in Yacc mode, for compatibility
11787 with Bison 1.35. This resurrects the 2001-12-15 patch to
11788 src/reader.c.
11789
11790 * src/reader.h (YYDECL): Use YYSTYPE, not its deprecated alias
11791 yystype. This follows up the 2002-12-24 YYSTYPE bug fix.
11792
11793 2002-12-28 Paul Eggert <eggert@twinsun.com>
11794
11795 * src/symtab.c (symbol_make_alias): Set type of SYMVAL to be
11796 that of SYM's type. This fixes Debian bug 168069, reported by
11797 Thomas Olsson.
11798
11799 2002-12-28 Paul Eggert <eggert@twinsun.com>
11800
11801 Version 1.75f.
11802
11803 Switch back to the Yacc style of conflict reports, undoing some
11804 of the 2002-07-30 change.
11805 * doc/bison.texinfo (Understanding): Use Yacc style for
11806 conflict reports. Also, use new way of locating rules.
11807 * src/conflicts.c (conflict_report):
11808 Renamed from conflict_report_yacc, removing the old
11809 'conflict_report'. Translate the entire conflict report at once,
11810 so that we don't assume that "," has the same interpretation in
11811 all languages.
11812 (conflicts_output): Use Yacc-style conflict report for each state,
11813 instead of our more-complicated style.
11814 (conflicts_print): Use Yacc-style conflict report, except print
11815 the input file name when not emulating Yacc.
11816 * tests/conflicts.at (Unresolved SR Conflicts, Defaulted
11817 Conflicted Reduction, %expect not enough, %expect too much,
11818 %expect with reduce conflicts): Switch to Yacc-style conflict reports.
11819 * tests/existing.at (GNU Cim Grammar): Likewise.
11820 * tests/glr-regr1.at (Badly Collapsed GLR States): Likewise.
11821
11822 * src/complain.c (warn_at, warn, complain_at, complain, fatal_at,
11823 fatal): Don't invoke fflush; it's not needed and it might even be
11824 harmful for stdout, as stdout might not be open.
11825 * src/reduce.c (reduce_print): Likewise.
11826
11827 2002-12-27 Paul Eggert <eggert@twinsun.com>
11828
11829 Fix a bug where error locations were not being recorded correctly.
11830 This problem was originally reported by Paul Hilfinger in
11831 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00086.html>.
11832
11833 * data/yacc.c (yyparse): New local var yylerrsp, to record the
11834 top of the location stack's error locations.
11835 (yyerrlab): Set it. When discarding a token, push its location
11836 onto yylerrsp so that we don't lose track of the error's end.
11837 (yyerrlab1): Now is only the target of YYERROR, so that we can
11838 properly record the location of the action that failed. For GCC
11839 2.93 and later, insert an __attribute__ ((__unused__)) to avoid
11840 GCC warning about yyerrlab1 being unused if YYERROR is unused.
11841 (yyerrlab2): New label, which yyerrlab now falls through to.
11842 Compute the error's location by applying YYLLOC_DEFAULT to
11843 the locations of all the symbols that went into the error.
11844 * doc/bison.texinfo (Location Default Action): Mention that
11845 YYLLOC_DEFAULT is also invoked for syntax errors.
11846 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
11847 Error locations include the locations of all the tokens that were
11848 discarded, not just the last token.
11849
11850 2002-12-26 Paul Eggert <eggert@twinsun.com>
11851
11852 * src/files.c: Include quote.h.
11853 (compute_output_file_names): Warn if we detect conflicting
11854 outputs to the same file. This should catch the misunderstanding
11855 exemplified by Debian Bug 165349, reported by Bruce Stephens..
11856
11857 * src/conflicts.c (conflicts_print): If the user specifies
11858 "%expect N", report an error if there are any reduce/reduce
11859 conflicts. This is what the manual says should happen.
11860 This fixes Debian bug 130890, reported by Anthony DeRobertis.
11861 * tests/conflicts.at (%expect with reduce conflicts): New test.
11862
11863 Don't use m4_include on relative file names, as it doesn't work as
11864 desired if there happens to be a file with that name under ".".
11865
11866 * m4sugar/version.m4: Remove; it was included but it wasn't used.
11867 * data/Makefile.am (dist_m4sugar_DATA): Remove m4sugar/version.m4.
11868 * data/m4sugar/m4sugar.m4: Don't include m4sugar/version.m4.
11869 * data/glr.c, data/lalr1.cc, data/yacc.c: Don't include c.m4.
11870 * src/output.c (output_skeleton): Use full path names when
11871 specifying a file to include; don't rely on include path, as
11872 it's unreliable when the working file contains a file with
11873 that name.
11874
11875 2002-12-25 Paul Eggert <eggert@twinsun.com>
11876
11877 Remove obsolete references to bison.simple and bison.hairy.
11878 Problem mentioned by Aubin Mahe in
11879 <http://lists.gnu.org/archive/html/help-bison/2002-12/msg00010.html>.
11880 * data/glr.c: Comment fix.
11881 * doc/bison.1: Remove references. Also, mention "yacc".
11882
11883 * src/getargs.c (getargs) [MSDOS]: Don't assume optarg != NULL
11884 with -g option.
11885
11886 * src/parse-gram.y (declaration): Use enum "report_states" rather
11887 than its numeric value 1.
11888
11889 * src/scan-skel.l ("@output ".*\n): Close any old yyout before
11890 opening a new one. This fixes Debian bug 165349, reported by
11891 Bruce Stephens.
11892
11893 2002-12-24 Paul Eggert <eggert@twinsun.com>
11894
11895 Version 1.75e.
11896
11897 * Makefile.maint (cvs-update): Don't assume that the shell
11898 supports $(...), as Solaris sh doesn't.
11899
11900 * src/parse-gram.y (lloc_default): Remove test for empty
11901 nonterminals at the end, since it didn't change the result.
11902
11903 2002-12-24 Paul Eggert <eggert@twinsun.com>
11904
11905 If the user does not define YYSTYPE as a macro, Bison now declares it
11906 using typedef instead of defining it as a macro. POSIX requires this.
11907 For consistency, YYLTYPE is also declared instead of defined.
11908
11909 %union directives can now have a tag before the `{', e.g., the
11910 directive `%union foo {...}' now generates the C code
11911 `typedef union foo { ... } YYSTYPE;'; this is for Yacc compatibility.
11912 The default union tag is `YYSTYPE', for compatibility with Solaris 9
11913 Yacc. For consistency, YYLTYPE's struct tag is now `YYLTYPE'
11914 instead of `yyltype'.
11915
11916 `yystype' and `yyltype' are now obsolescent macros instead of being
11917 typedefs or tags; they are no longer documented and will be
11918 withdrawn in a future release.
11919
11920 * data/glr.c (b4_location_type): Remove.
11921 (YYSTYPE): Renamed from yystype.
11922 (YYSTYPE_IS_DECLARED): New macro, used to prevent double-typedef.
11923 (struct YYLTYPE): Renamed from struct yyltype.
11924 (YYLTYPE): Renamed from yyltype.
11925 (yyltype, yystype): New (and obsolescent) macros,
11926 for backward compatibility.
11927 * data/yacc.c: Likewise.
11928
11929 * data/yacc.c (YYSTYPE): Declare as union YYSTYPE if the user
11930 does not specify a union tag. This is for compatibility with
11931 Solaris 9 yacc.
11932
11933 * src/parse-gram.y (add_param): 2nd arg is now char * not char
11934 const *, since it is now modified by stripping surrounding { }.
11935 (current_braced_code): Remove.
11936 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_UNION,
11937 PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Change names to include
11938 trailing " {...}". Now of type <chars>.
11939 (grammar_declaration): Adjust to bundled tokens.
11940 (code_content): Remove; stripping is now done by add_param.
11941 (print_token_value): Print contents of bundled tokens.
11942 (token_name): New function.
11943
11944 * src/reader.h (braced_code, current_braced_code): Remove.
11945 (token_name): New decl.
11946
11947 * src/scan-gram.l (handle_dollar, handle_at): Now takes int
11948 token_type, not braced_code code_kind. All uses changed.
11949 (SC_PRE_CODE): New state, for scanning after a keyword that
11950 has (or usually has) an immediately-following braced code.
11951 (token_type): New local var, to keep track of which token type
11952 to return when scanning braced code.
11953 (<INITIAL>"%destructor", <INITIAL>"%lex-param",
11954 <INITIAL>"%parse-param", <INITIAL>"%printer",
11955 <INITIAL>"%union"): Set token type and BEGIN SC_PRE_CODE
11956 instead of returning a token type immediately.
11957 (<INITIAL>"{"): Set token type.
11958 (<SC_BRACED_CODE>"}"): Use it.
11959 (handle_action_dollar, handle_action_at): Now returns bool
11960 indicating success. Fail if ! current_rule; this prevents a core dump.
11961 (handle_symbol_code_dollar, handle_symbol_code_at):
11962 Remove; merge body into caller.
11963 (handle_dollar, handle_at): Complain in invalid contexts.
11964
11965 * NEWS, doc/bison.texinfo: Document the above.
11966 * NEWS: Fix years and program names in copyright notice.
11967
11968 2002-12-17 Paul Eggert <eggert@twinsun.com>
11969
11970 * NEWS, doc/bison.texinfo (Parser Function, Pure Calling, Error
11971 Reporting, Table of Symbols): Omit mentions of %lex-param and
11972 %parse-param from the documentation for now.
11973
11974 2002-12-15 Paul Eggert <eggert@twinsun.com>
11975
11976 Undo most of the 2002-11-12 yychar -> yytoken patch, as it broke
11977 GCC 3.2.1 (which depends on yychar == YYEMPTY when there is no
11978 lookahead symbol, and which sets yychar in parser actions) and it
11979 disagreed with the Bison documentation. Bug
11980 reported by Andrew Walrond.
11981
11982 * data/yacc.c (YYTRANSLATE): Don't check for negative argument,
11983 as the caller now does that.
11984 (yyclearin, YYBACKUP, yyparse): Use yychar, not yytoken.
11985 (YYEMPTY): Parenthesize right hand side, since others use it.
11986 (yyparse): Don't assume that our generated code is the only code
11987 that sets yychar.
11988
11989 2002-12-13 Paul Eggert <eggert@twinsun.com>
11990
11991 Version 1.75d.
11992
11993 POSIX requires a "yacc" command.
11994 * src/Makefile.am (bin_SCRIPTS): New macro, for yacc.
11995 (MOSTLYCLEANFILES): Add yacc.
11996 (yacc): New rule.
11997 * doc/bison.texinfo (Invocation, Bison Options): Mention yacc
11998 as an alias for bison y.
11999
12000 * po/LINGUAS: Add da.
12001
12002 * src/getargs.c (__GNU_LIBRARY__) [lint]: Define to work around
12003 problem with latest <getopt.h>.
12004 (HACK_FOR___GNU_LIBRARY___PROTOTYPE): New macro.
12005
12006 * doc/fdl.texi: Upgrade to 1.2.
12007 * lib/alloca.c, lib/error.c, lib/getopt.c, lib/getopt.h
12008 lib/getopt1.c, lib/gettext.h, lib/memrchr.c, lib/obstack.c,
12009 lib/obstack.h, lib/strnlen.c, lib/unlocked-io.h: Sync with
12010 gnulib.
12011 * config/install-sh: Sync with autotools.
12012
12013 Fix a bad interaction with flex 2.5.23 reported by Bruce Lilly in
12014 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
12015 * data/yacc.c (YYLTYPE, struct yyltype): Do not define unless
12016 locations are requested.
12017 (union yyalloc): Do not depend on YYLTYPE_IS_TRIVIAL unless
12018 locations are requested.
12019
12020 2002-12-12 Paul Eggert <eggert@twinsun.com>
12021
12022 Remove unportable casts and storage allocation tricks.
12023 While we're at it, remove almost all casts, since they
12024 usually aren't needed and are a sign of trouble.
12025
12026 * configure.ac (AC_CHECK_TYPES): Check for uintptr_t.
12027
12028 * src/derives.c (derives_compute): Do not subtract NTOKENS from
12029 the pointer DSET returned by malloc; this isn't portable.
12030 Instead, always use DSET[i - NTOKENS] rather than DSET[i].
12031 Similarly for DERIVES.
12032 * src/lalr.c (set_goto_map): Likewise, for GOTO_MAP and TEMP_MAP.
12033 * src/nullable.c (nullable_compute): Likewise, for RSETS and NULLABLE.
12034 * src/reduce.c (reduce_grammar_tables): Likewise, for nontermmap
12035
12036 * src/derives.c (derives_compute): Do not bother invoking
12037 int_of_rule_number, since rule numbers are integers.
12038
12039 * src/files.c (concat2, tr, compute_base_name): Use xmalloc (N)
12040 rather than XMALLOC (char, N).
12041
12042 * src/files.c (filename_split): Rewrite to avoid cast.
12043
12044 * src/gram.h (symbol_number_as_item_number,
12045 item_number_as_symbol_number, rule_number_as_item_number,
12046 item_number_as_rule_number):
12047 Now inline functions rather than macros, to avoid casts.
12048 * src/state.h (state_number_as_int): Likewise.
12049 * src/tables.c (state_number_to_vector_number,
12050 symbol_number_to_vector_number): Likewise.
12051
12052 * src/gram.h (int_of_rule_number): Remove; no longer used.
12053
12054 * src/lalr.c (add_lookback_edge): Use malloc rather than calloc,
12055 since the resulting storage is always stored into.
12056
12057 * src/main.c (alloca) [C_ALLOCA]: Add decl here, the only place
12058 where it's needed.
12059
12060 * src/muscle_tab.c (muscle_m4_output):
12061 Now inline. Return bool, not int.
12062 * src/state.c (state_compare): Likewise.
12063 * src/symtab.c (symbol_check_defined,
12064 symbol_check_alias_consistency, symbol_pack, symbol_translation,
12065 hash_compare_symbol, hash_symbol):
12066 Likewise.
12067 * src/uniqstr.c (uniqstr_print): Likewise.
12068 * src/muscle_tab.c (muscle_m4_output_processor):
12069 New function, to avoid casts.
12070 * src/state.c (state_comparator, stage_hasher): Likewise.
12071 * src/symtab.c (symbol_check_defined_processor,
12072 symbol_check_alias_consistency_processor, symbol_pack_processor,
12073 symbol_translation_processor, hash_symbol_comparator,
12074 hash_symbol_hasher): Likewise.
12075 * src/uniqstr.c (uniqstr_print_processor): Likewise.
12076 * src/muscle_tab.c (muscles_m4_output):
12077 Use new functions instead of casting old functions unportably.
12078 * src/state.c (state_hash_new): Likewise.
12079 * src/symtab.c (symbols_new, symbols_do, symbols_check_defined,
12080 symbols_token_translations_init):
12081 Likewise.
12082 * src/uniqstr.c (uniqstrs_new, hash_initialize, uniqstrs_do): Likewise.
12083
12084 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): Use long local
12085 var instead of casting to long, to avoid casts.
12086 (prepare_states): Use MALLOC rather than alloca, so that we don't
12087 have to worry about alloca.
12088 * src/state.c (state_hash_lookup): Likewise.
12089
12090 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>"'"): Use unsigned char
12091 local var instead of casting to unsigned char, to avoid casts.
12092
12093 * src/state.c (TRANSITIONS_ALLOC, ERRS_ALLOC, REDUCTIONS_ALLOC,
12094 STATE_ALLOC): Remove.
12095 (transitions_new, errs_new, reductions_new, state_new): Use malloc
12096 rather than calloc, and use offsetof to avoid allocating slightly
12097 too much storage.
12098 (state_new): Initialize all members.
12099
12100 * src/state.c (state_hash): Use unsigned accumulator, not signed.
12101
12102 * src/symtab.c (symbol_free): Remove; unused.
12103 (symbol_get): Remove cast in lhs of assignment.
12104 (symbols_do): Now static. Accept generic arguments, not
12105 hashing-related ones.
12106
12107 * src/symtab.h: (NUMBER_UNDEFINED): Remove unnecessary cast.
12108 (symbol_processor): Remove.
12109 (symbols_do): Remove decl; now static.
12110
12111 * src/system.h (alloca): Remove; decl no longer needed.
12112 (<stddef.h>): Include, for offsetof.
12113 (<inttypes.>, <stdint.h>): Include if available.
12114 (uintptr_t): New type, if system lacks it.
12115 (CALLOC, MALLOC, REALLOC): New macros.
12116 All uses of XCALLOC, XMALLOC, and XREALLOC changed to use these
12117 new macros.
12118
12119 * src/tables.c (table_size): Now int, to pacify GCC.
12120 (table_grow, table_ninf_remap): Use signed table size.
12121 (save_row): Don't bother initializing locals when not needed.
12122 (default_goto, goto_actions, pack_vector): Remove unnecessary casts.
12123 * src/uniqstr.c (hash_compare_uniqstr): Likewise.
12124
12125 * src/vcg.h: Correct misspellings.
12126
12127 * src/vcg_defaults.h (G_CMAX): Now INT_MAX.
12128
12129
12130 * src/getargs.c (getargs): Don't assume EOF == -1.
12131
12132 2002-12-09 Paul Eggert <eggert@twinsun.com>
12133
12134 Change identifier spellings to avoid collisions with names
12135 that are reserved by POSIX.
12136
12137 Don't use names ending in _t, since POSIX reserves them.
12138 For consistency, remove _e and _s endings -- they're weren't
12139 needed to remove ambiguity. All uses changed.
12140 * src/uniqstr.h (uniqstr): Renamed from uniqstr_t, which in
12141 turn was just renamed from struniq_t.
12142 * src/uniqstr.c (uniqstr_processor): Renamed from struniq_processor,
12143 which in turn was just renamed from struniq_processor_t.
12144 (hash_compare_uniqstr): Renamed from hash_compare_struniq, which
12145 in turn was renamed from hash_compare_struniq_t.
12146 * src/LR0.c (struct state_list): Renamed from struct state_list_s.
12147 (state_list): Renamed from state_list_t.
12148 * src/assoc.h (assoc): Renamed from assoc_t.
12149 * src/conflicts.c (enum conflict_resolution): Renamed from
12150 enum conflict_resolution_e.
12151 * src/derives.c (struct rule_list): Renamed from struct rule_list_s.
12152 (rule_list): Renamed from rule_list_t.
12153 * src/getargs.h (enum trace): Renamed from enum trace_e.
12154 (enum report): Renamed from enum report_e.
12155 * src/gram.h (item_number): Renamed from item_number_t.
12156 (rule_number): Renamed from rule_number_t.
12157 (struct rule_s): Remove the "rule_s" part; not used.
12158 (rule): Renamed from rule_t.
12159 (rule_filter): Renamed from rule_filter_t.
12160 * src/lalr.c (struct goto_list): Renamed from struct goto_list_s.
12161 (goto_list): Renamed from goto_list_t.
12162 * src/lalr.h (goto_number): Renamed from goto_number_t.
12163 * src/location.h (location): Renamed from location_t.
12164 * src/muscle_tab.c (muscle_entry): Renamed from muscle_entry_t,
12165 and moved here from:
12166 * src/muscle_tab.h (muscle_entry_t): here.
12167 * src/nullable.c (struct rule_list): Renamed from struct rule_list_s.
12168 (rule_list): Renamed from rule_list_t.
12169 * src/print_graph.c (static_graph): Renamed from graph.
12170 * src/reader.h (braced_code): Renamed from braced_code_t.
12171 Remove brace_code_e tag.
12172 * src/relation.h (relation_node): Renamed from relation_node_t.
12173 (relation_nodes): Renamed from relation_nodes_t.
12174 (relation): Renamed from relation_t.
12175 * src/state.h (state_number): Renamed from state_number_t.
12176 (struct state): Renamed from struct state_s.
12177 (state): Renamed from state_t.
12178 (transitions): Renamed from transitions_t. Unused (and
12179 misspelled) transtion_s tag removed.
12180 (errs): Renamed from errs_t. Unused errs_s tag removed.
12181 (reductions): Renamed from reductions_t. Unused tag
12182 reductions_s removed.
12183 * src/symlist.h (symbol_list): Renamed from symbol_list_t.
12184 (struct symbol_list): Renamed from struct symbol_list_s.
12185 * src/symtab.h (symbol_number): Renamed from symbol_number_t.
12186 (struct symbol): Renamed from struct symbol_s.
12187 (symbol): Renamed from symbol_t.
12188 * src/tables.c (vector_number): Renamed from vector_number_t.
12189 (action_number): Renamed from action_t.
12190 * src/tables.h (base_number): Renamed from base_t.
12191 * src/vcg.h (enum color): Renamed from enum color_e.
12192 (enum textmode): Renamed from enum textmode_e.
12193 (enum shape): Renamed from enum shape_e.
12194 (struct colorentry): Renamed from struct colorentry_s.
12195 (struct classname): Renamed from struct classname_s.
12196 (struct infoname): Renamed from struct infoname_s.
12197 (enum layoutalgorithm): Renamed from enum layoutalgorithm_e.
12198 (enum decision): Renamed from enum decision_e.
12199 (enum orientation): Renamed from enum orientation_e.
12200 (enum alignment): Renamed from enum alignment_e.
12201 (enum arrow_mode): Renamed from enum arrow_mode_e.
12202 (enum crossing_type): Renamed from enum crossing_type_e.
12203 (enum view): Renamed from enum view_e.
12204 (struct node): Renamed from struct node_s.
12205 (node): Renamed from node_t.
12206 (enum linestyle): Renamed from enum linestyle_e.
12207 (enum arrowstyle): Renamed from enum arrowstyle_e.
12208 (struct edge): Renamed from struct edge.
12209 (edge): Renamed from edge_t.
12210 (struct graph): Renamed from struct graph_s.
12211 (graph): Renamed from graph_t.
12212 * tests/calc.at (_AT_DATA_CALC_Y, Simple LALR Calculator):
12213 Rename value_t -> value.
12214 * tests/input.at (Torturing the Scanner): Rename value_t -> value,
12215 value_t_as_yystype -> value_as_yystype.
12216
12217 Don't include <errno.h> in the mainstream code, since it
12218 reserves E[A-Z0-9]* and we want to use symbols like 'EQUALS'.
12219 * lib/get-errno.c, lib/get-errno.h: New files.
12220 * lib/Makefile.am (libbison_a_SOURCES): Add get-errno.h,
12221 get-errno.c.
12222 * src/files.c (xfopen, xfclose): Use get_errno instead of errno.
12223 * src/output.c (output_skeleton): Likewise.
12224 * src/scan-gram.l (<INITIAL>{int}): Use set_errno and get_errno
12225 instead of errno.
12226 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>\\x[0-9abcdefABCDEF]+):
12227 Likewise.
12228 (handle_action_dollar, handle_action_at): Likewise.
12229 * src/system.h: Do not include <errno.h>.
12230 (TAB_EXT): Renamed from EXT_TAB.
12231 (OUTPUT_EXT): Renamed from EXT_OUTPUT.
12232
12233 Avoid str[a-z]*, since <string.h> reserves that name space.
12234 Change all instances of "struniq" in names to "uniqstr", and
12235 likewise for "STRUNIQ" and "UNIQSTR".
12236 * src/uniqstr.c: Renamed from src/struniq.c.
12237 * src/uniqstr.h: Renamed from src/struniq.h.
12238 * src/Makefile.am (bison_SOURCES): Adjust to these renamings.
12239 * src/files.c (strsuffix): Remove; unused.
12240 (concat2): Renamed from stringappend. Now static.
12241 * src/files.h (strsuffix, stringappend): Remove; unused.
12242 * src/parse-gram.y (<chars>): Renamed from <string>.
12243 (<uniqstr>): Renamed from <struniq>.
12244 * src/scan-gram.l (obstack_for_string): Renamed from string_obstack.
12245 * src/vcg.h (struct node_s.expand): Renamed from struct node_s.stretch.
12246 (struct graph_s.expand): Renamed from struct graph_s.stretch.
12247 * src/vcg_defaults.h (G_EXPAND): Renamed from G_STRETCH.
12248 (G_LONG_STRAIGHT_PHASE): Renamed from G_STRAIGHT_PHASE.
12249 (N_EXPAND): Renamed from N_STRETCH.
12250
12251 Avoid *_MAX and *_MIN, since <limits.h> reserves that name space.
12252 * data/yacc.c (YYSTACK_GAP_MAXIMUM): Renamed from YYSTACK_GAP_MAX.
12253 * src/gram.h (ITEM_NUMBER_MAX, ITEM_NUMBER_MIN, RULE_NUMBER_MAX):
12254 Remove; unused.
12255 * src/lalr.h (GOTO_NUMBER_MAXIMUM): Renamed from GOTO_NUMBER_MAX.
12256 * src/state.h (STATE_NUMBER_MAXIMUM): Renamed from STATE_NUMBER_MAX.
12257 * src/symtab.h (SYMBOL_NUMBER_MAXIMUM): Renamed from SYMBOL_NUMBER_MAX.
12258 * src/tables.c (VECTOR_NUMBER_MAX, VECTOR_NUMBER_MIN): Remove; unused.
12259 (BASE_MAXIMUM): Renamed from BASE_MAX.
12260 (BASE_MINIMUM): Renamed from BASE_MIN.
12261 (ACTION_MAX): Remove; unused.
12262 (ACTION_NUMBER_MINIMUM): Renamed from ACTION_MIN.
12263 Unnecessary casts removed from above defines.
12264
12265
12266 Fix misspelling in names.
12267 * src/vcg.h (enum_alignment_e): Renamed from enum_alignement_e.
12268 * src/vcg_defaults.h (G_NODE_ALIGNMENT): Renamed from
12269 G_NODE_ALIGNEMENT.
12270
12271
12272 * lib/timevar.c (timevar_report): Renamed from time_report,
12273 for consistency with other names.
12274 * lib/timevar.h (timevar_report): New decl.
12275 * src/system.h (time_report): Remove; decl is now in lib/timevar.h.
12276
12277
12278 Sort include-file uses.
12279
12280 Reorder all include files under src to be in the order "system.h".
12281 then the ../lib include files in angle brackets (alphabetized),
12282 then the . include files in double-quotes (alphabetized). Fix
12283 dependency breakages encountered in this process, as follows:
12284 * src/closure.h, src/derives.h, src/state.h: Include "gram.h".
12285 * src/complain.c: Don't include stdlib.h, string.h _LIBC stuff.
12286 * src/state.h: Include "symtab.h".
12287
12288 2002-12-08 Paul Eggert <eggert@twinsun.com>
12289
12290 * data/glr.c, data/lalr1.cc, data/yacc.c: Do not use __file__,
12291 since this causes problems when __file__ contains character
12292 sequences like "@" that are treated specially by src/scan-skel.l.
12293 Instead, just use the file's basename. This fixes the bug
12294 reported by Martin Mokrejs in
12295 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00007.html>.
12296
12297 2002-12-06 Paul Eggert <eggert@twinsun.com>
12298
12299 Add support for rules that do not have trailing semicolons, as
12300 POSIX requires. Improve the quality of locations in Bison
12301 diagnostics.
12302
12303 * src/location.c: Include <quotearg.h>.
12304 (empty_location): Now const.
12305 (location_print): New function. Follow the recommendation of the
12306 GNU Coding Standards for locations that span file boundaries.
12307 * src/location.h: Do not include <quotearg.h>; no longer needed.
12308 (boundary): New type.
12309 (location_t): Use it. This allows locations to span file boundaries.
12310 All member uses changed: file -> start.file or end.file (as needed),
12311 first_line -> start.line, first_column -> start.column,
12312 last_line -> end.line, last_column -> end.column.
12313 (equal_boundaries): New function.
12314 (LOCATION_RESET, LOCATION_STEP): Remove.
12315 (LOCATION_PRINT): Remove. All callers changed to use location_print.
12316 (empty_location): Now const.
12317 (location_print): New decl.
12318 * src/parse-gram.y (lloc_default): New function, which handles
12319 empty locations more accurately.
12320 (YYLLOC_DEFAULT): Use it.
12321 (%token COLON): Remove.
12322 (%token ID_COLON): New token.
12323 (rules): Use it.
12324 (declarations, rules): Remove trailing semicolon.
12325 (declaration, rules_or_grammar_declaration):
12326 Allow empty (";") declaration.
12327 (symbol_def): Remove empty actions; no longer needed.
12328 (rules_or_grammar_declaration): Remove trailing semicolon.
12329 (semi_colon.opt): Remove.
12330 * src/reader.h: Include location.h.
12331 (scanner_cursor): New decl.
12332 * src/reduce.c (nonterminals_reduce): Use warn_at rather than
12333 rolling our own.
12334 * src/scan-gram.l (YY_USER_INIT): Initialize scanner_cursor instead
12335 of *loc.
12336 (STEP): Remove. No longer needed, now that adjust_location does
12337 the work. All uses removed.
12338 (scanner_cursor): New var.
12339 (adjust_location): Renamed from extend_location. It now sets
12340 *loc and adjusts the scanner cursor. All uses changed.
12341 Don't bother testing for CR.
12342 (handle_syncline): Remove location arg; now updates scanner cursor.
12343 All callers changed.
12344 (unexpected_end_of_file): Now accepts start boundary of token or
12345 comment, not location. All callers changed. Update scanner cursor,
12346 not the location.
12347 (SC_AFTER_IDENTIFIER): New state.
12348 (context_state): Renamed from c_context. All uses changed.
12349 (id_loc, code_start, token_start): New local vars.
12350 (<INITIAL,SC_AFTER_IDENTIFIER>): New initial context. Move all
12351 processing of Yacc white space and equivalents here.
12352 (<INITIAL>{id}): Save id_loc. Begin state SC_AFTER_IDENTIFIER
12353 instead of returning ID immediately, since we need to search for
12354 a subsequent colon.
12355 (<INITIAL>"'", "\""): Save token_start.
12356 (<INITIAL>"%{", "{", "%%"): Save code_start.
12357 (<SC_AFTER_IDENTIFIER>): New state, looking for a colon.
12358 (<SC_YACC_COMMENT>, <SC_COMMENT>, <SC_LINE_COMMENT>):
12359 BEGIN context_state at end, not INITIAL.
12360 (<SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'",
12361 <SC_BRACED_CODE>"}", <SC_PROLOGUE>"%}", <SC_EPILOGUE><<EOF>>):
12362 Return correct token start.
12363 (<SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>): Save start boundary when
12364 the start of a character, string or multiline comment is found.
12365 * tests/conflicts.at (S/R in initial, Defaulted Conflicted
12366 Reduction): Adjust reported locations to match the more-precise
12367 results now expected.
12368 * tests/input.at (Invalid $n, Invalid @n, Type Clashes): Likewise.
12369 * tests/reduce.at (Useless Rules, Reduced Automaton,
12370 Underivable Rules): Likewise.
12371 * tests/regression.at (Invalid inputs): No longer `expecting ";"
12372 or "|"' now that so many other tokens are allowed by the new grammar.
12373
12374 * src/complain.h (current_file): Remove duplicate decl;
12375 current_file is now owned by files.h.
12376 * src/complain.c, src/scan-gram.l: Include files.h.
12377
12378 2002-12-06 Paul Eggert <eggert@twinsun.com>
12379
12380 * data/glr.c (yy_reduce_print): Don't assume that yyrline[yyrule]
12381 promotes to int; it might be unsigned int.
12382 * data/yacc.c (yy_reduce_print): Likewise.
12383
12384 * doc/bison.texinfo (Table of Symbols): YYERROR_VERBOSE should
12385 be #defined in the prologue, not in the Bison declarations.
12386 This fixes Debian Bug 102878, reported by Shaul Karl.
12387
12388 2002-12-02 Paul Eggert <eggert@twinsun.com>
12389
12390 * configure.ac (AC_REPLACE_FUNCS): Add strtoul.
12391 * lib/strtoul.c: New file, from gnulib.
12392 This fixes a porting bug reported by Peter Klein in
12393 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00000.html>.
12394
12395 2002-11-30 Paul Eggert <eggert@twinsun.com>
12396
12397 * src/scan-gram.l (no_cr_read, extend_location): Move to epilogue,
12398 and put only a forward declaration in the prologue. This is for
12399 consistency with the other scanner helper functions.
12400
12401 Type clashes now generate warnings, not errors, since it
12402 appears that POSIX may allow some grammars with type clashes.
12403 * src/reader.c (grammar_current_rule_check): Warn about
12404 type clashes instead of complaining.
12405 * tests/input.at (Type Clashes): Expect warnings, not complaints.
12406
12407 Add Yacc library, since POSIX requires it.
12408 * doc/bison.texinfo (Yacc Library): New node. Regenerate top menu.
12409 * lib/Makefile.am (lib_LIBRARIES, liby_a_SOURCES): New macros.
12410 * lib/main.c, lib/yyerror.c: New files.
12411
12412 gram_error can be static; it need not be extern.
12413 * src/reader.h (gram_error): Remove decl.
12414 * src/parse-gram.y (gram_error): Now static. Add static decl.
12415 (print_token_value): Omit parameter names from forward decl,
12416 for consistency.
12417
12418 2002-11-29 Paul Eggert <eggert@twinsun.com>
12419
12420 * doc/bison.texinfo: Emphasize that yylex and yyerror must
12421 be declared before being used. E.g., one should typically
12422 declare them in the prologue. Use GNU coding style in examples.
12423 Put "const" consistently after the type it modifies. Mention
12424 that C99 supports "inline". Mention that yyerror traditionally
12425 returns "int".
12426
12427 %parse-param and %lex-param now take just one argument, the
12428 declaration; the argument name is deduced from the declaration.
12429
12430 * doc/bison.texinfo (Parser Function, Pure Calling, Error
12431 Reporting, Table of Symbols): Document this.
12432 * src/parse-gram.y (add_param): New function.
12433 (COMMA): Remove.
12434 (declaration): Implement new rule for %parse-param and %lex-param.
12435 * src/scan-gram.l: "," now elicits a warning, rather than being
12436 a token; this is more compatible with byacc.
12437 * tests/calc.at (Simple LALR Calculator): Adopt new convention.
12438
12439 2002-11-27 Paul Eggert <eggert@twinsun.com>
12440
12441 Rename identifiers to avoid real and potential collisions.
12442
12443 * data/c.m4 (b4_yysymprint_generate): yyout -> yyoutput,
12444 to avoid collision with lex macro described by Bruce Lilly in
12445 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
12446 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
12447 * doc/bison.texinfo (Prologue, Tracing): yyprint -> print_token_value.
12448 * src/parse-gram.y (print_token_value): Renamed from yyprint.
12449 All uses changed.
12450 (YYPARSE_PARAM, YYLEX_PARAM, yycontrol): Remove. All uses changed.
12451 The name "yycontrol" violates the name space rules, and this stuff
12452 wasn't being used anyway.
12453 (input): Remove action; this stuff wasn't being used.
12454 (gram_error): Rename local variable yylloc -> loc.
12455 * src/reader.h (struct gram_control_s, gram_control_t): Remove.
12456 (YY_DECL): Don't use "yy" at start of local variables.
12457 All uses changed, e.g., yylloc -> loc.
12458 * src/scan-gram.l (STEP): Renamed from YY_STEP. All uses changed.
12459 (STRING_GROW): Renamed from YY_OBS_GROW. All uses changed.
12460 (STRING_FINISH): Renamed from YY_OBS_FINISH. All uses changed.
12461 (STRING_FREE): Renamed from YY_OBS_FREE. All uses changed.
12462
12463 * src/parse-gram.y (gram_error): loc is now const *.
12464 * src/reader.h (gram_error): Likewise.
12465
12466 2002-11-24 Paul Eggert <eggert@twinsun.com>
12467
12468 Version 1.75c.
12469
12470 * tests/actions.at (Actions after errors): Use an output format
12471 more similar to that of the Printers and Destructors test.
12472 Test the position of the ';' token too.
12473 (Printers and Destructors): Likewise.
12474 (Printers and Destructors: %glr-parser): Remove for now, to avoid
12475 unnecessarily alarming people when the test fails.
12476
12477 * data/yacc.c (yyerrlab1): Move this label down, so that the
12478 parser does not discard the lookahead token if the user code
12479 invokes YYERROR. This change is required for POSIX conformance.
12480
12481 * lib/error.c: Sync with gnulib.
12482
12483 2002-11-22 Paul Eggert <eggert@twinsun.com>
12484
12485 * lib/quotearg.c, lib/quotearg.h: Sync with gnulib.
12486 * lib/mbswidth.c, lib/mbswidth.h: Likewise.
12487 * lib/xmalloc.c: Likewise.
12488
12489 2002-11-20 Paul Eggert <eggert@twinsun.com>
12490
12491 * lib/argmatch.c, lib/argmatch.h: Sync with gnulib.
12492
12493 2002-11-20 Paul Eggert <eggert@twinsun.com>
12494
12495 Avoid use of <assert.h>, as the GNU Coding Standards hint that one
12496 should use `if (! x) abort ();' rather than `assert (x);', and
12497 anyway it's one less thing to worry about configuring.
12498
12499 * data/glr.c, lib/hash.c, src/system.h: Do not include <assert.h>.
12500 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise,
12501 and replace all instances of assert with abort.
12502 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
12503 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Likewise.
12504
12505 * data/glr.c (yydoAction, yyglrReduce, yysplitStack, yyresolveStates,
12506 yyresolveAction, yyprocessOneStack): Use abort rather than assert.
12507 * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
12508 hash_find_entry, hash_rehash, hash_insert): Likewise.
12509 * src/conflicts.c (resolve_sr_conflict): Likewise.
12510 * src/lalr.c (set_goto_map, map_goto): Likewise.
12511 * src/nullable.c (nullable_compute): Likewise.
12512 * src/output.c (prepare_rules, token_definitions_output): Likewise.
12513 * src/reader.c (packgram, reader): Likewise.
12514 * src/state.c (state_new, state_free, state_transitions_set,
12515 state_reduction_find): Likewise.
12516 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias,
12517 symbol_pack): Likewise.
12518 * src/tables.c (conflict_row, pack_vector): Likewise.
12519 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
12520 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
12521 get_node_alignement_str, get_arrow_mode_str, get_crossing_type_str,
12522 get_view_str, get_linestyle_str, get_arrowstyle_str): Likewise.
12523
12524 * lib/argmatch.h (ARRAY_CARDINALITY): Do not bother to #undef.
12525 (ARGMATCH_CONSTRAINT): New macro.
12526 (ARGMATCH_ASSERT): Use it.
12527
12528 * src/system.h (verify): New macro.
12529 * src/getargs.c (trace_argmatch, report_argmatch): Use verify
12530 rather than assert.
12531 * src/tables.c (tables_generate): Likewise.
12532
12533 * src/struniq.c (struniq_assert): Now returns void, and aborts
12534 if the assertion is false.
12535 (struniq_assert_p): Remove.
12536 * src/struniq.h: Likewise.
12537
12538 2002-11-18 Paul Eggert <eggert@twinsun.com>
12539
12540 * data/glr.c (yygetLRActions): Replace `yyindex' with
12541 `yytable[yyindex]' to fix typo introduced in my 2002-11-09 patch.
12542 This fixes the regression with Sun ONE Studio 7 cc that I reported in
12543 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00077.html>.
12544
12545 2002-11-18 Akim Demaille <akim@epita.fr>
12546
12547 * doc/bison.texinfo (Tracing): `yyprint' shouldn't prepend a
12548 space.
12549 From Tim Van Holder.
12550
12551 2002-11-17 Paul Eggert <eggert@twinsun.com>
12552
12553 Pacify Sun ONE Studio 7 lint. Also, rename "ParseError"
12554 to "SyntaxError" for consistency with my 2002-11-15 change.
12555
12556 * data/glr.c (YYDPRINTF, YYDSYMPRINT, YYDSYMPRINTF) [!YYDEBUG]: Do
12557 not define to {}, since this breaks the common use of `YYDPRINTF
12558 ((...));' if a single statement is desired (e.g. before `else').
12559 Work around GCC warnings by surrounding corresponding calls with
12560 {} if needed.
12561 (yyhasResolvedValue): Remove unused function.
12562 (yymergeOptionSets, yyresolvStack): Use `continue;' for empty
12563 loop body.
12564 (yyreportSyntaxError): Renamed from yyreportParseError.
12565 (yyrecoverSyntaxError): Renamed from yyrecoverParseError.
12566 All uses changed.
12567 * tests/calc.at (_AT_DATA_CALC_Y): Make vars static instead of
12568 extern when possible. Remove unused initializations.
12569
12570 2002-11-16 Akim Demaille <akim@epita.fr>
12571
12572 Augment the similarity between GLR and LALR traces.
12573
12574 * data/yacc.c (yy_stack_print, YY_STACK_PRINT, yy_reduce_print)
12575 (YY_REDUCE_PRINT): New.
12576 (yyparse): Use them.
12577 * data/glr.c (yy_reduce_print): Use YYFPRINTF, no need for
12578 YYDPRINT here.
12579 (yyglrReduce, yyrecoverParseError, yyparse): Don't report the
12580 state reached after the reduction/recovery, since...
12581 (yyparse, yyprocessOneStack): Report the state we are entering in.
12582
12583 2002-11-16 Akim Demaille <akim@epita.fr>
12584
12585 * src/getargs.h, src/getargs.c (trace_e, trace_args, trace_types):
12586 Add support for --trace=skeleton.
12587 * src/scan-skel.l: %option debug.
12588 Scan strings of non-@ or \n instead of character by character.
12589 (scan_skel): Handle trace_skeleton.
12590 (QPUTS): New.
12591 (@output_parser_name@, @output_header_name@): ``Restore'' their
12592 support (used to be M4 macros).
12593 * data/yacc.c: Quote larger chunks, a la glr.c.
12594 * data/lalr1.cc: Likewise.
12595 The header guards are no longer available, so use some other
12596 string than `YYLSP_NEEDED'.
12597
12598 2002-11-16 Akim Demaille <akim@epita.fr>
12599
12600 Make the ``Printers and Destructors'' test more verbose, taking
12601 `yacc.c''s behavior as (possibly wrong) reference.
12602
12603 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use printf
12604 instead of fprint on stdout.
12605 Set and report the last_line of the symbols.
12606 Consistently display values and locations.
12607
12608 2002-11-16 Paul Eggert <eggert@twinsun.com>
12609
12610 * data/yacc.c: Avoid over-quoting of __line__ and __file__.
12611
12612 2002-11-15 Paul Eggert <eggert@twinsun.com>
12613
12614 * tests/actions.at (Actions after errors): New test case.
12615
12616 * data/glr.c, data/lalr1.cc, data/yacc.cc, doc/bison.texinfo,
12617 src/conflicts.c, src/parse-gram.y, src/tables.c, src/tables.h,
12618 tests/action.at, tests/calc.at, tests/conflicts.at,
12619 tests/cxx-type.at, tests/regression.at:
12620 "parse error" -> "syntax error" for POSIX compatibility.
12621 "parsing stack overflow..." -> "parser stack overflow" so
12622 that code matches Bison documentation.
12623
12624 2002-11-15 Akim Demaille <akim@epita.fr>
12625
12626 * src/parse-gram.y (declaration): Have %parse-param and %lex-param
12627 take two BRACED_CODE, not two string_content.
12628 Free the scanner's obstack when we are done.
12629 (code_content): New.
12630 * tests/calc.at: Adjust.
12631 * doc/bison.texinfo: Adjust.
12632 Also, make sure to include the `,' for these declarations.
12633
12634 2002-11-15 Tim Van Holder <tim.van.holder@pandora.be>
12635
12636 * m4/prereq.m4: Removed the commented jm_PREREQ_HASH
12637 definition; avoids potential autoreconf problems.
12638
12639 2002-11-15 Akim Demaille <akim@epita.fr>
12640
12641 Always check the value returned by yyparse.
12642
12643 * tests/calc.at (_AT_DATA_CALC_Y): Have `main' exit with the value
12644 returned by yyparse.
12645 (_AT_CHECK_CALC_ERROR): Take the expected exit value as argument.
12646 Adjust calls.
12647 * tests/glr-regr1.at (glr-regr1.y): Have `main' exit with the value
12648 returned by yyparse.
12649
12650 2002-11-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
12651
12652 * data/glr.c (yyFail): Always set yyerrflag. Corrects regression
12653 on input.at test.
12654
12655 2002-11-14 Paul Eggert <eggert@twinsun.com>
12656
12657 * src/output.c (output_skeleton): Call xfopen instead of
12658 duplicating xfopen's body.
12659
12660 Fix bugs reported by Nelson H. F. Beebe in
12661 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00078.html>.
12662
12663 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that
12664 "$CC -E foo.h" is allowed, as this doesn't work with the Portland
12665 Group compiler. Instead, use "$CC -E bar.c". Include the .h
12666 file twice in the grammar, as an extra check.
12667
12668 * tests/input.at (Torturing the Scanner): Surround the
12669 backslash-newline tests with "#if 0", to make it less likely that
12670 we'll run into compiler bugs. Bring back solitary \ inside
12671 comment, but add a closing comment to work around HP C bug. Don't
12672 test backslash-newline in C character constant.
12673
12674 2002-11-14 Akim Demaille <akim@epita.fr>
12675
12676 * tests/synclines.at (AT_SYNCLINES_COMPILE): Ignore the exit
12677 status of the compiler.
12678 Calling `exit 1' is no longer needed.
12679 Reported by Nelson H. F. Beebe.
12680
12681 2002-11-14 Akim Demaille <akim@epita.fr>
12682
12683 * tests/atlocal.in (CPPFLAGS): We have config.h.
12684 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR):
12685 New.
12686 * tests/actions.at, tests/calc.at, tests/conflicts.at,
12687 * tests/cxx-type.at, tests/glr-regr1.at, tests/headers.at,
12688 * tests/regression.at, tests/torture.at: Use them for all the
12689 grammars that are to be compiled.
12690 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Rename as...
12691 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): this.
12692 * doc/bison.texinfo (GLR Parsers): Document `inline'.
12693
12694 2002-11-14 Akim Demaille <akim@epita.fr>
12695
12696 * doc/bison.texinfo: Various formatting changes (alignments in
12697 samples, additional @group/@end group, GCS in samples.
12698 Use @deffn instead of simple @table to define the directives,
12699 macros, variables etc.
12700
12701 2002-11-13 Paul Eggert <eggert@twinsun.com>
12702
12703 Fix some bugs reported by Albert Chin-A-Young in
12704 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00066.html>.
12705
12706 * tests/input.at (Torturing the Scanner): Don't invoke "cc a.c b.c
12707 -o c"; the HP C compiler chatters during compilation.
12708 Instead, invoke "cc -c a.c -o a.o; cc -c b.c -o b.o; cc a.o b.o -o c".
12709 * tests/headers.at (export YYLTYPE): Likewise.
12710
12711 * tests/input.at (Torturing the Scanner): Remove lines containing
12712 solitary backslashes, as they tickle a bug in the HP C compiler.
12713
12714 * tests/glr-regr1.at (Badly Collapsed GLR States): Avoid //
12715 comments, since they're not portable. Use GNU coding style.
12716
12717 2002-11-13 Akim Demaille <akim@epita.fr>
12718
12719 * data/yacc.c: Leave bigger chunks of quoted text.
12720 (YYDSYMPRINTF): New.
12721 Use it to report symbol activities.
12722 * data/glr.c (YYDSYMPRINTF): New.
12723 Use it.
12724
12725 2002-11-12 Paul Eggert <eggert@twinsun.com>
12726
12727 Version 1.75b.
12728
12729 * data/glr.c (yydoAction): Return YYRESULTTAG, not int.
12730 (yyglrReduce): Return yyok, not 0.
12731 This should avoid the enumerated-type warnings reported
12732 by Nelson H. F. Beebe in
12733 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00057.html>.
12734
12735 * lib/bbitset.h (BITSET_INLINE): Remove.
12736 * lib/bitset.h [! BITSET_INLINE]: Remove.
12737 (bitset_set, bitset_reset, bitset_test): Rename local vars
12738 to avoid shadowing warnings by GCC.
12739
12740 * data/glr.c (inline): Remove #define. It's the user's
12741 responsibility to #define it away, just like 'const'.
12742 This fixes one of the bugs reported by Nelson H. F. Beebe in
12743 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00058.html>.
12744
12745 * Makefile.maint (po-check): Scan .l and .y files instead of the
12746 .c and the .h files that they generate. This fixes the bug
12747 reported by Tim Van Holder in:
12748 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00062.html>
12749 Look for N_ as well as for _. Try to avoid matching #define for
12750 N_ and _.
12751 * po/POTFILES.in: Remove src/parse-gram.c, src/scan-gram.c,
12752 src/system.h. Add src/parse-gram.y, src/scan-gram.l.
12753 * src/scan-gram.l: Revamp regular expressions so that " and '
12754 do not confuse xgettext.
12755
12756 * src/struniq.h (struniq_new): Do not declare the return type
12757 to be 'const'; this violates the C standard.
12758 * src/struniq.c (struniq_new): Likewise.
12759
12760 2002-11-12 Albert Chin-A-Young <china@thewrittenword.com>
12761
12762 * src/Makefile.am (LDADD): Link $(LIBINTL) last to avoid the
12763 duplicate definition of optind on Tru64 UNIX 4.0D with the Compaq
12764 linker.
12765
12766 2002-11-12 Akim Demaille <akim@epita.fr>
12767
12768 * Makefile.maint: Sync with Autoconf:
12769 (local_updates): New.
12770
12771 2002-11-12 Akim Demaille <akim@epita.fr>
12772
12773 * po/POTFILES.in (src/lalr.c, src/state.c): Remove
12774
12775 2002-11-12 Akim Demaille <akim@epita.fr>
12776
12777 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Display the
12778 locations.
12779
12780 2002-11-12 Akim Demaille <akim@epita.fr>
12781
12782 * data/c.m4 (b4_yysymprint_generate): Pass *yyvaluep to YYPRINT,
12783 not yyvalue.
12784
12785 2002-11-12 Akim Demaille <akim@epita.fr>
12786
12787 * tests/actions.at (AT_CHECK_PRINTER_AND_DESTRUCTOR): New.
12788 Use it to test the GLR parser.
12789
12790 2002-11-12 Akim Demaille <akim@epita.fr>
12791
12792 * tests/regression.at (input.y): s/YYEOF/MYEOF/, as the skeleton
12793 defines it.
12794 * data/glr.c (yystos): New.
12795 (b4_yysymprint_generate, b4_yydestruct_generate): Invoke.
12796 (YYDSYMPRINT): New.
12797 (yyval): Don't define it, it is handled via M4.
12798 (yyrecoverParseError): Free verbosely the discarded symbols.
12799 * data/yacc.c (yysymprint): Remove, rather...
12800 (b4_yysymprint_generate): invoke.
12801 * data/c.m4 (b4_yysymprint_generate): New.
12802 Accept pointers as arguments, as opposed to the version from
12803 yacc.c.
12804 (b4_yydestruct_generate): Likewise.
12805 * tests/cations.at (Printers and Destructors): Use Bison directives
12806 instead of CPP macros.
12807 Don't rely on internal details.
12808
12809 2002-11-12 Akim Demaille <akim@epita.fr>
12810
12811 * data/c.m4 (b4_yydestruct_generate, b4_symbol_actions): New.
12812 * data/yacc.c: Rename yychar1 as yytoken, as in glr.c.
12813 Don't work on yychar (i.e., do set it to YYEMPTY, don't match
12814 it against YYEMPTY and so forth), work on yytoken (i.e., set
12815 it to YYEMPTY etc.).
12816 (yydestruct): Replace with a b4_yydestruct_generate invocation.
12817 (b4_symbol_actions): Remove.
12818 * data/glr.c (YYTRANSLATE): As for yacc.c, if negative, it stands
12819 for 0, end-of-input.
12820
12821 2002-11-12 Akim Demaille <akim@epita.fr>
12822
12823 * doc/bison.texinfo (Destructor Decl): New.
12824
12825 2002-11-12 Akim Demaille <akim@epita.fr>
12826
12827 * src/tables.c (tables_generate): Use free for pointers that
12828 cannot be NULL, not XFREE.
12829 (pack_vector): Use assert, not fatal, for bound violations.
12830 * src/state.c (state_new): Likewise.
12831 * src/reader.c (reader): Likewise.
12832 * src/lalr.c (set_goto_map): Likewise.
12833 * src/location.h (LOCATION_PRINT): If first_line is 0, just issue
12834 the file name.
12835
12836 2002-11-12 Akim Demaille <akim@epita.fr>
12837
12838 * src/scan-gram.l, src/reader.h (scanner_last_string_free):
12839 Restore.
12840 * src/scan-gram.l (last_string): Is global to the file, not to
12841 yylex.
12842 * src/parse-gram.y (input): Don't append the epilogue here,
12843 (epilogue.opt): do it here, and free the scanner's obstack.
12844 * src/reader.c (epilogue_set): Rename as...
12845 (epilogue_augment): this.
12846 * data/c.m4 (b4_epilogue): Defaults to empty.
12847
12848 2002-11-12 Akim Demaille <akim@epita.fr>
12849
12850 * src/getargs.c (long_options): Remove duplicates.
12851 * src/vmsgetargs.c, src/build.com, src/bison.cld, src/vmshlp.mar:
12852 Remove.
12853 * doc/bison.rnh: Remove.
12854 * doc/bison.texinfo (VMS Invocation): Remove.
12855
12856 2002-11-12 Akim Demaille <akim@epita.fr>
12857
12858 * src/struniq.h, src/struniq.c (struniq_t): Is const.
12859 (STRUNIQ_EQ, struniq_assert, struniq_assert_p): New.
12860
12861 Use struniq for symbols.
12862
12863 * src/symtab.h (symbol_t): The tag member is a struniq.
12864 (symbol_type_set): Adjust.
12865 * src/symtab.c (symbol_new): Takes a struniq.
12866 (symbol_free): Don't free the tag member.
12867 (hash_compare_symbol_t, hash_symbol_t): Rename as...
12868 (hash_compare_symbol, hash_symbol): these.
12869 Use the fact that tags as struniqs.
12870 (symbol_get): Use struniq_new.
12871 * src/symlist.h, src/symlist.c (symbol_list_n_type_name_get):
12872 Returns a strniq.
12873 * src/reader.h (merger_list, grammar_currentmerge_set): The name
12874 and type members are struniqs.
12875 * src/reader.c (get_merge_function)
12876 (grammar_current_rule_merge_set): Adjust.
12877 (TYPE, current_type): Are struniq.
12878
12879 Use struniq for file names.
12880
12881 * src/files.h, src/files.c (infile): Split into...
12882 (grammar_file, current_file): these.
12883 * src/scan-gram.c (YY_USER_INIT, handle_syncline): Adjust.
12884 * src/reduce.c (reduce_print): Likewise.
12885 * src/getargs.c (getargs): Likewise.
12886 * src/complain.h, src/complain.c: Likewise.
12887 * src/main.c (main): Call struniqs_new early enough to use it for
12888 file names.
12889 Don't free the input file name.
12890
12891 2002-11-12 Akim Demaille <akim@epita.fr>
12892
12893 * src/symtab.c (symbol_free): Remove dead deactivated code:
12894 type_name are properly removed.
12895 Don't use XFREE to free items that cannot be NULL.
12896 * src/struniq.h, src/struniq.c: New.
12897 * src/main.c (main): Initialize/free struniqs.
12898 * src/parse-gram.y (%union): Add astruniq member.
12899 (yyprint): Adjust.
12900 * src/scan-gram.l (<{tag}>): Return a struniq.
12901 Free the obstack bit that used to store it.
12902 * src/symtab.h (symbol_t): The 'type_name' member is a struniq.
12903
12904 2002-11-11 Paul Eggert <eggert@twinsun.com>
12905
12906 Revamp to fix many (but not all) of the C- and M4-related quoting
12907 problems. Among other things, this fixes the Bison bug reported
12908 by Jan Hubicka when processing the Bash grammar; see:
12909 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00039.html>
12910
12911 Use new @ escapes consistently. Represent brackets with @{ and @}
12912 rather than @<:@ and @:>@, since this works a bit better with dumb
12913 editors like vi. Represent @ with @@, since @ is now consistently
12914 an escape. Use @oline@ and @ofile@ rather than __oline__ and
12915 __ofile__, to avoid unexpected expansions. Similarly, use @output
12916 rather than #output.
12917
12918 * data/c.m4 (b4_copyright): Omit file name from comment, since
12919 the file name could contain "*/".
12920 (b4_synclines_flag): Don't quote the 2nd argument; it should already
12921 be quoted. All uses changed.
12922
12923 * data/glr.c: Use new @ escapes consistently.
12924 (b4_input_suffix, b4_output_parser_suffix, b4_output_parser_name,
12925 b4_output_header_suffix, b4_output_header_name, b4_header_guard):
12926 Remove, since they couldn't handle arbitrary characters in file
12927 names.
12928 * data/lalr1.cc: Likewise.
12929 * data/yacc.c: Likewise.
12930
12931 * src/files.c (output_infix): Remove; all uses removed.
12932 * src/files.h: Likewise.
12933
12934 * data/glr.c: Remove use of "#ifdef b4_header_guard", since it
12935 mishandled funny characters in file names, and anyway it isn't
12936 needed any more.
12937 * data/yacc.c: Likewise.
12938 * data/lalr1.cc: Use YYSLP_NEEDED instead of b4_header_guard.
12939
12940 * data/glr.c (YYSTYPE_IS_TRIVIAL): Define when the .h file would.
12941 * data/yacc.c: Likewise.
12942
12943 * src/muscle_tab.c: Include quotearg.h, since we need to quote C
12944 strings now.
12945 (muscle_init): Quote filename as a C string.
12946 * src/muscle_tab.h (MUSCLE_GROW_STRING_PAIR): Remove; unused.
12947 (MUSCLE_OBSTACK_SGROW, MUSCLE_INSERT_C_STRING): New macros.
12948 * src/output.c (escaped_file_name_output): New function.
12949 (prepare_symbols): Quote tokens for M4.
12950 (prepare): Don't insert output_infix, output_prefix,
12951 output_parser_name, output_header_name; this is now down by scan-skel.
12952 Insert skeleton as a C string.
12953
12954 * src/output.c (user_actions_output, symbol_destructors_output,
12955 symbol_printers_output): Quote filenames for C and M4.
12956 * src/reader.c (prologue_augment, epilogue_set): Likewise.
12957
12958 * src/scan-gram.l (<SC_CHARACTER>): Don't worry about any backslash
12959 escapes other than \\ and \'; this simplifies the code.
12960 (<SC_STRING>): Likewise, for \\ and \".
12961 (<SC_COMMENT,SC_LINE_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,
12962 SC_PROLOGUE,SC_EPILOGUE>): Escape $ and @, too.
12963 Use new escapes @{ and @} for [ and ].
12964
12965 * src/scan-skel.l (yylineno, yyoutname): Remove static vars, replacing
12966 them with auto vars.
12967 Switch to new escape scheme, where @ is the escape character uniformly.
12968 Abort if a stray escape character is found. Avoid unbounded input
12969 buffer when parsing non-escaped text.
12970
12971 * tests/input.at (Torturing the Scanner): Add tests that @oline@,
12972 __oline__, #output, $@, and @{ do not have unintended meanings.
12973
12974 2002-11-09 Paul Eggert <eggert@twinsun.com>
12975
12976 Fix the test failure due to GCC warnings described in
12977 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00000.html>.
12978 * data/glr.c (yyis_pact_ninf, yyis_table_ninf): New macros, which
12979 evaluate to 0 if it's impossible for NINF to be in the respective
12980 table.
12981 (yygetLRActions, yyrecoverParseError): Use them.
12982
12983 * src/scan-gram.l (unexpected_end_of_file): Fix bug: columns were
12984 counted in the token inserted at end of file. Now takes
12985 location_t *, not location_t, so that the location can be
12986 adjusted. All uses changed.
12987
12988 * tests/regression.at (Invalid inputs): Adjust wording in
12989 diagnostic to match the new behavior.
12990
12991 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR,
12992 AT_DATA_HORIZONTAL_GRAMMAR, AT_DATA_LOOKAHEADS_GRAMMAR,
12993 AT_DATA_STACK_TORTURE): Replace `assert (x);' with `if (! (x))
12994 abort ();'. This reduces the runtime of the "Many lookaheads"
12995 test from 27.6 to 2.7 minutes on a 440 MHz Ultrasparc III running
12996 GCC 3.2.
12997
12998 2002-11-07 Paul Eggert <eggert@twinsun.com>
12999
13000 * src/parse-gram.y (CHARACTER): Remove unused token.
13001 All uses removed.
13002
13003 * src/scan-gram.l: Remove stack option. We no longer use the
13004 stack, since the stack was never deeper than 1; instead, use the
13005 new auto var c_context to record the stacked value.
13006
13007 Remove nounput option. At an unexpected end of file, we now unput
13008 the minimal input necessary to end cleanly; this simplifies the
13009 code.
13010
13011 Avoid unbounded token sizes where this is easy.
13012
13013 (unexpected_end_of_file): New function.
13014 Use it to systematize the error message on unexpected EOF.
13015 (last-string): Now auto, not static.
13016 (YY_OBS_FREE): Remove unnecessary do while (0) wrapper.
13017 (scanner_last_string_free): Remove; not used.
13018 (percent_percent_count): Move decl to just before use.
13019 (SC_ESCAPED_CHARACTER): Return ID at unexpected end of file,
13020 not the (never otherwised-used) CHARACTER.
13021
13022 2002-11-07 Akim Demaille <akim@epita.fr>
13023
13024 Let yyerror always receive the msg as last argument, so that
13025 yyerror can be variadic.
13026
13027 * data/yacc.c (b4_yyerror_args): New.
13028 Use it when calling yyerror.
13029 * data/glr.c (b4_yyerror_args, b4_lyyerror_args): New.
13030 Use it when calling yyerror.
13031 * doc/bison.texinfo (Error Reporting): Adjust.
13032 * tests/calc.at (_AT_DATA_CALC_Y): Adjust.
13033 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Adjust.
13034
13035 2002-11-06 Akim Demaille <akim@epita.fr>
13036
13037 #line should have quoted strings.
13038 Ideally, this should be done by m4_quotearg.
13039
13040 * src/scan-skel.l: Include quotearg.h.
13041 Quote __ofile__.
13042 * src/output.c (symbol_printers_output)
13043 (symbol_destructors_output): Quote the file name.
13044
13045 2002-11-06 Akim Demaille <akim@epita.fr>
13046
13047 * tests/regression.at (Invalid inputs): Adjust to the recent
13048 messages.
13049
13050 2002-11-06 Akim Demaille <akim@epita.fr>
13051
13052 Restore --no-lines.
13053 Reported by Jim Kent.
13054
13055 * data/c.m4 (b4_syncline): New.
13056 * data/glr.c, data/yacc.c, data/lalr1.cc: Use it.
13057 * src/reader.c (prologue_augment, epilogue_set): Use b4_syncline.
13058 * src/output.c (user_actions_output): Likewise.
13059 (prepare): Define 'b4_synclines_flag'.
13060 * src/muscle_tab.c (muscle_init): Don't define b4_linef.
13061
13062 2002-11-06 Akim Demaille <akim@epita.fr>
13063
13064 * src/main.c (main): Free `infile'.
13065 * src/scan-gram.l (handle_syncline): New.
13066 Recognize `#line'.
13067 * src/output.c (user_actions_output, symbol_destructors_output)
13068 (symbol_printers_output): Use the location's file name, not
13069 infile.
13070 * src/reader.c (prologue_augment, epilogue_set): Likewise.
13071
13072 2002-11-05 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13073
13074 * src/tables.c (matching_state): Don't allow states to match if
13075 either has GLR conflict entries.
13076
13077 2002-11-05 Paul Eggert <eggert@twinsun.com>
13078
13079 * src/scan-gram.l: Use more accurate diagnostics, e.g.
13080 "integer out of range" rather than "invalid value".
13081 * tests/input.at (Invalid $n, Invalid @n): Change expected wording
13082 accordingly.
13083
13084 Scan <% and %> digraphs in C code as POSIX 1003.1-2001 requires.
13085 Also, remove one static variable in the scanner.
13086
13087 * src/scan-gram.l (braces_level): Now auto, not static.
13088 Initialize to zero if the compiler is being picky.
13089 (INITIAL): Clear braces_level instead of incrementing it.
13090 (SC_BRACED_CODE): Treat <% and %> as { and } when inside C code,
13091 as POSIX 1003.1-2001 requires.
13092 * src/system.h (IF_LINT): New macro, taken from coreutils.
13093 * configure.ac: Define "lint" if --enable-gcc-warnings.
13094
13095 2002-11-05 Akim Demaille <akim@epita.fr>
13096
13097 * src/scan-gram.l: When it starts with `%', complain about the
13098 whole directive, not just that `invalid character: %'.
13099
13100 2002-11-04 Akim Demaille <akim@epita.fr>
13101
13102 * Makefile.maint: Update from Autoconf.
13103 (update, cvs-update, po-update, do-po-update): New.
13104
13105 2002-11-04 Akim Demaille <akim@epita.fr>
13106
13107 * tests/glr-regr1.at (Badly Collapsed GLR States): Prototype yylex
13108 and yyerror.
13109 Have yyerror `use' its arguments.
13110 * tests/calc.at (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF
13111 returns true when location & yacc & pure & parse-param.
13112 (_AT_DATA_CALC_Y): Let yyerror ``use'' its arguments.
13113
13114 2002-11-04 Akim Demaille <akim@epita.fr>
13115
13116 * src/location.h (LOCATION_PRINT): Use quotearg slot 3 to avoid
13117 clashes.
13118 * src/scan-gram.l: Use [\'] instead of ['] to pacify
13119 font-lock-mode.
13120 Use complain_at.
13121 Use quote, not quote_n since LOCATION_PRINT no longer uses the
13122 slot 0.
13123
13124 2002-11-03 Paul Eggert <eggert@twinsun.com>
13125
13126 * src/reader.c (get_merge_function, grammar_current_rule_check):
13127 Use consistent diagnostics for reporting type name clashes.
13128 Quote the types with <>, for consistency with Yacc.
13129 * tests/input.at (Type Clashes): Adjust to diagnostic changes.
13130
13131 2002-11-03 Akim Demaille <akim@epita.fr>
13132
13133 * data/c.m4 (b4_identification, b4_user_args, b4_parse_param):
13134 New.
13135 * data/yacc.m4 (b4_pure_args, b4_Pure_args): New.
13136 (b4_parse_param): Remove.
13137 Use b4_identification.
13138 Propagate b4_pure_args where needed to pass them to yyerror.
13139 * data/glr.m4 (b4_parse_param): Remove.
13140 (b4_user_formals, b4_pure_args, b4_pure_formals, b4_lpure_args)
13141 (b4_lpure_formals): New.
13142 Use b4_identification.
13143 (YY_USER_FORMALS, YY_USER_ARGS): Remove, replaced by
13144 b4_user_formals and b4_user_args.
13145 (yyexpandGLRStack, yyFail, yyaddDeferredAction, yyglrShiftDefer)
13146 (yyreportAmbiguity): When using a pure parser, also need
13147 the location, and the parse-params.
13148 Adjust callers.
13149 (yyuserAction, yyglrShift, yyreportParseError, yyrecoverParseError):
13150 When using a pure parser, also need the parse-params.
13151 Adjust callers.
13152 * tests/calc.at: Test pure (%pure-parser) and absolutely pure
13153 (%pure-parser + %parse-param) LALR and GLR parsers.
13154 (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): New, define AT_PARAM_IF,
13155 AT_LOCATION_IF, AT_PURE_IF, AT_GLR_IF, AAT_PURE_AND_LOC_IF,
13156 AT_GLR_OR_PARAM_IF, AT_YYERROR_ARG_LOC_IF, AT_YYERROR_SEES_LOC_IF.
13157 (_AT_DATA_CALC_Y): Equip for purity of yyerror.
13158 (_AT_CHECK_CALC_ERROR): Use AT_YYERROR_SEES_LOC_IF.
13159 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Equip for yyerror purity.
13160 * doc/bison.texinfo: Untabify the whole file.
13161 (Parser Function): Document %parse-param, deprecate YYPARSE_PARAM.
13162 (Pure Calling): Document %lex-param, deprecate YYLEX_PARAM.
13163 (Error Reporting): Adjust to these new directives.
13164 Document %error-verbose, deprecate YYERROR_VERBOSE.
13165
13166 2002-11-03 Akim Demaille <akim@epita.fr>
13167
13168 * tests/calc.at: Change all the AT_CHECK_CALC_LALR and
13169 AT_CHECK_CALC_GLR invocations to use % directives, instead of
13170 command line options.
13171 * tests/cxx-type.at: Formatting changes.
13172
13173 2002-11-03 Paul Eggert <eggert@twinsun.com>
13174
13175 * src/scan-gram.l: Revamp to fix POSIX incompatibilities,
13176 to count columns correctly, and to check for invalid inputs.
13177
13178 Use mbsnwidth to count columns correctly. Account for tabs, too.
13179 Include mbswidth.h.
13180 (YY_USER_ACTION): Invoke extend_location rather than LOCATION_COLUMNS.
13181 (extend_location): New function.
13182 (YY_LINES): Remove.
13183
13184 Handle CRLF in C code rather than in Lex code.
13185 (YY_INPUT): New macro.
13186 (no_cr_read): New function.
13187
13188 Scan UCNs, even though we don't fully handle them yet.
13189 (convert_ucn_to_byte): New function.
13190
13191 Handle backslash-newline correctly in C code.
13192 (SC_LINE_COMMENT, SC_YACC_COMMENT): New states.
13193 (eols, blanks): Remove. YY_USER_ACTION now counts newlines etc.;
13194 all uses changed.
13195 (tag, splice): New EREs. Do not allow NUL or newline in tags.
13196 Use {splice} wherever C allows backslash-newline.
13197 YY_STEP after space, newline, vertical-tab.
13198 ("/*"): BEGIN SC_YACC_COMMENT, not yy_push_state (SC_COMMENT).
13199
13200 (letter, id): Don't assume ASCII; e.g., spell out a-z.
13201
13202 ({int}, handle_action_dollar, handle_action_at): Check for integer
13203 overflow.
13204
13205 (YY_STEP): Omit trailing semicolon, so that it's more like C.
13206
13207 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>): Allow \0 and \00
13208 as well as \000. Check for UCHAR_MAX, not 255.
13209 Allow \x with an arbitrary positive number of digits, as in C.
13210 Check for overflow here.
13211 Allow \? and UCNs, for compatibility with C.
13212
13213 (handle_symbol_code_dollar): Use quote_n slot 1 to avoid collision
13214 with quote slot used by complain_at.
13215
13216 * tests/input.at: Add tests for backslash-newline, m4 quotes
13217 in symbols, long literals, and funny escapes in strings.
13218
13219 * configure.ac (jm_PREREQ_MBSWIDTH): Add.
13220 * lib/Makefile.am (libbison_a_SOURCES): Add mbswidth.h, mbswidth.c.
13221 * lib/mbswidth.h, lib/mbswidth.c: New files, from GNU gettext.
13222 * m4/Makefile.am (EXTRA_DIST): Add mbswidth.m4.
13223 * m4/mbswidth.m4: New file, from GNU coreutils.
13224
13225 * doc/bison.texinfo (Grammar Outline): Document // comments.
13226 (Symbols): Document that trigraphs have no special meaning in Bison,
13227 nor is backslash-newline allowed.
13228 (Actions): Document that trigraphs have no special meaning.
13229
13230 * src/location.h (LOCATION_COLUMNS, LOCATION_LINES): Remove;
13231 no longer used.
13232
13233 2002-11-02 Paul Eggert <eggert@twinsun.com>
13234
13235 * src/reader.c: Don't include quote.h; not needed.
13236 (get_merge_function): Reword warning to be consistent with
13237 type clash diagnostic in grammar_current_rule_check.
13238
13239 * lib/quotearg.c (quotearg_buffer_restyled): Fix off-by-two
13240 bug in trigraph handling.
13241
13242 * src/output.c (prepare_symbols): When printing token names,
13243 escape "[" as "@<:@" and likewise for "]".
13244
13245 * src/system.h (errno): Remove declaration, as we are now
13246 assuming C89 or better, and C89 guarantees errno.
13247
13248 2002-10-30 Paul Eggert <eggert@twinsun.com>
13249
13250 * lib/bitset_stats.c (bitset_stats_read, bitset_stats_write):
13251 Check for close failures.
13252 * src/files.h (xfclose): Return void, not int, since it always
13253 returned zero.
13254 * src/files.c (xfclose): Likewise. Report I/O error if ferror
13255 indicates one.
13256 * src/output.c (output_skeleton): Use xfclose rather than fclose
13257 and ferror. xfclose now checks ferror.
13258
13259 * data/glr.c (YYLEFTMOST_STATE): Remove.
13260 (yyreportTree): Use a stack-based leftmost state. This avoids
13261 our continuing battles with bogus warnings about initializers.
13262
13263 2002-10-30 Akim Demaille <akim@epita.fr>
13264
13265 * src/system.h: Don't use #ifdef/#ifndef on HAVE_ values, only
13266 #if.
13267
13268 2002-10-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13269
13270 * tests/glr-regr1.at: New test for reported regressions.
13271 * tests/testsuite.at: Add glr-regr1.at test.
13272 * tests/Makefile.am: Add glr-regr1.at test.
13273
13274 2002-10-24 Paul Eggert <eggert@twinsun.com>
13275
13276 Version 1.75a.
13277
13278 * tests/calc.at (_AT_DATA_CALC_Y): Remove unused strcat declaration.
13279 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Include stdlib.h, since
13280 we use malloc. Don't assume 'A' through 'Z' are contiguous.
13281 Don't assume strdup exists; POSIX says its an XSI extension.
13282 Check for buffer overflow on input.
13283
13284 2002-10-24 Akim Demaille <akim@epita.fr>
13285
13286 * src/output.c (output_skeleton): Don't disable M4sugar comments
13287 too soon: it results in comments being expanded.
13288 * data/yacc.c, data/glr.c, data/lalr1.cc: Do it right before the
13289 first output.
13290
13291 2002-10-24 Akim Demaille <akim@epita.fr>
13292
13293 * data/yacc.c (m4_int_type): New.
13294 * data/c.m4 (m4_int_type): Don't use yysigned_char, but `signed
13295 char' as only yacc.c wants K&R portability.
13296 * data/glr.c (yysigned_char): Remove.
13297 * data/lalr1.cc: Rename the trailing b4_name as b4_parser_class_name.
13298 Reported by Quoc Peyrot.
13299
13300 2002-10-23 Paul Eggert <eggert@twinsun.com>
13301
13302 * src/main.c (main): With --trace=time, report times even if a
13303 non-fatal error occurs. Formerly, the times were reported in some
13304 such cases but not in others.
13305 * src/reader.c (reader): Just return if a complaint has been issued,
13306 instead of exiting, so that 'main' can report times.
13307
13308 2002-10-22 Akim Demaille <akim@epita.fr>
13309
13310 * src/system.h: Include sys/types.
13311 Reported by Bert Deknuydt.
13312
13313 2002-10-23 Paul Eggert <eggert@twinsun.com>
13314
13315 * configure.ac (AC_PROG_LEX): Use instead of AM_PROG_LEX.
13316 Suggested by Art Haas.
13317
13318 2002-10-22 Paul Eggert <eggert@twinsun.com>
13319
13320 * src/complain.c (exit) [! (STDC_HEADERS || _LIBC)]: Remove exit
13321 decl; not needed any more.
13322 * src/main.c (main): Use return to exit, undoing yesterday's change.
13323 The last OS that we could find where this wouldn't work is
13324 SunOS 3.5, and that's too old to worry about now.
13325
13326 * data/glr.c (struct yyltype): Define members even when not
13327 doing locations. This is more consistent with yacc.c, and it
13328 works around the following bug reports:
13329 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00106.html
13330 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00111.html
13331
13332 * doc/bison.texinfo: Minor spelling and typographical fixes. Use
13333 @acronym consistently. Standardize on "Yacc" instead of "YACC",
13334 "Algol" instead of "ALGOL". Give a bit more history about BNF.
13335
13336 2002-10-22 Akim Demaille <akim@epita.fr>
13337
13338 * data/README: New.
13339
13340 2002-10-21 Paul Eggert <eggert@twinsun.com>
13341
13342 Be consistent about 'bool'; the old code used an enum in one
13343 module and an int in another, and this violates the C standard.
13344 * m4/stdbool.m4: New file, from coreutils 4.5.3.
13345 * configure.ac (AC_HEADER_STDBOOL): Add.
13346 * m4/Makefile.am (EXTRA_DIST): Add stdbool.m4.
13347 * src/muscle_tab.c (hash_compare_muscles): (a ? FALSE : TRUE) -> (! a)
13348 * src/symtab.c (hash_compare_symbol_t): Likewise.
13349 * src/system.h (bool, false, true): Use a definition consistent
13350 with ../lib/hash.c. All uses changed.
13351
13352 * src/complain.c (warning_issued): Renamed from warn_message_count,
13353 so that we needn't worry about integer overflow (!).
13354 Now of type bool. All uses changed.
13355 (complaint_issued): Renamed from complain_message_count; likewise.
13356
13357 * src/main.c (main): Use exit to exit with failure.
13358
13359 * src/complain.c (fatal_at, fatal): Use EXIT_FAILURE and EXIT_SUCCESS
13360 rather than 1 and 0.
13361 * src/main.c (main): Likewise.
13362 * src/getargs.c (getargs): Likewise.
13363 * src/reader.c (reader): Likewise.
13364
13365 * src/getarg.c (getargs): Remove duplicate code for
13366 "Try `bison --help'".
13367
13368 * src/files.c (xfopen, xfclose): Use EXIT_FAILURE rather than 2.
13369 What was that "2" for?
13370
13371 * src/complain.h (fatal, fatal_at): Add __attribute__((__noreturn__)).
13372 * src/getargs.c (usage): Likewise.
13373
13374 * src/getargs.c (getargs): When there are too few operands, report
13375 the last one. When there are too many, report the first extra
13376 one. This is how diffutils does it.
13377
13378 2002-10-20 Paul Eggert <eggert@twinsun.com>
13379
13380 Remove K&R vestiges.
13381 * configure.ac (AC_C_CONST, AM_C_PROTOTYPES): Remove.
13382 * src/complain.c (VA_START): Remove. Assume prototypes.
13383 (vfprintf) [! (HAVE_VPRINTF || defined vfprintf)]: New macro.
13384 (private_strerror, warn_at, warn, complain_at, complain, fatal_at,
13385 fatal): Assume prototypes.
13386 * src/complain.h: Assume prototypes.
13387 * src/system.h (PARAMS): Remove.
13388 Include <limits.h> unconditionally, since it's guaranteeed even
13389 for a freestanding C89 compiler.
13390 (SHRT_MIN, SHRT_MAX): Remove, since C89 guarantees them.
13391 * src/vmsgetargs.c (getargs, cli_present, cli_get_value): Prototype.
13392
13393 2002-10-20 Akim Demaille <akim@epita.fr>
13394
13395 * src/muscle_tab.c (muscle_grow): Remove trailing debugging code.
13396 * data/glr.c (YY_USER_FORMALS, YY_USER_ARGS): New.
13397 (yyuserAction, yydoAction, yyglrReduce, yyresolveValue)
13398 (yyresolveStates, yyresolveAction, yyresolveStack)
13399 (yyprocessOneStack): Use them.
13400 (yy_reduce_print): New.
13401 * tests/calc.at (_AT_DATA_CALC_Y): Exercise %parse-param.
13402
13403 2002-10-20 Akim Demaille <akim@epita.fr>
13404
13405 * data/c.m4 (b4_c_ansi_args): Recognize functions with no
13406 arguments and output `void'.
13407 (b4_c_function): Rename as...
13408 (b4_c_function_def): this.
13409 (b4_c_function_decl, b4_c_ansi_function_def)
13410 (b4_c_ansi_function_decl): New.
13411 Change the interpretation of the arguments: before `int, foo', now
13412 `int foo, foo'.
13413 * data/yacc.c (yyparse): Prototype and define thanks to these.
13414 Adjust b4_c_function_def uses.
13415 * data/glr.c (yyparse): Likewise, but ANSI only.
13416
13417 2002-10-20 Akim Demaille <akim@epita.fr>
13418
13419 * src/output.c (prepare): Move the definition of `tokens_number',
13420 `nterms_number', `undef_token_number', `user_token_number_max'
13421 to...
13422 (prepare_tokens): Here.
13423 (prepare_tokens): Rename as...
13424 (prepare_symbols): this.
13425 (prepare): Move the definition of `rules_number' to...
13426 (prepare_rules): here.
13427 (prepare): Move the definition of `last', `final_state_number',
13428 `states_number' to...
13429 (prepare_states): here.
13430 * data/yacc.c, data/lalr1.cc, data/glr.c: Normalize `>' into `<'.
13431
13432 2002-10-20 Akim Demaille <akim@epita.fr>
13433
13434 * src/tables.h, src/tables.c, src/output.c: Comment changes.
13435
13436 2002-10-20 Akim Demaille <akim@epita.fr>
13437
13438 * data/yacc.c, data/yacc.c (b4_location_if, b4_pure_if): Move to...
13439 * data/c.m4: here.
13440
13441 2002-10-20 Akim Demaille <akim@epita.fr>
13442
13443 * src/output.c (prepare): Use MUSCLE_INSERT_STRING.
13444 * src/muscle_tab.c (muscle_pair_list_grow): Rename `val as
13445 `pair'.
13446 (muscle_init): Move the `b4_ltype', `b4_maxdepth', `b4_initdepth',
13447 `name' to...
13448 * data/glr.c, data/lalr1.cc, data/yacc.c (b4_location_type)
13449 (b4_stack_depth_init, b4_stack_depth_max, b4_parser_class_name):
13450 These.
13451
13452 2002-10-19 Paul Eggert <eggert@twinsun.com>
13453
13454 Do not create a temporary file, as that involves security and
13455 cleanup headaches. Instead, use a pair of pipes.
13456 Derived from a suggestion by Florian Krohm.
13457 * lib/subpipe.c, lib/subpipe.h, m4/subpipe.m4: New files.
13458 * lib/mkstemp.c, lib/readpipe.c, lib/tempname.c, m4/mkstemp.m4: Remove.
13459 * configure.ac (UTILS_FUNC_MKSTEMP, jm_PREREQ_TEMPNAME): Remove.
13460 (BISON_PREREQ_SUBPIPE): Add.
13461 * lib/Makefile.am (libbison_a_SOURCES): Remove readpipe.c.
13462 Add subpipe.h, subpipe.c.
13463 * m4/Makefile.am (EXTRA_DIST): Remove mkstemp.m4. Add subpipe.m4.
13464 * po/POTFILES.in: Add lib/subpipe.c.
13465 * src/output.c: Include "subpipe.h".
13466 (m4_invoke): Remove decl.
13467 (scan_skel): New decl.
13468 (output_skeleton): Use pipe rather than temporary file for m4 input.
13469 Check that m4sugar.m4 is readable, to avoid deadlock.
13470 Check for pipe I/O error.
13471 * src/scan-skel.l (readpipe): Remove decl.
13472 (scan_skel): New function, to be used in place of m4_invoke.
13473 Read from stream rather than file.
13474
13475 * lib/timevar.c (TICKS_TO_MSEC, CLOCKS_TO_MSEC): Do not cast to
13476 float, as this generates a warning on Solaris 8 + GCC 3.2 with
13477 --enable-gcc-warnings. Instead, divide into 1.0 rather than 1;
13478 this generates a more-accurate value anyway.
13479
13480 * lib/timevar.c (timervar_accumulate): Rename locals to
13481 avoid confusion with similarly-named more-global.
13482 * src/muscle_tab.c (muscle_pair_list_grow): Likewise.
13483
13484 * src/output.c (prepare): Use xstrdup to convert char const *
13485 to char *, to avoid GCC warning.
13486
13487 2002-10-19 Akim Demaille <akim@epita.fr>
13488
13489 * tests/calc.at (_AT_DATA_CALC_Y): Define VAL, LOC, LEX_FORMALS,
13490 LEX_PRE_FORMALS, LEX_ARGS, LEX_PRE_ARGS, USE_LEX_ARGS.
13491 Use them to have `calc.y' ready for %pure-parser.
13492 * data/yacc.c (YYLEX): Pass a yylex return type to
13493 b4_c_function_call.
13494
13495 2002-10-19 Akim Demaille <akim@epita.fr>
13496
13497 Prototype support of %lex-param and %parse-param.
13498
13499 * src/parse-gram.y: Add the definition of the %lex-param and
13500 %parse-param tokens, plus their rules.
13501 Drop the `_' version of %glr-parser.
13502 Add the "," token.
13503 * src/scan-gram.l (INITIAL): Scan them.
13504 * src/muscle_tab.c: Comment changes.
13505 (muscle_insert, muscle_find): Rename `pair' as `probe'.
13506 * src/muscle_tab.h (MUSCLE_INSERT_PREFIX): Remove unused.
13507 (muscle_entry_s): The `value' member is no longer const.
13508 Adjust all dependencies.
13509 * src/muscle_tab.c (muscle_init): Adjust: use
13510 MUSCLE_INSERT_STRING.
13511 Initialize the obstack earlier.
13512 * src/muscle_tab.h, src/muscle_tab.c (muscle_grow)
13513 (muscle_pair_list_grow): New.
13514 * data/c.m4 (b4_c_function_call, b4_c_args): New.
13515 * data/yacc.c (YYLEX): Use b4_c_function_call to honor %lex-param.
13516 * tests/calc.at: Use %locations, not --locations.
13517 (AT_CHECK_CALC_GLR): Use %glr-parser, not %glr_parser.
13518
13519 2002-10-19 Akim Demaille <akim@epita.fr>
13520
13521 * src/getargs.c (usage): Take status as argument and exit
13522 accordingly.
13523 Report the traditional `Try ... --help' message when status != 0.
13524 (usage, version): Don't take a FILE * as arg, it is pointless.
13525 (getargs): When there is an incorrect number of arguments, make it
13526 an error, and report it GNUlically thanks to `usage ()'.
13527
13528 2002-10-18 Paul Eggert <eggert@twinsun.com>
13529
13530 * data/glr.c (yyreportParseError): Don't assume that sprintf
13531 yields the length of the printed string, as this is not true
13532 on SunOS 4.1.4. Reported by Peter Klein.
13533
13534 * tests/calc.at (_AT_DATA_CALC_Y): #undef memcmp and realloc.
13535 * tests/conflicts.at (%nonassoc and eof): Likewise.
13536 Fixes SunOS 4.1.4 test failure reported by Peter Klein.
13537
13538 2002-10-17 Akim Demaille <akim@epita.fr>
13539
13540 * src/getargs.h (trace_e): Add trace_scan, and trace_parse.
13541 * src/getargs.c (trace_types, trace_args): Adjust.
13542 * src/reader.c (grammar_current_rule_prec_set)
13543 (grammar_current_rule_dprec_set, grammar_current_rule_merge_set):
13544 Standardize error messages.
13545 And s/@prec/%prec/!
13546 (reader): Use trace_flag to enable scanner/parser debugging,
13547 instead of an adhoc scheme.
13548 * src/scan-gram.l: Remove trailing debugging code.
13549
13550 2002-10-16 Paul Eggert <eggert@twinsun.com>
13551
13552 * src/muscle_tab.h (MUSCLE_TAB_H_): Was misspelled as
13553 MUSCLE_TAB_H.
13554
13555 * NEWS: Officially drop support for building Bison with K&R C,
13556 since it didn't work anyway and it's not worth worrying about.
13557 * Makefile.maint (wget_files): Remove ansi2knr.c.
13558 (ansi2knr.c-url_prefix): Remove.
13559 * lib/.cvsignore: Remove ansi2knr, ansi2knr.*.
13560 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
13561 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
13562
13563 2002-10-15 Paul Eggert <eggert@twinsun.com>
13564
13565 Stop using the "enum_" trick for K&R-style function definitions;
13566 it confused me, and I was the author! Instead, assume that people
13567 who want to use K&R C compilers (when using these modules in GCC,
13568 perhaps?) will run ansi2knr.
13569
13570 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): Remove.
13571 All uses of "enum_" changed to "enum ".
13572 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
13573 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
13574
13575 * lib/abitset.c (abitset_and, abitset_and_cmp, abitset_and_or,
13576 abitset_and_or_cmp, abitset_andn, abitset_andn_cmp,
13577 abitset_andn_or, abitset_andn_or_cmp, abitset_bytes, abitset_copy,
13578 abitset_copy1, abitset_disjoint_p, abitset_empty_p,
13579 abitset_equal_p, abitset_init, abitset_list, abitset_list_reverse,
13580 abitset_not, abitset_ones, abitset_or, abitset_or_and,
13581 abitset_or_and_cmp, abitset_or_cmp, abitset_reset, abitset_set,
13582 abitset_size, abitset_small_list, abitset_subset_p, abitset_test,
13583 abitset_unused_clear, abitset_xor, abitset_xor_cmp, abitset_zero):
13584 Use function prototypes; this removes the need for declaring
13585 static functions simply to provide their prototypes.
13586 * lib/bitset.c (bitset_alloc, bitset_and_or_, bitset_and_or_cmp_,
13587 bitset_andn_or_, bitset_andn_or_cmp_, bitset_bytes, bitset_copy_,
13588 bitset_count_, bitset_create, bitset_dump, bitset_first,
13589 bitset_free, bitset_init, bitset_last, bitset_next,
13590 bitset_obstack_alloc, bitset_obstack_free, bitset_only_set_p,
13591 bitset_op4_cmp, bitset_or_and_, bitset_or_and_cmp_, bitset_prev,
13592 bitset_print, bitset_release_memory, bitset_toggle_,
13593 bitset_type_choose, bitset_type_get, bitset_type_name_get,
13594 debug_bitset): Likewise.
13595 * lib/bitset.h (bitset_set, bitset_reset, bitset_test): Likewise.
13596 * lib/bitset_stats.c (bitset_log_histogram_print,
13597 bitset_percent_histogram_print, bitset_stats_and,
13598 bitset_stats_and_cmp, bitset_stats_and_or,
13599 bitset_stats_and_or_cmp, bitset_stats_andn, bitset_stats_andn_cmp,
13600 bitset_stats_andn_or, bitset_stats_andn_or_cmp, bitset_stats_copy,
13601 bitset_stats_count, bitset_stats_disable, bitset_stats_disjoint_p,
13602 bitset_stats_dump, bitset_stats_empty_p, bitset_stats_enable,
13603 bitset_stats_equal_p, bitset_stats_free, bitset_stats_init,
13604 bitset_stats_list, bitset_stats_list_reverse, bitset_stats_not,
13605 bitset_stats_ones, bitset_stats_or, bitset_stats_or_and,
13606 bitset_stats_or_and_cmp, bitset_stats_or_cmp, bitset_stats_print,
13607 bitset_stats_print_1, bitset_stats_read, bitset_stats_reset,
13608 bitset_stats_set, bitset_stats_size, bitset_stats_subset_p,
13609 bitset_stats_test, bitset_stats_toggle, bitset_stats_type_get,
13610 bitset_stats_write, bitset_stats_xor, bitset_stats_xor_cmp,
13611 bitset_stats_zero): Likewise.
13612 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
13613 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
13614 bitsetv_dump, debug_bitsetv): Likewise.
13615 * lib/ebitset.c (ebitset_and, ebitset_and_cmp, ebitset_andn,
13616 ebitset_andn_cmp, ebitset_bytes, ebitset_copy, ebitset_copy_,
13617 ebitset_copy_cmp, ebitset_disjoint_p, ebitset_elt_add,
13618 ebitset_elt_alloc, ebitset_elt_calloc, ebitset_elt_find,
13619 ebitset_elt_free, ebitset_elt_last, ebitset_elt_remove,
13620 ebitset_elt_zero_p, ebitset_elts_grow, ebitset_empty_p,
13621 ebitset_equal_p, ebitset_free, ebitset_init, ebitset_list,
13622 ebitset_list_reverse, ebitset_not, ebitset_ones, ebitset_op3_cmp,
13623 ebitset_or, ebitset_or_cmp, ebitset_release_memory, ebitset_reset,
13624 ebitset_set, ebitset_size, ebitset_subset_p, ebitset_test,
13625 ebitset_weed, ebitset_xor, ebitset_xor_cmp, ebitset_zero):
13626 Likewise.
13627 * lib/lbitset.c (debug_lbitset, lbitset_and, lbitset_and_cmp,
13628 lbitset_andn, lbitset_andn_cmp, lbitset_bytes, lbitset_copy,
13629 lbitset_copy_cmp, lbitset_disjoint_p, lbitset_elt_alloc,
13630 lbitset_elt_calloc, lbitset_elt_find, lbitset_elt_free,
13631 lbitset_elt_link, lbitset_elt_unlink, lbitset_elt_zero_p,
13632 lbitset_empty_p, lbitset_equal_p, lbitset_free, lbitset_init,
13633 lbitset_list, lbitset_list_reverse, lbitset_not, lbitset_ones,
13634 lbitset_op3_cmp, lbitset_or, lbitset_or_cmp, lbitset_prune,
13635 lbitset_release_memory, lbitset_reset, lbitset_set, lbitset_size,
13636 lbitset_subset_p, lbitset_test, lbitset_weed, lbitset_xor,
13637 lbitset_xor_cmp, lbitset_zero): Likewise.
13638
13639 2002-10-14 Akim Demaille <akim@epita.fr>
13640
13641 Version 1.75.
13642
13643 2002-10-14 Akim Demaille <akim@epita.fr>
13644
13645 * tests/Makefile.am (maintainer-check-posix): New.
13646
13647 2002-10-14 Akim Demaille <akim@epita.fr>
13648
13649 * data/glr.c [YYDEBUG] (YYLEFTMOST_STATE): Initialize the yyloc
13650 member.
13651
13652 2002-10-14 Akim Demaille <akim@epita.fr>
13653
13654 * src/tables.c (table_ninf_remap): base -> tab.
13655 Reported by Matt Rosing.
13656
13657 2002-10-14 Paul Eggert <eggert@twinsun.com>
13658
13659 * tests/action.at, tests/calc.at, tests/conflicts.at,
13660 tests/cxx-type.at, tests/headers.at, tests/input.at,
13661 tests/regression.at, tests/synclines.at, tests/torture.at:
13662 Say "bison -o foo.c foo.y", not "bison foo.y -o foo.c",
13663 so that the tests still work even if POSIXLY_CORRECT is set.
13664 * doc/bison.texinfo (Rpcalc Compile, Invocation): Likewise.
13665
13666 * data/c.m4 (b4_int_type): Use yysigned_char instead of signed char,
13667 for portability to K&R hosts. Fix typo: signed char is guaranteed
13668 only to 127, not to 128.
13669 * data/glr.c (yysigned_char): New type.
13670 * data/yacc.c (yysigned_char): Likewise.
13671 * tests/regression.at (Web2c Actions): signed char -> yysigned_char.
13672
13673 2002-10-13 Paul Eggert <eggert@twinsun.com>
13674
13675 * data/yacc.c (yyparse): Rewrite to avoid "comparison is always
13676 true due to limited range of data type" warning from GCC.
13677
13678 * data/c.m4 (b4_token_defines): Protect against double-inclusion
13679 by wrapping enum yytokentype's definition inside #ifndef
13680 YYTOKENTYPE. This undoes a bug I introduced on 2002-10-12.
13681
13682 2002-10-13 Akim Demaille <akim@epita.fr>
13683
13684 * data/glr.c (yyglrShiftDefer, yyaddDeferredAction, yydoAction):
13685 Un yy- yyrhs to avoid the name clash with the global YYRHS.
13686
13687 2002-10-13 Akim Demaille <akim@epita.fr>
13688
13689 * Makefile.maint: Update from Autoconf 2.54.
13690 * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Remove, shipped with 2.54.
13691
13692 2002-10-13 Akim Demaille <akim@epita.fr>
13693
13694 * src/print.c (print_state): Separate the list of solved conflicts
13695 from the other items.
13696 * tests/conflicts.at (Resolved SR Conflicts): Adjust.
13697
13698 2002-10-13 Akim Demaille <akim@epita.fr>
13699
13700 Let nondeterministic skeletons be usable with deterministic
13701 tables.
13702
13703 With the patch, GAWK compiled by GCC without -O2 passes its test
13704 suite using a GLR parser driven by LALR tables. It fails with -O2
13705 because `struct stat' gives two different answers on my machine:
13706 88 (definition of an auto var) and later 96 (memset on this var).
13707 Hence the stack is badly corrumpted. The headers inclusion is to
13708 blame: if I move the awk.h inclusion before GLR's system header
13709 inclusion, the two struct stat have the same size.
13710
13711 * src/tables.c (pack_table): Always create conflict_table.
13712 (token_actions): Always create conflict_list.
13713 * data/glr.c (YYFLAG): Remove, unused.
13714
13715 2002-10-13 Akim Demaille <akim@epita.fr>
13716
13717 * configure.ac (AC_GNU_SOURCE): Use it instead of hand written code.
13718 (O0FLAGS): New.
13719 (VALGRIND, GXX): New.
13720 * tests/atlocal.in (CFLAGS): Use O0FLAGS.
13721 * tests/bison.in: Run $PREBISON a pre-command.
13722 * tests/Makefile.am (maintainer-check, maintainer-check-valgrind)
13723 (maintainer-check-g++): New.
13724 * Makefile.am (maintainer-check): New.
13725
13726 2002-10-13 Akim Demaille <akim@epita.fr>
13727
13728 * data/glr.c: Formatting changes.
13729 Tweak some trace messages to match yacc.c's.
13730
13731 2002-10-13 Akim Demaille <akim@epita.fr>
13732
13733 GLR parsers sometimes raise parse errors instead of performing the
13734 default reduction.
13735 Reported by Charles-Henry de Boysson.
13736
13737 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Don't
13738 check the length of the traces when %glr.
13739 (_AT_CHECK_CALC_ERROR): Also skip `^Stack' lines, coming from
13740 GLR's traces.
13741 (AT_CHECK_CALC_LALR, AT_CHECK_CALC_GLR): New.
13742 Test GLR parsers.
13743 * data/glr.c (YYLEFTMOST_STATE): Fix its value.
13744 (yyltype): Remove the yy prefix from the member names.
13745 (yytable): Complete its comment.
13746 (yygetLRActions): Map error action number from YYTABLE from
13747 YYTABLE_NINF to 0.
13748 (yyisErrorAction): No longer compare YYACTION to YYPACT_NINF
13749 (which was a bug: it should have been YYTABEL_NINF, and yet it was
13750 not satisfying as we could compare an YYACTION computed from
13751 YYDEFACT to YYTABLE_NINF although they are unrelated): 0 is the
13752 only value for error actions.
13753 (yyreportParseError): In verbose parse error messages, don't issue
13754 `error' in the list of expected tokens.
13755 * data/yacc.c (yyparse) <yybackup>: Rewrite the decoding of the
13756 next action to perform to match glr.c's decoding.
13757 (yytable): Complete its comment.
13758
13759 2002-10-13 Paul Eggert <eggert@twinsun.com>
13760
13761 Fix problem reported by Henrik Grubbstroem in
13762 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00098.html>:
13763 "nonterm: { $$ = 123; } { $$ = $1; };" was wrongly rejected,
13764 because the Bison parser reads the second action before reducing
13765 the first one.
13766 * src/scan-gram.l (rule_length): New static var.
13767 Use it to keep track of the rule length in the scanner, since
13768 we can't expect the parser to be in lock-step sync with the scanner.
13769 (handle_action_dollar, handle_action_at): Use this var.
13770 * tests/actions.at (Exotic Dollars): Test for the problem.
13771
13772 2002-10-12 Paul Eggert <eggert@twinsun.com>
13773
13774 * lib/timevar.c [! IN_GCC && HAVE_SYS_TIME_H]: Include <sys/time.h>.
13775 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): Check for <sys/time.h>.
13776 Include <sys/time.h> when checking for clock_t and struct tms.
13777 Use same include order as source.
13778 This is for the SunOS 4.1.4 porting bug reported by Peter Klein in
13779 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00016.html>.
13780
13781 * lib/timevar.c: Update copyright date and clarify comments.
13782 (get_time) [IN_GCC]: Keep the GCC version for reference.
13783
13784 * lib/timevar.c, lib/timevar.h, lib/timevar.def: Import
13785 GCC version as of today, then merge Bison's changes.
13786 Change "GCC" to "Bison" in copyright notice. timevar.def's
13787 author is Akim, so change that too.
13788
13789 * src/reader.c (grammar_current_rule_check):
13790 Don't worry about the default action if $$ is untyped.
13791 Prevents bogus warnings reported by Jim Gifford in
13792 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00015.html>.
13793
13794 * data/c.m4 (b4_token_enum): Do not define YYTOKENTYPE.
13795 * data/glr.c, data/lalr1.cc, data/yacc.c:
13796 Output token definitions before the first part of user declarations.
13797 Fixes compatibility problem reported by Jim Gifford for kbd in
13798 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00014.html>.
13799
13800 2002-10-11 Paul Eggert <eggert@twinsun.com>
13801
13802 * data/yacc.c (yyreport_parse_error): Remove, putting its body into...
13803 (yyparse): here. This undoes some of the 2002-07-25 change.
13804 Compatibility problem reported by Ralf S. Engelschall with
13805 OSSP cfg <http://www.ossp.org/pkg/lib/cfg/>.
13806
13807 2002-10-11 Akim Demaille <akim@epita.fr>
13808
13809 * tests/regression.at Characters Escapes): New.
13810 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Accept \' in strings and
13811 characters.
13812 Reported by Jan Nieuwenhuizen.
13813
13814 2002-10-11 Akim Demaille <akim@epita.fr>
13815
13816 * po/id.po: New.
13817
13818 2002-10-10 Paul Eggert <eggert@twinsun.com>
13819
13820 Portability fixes for bitsets; this also avoids several GCC
13821 warnings.
13822
13823 * lib/abitset.c: Include <stddef.h>, for offsetof.
13824 * lib/lbitset.c: Likewise.
13825
13826 * lib/abitset.c (abitset_bytes): Return a size that is aligned
13827 properly for vectors of objects. Do not assume that adding a
13828 header size to a multiple of a word size yields a value that is
13829 properly aligned for the whole union.
13830 * lib/bitsetv.c (bitsetv_alloc): Likewise.
13831
13832 * lib/bitset_stats.c (bitset_stats_bytes): Adjust to new,
13833 unique names for structures.
13834 * lib/ebitset.c (ebitset_bytes): Likewise.
13835 * lib/lbitset.c (lbitset_bytes): Likewise.
13836
13837 * lib/abitset.c (abitset_ones, abitset_zero, abitset_empty_p,
13838 abitset_copy1, abitset_not, abitset_equal_p, abitset_subset_p,
13839 abitset_disjoint_p, abitset_and, abitset_and_cmp, abitset_andn,
13840 abitset_andn_cmp, abitset_or, abitset_or_cmp, abitset_xor,
13841 abitset_xor_cmp, abitset_and_or, abitset_and_or_cmp,
13842 abitset_andn_or, abitset_andn_or_cmp, abitset_or_and,
13843 abitset_or_and_cmp, abitset_copy): Supply prototype decls,
13844 to improve the type-checking that GCC can do.
13845 * lib/bitset.c (bitset_op4_cmp): Likewise.
13846 * lib/bitset_stats.c (bitset_stats_count,
13847 bitset_stats_empty_p, bitset_stats_ones, bitset_stats_zero,
13848 bitset_stats_copy, bitset_stats_disjoint_p,
13849 bitset_stats_equal_p, bitset_stats_not, bitset_stats_subset_p,
13850 bitset_stats_and, bitset_stats_and_cmp, bitset_stats_andn,
13851 bitset_stats_andn_cmp, bitset_stats_or, bitset_stats_or_cmp,
13852 bitset_stats_xor, bitset_stats_xor_cmp, bitset_stats_and_or,
13853 bitset_stats_and_or_cmp, bitset_stats_andn_or,
13854 bitset_stats_andn_or_cmp, bitset_stats_or_and,
13855 bitset_stats_or_and_cmp): Likewise.
13856 * lib/lbitset.c (lbitset_and, lbitset_and_cmp, lbitset_andn,
13857 lbitset_andn_cmp, lbitset_or, lbitset_or_cmp, lbitset_xor,
13858 lbitset_xor_cmp, lbitset_empty_p, lbitset_ones, lbitset_not,
13859 lbitset_subset_p, lbitset_disjoint_p, debug_lbitset): Likewise.
13860
13861 * lib/abitset.h: Include bitset.h, not bbitset.h.
13862 * lib/ebitset.h: Likewise.
13863 * lib/lbitset.h: Likewise.
13864
13865 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): New types.
13866 All instances of parameters of type enum bitset_opts are now of
13867 type enum_bitset_opts, to conform to the C Standard, and similarly
13868 for enum_bitset_type.
13869 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
13870 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
13871
13872 Do not use "struct bitset_struct" to mean different things in
13873 different modules. Not only is this confusing, it violates
13874 the C Standard, which requires that structure types in different
13875 modules must be compatible if one is to be passed to the other.
13876 * lib/bbitset.h (bitset): Now points to a union, not to a struct.
13877 All instances of "struct bitset_struct *" replaced with "bitset".
13878 * lib/bitset.h (struct bitset_struct): Remove, replacing with....
13879 (union bitset_union, struct abitset_struct, struct ebitset_struct,
13880 struct lbitset_struct, struct bitset_stats_struct): New types.
13881 All uses of struct bitset_struct changed to union bitset_union,
13882 etc.
13883 * lib/abitset.c (struct abitset_struct, abitset,
13884 struct bitset_struct): Remove.
13885 * lib/bitset_stats.c (struct bitset_stats_struct, bitset_stats,
13886 struct bitset_struct): Remove.
13887 * lib/ebitset.c (struct ebitset_struct, ebitset, struct
13888 bitset_struct): Remove.
13889 * lib/lbitset.c (struct lbitset_struct, lbitset, bitset_struct):
13890 Likewise.
13891
13892 Do not call a function of type T using a call that assumes the
13893 function is of a different type U. Standard C requires that a
13894 function must be called with a type that is compatible with its
13895 definition.
13896 * lib/bbitset.h (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
13897 New decls.
13898 * lib/bitset.c (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
13899 New functions.
13900 * lib/ebitset.c (PFV): Remove.
13901 * lib/lbitset.c (PFV): Likewise.
13902 * lib/ebitset.c (ebitset_and, ebitset_andn, ebitset_or,
13903 ebitset_xor, ebitset_copy, ebitset_ones, ebitset_empty_p): New
13904 decls.
13905 (ebitset_and, ebitset_andn, ebitset_or, ebitset_xor): New functions.
13906 (ebitset_vtable): Use them.
13907 * lib/lbitset.c (lbitset_and, lbitset_andn, lbitset_or,
13908 lbitset_xor): New functions.
13909 (lbitset_vtable): Use them.
13910
13911 * lib/bitset.h (bitset_next, bitset_prev, bitset_only_set_p):
13912 Declare.
13913
13914 * lib/bitsetv.c (bitsetv_alloc): Add a cast to (void *) to avoid a
13915 GCC warning.
13916 * lib/lbitset.c (LBITSET_CURRENT1): Likewise.
13917 Use offsetof, for simplicity.
13918
13919 2002-10-06 Paul Eggert <eggert@twinsun.com>
13920
13921 * lib/bitset.h (bitset_reset): Do not assume that bitset_word is
13922 the same width as int. This reapplies a hunk of the 2002-08-12 patch
13923 <http://lists.gnu.org/archive/html/bison-patches/2002-08/msg00007.html>,
13924 which was inadvertently undone by the 2002-09-30 patch.
13925 * lib/lbitset.c (debug_lbitset): Do not assume that bitset_word is
13926 the same width as int.
13927
13928 2002-10-04 Paul Eggert <eggert@twinsun.com>
13929
13930 Version 1.50.
13931
13932 * configure.ac (AC_INIT), NEWS: Increment version number.
13933
13934 * doc/bison.texinfo: Minor spelling, grammar, and white space
13935 fixes.
13936 (Symbols): Mention that any negative value returned from yylex
13937 signifies end-of-input. Warn about negative chars. Mention
13938 the portable Standard C character set.
13939
13940 The GNU coding standard says CFLAGS and YFLAGS are reserved
13941 for the installer to set.
13942 * lib/Makefile.am (AM_CFLAGS): Renamed from CFLAGS.
13943 * src/Makefile.am (AM_CFLAGS): Likewise.
13944 (AM_YFLAGS): Renamed from YFLAGS.
13945
13946 Fix some MAX and MIN problems.
13947 * src/gram.h (ITEM_NUMBER_MIN): MIN_MAX -> INT_MIN.
13948 * src/lalr.h (GOTO_NUMBER_MAX): INT_MAX -> SHRT_MAX.
13949 * src/symtab.h (SYMBOL_NUMBER_MAX): New macro.
13950 * src/reader.c (reader): Use it.
13951
13952 * tests/regression.at (Braces parsing): Use grep, not fgrep, as
13953 POSIX 1003.1-2001 has removed fgrep.
13954
13955 2002-10-04 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
13956
13957 * lib/bbitset.h (BITSET_WINDEX_MAX): Redefine so that it cannot be
13958 interpreted as signed.
13959 * lib/ebitset.c (ebitset_list): Fix bug.
13960
13961 2002-10-01 Paul Eggert <eggert@twinsun.com>
13962
13963 More fixes for 64-bit hosts and large bitsets.
13964
13965 * lib/abitset.c (struct abitset_struct.n_bits, abitset_small_list,
13966 abitset_size, abitset_list, abitset_list_reverse, abitset_list):
13967 Use bitset_bindex, not int or unsigned int or size_t, to count bits.
13968 * lib/bbitset.h (struct bitset_vtable.size, struct bitset_vtable.count,
13969 struct bitset_vtable.list, struct bitset_vtable.list_reverse,
13970 bitset_count_, bitset_next, bitset_prev, bitset_first, bitset_last,
13971 bitset_count_): Likewise.
13972 * lib/bitset.h (bitset_iterator.num, bitset_iterator.i,
13973 bitset_first, bitset_last): Likewise.
13974 * lib/bitset_stats.c (bitset_stats_size, bitset_stats_list,
13975 bitset_stats_list_reverse, bitset_stats_size,
13976 bitset_stats_count, bitset_stats_list, bitset_stat_list_reverse):
13977 Likewise.
13978 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
13979 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
13980 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
13981 bitsetv_reflexive_transitive_closure): Likewise.
13982 * lib/bitsetv.h (bitsetv_alloc, bitsetv_create): Likewise.
13983 * lib/ebitset.c (ebitset_size, ebitset_list, ebitset_list_reverse):
13984 Likewise.
13985 * lib/lbitset.c (lbitset_size, lbitset_list, lbitset_list_merge):
13986 Likewise.
13987
13988 * lib/abitset.c (abitset_ones, abitset_zero, abitset_bytes):
13989 Use size_t, not unsigned int, to count bytes.
13990 * lib/abitset.h (abitset_bytes): Likewise.
13991 * lib/bitset.c (bitset_bytes, bitset_alloc, bitset_obstack_alloc):
13992 Likewise.
13993 * lib/bitset.h (bitset_bytes): Likewise.
13994 * lib/bitset_stats.c (bitset_stats_bytes, bitset_stats_init): Likewise.
13995 * lib/bitset_stats.h (bitset_stats_bytes): Likewise.
13996 * lib/bitsetv.c (bitsetv_alloc): Likewise.
13997 * lib/ebitset.c (ebitset_bytes): Likewise.
13998 * lib/ebitset.h (ebitset_bytes): Likewise.
13999 * lib/lbitset.c (lbitset_bytes): Likewise.
14000 * lib/lbitset.h (lbitset_bytes): Likewise.
14001
14002 * lib/abitset.c (abitset_empty_p, abitset_not, abitset_equal_p,
14003 abitset_subset_p, abitset_disjoint_p, abitset_and,
14004 abitset_and_cmp, abitset_andn, abitset_andn_cmp, abitset_or,
14005 abitset_or_cmp, abitset_xor, abitset_xor_cmp, abitset_and_or,
14006 abitset_and_or_cmp, abitset_andn_or, abitset_andn_or_cmp,
14007 abitset_or_and, abitset_or_and_cmp):
14008 Use bitset_windex instead of unsigned int.
14009 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
14010 * lib/ebitset.c (struct ebitset_struct.size, ebitset_elts_grow,
14011 ebitset_elt_add, ebitset_elt_remove, ebitset_weed,
14012 ebitset_elt_find, ebitset_list_reverse, ebitset_list, ebitset_init):
14013 Likewise.
14014 * lib/lbitset.c (lbitset_ones, lbitset_not): Likewise.
14015
14016 * lib/bitset.c (bitset_print):
14017 Use proper printf formats for widths of integer types.
14018 * lib/bitset_stats.c (bitset_percent_histogram_print,
14019 bitset_log_histogram_print, bitset_stats_print_1): Likewise.
14020 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
14021 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
14022 * lib/lbitset.c (lbitset_bytes): Likewise.
14023
14024 * lib/bbitset.h (BITSET_BINDEX_MAX, BITSET_WINDEX_MAX,
14025 BITSET_SIZE_MAX): New macros.
14026 (BITSET_INDEX_MAX): Remove. It wasn't right, since it assumed that
14027 sizeof (bitset_word) == sizeof (bitset_windex). All uses changed
14028 to BITSET_WINDEX_MAX.
14029
14030 * lib/bitset.c (bitset_next, bitset_prev, bitset_first,
14031 bitset_last): Return BITSET_BINDEX_MAX (not -1) for no value,
14032 since we now return the bitset_bindex type (not int).
14033
14034 * lib/bitsetv.c (bitsetv_alloc): Check for arithmetic overflow
14035 when computing sizes.
14036 * lib/ebitset.c (ebitset_elts_grow): Likewise.
14037
14038 * lib/lbitset.c (lbitset_elt_find): Simplify windex calculation
14039 and avoid cast to unsigned.
14040
14041 2002-09-30 Akim Demaille <akim@epita.fr>
14042
14043 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
14044 * lib/bitset_stats.c, lib/bitsetv.c, lib/ebitset.c, lib/lbitset.c:
14045 Updates from Michael Hayes.
14046
14047 2002-09-30 Art Haas <ahaas@neosoft.com>
14048
14049 * configure.ac: Update AC_OUTPUT and AM_CONFIG_HEADER
14050 invocations.
14051 * tests/cxx-type.at (declarator): Don't rely on NDEBUG being not
14052 defined.
14053
14054 2002-09-27 Akim Demaille <akim@epita.fr>
14055
14056 Version 1.49c.
14057
14058 2002-09-27 Akim Demaille <akim@epita.fr>
14059
14060 * configure.ac (AM_INIT_AUTOMAKE): We _need_ 1.7.
14061 (Because of AC_LIBSOURCE).
14062
14063 2002-09-27 Akim Demaille <akim@epita.fr>
14064
14065 Playing with Autoscan.
14066
14067 * configure.ac: Remove the old LIBOBJ tweaks.
14068 (AC_REPLACE_FUNCS): Add strrchr and strtol.
14069 * lib/strrchr.c: New.
14070 * lib/strtol.c: New, from the Coreutils 4.5.1.
14071
14072 2002-09-27 Akim Demaille <akim@epita.fr>
14073
14074 Playing with Autoscan.
14075
14076 * m4/prereq.m4 (jm_PREREQ_ARGMATCH, jm_FUNC_ARGMATCH): New.
14077 * lib/Makefile.am (libbison_a_SOURCES): No longer include
14078 argmatch.c and argmatch.h, since they are AC_LIBSOURCE'd.
14079 * lib/strcasecmp.c, lib/strncasecmp.c, lib/memcmp.c: New, from the
14080 Coreutils 4.5.1.
14081
14082 2002-09-24 Akim Demaille <akim@epita.fr>
14083
14084 * doc/bison.texinfo (Stack Overflow): xref to Recursion.
14085 (Frequently Asked Questions, Parser Stack Overflow): New.
14086
14087 2002-09-13 Akim Demaille <akim@epita.fr>
14088
14089 Playing with autoscan.
14090
14091 * src/reader.c (get_merge_function): Use xstrdup, not strdup.
14092 * src/files.c (skeleton_find): Remove, unused.
14093 * m4/memcmp.m4: New, from the Coreutils 4.5.1.
14094 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Run jm_FUNC_MEMCMP.
14095
14096 2002-09-13 Akim Demaille <akim@epita.fr>
14097
14098 * configure.ac (AM_INIT_AUTOMAKE): Require Automake 1.6.3.
14099 * Makefile.am (AUTOMAKE_OPTIONS): Don't.
14100
14101 2002-09-13 Akim Demaille <akim@epita.fr>
14102
14103 * configure.ac: Require 2.54.
14104 s/jm_FUNC_MALLOC/AC_FUNC_MALLOC/.
14105 s/jm_FUNC_REALLOC/AC_FUNC_REALLOC/.
14106 * m4/c-bs-a.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/realloc.m4:
14107 Remove, provided by Autoconf macros.
14108
14109 2002-09-12 Akim Demaille <akim@epita.fr>
14110
14111 * m4/prereq.m4: Update, from Coreutils 4.5.1.
14112
14113 2002-09-12 Akim Demaille <akim@epita.fr>
14114
14115 * m4/prereq.m4: Update, from Fileutils 4.1.5.
14116 * configure.ac (jm_PREREQ_TEMPNAME): Invoke it.
14117 Reported by Martin Mokrejs.
14118
14119 2002-09-10 Akim Demaille <akim@epita.fr>
14120
14121 * src/parse-gram.y: Associate a human readable string to each
14122 token type.
14123 * tests/regression.at (Invalid inputs): Adjust.
14124
14125 2002-09-10 Gary V. Vaughan <gary@gnu.org>
14126
14127 * tests/Makefile.am ($(srcdir)/package.m4): Bison now ships
14128 with an Autoconf-2.5x style configure.ac.
14129
14130 2002-09-06 Paul Eggert <eggert@twinsun.com>
14131
14132 * doc/bison.texinfo (Conditions): Make explicit that the GPL
14133 exception applies only to yacc.c. This is a modification of a
14134 patch originally suggested by Akim Demaille.
14135
14136 2002-09-06 Akim Demaille <akim@epita.fr>
14137
14138 * data/c.m4 (b4_copyright): Move the GPL exception comment from
14139 here to...
14140 * data/yacc.c: here.
14141
14142 * data/lalr1.cc (struct yyltype): Don't define it, since we use
14143 LocationType.
14144 (b4_ltype): Default to yy::Location from location.hh.
14145
14146 2002-09-04 Jim Meyering <jim@meyering.net>
14147
14148 * data/yacc.c: Guard the declaration of yytoknum also with
14149 `#ifdef YYPRINT', so it is declared only when used.
14150
14151 2002-09-04 Akim Demaille <akim@epita.fr>
14152
14153 * configure.in: Rename as...
14154 * configure.ac: this.
14155 Bump to 1.49c.
14156
14157 2002-09-04 Akim Demaille <akim@epita.fr>
14158
14159 * src/assoc.c, src/closure.c, src/gram.c, src/injections.c,
14160 * src/lalr.c, src/LR0.c, src/relation.c, src/tables.c: Don't
14161 translate maintainer only messages.
14162
14163 2002-08-12 Paul Eggert <eggert@twinsun.com>
14164
14165 Version 1.49b.
14166
14167 * Makefile.am (SUBDIRS): Remove intl.
14168 (DISTCLEANFILES): Remove.
14169 * NEWS: Mention that GNU M4 is now required. Clarify what is
14170 meant by "larger grammars". Mention the pt_BR translation.
14171 * configure.in (AC_CHECK_DECLS): Add getenv, getopt.
14172 (AM_GNU_GETTEXT_VERSION): New macro, replacing GETTEXT_VERSION var.
14173 Bump version from 0.11.2 to 0.11.5.
14174 (BISON_PREREQ_STAGE): Remove.
14175 (AM_GNU_GETTEXT): Use external gettext.
14176 (AC_OUTPUT): Remove intl/Makefile.
14177
14178 * config/depcomp, config/install-sh: Sync with Automake 1.6.3.
14179
14180 * data/glr.c: Include string.h, for strlen.
14181 (yyreportParseError): Use size_t for yysize.
14182 (yy_yypstack): No longer nested inside yypstates, as nested
14183 functions are not portable. Do not assume size_t is the
14184 same width as int.
14185 (yypstates): Do not assume that ptrdiff_t is the same width
14186 as int, and similarly for yyposn and YYINDEX.
14187
14188 * data/yacc.c: Fix comment about `$$ = $1': it can copy garbage.
14189
14190 * lib/Makefile.am (INCLUDES): Do not include from the intl
14191 directory, which has been removed.
14192 * src/Makefile.am (INCLUDES): Likewise.
14193
14194 * lib/Makefile.am (libbison_a_SOURCES): Add unlocked-io.h.
14195 (bitsets_sources, additional_bitsets_sources, timevars_sources):
14196 New vars.
14197
14198 * lib/Makefile.am (libbison_a_SOURCES): Avoid +=, a GNU make extension.
14199 * tests/Makefile.am (EXTRA_DIST): Likewise.
14200
14201 * lib/abitset.c (abitset_reverse_list, ebitset_reverse_list):
14202 Do not assume that bitset_windex is the same width as unsigned.
14203
14204 * lib/abitset.c (abitset_unused_clear): Do not assume that
14205 bitset_word is the same width as int.
14206 * lib/bbitset.h (BITSET_INDEX_MAX, BITSET_MSB): Likewise.
14207 * lib/bitset.h (bitset_set, bitset_reset): Likewise.
14208 * lib/bitset_stats.c (bitset_stats_set, bitset_stats_reset): Likewise.
14209 * lib/ebitset.c (ebitset_set, ebitset_reset): Likewise.
14210 * lib/lbitset.c (lbitset_set, lbitset_reset): Likewise.
14211
14212 * lib/abitset.c (abitset_op1): Use -1, not ~0, as memset arg (for
14213 portability to one's complement hosts!).
14214 * lib/ebitset.c (ebitset_op1): Likewise.
14215 * lib/lbitset.c (lbitset_op1): Likewise.
14216
14217 * lib/argmatch.c, lib/quotearg.c, quotearg.h: Sync with GNU tar.
14218 * lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
14219 lib/hash.c, lib/hash.h, lib/strnlen.c, lib/xmalloc.c:
14220 Sync with fileutils.
14221 * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
14222 lib/gettext.h: Sync with diffutils.
14223
14224 * lib/memrchr.c, lib/mkstemp.c, lib/strchr.c, lib/strnlen.c,
14225 lib/strspn.c, lib/tempname.c: Use GPL, not LGPL.
14226
14227 * lib/obstack.c, lib/obstack.h: Sync with fileutils, except use
14228 PROTOTYPES to check for prototypes, and "defined __STDC__" to
14229 check for void *.
14230
14231 * lib/bbitset.h (BITSET_WORD_BITS): Now of type unsigned, not
14232 size_t; the old version tried to do this but casted improperly.
14233 (bitset_bindex, bitset_windex): Now size_t, not unsigned long.
14234 (bitset_test): Now returns int, not unsigned long.
14235
14236 * lib/bitset_stats.c: Include "gettext.h".
14237 (_): New macro.
14238 (bitset_stats_set, bitset_stats_reset, bitset_stats_test): Don't
14239 name locals "index", as it generates unnecessary warnings on some
14240 hosts that have an "index" function.
14241
14242 * lib/bitset_stats.c (bitset_stats_print_1, bitset_stats_print,
14243 bitset_stats_read, bitset_stats_write): Wrap strings in _() if
14244 they need translation.
14245 * src/LR0.c (state_list_append, new_itemsets, get_state,
14246 append_states, generate_states): Likewise.
14247 * src/assoc.c (assoc_to_string): Likewise.
14248 * src/closure.c (print_closure, set_firsts, closure): Likewise.
14249 * src/gram.c (grammar_dump): Likewise.
14250 * src/injections.c (injections_compute): Likewise.
14251 * src/lalr.c (lookaheads_print): Likewise.
14252 * src/relation.c (relation_transpose): Likewise.
14253 * src/scan-gram.l: Likewise.
14254 * src/tables.c (table_grow, pack_vector): Likewise.
14255
14256 * m4/Makefile.am (EXTRA_DIST): Remove codeset.m4,
14257 glibc21.m4, isc-posix.m4 lcmessage.m4, stage.m4.
14258 * m4/malloc.m4, m4/realloc.m4: Sync with diffutils.
14259 * m4/mbstate_t.m4: Sync with fileutils.
14260 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): AC_MBSTATE_T -> AC_TYPE_MBSTATE_T.
14261
14262 * po/LINGUAS: Add pt_BR.
14263 * po/POTFILES.in: Add src/assoc.c, src/closure.c, src/gram.c,
14264 src/main.c, src/relation.c, src/state.c, lib/bitset_stats.c,
14265 lib/timevar.c.
14266 Use src/parse-gram.y instead of src/parse-gram.c, as the gettext
14267 manual recommends.
14268 Similarly, use src/scan-gram.l instead of src/scan-gram.c.
14269
14270 * src/complain.c (strerror_r): Remove decl; not needed.
14271 (strerror): Use same pattern as ../lib/error.c.
14272
14273 * src/files.c, src/files.h (compute_header_macro): Remove; unused.
14274
14275 * src/gram.c (grammar_dump): Do not assume ptrdiff_t fits in int.
14276
14277 * src/main.c (main): Cast result of bindtextdomain and textdomain
14278 to void, to avoid a GCC warning when --disable-nls is in effect.
14279
14280 * src/scan-gram.l: Use strings rather than escapes when possible,
14281 to minimize the number of warnings from xgettext.
14282 (handle_action_dollar, handle_action_at): Don't use isdigit,
14283 as it mishandles negative chars and it may not work as expected
14284 outside the C locale.
14285
14286 * src/symtab.c (symbol_get): Don't cast LHS of an assignment;
14287 this is a GCC extension and is not portable to other compilers.
14288
14289 * src/system.h (alloca): Use same pattern as ../lib/error.c.
14290 Do not include <ctype.h>; no longer needed.
14291 Do not include <malloc.h>; no longer needed (and generates
14292 warnings on OpenBSD 3.0).
14293
14294 * tests/cxx-type.at (yylex): Do not pass signed char to isupper;
14295 it's not portable.
14296
14297 * tests/regression.at: Do not use 'cc -c input.c -o input';
14298 Sun C rejects this. Instead, use 'cc -c input.c -o input.o'.
14299
14300 * tests/synclines.at (AC_SYNCLINES_COMPILE): Accept any nonzero
14301 exit status as failure, not just exit status 1. Sun C exits
14302 with status 2 sometimes.
14303
14304 * tests/torture.at (AT_INCREASE_DATA_SIZE): New macro.
14305 Use it for the two large tests.
14306
14307 2002-08-02 Akim Demaille <akim@epita.fr>
14308
14309 * src/conflicts.c (conflicts_output): Don't output rules never
14310 reduced here, since anyway that computation doesn't work.
14311 * src/gram.h, src/gram.h (rule_filter_t, rule_useful_p)
14312 (rule_useless_p, rule_never_reduced_p): New.
14313 (grammar_rules_partial_print): Use a filter instead of a range.
14314 Display the title only if needed.
14315 (grammar_rules_print): Adjust.
14316 (grammar_rules_never_reduced_report): New.
14317 * src/tables.c (action_row): Move the computation of rules never
14318 reduced to...
14319 (token_actions): here.
14320 * src/main.c (main): Make the parser before making the report, so
14321 that rules never reduced are computed.
14322 Call grammar_rules_never_reduced_report.
14323 * src/print.c (print_results): Report rules never reduced.
14324 * tests/conflicts.at, tests/reduce.at: Adjust.
14325
14326 2002-08-01 Akim Demaille <akim@epita.fr>
14327
14328 Instead of attaching lookaheads and duplicating the rules being
14329 reduced by a state, attach the lookaheads to the reductions.
14330
14331 * src/state.h (state_t): Remove the `lookaheads',
14332 `lookaheads_rule' member.
14333 (reductions_t): Add a `lookaheads' member.
14334 Use a regular array for the `rules'.
14335 * src/state.c (reductions_new): Initialize the lookaheads member
14336 to 0.
14337 (state_rule_lookaheads_print): Adjust.
14338 * src/state.h, src/state.c (state_reductions_find): New.
14339 * src/conflicts.c (resolve_sr_conflict, set_conflicts)
14340 (count_rr_conflicts): Adjust.
14341 * src/lalr.c (LArule): Remove.
14342 (add_lookback_edge): Adjust.
14343 (state_lookaheads_count): New.
14344 (states_lookaheads_initialize): Merge into...
14345 (initialize_LA): this.
14346 (lalr_free): Adjust.
14347 * src/main.c (main): Don't free nullable and derives too early: it
14348 is used by --verbose.
14349 * src/print.c, src/print_graph.c, src/tables.c: Adjust.
14350
14351 2002-08-01 Akim Demaille <akim@epita.fr>
14352
14353 * src/derives.h, src/derives.c (derives): A `rule_t***' instead of
14354 `rule_number_t**'.
14355 (set_derives, free_derives): Rename as...
14356 (derives_compute, derives_free): this.
14357 Adjust all dependencies.
14358 * src/nullable.c (set_nullable, free_nullable): Rename as...
14359 (nullable_compute, nullable_free): these.
14360 (rule_list_t): Store rule_t *, not rule_number_t.
14361 * src/state.c (state_rule_lookaheads_print): Directly compare rule
14362 pointers, instead of their numbers.
14363 * src/main.c (main): Call nullable_free, and derives_free earlier,
14364 as they were lo longer used.
14365
14366 2002-08-01 Akim Demaille <akim@epita.fr>
14367
14368 * lib/timevar.c (get_time): Include children time.
14369 * src/lalr.h (LA, LArule): Don't export them: used with the
14370 state_t.
14371 * src/lalr.c (LA, LArule): Static.
14372 * src/lalr.h, src/lalr.c (lalr_free): New.
14373 * src/main.c (main): Call it.
14374 * src/tables.c (pack_vector): Check whether loc is >= to the
14375 table_size, not >.
14376 (pack_tables): Don't free froms, tos, conflict_tos, and pos...
14377 (tables_generate): do it, since that's also it which allocates
14378 them.
14379 Don't free LA and LArule, main does.
14380
14381 2002-07-31 Akim Demaille <akim@epita.fr>
14382
14383 Separate parser tables computation and output.
14384
14385 * src/output.c (nvectors, base_t, base, base_ninf, conflict_table)
14386 (conflict_list, conflict_list_cnt, table, check, table_ninf)
14387 (yydefgoto, yydefact, high): Move to...
14388 * src/tables.h, src/tables.c: here.
14389 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
14390 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
14391 (symbol_number_to_vector_number, nvectors, BASE_MAX, BASE_MIN)
14392 (froms, tos, conflict_tos, tally, width, action_t, ACTION_MAX)
14393 (ACTION_MIN, actrow, order, nentries, pos, conflrow)
14394 (conflict_list_free, table_size, lowzero, table_grow, conflict_row)
14395 (action_row, save_row, token_actions, save_column, default_goto)
14396 (goto_actions, sort_actions, matching_state, pack_vector)
14397 (table_ninf_remap, pack_table, prepare_actions): Move to...
14398 * src/tables.c: here.
14399 * src/tables.h, src/tables.c(tables_generate, tables_free): New.
14400 * src/output.c (token_actions, output_base, output_conflicts)
14401 (output_check): Merge into...
14402 (prepare_actions): this.
14403 (actions_output): Rename as...
14404 (user_actions_output): this.
14405 * src/main.c (main): Call tables_generate and tables_free.
14406
14407 2002-07-31 Akim Demaille <akim@epita.fr>
14408
14409 Steal GCC's --time-report support.
14410
14411 * lib/timevar.c, lib/timevar.h, lib/timevar.def: New,
14412 stolen/adjusted from GCC.
14413 * m4/stage.m4: Remove time related checks.
14414 * m4/timevar.m4: New.
14415 * configure.in: Adjust.
14416 * src/system.h: Adjust to using timevar.h.
14417 * src/getargs.h, src/getargs.c: Support trace_time for
14418 --trace=time.
14419 * src/main.c (stage): Remove.
14420 (main): Replace `stage' invocations with timevar calls.
14421 * src/output.c: Insert pertinent timevar calls.
14422
14423 2002-07-31 Akim Demaille <akim@epita.fr>
14424
14425 Let --trace have arguments.
14426
14427 * src/getargs.h (enum trace_e): New.
14428 * src/getargs.c (trace_args, trace_types, trace_argmatch): New.
14429 (long_options, short_options): --trace/-T takes an optional
14430 argument.
14431 Change all the uses of trace_flag to reflect the new flags.
14432 * tests/sets.at (Firsts, Nullable, Broken Closure): Use --trace=sets.
14433
14434 Strengthen `stage' portability.
14435
14436 * m4/stage.m4 (BISON_PREREQ_STAGE): New.
14437 * configure.in: Use it.
14438 Don't check for malloc.h and sys/times.h.
14439 * src/system.h: Include them when appropriate.
14440 * src/main.c (stage): Compile only when mallinfo, struct mallinfo,
14441 times and struct tms are available.
14442
14443 2002-07-30 Akim Demaille <akim@epita.fr>
14444
14445 In verbose parse error message, don't report `error' as an
14446 expected token.
14447 * tests/actions.at (Printers and Destructors): Adjust.
14448 * tests/calc.at (Calculator $1): Adjust.
14449 * data/yacc.c, data/glr.c, data/lalr1.c: When making the verbose
14450 error message, do not report the parser accepts the error token in
14451 that state.
14452
14453 2002-07-30 Akim Demaille <akim@epita.fr>
14454
14455 Normalize conflict related messages.
14456
14457 * src/complain.h, src/complain.c (warn, complain): New.
14458 * src/conflicts.c (conflicts_print): Use them.
14459 (conflict_report_yacc): New, extracted from...
14460 (conflicts_print): here.
14461 * tests/conflicts.at, tests/existing.at: Adjust.
14462
14463 2002-07-30 Akim Demaille <akim@epita.fr>
14464
14465 Report rules which are never reduced by the parser: those hidden
14466 by conflicts.
14467
14468 * src/LR0.c (save_reductions): Don't make the final state too
14469 different: save its reduction (accept) instead of having a state
14470 without any action (no shift or goto, no reduce).
14471 Note: the final state is now a ``regular'' state, i.e., the
14472 parsers now contain `reduce 0' as default reduction.
14473 Nevertheless, since they decide to `accept' when yystate =
14474 final_state, they still will not reduce rule 0.
14475 * src/print.c (print_actions, print_reduction): Adjust.
14476 * src/output.c (action_row): Track reduced rules.
14477 (token_actions): Report rules never reduced.
14478 * tests/conflicts.at, tests/regression.at: Adjust.
14479
14480 2002-07-30 Akim Demaille <akim@epita.fr>
14481
14482 `stage' was accidently included in a previous patch.
14483 Initiate its autoconfiscation.
14484
14485 * configure.in: Look for malloc.h and sys/times.h.
14486 * src/main.c (stage): Adjust.
14487 Report only when trace_flag.
14488
14489 2002-07-29 Akim Demaille <akim@epita.fr>
14490
14491 * src/state.h, src/state.c (transitions_t): Holds state_t*'s, not
14492 state_number_t.
14493 (errs_t): symbol_t*, not symbol_number_t.
14494 (reductions_t): rule_t*, not rule_number_t.
14495 (FOR_EACH_SHIFT): New.
14496 * src/LR0.c, src/conflicts.c, src/lalr.c, src/output.c
14497 * src/print.c, src/print_graph.c: Adjust.
14498
14499 2002-07-29 Akim Demaille <akim@epita.fr>
14500
14501 Use $accept and $end, as BYacc and BTYacc do, instead of $axiom and $.
14502
14503 * src/symtab.h, src/symtab.c (eoftoken, axiom): Rename as...
14504 (endtoken, accept): these.
14505 * src/reader.c (reader): Set endtoken's default tag to "$end".
14506 Set undeftoken's tag to "$undefined" instead of "$undefined.".
14507 * doc/bison.texinfo (Table of Symbols): Mention $accept and $end.
14508 Adjust.
14509
14510 2002-07-29 Akim Demaille <akim@epita.fr>
14511
14512 * src/reduce.c (reduce_grammar): When the language is empty,
14513 complain about the start symbol, not the axiom.
14514 Use its location.
14515 * tests/reduce.at (Empty Language): New.
14516
14517 2002-07-26 Akim Demaille <akim@epita.fr>
14518
14519 * src/reader.h, src/reader.c (gram_error): ... can't get
14520 yycontrol without making too strong assumptions on the parser
14521 itself.
14522 * src/output.c (prepare_tokens): Use the real 0th value of
14523 token_translations instead of `0'.
14524 * src/parse-gram.y (yyerror): Don't rely on yycontrol being
14525 visible here.
14526 * data/yacc.c (yyreport_parse_error): Rename yylocation as yylloc
14527 for the time being: %locations ought to provide it to yyerror.
14528
14529 2002-07-25 Akim Demaille <akim@epita.fr>
14530
14531 * src/output.c (prepare_tokens): Go up to ntokens, not ntokens + 1.
14532 * doc/bison.texinfo (Decl Summary): s/$illegal/$undefined./.
14533 * tests/regression.at (Web2c Actions): Adjust.
14534
14535 2002-07-25 Akim Demaille <akim@epita.fr>
14536
14537 Stop storing rules from 1 to nrules + 1.
14538
14539 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c, src/lalr.c
14540 * src/nullable.c, src/output.c, src/print.c, src/reader.c
14541 * src/reduce.c: Allocate and free from &rules[0], not &rules[1].
14542 Iterate from 0 to nrules.
14543 Use rule_number_as_item_number and item_number_as_rule_number.
14544 Adjust to `derive' now containing possibly 0.
14545 * src/gram.h (rule_number_as_item_number, item_number_as_rule_number):
14546 Handle the `- 1' part in rule numbers from/to item numbers.
14547 * src/conflicts.c (log_resolution): Fix the message which reversed
14548 shift and reduce.
14549 * src/output.c (action_row): Initialize default_rule to -1.
14550 (token_actions): Adjust.
14551 * tests/sets.at (Nullable, Firsts): Fix the previously bogus
14552 expected output.
14553 * tests/conflicts.at (Resolved SR Conflicts): Likewise.
14554
14555 2002-07-25 Akim Demaille <akim@epita.fr>
14556
14557 * data/c.m4 (b4_c_function, b4_c_ansi_args, b4_c_ansi_arg)
14558 (b4_c_knr_arg_names, b4_c_knr_arg_name, b4_c_knr_arg_decls)
14559 (b4_c_knr_arg_decl): New.
14560 * data/yacc.c: Use it to define yysymprint, yydestruct, and
14561 yyreport_parse_error.
14562
14563 2002-07-25 Akim Demaille <akim@epita.fr>
14564
14565 * data/yacc.c (yyreport_parse_error): New, extracted from...
14566 (yyparse): here.
14567 (yydestruct, yysymprint): Move above yyparse.
14568 Be K&R compliant.
14569
14570 2002-07-25 Akim Demaille <akim@epita.fr>
14571
14572 * data/c.m4 (b4_ints_in, b4_int_type, b4_int_type_for): New,
14573 replace...
14574 (b4_sint_type, b4_uint_type): these.
14575 * data/yacc.c, data/glr.c, data/lalr1.cc: Use b4_int_type_for.
14576 * tests/regression.at (Web2c Actions): Adjust.
14577
14578 2002-07-25 Akim Demaille <akim@epita.fr>
14579
14580 * src/gram.h (TIEM_NUMBER_MAX): New.
14581 (item_number_of_rule_number, rule_number_of_item_number): Rename
14582 as...
14583 (rule_number_as_item_number, item_number_as_rule_number): these.
14584 Adjust dependencies.
14585 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
14586 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
14587 (symbol_number_to_vector_number): New.
14588 (order): Of vector_number_t* type.
14589 (base_t, BASE_MAX, BASE_MIN): New.
14590 (froms, tos, width, pos, check): Of base_t type.
14591 (action_number_t, ACTION_MIN, ACTION_MAX): New.
14592 (actrow): Of action_number_t type.
14593 (conflrow): Of unsigned int type.
14594 (table_ninf, base_ninf): New.
14595 (GENERATE_MUSCLE_INSERT_TABLE): Also output the `*_min' value.
14596 (muscle_insert_int_table, muscle_insert_base_table)
14597 (muscle_insert_rule_number_table): New.
14598 (prepare_tokens): Output `toknum' as int_table.
14599 (action_row): Returns a rule_number_t.
14600 Use ACTION_MIN, not SHRT_MIN.
14601 (token_actions): yydefact is rule_number_t*.
14602 (table_ninf_remap): New.
14603 (pack_table): Use it for `base' and `table'.
14604 * data/yacc.c, data/glr.c, data/lalr1.cc (YYFLAG): Remove,
14605 replaced with...
14606 (YYPACT_NINF, YYTABLE_NINF): these.
14607 (yypact, yytable): Compute their types instead of hard-coded
14608 `short'.
14609 * tests/regression.at (Web2c Actions): Adjust.
14610
14611 2002-07-19 Akim Demaille <akim@epita.fr>
14612
14613 * src/scan-gram.l (id): Can start with an underscore.
14614
14615 2002-07-16 Akim Demaille <akim@epita.fr>
14616
14617 * src/assoc.c, src/asssoc.h (assoc_t, assoc_to_string): New.
14618 Adjust all former `associativity' dependencies.
14619 * src/symtab.c (symbol_new): Default associativity is `undef', not
14620 `right'.
14621 (symbol_check_alias_consistence): Adjust.
14622
14623 2002-07-09 Akim Demaille <akim@epita.fr>
14624
14625 * doc/bison.texinfo: Properly set the ``header'' part.
14626 Use @dircategory ``GNU programming tools'' as per Texinfo's
14627 documentation.
14628 Use @copying.
14629
14630 2002-07-09 Akim Demaille <akim@epita.fr>
14631
14632 * lib/quotearg.h: Protect against multiple inclusions.
14633 * src/location.h (location_t): Add a `file' member.
14634 (LOCATION_RESET, LOCATION_PRINT): Adjust.
14635 * src/complain.c (warn_at, complain_at, fatal_at): Drop
14636 `error_one_per_line' support.
14637
14638 2002-07-09 Akim Demaille <akim@epita.fr>
14639
14640 * src/complain.h, src/complain.c (warn, complain): Remove, unused.
14641 * src/reader.c (lineno): Remove.
14642 Adjust all dependencies.
14643 (get_merge_function): Take a location and use complain_at.
14644 * src/symtab.h, src/symtab.c (symbol_make_alias): Likewise.
14645 * tests/regression.at (Invalid inputs, Mixing %token styles):
14646 Adjust.
14647
14648 2002-07-09 Akim Demaille <akim@epita.fr>
14649
14650 * src/parse-gram.y (rules_or_grammar_declaration): Add an error
14651 recovery rule, and forbid extensions when --yacc.
14652 (gram_error): Use complain_at.
14653 * src/reader.c (reader): Exit if there were parse errors.
14654
14655 2002-07-09 Akim Demaille <akim@epita.fr>
14656
14657 * tests/synclines.at (AT_SYNCLINES_COMPILE): New.
14658 (AT_TEST_SYNCLINE): Adjust to unusual GCC outputs.
14659 Reported by R Blake <blakers@mac.com>.
14660
14661 2002-07-09 Akim Demaille <akim@epita.fr>
14662
14663 * data/yacc.c: Output the copyright notive in the header.
14664
14665 2002-07-03 Akim Demaille <akim@epita.fr>
14666
14667 * src/output.c (froms, tos): Are state_number_t.
14668 (save_column): sp, sp1, and sp2 are state_number_t.
14669 (prepare): Rename `final' as `final_state_number', `nnts' as
14670 `nterms_number', `nrules' as `rules_number', `nstates' as
14671 `states_number', and `ntokens' as `tokens_number'. Remove `nsym',
14672 unused.
14673 * data/yacc.c, data/glr.c, data/lalr1.cc: Adjust.
14674 * data/lalr1.cc (nsym_): Remove, unused.
14675
14676 2002-07-03 Akim Demaille <akim@epita.fr>
14677
14678 * src/lalr.h, src/lalr.c (goto_number_t): New.
14679 * src/lalr.c (goto_list_t): New.
14680 Propagate them.
14681 * src/nullable.c (rule_list_t): New.
14682 Propagate.
14683 * src/types.h: Remove.
14684
14685 2002-07-03 Akim Demaille <akim@epita.fr>
14686
14687 * src/closure.c (print_fderives): Use rule_rhs_print.
14688 * src/derives.c (print_derives): Use rule_rhs_print.
14689 (rule_list_t): New, replaces `shorts'.
14690 (set_derives): Add comments.
14691 * tests/sets.at (Nullable, Firsts): Adjust.
14692
14693 2002-07-03 Akim Demaille <akim@epita.fr>
14694
14695 * src/output.c (prepare_actions): Free `tally' and `width'.
14696 (prepare_actions): Allocate and free `order'.
14697 * src/symtab.c (symbols_free): Free `symbols'.
14698 * src/scan-gram.l (scanner_free): Clear Flex's scanners memory.
14699 * src/output.c (m4_invoke): Move to...
14700 * src/scan-skel.l: here.
14701 (<<EOF>>): Close yyout, and free its name.
14702
14703 2002-07-03 Akim Demaille <akim@epita.fr>
14704
14705 Fix some memory leaks, and fix a bug: state 0 was examined twice.
14706
14707 * src/LR0.c (new_state): Merge into...
14708 (state_list_append): this.
14709 (new_states): Merge into...
14710 (generate_states): here.
14711 (set_states): Don't ensure a proper `errs' state member here, do it...
14712 * src/conflicts.c (conflicts_solve): here.
14713 * src/state.h, src/state.c: Comment changes.
14714 (state_t): Rename member `shifts' as `transitions'.
14715 Adjust all dependencies.
14716 (errs_new): For consistency, also take the values as argument.
14717 (errs_dup): Remove.
14718 (state_errs_set): New.
14719 (state_reductions_set, state_transitions_set): Assert that no
14720 previous value was assigned.
14721 (state_free): New.
14722 (states_free): Use it.
14723 * src/conflicts.c (resolve_sr_conflict): Don't use an `errs_t' as
14724 temporary storage: use `errs' and `nerrs' as elsewhere.
14725 (set_conflicts): Allocate and free this `errs'.
14726
14727 2002-07-02 Akim Demaille <akim@epita.fr>
14728
14729 * lib/libiberty.h: New.
14730 * lib: Update the bitset implementation from upstream.
14731 * src/closure.c, src/lalr.c, src/output.c, src/print_graph.c,
14732 * src/state.c: Use BITSET_FOR_EACH, not BITSET_EXECUTE.
14733 * src/main.c: Adjust bitset stats calls.
14734
14735 2002-07-01 Paul Eggert <eggert@twinsun.com>
14736
14737 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>): Convert to unsigned
14738 char, so that negative chars don't collide with $.
14739
14740 2002-06-30 Akim Demaille <akim@epita.fr>
14741
14742 Have the GLR tests be `warning' checked, and fix the warnings.
14743
14744 * data/glr.c (YYFPRINTF): Always define it, not only when YYDEBUG
14745 (yyuserAction, yyreportAmbiguity): `Use' all the arguments.
14746 (yyremoveDeletes): `yyi' and `yyj' are size_t.
14747 Use YYFPRINTF when under if (YYDEBUG) to avoid empty `if' bodies.
14748 (yyaddDeferredAction): static.
14749 (yyglrReduce): yyi, yyk, amd yyposn are size_t.
14750 (yyreportParseError): yyprefix is const.
14751 yytokenp is used only when verbose.
14752 (yy__GNUC__): Replace with __GNUC__.
14753 (yypdumpstack): yyi is size_t.
14754 (yypreference): Un-yy local variables and arguments, to avoid
14755 clashes with `yyr1'. Anyway, we are not in the user name space.
14756 (yytname_size): be an int, as is compared with ints.
14757 * tests/testsuite.at (AT_COMPILE, AT_PARSER_CHECK): New.
14758 Use them.
14759 * tests/cxx-gram.at: Use quotation to protect $1.
14760 Use AT_COMPILE to enable warnings hunts.
14761 Prototype yylex and yyerror.
14762 `Use' argc.
14763 Include `string.h', not `strings.h'.
14764 Produce and prototype stmtMerge only when used.
14765 yylex takes a location.
14766
14767 2002-06-30 Akim Demaille <akim@epita.fr>
14768
14769 We spend a lot of time in quotearg, in particular when --verbose.
14770
14771 * src/symtab.c (symbol_get): Store a quoted version of the key.
14772 (symbol_tag_get, symbol_tag_get_n, symbol_tag_print): Remove.
14773 Adjust all callers.
14774
14775 2002-06-30 Akim Demaille <akim@epita.fr>
14776
14777 * src/state.h (reductions_t): Rename member `nreds' as num.
14778 (errs_t): Rename members `nerrs' and `errs' as `num' and `symbols'.
14779 * src/state.c (ERRS_ALLOC, REDUCTIONS_ALLOC): Use the correct types.
14780
14781 2002-06-30 Akim Demaille <akim@epita.fr>
14782
14783 * src/state.h, src/state.c (shift_t, SHIFT_SYMBOL, SHIFT_IS_SHIFT)
14784 (SHIFT_IS_GOTO, SHIFT_IS_ERROR, SHIFT_DISABLE, SHIFT_IS_DISABLED)
14785 (shifts_to): Rename as...
14786 (transition_t, TRANSITION_SYMBOL, TRANSITION_IS_TRANSITION)
14787 (TRANSITION_IS_GOTO, TRANSITION_IS_ERROR, TRANSITION_DISABLE)
14788 (TRANSITION_IS_DISABLED, transitions_to): these.
14789
14790 2002-06-30 Akim Demaille <akim@epita.fr>
14791
14792 * src/print.c (print_shifts, print_gotos): Merge into...
14793 (print_transitions): this.
14794 (print_transitions, print_errs, print_reductions): Align the
14795 lookaheads columns.
14796 (print_core, print_transitions, print_errs, print_state,
14797 print_grammar): Output empty lines separator before, not after.
14798 (state_default_rule_compute): Rename as...
14799 (state_default_rule): this.
14800 * tests/conflicts.at (Defaulted Conflicted Reduction),
14801 (Unresolved SR Conflicts, Resolved SR Conflicts): Adjust.
14802 * tests/regression.at (Rule Line Numbers, Web2c Report): Adjust.
14803
14804 2002-06-30 Akim Demaille <akim@epita.fr>
14805
14806 Display items as we display rules.
14807
14808 * src/gram.h, src/gram.c (rule_lhs_print): New.
14809 * src/gram.c (grammar_rules_partial_print): Use it.
14810 * src/print.c (print_core): Likewise.
14811 * tests/conflicts.at (Defaulted Conflicted Reduction),
14812 (Unresolved SR Conflicts): Adjust.
14813 (Unresolved SR Conflicts): Adjust and rename as...
14814 (Resolved SR Conflicts): this, as was meant.
14815 * tests/regression.at (Web2c Report): Adjust.
14816
14817 2002-06-30 Akim Demaille <akim@epita.fr>
14818
14819 * src/print.c (state_default_rule_compute): New, extracted from...
14820 (print_reductions): here.
14821 Pessimize, but clarify the code.
14822 * tests/conflicts.at (Defaulted Conflicted Reduction): New.
14823
14824 2002-06-30 Akim Demaille <akim@epita.fr>
14825
14826 * src/output.c (action_row): Let default_rule be always a rule
14827 number.
14828
14829 2002-06-30 Akim Demaille <akim@epita.fr>
14830
14831 * src/closure.c (print_firsts, print_fderives, closure):
14832 Use BITSET_EXECUTE.
14833 * src/lalr.c (lookaheads_print): Likewise.
14834 * src/state.c (state_rule_lookaheads_print): Likewise.
14835 * src/print_graph.c (print_core): Likewise.
14836 * src/print.c (print_reductions): Likewise.
14837 * src/output.c (action_row): Likewise.
14838 Use SHIFT_IS_DISABLED, SHIFT_IS_SHIFT and SHIFT_SYMBOL.
14839
14840 2002-06-30 Akim Demaille <akim@epita.fr>
14841
14842 * src/print_graph.c: Use report_flag.
14843
14844 2002-06-30 Akim Demaille <akim@epita.fr>
14845
14846 * src/lalr.c (traverse, digraph, matrix_print, transpose): Move
14847 to...
14848 * src/relation.h, src/relation.c (traverse, relation_digraph)
14849 (relation_print, relation_transpose): New.
14850
14851 2002-06-30 Akim Demaille <akim@epita.fr>
14852
14853 * src/state.h, src/state.c (shifts_to): New.
14854 * src/lalr.c (build_relations): Use it.
14855
14856 2002-06-30 Akim Demaille <akim@epita.fr>
14857
14858 * src/gram.h (rule_number_t, RULE_NUMBER_MAX, int_of_rule_number)
14859 (item_number_of_rule_number, rule_number_of_item_number): New.
14860 * src/LR0.c, src/closure.c, src/derives.c, src/derives.h,
14861 * src/gram.c, src/lalr.c, src/nullable.c, src/output.c, src/print.c,
14862 * src/print_graph.c, src/reader.c, src/reduce.c, src/reduce.h:
14863 Propagate their use.
14864 Much remains to be done, in particular wrt `shorts' from types.h.
14865
14866 2002-06-30 Akim Demaille <akim@epita.fr>
14867
14868 * src/symtab.c (symbol_new): Initialize the `printer' member.
14869
14870 2002-06-30 Akim Demaille <akim@epita.fr>
14871
14872 * src/LR0.c (save_reductions): Remove, replaced by...
14873 * src/state.h, src/state.c (state_reductions_set): New.
14874 (reductions, errs): Rename as...
14875 (reductions_t, errs_t): these.
14876 Adjust all dependencies.
14877
14878 2002-06-30 Akim Demaille <akim@epita.fr>
14879
14880 * src/LR0.c (state_list_t, state_list_append): New.
14881 (first_state, last_state): Now symbol_list_t.
14882 (this_state): Remove.
14883 (new_itemsets, append_states, save_reductions): Take a state_t as
14884 argument.
14885 (set_states, generate_states): Adjust.
14886 (save_shifts): Remove, replaced by...
14887 * src/state.h, src/state.c (state_shifts_set): New.
14888 (shifts): Rename as...
14889 (shifts_t): this.
14890 Adjust all dependencies.
14891 * src/state.h (state_t): Remove the `next' member.
14892
14893 2002-06-30 Akim Demaille <akim@epita.fr>
14894
14895 * src/vcg.c (quote): Use slot 2, since we often pass symbol tag
14896 escaped in slot 0.
14897
14898 2002-06-30 Akim Demaille <akim@epita.fr>
14899
14900 Use hash.h for the state hash table.
14901
14902 * src/LR0.c (STATE_HASH_SIZE, state_hash): Remove.
14903 (allocate_storage): Use state_hash_new.
14904 (free_storage): Use state_hash_free.
14905 (new_state, get_state): Adjust.
14906 * src/lalr.h, src/lalr.c (states): Move to...
14907 * src/states.h (state_t): Remove the `link' member, no longer
14908 used.
14909 * src/states.h, src/states.c: here.
14910 (state_hash_new, state_hash_free, state_hash_lookup)
14911 (state_hash_insert, states_free): New.
14912 * src/states.c (state_table, state_compare, state_hash): New.
14913 * src/output.c (output_actions): Do not free states now, since we
14914 still need to know the final_state number in `prepare', called
14915 afterwards. Do it...
14916 * src/main.c (main): here: call states_free after `output'.
14917
14918 2002-06-30 Akim Demaille <akim@epita.fr>
14919
14920 * src/state.h, src/state.c (state_new): New, extracted from...
14921 * src/LR0.c (new_state): here.
14922 * src/state.h (STATE_ALLOC): Move to...
14923 * src/state.c: here.
14924 * src/LR0.h, src/LR0.c (nstates, final_state): Move to...
14925 * src/state.h, src/state.c: here.
14926
14927 2002-06-30 Akim Demaille <akim@epita.fr>
14928
14929 * src/reader.c (gensym): Rename as...
14930 * src/symtab.h, src/symtab.c (dummy_symbol_get): this.
14931 (getsym): Rename as...
14932 (symbol_get): this.
14933
14934 2002-06-30 Akim Demaille <akim@epita.fr>
14935
14936 * src/state.h (state_number_t, STATE_NUMBER_MAX): New.
14937 * src/LR0.c, src/LR0.h, src/conflicts.c, src/lalr.c, src/lalr.h,
14938 * src/output.c, src/print.c, src/print_graph.c: Propagate.
14939 * src/LR0.h, src/LR0.h (final_state): Is a state_t*.
14940
14941 2002-06-30 Akim Demaille <akim@epita.fr>
14942
14943 Make the test suite pass with warnings checked.
14944
14945 * tests/actions.at (Printers and Destructors): Improve.
14946 Avoid unsigned vs. signed issues.
14947 * tests/calc.at: Don't exercise the scanner here, do it...
14948 * tests/input.at (Torturing the Scanner): here.
14949
14950 2002-06-28 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14951
14952 * data/glr.c: Correct typo in Emacs-mode directive. Slightly
14953 reorganize first lines parallel to yacc.c.
14954
14955 2002-06-28 Akim Demaille <akim@epita.fr>
14956
14957 * data/c.m4 (b4_copyright, b4_sint_type, b4_uint_type, b4_token_define)
14958 (b4_token_enum, b4_token_defines): New, factored from...
14959 * data/lalr1.cc, data/yacc.c, glr.c: here.
14960
14961 2002-06-28 Akim Demaille <akim@epita.fr>
14962
14963 * data/yacc.c (yydestruct, yysymprint): Pacify GCC warnings for
14964 unused variables.
14965 * src/output.c (merger_output): static.
14966
14967 2002-06-28 Akim Demaille <akim@epita.fr>
14968
14969 * src/reader.h: s/grammer_current_rule_merge_set/grammar_.../.
14970 * src/conflicts.c (conflicts_total_count): `i' is unsigned, to
14971 pacify GCC.
14972 * src/output.c (save_row): Initialize all the variables to pacify GCC.
14973
14974 2002-06-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14975
14976 Accumulated changelog for new GLR parsing features.
14977
14978 * src/conflicts.c (count_total_conflicts): Change name to
14979 conflicts_total_count.
14980 * src/conflicts.h: Ditto.
14981 * src/output.c (token_actions): Use the new name.
14982 (output_conflicts): Change conflp => conflict_list_heads, and
14983 confl => conflict_list for better readability.
14984 * data/glr.c: Use the new names.
14985 * NEWS: Add self to GLR announcement.
14986
14987 * src/reader.c (free_merger_functions): Cleanup: XFREE->free.
14988
14989 * doc/bison.texinfo (GLR Parsers): Make corrections suggested by
14990 Akim Demaille.
14991
14992 * data/bison.glr: Change name to glr.c
14993 * data/glr.c: Renamed from bison.glr.
14994 * data/Makefile.am: Add glr.c
14995
14996 * src/getargs.c:
14997
14998 * src/symlist.h: Add dprec and merger fields to symbol_list_s.
14999 * src/symlist.c (symbol_list_new): Initialize dprec and merger fields.
15000
15001 Originally 2002-06-16 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15002
15003 * data/bison.glr: Be sure to restore the
15004 current #line when returning to the skeleton contents after having
15005 exposed the input file's #line.
15006
15007 Originally 2002-06-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15008
15009 * data/bison.glr: Bring up to date with changes to bison.simple.
15010
15011 Originally 2002-06-03 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15012
15013 * data/bison.glr: Correct definitions that use b4_prefix.
15014 Various reformatting.
15015 (GLRStack): Make yychar (in YYPURE case) and yytokenp as part of stack.
15016 (yyreportParseError, yyrecoverParseError, yyprocessOneStack): remove
15017 yytokenp argument; now part of stack.
15018 (yychar): Define to behave as documented.
15019 (yyclearin): Ditto.
15020
15021 Originally 2002-05-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15022
15023 * src/reader.h: Add declaration for free_merger_functions.
15024
15025 * src/reader.c (merge_functions): New variable.
15026 (get_merge_function): New function.
15027 (free_merger_functions): New function.
15028 (readgram): Check for %prec that is not followed by a symbol.
15029 Handle %dprec and %merge declarations.
15030 (packgram): Initialize dprec and merger fields in rules array.
15031
15032 * src/output.c (conflict_tos, conflrow, conflict_table, conflict_list,
15033 conflict_list_cnt, conflict_list_free): New variables.
15034 (table_grow): Also grow conflict_table.
15035 (prepare_rules): Output dprec and merger tables.
15036 (conflict_row): New function.
15037 (action_row): Output conflict lists for GLR parser. Don't use
15038 default reduction in conflicted states for GLR parser so that there
15039 are spaces for the conflict lists.
15040 (save_row): Also save conflict information.
15041 (token_actions): Allocate conflict list.
15042 (merger_output): New function.
15043 (pack_vector): Pack conflict table, too.
15044 (output_conflicts): New function to output yyconflp and yyconfl.
15045 (output_check): Allocate conflict_tos.
15046 (output_actions): Output conflict tables, also.
15047 (output_skeleton): Output b4_mergers definition.
15048 (prepare): Output b4_max_rhs_length definition.
15049 Use 'bison.glr' as default skeleton for GLR parsers.
15050
15051 * src/gram.c (glr_parser): New flag.
15052 (grammar_free): Call free_merger_functions.
15053
15054 * src/conflicts.c (count_rr_conflicts): Augment to optionally count
15055 all pairs of conflicting reductions, rather than just all tokens
15056 causing conflicts. Needed to size conflict tables.
15057 (conflicts_output): Modify call to count_rr_conflicts for new
15058 interface.
15059 (conflicts_print): Ditto.
15060 (count_total_conflicts): New function.
15061
15062 * src/reader.h (merger_list): New type.
15063 (merge_functions): New variable.
15064
15065 * src/lex.h (tok_dprec, tok_merge): New token types.
15066
15067 * src/gram.h (rule_s): Add dprec and merger fields.
15068 (glr_parser): New flag.
15069
15070 * src/conflicts.h (count_total_conflicts): New function.
15071
15072 * src/options.c (option_table): Add %dprec, %merge, and %glr-parser.
15073
15074 * doc/bison.texinfo (Generalized LR Parsing): New section.
15075 (GLR Parsers): New section.
15076 (Language and Grammar): Mention GLR parsing.
15077 (Table of Symbols): Add %dprec, %glr-parser, %merge, GLR
15078 Correct typo ("tge" -> "the").
15079
15080 * data/bison.glr: New skeleton for GLR parsing.
15081
15082 * tests/cxx-gram.at: New tests for GLR parsing.
15083
15084 * tests/testsuite.at: Include cxx-gram.at.
15085
15086 * tests/Makefile.am: Add cxx-gram.at.
15087
15088 * src/parse-gram.y:
15089
15090 * src/scan-gram.l: Add %dprec, %glr-parser, %merge.
15091
15092 * src/parse-gram.y: Grammar for %dprec, %merge, %glr-parser.
15093
15094 2002-06-27 Akim Demaille <akim@epita.fr>
15095
15096 * src/options.h, src/options.c: Remove.
15097 * src/getargs.c (short_options, long_options): New.
15098
15099 2002-06-27 Akim Demaille <akim@epita.fr>
15100
15101 * data/bison.simple, data/bison.c++: Rename as...
15102 * data/yacc.c, data/lalr1.cc: these.
15103 * doc/bison.texinfo (Environment Variables): Remove.
15104
15105 2002-06-25 Raja R Harinath <harinath@cs.umn.edu>
15106
15107 * src/getargs.c (report_argmatch): Initialize strtok().
15108
15109 2002-06-20 Akim Demaille <akim@epita.fr>
15110
15111 * data/bison.simple (b4_symbol_actions): New, replaces...
15112 (b4_symbol_destructor, b4_symbol_printer): these.
15113 (yysymprint): Be sure to call YYPRINT only for tokens, and using
15114 user token numbers.
15115
15116 2002-06-20 Akim Demaille <akim@epita.fr>
15117
15118 * data/bison.simple (yydestructor): Rename as...
15119 (yydestruct): this.
15120
15121 2002-06-20 Akim Demaille <akim@epita.fr>
15122
15123 * src/symtab.h, src/symtab.c (symbol_type_set)
15124 (symbol_destructor_set, symbol_precedence_set): The location is
15125 the last argument.
15126 Adjust all callers.
15127
15128 2002-06-20 Akim Demaille <akim@epita.fr>
15129
15130 * src/parse-gram.y (YYPRINT, yyprint): Don't mess with the parser
15131 internals.
15132 * src/reader.h, src/reader.c (grammar_current_rule_prec_set):
15133 Takes a location.
15134 * src/symtab.h, src/symtab.c (symbol_class_set)
15135 (symbol_user_token_number_set): Likewise.
15136 Adjust all callers.
15137 Promote complain_at.
15138 * tests/input.at (Type Clashes): Adjust.
15139
15140 2002-06-20 Akim Demaille <akim@epita.fr>
15141
15142 * data/bison.simple (YYLEX): Fix the declaration when
15143 %pure-parser.
15144
15145 2002-06-20 Akim Demaille <akim@epita.fr>
15146
15147 * data/bison.simple (yysymprint): Don't print the token number,
15148 just its name.
15149 * tests/actions.at (Destructors): Rename as...
15150 (Printers and Destructors): this.
15151 Also exercise %printer.
15152
15153 2002-06-20 Akim Demaille <akim@epita.fr>
15154
15155 * data/bison.simple (YYDSYMPRINT): New.
15156 Use it to remove many of the #if YYDEBUG/if (yydebug).
15157
15158 2002-06-20 Akim Demaille <akim@epita.fr>
15159
15160 * src/symtab.h, src/symtab.c (symbol_t): printer and
15161 printer_location are new members.
15162 (symbol_printer_set): New.
15163 * src/parse-gram.y (PERCENT_PRINTER): New token.
15164 Handle its associated rule.
15165 * src/scan-gram.l: Adjust.
15166 (handle_destructor_at, handle_destructor_dollar): Rename as...
15167 (handle_symbol_code_at, handle_symbol_code_dollar): these.
15168 * src/output.c (symbol_printers_output): New.
15169 (output_skeleton): Call it.
15170 * data/bison.simple (yysymprint): New. Cannot be named yyprint
15171 since there are already many grammar files with a user `yyprint'.
15172 Replace the calls to YYPRINT to calls to yysymprint.
15173 * tests/calc.at: Adjust.
15174 * tests/torture.at (AT_DATA_STACK_TORTURE): Remove YYPRINT: it was
15175 taking advantage of parser very internal details (stack size!).
15176
15177 2002-06-20 Akim Demaille <akim@epita.fr>
15178
15179 * src/scan-gram.l: Complete the scanner with the missing patterns
15180 to pacify Flex.
15181 Use `quote' and `symbol_tag_get' where appropriate.
15182
15183 2002-06-19 Akim Demaille <akim@epita.fr>
15184
15185 * tests/actions.at (Destructors): Augment to test locations.
15186 * data/bison.simple (yydestructor): Pass it the current location
15187 if locations are enabled.
15188 Prototype only when __STDC__ or C++.
15189 Change the argument names to move into the yy name space: there is
15190 user code here.
15191
15192 2002-06-19 Akim Demaille <akim@epita.fr>
15193
15194 * data/bison.simple (b4_pure_if): New.
15195 Use it instead of #ifdef YYPURE.
15196
15197 2002-06-19 Akim Demaille <akim@epita.fr>
15198
15199 * data/bison.simple (b4_location_if): New.
15200 Use it instead of #ifdef YYLSP_NEEDED.
15201
15202 2002-06-19 Akim Demaille <akim@epita.fr>
15203
15204 Prepare @$ in %destructor, but currently don't bind it in the
15205 skeleton, as %location use is not cleaned up yet.
15206
15207 * src/scan-gram.l (handle_dollar, handle_destructor_at)
15208 (handle_action_at): New.
15209 (handle_at, handle_action_dollar, handle_destructor_dollar): Take
15210 a braced_code_t and a location as additional arguments.
15211 (handle_destructor_dollar): Instead of requiring `b4_eval', just
15212 unquote one when outputting `b4_dollar_dollar'.
15213 Adjust callers.
15214 * data/bison.simple (b4_eval): Remove.
15215 (b4_symbol_destructor): Adjust.
15216 * tests/input.at (Invalid @n): Adjust.
15217
15218 2002-06-19 Zack Weinberg <zack@codesourcery.com>
15219
15220 * doc/bison.texinfo: Document ability to have multiple
15221 prologue sections.
15222
15223 2002-06-18 Akim Demaille <akim@epita.fr>
15224
15225 * src/files.c (compute_base_names): When computing the output file
15226 names from the input file name, strip the directory part.
15227
15228 2002-06-18 Akim Demaille <akim@epita.fr>
15229
15230 * data/bison.simple.new: Comment changes.
15231 Reported by Andreas Schwab.
15232
15233 2002-06-18 Matt Kraai <kraai@alumni.cmu.edu>
15234
15235 * data/bison.simple (yyoverflowlab): #ifndef yyoverflow, so that
15236 there are no `label `yyoverflowlab' defined but not used' warnings
15237 when yyoverflow is defined.
15238
15239 2002-06-18 Akim Demaille <akim@epita.fr>
15240
15241 * src/symtab.h, src/symtab.c (symbol_t): destructor_location is a
15242 new member.
15243 (symbol_destructor_set): Adjust.
15244 * src/output.c (symbol_destructors_output): Output the destructor
15245 locations.
15246 Output the symbol name.
15247 * data/bison.simple (b4_symbol_destructor): Adjust.
15248
15249 2002-06-18 Cris Bailiff <c.bailiff@awayweb.com>
15250 and Akim Demaille <akim@epita.fr>
15251
15252 * data/bison.simple.new (yyerrlab1): Be sure to pop and destroy
15253 what's left on the stack when the error recovery hits EOF.
15254 * tests/actions.at (Destructors): Complete to exercise this case.
15255
15256 2002-06-17 Akim Demaille <akim@epita.fr>
15257
15258 * data/m4sugar/m4sugar.m4 (m4_map): Recognize when the list of
15259 arguments is really empty, not only equal to `[]'.
15260 * src/symtab.h, src/symtab.c (symbol_t): `destructor' is a new
15261 member.
15262 (symbol_destructor_set): New.
15263 * src/output.c (symbol_destructors_output): New.
15264 * src/reader.h (brace_code_t, current_braced_code): New.
15265 * src/scan-gram.l (BRACED_CODE): Use it to branch on...
15266 (handle_dollar): Rename as...
15267 (handle_action_dollar): this.
15268 (handle_destructor_dollar): New.
15269 * src/parse-gram.y (PERCENT_DESTRUCTOR): New.
15270 (grammar_declaration): Use it.
15271 * data/bison.simple (yystos): Is always defined.
15272 (yydestructor): New.
15273 * tests/actions.at (Destructors): New.
15274 * tests/calc.at (_AT_CHECK_CALC_ERROR): Don't rely on egrep.
15275
15276 2002-06-17 Akim Demaille <akim@epita.fr>
15277
15278 * src/symlist.h, src/symlist.c (symbol_list_length): New.
15279 * src/scan-gram.l (handle_dollar, handle_at): Compute the
15280 rule_length only when needed.
15281 * src/output.c (actions_output, token_definitions_output): Output
15282 the full M4 block.
15283 * src/symtab.c: Don't access directly to the symbol tag, use
15284 symbol_tag_get.
15285 * src/parse-gram.y: Use symbol_list_free.
15286
15287 2002-06-17 Akim Demaille <akim@epita.fr>
15288
15289 * src/reader.h, src/reader.c (symbol_list, symbol_list_new)
15290 (symbol_list_prepend, get_type_name): Move to...
15291 * src/symlist.h, src/symlist.c (symbol_list_t, symbol_list_new)
15292 (symbol_list_prepend, symbol_list_n_type_name_get): here.
15293 Adjust all callers.
15294 (symbol_list_free): New.
15295 * src/scan-gram.l (handle_dollar): Takes a location.
15296 * tests/input.at (Invalid $n): Adjust.
15297
15298 2002-06-17 Akim Demaille <akim@epita.fr>
15299
15300 * src/reader.h, src/reader.c (symbol_list_new): Export it.
15301 (symbol_list_prepend): New.
15302 * src/parse-gram.y (%union): `list' is a new member.
15303 (symbols.1): New, replaces...
15304 (terms_to_prec.1, nterms_to_type.1): these.
15305 * src/symtab.h, src/symtab.c (symbol_type_set, symbol_precedence_set)
15306 Take a location as additional argument.
15307 Adjust all callers.
15308
15309 2002-06-15 Akim Demaille <akim@epita.fr>
15310
15311 * src/parse-gram.y: Move %token in the declaration section so that
15312 we don't depend upon CVS Bison.
15313
15314 2002-06-15 Akim Demaille <akim@epita.fr>
15315
15316 * src/state.h, src/state.c (state_rule_lookaheads_print): New.
15317 * src/print.c (print_core): Use it.
15318
15319 2002-06-15 Akim Demaille <akim@epita.fr>
15320
15321 * src/conflicts.c (log_resolution): Accept the rule involved in
15322 the sr conflicts instead of the lookahead number that points to
15323 that rule.
15324 (flush_reduce): Accept the current lookahead vector as argument,
15325 instead of the index in LA.
15326 (resolve_sr_conflict): Accept the current number of lookahead
15327 bitset to consider for the STATE, instead of the index in LA.
15328 (set_conflicts): Adjust.
15329 * src/lalr.c, src/lalr.h, src/state.h: Comment changes.
15330
15331 2002-06-15 Akim Demaille <akim@epita.fr>
15332
15333 * src/state.h (state_t): Replace the `lookaheadsp' member, a
15334 short, with `lookaheads' (bitsetv), `lookaheads_rule' (rule_t**).
15335 Adjust all dependencies.
15336 * src/lalr.c (initialize_lookaheads): Split into...
15337 (states_lookaheads_count, states_lookaheads_initialize): these.
15338 (lalr): Adjust.
15339
15340 2002-06-15 Akim Demaille <akim@epita.fr>
15341
15342 * src/gram.h, src/gram.c (grammar_rules_partial_print): New, eved
15343 out of...
15344 (grammar_rules_print): here.
15345 * src/reduce.c (reduce_output): Use it.
15346 * tests/reduce.at (Useless Rules, Reduced Automaton)
15347 (Underivable Rules): Adjust.
15348
15349 2002-06-15 Akim Demaille <akim@epita.fr>
15350
15351 Copy BYacc's nice way to report the grammar.
15352
15353 * src/gram.h, src/gram.c (grammar_rhs_print, grammar_rules_print):
15354 New.
15355 Don't print the rules' location, it is confusing and useless.
15356 (rule_print): Use grammar_rhs_print.
15357 * src/print.c (print_grammar): Use grammar_rules_print.
15358
15359 2002-06-15 Akim Demaille <akim@epita.fr>
15360
15361 Complete and rationalize `useless thing' warnings.
15362
15363 * src/symtab.h, src/symtab.c (symbol_tag_get, symbol_tag_get_n)
15364 (symbol_tag_print): New.
15365 Use them everywhere in place of accessing directly the tag member.
15366 * src/gram.h, src/gram.c (rule_print): New.
15367 Use it where a rule used to be printed `by hand'.
15368 * src/reduce.c (nonterminals_reduce): Report the use nonterminals.
15369 (reduce_grammar_tables): Report the useless rules.
15370 (reduce_print): Useless things are a warning, not an error.
15371 Report it as such.
15372 * tests/reduce.at (Useless Nonterminals, Useless Rules):
15373 (Reduced Automaton, Underivable Rules): Adjust.
15374 * tests/regression.at (Web2c Report, Web2c Report): Adjust.
15375 * tests/conflicts.at (Unresolved SR Conflicts)
15376 (Solved SR Conflicts): Adjust.
15377
15378 2002-06-15 Akim Demaille <akim@epita.fr>
15379
15380 Let symbols have a location.
15381
15382 * src/symtab.h, src/symtab.c (symbol_t): Location is a new member.
15383 (getsym): Adjust.
15384 Adjust all callers.
15385 * src/complain.h, src/complain.c (complain_at, fatal_at, warn_at):
15386 Use location_t, not int.
15387 * src/symtab.c (symbol_check_defined): Take advantage of the
15388 location.
15389 * tests/regression.at (Invalid inputs): Adjust.
15390
15391 2002-06-15 Akim Demaille <akim@epita.fr>
15392
15393 * src/parse-gram.y (YYLLOC_DEFAULT, current_lhs_location): New.
15394 (input): Don't try to initialize yylloc here, do it in the
15395 scanner.
15396 * src/scan-gram.l (YY_USER_INIT): Initialize yylloc.
15397 * src/gram.h (rule_t): Change line and action_line into location
15398 and action_location, of location_t type.
15399 Adjust all dependencies.
15400 * src/location.h, src/location.c (empty_location): New.
15401 * src/reader.h, src/reader.c (grammar_start_symbol_set)
15402 (grammar_symbol_append, grammar_rule_begin, grammar_rule_end)
15403 (grammar_current_rule_symbol_append)
15404 (grammar_current_rule_action_append): Expect a location as argument.
15405 * src/reader.c (grammar_midrule_action): Adjust to attach an
15406 action's location as dummy symbol location.
15407 * src/symtab.h, src/symtab.c (startsymbol_location): New.
15408 * tests/regression.at (Web2c Report, Rule Line Numbers): Adjust
15409 the line numbers.
15410
15411 2002-06-14 Akim Demaille <akim@epita.fr>
15412
15413 Grammar declarations may be found in the grammar section.
15414
15415 * src/parse-gram.y (rules_or_grammar_declaration): New.
15416 (declarations): Each declaration may end with a semicolon, not
15417 just...
15418 (grammar_declaration): `"%union"'.
15419 (grammar): Branch to rules_or_grammar_declaration.
15420
15421 2002-06-14 Akim Demaille <akim@epita.fr>
15422
15423 * src/main.c (main): Invoke scanner_free.
15424
15425 2002-06-14 Akim Demaille <akim@epita.fr>
15426
15427 * src/output.c (m4_invoke): Extracted from...
15428 (output_skeleton): here.
15429 Free tempfile.
15430
15431 2002-06-14 Akim Demaille <akim@epita.fr>
15432
15433 * src/parse-gram.y (directives, directive, gram)
15434 (grammar_directives, precedence_directives, precedence_directive):
15435 Rename as...
15436 (declarations, declaration, grammar, grammar_declaration)
15437 (precedence_declaration, precedence_declarator): these.
15438 (symbol_declaration): New.
15439
15440 2002-06-14 Akim Demaille <akim@epita.fr>
15441
15442 * src/files.c (action_obstack): Remove, unused.
15443 (output_obstack): Remove it, and all its dependencies, as it is no
15444 longer needed.
15445 * src/reader.c (epilogue_set): Build the epilogue in the
15446 muscle_obstack.
15447 * src/output.h, src/output.c (muscle_obstack): Move to...
15448 * src/muscle_tab.h, src/muscle_tab.h: here.
15449 (muscle_init): Initialize muscle_obstack.
15450 (muscle_free): New.
15451 * src/main.c (main): Call it.
15452
15453 2002-06-14 Akim Demaille <akim@epita.fr>
15454
15455 * src/location.h: New, extracted from...
15456 * src/reader.h: here.
15457 * src/Makefile.am (noinst_HEADERS): Merge into
15458 (bison_SOURCES): this.
15459 Add location.h.
15460 * src/parse-gram.y: Use location_t instead of Bison's.
15461 * src/reader.h, src/reader.c (prologue_augment, epilogue_set):
15462 Use location_t instead of ints.
15463
15464 2002-06-14 Akim Demaille <akim@epita.fr>
15465
15466 * data/bison.simple, data/bison.c++: Be sure to restore the
15467 current #line when returning to the skeleton contents after having
15468 exposed the input file's #line.
15469
15470 2002-06-12 Akim Demaille <akim@epita.fr>
15471
15472 * src/scan-gram.l (SC_BRACED_CODE): Don't use `<.*>', it is too
15473 eager.
15474 * tests/actions.at (Exotic Dollars): New.
15475
15476 2002-06-12 Akim Demaille <akim@epita.fr>
15477
15478 * src/scan-gram.l (SC_PROLOGUE): Don't eat characters amongst
15479 ['"/] too eagerly.
15480 * tests/input.at (Torturing the Scanner): New.
15481
15482 2002-06-11 Akim Demaille <akim@epita.fr>
15483
15484 * src/scan-gram.l (YY_OBS_INIT): Remove, replace with...
15485 [SC_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE]
15486 [SC_EPILOGUE]: Output the quadrigraphs only when not in a comment.
15487 * src/reader.h, src/scan-gram.l (scanner_initialize): this.
15488 * src/reader.c (reader): Use it.
15489
15490 2002-06-11 Akim Demaille <akim@epita.fr>
15491
15492 * src/scan-gram.l (YY_OBS_FINISH): Don't set yylval.
15493 Adjust all callers.
15494 (scanner_last_string_free): New.
15495
15496 2002-06-11 Akim Demaille <akim@epita.fr>
15497
15498 * src/scan-gram.l (YY_INIT, YY_GROW, YY_FINISH): Rename as...
15499 (YY_OBS_INIT, YY_OBS_GROW, YY_OBS_FINISH): these.
15500 (last_string, YY_OBS_FREE): New.
15501 Use them when returning an ID.
15502
15503 2002-06-11 Akim Demaille <akim@epita.fr>
15504
15505 Have Bison grammars parsed by a Bison grammar.
15506
15507 * src/reader.c, src/reader.h (prologue_augment): New.
15508 * src/reader.c (copy_definition): Remove.
15509
15510 * src/reader.h, src/reader.c (gram_start_symbol_set, prologue_augment)
15511 (grammar_symbol_append, grammar_rule_begin, grammar_midrule_action)
15512 (grammar_current_rule_prec_set, grammar_current_rule_check)
15513 (grammar_current_rule_symbol_append)
15514 (grammar_current_rule_action_append): Export.
15515 * src/parse-gram.y (symbol_list_new, symbol_list_symbol_append_
15516 (symbol_list_action_append): Remove.
15517 Hook the routines from reader.
15518 * src/scan-gram.l: In INITIAL, characters and strings are tokens.
15519 * src/system.h (ATTRIBUTE_NORETURN, ATTRIBUTE_UNUSED): Now.
15520
15521 * src/reader.c (read_declarations): Remove, unused.
15522
15523 * src/parse-gram.y: Handle the epilogue.
15524 * src/reader.h, src/reader.c (gram_start_symbol_set): Rename as...
15525 (grammar_start_symbol_set): this.
15526 * src/scan-gram.l: Be sure to ``use'' yycontrol to keep GCC quiet.
15527 * src/reader.c (readgram): Remove, unused.
15528 (reader): Adjust to insert eoftoken and axiom where appropriate.
15529
15530 * src/reader.c (copy_dollar): Replace with...
15531 * src/scan-gram.h (handle_dollar): this.
15532 * src/parse-gram.y: Remove `%thong'.
15533
15534 * src/reader.c (copy_at): Replace with...
15535 * src/scan-gram.h (handle_at): this.
15536
15537 * src/complain.h, src/complain.c (warn_at, complain_at, fatal_at):
15538 New.
15539
15540 * src/scan-gram.l (YY_LINES): Keep lineno synchronized for the
15541 time being.
15542
15543 * src/reader.h, src/reader.c (grammar_rule_end): New.
15544
15545 * src/parse.y (current_type, current_class): New.
15546 Implement `%nterm', `%token' support.
15547 Merge `%term' into `%token'.
15548 (string_as_id): New.
15549 * src/symtab.h, src/symtab.c (symbol_make_alias): Don't pass the
15550 type name.
15551
15552 * src/parse-gram.y: Be sure to handle properly the beginning of
15553 rules.
15554
15555 * src/parse-gram.y: Handle %type.
15556 * src/reader.c (grammar_rule_end): Call grammar_current_rule_check.
15557
15558 * src/parse-gram.y: More directives support.
15559 * src/options.c: No longer handle source directives.
15560
15561 * src/parse-gram.y: Fix %output.
15562
15563 * src/parse-gram.y: Handle %union.
15564 Use the prologue locations.
15565 * src/reader.c (parse_union_decl): Remove.
15566
15567 * src/reader.h, src/reader.c (epilogue_set): New.
15568 * src/parse-gram.y: Use it.
15569
15570 * data/bison.simple, data/bison.c++: b4_stype is now either not
15571 defined, then default to int, or to the contents of %union,
15572 without `union' itself.
15573 Adjust.
15574 * src/muscle_tab.c (muscle_init): Don't predefine `stype'.
15575
15576 * src/output.c (actions_output): Don't output braces, as they are
15577 already handled by the scanner.
15578
15579 * src/scan-gram.l (SC_CHARACTER): Set the user_token_number of
15580 characters to themselves.
15581
15582 * tests/reduce.at (Reduced Automaton): End the grammars with %% so
15583 that the epilogue has a proper #line.
15584
15585 * src/parse-gram.y: Handle precedence/associativity.
15586
15587 * src/symtab.c (symbol_precedence_set): Requires the symbol to be
15588 a terminal.
15589 * src/scan-gram.l (SC_BRACED_CODE): Catch strings and characters.
15590 * tests/calc.at: Do not use `%token "foo"' as it makes not sense
15591 at all to define terminals that cannot be emitted.
15592
15593 * src/scan-gram.l: Escape M4 characters.
15594
15595 * src/scan-gram.l: Working properly with escapes in user
15596 strings/characters.
15597
15598 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR)
15599 (AT_DATA_HORIZONTAL_GRAMMAR): Respect the `%token ID NUM STRING'
15600 grammar.
15601 Use more modest sizes, as for the time being the parser does not
15602 release memory, and therefore the process swallows a huge amount
15603 of memory.
15604
15605 * tests/torture.at (AT_DATA_LOOKAHEADS_GRAMMAR): Adjust to the
15606 stricter %token grammar.
15607
15608 * src/symtab.h (associativity): Add `undef_assoc'.
15609 (symbol_precedence_set): Do nothing when passed an undef_assoc.
15610 * src/symtab.c (symbol_check_alias_consistence): Adjust.
15611
15612 * tests/regression.at (Invalid %directive): Remove, as it is now
15613 meaningless.
15614 (Invalid inputs): Adjust to the new error messages.
15615 (Token definitions): The new grammar doesn't allow too many
15616 eccentricities.
15617
15618 * src/lex.h, src/lex.c: Remove.
15619 * src/reader.c (lastprec, skip_to_char, read_signed_integer)
15620 (copy_character, copy_string2, copy_string, copy_identifier)
15621 (copy_comment, parse_token_decl, parse_type_decl, parse_assoc_decl)
15622 (parse_muscle_decl, parse_dquoted_param, parse_skel_decl)
15623 (parse_action): Remove.
15624 * po/POTFILES.in: Adjust.
15625
15626 2002-06-11 Akim Demaille <akim@epita.fr>
15627
15628 * src/reader.c (parse_action): Don't store directly into the
15629 rule's action member: return the action as a string.
15630 Don't require `rule_length' as an argument: compute it.
15631 (grammar_current_rule_symbol_append)
15632 (grammar_current_rule_action_append): New, eved out from
15633 (readgram): here.
15634 Remove `action_flag', `rulelength', unused now.
15635
15636 2002-06-11 Akim Demaille <akim@epita.fr>
15637
15638 * src/reader.c (grammar_current_rule_prec_set).
15639 (grammar_current_rule_check): New, eved out from...
15640 (readgram): here.
15641 Remove `xaction', `first_rhs': useless.
15642 * tests/input.at (Type clashes): New.
15643 * tests/existing.at (GNU Cim Grammar): Adjust.
15644
15645 2002-06-11 Akim Demaille <akim@epita.fr>
15646
15647 * src/reader.c (grammar_midrule_action): New, Eved out from
15648 (readgram): here.
15649
15650 2002-06-11 Akim Demaille <akim@epita.fr>
15651
15652 * src/reader.c (grammar_rule_begin, previous_rule, current_rule):
15653 New.
15654 (readgram): Use them as replacement of inlined code, crule and
15655 crule1.
15656
15657 2002-06-11 Akim Demaille <akim@epita.fr>
15658
15659 * src/reader.c (grammar_end, grammar_symbol_append): New.
15660 (readgram): Use them.
15661 Make the use of `p' as local as possible.
15662
15663 2002-06-10 Akim Demaille <akim@epita.fr>
15664
15665 GCJ's parser requires the tokens to be defined before the prologue.
15666
15667 * data/bison.simple: Output the token definition before the user's
15668 prologue.
15669 * tests/regression.at (Braces parsing, Duplicate string)
15670 (Mixing %token styles): Check the output from bison.
15671 (Early token definitions): New.
15672
15673 2002-06-10 Akim Demaille <akim@epita.fr>
15674
15675 * src/symtab.c (symbol_user_token_number_set): Don't complain when
15676 assigning twice the same user number to a token, so that we can
15677 use it in...
15678 * src/lex.c (lex): here.
15679 Also use `symbol_class_set' instead of hand written code.
15680 * src/reader.c (parse_assoc_decl): Likewise.
15681
15682 2002-06-10 Akim Demaille <akim@epita.fr>
15683
15684 * src/symtab.c, src/symtab.c (symbol_class_set)
15685 (symbol_user_token_number_set): New.
15686 * src/reader.c (parse_token_decl): Use them.
15687 Use a switch instead of ifs.
15688 Use a single argument.
15689
15690 2002-06-10 Akim Demaille <akim@epita.fr>
15691
15692 Remove `%thong' support as it is undocumented, unused, duplicates
15693 `%token's job, and creates useless e-mail traffic with people who
15694 want to know what it is, why it is undocumented, unused, and
15695 duplicates `%token's job.
15696
15697 * src/reader.c (parse_thong_decl): Remove.
15698 * src/options.c (option_table): Remove "thong".
15699 * src/lex.h (tok_thong): Remove.
15700
15701 2002-06-10 Akim Demaille <akim@epita.fr>
15702
15703 * src/symtab.c, src/symtab.c (symbol_type_set)
15704 (symbol_precedence_set): New.
15705 * src/reader.c (parse_type_decl, parse_assoc_decl): Use them.
15706 (value_components_used): Remove, unused.
15707
15708 2002-06-09 Akim Demaille <akim@epita.fr>
15709
15710 Move symbols handling code out of the reader.
15711
15712 * src/reader.h, src/reader.c (errtoken, undeftoken, eoftoken)
15713 (axiom): Move to...
15714 * src/symtab.h, src/symtab.c: here.
15715
15716 * src/gram.c (start_symbol): Remove: use startsymbol->number.
15717 * src/reader.c (startval): Rename as...
15718 * src/symtab.h, src/symtab.c (startsymbol): this.
15719 * src/reader.c: Adjust.
15720
15721 * src/reader.c (symbol_check_defined, symbol_make_alias)
15722 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
15723 (token_translations_init)
15724 Move to...
15725 * src/symtab.c: here.
15726 * src/reader.c (packsymbols): Move to...
15727 * src/symtab.h, src/symtab.c (symbols_pack): here.
15728 * src/symtab.h, src/symtab.c (symbol_make_alias): Takes SYMVAL as
15729 argument.
15730
15731 2002-06-03 Akim Demaille <akim@epita.fr>
15732
15733 * src/muscle_tab.c (muscle_insert, muscle_find): Declarations,
15734 then statements.
15735
15736 2002-06-03 Akim Demaille <akim@epita.fr>
15737
15738 * src/muscle_tab.c (muscle_find, muscle_insert): Don't initialize
15739 structs with non literals.
15740 * src/scan-skel.l: never-interactive.
15741 * src/conflicts.c (enum conflict_resolution_e): No trailing
15742 comma.
15743 * src/getargs.c (usage): Split long literal strings.
15744 Reported by Hans Aberg.
15745
15746 2002-05-28 Akim Demaille <akim@epita.fr>
15747
15748 * data/bison.c++: Use C++ ostreams.
15749 (cdebug_): New member.
15750
15751 2002-05-28 Akim Demaille <akim@epita.fr>
15752
15753 * src/output.c (output_skeleton): Be sure to allocate enough room
15754 for `/' _and_ for `\0' in full_skeleton.
15755
15756 2002-05-28 Akim Demaille <akim@epita.fr>
15757
15758 * data/bison.c++: Catch up with bison.simple:
15759 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15760 and Paul Eggert <eggert@twinsun.com>: `error' handing.
15761 2002-05-26 Akim Demaille <akim@epita.fr>: stos_, token_number_,
15762 and popping traces.
15763
15764 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15765
15766 * src/output.c (output_skeleton): Put an explicit path in front of
15767 the skeleton file name, rather than relying on the -I directory,
15768 to partially alleviate effects of having a skeleton file lying around
15769 in the current directory.
15770
15771 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15772
15773 * src/conflicts.c (log_resolution): Correct typo:
15774 obstack_printf should be obstack_fgrow1.
15775
15776 2002-05-26 Akim Demaille <akim@epita.fr>
15777
15778 * src/state.h (state_t): `solved_conflicts' is a new member.
15779 * src/LR0.c (new_state): Set it to 0.
15780 * src/conflicts.h, src/conflicts.c (print_conflicts)
15781 (free_conflicts, solve_conflicts): Rename as...
15782 (conflicts_print, conflicts_free, conflicts_solve): these.
15783 Adjust callers.
15784 * src/conflicts.c (enum conflict_resolution_e)
15785 (solved_conflicts_obstack): New, used by...
15786 (log_resolution): this.
15787 Adjust to attach the conflict resolution to each state.
15788 Complete the description with the precedence/associativity
15789 information.
15790 (resolve_sr_conflict): Adjust.
15791 * src/print.c (print_state): Output its solved_conflicts.
15792 * tests/conflicts.at (Unresolved SR Conflicts)
15793 (Solved SR Conflicts): Exercise --report=all.
15794
15795 2002-05-26 Akim Demaille <akim@epita.fr>
15796
15797 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
15798 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
15799 * src/reader.c, src/reduce.c, src/state.h, src/symtab.h
15800 (token_number_t, item_number_as_token_number)
15801 (token_number_as_item_number, muscle_insert_token_number_table):
15802 Rename as...
15803 (symbol_number_t, item_number_as_symbol_number)
15804 (symbol_number_as_item_number, muscle_insert_symbol_number_table):
15805 these, since it is more appropriate.
15806
15807 2002-05-26 Akim Demaille <akim@epita.fr>
15808
15809 * tests/calc.at (AT_CHECK_CALC): Adjust: there are now additional
15810 `Error:' lines.
15811 * data/bison.simple (yystos) [YYDEBUG]: New.
15812 (yyparse) [YYDEBUG]: Display the symbols which are popped during
15813 error recovery.
15814 * tests/regression.at (Web2c Actions): Adjust: yystos is output now.
15815
15816 2002-05-25 Akim Demaille <akim@epita.fr>
15817
15818 * doc/bison.texinfo (Debugging): Split into...
15819 (Tracing): this new section, its former contents, and...
15820 (Understanding): this new section.
15821 * src/getargs.h, src/getargs.c (verbose_flag): Remove, replaced
15822 by...
15823 (report_flag): this.
15824 Adjust all dependencies.
15825 (report_args, report_types, report_argmatch): New.
15826 (usage, getargs): Report/support -r, --report.
15827 * src/options.h
15828 (struct option_table_struct): Rename as..,
15829 (struct option_table_s): this.
15830 Rename the `set_flag' member to `flag' to match with getopt_long's
15831 struct.
15832 * src/options.c (option_table): Split verbose into an entry for
15833 %verbose, and another for --verbose.
15834 Support --report/-r, so remove -r from the obsolete --raw.
15835 * src/print.c: Attach full item sets and lookaheads reports to
15836 report_flag instead of trace_flag.
15837 * lib/argmatch.h, lib/argmatch.c: New, from Fileutils 4.1.
15838
15839 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15840 and Paul Eggert <eggert@twinsun.com>
15841
15842 * data/bison.simple (yyparse): Correct error handling to conform to
15843 POSIX and yacc. Specifically, after syntax error is discovered,
15844 do not reduce further before shifting the error token.
15845 Clean up the code a bit by removing the labels yyerrdefault,
15846 yyerrhandle, yyerrpop.
15847 * NEWS: Document the above.
15848
15849 2002-05-20 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15850
15851 * data/bison.simple (yyr1): Don't use yy_token_number_type as element
15852 type; it isn't always big enough, since it doesn't necessarily
15853 include non-terminals.
15854 (yytranslate): Expand definition of yy_token_number_type, so that
15855 the latter can be removed.
15856 (yy_token_number_type): Remove, only one use.
15857 * data/bison.c++ (r1_): Parallel change to yyr1 in bison.simple---
15858 don't use TokenNumberType as element type.
15859
15860 * tests/regression.at: Modify expected output to agree with change
15861 to yyr1 and yytranslate.
15862
15863 2002-05-13 Florian Krohm <florian@edamail.fishkill.ibm.com>
15864
15865 * src/reader.c (parse_action): Use copy_character instead of
15866 obstack_1grow.
15867
15868 2002-05-13 Akim Demaille <akim@epita.fr>
15869
15870 * tests/regression.at (Token definitions): Prototype yylex and
15871 yyerror.
15872
15873 2002-05-12 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15874
15875 * src/scan-skel.l: Correct off-by-one error in handling of __oline__.
15876 * data/bison.simple (b4_sint_type, b4_uint_type): Correct to reflect
15877 32-bit arithmetic.
15878 * data/bison.c++ (b4_sint_type, b4_uint_type): Ditto.
15879
15880 2002-05-07 Akim Demaille <akim@epita.fr>
15881
15882 * tests/synclines.at: Be sure to prototype yylex and yyerror to
15883 avoid GCC warnings.
15884
15885 2002-05-07 Akim Demaille <akim@epita.fr>
15886
15887 Kill GCC warnings.
15888
15889 * src/reduce.c (nonterminals_reduce): Don't loop over RITEM: loop
15890 over the RHS of each rule.
15891 * src/gram.h, src/gram.c (nritems): Is `unsigned int', not int.
15892 * src/state.h (state_t): Member `nitems' is unsigned short.
15893 * src/LR0.c (get_state): Adjust.
15894 * src/reader.c (packgram): Likewise.
15895 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): `max' is of type
15896 `Type'.
15897 (muscle_insert_int_table): Remove, unused.
15898 (prepare_rules): Remove `max'.
15899
15900 2002-05-06 Akim Demaille <akim@epita.fr>
15901
15902 * src/closure.c (print_firsts): Display of the symbol tags.
15903 (bitmatrix_print): Move to...
15904 * lib/bitsetv-print.h, lib/bitsetv-print.c (bitsetv_matrix_dump):
15905 here.
15906 * tests/sets.at (Nullable, Broken Closure, Firsts): Adjust.
15907
15908 2002-05-06 Akim Demaille <akim@epita.fr>
15909
15910 * src/muscle_tab.c (muscle_m4_output): Must return TRUE for
15911 hash_do_for_each.
15912
15913 2002-05-06 Akim Demaille <akim@epita.fr>
15914
15915 * src/LR0.c (new_state, get_state): Instead of using the global
15916 `kernel_size' and `kernel_base', have two new arguments:
15917 `core_size' and `core'.
15918 Adjust callers.
15919
15920 2002-05-06 Akim Demaille <akim@epita.fr>
15921
15922 * src/reader.c (packgram): No longer end `ritem' with a 0
15923 sentinel: it is not used.
15924
15925 2002-05-05 Akim Demaille <akim@epita.fr>
15926
15927 New experimental feature: display the lookaheads in the report and
15928 graph.
15929
15930 * src/print (print_core): When --trace-flag, display the rules
15931 lookaheads.
15932 * src/print_graph.c (print_core): Likewise.
15933 Swap the arguments.
15934 Adjust caller.
15935
15936 2002-05-05 Akim Demaille <akim@epita.fr>
15937
15938 * tests/torture.at (Many lookaheads): New test.
15939
15940 2002-05-05 Akim Demaille <akim@epita.fr>
15941
15942 * src/output.c (GENERATE_OUTPUT_TABLE): Replace with...
15943 (GENERATE_MUSCLE_INSERT_TABLE): this.
15944 (output_int_table, output_unsigned_int_table, output_short_table)
15945 (output_token_number_table, output_item_number_table): Replace with...
15946 (muscle_insert_int_table, muscle_insert_unsigned_int_table)
15947 (muscle_insert_short_table, muscle_insert_token_number_table)
15948 (muscle_insert_item_number_table): these.
15949 Adjust all callers.
15950 (prepare_tokens): Don't free `translations', since...
15951 * src/reader.h, src/reader.c (grammar_free): do it.
15952 Move to...
15953 * src/gram.h, src/gram.c (grammar_free): here.
15954 * data/bison.simple, data/bison.c++: b4_token_number_max is now
15955 b4_translate_max.
15956
15957 2002-05-05 Akim Demaille <akim@epita.fr>
15958
15959 * src/output.c (output_unsigned_int_table): New.
15960 (prepare_rules): `i' is unsigned.
15961 `prhs', `rline', `r2' are unsigned int.
15962 Rename muscle `rhs_number_max' as `rhs_max'.
15963 Output muscles `prhs_max', `rline_max', and `r2_max'.
15964 Free rline and r1.
15965 * data/bison.simple, data/bison.c++: Adjust to use these muscles
15966 to compute types instead of constant types.
15967 * tests/regression.at (Web2c Actions): Adjust.
15968
15969 2002-05-04 Akim Demaille <akim@epita.fr>
15970
15971 * src/symtab.h (SALIAS, SUNDEF): Rename as...
15972 (USER_NUMBER_ALIAS, USER_NUMBER_UNDEFINED): these.
15973 Adjust dependencies.
15974 * src/output.c (token_definitions_output): Be sure not to output a
15975 `#define 'a'' when fed with `%token 'a' "a"'.
15976 * tests/regression.at (Token definitions): New.
15977
15978 2002-05-03 Paul Eggert <eggert@twinsun.com>
15979
15980 * data/bison.simple (b4_token_defines): Also define YYTOKENTYPE
15981 for K&R C.
15982
15983 2002-05-03 gettextize <bug-gnu-gettext@gnu.org>
15984
15985 * Makefile.am (SUBDIRS): Remove intl.
15986 (EXTRA_DIST): Add config/config.rpath.
15987
15988 2002-05-03 Akim Demaille <akim@epita.fr>
15989
15990 * data/bison.simple (m4_if): Don't output empty enums.
15991 And actually, output valid enum definitions :(.
15992
15993 2002-05-03 Akim Demaille <akim@epita.fr>
15994
15995 * configure.bat: Remove, completely obsolete.
15996 * Makefile.am (EXTRA_DIST): Adjust.
15997 Don't distribute config.rpath...
15998 * config/Makefile.am (EXTRA_DIST): Do it.
15999
16000 2002-05-03 Akim Demaille <akim@epita.fr>
16001
16002 * configure.in (GETTEXT_VERSION): New.
16003 Suggested by Bruno Haible for the forthcoming Gettext 0.10.3.
16004
16005 2002-05-03 Akim Demaille <akim@epita.fr>
16006
16007 * data/bison.simple (b4_token_enum): New.
16008 (b4_token_defines): Use it to output tokens both as #define and
16009 enums.
16010 Suggested by Paul Eggert.
16011 * src/output.c (token_definitions_output): Don't output spurious
16012 white spaces.
16013
16014 2002-05-03 Akim Demaille <akim@epita.fr>
16015
16016 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
16017
16018 2002-05-02 Robert Anisko <robert@lrde.epita.fr>
16019
16020 * data/bison.c++: Adapt expansion of $s and @s to the C++ parser.
16021 Update the stack class, give a try to deque as the default container.
16022
16023 2002-05-02 Akim Demaille <akim@epita.fr>
16024
16025 * data/bison.simple (yyparse): Do not implement @$ = @1.
16026 (YYLLOC_DEFAULT): Adjust to do it.
16027 * doc/bison.texinfo (Location Default Action): Fix.
16028
16029 2002-05-02 Akim Demaille <akim@epita.fr>
16030
16031 * src/reader.c (parse_braces): Merge into...
16032 (parse_action): this.
16033
16034 2002-05-02 Akim Demaille <akim@epita.fr>
16035
16036 * configure.in (ALL_LINGUAS): Remove.
16037 * po/LINGUAS, hr.po: New.
16038
16039 2002-05-02 Akim Demaille <akim@epita.fr>
16040
16041 Remove the so called hairy (semantic) parsers.
16042
16043 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove.
16044 * src/gram.h, src/gram.c (semantic_parser): Remove.
16045 (rule_t): Remove the guard and guard_line members.
16046 * src/lex.h (token_t): remove tok_guard.
16047 * src/options.c (option_table): Remove %guard and %semantic_parser
16048 support.
16049 * src/output.c, src/output.h (guards_output): Remove.
16050 (prepare): Adjust.
16051 (token_definitions_output): Don't output the `T'
16052 tokens (???).
16053 (output_skeleton): Don't output the guards.
16054 * src/files.c, src/files.c (attrsfile): Remove.
16055 * src/reader.c (symbol_list): Remove the guard and guard_line
16056 members.
16057 Adjust dependencies.
16058 (parse_guard): Remove.
16059 * data/bison.hairy: Remove.
16060 * doc/bison.texinfo (Environment Variables): Remove occurrences of
16061 BISON_HAIRY.
16062
16063 2002-05-02 Akim Demaille <akim@epita.fr>
16064
16065 * src/reader.c (copy_at, copy_dollarm parse_braces, parse_action)
16066 (parse_guard): Rename the formal argument `stack_offset' as
16067 `rule_length', which is more readable.
16068 Adjust callers.
16069 (copy_at, copy_dollar): Instead of outputting the hard coded
16070 values of $$, $n and so forth, output invocation to b4_lhs_value,
16071 b4_lhs_location, b4_rhs_value, and b4_rhs_location.
16072 Note: this patch partially drops `semantic-parser' support: it
16073 always does `rule_length - n', where semantic parsers ought to
16074 always use `-n'.
16075 * data/bison.simple, data/bison.c++ (b4_lhs_value)
16076 (b4_lhs_location, b4_rhs_value, and b4_rhs_location: New.
16077
16078 2002-05-02 Akim Demaille <akim@epita.fr>
16079
16080 * configure.in (AC_INIT): Bump to 1.49b.
16081 (AM_INIT_AUTOMAKE): Short invocation.
16082
16083 2002-05-02 Akim Demaille <akim@epita.fr>
16084
16085 Version 1.49a.
16086
16087 2002-05-01 Akim Demaille <akim@epita.fr>
16088
16089 * src/skeleton.h: Remove.
16090
16091 2002-05-01 Akim Demaille <akim@epita.fr>
16092
16093 * src/skeleton.h: Fix the #endif.
16094 Reported by Magnus Fromreide.
16095
16096 2002-04-26 Paul Eggert <eggert@twinsun.com>
16097
16098 * data/bison.simple (YYSTYPE_IS_TRIVIAL, YYLTYPE_IS_TRIVIAL):
16099 Define if we define YYSTYPE and YYLTYPE, respectively.
16100 (YYCOPY): Fix [] quoting problem in the non-GCC case.
16101
16102 2002-04-25 Robert Anisko <robert@lrde.epita.fr>
16103
16104 * src/scan-skel.l: Postprocess quadrigraphs.
16105
16106 * src/reader.c (copy_character): New function, used to output
16107 single characters while replacing `[' and `]' with quadrigraphs, to
16108 avoid troubles with M4 quotes.
16109 (copy_comment): Output characters with copy_character.
16110 (read_additionnal_code): Likewise.
16111 (copy_string2): Likewise.
16112 (copy_definition): Likewise.
16113
16114 * tests/calc.at: Exercise M4 quoting.
16115
16116 2002-04-25 Akim Demaille <akim@epita.fr>
16117
16118 * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
16119 between `!' and the command.
16120 Reported by Paul Eggert.
16121
16122 2002-04-24 Robert Anisko <robert@lrde.epita.fr>
16123
16124 * tests/calc.at: Exercise prologue splitting.
16125
16126 * data/bison.simple, data/bison.c++: Use `b4_pre_prologue' and
16127 `b4_post_prologue' instead of `b4_prologue'.
16128
16129 * src/output.c (prepare): Add the `pre_prologue' and `post_prologue'
16130 muscles.
16131 (output): Free pre_prologue_obstack and post_prologue_obstack.
16132 * src/files.h, src/files.c (attrs_obstack): Remove.
16133 (pre_prologue_obstack, post_prologue_obstack): New.
16134 * src/reader.c (copy_definition): Add a parameter to specify the
16135 obstack to fill, instead of using attrs_obstack unconditionally.
16136 (read_declarations): Pass pre_prologue_obstack to copy_definition if
16137 `%union' has not yet been seen, pass post_prologue_obstack otherwise.
16138
16139 2002-04-23 Paul Eggert <eggert@twinsun.com>
16140
16141 * data/bison.simple: Remove unnecessary commentary and white
16142 space differences from 1_29-branch.
16143 Depend on YYERROR_VERBOSE, not defined (YYERROR_VERBOSE).
16144
16145 (union yyalloc, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYCOPY,
16146 YYSTACK_RELOCATE): Do not define if yyoverflow is defined, or
16147 if this is a C++ parser and YYSTYPE or YYLTYPE has nontrivial
16148 constructors or destructors.
16149
16150 (yyparse) [! defined YYSTACK_RELOCATE]: Do not relocate the stack.
16151
16152 2002-04-23 Akim Demaille <akim@epita.fr>
16153
16154 * tests/sets.at (AT_EXTRACT_SETS): Don't use 8 char long sed labels.
16155 * tests/synclines.at (AT_TEST_SYNCLINE): Be robust to GCC's
16156 location with columns.
16157 * tests/conflicts.at (%nonassoc and eof): Don't use `error.h'.
16158 All reported by Paul Eggert.
16159
16160 2002-04-22 Akim Demaille <akim@epita.fr>
16161
16162 * src/reduce.c (dump_grammar): Move to...
16163 * src/gram.h, src/gram.c (grammar_dump): here.
16164 Be sure to separate long item numbers.
16165 Don't read the members of a rule's prec if its nil.
16166
16167 2002-04-22 Akim Demaille <akim@epita.fr>
16168
16169 * src/output.c (table_size, table_grow): New.
16170 (MAXTABLE): Remove, replace uses with table_size.
16171 (pack_vector): Instead of dying when the table is too big, grow it.
16172
16173 2002-04-22 Akim Demaille <akim@epita.fr>
16174
16175 * data/bison.simple (yyr1): Its type is that of a token number.
16176 * data/bison.c++ (r1_): Likewise.
16177 * tests/regression.at (Web2c Actions): Adjust.
16178
16179 2002-04-22 Akim Demaille <akim@epita.fr>
16180
16181 * src/reader.c (token_translations_init): 256 is now the default
16182 value for the error token, i.e., it will be assigned another
16183 number if the user assigned 256 to one of her tokens.
16184 (reader): Don't force 256 to error.
16185 * doc/bison.texinfo (Symbols): Adjust.
16186 * tests/torture.at (AT_DATA_HORIZONTAL_GRAMMAR)
16187 (AT_DATA_TRIANGULAR_GRAMMAR): Number the tokens as 1, 2, 3
16188 etc. instead of 10, 20, 30 (which was used to `jump' over error
16189 (256) and undefined (2)).
16190
16191 2002-04-22 Akim Demaille <akim@epita.fr>
16192
16193 Propagate more token_number_t.
16194
16195 * src/gram.h (token_number_as_item_number)
16196 (item_number_as_token_number): New.
16197 * src/output.c (GENERATE_OUTPUT_TABLE): New.
16198 Use it to create output_item_number_table and
16199 output_token_number_table.
16200 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
16201 * src/lex.c, src/nullable.c, src/output.c, src/print.c,
16202 * src/print_graph.c, src/reader.c, src/reduce.c, src/state.h,
16203 * src/symtab.c, src/symtab.h: Use token_number_t instead of shorts.
16204
16205 2002-04-22 Akim Demaille <akim@epita.fr>
16206
16207 * src/output.h, src/output.c (get_lines_number): Remove.
16208
16209 2002-04-19 Akim Demaille <akim@epita.fr>
16210
16211 * doc/bison.texinfo (Actions): Make clear that `|' is not the same
16212 as Lex/Flex'.
16213 (Debugging): More details about enabling the debugging features.
16214 (Table of Symbols): Describe $$, $n, @$, and @n.
16215 Suggested by Tim Josling.
16216
16217 2002-04-19 Akim Demaille <akim@epita.fr>
16218
16219 * doc/bison.texinfo: Remove the uses of the obsolete @refill.
16220
16221 2002-04-10 Akim Demaille <akim@epita.fr>
16222
16223 * src/system.h: Rely on HAVE_LIMITS_H.
16224 Suggested by Paul Eggert.
16225
16226 2002-04-09 Akim Demaille <akim@epita.fr>
16227
16228 * tests/calc.at (_AT_CHECK_CALC_ERROR): Receive as argument the
16229 full stderr, and strip it according to the bison options, instead
16230 of composing the error message from different bits.
16231 This makes it easier to check for several error messages.
16232 Adjust all the invocations.
16233 Add an invocation exercising the error token.
16234 Add an invocation demonstrating a stupid error message.
16235 (_AT_DATA_CALC_Y): Follow the GCS: initial column is 1, not 0.
16236 Adjust the tests.
16237 Error message are for stderr, not stdout.
16238
16239 2002-04-09 Akim Demaille <akim@epita.fr>
16240
16241 * src/gram.h, src/gram.c (error_token_number): Remove, use
16242 errtoken->number.
16243 * src/reader.c (reader): Don't specify the user token number (2)
16244 for $undefined, as it uselessly prevents using it.
16245 * src/gram.h (token_number_t): Move to...
16246 * src/symtab.h: here.
16247 (state_t.number): Is a token_number_t.
16248 * src/print.c, src/reader.c: Use undeftoken->number instead of
16249 hard coded 2.
16250 (Even though this 2 is not the same as above: the number of the
16251 undeftoken remains being 2, it is its user token number which
16252 might not be 2).
16253 * src/output.c (prepare_tokens): Rename the `maxtok' muscle with
16254 `user_token_number_max'.
16255 Output `undef_token_number'.
16256 * data/bison.simple, data/bison.c++: Use them.
16257 Be sure to map invalid yylex return values to
16258 `undef_token_number'. This saves us from gratuitous SEGV.
16259
16260 * tests/conflicts.at (Solved SR Conflicts)
16261 (Unresolved SR Conflicts): Adjust.
16262 * tests/regression.at (Web2c Actions): Adjust.
16263
16264 2002-04-08 Akim Demaille <akim@epita.fr>
16265
16266 * data/bison.c++: s/b4_item_number_max/b4_rhs_number_max/.
16267 Adding #line.
16268 Remove the duplicate `typedefs'.
16269 (RhsNumberType): Fix the declaration and various other typos.
16270 Use __ofile__.
16271 * data/bison.simple: Use __ofile__.
16272 * src/scan-skel.l: Handle __ofile__.
16273
16274 2002-04-08 Akim Demaille <akim@epita.fr>
16275
16276 * src/gram.h (item_number_t): New, the type of item numbers in
16277 RITEM. Note that it must be able to code symbol numbers as
16278 positive number, and the negation of rule numbers as negative
16279 numbers.
16280 Adjust all dependencies (pretty many).
16281 * src/reduce.c (rule): Remove this `short *' pointer: use
16282 item_number_t.
16283 * src/system.h (MINSHORT, MAXSHORT): Remove.
16284 Include `limits.h'.
16285 Adjust dependencies to using SHRT_MAX and SHRT_MIN.
16286 (shortcpy): Remove.
16287 (MAXTABLE): Move to...
16288 * src/output.c (MAXTABLE): here.
16289 (prepare_rules): Use output_int_table to output rhs.
16290 * data/bison.simple, data/bison.c++: Adjust.
16291 * tests/torture.at (Big triangle): Move the limit from 254 to
16292 500.
16293 * tests/regression.at (Web2c Actions): Ajust.
16294
16295 Trying with bigger grammars shows various phenomena: at 3000 (28Mb
16296 of grammar file) bison is killed by my system, at 2000 (12Mb) bison
16297 passes, but produces negative #line number, once fixed, GCC is
16298 killed while compiling 14Mb, at 1500 (6.7 Mb of grammar, 8.2Mb of
16299 C), it passes.
16300 * src/state.h (state_h): Code input lines on ints, not shorts.
16301
16302 2002-04-08 Akim Demaille <akim@epita.fr>
16303
16304 * src/reduce.c (reduce_grammar): First reduce the nonterminals,
16305 and then the grammar.
16306
16307 2002-04-08 Akim Demaille <akim@epita.fr>
16308
16309 * src/system.h: No longer using strndup.
16310
16311 2002-04-07 Akim Demaille <akim@epita.fr>
16312
16313 * src/muscle_tab.h (MUSCLE_INSERT_LONG_INT): New.
16314 * src/output.c (output_table_data): Return the longest number.
16315 (prepare_tokens): Output `token_number_max').
16316 * data/bison.simple, data/bison.c++ (b4_sint_type, b4_uint_type):
16317 New.
16318 Use them to define yy_token_number_type/TokenNumberType.
16319 Use this type for yytranslate.
16320 * tests/torture.at (Big triangle): Push the limit from 124 to
16321 253.
16322 * tests/regression.at (Web2c Actions): Adjust.
16323
16324 2002-04-07 Akim Demaille <akim@epita.fr>
16325
16326 * tests/torture.at (Big triangle): New.
16327 (GNU AWK Grammar, GNU Cim Grammar): Move to...
16328 * tests/existing.at: here.
16329
16330 2002-04-07 Akim Demaille <akim@epita.fr>
16331
16332 * src/gram.h, src/gram.c (nitems): Remove, it is an alias of
16333 nritems.
16334 Adjust dependencies.
16335
16336 2002-04-07 Akim Demaille <akim@epita.fr>
16337
16338 * src/reader.c: Normalize increments to prefix form.
16339
16340 2002-04-07 Akim Demaille <akim@epita.fr>
16341
16342 * src/reader.c, symtab.c: Remove debugging code.
16343
16344 2002-04-07 Akim Demaille <akim@epita.fr>
16345
16346 Rename all the `bucket's as `symbol_t'.
16347
16348 * src/gram.c, src/gram.h, src/lex.c, src/lex.h, src/output.c,
16349 * src/reader.c, src/reader.h, src/reduce.c, src/state.h,
16350 * src/symtab.c, src/symtab.h (bucket): Rename as...
16351 (symbol_t): this.
16352 (symbol_list_new, bucket_check_defined, bucket_make_alias)
16353 (bucket_check_alias_consistence, bucket_pack, bucket_translation)
16354 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
16355 (buckets_new, buckets_free, buckets_do): Rename as...
16356 (symbol_list_new, symbol_check_defined, symbol_make_alias)
16357 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
16358 (symbol_new, symbol_free, hash_compare_symbol_t, hash_symbol_t)
16359 (symbols_new, symbols_free, symbols_do): these.
16360
16361 2002-04-07 Akim Demaille <akim@epita.fr>
16362
16363 Use lib/hash for the symbol table.
16364
16365 * src/gram.c (ntokens): Initialize to 1, to reserve a slot for
16366 EOF.
16367 * src/lex.c (lex): Set the `number' member of new terminals.
16368 * src/reader.c (bucket_check_defined, bucket_make_alias)
16369 (bucket_check_alias_consistence, bucket_translation): New.
16370 (reader, grammar_free, readgram, token_translations_init)
16371 (packsymbols): Adjust.
16372 (reader): Number the predefined tokens.
16373 * src/reduce.c (inaccessable_symbols): Just use hard coded numbers
16374 for predefined tokens.
16375 * src/symtab.h (bucket): Remove all the hash table related
16376 members.
16377 * src/symtab.c (symtab): Replace by...
16378 (bucket_table): this.
16379 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
16380 (buckets_new, buckets_do): New.
16381
16382 2002-04-07 Akim Demaille <akim@epita.fr>
16383
16384 * src/gram.c (nitems, nrules, nsyms, ntokens, nvars, nritems)
16385 (start_symbol, max_user_token_number, semantic_parser)
16386 (error_token_number): Initialize.
16387 * src/reader.c (grammar, start_flag, startval, typed, lastprec):
16388 Initialize.
16389 (reader): Don't.
16390 (errtoken, eoftoken, undeftoken, axiom): Extern.
16391
16392 2002-04-07 Akim Demaille <akim@epita.fr>
16393
16394 * src/gram.h (rule_s): prec and precsym are now pointers
16395 to the bucket giving the priority/associativity.
16396 Member `associativity' removed: useless.
16397 * src/reduce.c, src/conflicts.c: Adjust.
16398
16399 2002-04-07 Akim Demaille <akim@epita.fr>
16400
16401 * src/lalr.c, src/LR0.c, src/closure.c, src/gram.c, src/reduce.c:
16402 Properly escape the symbols' TAG when outputting them.
16403
16404 2002-04-07 Akim Demaille <akim@epita.fr>
16405
16406 * src/lalr.h (LA): Is a bitsetv, not bitset*.
16407
16408 2002-04-07 Akim Demaille <akim@epita.fr>
16409
16410 * src/lalr.h, src/lalr.c (LAruleno): Replace with...
16411 (LArule): this, which is an array to rule_t*.
16412 * src/print.c, src/conflicts.c: Adjust.
16413
16414 2002-04-07 Akim Demaille <akim@epita.fr>
16415
16416 * src/gram.h (rule_t): Rename `number' as `user_number'.
16417 `number' is a new member.
16418 Adjust dependencies.
16419 * src/reduce.c (reduce_grammar_tables): Renumber rule_t.number.
16420
16421 2002-04-07 Akim Demaille <akim@epita.fr>
16422
16423 As a result of the previous patch, it is no longer needed
16424 to reorder ritem itself.
16425
16426 * src/reduce.c (reduce_grammar_tables): Don't sort RITEM.
16427
16428 2002-04-07 Akim Demaille <akim@epita.fr>
16429
16430 Be sure never to walk through RITEMS, but use only data related to
16431 the rules themselves. RITEMS should be banished.
16432
16433 * src/output.c (output_token_translations): Rename as...
16434 (prepare_tokens): this.
16435 In addition to `translate', prepare the muscles `tname' and
16436 `toknum', which were handled by...
16437 (output_rule_data): this.
16438 Remove, and move the remainder of its outputs into...
16439 (prepare_rules): this new routines, which also merges content from
16440 (output_gram): this.
16441 (prepare_rules): Be sure never to walk through RITEMS.
16442 (output_stos): Rename as...
16443 (prepare_stos): this.
16444 (output): Always invoke prepare_states, after all, just don't use it
16445 in the output if you don't need it.
16446
16447 2002-04-07 Akim Demaille <akim@epita.fr>
16448
16449 * src/LR0.c (new_state): Display `nstates' as the name of the
16450 newly created state.
16451 Adjust to initialize first_state and last_state if needed.
16452 Be sure to distinguish the initial from the final state.
16453 (new_states): Create the itemset of the initial state, and use
16454 new_state.
16455 * src/closure.c (closure): Now that the initial state has its
16456 items properly set, there is no need for a special case when
16457 creating `ruleset'.
16458
16459 As a result, now the rule 0, reducing to $axiom, is visible in the
16460 outputs. Adjust the test suite.
16461
16462 * tests/conflicts.at (Solved SR Conflicts)
16463 (Unresolved SR Conflicts): Adjust.
16464 * tests/regression.at (Web2c Report, Rule Line Numbers): Idem.
16465 * tests/conflicts.at (S/R in initial): New.
16466
16467 2002-04-07 Akim Demaille <akim@epita.fr>
16468
16469 * src/LR0.c (allocate_itemsets): Don't loop over ritem: loop over
16470 the RHS of the rules.
16471 * src/output.c (output_gram): Likewise.
16472
16473 2002-04-07 Akim Demaille <akim@epita.fr>
16474
16475 * src/gram.h (rule_t): `lhs' is now a pointer to the symbol's
16476 bucket.
16477 Adjust all dependencies.
16478 * src/reduce.c (nonterminals_reduce): Don't forget to renumber the
16479 `number' of the buckets too.
16480 * src/gram.h: Include `symtab.h'.
16481 (associativity): Move to...
16482 * src/symtab.h: here.
16483 No longer include `gram.h'.
16484
16485 2002-04-07 Akim Demaille <akim@epita.fr>
16486
16487 * src/gram.h, src/gram.c (rules_rhs_length): New.
16488 (ritem_longest_rhs): Use it.
16489 * src/gram.h (rule_t): `number' is a new member.
16490 * src/reader.c (packgram): Set it.
16491 * src/reduce.c (reduce_grammar_tables): Move the useless rules at
16492 the end of `rules', and count them out of `nrules'.
16493 (reduce_output, dump_grammar): Adjust.
16494 * src/print.c (print_grammar): It is no longer needed to check for
16495 the usefulness of a rule, as useless rules are beyond `nrules + 1'.
16496 * tests/reduce.at (Reduced Automaton): New test.
16497
16498 2002-04-07 Akim Demaille <akim@epita.fr>
16499
16500 * src/reduce.c (inaccessable_symbols): Fix a buglet: because of a
16501 lacking `+ 1' to nrules, Bison reported as useless a token if it
16502 was used solely to set the precedence of the last rule...
16503
16504 2002-04-07 Akim Demaille <akim@epita.fr>
16505
16506 * data/bison.c++, data/bison.simple: Don't output the current file
16507 name in #line, to avoid useless diffs between two identical
16508 outputs under different names.
16509
16510 2002-04-07 Akim Demaille <akim@epita.fr>
16511
16512 * src/closure.c, src/print.c, src/reader.c, src/reduce.c:
16513 Normalize loops to using `< nrules + 1', not `<= nrules'.
16514
16515 2002-04-07 Akim Demaille <akim@epita.fr>
16516
16517 * TODO: Update.
16518
16519 2002-04-07 Akim Demaille <akim@epita.fr>
16520
16521 * src/output.c, src/reader.c, src/symtab.c, src/symtab.h: Rename
16522 bucket.value as bucket.number.
16523
16524 2002-04-07 Akim Demaille <akim@epita.fr>
16525
16526 * src/closure.c, src/derives.c, src/gram.h, src/lalr.c,
16527 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
16528 * src/reader.c, src/reduce.c: Let rule_t.rhs point directly to the
16529 RHS, instead of being an index in RITEMS.
16530
16531 2002-04-04 Paul Eggert <eggert@twinsun.com>
16532
16533 * doc/bison.texinfo: Update copyright date.
16534 (Rpcalc Lexer, Symbols, Token Decl): Don't assume ASCII.
16535 (Symbols): Warn about running Bison in one character set,
16536 but compiling and/or running in an incompatible one.
16537 Warn about character code 256, too.
16538
16539 2002-04-03 Paul Eggert <eggert@twinsun.com>
16540
16541 * src/bison.data (YYSTACK_ALLOC): Depend on whether
16542 YYERROR_VERBOSE is nonzero, not whether it is defined.
16543
16544 Merge changes from bison-1_29-branch.
16545
16546 2002-03-20 Paul Eggert <eggert@twinsun.com>
16547
16548 Merge fixes from Debian bison_1.34-1.diff.
16549
16550 * configure.in (AC_PREREQ): 2.53.
16551
16552 2002-03-20 Akim Demaille <akim@epita.fr>
16553
16554 * src/conflicts.c (log_resolution): Argument `resolution' is const.
16555
16556 2002-03-19 Paul Eggert <eggert@twinsun.com>
16557
16558 * src/bison.simple (YYCOPY): New macro.
16559 (YYSTACK_RELOCATE): Use it.
16560 Remove Type arg; no longer needed. All callers changed.
16561 (yymemcpy): Remove; no longer needed.
16562
16563 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
16564 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
16565
16566 2002-03-19 Akim Demaille <akim@epita.fr>
16567
16568 Test and fix the #line outputs.
16569
16570 * tests/atlocal.at (GCC): New.
16571 * tests/synclines.at (AT_TEST_SYNCLINE): New macro.
16572 (Prologue synch line, %union synch line, Postprologue synch line)
16573 (Action synch line, Epilogue synch line): New tests.
16574 * src/reader.c (parse_union_decl): Define the muscle stype_line.
16575 * data/bison.simple, data/bison.c++: Use it.
16576
16577 2002-03-19 Akim Demaille <akim@epita.fr>
16578
16579 * tests/regression.at (%nonassoc and eof, Unresolved SR Conflicts)
16580 (Solved SR Conflicts, %expect not enough, %expect right)
16581 (%expect too much): Move to...
16582 * tests/conflicts.at: this new file.
16583
16584 2002-03-19 Akim Demaille <akim@epita.fr>
16585
16586 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
16587 * data/bison.simple, data/bison.c++: Handle the `#define' part, so
16588 that we can move to enums for instance.
16589 * src/output.c (token_definitions_output): Output a list of
16590 `token-name, token-number' instead of the #define.
16591 (output_skeleton): Name this list `b4_tokens', not `b4_tokendefs'.
16592
16593 2002-03-14 Akim Demaille <akim@epita.fr>
16594
16595 Use Gettext 0.11.1.
16596
16597 2002-03-09 Robert Anisko <robert@lrde.epita.fr>
16598
16599 * data/bison.c++: Make the user able to add members to the generated
16600 parser by subclassing.
16601
16602 2002-03-05 Robert Anisko <robert@lrde.epita.fr>
16603
16604 * src/reader.c (read_additionnal_code): `c' should be an integer, not
16605 a character.
16606 Reported by Nicolas Tisserand and Nicolas Burrus.
16607
16608 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
16609
16610 * src/reader.c: Warn about lacking semi-colons, do not complain.
16611
16612 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
16613
16614 * data/bison.c++: Remove a debug line.
16615
16616 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
16617
16618 * data/bison.c++: Unmerge value as yylval and value as yyval. Unmerge
16619 location as yylloc and location as yyloc. Use YYLLOC_DEFAULT, and
16620 provide a default implementation.
16621
16622 2002-03-04 Akim Demaille <akim@epita.fr>
16623
16624 * tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
16625 * tests/output.at (AT_CHECK_OUTPUT): Likewise.
16626 * tests/headers.at (AT_TEST_CPP_GUARD_H): Ditto.
16627 * tests/semantic.at (Parsing Guards): Similarly.
16628 * src/reader.at (readgram): Complain if the last rule is not ended
16629 with a semi-colon.
16630
16631 2002-03-04 Akim Demaille <akim@epita.fr>
16632
16633 * src/warshall.h, src/warshall.c (bitmatrix_print): Move to...
16634 * src/closure.c: here.
16635 (set_firsts): Use bitsetv_reflexive_transitive_closure instead of
16636 RTC.
16637 * src/warshall.h, src/warshall.c: Remove.
16638 * tests/sets.at (Broken Closure): Adjust.
16639
16640 2002-03-04 Akim Demaille <akim@epita.fr>
16641
16642 * src/output.c (output_skeleton): tempdir is const.
16643 bytes_read is unused.
16644
16645 2002-03-04 Akim Demaille <akim@epita.fr>
16646
16647 * lib/bbitset.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
16648 * lib/bitsetv.h, lib/ebitset.c, lib/lbitset.c, lib/sbitset.c:
16649 Update.
16650 From Michael Hayes.
16651
16652 2002-03-04 Akim Demaille <akim@epita.fr>
16653
16654 * src/closure.c (closure): `r' is unused.
16655
16656 2002-03-04 Akim Demaille <akim@epita.fr>
16657
16658 * tests/sets.at (Broken Closure): Add the ending `;'.
16659 * src/reader.at (readgram): Complain if a rule is not ended with a
16660 semi-colon.
16661
16662 2002-03-04 Akim Demaille <akim@epita.fr>
16663
16664 * src/conflicts.c (set_conflicts): Use bitset_disjoint_p.
16665 (count_sr_conflicts): Use bitset_count.
16666 * src/reduce.c (inaccessable_symbols): Ditto.
16667 (bits_size): Remove.
16668 * src/warshall.h, src/warshall.c: Convert to bitsetv.
16669
16670 2002-03-04 Akim Demaille <akim@epita.fr>
16671
16672 * src/closure.c, src/conflicts.c, src/lalr.c, src/print.c,
16673 * src/reduce.c: Remove the `bitset_zero's following the
16674 `bitset_create's, as now it is performed by the latter.
16675
16676 2002-03-04 Akim Demaille <akim@epita.fr>
16677
16678 * lib/bitset.c, lib/bitset.h, lib/bitsetv.c, lib/bitsetv.h,
16679 * lib/ebitset.c, lib/ebitset.h, lib/lbitset.c, lib/lbitset.h,
16680 * lib/sbitset.c, lib/sbitset.h, lib/bbitset.h: Update from the
16681 latest sources from Michael.
16682
16683 2002-03-04 Akim Demaille <akim@epita.fr>
16684
16685 * src/output.c (output): Don't free the grammar.
16686 * src/reader.c (grammar_free): New.
16687 * src/main.c (main): Call it and don't free symtab here.
16688
16689 2002-03-04 Akim Demaille <akim@epita.fr>
16690
16691 * src/lex.c (parse_percent_token): Be sure to 0-end token_buffer
16692 before returning.
16693 Reported by Benoit Perrot.
16694
16695 2002-03-04 Akim Demaille <akim@epita.fr>
16696
16697 Use bitset operations when possible, not loops over bits.
16698
16699 * src/conflicts.c (set_conflicts, count_sr_conflicts): Use
16700 bitset_or.
16701 * src/print.c (print_reductions): Use bitset_and, bitset_andn.
16702 * src/reduce.c (useless_nonterminals): Formatting changes.
16703 * src/warshall.c (TC): Use bitset_or.
16704
16705 2002-03-04 Akim Demaille <akim@epita.fr>
16706
16707 * src/lalr.h, src/lalr.c (tokensetsize): Remove, unused.
16708 * src/system.h (BITS_PER_WORD, WORDSIZE, SETBIT, RESETBIT, BITISSET):
16709 Ditto.
16710
16711 2002-03-04 Akim Demaille <akim@epita.fr>
16712
16713 * src/lalr.c (F): Now a bitset*.
16714 Adjust all dependencies.
16715
16716 2002-03-04 Akim Demaille <akim@epita.fr>
16717
16718 * src/conflicts.c (shiftset, lookaheadset): Now bitset.
16719 Adjust all dependencies.
16720
16721 2002-03-04 Akim Demaille <akim@epita.fr>
16722
16723 * src/L0.c, src/LR0.h (nstates): Be size_t.
16724 Adjust comparisons (signed vs unsigned).
16725 * src/conflics.c, src/lalr.c, src/lalr.h, src/output.c (LA): Now a
16726 bitset*.
16727 Adjust all dependencies.
16728
16729 2002-03-04 Akim Demaille <akim@epita.fr>
16730
16731 * src/closure.c (firsts): Now, also a bitset.
16732 Adjust all dependencies.
16733 (varsetsize): Remove, now unused.
16734 * src/warshall.h, src/warshall.c: Now work on arrays of bitsets.
16735
16736 2002-03-04 Akim Demaille <akim@epita.fr>
16737
16738 * src/print.c: Convert to use bitset.h, not hand coded iterations
16739 over ints.
16740
16741 2002-03-04 Akim Demaille <akim@epita.fr>
16742
16743 * src/reduce.c: Convert to use bitset.h, not hand coded BSet.
16744
16745 2002-03-04 Akim Demaille <akim@epita.fr>
16746
16747 * src/closure.c (ruleset): Be a bitset.
16748 (rulesetsize): Remove.
16749
16750 2002-03-04 Akim Demaille <akim@epita.fr>
16751
16752 * lib/bitset-int.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
16753 * lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/lbitset.c,
16754 * lib/lbitset.h, lib/sbitset.c, lib/sbitset.h: New.
16755 * src/closure.c (fderives): Be an array of bitsets.
16756
16757 2002-02-28 Robert Anisko <robert@lrde.epita.fr>
16758
16759 * data/bison.c++: Merge the two generated headers. Insert a copyright
16760 notice in each output file.
16761
16762 2002-02-28 Akim Demaille <akim@epita.fr>
16763
16764 * data/bison.c++: Copy the prologue of bison.simple to fetch
16765 useful M4 definitions, such as b4_header_guard.
16766
16767 2002-02-25 Akim Demaille <akim@epita.fr>
16768
16769 * src/getargs.c (version): Give the name of the authors, and use a
16770 translator friendly scheme for the bgr
16771 copyright notice.
16772
16773 2002-02-25 Akim Demaille <akim@epita.fr>
16774
16775 * src/output.c (header_output): Remove, now handled completely via
16776 M4.
16777
16778 2002-02-25 Akim Demaille <akim@epita.fr>
16779
16780 * m4/m4.m4: New, from CVS Autoconf.
16781 * configure.in: Invoke it.
16782 * src/output.c (output_skeleton): Use its result instead of the
16783 hard coded name.
16784
16785 2002-02-25 Akim Demaille <akim@epita.fr>
16786
16787 * lib/tempname.c, lib/mkstemp.c, m4/mkstemp.m4: New, stolen from
16788 Fileutils 4.1.5.
16789 * configure.in: Invoke UTILS_FUNC_MKSTEMP.
16790 * src/output.c (output_skeleton): Use mkstemp to create a real
16791 temporary file.
16792 Move the filling of `skeleton' and its muscle to...
16793 (prepare): here.
16794 (output): Move the definition of the prologue muscle to...
16795 (prepare): here.
16796 * src/system.h (DEFAULT_TMPDIR): New.
16797
16798 2002-02-14 Paul Eggert <eggert@twinsun.com>
16799
16800 Remove the support for C++ namespace cleanliness; it was
16801 causing more problems than it was curing, since it didn't work
16802 properly on some nonstandard C++ compilers. This can wait
16803 for a proper C++ parser.
16804
16805 * NEWS: Document this.
16806 * doc/bison.texinfo (Bison Parser, Debugging): Remove special mention
16807 of C++, as it's treated like C now.
16808 * src/bison.simple (YYSTD): Remove.
16809 (YYSIZE_T, YYFPRINTF, YYPARSE_PARAM_ARG, YYPARSE_PARAM_DECL):
16810 Treat C++ just like Standard C instead of trying to support
16811 namespace cleanliness.
16812
16813 2002-02-14 Akim Demaille <akim@epita.fr>
16814
16815 * tests/regression.at (else): Adjust to Andreas' change.
16816
16817 2002-02-14 Akim Demaille <akim@epita.fr>
16818
16819 * lib/Makefile.am (EXTRA_DIST): Ship strnlen.c.
16820
16821 2002-02-13 Andreas Schwab <schwab@suse.de>
16822
16823 * src/output.c (output_rule_data): Don't output NULL, it might
16824 not be defined yet.
16825
16826 2002-02-11 Robert Anisko <robert@lrde.epita.fr>
16827
16828 * data/bison.c++ (YYDEBUG, YYERROR_VERBOSE): After the prologue.
16829 (Copyright notice): Update.
16830
16831 2002-02-11 Akim Demaille <akim@epita.fr>
16832
16833 * tests/regression.at (%nonassoc and eof): Don't include
16834 nonportable headers.
16835
16836 2002-02-08 Robert Anisko <robert@lrde.epita.fr>
16837
16838 * data/bison.c++: Correct error recovery. Make the user able to
16839 initialize the starting location.
16840
16841 2002-02-07 Akim Demaille <akim@epita.fr>
16842
16843 * tests/input.at: New.
16844
16845 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
16846
16847 * data/bison.c++: Replace some direct m4 expansions by constants. Be
16848 more consistent when naming methods and variables. Put preprocessor
16849 directives around tables only needed for debugging.
16850
16851 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
16852
16853 * data/bison.c++ (yy::b4_name::print_): New method, replaces yyprint in
16854 C++ parsers.
16855 (yy::b4_name::parse): Use print_.
16856
16857 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
16858
16859 * data/bison.c++ (yy::b4_name::parse): Error recovery is back.
16860
16861 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
16862
16863 * data/bison.c++ (yy::b4_name::error_): New method, replaces yyerror in
16864 C++ parsers.
16865 (yy::b4_name::parse): Build verbose error messages, and use error_.
16866
16867 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
16868
16869 * data/bison.c++: Fix m4 quoting in comments.
16870
16871 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
16872
16873 * data/bison.c++: Adjust the parser code. Fix some muscles that were
16874 not expanded by m4.
16875
16876 2002-02-05 Akim Demaille <akim@epita.fr>
16877
16878 * data/bison.c++: Adjust to the M4 back end.
16879 More is certainly needed.
16880
16881 2002-02-05 Akim Demaille <akim@epita.fr>
16882
16883 Give a try to M4 as a back end.
16884
16885 * lib/readpipe.c: New, from wdiff.
16886 * src/Makefile.am (DEFS): Define PKGDATADIR, not BISON_SIMPLE and
16887 BISON_HAIRY.
16888 * src/system.h (BISON_HAIRY, BISON_SIMPLE): Remove the DOS and VMS
16889 specific values. Now it is m4 that performs the lookup.
16890 * src/parse-skel.y: Remove.
16891 * src/muscle_tab.c, src/muscle_tab.h (muscles_m4_output): New.
16892 * src/output.c (actions_output, guards_output)
16893 (token_definitions_output): No longer keeps track of the output
16894 line number, hence remove the second argument.
16895 (guards_output): Check against the guard member of a rule, not the
16896 action member.
16897 Adjust callers.
16898 (output_skeleton): Don't look for the skeleton location, let m4 do
16899 that.
16900 Create `/tmp/muscles.m4'. This is temporary, a proper temporary
16901 file will be used.
16902 Invoke `m4' on m4sugar.m4, muscles.m4, and the skeleton.
16903 (prepare): Given that for the time being changesyntax is not
16904 usable in M4, rename the muscles using `-' to `_'.
16905 Define `defines_flag', `output_parser_name' and `output_header_name'.
16906 * src/output.h (actions_output, guards_output)
16907 (token_definitions_output): Adjust prototypes.
16908 * src/scan-skel.l: Instead of scanning the skeletons, it now
16909 processes the output of m4: `__oline__' and `#output'.
16910 * data/bison.simple: Adjust to be used by M4(sugar).
16911 * tests/Makefile.am: Use check_SCRIPTS to make sure `bison' is up
16912 to date.
16913 * tests/bison.in: Use the secrete envvar `BISON_PKGDATADIR'
16914 instead of the dead `BISON_SIMPLE' and `BISON_HAIRY'.
16915 * data/m4sugar/m4sugar.m4, data/m4sugar/version.m4: New,
16916 shamelessly stolen from CVS Autoconf.
16917
16918 2002-02-05 Akim Demaille <akim@epita.fr>
16919
16920 * lib/hash.c, lib/hash.h: Replace with Fileutils 4.1's version.
16921 * configure.in: Check for the declarations of free and malloc.
16922 * src/muscle_tab.c: Adjust.
16923
16924 2002-02-05 Akim Demaille <akim@epita.fr>
16925
16926 * src/muscle_tab.c (muscle_init): Don't default to NULL muscle
16927 which have no values.
16928
16929 2002-02-05 Akim Demaille <akim@epita.fr>
16930
16931 * src/bison.simple, src/bison.hairy, src/bison.c++: Move to...
16932 * data/: here.
16933
16934 2002-01-29 Paul Eggert <eggert@twinsun.com>
16935
16936 * src/bison.simple (YYSIZE_T): Do not define merely because
16937 YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
16938 On some platforms, <alloca.h> does not declare YYSTD (size_t).
16939
16940 2002-01-27 Akim Demaille <akim@epita.fr>
16941
16942 Fix `%nonassoc and eof'.
16943
16944 * src/state.c (errs_dup): Aaaah! The failure was due to bytes
16945 which were not properly copied! Replace
16946 memcpy (res->errs, src->errs, src->nerrs);
16947 with
16948 memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
16949 !!!
16950 * tests/regression.at (%nonassoc and eof): Adjust to newest
16951 Autotest: `.' is not in the PATH.
16952
16953 2002-01-27 Akim Demaille <akim@epita.fr>
16954
16955 * tests/sets.at (AT_EXTRACT_SETS): New.
16956 (Nullable): Use it.
16957 (Firsts): New.
16958
16959 2002-01-26 Akim Demaille <akim@epita.fr>
16960
16961 * tests/actions.at, tests/calc.at, tests/headers.at,
16962 * tests/torture.at: Adjust to the newest Autotest which no longer
16963 forces `.' in the PATH.
16964
16965 2002-01-25 Akim Demaille <akim@epita.fr>
16966
16967 * tests/regression.at (%nonassoc and eof): New.
16968 Suggested by Robert Anisko.
16969
16970 2002-01-24 Akim Demaille <akim@epita.fr>
16971
16972 Bison dumps core when trying to complain about broken input files.
16973 Reported by Cris van Pelt.
16974
16975 * src/lex.c (parse_percent_token): Be sure to set token_buffer.
16976 * tests/regression.at (Invalid input: 1, Invalid input: 2): Merge
16977 into...
16978 (Invalid inputs): Strengthen: exercise parse_percent_token.
16979
16980 2002-01-24 Robert Anisko <robert.anisko@epita.fr>
16981
16982 * src/Makefile.am: Add bison.c++.
16983 * src/bison.c++: New skeleton.
16984
16985 2002-01-21 Paolo Bonzini <bonzini@gnu.org>
16986
16987 * po/it.po: New.
16988
16989 2002-01-21 Kees Zeelenberg <kzlg@users.sourceforge.net>
16990
16991 * src/files.c (skeleton_find) [MSDOS]: Fix cp definition.
16992
16993 2002-01-20 Marc Autret <marc@gnu.org>
16994
16995 * src/files.c (compute_output_file_names): Fix
16996
16997 2002-01-20 Marc Autret <marc@gnu.org>
16998
16999 * tests/output.at: New test.
17000 * src/files.c (compute_base_names): Don't map extensions when
17001 the YACC flag is set, use defaults.
17002 Reported by Evgeny Stambulchik.
17003
17004 2002-01-20 Marc Autret <marc@gnu.org>
17005
17006 * src/system.h: Need to define __attribute__ away for non-GCC
17007 compilers as well (i.e., the vendor C compiler).
17008 Suggested by Albert Chin-A-Young.
17009
17010 2002-01-11 Tim Van Holder <tim.van.holder@pandora.be>
17011
17012 * lib/hash.h, lib/hash.c: Renamed __P to PARAMS and used the
17013 canonical definition.
17014 * src/system.h: Use the canonical definition for PARAMS (avoids
17015 a conflict with the macro from lib/hash.h).
17016
17017 2002-01-11 Akim Demaille <akim@epita.fr>
17018
17019 * configure.in: Use AC_FUNC_STRNLEN.
17020 Fixes the failures observed on AIX 4.3 by H.Merijn Brand.
17021
17022 2002-01-09 Akim Demaille <akim@epita.fr>
17023
17024 * src/files.c, src/files.h (output_infix): New.
17025 (tab_extension): Remove.
17026 (compute_base_names): Compute the former, drop the latter.
17027 * src/output.c (prepare): Insert the muscles `output-infix', and
17028 `output-suffix'.
17029 * src/parse-skel.y (string, string.1): New.
17030 (section.header): Use it.
17031 (section.yacc): Remove.
17032 (prefix): Remove too.
17033 * src/scan-skel.l: Adjust.
17034 * src/bison.simple, src/bison.hairy: Adjust.
17035
17036 2002-01-09 Akim Demaille <akim@epita.fr>
17037
17038 * configure.in (WERROR_CFLAGS): Compute it.
17039 * src/Makefile.am (CFLAGS): Pass it.
17040 * tests/atlocal.in (CFLAGS): Idem.
17041 * src/files.c: Fix a few warnings.
17042 (get_extension_index): Remove, unused.
17043
17044 2002-01-08 Akim Demaille <akim@epita.fr>
17045
17046 * src/getargs.c (AS_FILE_NAME): New.
17047 (getargs): Use it to convert DOSish file names.
17048 * src/files.c (base_name): Rename as full_base_name to avoid
17049 clashes with `base_name ()'.
17050 (filename_split): New.
17051 (compute_base_names): N-th rewrite, using filename_split.
17052
17053 2002-01-08 Akim Demaille <akim@epita.fr>
17054
17055 * lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
17056 New, stolen from the Fileutils 4.1.
17057 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
17058 * configure.in: Check for the presence of memrchr, and of its
17059 prototype.
17060
17061 2002-01-07 Tim Van Holder <tim.van.holder@pandora.be>
17062
17063 * lib/hash.h (__P): Added definition for this macro.
17064 * src/Makefile.am: Add parse-skel.c and scan-skel.c to
17065 BUILT_SOURCES, to ensure they are generated first.
17066 * src/parse-skel.y: Use YYERROR_VERBOSE instead of
17067 %error-verbose to allow bootstrapping with bison 1.30x.
17068
17069 2002-01-06 Akim Demaille <akim@epita.fr>
17070
17071 * src/reader.c (parse_braces): Don't fetch the next char, the
17072 convention is to fetch on entry.
17073 * tests/torture.at (GNU Cim Grammar): Reintroduce their weird
17074 'switch' without a following semicolon.
17075 * tests/regression.at (braces parsing): New.
17076
17077 2002-01-06 Akim Demaille <akim@epita.fr>
17078
17079 Bison is dead wrong in its RR conflict reports.
17080
17081 * tests/torture.at (GNU Cim Grammar): New.
17082 * src/conflicts.c (count_rr_conflicts): Fix.
17083
17084 2002-01-06 Akim Demaille <akim@epita.fr>
17085
17086 Creating package.m4 from configure.ac causes too many problems.
17087
17088 * tests/Makefile.am (package.m4): Create it by hand,
17089 AC_CONFIG_TESTDIR no longer does in the most recent CVS Autoconf.
17090
17091 2002-01-06 Akim Demaille <akim@epita.fr>
17092
17093 * src/Makefile.am (bison_SOURCES): Add parse-skel.h and
17094 skeleton.h.
17095
17096 2002-01-04 Paul Eggert <eggert@twinsun.com>
17097
17098 * doc/bison.texinfo (Debugging):
17099 Remove YYSTDERR; it's no longer defined or used.
17100 Also, s/cstdio.h/cstdio/.
17101
17102 2002-01-03 Akim Demaille <akim@epita.fr>
17103
17104 * tests/bison.in, tests/atlocal.in: Adjust to CVS Autoconf.
17105
17106 2002-01-03 Akim Demaille <akim@epita.fr>
17107
17108 * src/parse-skel.y (process_skeleton): Don't bind the parser's
17109 tracing code to --trace, wait for a better --trace option, with
17110 args.
17111
17112 2002-01-03 Akim Demaille <akim@epita.fr>
17113
17114 * src/bison.simple (YYSTDERR): Remove, replace `stderr'.
17115 The ISO C++ standard is extremely clear about it: stderr is
17116 considered a macro, not a regular symbol (see table 94 `Header
17117 <cstdio> synopsis', [lib.c.files] 27.8.2 C Library files).
17118 Therefore std:: does not apply to it. It still does with fprintf.
17119 Also, s/cstdio.h/cstdio/.
17120
17121 2002-01-03 Akim Demaille <akim@epita.fr>
17122
17123 * lib/quotearg.c: Use `#include "..."' instead of `#include <...>'
17124 for non system headers.
17125
17126 2002-01-02 Akim Demaille <akim@epita.fr>
17127
17128 Equip the skeleton chain with location tracking, runtime trace,
17129 pure parser and scanner.
17130
17131 * src/parse-skel.y: Request a pure parser, locations, and prefix
17132 renaming.
17133 (%union): Having several members with the same type does not help
17134 type mismatches, simplify.
17135 (YYPRINT, yyprint): New.
17136 (yyerror): ``Rename'' (there is a #define yyerror skel_error) as...
17137 (skel_error): this.
17138 Handle locations.
17139 * src/scan-skel.l: Adjust to these changes.
17140 * src/skeleton.h (LOCATION_RESET, LOCATION_LINES, LOCATION_STEP)
17141 (LOCATION_PRINT, skel_control_t): New.
17142
17143 2001-12-30 Akim Demaille <akim@epita.fr>
17144
17145 * src/parse-skel.y: Get rid of the shift/reduce conflict:
17146 replace `gb' with BLANKS.
17147 * src/scan-skel.l: Adjust.
17148
17149 2001-12-30 Akim Demaille <akim@epita.fr>
17150
17151 * src/system.h: We don't need nor want bcopy.
17152 Throw away MS-DOS crap: we don't need getpid.
17153 * configure.in: We don't need strndup. It was even causing
17154 problems: because Flex includes the headers *before* us,
17155 _GNU_SOURCE is not defined by config.h, and therefore strndup was
17156 not visible.
17157 * lib/xstrndup.c: New.
17158 * src/scan-skel.l: Use it.
17159 Be sure to initialize yylval.muscle member when scanning a MUSCLE.
17160 * src/parse-skel.y: Use %directives instead of #defines.
17161
17162 2001-12-30 Akim Demaille <akim@epita.fr>
17163
17164 * src/skeleton.h: New.
17165 * src/output.c (output_parser, output_master_parser): Remove, dead
17166 code.
17167 * src/output.h (get_lines_number, actions_output, guards_output)
17168 (token_definitions_output): Prototype them.
17169 * src/parse-skel.y: Add the license notice.
17170 Include output.h and skeleton.h.
17171 (process_skeleton): Returns void, and takes a single parameter.
17172 * src/scan-skel.l: Add the license notice.
17173 Include skeleton.h.
17174 Don't use %option yylineno: it seems that then Flex imagines
17175 REJECT has been used, and therefore it won't reallocate its
17176 buffers (which makes no other sense to me than a bug). It results
17177 in warnings for `unused: yy_flex_realloc'.
17178
17179 2001-12-30 Robert Anisko <robert.anisko@epita.fr>
17180
17181 * src/muscle_tab.h (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
17182 (MUSCLE_INSERT_PREFIX): ...to there.
17183 * src/output.c (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
17184 (MUSCLE_INSERT_PREFIX): Move from here...
17185
17186 * src/bison.hairy: Add a section directive. Put braces around muscle
17187 names. This parser skeleton is still broken, but Bison should not
17188 choke on a bad muscle 'syntax'.
17189 * src/bison.simple: Add a section directive. Put braces around muscle
17190 names.
17191
17192 * src/files.h (strsuffix, stringappend): Add declarations.
17193 (tab_extension): Add declaration.
17194 (short_base_name): Add declaration.
17195
17196 * src/files.c (strsuffix, stringappend): No longer static. These
17197 functions are used in the skeleton parser.
17198 (tab_extension): New.
17199 (compute_base_names): Use the computations done in this function
17200 to guess if the generated parsers should have '.tab' in their
17201 names.
17202 (short_base_name): No longer static.
17203
17204 * src/output.c (output_skeleton): New.
17205 (output): Disable call to output_master_parser, and give a try to
17206 a new skeleton handling system.
17207 (guards_output, actions_output): No longer static.
17208 (token_definitions_output, get_lines_number): No longer static.
17209
17210 * configure.in: Use AM_PROG_LEX and AC_PROG_YACC.
17211
17212 * src/Makefile.am (bison_SOURCES): Add scan-skel.l and
17213 parse-skel.y.
17214
17215 * src/parse-skel.y: New file.
17216 * src/scan-skel.l: New file.
17217
17218 2001-12-29 Akim Demaille <akim@epita.fr>
17219
17220 %name-prefix is broken.
17221
17222 * src/files.c (spec_name_prefix): Initialize to NULL, not to "yy".
17223 Adjust all dependencies.
17224 * tests/headers.at (export YYLTYPE): Strengthen this test: use
17225 %name-prefix.
17226
17227 Renaming yylval but not yylloc is not consistent. Now we do.
17228
17229 * src/bison.simple: Prefix yylloc if used.
17230 * doc/bison.texinfo (Decl Summary): Document that.
17231
17232 2001-12-29 Akim Demaille <akim@epita.fr>
17233
17234 * doc/bison.texinfo: Promote `%long-directive' over
17235 `%long_directive'.
17236 Remove all references to fixed-output-files, yacc is enough.
17237
17238 2001-12-29 Akim Demaille <akim@epita.fr>
17239
17240 * src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the
17241 user prologue. These are defaults.
17242 * tests/actions.at (Mid-rule actions): Make sure the user can
17243 define YYDEBUG and YYERROR_VERBOSE.
17244
17245 2001-12-29 Akim Demaille <akim@epita.fr>
17246
17247 * src/output.c (header_output): Don't forget to export YYLTYPE and
17248 yylloc.
17249 * tests/headers.at (export YYLTYPE): New, make sure it does.
17250 * tests/regression.at (%union and --defines, Invalid CPP headers):
17251 Move to...
17252 * tests/headers.at: here.
17253
17254 2001-12-29 Akim Demaille <akim@epita.fr>
17255
17256 * src/gram.h (rule_s): Member `assoc' is of type `associativity'.
17257
17258 2001-12-29 Akim Demaille <akim@epita.fr>
17259
17260 * tests/actions.at (Mid-rule actions): Output on a single line
17261 instead of several.
17262
17263 2001-12-29 Akim Demaille <akim@epita.fr>
17264
17265 * doc/bison.texinfo: Formatting changes.
17266
17267 2001-12-29 Akim Demaille <akim@epita.fr>
17268
17269 Don't store the token defs in a muscle, just be ready to output it
17270 on command. Now possible via `symbols'. Fixes a memory leak.
17271
17272 * src/output.c (token_definitions_output): New.
17273 (output_parser, header_output): Use it.
17274 * src/reader.c (symbols_save): Remove.
17275
17276 2001-12-29 Akim Demaille <akim@epita.fr>
17277
17278 * src/bison.simple: Do not provide a default for YYSTYPE and
17279 YYLTYPE before the user's prologue. Otherwise it's hardly... a
17280 default.
17281
17282 2001-12-29 Akim Demaille <akim@epita.fr>
17283
17284 Mid-rule actions are simply... ignored!
17285
17286 * src/reader.c (readgram): Be sure to attach mid-rule actions to
17287 the empty-rule associated to the dummy symbol, not to the host
17288 rule.
17289 * tests/actions.at (Mid-rule actions): New.
17290
17291 2001-12-29 Akim Demaille <akim@epita.fr>
17292
17293 Memory leak.
17294
17295 * src/reader.c (reader): Free grammar.
17296
17297 2001-12-29 Akim Demaille <akim@epita.fr>
17298
17299 Memory leak.
17300
17301 * src/LR0.c (new_itemsets): Don't allocate `shift_symbol' here,
17302 since it allocates it for each state, although only one is needed.
17303 (allocate_storage): Do it here.
17304
17305 2001-12-29 Akim Demaille <akim@epita.fr>
17306
17307 * src/options.h, src/options.c (create_long_option_table): Rename
17308 as...
17309 (long_option_table_new): this, with a clearer prototype.
17310 (percent_table): Remove, unused,
17311 * src/getargs.c (getargs): Adjust.
17312
17313 2001-12-29 Akim Demaille <akim@epita.fr>
17314
17315 * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
17316 * src/print.c, src/print_graph.c, src/state.h: Rename state_table
17317 as states.
17318
17319 2001-12-29 Akim Demaille <akim@epita.fr>
17320
17321 * src/lalr.c (build_relations): Rename `states' as `states1'.
17322 Sorry, I don't understand exactly what it is, no better name...
17323
17324 2001-12-29 Akim Demaille <akim@epita.fr>
17325
17326 * src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
17327 * src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
17328 * src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
17329 as rules.
17330
17331 2001-12-29 Akim Demaille <akim@epita.fr>
17332
17333 * src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
17334 ago.
17335
17336 2001-12-29 Akim Demaille <akim@epita.fr>
17337
17338 * src/reader.c, src/reader.h (user_toknums): Remove.
17339 Adjust all users to use symbols[i]->user_token_number.
17340
17341 2001-12-29 Akim Demaille <akim@epita.fr>
17342
17343 * src/gram.c, src/gram.h (sprec, sassoc): Remove.
17344 Adjust all users to use symbols[i]->prec or ->assoc.
17345
17346 2001-12-29 Akim Demaille <akim@epita.fr>
17347
17348 * src/reader.c, src/reader.h (tags): Remove.
17349 Adjust all users to use symbols[i]->tag.
17350
17351 2001-12-29 Akim Demaille <akim@epita.fr>
17352
17353 * src/gram.h, src/gram.c (symbols): New, similar to state_table
17354 and rule_table.
17355 * src/reader.c (packsymbols): Fill this table.
17356 Drop sprec.
17357 * src/conflicts.c (resolve_sr_conflict): Adjust.
17358 * src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
17359 single table.
17360 Use symbols[i]->tag instead of tags[i].
17361
17362 2001-12-29 Akim Demaille <akim@epita.fr>
17363
17364 * tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
17365 In addition, put a comment in there, to replace...
17366 * tests/regression.at (%union and C comments): Remove.
17367
17368 2001-12-29 Akim Demaille <akim@epita.fr>
17369
17370 * tests/regression.at (Web2c Actions): Blindly move the actual
17371 output as expected output. The contents *seem* right to me, but I
17372 can't pretend reading perfectly parser tables... Nonetheless, all
17373 the other tests pass correctly, the table look OK, even though the
17374 presence of `$axiom' is to be noted: AFAICS it is useless (but
17375 harmless).
17376
17377 2001-12-29 Akim Demaille <akim@epita.fr>
17378
17379 * src/reader.c (readgram): Don't add the rule 0 if there were no
17380 rules read. In other words, add it _after_ having performed
17381 grammar sanity checks.
17382 Fixes the `tests/regression.at (Invalid input: 1)' Failure.
17383
17384 2001-12-29 Akim Demaille <akim@epita.fr>
17385
17386 * tests/regression.at (Web2c Report): Catch up: the rule 0 is now
17387 visible, and some states have now a different number.
17388
17389 2001-12-29 Akim Demaille <akim@epita.fr>
17390
17391 * src/reader.c (readgram): Bind the initial rule's lineno to that
17392 of the first rule.
17393 * tests/regression.at (Rule Line Numbers, Unresolved SR Conflicts):
17394 (Solved SR Conflicts): Adjust rule 0's line number.
17395
17396 2001-12-29 Akim Demaille <akim@epita.fr>
17397
17398 Fix the `GAWK Grammar' failure.
17399
17400 * src/LR0.c (final_state): Initialize to -1 so that we do compute
17401 the reductions of the first state which was mistakenly confused
17402 with the final state because precisely final_state was initialized
17403 to 0.
17404 * tests/sets.at (Nullable): Adjust: state 0 does have lookaheads,
17405 now noticed by Bison.
17406 * tests/regression.at (Rule Line Numbers): Adjust: state 0 does
17407 have a reduction on $default.
17408
17409 2001-12-29 Akim Demaille <akim@epita.fr>
17410
17411 * src/gram.c (ritem_print): Be sure to subtract 1 when displaying
17412 rule line numbers.
17413 * src/closure.c (print_closure): Likewise.
17414 * src/derives.c (print_derives): Likewise.
17415 * tests/sets.at (Nullable): Adjust: the rule numbers are correct
17416 now.
17417
17418 2001-12-29 Akim Demaille <akim@epita.fr>
17419
17420 * src/lalr.c (lookaheads_print): New.
17421 (lalr): Call it when --trace-flag.
17422 * tests/sets.at (Nullable): Adjust: when tracing, the lookaheads
17423 are dumped.
17424
17425 2001-12-29 Akim Demaille <akim@epita.fr>
17426
17427 * src/derives.c (print_derives): Be sure to use `>= 0', not `> 0',
17428 when walking through ritem, even via rule->rhs.
17429 * src/reduce.c (dump_grammar, useful_production, reduce_output)
17430 (useful_production, useless_nonterminals): Likewise.
17431 (reduce_grammar_tables): Likewise, plus update nritems.
17432 * src/nullable.c (set_nullable): Likewise.
17433 * src/lalr.c (build_relations): Likewise.
17434 * tests/sets.at (Nullable): Adjust.
17435 Fortunately, now, the $axiom is no longer nullable.
17436
17437 2001-12-29 Akim Demaille <akim@epita.fr>
17438
17439 * src/LR0.c (generate_states): Use nritems, not nitems, nor using
17440 the 0-sentinel.
17441 * src/gram.c (ritem_longest_rhs): Likewise.
17442 * src/reduce.c (nonterminals_reduce): Likewise.
17443 * src/print_graph.c (print_graph): Likewise.
17444 * src/output.c (output_rule_data): Likewise.
17445 * src/nullable.c (set_nullable): Likewise.
17446
17447 2001-12-29 Akim Demaille <akim@epita.fr>
17448
17449 * src/output.c: Comment changes.
17450
17451 2001-12-27 Paul Eggert <eggert@twinsun.com>
17452
17453 * src/bison.simple (YYSTACK_ALLOC, YYSIZE_T): Remove special
17454 cases for non-GNU systems like AIX, HP-UX, SGI, Sun, and
17455 Sparc, as they were causing more porting problems than the
17456 (minor) performance improvement was worth.
17457
17458 Also, catch up with 1.31's YYSTD.
17459
17460 2001-12-27 Akim Demaille <akim@epita.fr>
17461
17462 * src/output.c (output_gram): Rely on nritems, not the
17463 0-sentinel. See below.
17464 Use -1 as separator, not 0.
17465 * src/bison.simple (yyparse): Subtract 1 to the rule numbers.
17466 Rely on -1 as separator in yyrhs, instead of 0.
17467 * tests/calc.at (AT_CHECK_CALC): Now, the parsers no longer issue
17468 twice `Now at end of input', therefore there are two lines less to
17469 expect.
17470
17471 2001-12-27 Akim Demaille <akim@epita.fr>
17472
17473 * tests/regression.at (Unresolved SR Conflicts):
17474 (Solved SR Conflicts, Rule Line Numbers): Adjust to the changes
17475 below.
17476
17477 2001-12-27 Akim Demaille <akim@epita.fr>
17478
17479 * src/LR0.c (new_state): Recognize the final state by the fact it
17480 is reached by eoftoken.
17481 (insert_start_shifting_state, insert_eof_shifting_state)
17482 (insert_accepting_state, augment_automaton): Remove, since now
17483 these states are automatically computed from the initial state.
17484 (generate_states): Adjust.
17485 * src/print.c: When reporting a rule number to the user, substract
17486 1, so that the axiom rule is rule 0, and the first user rule is 1.
17487 * src/reduce.c: Likewise.
17488 * src/print_graph.c (print_core): For the time being, just as for
17489 the report, depend upon --trace-flags to dump the full set of
17490 items.
17491 * src/reader.c (readgram): Once the grammar read, insert the rule
17492 0: `$axiom: START-SYMBOL $'.
17493 * tests/set.at: Adjust: rule 0 is now displayed, and since the
17494 number of the states has changed (the final state is no longer
17495 necessarily the last), catch up.
17496
17497 2001-12-27 Akim Demaille <akim@epita.fr>
17498
17499 Try to make the use of the eoftoken valid. Given that its value
17500 is 0 which was also used as a sentinel in ritem, (i) make sure >= 0
17501 is used instead of > 0 where appropriate, (ii), depend upon nritems
17502 instead of the 0-sentinel.
17503
17504 * src/gram.h, src/gram.c (nritems): New.
17505 Expected to be duplication of nitems, but for the time being...
17506 * src/reader.c (packgram): Assert nritems and nitems are equal.
17507 * src/LR0.c (allocate_itemsets, new_itemsets): Adjust.
17508 * src/closure.c (print_closure, print_fderives): Likewise.
17509 * src/gram.c (ritem_print): Likewise.
17510 * src/print.c (print_core, print_grammar): Likewise.
17511 * src/print_graph.c: Likewise.
17512
17513 2001-12-27 Akim Demaille <akim@epita.fr>
17514
17515 * src/main.c (main): If there are complains after grammar
17516 reductions, then output the report anyway if requested, then die.
17517 * src/symtab.c (bucket_new): Initialize `value' to -1, not 0.
17518 * src/reader.c (eoftoken): New.
17519 (parse_token_decl): If the token being defined has value `0', it
17520 is the eoftoken.
17521 (packsymbols): No longer hack `tags' to insert `$' by hand.
17522 Be sure to preserve the value of the eoftoken.
17523 (reader): Make sure eoftoken is defined.
17524 Initialize nsyms to 0: now eoftoken is created just like the others.
17525 * src/print.c (print_grammar): Don't special case the eof token.
17526 * src/regression.at: Adjust: `$' has value 0, not -1, which was a
17527 lie anyway, albeit pleasant.
17528 * tests/calc.at: Exercise error messages with eoftoken.
17529 Change the grammar so that empty input is invalid.
17530 Adjust expectations.
17531 When yyungeting, be sure to use a valid yylloc: use last_yylloc.
17532
17533 2001-12-27 Akim Demaille <akim@epita.fr>
17534
17535 * configure.in: Check the protos of strchr ans strspn.
17536 Replace strchr if needed.
17537 * src/system.h: Provide the protos of strchr, strspn and memchr if
17538 missing.
17539 * lib/strchr.c: New.
17540 * src/reader.c (symbols_save): Use strchr.
17541
17542 2001-12-27 Akim Demaille <akim@epita.fr>
17543
17544 * src/print.c, src/print_graph.c (escape): New.
17545 Use it to quote the TAGS outputs.
17546 * src/print_graph.c (print_state): Now errors are in red, and
17547 reductions in green.
17548 Prefer high to wide: output the state number on a line of its own.
17549
17550 2001-12-27 Akim Demaille <akim@epita.fr>
17551
17552 * src/state.h, src/state.c (reductions_new): New.
17553 * src/LR0.c (set_state_table): Let all the states have a
17554 `reductions', even if reduced to 0.
17555 (save_reductions): Adjust.
17556 * src/lalr.c (initialize_LA, initialize_lookaheads): Adjust.
17557 * src/print.c (print_reductions, print_actions): Adjust.
17558 * src/output.c (action_row): Adjust.
17559
17560 2001-12-27 Akim Demaille <akim@epita.fr>
17561
17562 * src/state.h, src/state.c (errs_new, errs_dup): New.
17563 * src/LR0.c (set_state_table): Let all the states have an errs,
17564 even if reduced to 0.
17565 * src/print.c (print_errs, print_reductions): Adjust.
17566 * src/output.c (output_actions, action_row): Adjust.
17567 * src/conflicts.c (resolve_sr_conflict): Adjust.
17568
17569 2001-12-27 Akim Demaille <akim@epita.fr>
17570
17571 * src/lalr.c (set_goto_map, initialize_F): Use SHIFT_SYMBOL.
17572
17573 2001-12-27 Akim Demaille <akim@epita.fr>
17574
17575 * src/conflicts.c, src/conflicts.h (print_reductions): Move to...
17576 * src/print.c: here.
17577 (lookaheadset, shiftset): New, used as additional storage by
17578 print_reductions.
17579 (print_results): Adjust.
17580 (print_shifts, print_gotos, print_errs): New, extracted from...
17581 (print_actions): here.
17582 * src/print_graph.c (print_actions): Remove dead code.
17583
17584 2001-12-27 Akim Demaille <akim@epita.fr>
17585
17586 * src/reader.c (copy_dollar, copy_at): Better checking of `n' in
17587 `$n' and `@n'.
17588
17589 2001-12-27 Akim Demaille <akim@epita.fr>
17590
17591 * src/lalr.c (add_lookback_edge): Use state_t instead of ints.
17592 (build_relations): Adjust.
17593
17594 2001-12-27 Akim Demaille <akim@epita.fr>
17595
17596 * src/lalr.c (set_goto_map): Remove a wrong but benign loop
17597 duplication.
17598
17599 2001-12-27 Akim Demaille <akim@epita.fr>
17600
17601 * src/reader.c (packgram): Catch nitems overflows.
17602
17603 2001-12-27 Akim Demaille <akim@epita.fr>
17604
17605 * src/files.c, src/files.h (guard_obstack): Remove.
17606 * src/output.c (output): Adjust.
17607 * src/reader.c (parse_braces): New, factoring...
17608 (copy_action, copy_guard): these two which are renamed as...
17609 (parse_action, parse_guard): these.
17610 As a voluntary consequence, using braces around guards is now
17611 mandatory.
17612
17613 2001-12-27 Akim Demaille <akim@epita.fr>
17614
17615 * src/gram.h (rule_t): `guard' and `guard_line' are new members.
17616 * src/reader.c (symbol_list): `guard' and `guard_line' are new
17617 members.
17618 (symbol_list_new): Adjust.
17619 (copy_action): action_line is the first line, not the last.
17620 (copy_guard): Just as for actions, store the `action' only, not
17621 the switch/case/break flesh.
17622 Don't parse the user action that might follow the guard, let...
17623 (readgram): do it, i.e., now, there can be an action after a
17624 guard.
17625 In other words the guard is just explicitly optional.
17626 (packgram): Adjust.
17627 * src/output.c (guards_output): New.
17628 (output_parser): Call it when needed.
17629 (output): Also free the guard and attrs obstacks.
17630 * src/files.c, src/files.h (obstack_save): Remove.
17631 (output_files): Remove.
17632 As a result, if one needs the former `.act' file, using an
17633 appropriate skeleton which requires actions and guards is now
17634 required.
17635 * src/main.c (main): Adjust.
17636 * tests/semantic.at: New.
17637 * tests/regression.at: Use `input.y' as input file name.
17638 Avoid 8+3 problems by requiring input.c when the test needs the
17639 parser.
17640
17641 2001-12-27 Akim Demaille <akim@epita.fr>
17642
17643 * src/reader.c (symbol_list_new): Be sure to initialize all the
17644 fields.
17645
17646 2001-12-27 Akim Demaille <akim@epita.fr>
17647
17648 All the hacks using a final pseudo state are now useless.
17649
17650 * src/LR0.c (set_state_table): state_table holds exactly nstates.
17651 * src/lalr.c (nLA): New.
17652 (initialize_LA, compute_lookaheads, initialize_lookaheads): Use it
17653 instead of lookaheadsp from the pseudo state (nstate + 1).
17654
17655 2001-12-27 Akim Demaille <akim@epita.fr>
17656
17657 * src/output.c (action_row, token_actions): Use a state_t instead
17658 of a integer, and nlookaheads instead of the following state's
17659 lookaheadsp.
17660
17661 2001-12-27 Akim Demaille <akim@epita.fr>
17662
17663 * src/conflicts.c (log_resolution, flush_shift)
17664 (resolve_sr_conflict, set_conflicts, solve_conflicts)
17665 (count_sr_conflicts, count_rr_conflicts, conflicts_output)
17666 (conflicts_print, print_reductions): Use a state_t instead of an
17667 integer when referring to a state.
17668 As much as possible, depend upon nlookaheads, instead of the
17669 `lookaheadsp' member of the following state (since lookaheads of
17670 successive states are successive, the difference between state n + 1
17671 and n served as the number of lookaheads for state n).
17672 * src/lalr.c (add_lookback_edge): Likewise.
17673 * src/print.c (print_core, print_actions, print_state)
17674 (print_results): Likewise.
17675 * src/print_graph.c (print_core, print_actions, print_state)
17676 (print_graph): Likewise.
17677 * src/conflicts.h: Adjust.
17678
17679 2001-12-27 Akim Demaille <akim@epita.fr>
17680
17681 * src/bison.hairy: Formatting/comment changes.
17682 ANSIfy.
17683 Remove `register' indications.
17684 Add plenty of `static'.
17685
17686 2001-12-27 Akim Demaille <akim@epita.fr>
17687
17688 * src/output.c (prepare): Drop the muscle `ntbase' which
17689 duplicates ntokens.
17690 * src/bison.simple: Formatting/comment changes.
17691 Use YYNTOKENS only, which is documented, but not YYNTBASE, which
17692 is an undocumented synonym.
17693
17694 2001-12-22 Akim Demaille <akim@epita.fr>
17695
17696 * src/output.c (output_table_data): Change the prototype to use
17697 `int' for array ranges: some invocations do pass an int, not a
17698 short.
17699 Reported by Wayne Green.
17700
17701 2001-12-22 Akim Demaille <akim@epita.fr>
17702
17703 Some actions of web2c.y are improperly triggered.
17704 Reported by Mike Castle.
17705
17706 * src/lalr.c (traverse): s/F (i)[k] = F (j)[k]/F (j)[k] = F (i)[k]/.
17707 * tests/regression.at (Web2c): Rename as...
17708 (Web2c Report): this.
17709 (Web2c Actions): New.
17710
17711 2001-12-22 Akim Demaille <akim@epita.fr>
17712
17713 Reductions in web2c.y are improperly reported.
17714 Reported by Mike Castle.
17715
17716 * src/conflicts.c (print_reductions): Fix.
17717 * tests/regression.at (Web2c): New.
17718
17719 2001-12-18 Akim Demaille <akim@epita.fr>
17720
17721 Some host fail on `assert (!"foo")', which expands to
17722 ((!"foo") ? (void)0 : __assert("!"foo."", __FILE__, __LINE__))
17723 Reported by Nelson Beebee.
17724
17725 * src/output.c, src/vcg.c: Replace `assert (!"it succeeded")' with
17726 `#define it_succeeded 0' and `assert (it_succeeded)'.
17727
17728 2001-12-17 Marc Autret <autret_m@epita.fr>
17729
17730 * src/bison.simple: Don't hard code the skeleton line and filename.
17731 * src/output.c (output_parser): Rename 'line' as 'output_line'.
17732 New line counter 'skeleton_line' (skeleton-line muscle).
17733
17734 2001-12-17 Paul Eggert <eggert@twinsun.com>
17735
17736 * NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
17737 YYDEBUG must be defined to a nonzero value.
17738
17739 * src/bison.simple (yytname): Do not assume that the user defines
17740 YYDEBUG to a properly parenthesized expression.
17741
17742 2001-12-17 Akim Demaille <akim@epita.fr>
17743
17744 * src/state.h (state_t): Rename lookaheads as lookaheadsp.
17745 nlookaheads is a new member.
17746 Adjust all users.
17747 * src/lalr.h (nlookaheads): Remove this orphan declaration.
17748 * src/lalr.c (initialize_lookaheads): Set nlookaheads for each
17749 state.
17750
17751 2001-12-17 Akim Demaille <akim@epita.fr>
17752
17753 * src/files.h, src/files.c (open_files, close_files): Remove.
17754 * src/main.c (main): Don't open/close files, nor invoke lex_free,
17755 let...
17756 * src/reader.c (reader): Do it.
17757
17758 2001-12-17 Akim Demaille <akim@epita.fr>
17759
17760 * src/conflicts.c (print_reductions): Formatting changes.
17761
17762 2001-12-17 Akim Demaille <akim@epita.fr>
17763
17764 * src/conflicts.c (flush_shift): Also adjust lookaheadset.
17765 (flush_reduce): New.
17766 (resolve_sr_conflict): Adjust.
17767
17768 2001-12-17 Akim Demaille <akim@epita.fr>
17769
17770 * src/output.c (output_obstack): Be static and rename as...
17771 (format_obstack): this, to avoid any confusion with files.c's
17772 output_obstack.
17773 * src/reader.h (muscle_obstack): Move to...
17774 * src/output.h: here, since it's defined in output.c.
17775
17776 2001-12-17 Akim Demaille <akim@epita.fr>
17777
17778 * src/output.c (action_row, save_column, default_goto)
17779 (sort_actions, matching_state, pack_vector): Better variable
17780 locality.
17781
17782 2001-12-17 Akim Demaille <akim@epita.fr>
17783
17784 * src/output.c: Various formatting changes.
17785
17786 2001-12-17 Akim Demaille <akim@epita.fr>
17787
17788 * src/files.c (output_files): Free the output_obstack.
17789 * src/main.c (main): Call print and print_graph conditionally.
17790 * src/print.c (print): Work unconditionally.
17791 * src/print_graph.c (print_graph): Work unconditionally.
17792 * src/conflicts.c (log_resolution): Output only if verbose_flag.
17793
17794 2001-12-16 Marc Autret <autret_m@epita.fr>
17795
17796 * src/output.c (actions_output): Fix. When we use %no-lines,
17797 there is one less line per action.
17798
17799 2001-12-16 Marc Autret <autret_m@epita.fr>
17800
17801 * src/bison.simple: Remove a useless #line directive.
17802 s/#line %%line %%skeleton/#line %%line "%%parser-file-name"/'.
17803 * src/output.c (get_lines_number): New.
17804 (output_parser): Adjust, now takes care about the lines of a
17805 output muscles.
17806 Fix line numbering.
17807 (actions_output): Computes the number of lines taken by actions.
17808 (output_master_parser): Insert new skeleton which is the name of
17809 the output parser file name.
17810
17811 2001-12-15 Marc Autret <autret_m@epita.fr>
17812
17813 * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
17814
17815 2001-12-15 Marc Autret <autret_m@epita.fr>
17816
17817 * src/output.c (output_gram): Keep track of the hairy one.
17818
17819 2001-12-15 Akim Demaille <akim@epita.fr>
17820
17821 Make `make distcheck' work.
17822
17823 * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses
17824 system.h which uses libgettext.h.
17825
17826 2001-12-15 Akim Demaille <akim@epita.fr>
17827
17828 * src/nullable.c (set_nullable): Useless rules must be skipped,
17829 otherwise, since we range over their symbols, we might look at a
17830 nonterminal which no longer ``exists'', i.e., it is not counted in
17831 `nvars', hence we overflow our arrays.
17832
17833 2001-12-15 Akim Demaille <akim@epita.fr>
17834
17835 The header can also be produced directly, without any obstack!
17836 Yahoo!
17837
17838 * src/files.c, src/files.h (defines_obstack): Remove.
17839 (compute_header_macro): Global.
17840 (defines_obstack_save): Remove.
17841 * src/reader.c (parse_union_decl): No longer output to
17842 defines_obstack: its content can be found in the `stype' muscle
17843 anyway.
17844 (output_token_translations): Merge into...
17845 (symbols_output): this.
17846 Rename as...
17847 (symbols_save): this.
17848 (reader): Adjust.
17849 * src/output.c (header_output): New.
17850 (output): Call it.
17851
17852 2001-12-15 Akim Demaille <akim@epita.fr>
17853
17854 * src/reader.c (parse_union_decl): Instead of handling two obstack
17855 simultaneously, use one to define the `stype' muscle, and use the
17856 value of the latter to fill defines_obstack.
17857 (copy_comment): Remove.
17858 (copy_comment2): Work for a single obstack.
17859 Rename as...
17860 (copy_comment): this.
17861
17862 2001-12-15 Akim Demaille <akim@epita.fr>
17863
17864 * src/lex.c, src/lex.h (xgetc): No longer static.
17865 * src/reader.c (parse_union_decl): Revamp.
17866
17867 2001-12-15 Akim Demaille <akim@epita.fr>
17868
17869 Still making progress in separating Bison into (i) input, (ii)
17870 process, (iii) output: now we can directly output the parser file
17871 without using table_obstack at all.
17872
17873 * src/files.c, src/files.h (table_obstack): Bye bye.
17874 (parser_file_name): New.
17875 * src/files.c (compute_output_file_names): Compute it.
17876 * src/output.c (actions_output, output_parser)
17877 (output_master_parser): To a file instead of an obstack.
17878
17879 2001-12-15 Akim Demaille <akim@epita.fr>
17880
17881 Attach actions to rules, instead of pre-outputting them to
17882 actions_obstack.
17883
17884 * src/gram.h (rule_t): action and action_line are new members.
17885 * src/reader.c (symbol_list): Likewise.
17886 (copy_action): Save the actions within the rule.
17887 (packgram): Save them in rule_table.
17888 * src/output.c (actions_output): New.
17889 (output_parser): Use it on `%%actions'.
17890 (output_rule_data): Don't free rule_table.
17891 (output): Do it.
17892 (prepare): Don't save the `action' muscle.
17893 * src/bison.simple: s/%%action/%%actions/.
17894
17895 2001-12-15 Akim Demaille <akim@epita.fr>
17896
17897 * src/reader.c (copy_action): When --yacc, don't append a `;'
17898 to the user action: let it fail if lacking.
17899 Suggested by Arnold Robbins and Tom Tromey.
17900
17901 2001-12-14 Akim Demaille <akim@epita.fr>
17902
17903 * src/lex.c (literalchar): Simply return the char you decoded, non
17904 longer mess around with obstacks and int pointers.
17905 Adjust all callers.
17906
17907 2001-12-14 Akim Demaille <akim@epita.fr>
17908
17909 * src/lex.c (literalchar): Don't escape the special characters,
17910 just decode them, and keep them as char (before, eol was output as
17911 the 2 char string `\n' etc.).
17912 * src/output.c (output_rule_data): Use quotearg to output the
17913 token strings.
17914
17915 2001-12-13 Paul Eggert <eggert@twinsun.com>
17916
17917 * src/bison.simple (YYSIZE_T, YYSTACK_ALLOC, YYSTACK_FREE):
17918 Do not infringe on the global user namespace when using C++.
17919 (YYFPRINTF, YYSTDERR): New macros, needed for the above.
17920 All uses of `fprintf' and `stderr' changed.
17921
17922 * doc/bison.texinfo: Document YYFPRINTF, YYSTDERR.
17923
17924 2001-12-13 Akim Demaille <akim@epita.fr>
17925
17926 The computation of nullable is broken: it doesn't handle empty
17927 RHS's properly.
17928
17929 * tests/torture.at (GNU AWK Grammar): New.
17930 * tests/sets.at (Nullable): New.
17931 * src/nullable.c (set_nullable): Instead of blindly looping over
17932 `ritems', loop over the rules, and then over their rhs's.
17933
17934 Work around Autotest bugs.
17935
17936 * src/warshall.c (bitmatrix_print): Don't use `+--+' as table
17937 frame, because Autotest understand lines starting with a `+' as
17938 traces from the shell. Then, they are not processed properly.
17939 Admittedly an Autotest bug, but we don't have time to wait for
17940 Autotest to catch up.
17941 * tests/regression.at (Broken Closure): Adjust to the new table
17942 frames.
17943 Move to...
17944 * tests/sets.at: here.
17945
17946 2001-12-13 Akim Demaille <akim@epita.fr>
17947
17948 * src/closure.c (closure): Use nrules instead of playing tricks
17949 with BITS_PER_WORD.
17950
17951 2001-12-13 Akim Demaille <akim@epita.fr>
17952
17953 * src/print.c (print_actions): Output the handling of `$' as the
17954 traces do: shifting the token EOF. Before EOF was treated as a
17955 nonterminal.
17956 * tests/regression.at: Adjust some tests.
17957 * src/print_graph.c (print_core): Complete the set of items via
17958 closure. The next-to-final and final states are still unsatisfying,
17959 but that's to be addressed elsewhere.
17960 No longer output the rule numbers, but do output the state number.
17961 A single loop for the shifts + gotos is enough, but picked a
17962 distinct color for each.
17963 (print_graph): Initialize and finalize closure.
17964
17965 2001-12-13 Akim Demaille <akim@epita.fr>
17966
17967 * src/reader.c (readgram): Remove dead code, an strip useless
17968 braces.
17969 (get_type): Remove, unused.
17970
17971 2001-12-12 Akim Demaille <akim@epita.fr>
17972
17973 * src/complain.h, src/complain.c: Remove error_one_per_line, rely
17974 on that of lib/error.c.
17975
17976 2001-12-12 Akim Demaille <akim@epita.fr>
17977
17978 Some hosts don't like `/' in includes.
17979
17980 * src/system.h: Include libgettext.h without qualifying the path.
17981 * src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
17982 $(top_srcdir).
17983
17984 2001-12-11 Marc Autret <autret_m@epita.fr>
17985
17986 * src/output.c (output_parser): Remove useless muscle.
17987
17988 2001-12-11 Marc Autret <autret_m@epita.fr>
17989
17990 * src/bison.simple: Remove #line just before %%epilogue. It
17991 is now handled in ...
17992 * src/reader.c (read_additionnal_code): Add the output of a
17993 #line for the epilogue.
17994
17995 2001-12-10 Marc Autret <autret_m@epita.fr>
17996
17997 * src/reader.c (copy_definition): Re-use CPP-outed code which
17998 replace precedent remove.
17999 * src/bison.simple: Remove #line before %%prologue because
18000 %%input-line is wrong at this time.
18001
18002 2001-12-10 Marc Autret <autret_m@epita.fr>
18003
18004 * src/reader.c (symbols_output): Clean up.
18005 * src/output.c (output_gram, output): Clean up.
18006
18007 2001-12-10 Akim Demaille <akim@epita.fr>
18008
18009 * src/lalr.c (initialize_lookaheads): New. Extracted from...
18010 * src/LR0.c (set_state_table): here.
18011 * src/lalr.c (lalr): Call it.
18012
18013 2001-12-10 Akim Demaille <akim@epita.fr>
18014
18015 * src/state.h (shifts): Remove the `number' member: shifts are
18016 attached to state, hence no longer need to be labelled with a
18017 state number.
18018
18019 2001-12-10 Akim Demaille <akim@epita.fr>
18020
18021 Now that states have a complete set of members, the linked list of
18022 shifts is useless: just fill directly the state's shifts member.
18023
18024 * src/state.h (shifts): Remove the `next' member.
18025 * src/LR0.c (first_state, last_state): Remove.
18026 Adjust the callers.
18027 (augment_automaton): Don't look for the shifts that must be added
18028 a shift on EOF: it is those of the state we looked for! But now,
18029 since shifts are attached, it is no longer needed to looking
18030 merely by its id: its number.
18031
18032 2001-12-10 Akim Demaille <akim@epita.fr>
18033
18034 * src/LR0.c (augment_automaton): Better variable locality.
18035 Remove an impossible branch: if there is a state corresponding to
18036 the start symbol being shifted, then there is shift for the start
18037 symbol from the initial state.
18038
18039 2001-12-10 Akim Demaille <akim@epita.fr>
18040
18041 * src/LR0.c (augment_automaton): Call `insert_eof_shifting_state'
18042 only when appropriate: when insert_start_shifting_state' is not
18043 invoked.
18044 * tests/regression.at (Rule Line Numbers): Adjust.
18045
18046 2001-12-10 Akim Demaille <akim@epita.fr>
18047
18048 * src/LR0.c (augment_automaton): Now that all states have shifts,
18049 merge the two cases addition shifts to the initial state.
18050
18051 2001-12-10 Akim Demaille <akim@epita.fr>
18052
18053 * src/lalr.c (set_state_table): Move to...
18054 * src/LR0.c: here.
18055 * src/lalr.c (lalr): Don't call it...
18056 * src/LR0.c (generate_states): do it.
18057 * src/LR0.h (first_state): Remove, only the table is used.
18058
18059 2001-12-10 Akim Demaille <akim@epita.fr>
18060
18061 * src/LR0.h (first_shift, first_reduction): Remove.
18062 * src/lalr.c: Don't use first_shift: find shifts through the
18063 states.
18064
18065 2001-12-10 Akim Demaille <akim@epita.fr>
18066
18067 * src/LR0.c: Attach shifts to states as soon as they are
18068 computed.
18069 * src/lalr.c (set_state_table): Instead of assigning shifts to
18070 state, just assert that the mapping was properly done.
18071
18072 2001-12-10 Akim Demaille <akim@epita.fr>
18073
18074 * src/LR0.c (insert_start_shift): Rename as...
18075 (insert_start_shifting_state): this.
18076 (insert_eof_shifting_state, insert_accepting_state): New.
18077 (augment_automaton): Adjust.
18078 Better locality of the variables.
18079 When looking if the start_symbol is shifted from the initial
18080 state, using `while (... symbol != start_symbol ...)' sounds
18081 better than `while (... symbol < start_symbol ...)': If fail
18082 to see how the order between symbols could be relevant!
18083
18084 2001-12-10 Akim Demaille <akim@epita.fr>
18085
18086 * src/getargs.h: Don't declare `spec_name_prefix' and
18087 `spec_file_prefix', declared by src/files.h.
18088 * src/files.c, src/files.h: Default for spec_name_prefix is "yy".
18089 * src/muscle_tab.c (muscle_init): Default prefix to NULL.
18090 * src/output.c (prepare): Adjust.
18091 * src/reader.c (symbols_output): Likewise.
18092 * src/vmsgetargs.c: Vaguely adjust, but who cares?
18093
18094 2001-12-10 Akim Demaille <akim@epita.fr>
18095
18096 * src/muscle_tab.c (muscle_init): NULL is a better default than
18097 `"0"'.
18098
18099 2001-12-10 Akim Demaille <akim@epita.fr>
18100
18101 * src/reader.c (reader): Calling symbols_output once is enough.
18102
18103 2001-12-10 Akim Demaille <akim@epita.fr>
18104
18105 Now that states have a complete set of members, the linked list of
18106 reductions is useless: just fill directly the state's reductions
18107 member.
18108
18109 * src/state.h (struct reductions): Remove member `number' and
18110 `next'.
18111 * src/LR0.c (first_reduction, last_reduction): Remove.
18112 (save_reductions): Don't link the new reductions, store them in
18113 this_state.
18114 * src/lalr.c (set_state_table): No need to attach reductions to
18115 states, it's already done.
18116 * src/output.c (output_actions): No longer free the shifts, then
18117 the reductions, then the states: free all the states and their
18118 members.
18119
18120 2001-12-10 Akim Demaille <akim@epita.fr>
18121
18122 * src/options.c (OPTN, DRTV, BOTH): New.
18123 (option_table): Use them.
18124
18125 * src/muscle_tab.c: Don't include xalloc.h and string.h: that's
18126 the job of system.h.
18127 * src/options.c: Don't include stdio.h and xalloc.h for the same
18128 reasons.
18129
18130 2001-12-10 Akim Demaille <akim@epita.fr>
18131
18132 * src/output.c (output, prepare): Make sure the values of the
18133 muscles `action' and `prologue' are 0-terminated.
18134
18135 2001-12-10 Akim Demaille <akim@epita.fr>
18136
18137 Clean up GCC warnings.
18138
18139 * src/reader.c (copy_action): `buf' is not used.
18140 (parse_skel_decl): Be static.
18141 * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'.
18142 * src/options.h (create_long_option_table): Have a real prototype.
18143 * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete)
18144 (hash_delete_at): Return const void *.
18145 Adjust casts to preserve the const.
18146
18147 2001-12-10 Akim Demaille <akim@epita.fr>
18148
18149 * configure.in: Require 2.52g.
18150 M4 is not needed, but AUTOM4TE is.
18151 * m4/m4.m4: Remove.
18152 * tests/Makefile.am: Adjust.
18153
18154 2001-12-10 Akim Demaille <akim@epita.fr>
18155
18156 One structure for states is enough, even though theoretically
18157 there are LR(0) states and LALR(1) states.
18158
18159 * src/lalr.h (state_t): Remove.
18160 (state_table): Be state_t **, not state_t *.
18161 * src/state.h (core, CORE_ALLOC): Rename as...
18162 (state_t, STATE_ALLOC): this.
18163 Add the LALR(1) members: shifts, reductions, errs.
18164 * src/LR0.c (state_table): Rename as...
18165 (state_hash): this, to avoid name clashes with the global
18166 `state_table'.
18167 * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c
18168 * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust.
18169
18170 2001-12-10 Akim Demaille <akim@epita.fr>
18171
18172 Bison dumps core on bash.y.
18173 Reported by Pascal Bart.
18174
18175 * src/warshall.c (bitmatrix_print): New.
18176 (TC): Use it.
18177 When performing a transitive closure R(i, j) && R(j, k) => R(i, k),
18178 j must be the outer loop.
18179 * tests/regression.at (Broken Closure): New.
18180
18181 2001-12-05 Akim Demaille <akim@epita.fr>
18182
18183 * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
18184 its argument.
18185 Reported by Peter Hamorsky.
18186
18187 2001-12-05 Akim Demaille <akim@epita.fr>
18188
18189 * src/conflicts.c (err_table): Remove.
18190 (resolve_sr_conflict): Adjust.
18191 * src/lalr.h (state_t.reduction_table, state_t.shift_table):
18192 Rename as...
18193 (state_t.reductions, state_t.shifts): this.
18194
18195 2001-12-05 Akim Demaille <akim@epita.fr>
18196
18197 * src/reduce.c (reduce_grammar_tables): No longer disable the
18198 removal of useless rules via CPP but via `if (0)', so that the
18199 compiler still check the code is valid.
18200 For instance, it should have noticed `rline' no longer exists: use
18201 the `line' member of rule_t.
18202 * src/gram.c (dummy, rline): Remove, unused.
18203
18204 2001-12-05 Akim Demaille <akim@epita.fr>
18205
18206 * src/output.c (pack_vector): Use assert, not berror.
18207 * src/main.c (berror): Remove, unused.
18208
18209 2001-12-05 Akim Demaille <akim@epita.fr>
18210
18211 New experimental feature: if --verbose --trace output all the
18212 items of a state, not only its kernel.
18213
18214 * src/print.c (print_core): If `trace_flag', then invoke closure
18215 before outputting the items of the state (print_core is no longer
18216 a correct name them).
18217 (print_results): Invoke new_closure/free_closure if needed.
18218
18219 2001-12-05 Akim Demaille <akim@epita.fr>
18220
18221 * src/LR0.c (new_itemsets): Use nshifts only, not shiftcount.
18222 * src/closure.c, src/closure.h (itemsetsize): Rename as...
18223 (nitemset): for consistency with the rest of the project.
18224
18225 2001-12-05 Akim Demaille <akim@epita.fr>
18226
18227 * src/closure.c (print_closure): Improve.
18228 (closure): Use it for printing input and output.
18229
18230 2001-12-05 Akim Demaille <akim@epita.fr>
18231
18232 * src/closure.c (FIRSTS, FDERIVES): Adjust to reality: they are
18233 indexed by nonterminals.
18234
18235 2001-12-05 Akim Demaille <akim@epita.fr>
18236
18237 * src/warshall.c (TC, RTC): De-obsfucate (source reduced to 22% of
18238 what it was!).
18239 * src/warshall.h: Remove accidental duplication of the content.
18240
18241 2001-12-05 Akim Demaille <akim@epita.fr>
18242
18243 * src/closure.c (set_fderives): De-obfuscate.
18244
18245 2001-12-05 Akim Demaille <akim@epita.fr>
18246
18247 * src/closure.c (print_firsts, print_fderives): De-obfuscate.
18248
18249 2001-12-05 Akim Demaille <akim@epita.fr>
18250
18251 * src/closure.c (set_firsts): De-obfuscate.
18252
18253 2001-12-05 Akim Demaille <akim@epita.fr>
18254
18255 * src/output.c (action_row): De-obfuscate
18256 using the good o' techniques: arrays not pointers, variable
18257 locality, BITISSET, RESETBIT etc.
18258
18259 2001-12-05 Akim Demaille <akim@epita.fr>
18260
18261 Pessimize the code to simplify it: from now on, all the states
18262 have a valid SHIFTS, which NSHIFTS is possibly 0.
18263
18264 * src/LR0.c (shifts_new): Be global and move to..
18265 * src/state.c, src/state.h: here.
18266 * src/conflicts, src/lalr.c, src/output.c, src/print.c,
18267 * src/print_graph: Adjust.
18268
18269 2001-12-05 Akim Demaille <akim@epita.fr>
18270
18271 * src/state.h (SHIFT_DISABLE, SHIFT_IS_DISABLED): New.
18272 * src/conflicts.c: Use it.
18273 Restore a few missing `if (!SHIFT_IS_DISABLED)' which were
18274 incorrectly ``simplified''.
18275
18276 2001-12-05 Akim Demaille <akim@epita.fr>
18277
18278 * src/conflicts.c (flush_shift, resolve_sr_conflict): De-obfuscate
18279 using the good o' techniques: arrays not pointers, variable
18280 locality, BITISSET, RESETBIT etc.
18281
18282 2001-12-05 Akim Demaille <akim@epita.fr>
18283
18284 * src/state.h (SHIFT_SYMBOL): New.
18285 * src/conflicts.c: Use it to deobfuscate.
18286
18287 2001-12-05 Akim Demaille <akim@epita.fr>
18288
18289 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts)
18290 (print_reductions): De-obfuscate using the good o' techniques:
18291 arrays not pointers, variable locality, BITISSET.
18292
18293 2001-12-05 Akim Demaille <akim@epita.fr>
18294
18295 * src/conflicts.c (print_reductions): Arrays, not pointers.
18296 Use BITISSET.
18297
18298 2001-12-05 Akim Demaille <akim@epita.fr>
18299
18300 * src/conflicts.c (print_reductions): Pessimize, but clarify.
18301
18302 2001-12-05 Akim Demaille <akim@epita.fr>
18303
18304 * src/conflicts.c (print_reductions): Improve variable locality.
18305
18306 2001-12-05 Akim Demaille <akim@epita.fr>
18307
18308 * src/conflicts.c (print_reductions): Pessimize, but clarify.
18309
18310 2001-12-05 Akim Demaille <akim@epita.fr>
18311
18312 * src/conflicts.c (print_reductions): Improve variable locality.
18313
18314 2001-12-05 Akim Demaille <akim@epita.fr>
18315
18316 * src/state.h (SHIFT_IS_ERROR, SHIFT_IS_GOTO, SHIFT_IS_SHIFT): New.
18317 * src/lalr.c: Use them.
18318
18319 2001-12-05 Akim Demaille <akim@epita.fr>
18320
18321 * src/LR0.c (augment_automaton): Formatting changes.
18322 Better variable locality.
18323
18324 2001-12-05 Akim Demaille <akim@epita.fr>
18325
18326 * src/lalr.c (matrix_print): New.
18327 (transpose): Use it.
18328 Use arrays instead of pointers.
18329
18330 2001-12-05 Akim Demaille <akim@epita.fr>
18331
18332 * src/lalr.c (maxrhs): Move to...
18333 * src/gram.c, src/gram.h (ritem_longest_rhs): here.
18334 * src/lalr.c (build_relations): Adjust.
18335
18336 2001-12-05 Akim Demaille <akim@epita.fr>
18337
18338 * src/lalr.c (transpose): Free the memory allocated to the
18339 argument, as it is replaced by the results by the unique caller.
18340 (build_relations): Merely invoke transpose: it handles the memory
18341 deallocation.
18342 Improve variable locality.
18343 Avoid variables used as mere abbreviations.
18344 (compute_lookaheads): Use arrays instead of pointers.
18345
18346 2001-12-05 Akim Demaille <akim@epita.fr>
18347
18348 * src/lalr.c (initialize_F): Improve variable locality.
18349 Avoid variables used as mere abbreviations.
18350
18351 2001-12-05 Akim Demaille <akim@epita.fr>
18352
18353 * src/derives.c (print_derives): Display the ruleno.
18354 * src/lalr.c (initialize_F, transpose): Better variable locality
18355 to improve readability.
18356 Avoid variables used as mere abbreviations.
18357
18358 2001-12-05 Akim Demaille <akim@epita.fr>
18359
18360 * src/lalr.c (traverse): Use arrays instead of pointers.
18361
18362 2001-12-05 Akim Demaille <akim@epita.fr>
18363
18364 * src/nullable.c (set_nullable): Use a for loop to de-obfuscate
18365 the handling of squeue.
18366 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
18367
18368 2001-12-05 Akim Demaille <akim@epita.fr>
18369
18370 Because useless nonterminals are now kept alive (instead of being
18371 `destroyed'), we now sometimes examine them, and store information
18372 related to them. Hence we need to know their number, and adjust
18373 memory allocations.
18374
18375 * src/reduce.c, src/reduce.h (nuseless_nonterminals): No longer
18376 static.
18377 * src/LR0.c (allocate_itemsets): The memory allocated to
18378 `symbol_count' was used for two different purpose: once to count
18379 the number of occurrences of each symbol, and later reassigned to
18380 `shift_symbol', containing the symbol that can be shifted from a
18381 given state.
18382 Deobfuscate, i.e., allocate, use and free `symbol_count' here
18383 only, and...
18384 (new_itemsets): Allocate `shift_symbol' here.
18385 (allocate_itemsets): symbol_count includes useless nonterminals.
18386 Make room for them.
18387 (free_storage): Use `free', not `XFREE', for pointers that cannot
18388 be null.
18389
18390 2001-12-05 Akim Demaille <akim@epita.fr>
18391
18392 * src/nullable.c (set_nullable): Deobfuscate the handling of
18393 ritem.
18394 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
18395
18396 2001-12-05 Akim Demaille <akim@epita.fr>
18397
18398 * src/gram.c, src/gram.h (ritem_print): New.
18399 * src/gram.c (dummy): Remove, now there is actual code in gram.c.
18400 (This useless function was defined only to work around VMS linkers
18401 that can't handle compilation units with variables only).
18402 * src/reduce.c (dump_grammar): Use it to trace the construction of
18403 ritem.
18404
18405 2001-12-04 Paul Eggert <eggert@twinsun.com>
18406
18407 * src/bison.simple (union yyalloc): Change member names
18408 to be the same as the stack names.
18409 (yyparse): yyptr is now union yyalloc *, not char *.
18410 (YYSTACK_RELOCATE): Likewise. This avoids a GCC warning,
18411 and may generate better code on some machines.
18412 (yystpcpy): Use prototype if __STDC__ is defined, not just
18413 if __cplusplus is defined.
18414
18415 2001-11-30 Akim Demaille <akim@epita.fr>
18416
18417 * configure.in (WARNING_CFLAGS): Add -Werror when possible.
18418 (CFLAGS): Do not include the WARNING_CFLAGS here, since GNU
18419 Gettext doesn't compile cleanly, and dies with -Werror.
18420 * src/Makefile.am, lib/Makefile.am, tests/atlocal.in (CFLAGS):
18421 Include WARNING_CFLAGS here.
18422 * lib/xstrdup.c: Include xalloc.h, so that xstrdup be declared
18423 before being defined.
18424
18425 2001-11-27 Paul Eggert <eggert@twinsun.com>
18426
18427 * lib/quotearg.h (quotearg_n, quotearg_n_style):
18428 First arg is int, not unsigned.
18429 * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
18430 (SIZE_MAX, UINT_MAX): New macros.
18431 (quotearg_n_options): Abort if N is negative.
18432 Avoid overflow check on hosts where size_t is 64 bits and int
18433 is 32 bits, as overflow is impossible there.
18434 Fix off-by-one typo that caused unnecessary reallocation.
18435
18436 2001-11-29 Paul Eggert <eggert@twinsun.com>
18437
18438 Name space cleanup in generated parser.
18439
18440 * doc/bison.texinfo (Bison Parser): Discuss system headers
18441 and their effect on the user name space.
18442
18443 * src/bison.simple:
18444 (YYSTACK_ALLOC, YYSTACK_FREE, union yyalloc, YYSTACK_GAP_MAX,
18445 YYSTACK_BYTES, YYSTACK_RELOCATE): Do not define unless necessary,
18446 i.e. unless ! defined (yyoverflow) || defined (YYERROR_VERBOSE).
18447
18448 (YYSIZE_T): New macro. Use it instead of size_t, to avoid infringing
18449 on user names when possible.
18450
18451 (YYSTACK_USE_ALLOCA): Do not define; just use any existing defn.
18452 Simplify test for whather <alloca.h> exists.
18453
18454 (<stdlib.h>): Include if we will use malloc, and if standard C or C++.
18455
18456 (<stdio.h>): Include if YYDEBUG.
18457
18458 (yymemcpy): Renamed from __yy_memcpy. Do not define unless
18459 ! defined (yyoverflow) && ! defined (yymemcpy).
18460
18461 (yymemcpy, yyparse): Rename local variables as needed so that
18462 they all begin with 'yy'.
18463
18464 (yystrlen, yystpcpy): New functions.
18465
18466 (YY_DECL_NON_LSP_VARIABLES): Renamed from _YY_DECL_VARIABLES.
18467 All uses changed.
18468
18469 (yyparse): size_t -> YYSIZE_T. Use yystrlen and yystpcpy
18470 instead of relying on string.h functions. Use YYSTACK_ALLOC
18471 and YYSTACK_FREE instead of malloc and free.
18472
18473 2001-11-30 Akim Demaille <akim@epita.fr>
18474
18475 * src/bison.simple (YYSTYPE, YYLTYPE): Move their definitions
18476 before their first uses.
18477 (YYBISON, YYPURE): Move to the top of the output.
18478
18479 2001-11-30 Akim Demaille <akim@epita.fr>
18480
18481 * tests/reduce.at (Useless Nonterminals): Fix.
18482
18483 2001-11-30 Akim Demaille <akim@epita.fr>
18484
18485 * src/bison.simple (YYSTACK_FREE): Use `do {;} while (0)' as empty
18486 if body instead of `;' to pacify GCC's warnings.
18487
18488 2001-11-30 Akim Demaille <akim@epita.fr>
18489
18490 Instead of mapping the LHS of unused rules to -1, keep the LHS
18491 valid, but flag the rules as invalid.
18492
18493 * src/gram.h (rule_t): `useful' is a new member.
18494 * src/print.c (print_grammar): Adjust.
18495 * src/derives.c (set_derives): Likewise.
18496 * src/reader.c (packgram, reduce_output): Likewise.
18497 * src/reduce.c (reduce_grammar_tables): Likewise.
18498 * tests/reduce.at (Underivable Rules, Useless Rules): New.
18499
18500 2001-11-30 Akim Demaille <akim@epita.fr>
18501
18502 * src/reduce.c (reduce_output): Formatting changes.
18503 * src/print.c (print_results, print_grammar): Likewise.
18504 * tests/regression.at (Rule Line Numbers)
18505 (Solved SR Conflicts, Unresolved SR Conflicts): Adjust.
18506
18507 2001-11-30 Akim Demaille <akim@epita.fr>
18508
18509 * src/reduce.c (nonterminals_reduce): Instead of throwing away
18510 useless nonterminals, move them at the end of the symbol arrays.
18511 (reduce_output): Adjust.
18512 * tests/reduce.at (Useless Nonterminals): Adjust.
18513
18514 2001-11-30 Akim Demaille <akim@epita.fr>
18515
18516 * src/reduce.c: Various comment/formatting changes.
18517 (nonterminals_reduce): New, extracted from...
18518 (reduce_grammar_tables): here.
18519 (reduce_grammar): Call nonterminals_reduce.
18520
18521 2001-11-29 Paul Eggert <eggert@twinsun.com>
18522
18523 * src/bison.simple (YYSTACK_REALLOC): Remove.
18524 (YYSTACK_ALLOC): Resurrect this macro, with its old meaning.
18525 (YYSTACK_FREE, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYSTACK_RELOCATE):
18526 New macros.
18527 (union yyalloc): New type.
18528 (__yy_memcpy): Last arg is size_t, not unsigned int, to remove
18529 an arbitrary restriction on hosts where size_t is wider than int.
18530
18531 (yyparse): Don't dump core if alloca or malloc fails; instead, report
18532 a parser stack overflow. Allocate just one block of memory for all
18533 three stacks, instead of allocating three blocks; this typically is
18534 faster and reduces fragmentation.
18535
18536 Do not limit the number of items in the stack to a value that fits
18537 in 'int', as this is an arbitrary limit on hosts with 64-bit
18538 size_t and 32-bit int.
18539
18540 2001-11-29 Marc Autret <autret_m@epita.fr>
18541
18542 * tests/calc.at [AT_DATA_CALC_Y]: Use %error-verbose instead
18543 of defining YYERROR_VERBOSE.
18544 [AT_DATA]: $4 is now out of C declarations in the prologue.
18545
18546 2001-11-28 Marc Autret <autret_m@epita.fr>
18547
18548 * src/reader.c (parse_dquoted_param): New.
18549 (parse_skel_decl): Use it.
18550 * src/lex.h: Add its prototype.
18551 * src/lex.c (literalchar): Become not static.
18552
18553 2001-11-28 Marc Autret <autret_m@epita.fr>
18554
18555 * src/output.h: And put its extern declaration here.
18556 * src/output.c (error_verbose): Define here.
18557 (prepare): Echo name modification.
18558 * src/getargs.h: Clean its extern declaration.
18559 * src/getargs.c (error_verbose_flag): Remove.
18560 (getargs): Remove case 'e'.
18561 * src/options.c (option_table): 'error-verbose' is now seen as simple
18562 percent option.
18563 Include output.h.
18564
18565 * src/reader.c (read_declarations): Remove case tok_include.
18566 (parse_include_decl): Remove.
18567 * src/lex.h (token_t): Remove tok_include.
18568 * src/options.c (option_table): 'include' is now a simple command line
18569 option.
18570
18571 2001-11-28 Marc Autret <autret_m@epita.fr>
18572
18573 * src/bison.simple: Adjust muscle names.
18574 * src/muscle_tab.c (muscle_init): Also rename the muscles.
18575 * src/output.c (prepare): s/_/-/ for the muscles names.
18576 (output_parser): When scanning for a muscle, allow '-' instead of '_'.
18577
18578 2001-11-28 Marc Autret <autret_m@epita.fr>
18579
18580 * src/bison.simple: Fix debug.
18581 [YYERROR_VERBOSE]: Re-integrate as an internal macro.
18582
18583 2001-11-28 Akim Demaille <akim@epita.fr>
18584
18585 * src/LR0.c (shifts_new): New.
18586 (save_shifts, insert_start_shift, augment_automaton): Use it.
18587
18588 2001-11-28 Akim Demaille <akim@epita.fr>
18589
18590 * src/closure.c (closure): `b' and `ruleno' denote the same value:
18591 keep ruleno only.
18592
18593 2001-11-28 Akim Demaille <akim@epita.fr>
18594
18595 * src/closure.c (closure): Instead of looping over word in array
18596 then bits in words, loop over bits in array.
18597
18598 2001-11-28 Akim Demaille <akim@epita.fr>
18599
18600 * src/closure.c (closure): No longer optimize the special case
18601 where all the bits of `ruleset[r]' are set to 0, to make the code
18602 clearer.
18603
18604 2001-11-28 Akim Demaille <akim@epita.fr>
18605
18606 * src/closure.c (closure): `r' and `c' are new variables, used to
18607 de-obfuscate accesses to RULESET and CORE.
18608
18609 2001-11-28 Akim Demaille <akim@epita.fr>
18610
18611 * src/reduce.c (reduce_print): Use ngettext.
18612 (dump_grammar): Improve the trace accuracy.
18613
18614 2001-11-28 Akim Demaille <akim@epita.fr>
18615
18616 * src/reduce.c (dump_grammar): Don't translate trace messages.
18617
18618 2001-11-28 Akim Demaille <akim@epita.fr>
18619
18620 * tests/reduce.at (Useless Terminals, Useless Nonterminals): New.
18621 * src/reduce.c (reduce_grammar_tables): Do not free useless tags,
18622 as all tags are free'ed afterwards.
18623 From Enrico Scholz.
18624
18625 2001-11-27 Paul Eggert <eggert@twinsun.com>
18626
18627 * src/bison.simple (YYSTACK_REALLOC): Fix typo that caused us to
18628 use alloca when we didn't want to, and vice versa.
18629
18630 2001-11-27 Marc Autret <autret_m@epita.fr>
18631
18632 * src/muscle_tab.c (muscle_init): Remove 'verbose' muscle
18633 initialization.
18634 * src/output.c (prepare): Remove its update.
18635
18636 2001-11-27 Marc Autret <autret_m@epita.fr>
18637
18638 * tests/torture.at [AT_DATA]: Remove YYERROR_VERBOSE definition.
18639 Use %error-verbose.
18640
18641 2001-11-27 Marc Autret <autret_m@epita.fr>
18642
18643 * src/bison.simple: Remove YYERROR_VERBOSE using.
18644 Use %%error_verbose.
18645 (yyparse): Likewise.
18646 * src/output.c (prepare): Give its final value.
18647 * src/muscle_tab.c (muscle_init): Init new muscle 'error_verbose'.
18648 * src/getargs.h: Add its extern declaration.
18649 * src/getargs.c (error_verbose_flag): New int.
18650 (getargs): Update to catch new case.
18651 * src/options.c (option_table): 'error-verbose' is a new option.
18652 (shortopts): Update.
18653
18654 2001-11-27 Akim Demaille <akim@epita.fr>
18655
18656 * src/system.h: Use intl/libgettext.h.
18657 * src/Makefile.am (INCLUDES): Add -I $(top_srcdir).
18658
18659 2001-11-27 Akim Demaille <akim@epita.fr>
18660
18661 * tests/torture.at (Exploding the Stack Size with Malloc):
18662 s/YYSTACK_USE_ALLOCA_ALLOCA/YYSTACK_USE_ALLOCA/.
18663
18664 2001-11-27 Akim Demaille <akim@epita.fr>
18665
18666 * src/files.c: Include error.h.
18667 Reported by Hans Aberg.
18668
18669 2001-11-26 Marc Autret <autret_m@epita.fr>
18670
18671 * src/reader.c (parse_include_decl): New, not yet implemented.
18672 (read_declarations): Add case tok_include.
18673 * src/getargs.h (include): Add its extern definition.
18674 * src/getargs.c (include): New const char *.
18675 (getargs): Add case '-I'.
18676 * src/options.c (option_table): Add include as command line and
18677 percent option.
18678 * src/lex.h (token_t): Add tok_include.
18679
18680 2001-11-26 Akim Demaille <akim@epita.fr>
18681
18682 * src/reader.c (readgram): Make sure rules for mid-rule actions
18683 have a lineno equal to that of their host rule.
18684 Reported by Hans Aberg.
18685 * tests/regression.at (Rule Line Numbers): New.
18686
18687 2001-11-26 Akim Demaille <akim@epita.fr>
18688
18689 * src/LR0.c (allocate_itemsets): kernel_size contains ints, not
18690 size_ts.
18691
18692 2001-11-26 Akim Demaille <akim@epita.fr>
18693
18694 * src/complain.c, src/complain.h (error): Remove, provided by
18695 lib/error.[ch].
18696
18697 2001-11-26 Akim Demaille <akim@epita.fr>
18698
18699 * src/reader.c (read_declarations): Don't abort on tok_illegal,
18700 issue an error message.
18701 * tests/regression.at (Invalid %directive): New.
18702 Reported by Hans Aberg.
18703
18704 2001-11-26 Akim Demaille <akim@epita.fr>
18705
18706 * configure.in: Invoke AC_FUNC_OBSTACK and AC_FUNC_ERROR_AT_LINE.
18707 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
18708
18709 2001-11-26 Akim Demaille <akim@epita.fr>
18710
18711 * src/conflicts.c (conflicts_print): Don't complain at all when
18712 there are no reduce/reduce conflicts, and as many shift/reduce
18713 conflicts as expected.
18714 * tests/regression.at (%expect right): Adjust.
18715
18716 2001-11-23 Akim Demaille <akim@epita.fr>
18717
18718 * lib/alloca.c: Update, from fileutils.
18719
18720 2001-11-23 Akim Demaille <akim@epita.fr>
18721
18722 * lib/Makefile.am (libbison_a_LIBADD): Add @ALLOCA@.
18723
18724 2001-11-23 Akim Demaille <akim@epita.fr>
18725
18726 * src/system.h: Include alloca.h.
18727 * src/main.c (main) [C_ALLOCA]: Call alloca (0).
18728
18729 2001-11-23 Akim Demaille <akim@epita.fr>
18730
18731 * src/print_graph.c (print_actions): Remove `rule', unused.
18732 * src/LR0.c (kernel_size): Contain `int' instead of `size_t' to
18733 pacify GCC's signed < unsigned warnings.
18734 * src/closure.c (itemsetsize): Likewise.
18735 * src/reader.c (symbol_list_new): Static.
18736
18737 2001-11-23 Akim Demaille <akim@epita.fr>
18738
18739 Attaching lineno to buckets is stupid, since only one copy of each
18740 symbol is kept, only the line of the first occurrence is kept too.
18741
18742 * src/symtab.h, src/symtab.c (bucket): Remove the line member.
18743 * src/reader.c (rline_allocated): Remove, unused.
18744 (symbol_list): Have a `line' member.
18745 (symbol_list_new): New.
18746 (readgram): Use it.
18747 * src/print.c (print_grammar): Output the rule line numbers.
18748 * tests/regression.at (Solved SR Conflicts)
18749 (Unresolved SR Conflicts): Adjust.
18750 Reported by Hans Aberg.
18751
18752 2001-11-22 Marc Autret <autret_m@epita.fr>
18753
18754 * src/bison.simple [YYERROR_VERBOSE]: Force its value to be 1 or 0.
18755
18756 2001-11-22 Marc Autret <autret_m@epita.fr>
18757
18758 * src/muscle_tab.c (muscle_init): Remove initialization of
18759 skeleton muscle.
18760 * src/output.c (output_master_parser): Do it here.
18761
18762 2001-11-20 Akim Demaille <akim@epita.fr>
18763
18764 * po/sv.po: New.
18765 * configure.in (ALL_LINGUAS): Adjust.
18766 * po/POTFILE.in: Remove `nullable.c' and `derives.c' which no
18767 longer contains strings to translate.
18768
18769 2001-11-19 Akim Demaille <akim@epita.fr>
18770
18771 * src/conflicts.c (conflicts_print): Add a missing \n.
18772
18773 2001-11-19 Akim Demaille <akim@epita.fr>
18774
18775 * src/nullable.c (nullable_print): New.
18776 (set_nullable): Call it when tracing.
18777 Better locality of variables.
18778
18779 2001-11-19 Akim Demaille <akim@epita.fr>
18780
18781 * src/print.c (print_actions): Better locality of variables.
18782
18783 2001-11-19 Akim Demaille <akim@epita.fr>
18784
18785 * src/derives.c (print_derives): Fix and enrich.
18786 * src/closure.c (print_fderives): Likewise.
18787
18788 2001-11-19 Akim Demaille <akim@epita.fr>
18789
18790 * src/closure.c (itemsetend): Remove, replaced with...
18791 (itemsetsize): new.
18792
18793 2001-11-19 Akim Demaille <akim@epita.fr>
18794
18795 * src/LR0.c (kernel_end): Remove, replaced with...
18796 (kernel_size): new.
18797
18798 2001-11-19 Akim Demaille <akim@epita.fr>
18799
18800 * src/conflicts.c (set_conflicts): Use arrays instead of pointers
18801 to clarify.
18802
18803 2001-11-19 Akim Demaille <akim@epita.fr>
18804
18805 * src/closure.c (closure): Use arrays instead of pointers to clarify.
18806
18807 2001-11-19 Akim Demaille <akim@epita.fr>
18808
18809 * src/closure.c, src/derives.c, src/nullable.c: Adjust various
18810 trace messages.
18811 * src/LR0.c: Likewise.
18812 (allocate_itemsets): Use arrays instead of pointers to clarify.
18813
18814 2001-11-19 Akim Demaille <akim@epita.fr>
18815
18816 * src/getargs.c (statistics_flag): Replace with...
18817 (trace_flag): New.
18818 (longopts): Accept --trace instead of --statistics.
18819 * src/getargs.h, src/options.c: Adjust.
18820 * src/LR0.c, src/closure.c, src/derives.c, src/nullable.c,
18821 * src/reduce.c: Use trace_flags instead of the CPP conditional TRACE.
18822
18823 2001-11-19 Akim Demaille <akim@epita.fr>
18824
18825 * src/LR0.c (new_itemsets, get_state): Use more arrays and fewer
18826 pointers to clarify the code.
18827 (save_reductions, save_shifts): Factor common parts of alternatives.
18828
18829 2001-11-19 Akim Demaille <akim@epita.fr>
18830
18831 * src/LR0.c (new_state, get_state): Complete TRACE code.
18832 * src/closure.c: Include `reader.h' to get `tags', needed by the
18833 trace code.
18834 Rename the conditional DEBUG as TRACE.
18835 Output consistently TRACEs to stderr, not stdout.
18836 * src/derives.c: Likewise.
18837 * src/reduce.c: (inaccessable_symbols): Using if is better style
18838 than goto.
18839 Use `#if TRACE' instead of `#if 0' for tracing code.
18840
18841 2001-11-19 Akim Demaille <akim@epita.fr>
18842
18843 * src/system.h (LIST_FREE, shortcpy): New.
18844 * src/LR0.c: Use them.
18845 * src/output.c (free_itemsets, free_reductions, free_shifts):
18846 Remove, replaced by LIST_FREE.
18847
18848 2001-11-19 Akim Demaille <akim@epita.fr>
18849
18850 * src/state.h (CORE_ALLOC, SHIFTS_ALLOC, ERRS_ALLOC)
18851 (REDUCTIONS_ALLOC): New.
18852 * src/LR0.c, src/conflicts.c: Use them to de-obfuscate memory
18853 allocation.
18854
18855 2001-11-19 Akim Demaille <akim@epita.fr>
18856
18857 * src/LR0.c (new_state): Complete trace code.
18858 * src/nullable.c (set_nullable): Don't translate traces.
18859
18860 2001-11-19 Akim Demaille <akim@epita.fr>
18861
18862 * src/print_graph.c (print_core): Better locality of variables.
18863 * src/print.c (print_core): Likewise.
18864
18865 2001-11-19 Akim Demaille <akim@epita.fr>
18866
18867 * src/vcg.c: You do the output, so you are responsible of the
18868 handling of VCG syntax, in particular: use quotearg.
18869 * src/print_graph.c: Don't.
18870 (print_actions): Don't output the actions as part of the nodes,
18871 since that's the job of the edges.
18872 (print_state): Don't output by hand: fill the node description,
18873 and ask for its output.
18874
18875 2001-11-19 Akim Demaille <akim@epita.fr>
18876
18877 * src/bison.simple (yyparse): When verbosely reporting an error,
18878 no longer put additional quotes around token names.
18879 * tests/calc.at: Adjust.
18880
18881 2001-11-19 Akim Demaille <akim@epita.fr>
18882
18883 * src/symtab.h, src/symtab.c: `line' is a new member of `bucket'.
18884 * src/reader.c (record_rule_lines, rline, rline_allocated): Remove.
18885 * src/output.c: Adjust.
18886
18887 2001-11-19 Akim Demaille <akim@epita.fr>
18888
18889 * src/gram.h (rprec, rprecsym, rassoc): Remove, now part of...
18890 (rule_t): this.
18891 * src/conflicts.c, src/reader.c, src/reduce.c: Adjust.
18892
18893 2001-11-19 Akim Demaille <akim@epita.fr>
18894
18895 * src/gram.h (rule_t): New.
18896 (rule_table): New.
18897 (rrhs, rlhs): Remove, part of state_t.
18898 * src/print_graph.c, src/closure.c, src/conflicts.c, src/derives.c,
18899 * src/lalr.c, src/nullable.c, src/output.c, src/print.c,
18900 * src/reader.c, src/reduce.c: Adjust.
18901
18902 2001-11-19 Akim Demaille <akim@epita.fr>
18903
18904 * src/reader.c (symbols_output): New, extracted from...
18905 (packsymbols): Here.
18906 (reader): Call it.
18907
18908 2001-11-19 Akim Demaille <akim@epita.fr>
18909
18910 * src/lalr.c (set_maxrhs, maxrhs): Remove, replaced with...
18911 (maxrhs): this new function.
18912
18913 2001-11-19 Akim Demaille <akim@epita.fr>
18914
18915 * src/lalr.c (F): New macro to access the variable F.
18916 Adjust.
18917
18918 2001-11-19 Akim Demaille <akim@epita.fr>
18919
18920 * src/lalr.h (LA): New macro to access the variable LA.
18921 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
18922 * src/lalr.c: Adjust.
18923
18924 2001-11-19 Akim Demaille <akim@epita.fr>
18925
18926 * src/lalr.c (initialize_LA): Only initialize LA. Let...
18927 (set_state_table): handle the `lookaheads' members.
18928
18929 2001-11-19 Akim Demaille <akim@epita.fr>
18930
18931 * src/lalr.h (lookaheads): Removed array, whose contents is now
18932 a member of...
18933 (state_t): this structure.
18934 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
18935 Adjust.
18936
18937 2001-11-19 Akim Demaille <akim@epita.fr>
18938
18939 * src/lalr.h (consistent): Removed array, whose contents is now
18940 a member of...
18941 (state_t): this structure.
18942 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
18943 Adjust.
18944
18945 2001-11-19 Akim Demaille <akim@epita.fr>
18946
18947 * src/lalr.h (reduction_table, shift_table): Removed arrays, whose
18948 contents are now members of...
18949 (state_t): this structure.
18950 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
18951 Adjust.
18952
18953 2001-11-19 Akim Demaille <akim@epita.fr>
18954
18955 * src/lalr.h (state_t): New.
18956 (state_table): Be a state_t * instead of a core **.
18957 (accessing_symbol): Remove, part of state_t.
18958 * src/lalr.c: Adjust.
18959 (set_accessing_symbol): Merge into...
18960 (set_state_table): this.
18961 * src/print_graph.c, src/conflicts.c: Adjust.
18962
18963 2001-11-14 Akim Demaille <akim@epita.fr>
18964
18965 * tests/calc.at, tests/output.at, tests/regression.at,
18966 * tests/testsuite.at, tests/torture.at: Rely on Autotest 2.52g:
18967 now the tests are run in private dirs, therefore AC_CLEANUP and
18968 family can be simplified to 0-ary.
18969 * tests/atlocal.in: Now that we run `elsewhere' than in tests/,
18970 use abs. path to find config.h.
18971 * tests/calc.at (AT_CHECK_CALC): Don't try to check the compiler's
18972 stderr, there can be way too much random noise.
18973 Instead pass -Werror to GCC and rely on the exit status.
18974 Reported by Wolfram Wagner.
18975
18976 2001-11-14 Akim Demaille <akim@epita.fr>
18977
18978 * src/bison.simple (yyparse): Let yyls1, yyss1 and yyvs1 be
18979 defined only if yyoverflow is defined, to avoid `warning: unused
18980 variable `yyvs1''.
18981 Reported by The Test Suite.
18982
18983 2001-11-14 Akim Demaille <akim@epita.fr>
18984
18985 * src/print.c: Include reduce.h.
18986 Reported by Hans Aberg.
18987
18988 2001-11-14 Akim Demaille <akim@epita.fr>
18989
18990 * src/lex.c, src/lex.h (token_buffer, unlexed_token_buffer):
18991 Revert a previous patch: these are really const.
18992 * src/conflicts.c (conflict_report): Additional useless pair of
18993 braces to pacify GCC's warnings for `if () if () {} else {}'.
18994 * src/lex.c (parse_percent_token): Replace equal_offset with
18995 arg_offset.
18996 arg is const.
18997 Be sure to strdup `arg' when used, since there is no reason for
18998 token_buffer not to change.
18999
19000 2001-11-14 Akim Demaille <akim@epita.fr>
19001
19002 * src/system.h (EXIT_SUCCESS, EXIT_FAILURE): Ensure a proper
19003 definition.
19004 * src/main.c (main): Use them.
19005 Suggested by Hans Aberg.
19006
19007 2001-11-12 Akim Demaille <akim@epita.fr>
19008
19009 * src/system.h (ngettext): Now that we use ngettext, be sure to
19010 provide a default definition when NLS are not used.
19011
19012 2001-11-12 Akim Demaille <akim@epita.fr>
19013
19014 * doc/bison.texinfo: Use `$' as shell prompt, not `%'.
19015 Use @kbd to denote user input.
19016 (Language and Grammar): ANSIfy the example.
19017 Adjust its layout for info/notinfo.
19018 (Location Tracking Calc): Output error messages to stderr.
19019 Output locations in a more GNUtically correct way.
19020 Fix a couple of Englishos.
19021 Adjust @group/@end group pairs.
19022
19023 2001-11-12 Akim Demaille <akim@epita.fr>
19024
19025 %expect was not functioning at all.
19026
19027 * src/conflicts.c (expected_conflicts): Set to -1.
19028 (conflict_report): Use ngettext.
19029 (conflicts_print): Check %expect and make its violation an error.
19030 * doc/bison.texinfo (Expect Decl): Adjust.
19031 * configure.in (AM_GNU_GETTEXT): Ask for ngettext.
19032 * tests/regression.at (%expect not enough, %expect right)
19033 (%expect too much): New.
19034
19035 2001-11-12 Akim Demaille <akim@epita.fr>
19036
19037 * tests/regression.at (Conflicts): Rename as...
19038 (Unresolved SR Conflicts): this.
19039 (Solved SR Conflicts): New.
19040
19041 2001-11-12 Akim Demaille <akim@epita.fr>
19042
19043 * src/reduce.c (print_results): Rename as...
19044 (reduce_output): This.
19045 Output to OUT, passed as argument, instead of output_obstack.
19046 (dump_grammar): Likewise.
19047 (reduce_free): New.
19048 Also free V1.
19049 (reduce_grammar): No longer call reduce_output, since...
19050 * src/print.c (print_results): do it.
19051 * src/main.c (main): Call reduce_free;
19052
19053 2001-11-12 Akim Demaille <akim@epita.fr>
19054
19055 * src/conflicts.c (print_reductions): Accept OUT as argument.
19056 Output to it, not to output_obstack.
19057 * src/print.c (print_actions): Adjust.
19058
19059 2001-11-12 Akim Demaille <akim@epita.fr>
19060
19061 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts): Return
19062 the result instead of using...
19063 (src_total, rrc_total, src_count, rrc_count): Remove.
19064 (any_conflicts): Remove.
19065 (print_conflicts): Split into...
19066 (conflicts_print, conflicts_output): New.
19067 * src/conflicts.h: Adjust.
19068 * src/main.c (main): Invoke both conflicts_output and conflicts_print.
19069 * src/print.c (print_grammar): Issue `\n' between two rules.
19070 * tests/regression.at (Conflicts): New.
19071 Reported by Tom Lane.
19072
19073 2001-11-12 Akim Demaille <akim@epita.fr>
19074
19075 * tests/regression.at (Invalid input): Remove, duplicate with
19076 ``Invalid input: 1''.
19077
19078 2001-11-12 Akim Demaille <akim@epita.fr>
19079
19080 * tests/torture.at (AT_DATA_STACK_TORTURE)
19081 (Exploding the Stack Size with Alloca)
19082 (Exploding the Stack Size with Malloc): New.
19083
19084 2001-11-12 Akim Demaille <akim@epita.fr>
19085
19086 * src/bison.simple (YYSTACK_REALLOC): New.
19087 (yyparse) [!yyoverflow]: Use it and free the old stack.
19088 Reported by Per Allansson.
19089
19090 2001-11-12 Pascal Bart <pascal.bart@epita.fr>
19091
19092 * src/bison.simple: Define type yystype instead of YYSTYPE, and
19093 define CPP macro, which substitute YYSTYPE by yystype.
19094 * src/reader.c (parse_union_decl): Output yystype/YYSTYPE as we do
19095 with yyltype/YYLTYPE. This allows inclusion of the generated
19096 header within the parser if the compiler, such as GGC, accepts
19097 multiple equivalent #defines.
19098 From Akim.
19099
19100 2001-11-05 Akim Demaille <akim@epita.fr>
19101
19102 * src/reader.c (symbols_output): New, extracted from...
19103 (packsymbols): here.
19104 (reader): Adjust.
19105
19106 2001-11-05 Akim Demaille <akim@epita.fr>
19107
19108 * src/lex.c (parse_percent_token): s/quotearg/quote/.
19109
19110 2001-11-05 Akim Demaille <akim@epita.fr>
19111
19112 * tests/regression.at (AT_TEST_CPP_GUARD_H): Adjust the clean up
19113 pattern.
19114
19115 2001-11-05 Akim Demaille <akim@epita.fr>
19116
19117 * src/options.h (struct option_table_struct): set_flags is void*.
19118 * src/options.c (longopts): Support `--output' and `%output'.
19119 (usage): Adjust.
19120 * src/lex.h (tok_setopt): Remove, replaced with...
19121 (tok_intopt, tok_stropt): these new guys.
19122 * src/lex.c (getopt.h): Not needed.
19123 (token_buffer, unlexed_token_buffer): Not const.
19124 (percent_table): Promote `-' over `_' in directive names.
19125 Active `%name-prefix', `file-prefix', and `output'.
19126 (parse_percent_token): Accept possible arguments to directives.
19127 Promote `-' over `_' in directive names.
19128
19129 2001-11-04 Akim Demaille <akim@epita.fr>
19130
19131 * doc/bison.texinfo (Decl Summary): Split the list into
19132 `directives for grammars' and `directives for bison'.
19133 Sort'em.
19134 Add description of `%name-prefix', `file-prefix', and `output'.
19135 Promote `-' over `_' in directive names.
19136 (Bison Options): s/%locactions/%locations/. Nice Freudian slip.
19137 Simplify the description of `--name-prefix'.
19138 Promote `-' over `_' in directive names.
19139 Promote `--output' over `--output-file'.
19140 Fix the description of `--defines'.
19141 * tests/output.at: Exercise %file-prefix and %output.
19142
19143 2001-11-02 Akim Demaille <akim@epita.fr>
19144
19145 * doc/refcard.tex: Update.
19146
19147 2001-11-02 Akim Demaille <akim@epita.fr>
19148
19149 * src/symtab.h (SUNDEF): New.
19150 * src/symtab.c (bucket_new): Init user_token_number to SUNDEF to
19151 stand for `uninitialized', instead of 0.
19152 * src/reader.c (packsymbols, parse_thong_decl): Adjust.
19153 * src/lex.c (lex): Adjust.
19154
19155 * tests/calc.at (_AT_DATA_CALC_Y): Declare a token for EOF.
19156 Number it 0.
19157 Let yylex return it instead of a plain 0.
19158 Reported by Dick Streefland.
19159
19160 2001-11-02 Akim Demaille <akim@epita.fr>
19161
19162 * tests/regression.at (Mixing %token styles): New test.
19163
19164 2001-11-02 Akim Demaille <akim@epita.fr>
19165
19166 * src/reader.c (parse_thong_decl): Formatting changes.
19167 (token_translations_init): New, extracted from...
19168 (packsymbols): Here.
19169 Adjust.
19170
19171 2001-11-01 Akim Demaille <akim@epita.fr>
19172
19173 * tests/regression.at (AT_TEST_CPP_GUARD_H): New.
19174 Check that `9foo.y' produces correct cpp guards.
19175 * src/files.c (compute_header_macro): Prepend `BISON_' to CPP
19176 guards.
19177 Reported by Wwp.
19178
19179 2001-11-01 Akim Demaille <akim@epita.fr>
19180
19181 * tests/regression.at (Invalid input: 2): New.
19182 * src/lex.c (unlexed_token_buffer): New.
19183 (lex, unlex): Adjust: when unlexing, be sure to save token_buffer
19184 too.
19185 Reported by Wwp.
19186
19187 2001-11-01 Akim Demaille <akim@epita.fr>
19188
19189 * tests/calc.at: Catch up with 1.30.
19190 * configure.in: Bump to 1.49a.
19191 Adjust to newer Autotest.
19192
19193 2001-10-19 Pascal Bart <pascal.bart@epita.fr>
19194
19195 * src/conflicts.c: Move global variables rrc_total and src_total ...
19196 (print_conflicts): here.
19197 * src/output.c (output): Free global variable user_toknums.
19198 * src/lex.c (token_obstack): Become static.
19199
19200 2001-10-18 Akim Demaille <akim@epita.fr>
19201
19202 * tests/atlocal.in (GCC): Add.
19203 * tests/calc.at: s/m4_match/m4_bmatch/.
19204 s/m4_patsubst/m4_bpatsubst/.
19205 (AT_CHECK_CALC): Check the compiler's stderr only if it's GCC.
19206 * configure.in: AC_SUBST(GCC).
19207
19208 2001-10-14 Marc Autret <autret_m@epita.fr>
19209
19210 * src/options.c (create_long_option_table): Fix.
19211
19212 2001-10-10 Akim Demaille <akim@epita.fr>
19213
19214 * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
19215
19216 2001-10-04 Akim Demaille <akim@epita.fr>
19217
19218 * src/reader.c (parse_union_decl): Push the caracters in
19219 union_obstack, not attrs_obstack.
19220
19221 2001-10-04 Akim Demaille <akim@epita.fr>
19222
19223 Merge in the branch 1.29.
19224
19225 * src/reader.c (packsymbols): Use a temporary obstack for
19226 `%%tokendef', since output_stack is already used elsewhere.
19227
19228 2001-10-02 Akim Demaille <akim@epita.fr>
19229
19230 Bump 1.29d.
19231
19232 2001-10-02 Akim Demaille <akim@epita.fr>
19233
19234 Version 1.29c.
19235
19236 2001-10-02 Akim Demaille <akim@epita.fr>
19237
19238 * tests/regression.at (Invalid CPP headers): New.
19239 From Alexander Belopolsky.
19240 * src/files.c (compute_header_macro): Map non alnum chars to `_'.
19241
19242 2001-10-02 Akim Demaille <akim@epita.fr>
19243
19244 * tests/regression.at (Invalid input): New.
19245 * src/lex.c (lex): Be sure to set `token_buffer' in any case.
19246 Reported by Shura.
19247
19248 2001-10-02 Akim Demaille <akim@epita.fr>
19249
19250 * tests/calc.at: Now that --debug works, the tests must be adjusted.
19251
19252 2001-10-02 Akim Demaille <akim@epita.fr>
19253
19254 * src/output.c (output_parser): Assert `skeleton'.
19255 * src/files.c (skeleton_find): Look harder for skeletons on DOSish
19256 systems.
19257 From Shura.
19258
19259 2001-10-01 Marc Autret <autret_m@epita.fr>
19260
19261 * src/lex.h: Echo modifications.
19262 * src/lex.c (unlex): Parameter is now token_t.
19263 From Hans Aberg.
19264
19265 2001-10-01 Marc Autret <autret_m@epita.fr>
19266
19267 * src/main.c: Include lex.h.
19268 From Hans Aberg.
19269
19270 2001-09-29 Akim Demaille <akim@epita.fr>
19271
19272 * src/getargs.c (longopts): `--debug' is `-t', not `-d'.
19273
19274 2001-09-28 Akim Demaille <akim@epita.fr>
19275
19276 * tests/testsuite.at: Update to newer Autotest.
19277 * tests/Makefile.am (EXTRA_DIST): bison is not to be shipped.
19278
19279 2001-09-27 Akim Demaille <akim@epita.fr>
19280
19281 Position independent wrapper.
19282
19283 * tests/bison: Remove.
19284 * tests/bison.in: New.
19285 * configure.in: Adjust.
19286
19287 2001-09-27 Paul Eggert <eggert@twinsun.com>
19288
19289 Port quotearg fixes from tar 1.13.24.
19290
19291 * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
19292 tm to be declared.
19293 (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
19294 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
19295
19296 * m4/Makefile.am (EXTRA_DIST): Add mbrtowc.m4.
19297 * m4/mbrtowc.m4: New file.
19298 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit and stddef.h.
19299 Use jm_FUNC_MBRTOWC instead of AC_CHECK_FUNCS(mbrtowc).
19300
19301 2001-09-27 Akim Demaille <akim@epita.fr>
19302
19303 Bump to 1.29c.
19304
19305 2001-09-27 Akim Demaille <akim@epita.fr>
19306
19307 Version 1.29b.
19308
19309 2001-09-25 Akim Demaille <akim@epita.fr>
19310
19311 * src/system.h: Include `xalloc.h'.
19312 Remove it from the C files.
19313 * src/files.c (output_files): Free the obstacks.
19314 * src/lex.c (init_lex): Rename as...
19315 (lex_init): this.
19316 (lex_free): New.
19317 * src/main.c (main): Use it.
19318
19319 2001-09-24 Marc Autret <autret_m@epita.fr>
19320
19321 * src/vcg.c (open_edge, close_edge, open_node, close_node): Change
19322 to output informations in fout (FILE*).
19323 (open_graph, close_graph): Likewise.
19324 (output_graph, output_edge, output_node): Likewise.
19325 * src/vcg.h: Update function prototypes.
19326 * src/print_graph.c (print_graph): Open output graph file.
19327 (print_actions): Adjust.
19328 * src/files.h: Remove extern declaration.
19329 * src/files.c: Remove graph_obstack declaration.
19330 (open_files): Remove graph_obstack initialization.
19331 (output_files): Remove graph_obstack saving.
19332
19333 2001-09-24 Marc Autret <autret_m@epita.fr>
19334
19335 * src/files.c (compute_output_file_names): Fix.
19336
19337 2001-09-24 Marc Autret <autret_m@epita.fr>,
19338 Akim Demaille <akim@epita.fr>
19339
19340 * src/reader.c (reader): Remove call to free_symtab ().
19341 * src/main.c (main): Call it here.
19342 Include symtab.h.
19343 * src/conflicts.c (initialize_conflicts): Rename as...
19344 (solve_conflicts): this.
19345 * src/print.c (print_core, print_actions, print_state)
19346 (print_grammar): Dump to a file instead a `output_obstack'.
19347 (print_results): Dump `output_obstack', and then proceed with the
19348 FILE *.
19349 * src/files.c (compute_output_file_names, close_files): New.
19350 (output_files): Adjust.
19351 * src/main.c (main): Adjust.
19352
19353 2001-09-23 Marc Autret <autret_m@epita.fr>
19354
19355 * src/files.c (compute_header_macro): Computes header macro name
19356 from spec_defines_file when given.
19357
19358 2001-09-23 Marc Autret <autret_m@epita.fr>
19359
19360 * src/files.c (output_files): Add default extensions.
19361
19362 2001-09-22 Akim Demaille <akim@epita.fr>
19363
19364 * src/conflicts.c (finalize_conflicts): Rename as...
19365 (free_conflicts): this.
19366
19367 2001-09-22 Akim Demaille <akim@epita.fr>
19368
19369 * src/gram.c (gram_free): Rename back as...
19370 (dummy): this.
19371 (output_token_translations): Free `token_translations'.
19372 * src/symtab.c (free_symtab): Free the tag field.
19373
19374 2001-09-22 Akim Demaille <akim@epita.fr>
19375
19376 Remove `translations' as it is always set to true.
19377
19378 * src/gram.h: Adjust.
19379 * src/reader.c (packsymbols, parse_token_decl): Adjust
19380 * src/print.c (print_grammar): Adjust.
19381 * src/output.c (output_token_translations): Adjust.
19382 * src/lex.c (lex): Adjust.
19383 * src/gram.c: Be sure the set pointers to NULL.
19384 (dummy): Rename as...
19385 (gram_free): this.
19386
19387 2001-09-22 Akim Demaille <akim@epita.fr>
19388
19389 * configure.in: Invoke AM_LIB_DMALLOC.
19390 * src/system.h: Use dmalloc.
19391 * src/LR0.c: Be sure to have pointers initialized to NULL.
19392 (allocate_itemsets): Allocate kernel_items only if needed.
19393
19394 2001-09-22 Akim Demaille <akim@epita.fr>
19395
19396 * configure.in: Bump to 1.29b.
19397 * tests/Makefile.am (DISTCLEANFILES): Add package.m4.
19398 * tests/calc.at (_AT_DATA_CALC_Y): #undef malloc so that we don't
19399 need xmalloc.c in calc.y.
19400 From Pascal Bart.
19401
19402 2001-09-21 Akim Demaille <akim@epita.fr>
19403
19404 Version 1.29a.
19405 * Makefile.maint, config/config.guess, config/config.sub,
19406 * config/missing: Update from masters.
19407 * tests/Makefile.am ($(srcdir)/$(TESTSUITE)): No longer depend
19408 upon package.m4.
19409 * configure.in (ALL_LINGUAS): Add `tr'.
19410
19411 2001-09-21 Akim Demaille <akim@epita.fr>
19412
19413 * tests/Makefile.am (package.m4): Move to...
19414 ($(srcdir)/$(TESTSUITE)): here.
19415
19416 2001-09-20 Akim Demaille <akim@epita.fr>
19417
19418 * src/complain.c: No longer try to be standalone: use system.h.
19419 Don't assume __STDC__ is defined to 1. Just test if it is defined.
19420 * src/complain.h: Likewise.
19421 * src/reduce.c (useless_nonterminals, inaccessable_symbols):
19422 Remove the unused variable `n'.
19423 From Albert Chin-A-Young.
19424
19425 2001-09-18 Marc Autret <autret_m@epita.fr>
19426
19427 * doc/bison.1: Update.
19428 * doc/bison.texinfo (Bison Options): Update --defines and --graph
19429 descriptions.
19430 (Option Cross Key): Update.
19431 Add --graph.
19432
19433 2001-09-18 Marc Autret <autret_m@epita.fr>
19434
19435 * tests/regression.at: New test (comment in %union).
19436
19437 2001-09-18 Marc Autret <autret_m@epita.fr>
19438
19439 * src/reader.c (parse_union_decl): Do not output '/'. Let copy_comment
19440 do that.
19441 Reported by Keith Browne.
19442
19443 2001-09-18 Marc Autret <autret_m@epita.fr>
19444
19445 * tests/output.at: Add tests for --defines and --graph.
19446
19447 2001-09-18 Marc Autret <autret_m@epita.fr>
19448
19449 * tests/output.at: Removes tests of %{header,src}_extension features.
19450
19451 2001-09-18 Akim Demaille <akim@epita.fr>
19452
19453 * tests/Makefile.am (package.m4): New.
19454 * tests/calc.at (_AT_CHECK_CALC): Just run `calc input'.
19455 (_AT_CHECK_CALC_ERROR): Likewise.
19456 Factor the `, ' part of verbose error messages.
19457
19458 2001-09-18 Marc Autret <autret_m@epita.fr>
19459
19460 * src/getargs.c (longopts): Declare --defines and --graph as options
19461 with optional arguments.
19462 * src/files.h: Add extern declarations.
19463 * src/files.c (spec_graph_file, spec_defines_file): New.
19464 (output_files): Update.
19465 Remove CPP-outed code.
19466
19467 2001-09-18 Marc Autret <autret_m@epita.fr>
19468
19469 Turn off %{source,header}_extension feature.
19470
19471 * src/files.c (compute_exts_from_gf): Update.
19472 (compute_exts_from_src): Update.
19473 (output_files): CPP-out useless code.
19474 * src/files.h: Remove {header,source}_extension extern declarations.
19475 * src/reader.c (parse_dquoted_param): CPP-out.
19476 (parse_header_extension_decl): Remove.
19477 (parse_source_extension_decl): Remove.
19478 (read_declarations): Remove cases tok_{hdrext,srcext}.
19479 * src/lex.c (percent_table): Remove {header,source}_extension entries.
19480 * src/lex.h (token_t): Remove tok_hdrext and tok_srcext.
19481
19482 2001-09-10 Akim Demaille <akim@epita.fr>
19483
19484 * tests/output.at (AT_CHECK_BISON_FLAGS, AT_CHECK_BISON_PERCENT):
19485 (AT_CHECK_BISON_PERCENT_FLAGS): Merge into...
19486 (AT_CHECK_OUTPUT): this.
19487 Merely check ls' exit status, its output is useless.
19488
19489 2001-09-10 Akim Demaille <akim@epita.fr>
19490
19491 * tests/calc.at: Use m4_match.
19492 (_AT_DATA_CALC_Y): Check `yyin != NULL', not `stdin != NULL'.
19493
19494 2001-09-10 Marc Autret <autret_m@epita.fr>,
19495 Akim Demaille <akim@epita.fr>
19496
19497 * src/vcg.h (graph_s): color, textcolor, bordercolor are now
19498 enum color_e.
19499 * src/print_graph.c (print_graph): Initalize graph.layoutalgorithm
19500 to `normal'.
19501 * src/reader.c (parse_token_decl): Initialize token with tok_eof.
19502 * src/lex.h: Adjust prototype.
19503 (token_t): Add `tok_undef'.
19504 * src/lex.c (struct percent_table_struct): Retval is now a token_t.
19505 (parse_percent_token): Now returns token_t.
19506 Add default statement in switch.
19507 (lex): Separate `c' as an input variable, from the token_t result
19508 part.
19509 (unlexed): Is a token_t.
19510
19511 2001-09-10 Akim Demaille <akim@epita.fr>
19512
19513 * configure.in: Bump to 1.29a.
19514
19515 2001-09-07 Akim Demaille <akim@epita.fr>
19516
19517 Version 1.29.
19518
19519 2001-08-30 Akim Demaille <akim@epita.fr>
19520
19521 * tests/atgeneral.m4, tests/atconfig.in, tests/suite.at: Remove.
19522 * m4/atconfig.m4: Remove.
19523 * tests/testsuite.at, tests/atlocal.in, tests/output.at,
19524 * tests/bison: New.
19525 * tests/regression.at, tests/calc.at: Use m4_define, AT_BANNER,
19526 m4_if, m4_patsubst, and m4_regexp.
19527 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Use an
19528 `input' file instead of echo.
19529
19530 2001-08-29 Akim Demaille <akim@epita.fr>
19531
19532 Bump to 1.28e.
19533
19534 2001-08-29 Akim Demaille <akim@epita.fr>
19535
19536 Version 1.28d.
19537
19538 2001-08-29 Paul Eggert <eggert@twinsun.com>
19539
19540 * src/bison.simple (yyparse): Don't take the address of an
19541 item before the start of an array, as that doesn't conform to
19542 the C Standard.
19543
19544 2001-08-29 Robert Anisko <anisko_r@epita.fr>
19545
19546 * doc/bison.texinfo (Location Tracking Calc): New node.
19547
19548 2001-08-29 Paul Eggert <eggert@twinsun.com>
19549
19550 * src/output.c (output): Do not define const, as this now
19551 causes more problems than it cures.
19552
19553 2001-08-29 Akim Demaille <akim@epita.fr>
19554
19555 * doc/bison.texinfo: Modernize `@node' and `@top' use: just name
19556 the nodes.
19557 Be sure to tag the `detailmenu'.
19558
19559 2001-08-29 Akim Demaille <akim@epita.fr>
19560
19561 * Makefile.maint (do-po-update): Wget refuses to overwrite files:
19562 download in a tmp dir.
19563
19564 2001-08-28 Marc Autret <autret_m@epita.fr>
19565
19566 * config/depcomp: New file.
19567
19568 2001-08-28 Marc Autret <autret_m@epita.fr>
19569
19570 * doc/bison.1 (mandoc): Adjust.
19571 From Juan Manuel Guerrero.
19572
19573 2001-08-28 Marc Autret <autret_m@epita.fr>
19574
19575 * src/print_graph.c (print_state): Fix.
19576
19577 2001-08-27 Marc Autret <autret_m@epita.fr>
19578
19579 * src/vcg.h (classname_s, infoname_s, node_s): Constify the
19580 char * members.
19581 Echo modifications to the functions prototypes.
19582 * src/vcg.c (add_classname, add_infoname): Adjust arguments.
19583
19584 2001-08-27 Marc Autret <autret_m@epita.fr>
19585
19586 * src/vcg.c: Include `xalloc.h'.
19587 (add_colorentry): New.
19588 (add_classname): New.
19589 (add_infoname): New.
19590 * src/vcg.h: Add new prototypes.
19591
19592 2001-08-27 Akim Demaille <akim@epita.fr>
19593
19594 * Makefile.maint: Sync. again with CVS Autoconf.
19595
19596 2001-08-27 Akim Demaille <akim@epita.fr>
19597
19598 * Makefile.maint: Formatting changes.
19599 (po-update, cvs-update, update): New targets.
19600 (AMTAR): Remove.
19601
19602 2001-08-27 Akim Demaille <akim@epita.fr>
19603
19604 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
19605 * Makefile.maint: Sync. with CVS Autoconf.
19606
19607 2001-08-27 Marc Autret <autret_m@epita.fr>
19608
19609 * src/vcg.h (struct infoname_s): New.
19610 (struct colorentry_s): New.
19611 (graph_s): New fields {vertical,horizontal}_order in structure.
19612 Add `infoname' field.
19613 Add `colorentry' field;
19614 * src/vcg_defaults.h (G_VERTICAL_ORDER): New.
19615 (G_HORIZONTAL_ORDER): New.
19616 (G_INFONAME): New.
19617 (G_COLORENTRY): New.
19618 * src/vcg.c (output_graph): Add output of {vertical,horizontal}_order.
19619 Add output of `infoname'.
19620 Add output of `colorentry'.
19621
19622 2001-08-27 Marc Autret <autret_m@epita.fr>
19623
19624 * src/reader.c (parse_dquoted_param): Rename variable `index' to `i'.
19625 This one shadowed a global parameter.
19626
19627 2001-08-24 Marc Autret <autret_m@epita.fr>
19628
19629 * src/print_graph.c (node_output_size): Declared POSIX `size_t' type,
19630 instead of `unsigned'.
19631 (print_state): Do not call obstack_object_size () in obstack_grow ()
19632 to avoid macro variables shadowing.
19633
19634 2001-08-23 Marc Autret <autret_m@epita.fr>
19635
19636 * src/lex.c (percent_table): Typo: s/naem/name/.
19637 Add graph option.
19638 Normalize new options declarations.
19639
19640 2001-08-20 Pascal Bart <pascal.bart@epita.fr>
19641
19642 * tests/suite.at: Exercise %header_extension and %source_extension.
19643
19644 2001-08-16 Marc Autret <autret_m@epita.fr>
19645
19646 * src/reader.c (parse_dquoted_param): New.
19647 (parse_header_extension_decl): Use it.
19648 (parse_source_extension_decl): Likewise.
19649
19650 2001-08-16 Marc Autret <autret_m@epita.fr>
19651
19652 * src/vcg.c: Remove includes of `complain.h' and `xalloc.h'.
19653 (get_xxxx_str): Use assert () instead of complain ().
19654 Remove return invokations in default cases.
19655 (get_decision_str): Modify default behaviour. Remove second argument.
19656 Echo modifications on calls.
19657 (output_graph): Fix.
19658
19659 2001-08-16 Marc Autret <autret_m@epita.fr>
19660
19661 * src/getargs.c (usage): Update with ``-g, --graph''.
19662
19663 2001-08-16 Marc Autret <autret_m@epita.fr>
19664
19665 * doc/bison.texinfo (Bison Options): Add items `-g', `--graph'.
19666 (Option Cross Key): Likewise.
19667 * doc/bison.1: Update.
19668
19669 2001-09-25 Pascal Bart <pascal.bart@epita.fr>
19670
19671 * src/output.c (output_master_parser): Don't finish action_obstack.
19672 (output_parser): Don't care about the muscle action, here.
19673 (prepare): Copy the action_obstack in the action muscle.
19674 (output): Free action_obstack.
19675
19676 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
19677
19678 * src/reader.c (parse_union_decl): Add new obstack union_obstack. Which
19679 will contain `%union' declaration.
19680 (parse_union_decl): Delete #line directive output.
19681 (parse_union_decl): Substitute /attrs_obstack/union_obstack for all
19682 informations about %union.
19683 (parse_union_decl): Copy the union_obstack in the muscle stype.
19684 * src/bison.simple: Add new #line directive.
19685 Add typdef %%stype YYSTYPE.
19686
19687 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
19688
19689 * src/bison.simple: Add new `#line' directive.
19690
19691 2001-09-22 Pascal Bart <pascal.bart@epita.fr>
19692
19693 * src/bison.simple: New `#line' directive.
19694 * src/output.c (output_parser): Support new dynamic muscle input_line.
19695
19696 2001-09-22 Marc Autret <autret_m@epita.fr>
19697
19698 * src/output.c (output_master_parser): New.
19699 (output_parser): Be more re-entrant.
19700
19701 2001-09-21 Marc Autret <autret_m@epita.fr>
19702
19703 * src/reader.c (copy_definition, parse_union_decl): Update and use
19704 `linef' muscle.
19705 (copy_action): Likewise.
19706 Use obstack_1grow ().
19707 * src/muscle_tab.c (muscle_init): Add muscle `linef'.
19708
19709 2001-09-21 Marc Autret <autret_m@epita.fr>
19710
19711 * src/options.c (option_table): Adjust.
19712 * src/lex.c (parse_percent_token): Fix.
19713
19714 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
19715
19716 * src/options.c (symtab.h): Include it, need by lex.h.
19717
19718 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
19719
19720 * src/lex.c (parse_percent_token): Change type of variable `tx', which
19721 is now an option_table_struct*.
19722 (option_strcmp): New function option_strcmp.
19723 (parse_percent_token): Call option_strcmp.
19724 * src/getargs.c (xalloc.h, options.h): Include it.
19725 (getargs): Call create_long_option_table.
19726 (getargs): Free longopts at the end of the function.
19727 (shortopts): Move in options.c.
19728 * src/options.c (create_long_option_table): New function. Convert
19729 information from option_table to option structure.
19730 * src/reader.c (options.h): Include it.
19731
19732 * src/Makefile.am: Adjust.
19733 * src/options.c (option_table): Create from longopts and percent_table.
19734 * src/getargs.c (longopts): Delete.
19735 * src/lex.c (struct percent_table_struct): Delete.
19736 (percent_table): Delete.
19737 (options.h): Include it.
19738 * src/options.c: Create.
19739 * src/options.h: Create.
19740 Declare enum opt_access_e.
19741 Define struct option_table_struct.
19742
19743 2001-09-20 Marc Autret <autret_m@epita.fr>
19744
19745 * doc/bison.texinfo: Adjust terminologies about prologue and epilogue
19746 sections of Bison.
19747
19748 2001-09-19 Pascal Bart <pascal.bart@epita.fr>
19749
19750 * src/bison.simple: s/%%filename/%%skeleton.
19751 * src/muscle_tab.c (getargs.h): Include it.
19752 (muscle_init): Insert new muscle skeleton.
19753
19754 2001-09-18 Pascal Bart <pascal.bart@epita.fr>
19755
19756 * src/output.c (output_parser): Delete unused variable actions_dumped.
19757
19758 2001-09-07 Pascal Bart <pascal.bart@epita.fr>
19759
19760 * src/output.c (output): Delete call to reader_output_yylsp.
19761 * src/reader.c (reader): Likewise.
19762 * src/reader.h: Delete declaration of reader_output_yylsp.
19763
19764 2001-09-02 Marc Autret <autret_m@epita.fr>
19765
19766 * src/reader.c: Include muscle_tab.h.
19767 (parse_union_decl): Update.
19768 (parse_macro_decl): Rename parse_muscle_decl.
19769 Update to use renamed functions and variable.
19770 (read_declarations, copy_action, read_additionnal_code, : Updated
19771 with correct variables and functions names.
19772 (packsymbols, reader): Likewise.
19773
19774 * src/reader.h (muscle_obstack): Extern declaration update.
19775
19776 * src/output.c: Include muscle_tab.h
19777 In all functions using macro_insert, change by using muscle_insert ().
19778 (macro_obstack): Rename muscle_obstack.
19779 Echo modifications in the whole file.
19780 (MACRO_INSERT_INT): Rename MUSCLE_INSERT_INT.
19781 (MACRO_INSERT_STRING): Rename MUSCLE_INSERT_STRING.
19782 (MACRO_INSERT_PREFIX): Rename MUSCLE_INSERT_PREFIX.
19783
19784 * src/muscle_tab.h: Update double inclusion macros.
19785 (macro_entry_s): Rename muscle_entry_s.
19786 Update prototypes.
19787
19788 * src/muscle_tab.c: Include muscle_tab.h.
19789 Rename macro_tabble to muscle_table.
19790 (mhash1, mhash2, mcmp): Use muscle_entry.
19791 (macro_init): Rename muscle_init. Update.
19792 (macro_insert): Rename muscle_insert. Update.
19793 (macro_find): Rename muscle_find. Update.
19794
19795 * src/main.c: Include muscle_tab.h.
19796 (main): Call muscle_init ().
19797 * src/Makefile.am (bison_SOURCES): Echo modifications.
19798
19799 2001-09-02 Marc Autret <autret_m@epita.fr>
19800
19801 Now the files macro_tab.[ch] are named muscle_tab.[ch].
19802
19803 * src/muscle_tab.c, src/muscle_tab.h: Add files.
19804
19805 2001-09-02 Marc Autret <autret_m@epita.fr>
19806
19807 * src/macrotab.c, src/macrotab.h: Remove.
19808
19809 2001-09-01 Pascal Bart <pascal.bart@epita.fr>
19810
19811 * src/reader.c (copy_guard): Use muscle to specify the `#line'
19812 filename.
19813
19814 2001-09-01 Marc Autret <autret_m@epita.fr>
19815
19816 * tests/calc.at (exp): Now, YYERROR_VERBOSE need to be set
19817 to an explicit value to activate the feature. We do it here.
19818
19819 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
19820
19821 * src/output.c (prepare): Delete the `filename' muscule insertion.
19822 * src/reader.c (copy_action): Use `filename' muscule with `#line'.
19823 (parse_union_decl): Likewise.
19824 * src/macrotab.c (macro_init): Initialize filename by infile.
19825
19826 2001-08-31 Marc Autret <autret_m@epita.fr>
19827
19828 * src/bison.simple (YYLSP_NEEDED): New definition.
19829 * src/output.c (prepare): Add macro insertion of `locations_flag'
19830
19831 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
19832
19833 * src/output.c (prepare): Delete insertion of previous muscles,
19834 and insert the `prefix' muscles.
19835 * src/macrotab.c (macro_init): Likewise.
19836 (macro_init): Initialization prefix directive by `yy'.
19837 * src/bison.simple: Substitute all %%yylex, %%yychar, %%yylval,
19838 %%yydebug, %%yyerror, %%yynerrs and %%yyparse by yylex, yychar,
19839 yylval, yydebug, yyerror, yynerrs and yyparse.
19840 New directive `#define' to substitute yydebug, ... with option
19841 name_prefix.
19842
19843 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
19844
19845 * src/main.c (main): Standardize.
19846 * src/output.c (output_table_data, output_parser): Likewise.
19847 * src/macrotab.h, src/macrotab.c, src/bison.simple: Likewise.
19848
19849 2001-08-31 Pascal Bart <pascal.bart@epita.fr>, Marc Autret <autret_m@epita.fr>
19850
19851 * src/reader.c (read_additionnal_code): Rename %%user_code to
19852 %%epilogue.
19853 * src/output.c (output): Rename %%declarations to %%prologue.
19854 * src/bison.simple: Echo modifications.
19855
19856 2001-08-31 Marc Autret <autret_m@epita.fr>
19857
19858 * src/reader.c (readgram): CleanUp.
19859 (output_token_defines): Likewise.
19860 (packsymbols): Likewise.
19861 (reader): Likewise.
19862 * src/output.c (output): CPP-out useless code.
19863
19864 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
19865
19866 * src/reader.c (reader): Delete obsolete call to function
19867 output_trailers and output_headers.
19868 * src/output.h: Remove obsolete functions prototypes of output_headers
19869 and output_trailers.
19870
19871 2001-08-30 Pascal Bart <pascal.bart@epita.fr>
19872
19873 * src/main.c: Include macrotab.h.
19874 * src/macrotab.h (macro_entry_s): Constify fields.
19875 Adjust functions prototypes.
19876 * src/macrotab.c (macro_insert): Constify key and value.
19877 (macro_find): Constify key.
19878 (macro_insert): Include 'xalloc.h'
19879 (macro_insert): Use XMALLOC.
19880 (macro_find): Constify return value.
19881 * src/output.c (output_table_data): Rename table to table_data.
19882 (output_parser): Constify macro_key, macro_value.
19883
19884 2001-08-30 Marc Autret <autret_m@epita.fr>
19885
19886 * src/reader.c (parse_skel_decl): New.
19887 (read_declarations): Add case `tok_skel', call parse_skel_decl ().
19888 * src/lex.h (token_t): New token `tok_skel'.
19889 * src/lex.c (percent_table): Add skeleton option entry.
19890 Standardize.
19891
19892 2001-08-29 Marc Autret <autret_m@epita.fr>
19893
19894 * src/bison.simple: Add %%user_code directive at the end.
19895 * src/reader.c (read_additionnal_code): New.
19896 (reader): Use it.
19897 * src/output.c (output_program): Remove.
19898 (output): Update.
19899
19900 2001-08-28 Marc Autret <autret_m@epita.fr>
19901
19902 * src/output.c (output_actions): Clean up.
19903 (output_gram): CPP-out useless code.
19904 * src/reader.c (reader): Clean up, CPP-out useless code.
19905
19906 2001-08-28 Pascal Bart <pascal.bart@epita.fr>
19907
19908 * src/output.c (output): Copy attrs_obstack in the '%%definitions'
19909 directive.
19910 * src/bison.simple: Add `%%definitions'.
19911
19912 2001-08-28 Marc Autret <autret_m@epita.fr>
19913
19914 * config/depcomp: New file.
19915
19916 2001-08-27 Paul Eggert <eggert@twinsun.com>
19917
19918 * src/bison.simple (yyparse): Don't take the address of an
19919 item before the start of an array, as that doesn't conform to
19920 the C Standard.
19921
19922 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
19923
19924 * src/output.c (output): Remove the initialization of the macro
19925 obstack. It was done too late here.
19926
19927 * src/reader.c (parse_macro_decl): Fix. Use of the macro obstack was
19928 completely wrong.
19929 (reader): Initialize the macro obstack here, since we need it to grow
19930 '%define' directives.
19931
19932 * src/reader.h: Declare the macro obstack as extern.
19933
19934 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
19935
19936 * src/output.c (output_parser): Fix. Store single '%' characters in
19937 the output obstack instead of throwing them away.
19938
19939 2001-08-27 Akim Demaille <akim@epita.fr>
19940
19941 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
19942
19943 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
19944
19945 * lib/Makefile.am: Adjust.
19946
19947 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
19948
19949 * src/bison.simple: Update and add '%%' directives.
19950
19951 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
19952
19953 * src/reader.c (reader): Remove calls to 'output_headers' and
19954 'output_trailers'. Remove some C output.
19955 (readgram): Disable a piece of code that was writing a default
19956 definition for 'YYSTYPE'.
19957 (reader_output_yylsp): Remove.
19958 (packsymbols): Output token defintions to a macro.
19959 (copy_definition): Disable C output.
19960
19961 * src/reader.c (parse_macro_decl): New function used to parse macro
19962 declarations.
19963 (copy_string2): Put the body of copy_string into this new function.
19964 Add a parameter to let the caller choose whether he wants to copy the
19965 string delimiters or not.
19966 (copy_string): Be a simple call to copy_string2 with the last argument
19967 bound to true.
19968 (read_declarations): Add case for macro definition.
19969 (copy_identifier): New.
19970 (parse_macro_decl): Read macro identifiers using copy_identifier
19971 rather than lex.
19972
19973 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
19974
19975 * src/output.c (prepare): Add prefixed names.
19976 (output_parser): Output semantic actions.
19977 (output_parser): Fix bug on '%%line' directives.
19978
19979 * src/output.c (output_headers): Remove. The C code printed by this
19980 function should now be in the skeletons.
19981 (output_trailers): Remove.
19982 (output): Disable call to 'reader_output_yylsp'.
19983 (output_rule_data): Do not output tables to the table obstack.
19984
19985 * src/output.c: Remove some C dedicated output.
19986 Improve the use of macro and output obstacks.
19987 (output_defines): Remove.
19988
19989 * src/output.c (output_token_translations): Associate 'translate'
19990 table with a macro. No output to the table obstack.
19991 (output_gram): Same for 'rhs' and 'prhs'.
19992 (output_stos): Same for 'stos'.
19993 (output_rule_data): Same for 'r1' and 'r2'.
19994 (token_actions): Same for 'defact'.
19995 (goto_actions): Same for 'defgoto'.
19996 (output_base): Same for 'pact' and 'pgoto'.
19997 (output_table): Same for 'table'.
19998 (output_check): Same for 'check'.
19999
20000 * src/output.c (output_table_data): New function.
20001 (output_short_table): Remove.
20002 (output_short_or_char_table): Remove.
20003
20004 * src/output.c (output_parser): Replace most of the skeleton copy code
20005 with something new. Skeletons are now processed character by character
20006 rather than line by line, and Bison looks for '%%' macros. This is the
20007 first step in making Bison's output process (a lot) more flexible.
20008 (output_parser): Use the macro table.
20009
20010 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
20011
20012 * src/main.c (main): Initialize the macro table.
20013
20014 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
20015
20016 * src/lex.c (percent_table): Add tok_define.
20017 * src/lex.h: Add tok_define.
20018
20019 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
20020
20021 * src/macrotab.c: New file.
20022 * src/macrotab.h: New file.
20023 * src/Makefile.am: Update.
20024
20025 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
20026
20027 * lib/hash.c: New file.
20028 * lib/hash.h: New file.
20029 * lib/Makefile.am: Update.
20030
20031 2001-08-15 Akim Demaille <akim@epita.fr>
20032
20033 Version 1.28c.
20034
20035 2001-08-15 Marc Autret <autret_m@epita.fr>
20036
20037 * src/reader.c (readgram): Indent output macro YYSTYPE.
20038 (packsymbols): Likewise.
20039 (output_token_defines): Likewise.
20040 * src/files.c: Standardize.
20041 (compute_header_macro): New.
20042 (defines_obstack_save): New. Use compute_header_macro.
20043 (output_files): Update. Use defines_obstack_save.
20044
20045 2001-08-15 Akim Demaille <akim@epita.fr>
20046
20047 * doc/bison.texinfo (Table of Symbols): Document
20048 YYSTACK_USE_ALLOCA.
20049
20050 2001-08-15 Akim Demaille <akim@epita.fr>
20051
20052 * missing: Update from CVS Automake.
20053 * config/config.guess, config/config.sub, config/texinfo.tex:
20054 Update from gnu.org.
20055
20056 2001-08-15 Akim Demaille <akim@epita.fr>
20057
20058 * Makefile.maint: Sync with CVS Autoconf.
20059
20060 2001-08-14 Pascal Bart <pascal.bart@epita.fr>
20061
20062 * doc/bison.texinfo: Include GNU Free Documentation License from
20063 `fdl.texi'.
20064 * doc/fdl.texi: Add to package.
20065
20066 2001-08-14 Marc Autret <autret_m@epita.fr>
20067
20068 Turn on %{source,header}_extension features.
20069
20070 * src/lex.c (percent_table): Un-CPP out header_extension and
20071 source_extension.
20072 * src/files.c (compute_exts_from_gf): Compare pointers with NULL.
20073 (compute_exts_from_src): Remove conditions. It restores priorities
20074 between options.
20075
20076 2001-08-14 Marc Autret <autret_m@epita.fr>
20077
20078 * src/files.c (compute_base_names): Add extensions computing when
20079 `--file-prefix' used.
20080 Standardize function calls.
20081
20082 2001-08-13 Marc Autret <autret_m@epita.fr>
20083
20084 * src/bison.simple (YYSTACK_USE_ALLOCA): Changed to allow users
20085 defining it (defined but null disables alloca).
20086
20087 2001-08-13 Marc Autret <autret_m@epita.fr>
20088
20089 * src/bison.simple (_yy_memcpy): CPP reformat.
20090
20091 2001-08-13 Pascal Bart <pascal.bart@epita.fr>
20092
20093 * tests/atconfig.in (CPPFLAGS): Fix.
20094
20095 2001-08-10 Pascal Bart <pascal.bart@epita.fr>
20096
20097 * doc/bison.texinfo: Include GNU General Public License from
20098 `gpl.texi'.
20099 * doc/gpl.texi: Add to package.
20100
20101 2001-08-10 Marc Autret <autret_m@epita.fr>
20102
20103 * src/print_graph.h: Fix.
20104 * src/reader.c (read_declarations): Use parse_header_extension_decl ().
20105
20106 2001-08-10 Akim Demaille <akim@epita.fr>
20107
20108 * src/system.h: Provide default declarations for stpcpy, strndup,
20109 and strnlen.
20110
20111 2001-08-10 Robert Anisko <anisko_r@epita.fr>
20112
20113 * doc/bison.texinfo (Locations): Update @$ stuff.
20114
20115 2001-08-09 Robert Anisko <anisko_r@epita.fr>
20116
20117 * src/bison.simple (YYLLOC_DEFAULT): Update.
20118 (yyparse): Adjust.
20119
20120 2001-08-08 Marc Autret <autret_m@epita.fr>
20121
20122 * doc/bison.texinfo: Change @samp{$<@dots{}>} to
20123 @samp{$<@dots{}>@var{n}} in Section Actions in Mid-Rule.
20124 Reported by Fabrice Bauzac.
20125
20126 2001-08-08 Marc Autret <autret_m@epita.fr>
20127
20128 * src/vcg_default.h: Use NULL instead of 0 to initialize pointers.
20129 * src/vcg.c (output_node): Fix.
20130 * src/vcg.h: Cleanup.
20131 * src/print_graph.c: Add comments.
20132 (node_output_size): New global variable. Simplify the formatting of
20133 the VCG graph output.
20134 (print_actions): Unused code is now used. It notifies the final state
20135 and no action states in the VCG graph. It also give the reduce actions.
20136 The `shift and goto' edges are red and the `go to state' edges are
20137 blue.
20138 Get the current node name and node_obstack by argument.
20139 (node_obstack): New variable.
20140 (print_state): Manage node_obstack.
20141 (print_core): Use node_obstack given by argument.
20142 A node is not only computed here but in print_actions also.
20143 (print_graph): CPP out useless code instead of commenting it.
20144
20145 2001-08-07 Pascal Bart <pascal.bart@epita.fr>
20146
20147 * tests/atconfig.in (CPPFLAGS): Fix.
20148
20149 2001-08-07 Akim Demaille <akim@epita.fr>
20150
20151 * src/print_graph.c (quote): New.
20152 (print_core): Use it.
20153
20154 2001-08-06 Akim Demaille <akim@epita.fr>, Marc Autret <autret_m@epita.fr>
20155
20156 * src/vcg.c (complain.h): Include it.
20157 Unepitaize `return' invocations.
20158 [NDEBUG] (main): Remove.
20159 * src/vcg.h (node_t, edge_t, graph_t): Constify the char * members.
20160 * src/files.c (open_files): Initialize graph_obstack.
20161 * src/print_graph.c (print_actions): CPP out useless code.
20162 (print_core): Don't output the last `\n' in labels.
20163 Use `quote'.
20164 * src/files.c (output_files): Output the VCG file.
20165 * src/main.c (main): Invoke print_graph ();
20166
20167 2001-08-06 Marc Autret <autret_m@epita.fr>
20168
20169 Automaton VCG graph output.
20170 Using option ``-g'' or long option ``--graph'', you can generate
20171 a gram_filename.vcg file containing a VCG description of the LALR (1)
20172 automaton of your grammar.
20173
20174 * src/main.c: Call to print_graph() function.
20175 * src/getargs.h: Update.
20176 * src/getargs.c (options): Update to catch `-g' and `--graph' options.
20177 (graph_flag): New flag.
20178 (longopts): Update.
20179 (getargs): Add case `g'.
20180 * src/files.c (graph_obstack): New obstack struct.
20181 (open_files): Initialize new obstack.
20182 (output_files): Saves graph_obstack if required.
20183 * src/files.h (graph_obstack): New extern declaration.
20184 * src/Makefile.am: Add new source files.
20185
20186 2001-08-06 Marc Autret <autret_m@epita.fr>
20187
20188 * src/print_graph.c, src/print_graph.h (graph): New.
20189 * src/vcg.h: New file.
20190 * src/vcg.c: New file, VCG graph handling.
20191
20192 2001-08-06 Marc Autret <autret_m@epita.fr>
20193
20194 Add of %source_extension and %header_extension which specify
20195 the source or/and the header output file extension.
20196
20197 * src/files.c (compute_base_names): Remove initialisation of
20198 src_extension and header_extension.
20199 (compute_exts_from_gf): Update.
20200 (compute_exts_from_src): Update.
20201 (output_files): Update.
20202 * src/reader.c (parse_header_extension_decl): New.
20203 (parse_source_extension_decl): New.
20204 (read_declarations): New case statements for the new tokens.
20205 * src/lex.c (percent_table): Add entries for %source_extension
20206 and %header_extension.
20207 * src/lex.h (token_e): New tokens tok_hdrext and tok_srcext.
20208
20209 2001-08-06 Marc Autret <autret_m@epita.fr>
20210
20211 * configure.in: Bump to 1.28c.
20212 * doc/bison.texinfo: Texinfo thingies.
20213
20214 2001-08-04 Pascal Bart <pascal.bart@epita.fr>
20215
20216 * tests/atconfig.in (CPPFLAGS): Add.
20217 * tests/calc.at (AT_CHECK): Use CPPFLAGS.
20218
20219 2001-08-03 Akim Demaille <akim@epita.fr>
20220
20221 Version 1.28b.
20222
20223 2001-08-03 Akim Demaille <akim@epita.fr>
20224
20225 * tests/Makefile.am (check-local): Ship testsuite.
20226 * tests/calc.at (_AT_DATA_CALC_Y): Prototype all the functions.
20227 Include `string.h'.
20228
20229 2001-08-03 Akim Demaille <akim@epita.fr>
20230
20231 * configure.in: Try using -Wformat when compiling.
20232
20233 2001-08-03 Akim Demaille <akim@epita.fr>
20234
20235 * configure.in: Bump to 1.28b.
20236
20237 2001-08-03 Akim Demaille <akim@epita.fr>
20238
20239 * src/complain.c: Adjust strerror_r portability issues.
20240
20241 2001-08-03 Akim Demaille <akim@epita.fr>
20242
20243 Version 1.28a.
20244
20245 2001-08-03 Akim Demaille <akim@epita.fr>
20246
20247 * src/getargs.c, src/getarg.h (skeleton)): Constify.
20248 * src/lex.c (literalchar): Avoid name clashes on `buf'.
20249 * src/getargs.c: Include complain.h.
20250 * src/files.c, src/files.h (skeleton_find): Avoid name clashes.
20251 * lib/quotearg.c, lib/quotearg.h: Update from fileutils 4.1.
20252
20253 2001-08-03 Akim Demaille <akim@epita.fr>
20254
20255 * src/reader.c (readgram): Display hidden chars in error messages.
20256
20257 2001-08-03 Akim Demaille <akim@epita.fr>
20258
20259 Update to gettext 0.10.39.
20260
20261 2001-08-03 Akim Demaille <akim@epita.fr>
20262
20263 * lib/strspn.c: New.
20264
20265 2001-08-01 Marc Autret <autret_m@epita.fr>
20266
20267 * doc/bison.texinfo: Update.
20268 * doc/bison.1 (mandoc): Update.
20269 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove .c and .h.
20270 * src/files.c: Support output files extensions computing.
20271 (src_extension): New static variable.
20272 (header_extension): New static variable.
20273 (tr): New function.
20274 (get_extension_index): New function, gets the index of an extension
20275 filename in a string.
20276 (compute_exts_from_gf): New function, computes extensions from the
20277 grammar file extension.
20278 (compute_exts_from_src): New functions, computes extensions from the
20279 C source file extension, file given by ``-o'' option.
20280 (compute_base_names): Update.
20281 (output_files): Update.
20282
20283 2001-08-01 Robert Anisko <anisko_r@epita.fr>
20284
20285 * doc/bison.texi: Document @$.
20286 (Locations): New section.
20287
20288 2001-07-18 Akim Demaille <akim@epita.fr>
20289
20290 * Makefile.maint, GNUmakefile: New, from Autoconf 2.52.
20291 * config/prev-version.txt, config/move-if-change: New.
20292 * Makefile.am: Adjust.
20293
20294 2001-07-08 Pascal Bart <pascal.bart@epita.fr>
20295
20296 * src/bison.simple (yyparse): Suppress warning `comparaison
20297 between signed and unsigned'.
20298
20299 2001-07-05 Pascal Bart <pascal.bart@epita.fr>
20300
20301 * src/getargs.h (raw_flag): Remove.
20302 * src/getargs.c: Die on `-r'/`--raw'.
20303 * src/lex.c (parse_percent_token): Die on `%raw'.
20304 * src/reader.c (output_token_defines): Suppress call to `raw_flag'.
20305 * tests/calc.at: Suppress test with option `--raw'.
20306
20307 2001-07-14 Akim Demaille <akim@epita.fr>
20308
20309 * config/: New.
20310 * configure.in: Require Autoconf 2.50.
20311 Update to gettext 0.10.38.
20312
20313 2001-03-16 Akim Demaille <akim@epita.fr>
20314
20315 * doc/bison.texinfo: ANSIfy the examples.
20316
20317 2001-03-16 Akim Demaille <akim@epita.fr>
20318
20319 * getargs.c (skeleton): New variable.
20320 (longopts): --skeleton is a new option.
20321 (shortopts, getargs): -S is a new option.
20322 * getargs.h: Declare skeleton.
20323 * output.c (output_parser): Use it.
20324
20325 2001-03-16 Akim Demaille <akim@epita.fr>
20326
20327 * m4/strerror_r.m4: New.
20328 * m4/error.m4: Run AC_FUNC_STRERROR_R.
20329 * lib/error.h, lib/error.c: Update.
20330
20331 2001-03-16 Akim Demaille <akim@epita.fr>
20332
20333 * src/getargs.c (longopts): Clean up.
20334
20335 2001-02-21 Akim Demaille <akim@epita.fr>
20336
20337 * src/reader.c (gensym): `gensym_count' is your own.
20338 Use a static buf to create the symbol name, as token_buffer is no
20339 longer a buffer.
20340
20341 2001-02-08 Akim Demaille <akim@epita.fr>
20342
20343 * src/conflicts.c (conflict_report): Be sure not to append to res
20344 between two calls, which could happen if both first sprintf were
20345 skipped, but not the first cp += strlen.
20346
20347 2001-02-08 Akim Demaille <akim@epita.fr>
20348
20349 * lib/memchr.c, lib/stpcpy.c, lib/strndup.c, lib/strnlen.c:
20350 New, from fileutils 4.0.37.
20351 * configure.in: Require Autoconf 2.49c. I took some time before
20352 making this decision. This is the only way out for portability
20353 issues in Bison, it would mean way too much duplicate effort to
20354 import in Bison features implemented in 2.49c since 2.13.
20355 AC_REPLACE_FUNCS and AC_CHECK_DECLS the functions above.
20356
20357 2001-02-02 Akim Demaille <akim@epita.fr>
20358
20359 * lib/malloc.c, lib/realloc.c: New, from the fileutils 4.0.37.
20360 * lib/xalloc.h, lib/xmalloc.c: Update.
20361
20362 2001-01-19 Akim Demaille <akim@epita.fr>
20363
20364 Get rid of the ad hoc handling of token_buffer in the scanner: use
20365 the obstacks.
20366
20367 * src/lex.c (token_obstack): New.
20368 (init_lex): Initialize it. No longer call...
20369 (grow_token_buffer): this. Remove it.
20370 Adjust all the places which used it to use the obstack.
20371
20372 2001-01-19 Akim Demaille <akim@epita.fr>
20373
20374 * src/lex.h: Rename all the tokens:
20375 s/\bENDFILE\b/tok_eof/g;
20376 s/\bIDENTIFIER\b/tok_identifier/g;
20377 etc.
20378 Let them be enums, not #define, to ease debugging.
20379 Adjust all the code.
20380
20381 2001-01-18 Akim Demaille <akim@epita.fr>
20382
20383 * src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
20384 * src/lex.c (maxtoken, grow_token_buffer): Static.
20385
20386 2001-01-18 Akim Demaille <akim@epita.fr>
20387
20388 Since we now use obstacks, more % directives can be enabled.
20389
20390 * src/lex.c (percent_table): Also accept `%yacc',
20391 `%fixed_output_files', `%defines', `%no_parser', `%verbose', and
20392 `%debug'.
20393 Handle the actions for `%semantic_parser' and `%pure_parser' here,
20394 instead of returning a token.
20395 * src/lex.h (SEMANTIC_PARSER, PURE_PARSER): Remove, unused.
20396 * src/reader.c (read_declarations): Adjust.
20397 * src/files.c (open_files): Don't call `compute_base_names', don't
20398 compute `attrsfile' since they depend upon data which might be
20399 *in* the input file now.
20400 (output_files): Do it here.
20401 * src/output.c (output_headers): Document the fact that this patch
20402 introduces a guaranteed SEGV for semantic parsers.
20403 * doc/bison.texinfo: Document them.
20404 * tests/suite.at: Exercise these %options.
20405
20406 2000-12-20 Akim Demaille <akim@epita.fr>
20407
20408 Also handle the output file (--verbose) with obstacks.
20409
20410 * files.c (foutput): Remove.
20411 (output_obstack): New.
20412 Adjust all dependencies.
20413 * src/conflicts.c: Return a string.
20414 * src/system.h (obstack_grow_string): Rename as...
20415 (obstack_sgrow): this. Be ready to work with non literals.
20416 (obstack_fgrow4): New.
20417
20418 2000-12-20 Akim Demaille <akim@epita.fr>
20419
20420 * src/files.c (open_files): Fix the computation of short_base_name
20421 in the case of `-o foo.tab.c'.
20422
20423 2000-12-20 Akim Demaille <akim@epita.fr>
20424
20425 * src/reader.c (copy_string, copy_comment, copy_comment2, copy_at)
20426 (copy_dollar): Now that everything uses obstacks, get rid of the
20427 FILE * parameters.
20428
20429 2000-12-20 Akim Demaille <akim@epita.fr>
20430
20431 * src/files.c (open_files): Actually the `.output' file is based
20432 on the short_base_name, not base_name.
20433 * tests/suite.at (Checking output file names): Adjust.
20434
20435 2000-12-20 Akim Demaille <akim@epita.fr>
20436
20437 * src/bison.s1: Remove, we now use directly...
20438 * src/bison.simple: this.
20439 * src/Makefile.am: Use pkgdata instead of data.
20440
20441 2000-12-20 Akim Demaille <akim@epita.fr>
20442
20443 * src/files.c (guard_obstack): New.
20444 (open_files): Initialize it.
20445 (output_files): Dump it...
20446 * src/files.h: Export it.
20447 * src/reader.c (copy_guard): Use it.
20448
20449 2000-12-19 Akim Demaille <akim@epita.fr>
20450
20451 * src/files.c (outfile, defsfile, actfile): Removed as global
20452 vars.
20453 (open_files): Don't compute them.
20454 (output_files): Adjust.
20455 (base_name, short_base_name): Be global.
20456 Adjust dependencies.
20457
20458 2000-12-19 Akim Demaille <akim@epita.fr>
20459
20460 * src/files.c (strsuffix): New.
20461 (stringappend): Be just like strcat but allocate.
20462 (base_names): Eve out from open_files.
20463 Try to simplify the rather hairy computation of base_name and
20464 short_base_name.
20465 (open_files): Use it.
20466 * tests/suite.at (Checking output file names): New test.
20467
20468 2000-12-19 Akim Demaille <akim@epita.fr>
20469
20470 * src/system.h (obstack_grow_literal_string): Rename as...
20471 (obstack_grow_string): this.
20472 * src/output.c (output_parser): Recognize `%% actions' instead of
20473 `$'.
20474 * src/bison.s1: s/$/%% actions/.
20475 * src/bison.hairy: Likewise.
20476
20477 2000-12-19 Akim Demaille <akim@epita.fr>
20478
20479 * src/output.c (output_parser): Compute the `#line' lines when
20480 there are.
20481 * src/Makefile.am (bison.simple): Be a simple copy of bison.s1.
20482 Suggested by Hans Aberg.
20483
20484 2000-12-19 Akim Demaille <akim@epita.fr>
20485
20486 Let the handling of the skeleton files be local to the procedures
20487 that use it.
20488
20489 * src/files.c (xfopen, xfclose, skeleton_find, guardfile): No
20490 longer static.
20491 (fparser, open_extra_files): Remove.
20492 (open_files, output_files): Don't take care of fparser.
20493 * src/files.h: Adjust.
20494 * src/output.c (output_parser): Open and close the file to the
20495 skeleton.
20496 * src/reader.c (read_declarations): When %semantic_parser, open
20497 fguard.
20498
20499 2000-12-19 Akim Demaille <akim@epita.fr>
20500
20501 * src/file.h (BISON_SIMPLE, BISON_HAIRY): Move from here...
20502 * src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
20503
20504 2000-12-19 Akim Demaille <akim@epita.fr>
20505
20506 * src/files.c (open_files): Yipee! We no longer need all the code
20507 looking for `/tmp' since we have no tmp file.
20508
20509 2000-12-19 Akim Demaille <akim@epita.fr>
20510
20511 * src/system.h (EXT_TAB, EXT_OUTPUT, EXT_STYPE_H, EXT_GUARD_C):
20512 New macros.
20513 * src/files.c (open_files): Less dependency on MSDOS etc.
20514
20515 2000-12-14 Akim Demaille <akim@epita.fr>
20516
20517 * src/bison.s1 (YYLLOC_DEFAULT): New macro.
20518 Provide a default definition.
20519 Use it when executing the default @ action.
20520 * src/reader.c (reader_output_yylsp): No longer include
20521 `timestamp' and `text' in the default YYLTYPE.
20522
20523 2000-12-12 Akim Demaille <akim@epita.fr>
20524
20525 * src/reader.c (copy_definition, parse_union_decl, copy_action)
20526 (copy_guard): Quote the file names.
20527 Reported by Laurent Mascherpa.
20528
20529 2000-12-12 Akim Demaille <akim@epita.fr>
20530
20531 * src/output.c (output_headers, output_program, output): Be sure
20532 to escape special characters when outputting filenames.
20533 (ACTSTR_PROLOGUE, ACTSTR_EPILOGUE): Remove.
20534 (output_headers): Don't depend on them, Use ACTSTR.
20535
20536 2000-11-17 Akim Demaille <akim@epita.fr>
20537
20538 * lib/obstack.h: Formatting changes.
20539 (obstack_grow, obstack_grow0): Don't cast WHERE at all: it
20540 prevents type checking.
20541 (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
20542 cast the value to (void *): assigning a `foo *' to a `void *'
20543 variable is valid.
20544 (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
20545 * src/reader.c (parse_union_decl): Typo: use obstack_1grow to
20546 append characters.
20547
20548 2000-11-17 Akim Demaille <akim@epita.fr>
20549
20550 * tests/Makefile.am (suite.m4, regression.m4, calc.m4): Rename
20551 as...
20552 (suite.m4, regression.m4, calc.m4): these.
20553 * tests/atgeneral.m4: Update from CVS Autoconf.
20554
20555 2000-11-17 Akim Demaille <akim@epita.fr>
20556
20557 * tests/regression.m4 (%union and --defines): New test,
20558 demonstrating a current bug in the obstack implementation.
20559
20560 2000-11-17 Akim Demaille <akim@epita.fr>
20561
20562 * src/bison.s1 (_YY_DECL_VARIABLES, YY_DECL_VARIABLES): New
20563 macros.
20564 Use them to declare the variables which are global or local to
20565 `yyparse'.
20566
20567 2000-11-17 Akim Demaille <akim@epita.fr>
20568
20569 * acconfig.h: Remove, no longer used.
20570
20571 2000-11-07 Akim Demaille <akim@epita.fr>
20572
20573 * src: s/Copyright (C)/Copyright/g.
20574
20575 2000-11-07 Akim Demaille <akim@epita.fr>
20576
20577 * src/reader.c (reader): #define YYLSP_NEEDED to 1 instead of just
20578 defining.
20579 * src/bison.s1: s/#ifdef YYLSP_NEEDED/#if YYLSP_NEEDED/.
20580
20581 2000-11-07 Akim Demaille <akim@epita.fr>
20582
20583 * src/bison.s1 (YYLEX): Use #if instead of #ifdef.
20584 Merge in a single CPP if/else.
20585
20586 2000-11-07 Akim Demaille <akim@epita.fr>
20587
20588 * src/output.c (output): Remove useless variables.
20589 * lib/obstack.c (obstack_grow, obstack_grow0): Rename the second
20590 argument `data' for consistency with the prototypes.
20591 Qualify it `const'.
20592 (obstack_copy, obstack_copy0): Rename the second argument as
20593 `address' for consistency. Qualify it `const'.
20594 * lib/obstack.h (obstack_copy, obstack_copy0, obstack_grow)
20595 (obstack_grow0, obstack_ptr_grow, obstack_ptr_grow_fast): Qualify
20596 `const' their input argument (`data' or `address').
20597 Adjust the corresponding macros to include `const' in casts.
20598
20599 2000-11-03 Akim Demaille <akim@epita.fr>
20600
20601 * src/Makefile.am (INCLUDES): s/PFILE/BISON_SIMPLE/.
20602 s/PFILE1/BISON_HAIRY/.
20603 Adjust dependencies.
20604
20605 2000-11-03 Akim Demaille <akim@epita.fr>
20606
20607 For some reason, this was not applied.
20608
20609 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
20610 `unlink': it's no longer used.
20611
20612 2000-11-03 Akim Demaille <akim@epita.fr>
20613
20614 * src/files.c (skeleton_find): New function, eved out of...
20615 (open_files, open_extra_files): here.
20616
20617 2000-11-03 Akim Demaille <akim@epita.fr>
20618
20619 Don't use `atexit'.
20620
20621 * src/files.c (obstack_save): New function.
20622 (done): Rename as...
20623 (output_files): this.
20624 Use `obstack_save'.
20625 * src/main.c (main): Don't use `atexit' to register `done', since
20626 it no longer has to remove tmp files, just call `output_files'
20627 when there are no errors.
20628
20629 2000-11-02 Akim Demaille <akim@epita.fr>
20630
20631 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
20632 `unlink': it's no longer used.
20633 * src/files.h: Formatting changes.
20634
20635 2000-11-02 Akim Demaille <akim@epita.fr>
20636
20637 Remove the last uses of mktemp and unlink/delete.
20638
20639 * src/files.c (fdefines, ftable): Removed.
20640 (defines_ostack, table_obstack): New.
20641 Adjust dependencies of the former into uses of the latter.
20642 * src/output.c (output_short_or_char_table, output_short_table):
20643 Convert to using obstacks.
20644 * src/reader.c (copy_comment2): Accept one FILE * and two
20645 obstacks.
20646 (output_token_defines, reader_output_yylsp): Use obstacks.
20647 * src/system.h (obstack_fgrow3): New.
20648 * po/POTFILES.in: Adjust.
20649
20650 2000-11-01 Akim Demaille <akim@epita.fr>
20651
20652 Change each use of `fattrs' into a use of `attrs_obstack'.
20653
20654 * src/reader.c (copy_at): Typo: s/yylloc/yyloc/.
20655 * src/files.c (fattrs): Remove.
20656 (attrs_obstack): New.
20657 Adjust all dependencies.
20658 (done): If SEMANTIC_PARSER, dump attrs_obstack into attrsfile.
20659
20660 2000-11-01 Akim Demaille <akim@epita.fr>
20661
20662 Introduce obstacks.
20663 Change each use of `faction' into a use of `action_obstack'.
20664
20665 * lib/obstack.h, lib/obstack.c: New files.
20666 * src/files.c (faction): Remove.
20667 (action_obstack): New.
20668 Adjust all dependencies.
20669
20670 2000-10-20 Akim Demaille <akim@epita.fr>
20671
20672 * lib/quote.h (PARAMS): New macro. Use it.
20673
20674 2000-10-16 Akim Demaille <akim@epita.fr>
20675
20676 * src/output.c (output_short_or_char_table): New function.
20677 (output_short_table, output_token_translations): Use it.
20678 (goto_actions): Use output_short_table.
20679
20680 2000-10-16 Akim Demaille <akim@epita.fr>
20681
20682 * src/symtab.c (bucket_new): New function.
20683 (getsym): Use it.
20684
20685 * src/output.c (output_short_table): New argument to display the
20686 comment associated with the table.
20687 Adjust dependencies.
20688 (output_gram): Use it.
20689 (output_rule_data): Nicer output layout for YYTNAME.
20690
20691 2000-10-16 Akim Demaille <akim@epita.fr>
20692
20693 * src/lex.c (read_typename): New function.
20694 (lex): Use it.
20695 * src/reader.c (copy_dollar): Likewise.
20696
20697 2000-10-16 Akim Demaille <akim@epita.fr>
20698
20699 * src/reader.c (copy_comment2): Expect the input stream to be on
20700 the `/' which is suspected to open a comment, instead of being
20701 called after `//' or `/*' was read.
20702 (copy_comment, copy_definition, parse_union_decl, copy_action)
20703 (copy_guard): Adjust.
20704
20705 2000-10-16 Akim Demaille <akim@epita.fr>
20706
20707 * src/reader.c (parse_expect_decl): Use `skip_white_space' and
20708 `read_signed_integer'.
20709
20710 2000-10-16 Akim Demaille <akim@epita.fr>
20711
20712 * src/reader.c (copy_dollar): New function.
20713 (copy_guard, copy_action): Use it.
20714
20715 2000-10-16 Akim Demaille <akim@epita.fr>
20716
20717 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
20718 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
20719 New files, from Fileutils 4.0.27.
20720 * src/main.c (printable_version): Remove.
20721 * src/lex.c, src/reader.c: Use `quote'.
20722
20723 2000-10-04 Akim Demaille <akim@epita.fr>
20724
20725 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
20726
20727 2000-10-04 Akim Demaille <akim@epita.fr>
20728
20729 * doc/bison.texinfo: Various typos spotted by Neil Booth.
20730
20731 2000-10-04 Akim Demaille <akim@epita.fr>
20732
20733 When a literal string is used to define two different tokens,
20734 `bison -v' segfaults.
20735 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
20736
20737 * tests/regression.m4: New file.
20738 Include the core of the sample provided by Piotr Gackiewicz.
20739 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
20740 properly.
20741
20742 2000-10-04 Akim Demaille <akim@epita.fr>
20743
20744 * src/reader.c (parse_expect_decl): Keep `count' within the size
20745 of `buffer'.
20746 From Neil Booth.
20747
20748 2000-10-02 Paul Eggert <eggert@twinsun.com>
20749
20750 * bison.s1 (yyparse): Assign the default value
20751 unconditionally, to avoid a GCC warning and make the parser a
20752 tad smaller.
20753
20754 2000-10-02 Akim Demaille <akim@epita.fr>
20755
20756 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
20757 options.
20758
20759 2000-10-02 Akim Demaille <akim@epita.fr>
20760
20761 * src/derives.c, src/print.c, src/reduce.c: To ease the
20762 translation, move some `\n' out of the translated strings.
20763
20764 2000-10-02 Akim Demaille <akim@epita.fr>
20765
20766 The location tracking mechanism is precious for parse error
20767 messages. Nevertheless, it is enabled only when `@n' is used in
20768 the grammar, which is a different issue (you can use it in error
20769 message, but not in the grammar per se). Therefore, there should
20770 be another means to enable it.
20771
20772 * src/getargs.c (getargs): Support `--locations'.
20773 (usage): Report it.
20774 * src/getargs.h (locationsflag): Export it.
20775 * src/lex.c (percent_table): Support `%locations'.
20776 * src/reader.c (yylsp_needed): Remove this variable, now replaced
20777 with `locationsflag'.
20778 * doc/bison.texinfo: Document `--locations' and `%locations'.
20779 Sort the options.
20780 * tests/calc.m4: Test it.
20781
20782 For regularity of the names, replace each
20783 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
20784 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
20785 In addition replace each `flag' with `_flag'.
20786
20787 2000-10-02 Akim Demaille <akim@epita.fr>
20788
20789 Also test parse error messages, including with YYERROR_VERBOSE.
20790
20791 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
20792 associative).
20793 Use it to check the computations.
20794 Use it to check `nonassoc' is honored.
20795 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
20796 `--yyerror-verbose'.
20797 (_AT_CHECK_CALC): Adjust to this option.
20798 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
20799
20800 2000-10-02 Akim Demaille <akim@epita.fr>
20801
20802 Test also `--verbose', `--defines' and `--name-prefix'. Testing
20803 the latter demonstrates a flaw in the handling of non debugging
20804 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
20805 was used in order to simplify:
20806
20807 #if YYDEBUG
20808 if (yydebug)
20809 {
20810 ...
20811 }
20812 #endif
20813
20814 into
20815
20816 if (yydebug)
20817 {
20818 ...
20819 }
20820
20821 unfortunately this leads to a CPP conflict when
20822 `--name-prefix=foo' is used since it produces `#define yydebug
20823 foodebug'.
20824
20825 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
20826 (YYDPRINTF): New macro.
20827 Spread its use.
20828 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
20829 the bison options.
20830 Also test `--verbose', `--defines' and `--name-prefix'.
20831
20832 2000-10-02 Akim Demaille <akim@epita.fr>
20833
20834 Improve the readability of the produced parsers.
20835
20836 * src/bison.s1: Formatting changes.
20837 Improve the comment related to the `$' mark.
20838 (yydefault): Don't fall through to `yyresume': `goto' there.
20839 * src/output.c (output_parser): When the `$' is met, skip the end
20840 of its line.
20841 New variable, `number_of_dollar_signs', to check there's exactly
20842 one `$' in the parser skeleton.
20843
20844 2000-10-02 Akim Demaille <akim@epita.fr>
20845
20846 * lib/xstrdup.c: New file, from the fileutils.
20847 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
20848 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
20849 instead of strlen + xmalloc + strcpy.
20850 * src/symtab.c (copys): Remove, use xstrdup instead.
20851
20852 2000-10-02 Akim Demaille <akim@epita.fr>
20853
20854 * src/gram.h (associativity): New enum type which replaces the
20855 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
20856 `right_assoc', `left_assoc' and `non_assoc'.
20857 Adjust all dependencies.
20858 * src/reader.c: Formatting changes.
20859 (LTYPESTR): Don't define it, use it as a literal in
20860 `reader_output_yylsp'.
20861 * src/symtab.h (symbol_class): New enum type which replaces the
20862 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
20863 `sunknown', `stoken and `snterm'.
20864
20865 2000-10-02 Akim Demaille <akim@epita.fr>
20866
20867 * src/getargs.c (fixed_outfiles): Rename as...
20868 (yaccflag): for consistency and accuracy.
20869 Adjust dependencies.
20870
20871 2000-10-02 Akim Demaille <akim@epita.fr>
20872
20873 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
20874 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
20875 difficult and introduced a lot of core dump. It turns out that
20876 Bison used an implementation of `xmalloc' based on `calloc', and
20877 at various places it does depend upon the initialization to 0. I
20878 have not tried to isolate the pertinent places, and all the former
20879 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
20880 someone should address this issue.
20881
20882 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
20883 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
20884 files.
20885 Adjust dependencies.
20886 * src/warshall.h: New file.
20887 Propagate.
20888
20889 2000-10-02 Akim Demaille <akim@epita.fr>
20890
20891 Various anti-`extern in *.c' changes.
20892
20893 * src/system.h: Include `assert.h'.
20894
20895 2000-10-02 Akim Demaille <akim@epita.fr>
20896
20897 * src/state.h (nstates, final_state, first_state, first_shift)
20898 (first_reduction): Move their exportation from here...
20899 * src/LR0.h: to here.
20900 Adjust dependencies.
20901 * src/getargs.c (statisticsflag): New variable.
20902 Add support for `--statistics'.
20903 Adjust dependencies.
20904
20905 Remove a lot of now useless `extern' statements in most files.
20906
20907 2000-10-02 Akim Demaille <akim@epita.fr>
20908
20909 * src/LR0.h: New file.
20910 Propagate its use.
20911
20912 2000-10-02 Akim Demaille <akim@epita.fr>
20913
20914 * src/print.h: New file.
20915 Propagate its use.
20916 * src/print.c: Formatting and ordering changes.
20917 (verbose, terse): Replace with...
20918 (print_results): this new function.
20919 Adjust dependencies.
20920
20921 2000-10-02 Akim Demaille <akim@epita.fr>
20922
20923 * src/conflicts.c (conflict_report): New function.
20924 (conflict_log, verbose_conflict_log): Replace with...
20925 (print_conflicts): this function.
20926 Adjust dependencies.
20927 * src/conflicts.h: New file.
20928 Propagate its inclusion.
20929
20930 2000-10-02 Akim Demaille <akim@epita.fr>
20931
20932 * src/nullable.h: New file.
20933 Propagate its inclusion.
20934 * src/nullable.c: Formatting changes.
20935
20936 2000-10-02 Akim Demaille <akim@epita.fr>
20937
20938 * src/reduce.h: New file.
20939 Propagate its inclusion.
20940 * src/reduce.c: Topological sort and other formatting changes.
20941 (bool, TRUE, FALSE): Move their definition to...
20942 * src/system.h: here.
20943
20944 2000-10-02 Akim Demaille <akim@epita.fr>
20945
20946 * src/files.c: Formatting changes.
20947 (tryopen, tryclose, openfiles): Rename as...
20948 (xfopen, xfclose, open_files): this.
20949 (stringappend): static.
20950 * src/files.h: Complete the list of exported symbols.
20951 Propagate its use.
20952
20953 2000-10-02 Akim Demaille <akim@epita.fr>
20954
20955 * src/reader.h: New file.
20956 Propagate its use instead of tedious list of `extern' and
20957 prototypes.
20958 * src/reader.c: Formatting changes, topological sort,
20959 s/register//.
20960
20961 2000-10-02 Akim Demaille <akim@epita.fr>
20962
20963 * src/lex.h: Prototype `lex.c' exported functions.
20964 * src/reader.c: Adjust.
20965 * src/lex.c: Formatting changes.
20966 (safegetc): Rename as...
20967 (xgetc): this.
20968
20969 2000-10-02 Akim Demaille <akim@epita.fr>
20970
20971 * src/lalr.h: New file.
20972 Propagate its inclusion instead of prototypes and `extern'.
20973 * src/lalr.c: Formatting changes, topological sorting etc.
20974
20975 2000-10-02 Akim Demaille <akim@epita.fr>
20976
20977 * src/output.c (token_actions): Introduce a temporary array,
20978 YYDEFACT, that makes it possible for this function to use
20979 output_short_table.
20980
20981 2000-10-02 Akim Demaille <akim@epita.fr>
20982
20983 `user_toknums' is output as a `short[]' in `output.c', while it is
20984 defined as a `int[]' in `reader.c'. For consistency with the
20985 other output tables, `user_toknums' is now defined as a table of
20986 shorts.
20987
20988 * src/reader.c (user_toknums): Be a short table instead of an int
20989 table.
20990 Adjust dependencies.
20991
20992 Factor the short table outputs.
20993
20994 * src/output.c (output_short_table): New function.
20995 * src/output.c (output_gram, output_stos, output_rule_data)
20996 (output_base, output_table, output_check): Use it.
20997
20998 2000-10-02 Akim Demaille <akim@epita.fr>
20999
21000 * src/output.c (output): Topological sort of the functions, in
21001 order to get rid of the `static' prototypes.
21002 No longer use `register'.
21003 * src/output.h: New file.
21004 Propagate its inclusion in files explicitly prototyping functions
21005 from output.c.
21006
21007 2000-09-21 Akim Demaille <akim@epita.fr>
21008
21009 * src/atgeneral.m4: Update from Autoconf.
21010
21011 2000-09-21 Akim Demaille <akim@epita.fr>
21012
21013 * src/closure.h: New file.
21014 * src/closure.c: Formatting changes, topological sort over the
21015 functions, use of closure.h.
21016 (initialize_closure, finalize_closure): Rename as...
21017 (new_closure, free_closure): these. Adjust dependencies.
21018 * src/LR0.c: Formatting changes, topological sort, use of
21019 cloture.h.
21020 (initialize_states): Rename as...
21021 (new_states): this.
21022 * src/Makefile.am (noinst_HEADERS): Adjust.
21023
21024 2000-09-20 Akim Demaille <akim@epita.fr>
21025
21026 * src/acconfig.h: Don't protect config.h against multiple
21027 inclusion.
21028 Don't define PARAMS.
21029 * src/system.h: Define PARAMS.
21030 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
21031 purpose of config.h. system.h must not try to fix wrong
21032 definitions in config.h.
21033
21034 2000-09-20 Akim Demaille <akim@epita.fr>
21035
21036 * src/derives.h: New file.
21037 * src/main.c, src/derives.h: Use it.
21038 Formatting changes.
21039 * src/Makefile.am (noinst_HEADERS): Adjust.
21040
21041 2000-09-20 Akim Demaille <akim@epita.fr>
21042
21043 * tests/atgeneral.m4: Update from Autoconf.
21044 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
21045 (AT_CHECK_CALC): New macros.
21046 Use these macros to test bison with options `', `--raw',
21047 `--debug', `--yacc', `--yacc --debug'.
21048
21049 2000-09-19 Akim Demaille <akim@epita.fr>
21050
21051 * src/output.c: Formatting changes.
21052 * src/machine.h: Remove, leaving its contents in...
21053 * src/system.h: here.
21054 Include stdio.h.
21055 Adjust all dependencies on stdio.h and machine.h.
21056 * src/getargs.h: New file.
21057 Let all `extern' declarations about getargs.c be replaced with
21058 inclusion of `getargs.h'.
21059 * src/Makefile.am (noinst_HEADERS): Adjust.
21060
21061 * tests/calc.m4 (yyin): Be initialized in main, not on the global
21062 scope.
21063 (yyerror): Returns void, not int.
21064 * doc/bison.texinfo: Formatting changes.
21065
21066 2000-09-19 Akim Demaille <akim@epita.fr>
21067
21068 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
21069 portable.
21070
21071 2000-09-18 Akim Demaille <akim@epita.fr>
21072
21073 * configure.in: Append WARNING_CFLAGS to CFLAGS.
21074 * src/Makefile.am (INCLUDES): Don't.
21075 Be ready to fetch headers in lib/.
21076
21077 2000-09-18 Akim Demaille <akim@epita.fr>
21078
21079 * doc/bison.texinfo: Update the copyright.
21080 ANSIfy and GNUify the examples.
21081 Remove the old menu.
21082
21083 2000-09-18 Akim Demaille <akim@epita.fr>
21084
21085 First set of tests: use the `calc' example from the documentation.
21086
21087 * src/bison.s1 (yyparse): Condition the code using `yytname' which
21088 is defined only when YYDEBUG is.
21089 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
21090 * src/files.c (tryopen, tryclose): Formatting changes.
21091 Move to the top and be static.
21092 * src/reader.c (read_signed_integer): Likewise.
21093 * tests/calc.m4: New file.
21094 * Makefile.am, suite.m4: Adjust.
21095 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
21096
21097 2000-09-18 Akim Demaille <akim@epita.fr>
21098
21099 Add support for an Autotest test suite for Bison.
21100
21101 * m4/m4.m4, m4/atconfig.m4: New files.
21102 * m4/Makefile.am (EXTRA_DIST): Adjust.
21103 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
21104 files.
21105 * src/getargs.c: Display a more standard --version message.
21106 * src/reader.c (reader): Formatting changes.
21107 No longer depend upon VERSION_STRING.
21108 * configure.in: No longer use `dnl'.
21109 Set up the test suite and the new directory `tests/.
21110 (VERSION_STRING): Remove.
21111
21112 2000-04-14 Akim Demaille <akim@epita.fr>
21113
21114 * src/reader.c (copy_comment2): New function, same as former
21115 `copy_comment', but outputs into two FILE *.
21116 (copy_comment): Use it.
21117 (parse_union_decl): Use it.
21118 (get_type, parse_start_decl): Use the same `invalid' message.
21119 (parse_start_decl, parse_union_decl): Use the same `multiple'
21120 message.
21121 (parse_union_decl, copy_guard, copy_action): Use the same
21122 `unmatched' message.
21123 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
21124
21125 2000-03-31 Akim Demaille <akim@epita.fr>
21126
21127 * src/files.c (tryopen, tryclose): Move to the top.
21128 Be static.
21129
21130 2000-03-31 Akim Demaille <akim@epita.fr>
21131
21132 * src/main.c (main): Don't call `done', exit does it.
21133
21134 2000-03-31 Akim Demaille <akim@epita.fr>
21135
21136 * allocate.c: s/return (foo)/return foo/.
21137 * lalr.c: Likewise.
21138 * LR0.c: Likewise.
21139 * output.c: Likewise.
21140 * reader.c: Likewise.
21141 * symtab.c: Likewise.
21142 * vmsgetargs.c: Likewise.
21143
21144 2000-03-31 Akim Demaille <akim@epita.fr>
21145
21146 Clean up the error reporting functions.
21147
21148 * src/report.c: New file.
21149 * src/report.h: Likewise.
21150 * src/Makefile.am: Adjust.
21151 * m4/error.m4: New file.
21152 * m4/Makefile.am: Adjust.
21153 * configure.in (jm_PREREQ_ERROR): Call it.
21154 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
21155 Remove.
21156 (fatal, fatals): Remove. All callers use complain.c::fatal.
21157 (warn, warni, warns, warnss, warnss): Remove. All callers use
21158 complain.c::complain.
21159 (toomany): Remove, use fatal instead.
21160 * src/files.c (done): No argument, use complain_message_count.
21161 * src/main.c (main): Register `done' to `atexit'.
21162
21163 * src/getargs.c (usage): More `fputs', less `fprintf'.
21164
21165 2000-03-28 Akim Demaille <akim@epita.fr>
21166
21167 * lib/: New directory.
21168 * Makefile.am (SUBDIRS): Adjust.
21169 * configure.in: Adjust.
21170 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
21171 useless.
21172 * src/alloca.c: Moved to lib/.
21173 * src/getopt.c: Likewise.
21174 * src/getopt1.c: Likewise.
21175 * src/getopt.h: Likewise.
21176 * src/ansi2knr.c: Likewise.
21177 * src/ansi2knr.1: Likewise.
21178 * src/Makefile.am: Adjust.
21179 * lib/Makefile.am: New file.
21180
21181 2000-03-28 Akim Demaille <akim@epita.fr>
21182
21183 * src/getargs.c (usage): Refresh the help message.
21184
21185 2000-03-17 Akim Demaille <akim@epita.fr>
21186
21187 * src/getopt1.c: Updated from textutils 2.0e
21188 * src/getopt.c: Likewise.
21189 * src/getopt.h: Likewise.
21190
21191 2000-03-17 Akim Demaille <akim@epita.fr>
21192
21193 * src/Makefile.am (bison.simple): Fix the awk program: quote only
21194 the file name, not the whole `#line LINE FILE'.
21195
21196 2000-03-17 Akim Demaille <akim@epita.fr>
21197
21198 On syntax errors, report the token on which we choked.
21199
21200 * src/bison.s1 (yyparse): In the label yyerrlab, when
21201 YYERROR_VERBOSE, add yychar in msg.
21202
21203 2000-03-17 Akim Demaille <akim@epita.fr>
21204
21205 * src/reader.c (copy_at): New function.
21206 (copy_guard): Use it.
21207 (copy_action): Use it.
21208
21209 2000-03-17 Akim Demaille <akim@epita.fr>
21210
21211 Be kind to translators, save some useless translations.
21212
21213 * src/main.c (banner): New function.
21214 (fatal_banner): Use it.
21215 (warn_banner): Use it.
21216
21217 2000-03-17 Akim Demaille <akim@epita.fr>
21218
21219 * src/reader.c (copy_definition): Use copy_string and
21220 copy_comment. Removed now unused `match', `ended',
21221 `cplus_comment'.
21222 (copy_comment, copy_string): Moved, to be visible from
21223 copy_definition.
21224
21225 2000-03-17 Akim Demaille <akim@epita.fr>
21226
21227 * src/reader.c (copy_string): Declare `static inline'. No
21228 problems with inline, since it is checked by configure.
21229 (copy_comment): Likewise.
21230
21231 2000-03-17 Akim Demaille <akim@epita.fr>
21232
21233 * src/reader.c (packsymbols): Formatting changes.
21234
21235 2000-03-17 Akim Demaille <akim@epita.fr>
21236
21237 * src/reader.c (copy_comment): New function, factored out from:
21238 (copy_action): Use it. Removed now unused `match', `ended',
21239 `cplus_comment'.
21240 (copy_guard): Likewise.
21241
21242 2000-03-17 Akim Demaille <akim@epita.fr>
21243
21244 * src/reader.c (copy_string): New function, factored out from:
21245 (copy_action): Use it.
21246 (copy_guard): Likewise.
21247
21248 2000-03-17 Akim Demaille <akim@epita.fr>
21249
21250 Change the handling of @s so that they behave exactly like $s.
21251 There is now a pseudo variable @$ (readble and writable), location
21252 of the lhs of the rule (by default ranging from the location of
21253 the first symbol of the rhs, to the location of the last symbol,
21254 or, if the rhs is empty, YYLLOC).
21255
21256 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
21257 yyval.
21258 (yyparse): When providing a default semantic action, provide a
21259 default location action.
21260 (after the $): No longer change `*YYLSP', just stack YYLOC the
21261 same way you stack YYVAL.
21262 * src/reader.c (read_declarations): Use warns.
21263 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
21264 (copy_action, case '@'): Likewise.
21265 Use a standard error message, to save useless work from
21266 translators.
21267
21268 2000-03-17 Akim Demaille <akim@epita.fr>
21269
21270 * src/bison.s1: Formatting and cosmetics changes.
21271 * src/reader.c: Likewise.
21272 Update the Copyright notice.
21273
21274 2000-03-17 Akim Demaille <akim@epita.fr>
21275
21276 * src/bison.s1 (#line): All set to `#line' only, since the
21277 Makefile now handles them.
21278
21279 2000-03-16 Akim Demaille <akim@epita.fr>
21280
21281 * src/output.c (output_rule_data): Output the documentation of
21282 some of the tables.
21283 (Copyright notice): Update.
21284 Formatting changes.
21285
21286 2000-03-16 Akim Demaille <akim@epita.fr>
21287
21288 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
21289 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
21290 One `#if YYDEBUG' remains, since it uses variables which are
21291 defined only if `YYDEBUG != 0'.
21292
21293 2000-03-16 Akim Demaille <akim@epita.fr>
21294
21295 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
21296 and related variables so that the similarities are highlighted.
21297
21298 2000-03-16 Akim Demaille <akim@epita.fr>
21299
21300 * src/bison.s1: Properly indent CPP directives.
21301
21302 2000-03-16 Akim Demaille <akim@epita.fr>
21303
21304 * src/bison.s1: Properly indent the `alloca' CPP section.
21305
21306 2000-03-16 Akim Demaille <akim@epita.fr>
21307
21308 Do not hard code values of directories in `configure.in'.
21309 Update the `configure' tool chain.
21310
21311 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
21312 src/makefile.am.
21313 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
21314 (AC_OUTPUT): Add m4/Makefile.
21315 Bump to bison 1.28a, 1.29 has never been released.
21316 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
21317 handled via src/Makefile.am.
21318 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
21319 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
21320 autoheader.
21321 * Makefile.am (SUBDIRS): Add m4.
21322 (ACLOCAL_AM_FLAGS): New variable.
21323 (AUTOMAKE_OPTIONS): Add check-news.
21324 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
21325 the proper line number and file name.
21326 (DEFS): Propagate the location of bison library files and of the
21327 locale files.
21328 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
21329 builddir.
21330 * acinclude.m4: Remove, replaced by the directory m4.
21331 * m4/Makefile.am (EXTRA_DIST): New variable.
21332 * m4/gettext.m4: New file, from the fileutils.
21333 * m4/lcmessage.m4: Likewise
21334 * m4/progtest.m4: Likewise.
21335 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
21336
21337 2000-03-10 Akim Demaille <akim@epita.fr>
21338
21339 * src/closure.c:
21340 Formatting changes of various comments.
21341 Respect the GNU coding standards at various places.
21342 Don't use `_()' when no translation is needed.
21343
21344 1999-12-13 Jesse Thilo <jthilo@gnu.org>
21345
21346 * src/files.c:
21347 OS/2 honors TMPDIR environment variable.
21348
21349 1999-12-13 Jesse Thilo <jthilo@gnu.org>
21350
21351 * doc/bison.texinfo: Tweaked spelling and grammar.
21352 Updated ISBN.
21353 Removed reference to price of printed copy.
21354 Mention BISON_SIMPLE and BISON_HAIRY.
21355
21356 1999-12-13 Jesse Thilo <jthilo@gnu.org>
21357
21358 * configure.in, NEWS:
21359 Bison 1.29 released.
21360
21361 1999-10-27 Jesse Thilo <jthilo@gnu.org>
21362
21363 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
21364 Added reference card.
21365
21366 1999-07-26 Jesse Thilo <jthilo@gnu.org>
21367
21368 * po/ru.po: Added Russian translation.
21369
21370 1999-07-26 Jesse Thilo <jthilo@gnu.org>
21371
21372 * configure.in: Added Russian translation.
21373
21374 1999-07-06 Jesse Thilo <jthilo@gnu.org>
21375
21376 * configure.in, NEWS, README:
21377 Released version 1.28.
21378
21379 1999-06-14 Jesse Thilo <jthilo@gnu.org>
21380
21381 * src/system.h:
21382 Squashed redefinition warning on some systems.
21383
21384 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
21385 Have configure build version string instead of relying on ANSI string
21386 concatentation.
21387
21388 1999-06-14 Jesse Thilo <jthilo@gnu.org>
21389
21390 * po/POTFILES.in: Got rid of version.c.
21391
21392 1999-06-14 Jesse Thilo <jthilo@gnu.org>
21393
21394 * acconfig.h, configure.in:
21395 Have configure build version string instead of relying on ANSI string
21396 concatentation.
21397
21398 1999-06-08 Jesse Thilo <jthilo@gnu.org>
21399
21400 * doc/bison.1:
21401 Dropped mention of `+' for long-named options.
21402
21403 1999-05-30 Jesse Thilo <jthilo@gnu.org>
21404
21405 * src/files.c: Added <unistd.h> for unlink().
21406
21407 * src/Makefile.am, src/system.h:
21408 I18n fixes.
21409
21410 1999-05-30 Jesse Thilo <jthilo@gnu.org>
21411
21412 * README: Added a FAQ list.
21413
21414 * configure.in, acconfig.h:
21415 I18n fixes.
21416
21417 1999-05-30 Jesse Thilo <jthilo@gnu.org>
21418
21419 * doc/FAQ, doc/Makefile.am:
21420 Added a FAQ list.
21421
21422 1999-05-19 Jesse Thilo <jthilo@gnu.org>
21423
21424 * src/alloc.h, src/symtab.h, src/version.c:
21425 Protected inclusion of "config.h" with HAVE_CONFIG_H.
21426
21427 1999-04-18 Jesse Thilo <jthilo@gnu.org>
21428
21429 * src/.cvsignore, src/Makefile.am:
21430 Reorganized: sources in `src', documentation in `doc'.
21431
21432 * src/lex.c (literalchar):
21433 fixed the code for escaping double quotes (thanks
21434 Jonathan Czisny.)
21435
21436 1999-04-18 Jesse Thilo <jthilo@gnu.org>
21437
21438 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
21439 Adjusted paths to reflect directory reorganization.
21440
21441 1999-04-18 Jesse Thilo <jthilo@gnu.org>
21442
21443 * doc/.cvsignore, doc/Makefile.am:
21444 Reorganized: sources in `src', documentation in `doc'.
21445
21446 1999-04-18 Jesse Thilo <jthilo@gnu.org>
21447
21448 * configure.in:
21449 Updated AC_INIT file to reflect directory reorganization.
21450
21451 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
21452 Reorganized: sources in `src', documentation in `doc'.
21453
21454 1999-04-13 Jesse Thilo <jthilo@gnu.org>
21455
21456 * src/allocate.c:
21457 Don't declare calloc() and realloc() if not necessary.
21458
21459 1999-04-13 Jesse Thilo <jthilo@gnu.org>
21460
21461 * configure.in, acconfig.h, acinclude.m4:
21462 Don't declare calloc() and realloc() if not necessary.
21463
21464 1999-03-23 Jesse Thilo <jthilo@gnu.org>
21465
21466 * po/.cvsignore: Added i18n support.
21467
21468 1999-03-23 Jesse Thilo <jthilo@gnu.org>
21469
21470 * acconfig.h, configure.in, Makefile.am:
21471 Added i18n support.
21472
21473 1999-03-22 Jesse Thilo <jthilo@gnu.org>
21474
21475 * src/bison.s1: Fixed #line numbers.
21476
21477 1999-03-15 Jesse Thilo <jthilo@gnu.org>
21478
21479 * po/es.po, po/fr.po, po/nl.po, po/de.po:
21480 Added PO files from Translation Project.
21481
21482 1999-03-03 Jesse Thilo <jthilo@gnu.org>
21483
21484 * Makefile.am:
21485 Added support for non-ANSI compilers (ansi2knr).
21486
21487 1999-02-16 Jesse Thilo <jthilo@gnu.org>
21488
21489 * configure.in: Bumped version number to 1.27.
21490
21491 * Makefile.am:
21492 Added `bison.simple' to list of files removed by `make distclean'.
21493
21494 1999-02-12 Jesse Thilo <jthilo@gnu.org>
21495
21496 * src/files.c, src/files.h:
21497 Defined locations of parser files in config.h instead of Makefile.
21498
21499 1999-02-12 Jesse Thilo <jthilo@gnu.org>
21500
21501 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
21502 Defined locations of parser files in config.h instead of Makefile.
21503
21504 1999-02-09 Jesse Thilo <jthilo@gnu.org>
21505
21506 * Makefile.am:
21507 Removed inappropriate use of $< macro.
21508
21509 1999-02-05 Jesse Thilo <jthilo@gnu.org>
21510
21511 * po/Makefile.in.in, po/POTFILES.in:
21512 Add `po' directory skeleton.
21513
21514 1999-01-27 Jesse Thilo <jthilo@gnu.org>
21515
21516 * README: Document help-bison list.
21517
21518 * configure.in: Add check for mkstemp().
21519
21520 1999-01-20 Jesse Thilo <jthilo@gnu.org>
21521
21522 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
21523 Hush a few compiler warnings.
21524
21525 * src/files.c:
21526 Add tryclose(), which verifies that fclose was successful.
21527 Hush a couple of compiler warnings.
21528
21529 1999-01-20 Jesse Thilo <jthilo@gnu.org>
21530
21531 * Makefile.am, OChangeLog:
21532 ChangeLog is now automatically generated. Include the old version as
21533 OChangeLog.
21534
21535 1999-01-14 Jesse Thilo <jthilo@gnu.org>
21536
21537 * 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:
21538 Update FSF address.
21539
21540 1999-01-14 Jesse Thilo <jthilo@gnu.org>
21541
21542 * doc/bison.texinfo: Fix formatting glitch.
21543
21544 * doc/bison.texinfo: Update FSF address.
21545
21546 1999-01-14 Jesse Thilo <jthilo@gnu.org>
21547
21548 * acconfig.h: Update FSF address.
21549
21550 1999-01-08 Jesse Thilo <jthilo@gnu.org>
21551
21552 * src/system.h:
21553 Don't define PACKAGE here, since config.h defines it.
21554
21555 1998-12-30 Jesse Thilo <jthilo@gnu.org>
21556
21557 * src/reader.c: Update copyright date.
21558
21559 * src/main.c:
21560 Ditch sprintf to statically-sized buffers in fatal/warn functions in
21561 favor of output directly to stderr (avoids buffer overruns).
21562
21563 * src/reader.c: Some checks for premature EOF.
21564
21565 * 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:
21566 Use prototypes if the compiler understands them.
21567
21568 * src/files.c: Honor TMPDIR on Unix hosts.
21569 Use prototypes if the compiler understands them.
21570
21571 * src/reader.c:
21572 Fix a couple of buffer overrun bugs.
21573 Use prototypes if the compiler understands them.
21574
21575 * src/system.h: Include unistd.h and ctype.h.
21576 Use #ifdef instead of #if for NLS symbols.
21577
21578 1998-12-30 Jesse Thilo <jthilo@gnu.org>
21579
21580 * doc/bison.texinfo:
21581 Delete comment "consider using @set for edition number, etc..." since
21582 we now are doing so.
21583
21584 1998-12-30 Jesse Thilo <jthilo@gnu.org>
21585
21586 * configure.in:
21587 Use prototypes if the compiler understands them.
21588
21589 * NEWS: Document 1.26 highlights.
21590
21591 * Makefile.am: Require Automake 1.3 or later.
21592
21593 * acconfig.h:
21594 Use prototypes if the compiler understands them.
21595
21596 1998-12-29 Jesse Thilo <jthilo@gnu.org>
21597
21598 * src/version.c:
21599 Use VERSION symbol from automake for version number.
21600
21601 1998-12-29 Jesse Thilo <jthilo@gnu.org>
21602
21603 * acconfig.h, configure.in, version.cin:
21604 Use VERSION symbol from automake for version number.
21605
21606 1998-11-28 Jesse Thilo <jthilo@gnu.org>
21607
21608 * Makefile.am:
21609 Distribute original version of simple parser (bison.s1), not built
21610 version (bison.simple).
21611
21612 1998-11-28 Jesse Thilo <jthilo@gnu.org>
21613
21614 * doc/bison.texinfo: Add info dir entry.
21615
21616 * doc/bison.texinfo:
21617 Let automake put version number into documentation.
21618
21619 1998-11-26 Jesse Thilo <jthilo@gnu.org>
21620
21621 * src/bison.cld, src/build.com, src/vmshlp.mar:
21622 Add non-RCS files from /gd/gnu/bison.
21623
21624 1998-11-26 Jesse Thilo <jthilo@gnu.org>
21625
21626 * doc/bison.1:
21627 Document the BISON_HAIRY and BISON_SIMPLE variables.
21628
21629 1998-11-25 Jesse Thilo <jthilo@gnu.org>
21630
21631 * src/version.c: Build version.c automatically.
21632
21633 * src/reader.c:
21634 Fix token numbering (used to start at 258, not 257).
21635
21636 * src/system.h: Include config.h.
21637
21638 * src/getargs.c: Update bug report address.
21639
21640 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
21641 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
21642
21643 1998-11-25 Jesse Thilo <jthilo@gnu.org>
21644
21645 * Makefile.am:
21646 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
21647
21648 * configure.in, version.cin:
21649 Build version.c automatically.
21650
21651 * AUTHORS: Add AUTHORS file.
21652
21653 * README: Update bug report address.
21654
21655 * bison.simple:
21656 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
21657
21658 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
21659 Add automake stuff.
21660
21661 1998-11-25 Jesse Thilo <jthilo@gnu.org>
21662
21663 * doc/bison.texinfo: Clean up some formatting.
21664
21665 1998-05-05 Richard Stallman <rms@gnu.org>
21666
21667 * doc/bison.texinfo:
21668 Explain better why to make a pure parser.
21669
21670 1998-01-05 Richard Stallman <rms@gnu.org>
21671
21672 * src/files.c (openfiles):
21673 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
21674 find a temporary directory, if possible. Do not unlink files while
21675 they are open.
21676
21677 1997-08-25 Richard Stallman <rms@gnu.org>
21678
21679 * src/reader.c (stack_offset;):
21680 Change some warni to warns.
21681
21682 * src/lex.c (literalchar): Use warns, not warni.
21683
21684 1997-06-28 Richard Stallman <rms@gnu.org>
21685
21686 * src/bison.s1: Add a Bison version comment.
21687
21688 * src/main.c (fatal, warn, berror):
21689 Use program_name.
21690
21691 1997-06-28 Richard Stallman <rms@gnu.org>
21692
21693 * Makefile.in (bison_version): New variable.
21694 (dist): Use that variable.
21695 (bison.s1): Substitute the Bison version into bison.simple.
21696
21697 * bison.simple: Add a Bison version comment.
21698
21699 1997-06-18 Richard Stallman <rms@gnu.org>
21700
21701 * src/main.c (fatal, warn, berror):
21702 Make error messages standard.
21703 (toomany): Improve error message text.
21704
21705 * 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:
21706 new.h renamed to alloc.h.
21707
21708 1997-06-18 Richard Stallman <rms@gnu.org>
21709
21710 * Makefile.in: new.h renamed to alloc.h.
21711
21712 1997-05-24 Richard Stallman <rms@gnu.org>
21713
21714 * src/lex.c (literalchar):
21715 Fix the code for escaping \, " and '.
21716
21717 (lex): Avoid trouble when there are many chars
21718 to discard in a char literal with just several chars in it.
21719
21720 1997-05-17 Richard Stallman <rms@gnu.org>
21721
21722 * src/bison.s1:
21723 Use malloc, if using alloca is troublesome.
21724 (YYSTACK_USE_ALLOCA): New flag macro.
21725 Define it for some systems and compilers.
21726 (YYSTACK_ALLOC): New macro.
21727 (yyparse): Use YYSTACK_ALLOC to allocate stack.
21728 If it was malloc'd, free it.
21729
21730 1997-05-17 Richard Stallman <rms@gnu.org>
21731
21732 * bison.simple:
21733 Use malloc, if using alloca is troublesome.
21734 (YYSTACK_USE_ALLOCA): New flag macro.
21735 Define it for some systems and compilers.
21736 (YYSTACK_ALLOC): New macro.
21737 (yyparse): Use YYSTACK_ALLOC to allocate stack.
21738 If it was malloc'd, free it.
21739
21740 1997-04-23 Richard Stallman <rms@gnu.org>
21741
21742 * src/bison.s1:
21743 (alloca) [__hpux]: Always define as __builtin_alloca.
21744
21745 1997-04-23 Richard Stallman <rms@gnu.org>
21746
21747 * bison.simple:
21748 (alloca) [__hpux]: Always define as __builtin_alloca.
21749
21750 1997-04-22 Richard Stallman <rms@gnu.org>
21751
21752 * src/bison.s1:
21753 [__hpux]: Include alloca.h (right for HPUX 10)
21754 instead of declaring alloca (right for HPUX 9).
21755
21756 * src/bison.s1 (__yy_memcpy):
21757 Declare arg `count' as unsigned int.
21758 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
21759
21760 1997-04-22 Richard Stallman <rms@gnu.org>
21761
21762 * bison.simple:
21763 [__hpux]: Include alloca.h (right for HPUX 10)
21764 instead of declaring alloca (right for HPUX 9).
21765
21766 * bison.simple (__yy_memcpy):
21767 Declare arg `count' as unsigned int.
21768 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
21769
21770 1997-01-03 Richard Stallman <rms@gnu.org>
21771
21772 * src/allocate.c: [__STDC__ or _MSC_VER]:
21773 Declare calloc and realloc to return void *.
21774
21775 1997-01-02 Richard Stallman <rms@gnu.org>
21776
21777 * src/system.h:
21778 [_MSC_VER]: Include stdlib.h and process.h.
21779 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
21780
21781 * src/main.c (main): Return FAILURE as a value.
21782 (printable_version): Declare arg as int, not char.
21783
21784 1997-01-02 Richard Stallman <rms@gnu.org>
21785
21786 * Makefile.in (dist):
21787 Explicitly check for symlinks, and copy them.
21788
21789 1996-12-19 Richard Stallman <rms@gnu.org>
21790
21791 * src/files.c:
21792 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
21793
21794 1996-12-18 Paul Eggert <eggert@gnu.org>
21795
21796 * src/bison.s1 (yyparse):
21797 If __GNUC__ and YYPARSE_PARAM are both defined,
21798 declare yyparse to have a void * argument.
21799
21800 1996-12-18 Paul Eggert <eggert@gnu.org>
21801
21802 * bison.simple (yyparse):
21803 If __GNUC__ and YYPARSE_PARAM are both defined,
21804 declare yyparse to have a void * argument.
21805
21806 1996-12-17 Richard Stallman <rms@gnu.org>
21807
21808 * src/reduce.c (nbits): Add some casts.
21809
21810 1996-08-12 Richard Stallman <rms@gnu.org>
21811
21812 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
21813
21814 1996-08-12 Richard Stallman <rms@gnu.org>
21815
21816 * bison.simple: Test _MSDOS as well as _MSDOS_.
21817
21818 1996-07-31 Richard Stallman <rms@gnu.org>
21819
21820 * src/bison.s1:
21821 [__sun && __i386]: Include alloca.h.
21822
21823 1996-07-31 Richard Stallman <rms@gnu.org>
21824
21825 * bison.simple:
21826 [__sun && __i386]: Include alloca.h.
21827
21828 1996-07-30 Richard Stallman <rms@gnu.org>
21829
21830 * src/bison.s1: Comment change.
21831
21832 * src/bison.s1: Test _MSDOS_, not MSDOS.
21833
21834 1996-07-30 Richard Stallman <rms@gnu.org>
21835
21836 * bison.simple: Comment change.
21837
21838 * bison.simple: Test _MSDOS_, not MSDOS.
21839
21840 1996-06-01 Richard Stallman <rms@gnu.org>
21841
21842 * 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:
21843 Insert `_' macro around many string constants.
21844
21845 * src/main.c:
21846 Insert `_' macro around many string constants.
21847
21848 (main): Call setlocale, bindtextdomain and textdomain.
21849
21850 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
21851 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
21852 [ENABLE_NLS]: Include libintl.h.
21853 [ENABLE_NLS] (gettext): Define.
21854 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
21855 (N_, PACKAGE, LOCALEDIR): New macros.
21856
21857 1996-06-01 Richard Stallman <rms@gnu.org>
21858
21859 * POTFILES.in: New file.
21860
21861 * Makefile.in (allocate.o):
21862 Define target explicitly.
21863
21864 * Makefile.in (CFLAGS): Set to @CFLAGS@.
21865 (LDFLAGS): Set to @LDFLAGS@.
21866 (configure): Run autoconf only if preceding `cd' succeeds.
21867 (bison.s1): Redirect output to temporary file then move the
21868 temporary to the target, rather than redirecting directly to bison.s1.
21869 (clean): Remove config.status and config.log.
21870 (distclean): Don't remove config.status here.
21871
21872 1996-05-12 Richard Stallman <rms@gnu.org>
21873
21874 * src/bison.s1:
21875 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
21876
21877 1996-05-12 Richard Stallman <rms@gnu.org>
21878
21879 * bison.simple:
21880 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
21881
21882 1996-05-11 Richard Stallman <rms@gnu.org>
21883
21884 * src/bison.s1 (__yy_memcpy):
21885 Really reorder the args, as was supposedly done on Feb 14 1995.
21886 (yyparse): Calls changed accordingly.
21887
21888 1996-05-11 Richard Stallman <rms@gnu.org>
21889
21890 * Makefile.in (dist): Don't use $(srcdir).
21891
21892 * bison.simple (__yy_memcpy):
21893 Really reorder the args, as was supposedly done on Feb 14 1995.
21894 (yyparse): Calls changed accordingly.
21895
21896 1996-01-27 Richard Stallman <rms@gnu.org>
21897
21898 * src/output.c (output_rule_data):
21899 Test YYERROR_VERBOSE in the conditional
21900 around the definition of ttyname.
21901
21902 1995-12-29 Richard Stallman <rms@gnu.org>
21903
21904 * src/bison.s1:
21905 Fix line numbers in #line commands.
21906
21907 1995-12-29 Richard Stallman <rms@gnu.org>
21908
21909 * bison.simple:
21910 Fix line numbers in #line commands.
21911
21912 1995-12-27 Richard Stallman <rms@gnu.org>
21913
21914 * src/bison.s1 (YYPARSE_PARAM_DECL):
21915 In C++, make it always null.
21916 (YYPARSE_PARAM_ARG): New macro.
21917 (yyparse): Use YYPARSE_PARAM_ARG.
21918
21919 1995-12-27 Richard Stallman <rms@gnu.org>
21920
21921 * bison.simple (YYPARSE_PARAM_DECL):
21922 In C++, make it always null.
21923 (YYPARSE_PARAM_ARG): New macro.
21924 (yyparse): Use YYPARSE_PARAM_ARG.
21925
21926 1995-11-29 Richard Stallman <rms@gnu.org>
21927
21928 * doc/bison.texinfo:
21929 Describe literal string tokens, %raw, %no_lines, %token_table.
21930
21931 1995-11-29 Daniel Hagerty <hag@gnu.org>
21932
21933 * doc/bison.texinfo: Fixed update date
21934
21935 1995-10-16 Richard Stallman <rms@gnu.org>
21936
21937 * src/version.c: Version 1.25.
21938
21939 1995-10-16 Richard Stallman <rms@gnu.org>
21940
21941 * NEWS: *** empty log message ***
21942
21943 1995-10-16 Richard Stallman <rms@gnu.org>
21944
21945 * doc/bison.1, doc/bison.rnh:
21946 Add new options.
21947
21948 1995-10-15 Richard Stallman <rms@gnu.org>
21949
21950 * src/vmsgetargs.c, src/getargs.c:
21951 Added -n, -k, and -raw switches.
21952 (noparserflag, toknumflag, rawtoknumflag): New variables.
21953
21954 * src/symtab.h (SALIAS):
21955 New #define for adding aliases to %token.
21956 (struct bucket): Added `alias' field.
21957
21958 * src/reduce.c (reduce_grammar):
21959 Revise error message.
21960 (print_notices): Remove final `.' from error message.
21961
21962 * src/reader.c (reader_output_yylsp):
21963 New function.
21964 (readgram): Use `#if 0' around code that accepted %command
21965 inside grammar rules: The documentation doesn't allow it,
21966 and it will fail since the %command processors scan for the next %.
21967 (parse_token_decl): Extended the %token
21968 declaration to allow a multi-character symbol as an alias.
21969 (parse_thong_decl): New function.
21970 (read_declarations): Added %thong declarations.
21971 (read_declarations): Handle NOOP to deal with allowing
21972 % declarations as another means to specify the flags.
21973 (readgram): Allow %prec prior to semantics embedded in a rule.
21974 (skip_to_char, read_declarations, copy_definition)
21975 (parse_token_decl, parse_start_decl, parse_type_decl)
21976 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
21977 (get_type_name, copy_guard, copy_action, readgram)
21978 (get_type, packsymbols): Revised most error messages.
21979 Changed `fatal' to `warnxxx' to avoid aborting for error.
21980 Revised and use multiple warnxxx functions to avoid using VARARGS1.
21981 (read_declarations): Improve the error message for
21982 an invalid character. Do not abort.
21983 (read_declarations, copy_guard, copy_action): Use
21984 printable_version to avoid unprintable characters in printed output.
21985 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
21986 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
21987 Allow the type of a non-terminal can be given
21988 more than once, as long as all specifications give the same type.
21989
21990 * src/output.c:
21991 (output_headers, output_trailers, output, output_gram)
21992 (output_rule_data): Implement noparserflag variable.
21993 Implement toknumflag variable.
21994 (output): Call reader_output_yylsp to output LTYPESTR.
21995
21996 * src/main.c (main):
21997 If reader sees an error, don't process the grammar.
21998 (fatals): Updated to not use VARARGS1.
21999 (printable_version, int_to_string, warn, warni, warns, warnss)
22000 (warnsss): New error reporting functions. Avoid abort for error.
22001
22002 * src/lex.h:
22003 Added THONG and NOOP for alias processing.
22004 Added SETOPT for the new code that allows setting options with %flags.
22005
22006 * src/lex.c:
22007 Include getopt.h. Add some extern decls.
22008 (safegetc): New function to deal with EOF gracefully.
22009 (literalchar); new function to deal with reading \ escapes.
22010 (lex): Use literalchar.
22011 (lex): Implemented "..." tokens.
22012 (literalchar, lex, parse_percent_token): Made tokenbuffer
22013 always contain the token. This includes growing the token
22014 buffer while reading an integer.
22015 (parse_percent_token): Replaced if-else statement with percent_table.
22016 (parse_percent_token): Added % declarations as another
22017 way to specify the flags -n, -l, and -r. Also added hooks for
22018 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
22019 major changes to files.c.
22020 (lex) Retain in the incoming stream a character following
22021 an incorrect '/'.
22022 (skip_white_space, lex): Revised most error messages
22023 and changed fatal to warn to avoid aborting.
22024 (percent_table): Added %thong declarations.
22025
22026 * src/gram.h: Comment changes.
22027
22028 * src/files.c (openfiles, open_extra_files, done):
22029 Add faction flag
22030 and actfile file. Handle noparserflag. Both for -n switch.
22031
22032 * src/conflicts.c (resolve_sr_conflict):
22033 Remove use of alloca.
22034
22035 1995-06-01 Jim Meyering <meyering@gnu.org>
22036
22037 * doc/bison.texinfo: *** empty log message ***
22038
22039 1995-05-06 Richard Stallman <rms@gnu.org>
22040
22041 * src/bison.s1: Comment change.
22042
22043 1995-05-06 Richard Stallman <rms@gnu.org>
22044
22045 * bison.simple: Comment change.
22046
22047 1995-05-03 Richard Stallman <rms@gnu.org>
22048
22049 * src/version.c: Version now 1.24.
22050
22051 * src/bison.s1: Change distribution terms.
22052
22053 * src/version.c: Version now 1.23.
22054
22055 1995-05-03 Richard Stallman <rms@gnu.org>
22056
22057 * doc/bison.texinfo:
22058 Rewrite "Conditions for Using Bison".
22059 Update version to 1.24.
22060
22061 1995-05-03 Richard Stallman <rms@gnu.org>
22062
22063 * bison.simple: Change distribution terms.
22064
22065 1995-02-23 Richard Stallman <rms@gnu.org>
22066
22067 * src/files.c: Test __VMS_POSIX as well as VMS.
22068
22069 1995-02-14 Jim Meyering <meyering@gnu.org>
22070
22071 * src/bison.s1 (__yy_memcpy):
22072 Renamed from __yy_bcopy to avoid
22073 confusion. Reverse FROM and TO arguments to be consistent with
22074 those of memcpy.
22075
22076 1995-02-14 Jim Meyering <meyering@gnu.org>
22077
22078 * bison.simple (__yy_memcpy):
22079 Renamed from __yy_bcopy to avoid
22080 confusion. Reverse FROM and TO arguments to be consistent with
22081 those of memcpy.
22082
22083 1994-11-10 David J. MacKenzie <djm@gnu.org>
22084
22085 * NEWS: reformat
22086
22087 * NEWS: New file.
22088
22089 * Makefile.in (DISTFILES): Include NEWS.
22090
22091 * Makefile.in (DISTFILES):
22092 Include install-sh, not install.sh.
22093
22094 * configure.in: Update to Autoconf v2 macro names.
22095
22096 1994-10-05 David J. MacKenzie <djm@gnu.org>
22097
22098 * Makefile.in: fix typo
22099
22100 * Makefile.in (prefix, exec_prefix):
22101 Let configure set them.
22102
22103 1994-09-28 David J. MacKenzie <djm@gnu.org>
22104
22105 * Makefile.in: Set datadir to $(prefix)/share.
22106
22107 1994-09-15 Richard Stallman <rms@gnu.org>
22108
22109 * src/bison.s1:
22110 Update copyright notice and GPL version.
22111
22112 1994-09-15 Richard Stallman <rms@gnu.org>
22113
22114 * bison.simple:
22115 Update copyright notice and GPL version.
22116
22117 1994-07-12 Richard Stallman <rms@gnu.org>
22118
22119 * src/reduce.c, src/reader.c:
22120 entered into RCS
22121
22122 1994-05-05 David J. MacKenzie <djm@gnu.org>
22123
22124 * Makefile.in: entered into RCS
22125
22126 1994-03-26 Richard Stallman <rms@gnu.org>
22127
22128 * src/bison.s1: entered into RCS
22129
22130 1994-03-26 Richard Stallman <rms@gnu.org>
22131
22132 * bison.simple: entered into RCS
22133
22134 1994-03-25 Richard Stallman <rms@gnu.org>
22135
22136 * src/main.c: entered into RCS
22137
22138 1994-03-24 Richard Stallman <rms@gnu.org>
22139
22140 * src/conflicts.c: entered into RCS
22141
22142 1994-01-02 Richard Stallman <rms@gnu.org>
22143
22144 * Makefile.in: *** empty log message ***
22145
22146 1993-11-21 Richard Stallman <rms@gnu.org>
22147
22148 * src/bison.s1: *** empty log message ***
22149
22150 1993-11-21 Richard Stallman <rms@gnu.org>
22151
22152 * doc/bison.texinfo: entered into RCS
22153
22154 * doc/bison.texinfo: *** empty log message ***
22155
22156 1993-11-21 Richard Stallman <rms@gnu.org>
22157
22158 * bison.simple: *** empty log message ***
22159
22160 1993-10-25 David J. MacKenzie <djm@gnu.org>
22161
22162 * doc/bison.texinfo: *** empty log message ***
22163
22164 1993-10-19 Richard Stallman <rms@gnu.org>
22165
22166 * src/bison.s1: *** empty log message ***
22167
22168 1993-10-19 Richard Stallman <rms@gnu.org>
22169
22170 * bison.simple: *** empty log message ***
22171
22172 1993-10-14 Richard Stallman <rms@gnu.org>
22173
22174 * src/bison.s1: *** empty log message ***
22175
22176 1993-10-14 Richard Stallman <rms@gnu.org>
22177
22178 * bison.simple: *** empty log message ***
22179
22180 1993-09-14 David J. MacKenzie <djm@gnu.org>
22181
22182 * doc/bison.texinfo: *** empty log message ***
22183
22184 1993-09-13 Noah Friedman <friedman@gnu.org>
22185
22186 * Makefile.in: *** empty log message ***
22187
22188 1993-09-10 Richard Stallman <rms@gnu.org>
22189
22190 * src/conflicts.c: *** empty log message ***
22191
22192 * src/system.h: entered into RCS
22193
22194 1993-09-10 Richard Stallman <rms@gnu.org>
22195
22196 * doc/bison.1: entered into RCS
22197
22198 1993-09-06 Noah Friedman <friedman@gnu.org>
22199
22200 * src/version.c: entered into RCS
22201
22202 1993-09-06 Noah Friedman <friedman@gnu.org>
22203
22204 * Makefile.in: *** empty log message ***
22205
22206 1993-07-30 David J. MacKenzie <djm@gnu.org>
22207
22208 * Makefile.in: *** empty log message ***
22209
22210 1993-07-24 Richard Stallman <rms@gnu.org>
22211
22212 * src/bison.s1: *** empty log message ***
22213
22214 1993-07-24 Richard Stallman <rms@gnu.org>
22215
22216 * bison.simple: *** empty log message ***
22217
22218 1993-07-08 David J. MacKenzie <djm@gnu.org>
22219
22220 * Makefile.in: *** empty log message ***
22221
22222 1993-07-04 Richard Stallman <rms@gnu.org>
22223
22224 * src/bison.s1: *** empty log message ***
22225
22226 1993-07-04 Richard Stallman <rms@gnu.org>
22227
22228 * bison.simple: *** empty log message ***
22229
22230 1993-06-26 David J. MacKenzie <djm@gnu.org>
22231
22232 * src/getargs.c: entered into RCS
22233
22234 1993-06-26 David J. MacKenzie <djm@gnu.org>
22235
22236 * doc/bison.texinfo: *** empty log message ***
22237
22238 * doc/bison.1: New file.
22239
22240 1993-06-25 Richard Stallman <rms@gnu.org>
22241
22242 * src/getargs.c: New file.
22243
22244 1993-06-16 Richard Stallman <rms@gnu.org>
22245
22246 * src/bison.s1: *** empty log message ***
22247
22248 1993-06-16 Richard Stallman <rms@gnu.org>
22249
22250 * bison.simple: *** empty log message ***
22251
22252 1993-06-03 Richard Stallman <rms@gnu.org>
22253
22254 * src/bison.s1: New file.
22255
22256 1993-06-03 Richard Stallman <rms@gnu.org>
22257
22258 * doc/bison.texinfo: *** empty log message ***
22259
22260 1993-06-03 Richard Stallman <rms@gnu.org>
22261
22262 * bison.simple: New file.
22263
22264 1993-05-19 Richard Stallman <rms@gnu.org>
22265
22266 * doc/bison.texinfo: New file.
22267
22268 1993-05-07 Noah Friedman <friedman@gnu.org>
22269
22270 * Makefile.in: *** empty log message ***
22271
22272 1993-04-28 Noah Friedman <friedman@gnu.org>
22273
22274 * src/reader.c: *** empty log message ***
22275
22276 1993-04-23 Noah Friedman <friedman@gnu.org>
22277
22278 * src/alloc.h: entered into RCS
22279
22280 1993-04-20 David J. MacKenzie <djm@gnu.org>
22281
22282 * src/version.c: *** empty log message ***
22283
22284 * src/files.c, src/allocate.c:
22285 entered into RCS
22286
22287 * src/reader.c: *** empty log message ***
22288
22289 * src/lex.c: entered into RCS
22290
22291 * src/conflicts.c: New file.
22292
22293 * src/symtab.c: entered into RCS
22294
22295 * src/alloc.h: New file.
22296
22297 * src/LR0.c: entered into RCS
22298
22299 1993-04-18 Noah Friedman <friedman@gnu.org>
22300
22301 * src/reader.c: New file.
22302
22303 * src/version.c: *** empty log message ***
22304
22305 1993-04-18 Noah Friedman <friedman@gnu.org>
22306
22307 * Makefile.in: *** empty log message ***
22308
22309 1993-04-17 Noah Friedman <friedman@gnu.org>
22310
22311 * Makefile.in: *** empty log message ***
22312
22313 1993-04-15 Richard Stallman <rms@gnu.org>
22314
22315 * src/main.c, src/files.c:
22316 New file.
22317
22318 1993-04-15 Noah Friedman <friedman@gnu.org>
22319
22320 * configure.in: entered into RCS
22321
22322 * configure.in: *** empty log message ***
22323
22324 * configure.in: New file.
22325
22326 1993-04-14 Richard Stallman <rms@gnu.org>
22327
22328 * Makefile.in: New file.
22329
22330 1993-04-13 Richard Stallman <rms@gnu.org>
22331
22332 * src/version.c: New file.
22333
22334 1993-03-25 Richard Stallman <rms@gnu.org>
22335
22336 * src/output.c: entered into RCS
22337
22338 1992-09-25 Richard Stallman <rms@gnu.org>
22339
22340 * configure.bat: entered into RCS
22341
22342 1992-06-22 Richard Stallman <rms@gnu.org>
22343
22344 * src/vmsgetargs.c: entered into RCS
22345
22346 1992-06-22 Richard Stallman <rms@gnu.org>
22347
22348 * doc/bison.rnh: entered into RCS
22349
22350 1992-04-20 David J. MacKenzie <djm@gnu.org>
22351
22352 * README: entered into RCS
22353
22354 1992-01-22 Richard Stallman <rms@gnu.org>
22355
22356 * src/machine.h: entered into RCS
22357
22358 1991-12-21 Richard Stallman <rms@gnu.org>
22359
22360 * src/lalr.c, src/closure.c:
22361 entered into RCS
22362
22363 1991-12-20 Richard Stallman <rms@gnu.org>
22364
22365 * src/state.h: entered into RCS
22366
22367 1991-12-18 Richard Stallman <rms@gnu.org>
22368
22369 * src/print.c, src/nullable.c, src/derives.c:
22370 entered into RCS
22371
22372 1991-11-03 David J. MacKenzie <djm@gnu.org>
22373
22374 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
22375 entered into RCS
22376
22377 1988-09-09 Richard Stallman <rms@gnu.org>
22378
22379 * src/bison.hairy: entered into RCS
22380
22381 1987-12-16 Richard Stallman <rms@gnu.org>
22382
22383 * REFERENCES: entered into RCS
22384
22385
22386 -----
22387
22388 Copyright (C) 1987, 1988, 1991, 1992, 1993, 1994, 1995, 1996,
22389 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
22390 Free Software Foundation, Inc.
22391
22392 Copying and distribution of this file, with or without
22393 modification, are permitted provided the copyright notice and this
22394 notice are preserved.