]> git.saurik.com Git - bison.git/blob - ChangeLog
Define the constructors of symbol_type in b4_symbol_constructor_definitions.
[bison.git] / ChangeLog
1 2008-11-13 Akim Demaille <demaille@gostai.com>
2
3 Define the constructors of symbol_type in b4_symbol_constructor_definitions.
4 The constructors are called by the make_symbol functions, which a
5 forthcoming patch will move elsewhere. Hence the interest of putting them
6 together.
7
8 The stack_symbol_type does not need to be moved, it is used only by the
9 parser.
10
11 * data/lalr1.cc: Move symbol_type and symbol_base_type
12 constructors into...
13 (b4_symbol_constructor_definitions): here.
14 Adjust.
15
16 2008-11-13 Akim Demaille <demaille@gostai.com>
17
18 Make it easier to move the definition of yytranslate_.
19 Forthcoming changes will make it possible to use yytranslate_
20 from outside the parser implementation file.
21
22 * data/lalr1.cc (b4_yytranslate_definition): New.
23 Use it.
24
25 2008-11-13 Akim Demaille <demaille@gostai.com>
26
27 Remove useless class specification.
28 * data/lalr1.cc (b4_symbol_constructor_specialization_): No need
29 to refer to the class name to use a type defined by the class for
30 arguments of member functions.
31
32 2008-11-13 Akim Demaille <demaille@gostai.com>
33
34 Finer input type for yytranslate.
35 This patch is debatable: the tradition expects yylex to return an int
36 which happens to correspond to token_number (which is an enum). This
37 allows for instance to return characters (such as '*' etc.). But this
38 goes against the stronger typing I am trying to have with the new
39 lex interface which return a symbol_type. So in this case, feed
40 yytranslate_ with a token_type.
41
42 * data/lalr1.cc (yytranslate_): When in %define lex-symbol,
43 expect a token_type.
44
45 2008-11-13 Akim Demaille <demaille@gostai.com>
46
47 Honor lex-params in %define lex_symbol mode.
48 * data/lalr1.cc: Use b4_lex_param.
49
50 2008-11-13 Akim Demaille <demaille@gostai.com>
51
52 Simplify names.
53 * src/output.c (symbol_definitions_output): Rename symbol
54 attributes type_name and has_type_name as type and has_type.
55 * data/lalr1.cc: Adjust uses.
56
57 2008-11-13 Akim Demaille <demaille@gostai.com>
58
59 Use b4_type_names for the union type.
60 The union used to compute the size of the variant used to iterate over the
61 type of all the symbols, with a lot of redundancy. Now iterate over the
62 lists of symbols having the same type-name.
63
64 * data/lalr1.cc (b4_char_sizeof_): New.
65 (b4_char_sizeof): Use it.
66 Adjust to be called with a list of numbers instead of a single
67 number.
68 Adjust its caller for new-line issues.
69
70 2008-11-13 Akim Demaille <demaille@gostai.com>
71
72 Define the "identifier" of a symbol.
73 Symbols may have several string representations, for instance if they
74 have an alias. What I call its "id" is a string that can be used as
75 an identifier. May not exist.
76
77 Currently the symbols which have the "tag_is_id" flag set are those that
78 don't have an alias. Look harder for the id.
79
80 * src/output.c (is_identifier): Move to...
81 * src/symtab.c (is_identifier): here.
82 * src/symtab.h, src/symtab.c (symbol_id_get): New.
83 * src/output.c (symbol_definitions_output): Use it to define "id"
84 and "has_id".
85 Remove the definition of "tag_is_id".
86 * data/lalr1.cc: Use the "id" and "has_id" whereever "tag" and
87 "tag_is_id" were used to produce code.
88 We still use "tag" for documentation.
89
90 2008-11-11 Akim Demaille <demaille@gostai.com>
91
92 Locations are no longer required by lalr1.cc.
93 * data/lalr1.cc (_b4_args, b4_args): New.
94 Adjust all uses of locations to make them optional.
95 * tests/c++.at (AT_CHECK_VARIANTS): No longer use the locations.
96 (AT_CHECK_NAMESPACE): Check the use of locations.
97 * tests/calc.at (_AT_DATA_CALC_Y): Adjust to be usable with or
98 without locations with lalr1.cc.
99 Test these cases.
100 * tests/output.at: Check lalr1.cc with and without location
101 support.
102 * tests/regression.at (_AT_DATA_EXPECT2_Y, _AT_DATA_DANCER_Y):
103 Don't use locations.
104
105 2008-11-11 Akim Demaille <demaille@gostai.com>
106
107 AT_FULL_COMPILE.
108 * tests/local.at (AT_FULL_COMPILE): New.
109 * tests/actions.at, tests/calc.at, tests/regression.at: Use it.
110
111 2008-11-11 Akim Demaille <demaille@gostai.com>
112
113 Support parens in calc++.
114 * doc/bison.texinfo (Calc++ Scanner, Calc++ Parser): Support parens.
115 * examples/calc++/test (run): Check the expected output.
116 Adjust callers.
117 Check parens too.
118
119 2008-11-11 Akim Demaille <demaille@gostai.com>
120
121 Simplify lalr1.cc since %defines is mandatory.
122 * data/lalr1.cc: Remove useless calls to b4_defines_if.
123
124 2008-11-11 Akim Demaille <demaille@gostai.com>
125
126 TODO: yyfmt.
127 * TODO (yysyntax_error): New item.
128
129 2008-11-11 Akim Demaille <demaille@gostai.com>
130
131 Prefer M4 to CPP.
132 * data/lalr1.cc: Use b4_error_verbose_if instead of #if
133 YYERROR_VERBOSE.
134
135 2008-11-11 Akim Demaille <demaille@gostai.com>
136
137 Support i18n of the parse error messages.
138 * TODO (lalr1.cc/I18n): Remove.
139 * data/lalr1.cc (yysyntax_error_): Support the translation of the
140 error messages, as done in yacc.c.
141 Stay within the yy* pseudo namespace.
142
143 2008-11-11 Akim Demaille <demaille@gostai.com>
144
145 More TODO.
146 * TODO (single stack, yysyntax_error): New.
147
148 2008-11-11 Akim Demaille <demaille@gostai.com>
149
150 Make it possible to return a symbol_type from yylex.
151 * data/lalr1.cc (b4_lex_symbol_if): New.
152 (parse): When lex_symbol is defined, expected yylex to return the
153 complete lookahead.
154 * etc/bench.pl.in (generate_grammar_list): Extend to support this
155 yylex interface.
156 (bench_variant_parser): Exercise it.
157
158 2008-11-11 Akim Demaille <demaille@gostai.com>
159
160 Remove useless bench case.
161 * etc/bench.pl.in (bench_variant_parser): VARIANT_DESTROY is
162 no longer used.
163
164 2008-11-11 Akim Demaille <demaille@gostai.com>
165
166 Improve display of directives.
167 * etc/bench.pl.in (parse_term): Don't add useless eol.
168
169 2008-11-11 Akim Demaille <demaille@gostai.com>
170
171 Use string_cast in the bench.
172 * etc/bench.pl.in (generate_grammar_list): Define and use
173 string_cast.
174
175 2008-11-11 Akim Demaille <demaille@gostai.com>
176
177 Replace yychar with a Boolean.
178 * data/lalr1.cc (parse::yychar): Replace by...
179 (parse::yyempty): this.
180
181 2008-11-11 Akim Demaille <demaille@gostai.com>
182
183 Factor the tables.
184 * TODO: New item.
185
186 2008-11-11 Akim Demaille <demaille@gostai.com>
187
188 Let yytranslate handle the eof case.
189 * data/lalr1.cc (yytranslate_): Handle the EOF case.
190 Adjust callers.
191 No longer expect yychar to be equal to yyeof_, rather, test the
192 lookahead's (translated) kind.
193
194 2008-11-11 Akim Demaille <demaille@gostai.com>
195
196 yychar cannot be empty in yyerrlab.
197 * TODO (yychar == yyempty_): New.
198 * data/lalr1.cc: Remove the handling of this case.
199 This eases forthcoming changes related to yychar and yytranslate.
200
201 2008-11-11 Akim Demaille <demaille@gostai.com>
202
203 Bench: syntactic sugar for %define/#define.
204 * etc/bench.pl.in (parse_dirs): Support %d and #d with arguments.
205 (&bench_push_parser, bench_variant_parser): Use this feature.
206 (&eat): New.
207 Use it.
208
209 2008-11-11 Akim Demaille <demaille@gostai.com>
210
211 Less memory pressure on the "list" bench.
212 * etc/bench.pl.in (generate_grammar_list): Do not accumulate all
213 the values, to limit memory pressure.
214
215 2008-11-11 Akim Demaille <demaille@gostai.com>
216
217 Introduce make_symbol.
218 make_symbol provides a means to construct a full symbol (kind, value,
219 location) in a single shot. It is meant to be a Symbol constructor,
220 parameterized by the symbol kind so that overloading would prevent
221 incorrect kind/value pairs. Unfortunately parameterized constructors do
222 not work well in C++ (unless the parameter also appears as an argument,
223 which is not acceptable), hence the use of a function instead of a
224 constructor.
225
226 * data/lalr1.cc (b4_symbol_constructor_declaration_)
227 (b4_symbol_constructor_declarations)
228 (b4_symbol_constructor_specialization_)
229 (b4_symbol_constructor_specializations)
230 (b4_symbol_constructor_definition_)
231 (b4_symbol_constructor_definitions): New.
232 Use them where appropriate to generate declaration, declaration of
233 the specializations, and implementations of the templated
234 overloaded function "make_symbol".
235 (variant::variant): Always define a default ctor.
236 Also provide a copy ctor.
237 (symbol_base_type, symbol_type): New ctor overloads for value-less
238 symbols.
239 (symbol_type): Now public, so that functions such as yylex can use
240 it.
241
242 2008-11-11 Akim Demaille <demaille@gostai.com>
243
244 Inform m4 whether a tag is a valid id.
245 * src/output.c (is_identifier): New.
246 (symbol_definitions_output): Use it to define tag_is_id.
247 But maybe this should be done at m4 level?
248
249 2008-11-11 Akim Demaille <demaille@gostai.com>
250
251 Test 214 was failing: it greps with a pattern containing [ ]*
252 which obviously meant to catch spaces and tabs, but contained only
253 spaces. Tabulations in sources are a nuisance, so to simplify the
254 matter, get rid of all the tabulations in the Java sources. The
255 other skeletons will be treated equally later.
256
257 * data/java.m4, data/lalr1.java: Untabify.
258 * tests/java.at: Simplify AT_CHECK_JAVA_GREP invocations:
259 tabulations are no longer generated.
260
261 2008-11-11 Paolo Bonzini <bonzini@gnu.org>
262
263 * bootstrap.conf: Replace m4/warning.m4 with warnings module.
264 * configure.ac: Adjust usage.
265 * lib/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
266 * src/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
267 * tests/atlocal.in: Replace $(WARNING_*FLAGS) with $(WARN_*FLAGS).
268
269 2008-11-10 Di-an Jan <dianj@freeshell.org>
270
271 Workaround Java's ``code too large'' problem for parser tables
272 in most cases, by using one function per initialization.
273 * data/java.m4 (b4_typed_parser_table, b4_integral_parser_table): New.
274 * data/lalr1.java (yypact_, yydefact_, yypgoto_, yydefgoto_,
275 yytable_, yycheck_, yystos_, yytoken_number_, yyr1_, yyr2_, yyrhs_
276 yyprhs_, yyrline_, yytranslate_table_): Use b4_integral_parser_table.
277 (yytname_): Use b4_typed_parser_table.
278 * doc/bison.texinfo (Java Bison Interface): Add note on Java's
279 ``code too large'' error.
280
281 2008-11-10 Di-an Jan <dianj@freeshell.org>
282
283 * NEWS: Document them.
284
285 General Java skeleton improvements.
286 * configure.ac (gt_JAVACOMP): Request target of 1.4, which allows
287 using gcj < 4.3 in the testsuite, according to comments in
288 gnulib/m4/javacomp.m4.
289 * data/java.m4 (stype, parser_class_name, lex_throws, throws,
290 location_type, position_type): Remove extraneous brackets from
291 b4_percent_define_default.
292 (b4_lex_param, b4_parse_param): Remove extraneous brackets from
293 m4_define and m4_define_default.
294 * data/lalr1.java (b4_pre_prologue): Change to b4_user_post_prologue,
295 which marks the end of user code with appropriate syncline, like all
296 the other skeletons.
297 (b4_user_post_prologue): Add. Don't silently drop.
298 (yylex): Remove.
299 (parse): Inline yylex.
300 * doc/bison.texinfo (bisonVersion, bisonSkeleton): Document.
301 (%{...%}): Fix typo of %code imports.
302 * tests/java.at (AT_JAVA_COMPILE): Add "java" keyword.
303
304 Support annotations on parser class with %define annotations.
305 * data/lalr1.java (annotations): Add to parser class modifier.
306 * doc/bison.texinfo (Java Parser Interface): Document
307 %define annotations.
308 (Java Declarations Summary): Document %define annotations.
309 * tests/java.at (Java parser class modifiers): Test annotations.
310
311 Do not generate code for %error-verbose unless requested.
312 * data/lalr1.java (errorVerbose): Rename to yyErrorVerbose.
313 Make private. Make conditional on %error-verbose.
314 (getErrorVerbose, setErrorVerbose): New.
315 (yytnamerr_): Make conditional on %error-verbose.
316 (yysyntax_error): Make some code conditional on %error-verbose.
317 * doc/bison.texinfo (Java Bison Interface): Remove the parts
318 about %error-verbose having no effect.
319 (getErrorVerbose, setErrorVerbose): Document.
320
321 Move constants for token names to Lexer interface.
322 * data/lalr1.java (Lexer): Move EOF, b4_token_enums(b4_tokens) here.
323 * data/java.m4 (b4_token_enum): Indent for move to Lexer interface.
324 (parse): Qualify EOF to Lexer.EOF.
325 * doc/bison.texinfo (Java Parser Interface): Move documentation of
326 EOF and token names to Java Lexer Interface.
327 * tests/java.at (_AT_DATA_JAVA_CALC_Y): Remove Calc qualifier.
328
329 Make yyerror public.
330 * data/lalr1.java (Lexer.yyerror): Use longer parameter name.
331 (yyerror): Change to public. Add Javadoc comments. Use longer
332 parameter names. Make the body rather than the declarator
333 conditional on %locations.
334 * doc/bison.texinfo (yyerror): Document. Don't mark as protected.
335
336 Allow user to add code to the constructor with %code init.
337 * data/java.m4 (b4_init_throws): New, for %define init_throws.
338 * data/lalr1.java (YYParser.YYParser): Add b4_init_throws.
339 Add %code init to the front of the constructor body.
340 * doc/bison.texinfo (YYParser.YYParser): Document %code init
341 and %define init_throws.
342 (Java Declarations Summary): Document %code init and
343 %define init_throws.
344 * tests/java.at (Java %parse-param and %lex-param): Adjust grep.
345 (Java constructor init and init_throws): Add tests.
346
347 2008-11-10 Akim Demaille <demaille@gostai.com>
348
349 Update TODO.
350 * TODO (-D): is implemented.
351 (associativity): Same precedence must have the same associativity.
352 For instance, how can a * b / c be parsed if * is %left and / is
353 %right?
354 (YYERRORCODE, YYFAIL, YYBACKUP): New.
355
356 2008-11-10 Akim Demaille <demaille@gostai.com>
357
358 Formatting changes.
359
360 2008-11-10 Akim Demaille <demaille@gostai.com>
361
362 More information about the symbols.
363 * src/output.c (type_names_output): Document all the symbols,
364 including those that don't have a type-name.
365 (symbol_definitions_output): Define "is_token" and
366 "has_type_name".
367 * data/lalr1.cc (b4_type_action_): Skip symbols that have an empty
368 type-name, now that they are defined too in b4_type_names.
369
370 2008-11-10 Akim Demaille <demaille@gostai.com>
371
372 Regen.
373
374 2008-11-10 Akim Demaille <demaille@gostai.com>
375
376 Make parser::yytranslate static.
377 Small speedup (1%) on the list grammar. And makes yytranslate_ available
378 in non member functions.
379
380 * data/lalr1.cc (yytranslate_): Does not need to be a instance
381 function.
382
383 2008-11-10 Akim Demaille <demaille@gostai.com>
384
385 Avoid trailing spaces.
386 * data/c.m4: b4_comment(TEXT): Don't indent empty lines.
387 * data/lalr1.cc: Don't indent before rule and symbol actions, as
388 they can be empty, and anyway this incorrectly indents the first
389 action.
390
391 2008-11-10 Akim Demaille <demaille@gostai.com>
392
393 Comment changes.
394
395 2008-11-10 Akim Demaille <demaille@gostai.com>
396
397 Use "enum" for integral constants.
398 This is just nicer to read, I observed no speedup.
399
400 * data/lalr1.cc (yyeof_, yylast_, yynnts_, yyempty_, yyfinal_)
401 (yterror_, yyerrcode_, yyntokens_): Define as members of an enum.
402 (yyuser_token_number_max_, yyundef_token_): Move into...
403 (yytranslate_): here.
404
405 2008-11-10 Akim Demaille <demaille@gostai.com>
406
407 Shortcuts in bench directives.
408 * etc/bench.pl.in (parse_dirs): New.
409 Use it.
410 (bench_variant_parser, bench_fusion_parser): Use %s and %d.
411 Create the benches in "benches/".
412
413 2008-11-10 Akim Demaille <demaille@gostai.com>
414
415 Formatting changes.
416 * data/lalr1.cc: here.
417
418 2008-11-10 Akim Demaille <demaille@gostai.com>
419
420 Adjust verbose message to using emacs.
421 * etc/bench.pl.in: Inform compilation-mode when we change the
422 directory.
423 (generate_grammar_list): Recognize %define "variant" in addition
424 to %define variant.
425
426 2008-11-10 Akim Demaille <demaille@gostai.com>
427
428 Classify symbols by type-name.
429 * src/uniqstr.h (UNIQSTR_CMP): New.
430 * src/output.c (symbol_type_name_cmp, symbols_by_type_name)
431 (type_names_output): New.
432 (muscles_output): Use it.
433 * data/lalr1.cc (b4_symbol_action_): Remove.
434 (b4_symbol_case_, b4_type_action_): New.
435 Adjust uses of b4_symbol_action_ to use b4_type_action_.
436
437 2008-11-10 Akim Demaille <demaille@gostai.com>
438
439 Change the handling of the symbols in the skeletons.
440 Before we were using tables which lines were the symbols and which
441 columns were things like number, tag, type-name etc. It is was
442 difficult to extend: each time a column was added, all the numbers had
443 to be updated (you asked for colon $2, not for "tag"). Also, it was
444 hard to filter these tables when only a subset of the symbols (say the
445 tokens, or the nterms, or the tokens that have and external number
446 *and* a type-name) was of interest.
447
448 Now instead of monolithic tables, we define one macro per cell. For
449 instance "b4_symbol(0, tag)" is a macro name which contents is
450 self-decriptive. The macro "b4_symbol" provides easier access to
451 these cells.
452
453 * src/output.c (type_names_output): Remove.
454 (symbol_numbers_output, symbol_definitions_output): New.
455 (muscles_output): Call them.
456 (prepare_symbols): Define b4_symbols_number.
457
458 2008-11-10 Akim Demaille <demaille@gostai.com>
459
460 --trace=muscles
461 * src/getargs.h, src/getargs.c (trace_muscle): New.
462 (trace_types, trace_args): Support it.
463 * src/output.c (output_skeleton): Use it.
464
465 2008-11-10 Akim Demaille <demaille@gostai.com>
466
467 muscles_output.
468 * src/output.c (muscles_output): New, extracted from...
469 (output_skeleton): here.
470 Adjust.
471
472 2008-11-10 Akim Demaille <demaille@gostai.com>
473
474 Formatting changes.
475
476 2008-11-10 Akim Demaille <demaille@gostai.com>
477
478 Update the variant example.
479 * examples/variant.yy: Formatting changes.
480 One stage build.
481
482 2008-11-10 Akim Demaille <demaille@gostai.com>
483
484 Support constructor with an argument.
485 This improves the "list" bench by 2%.
486
487 * data/lalr1.cc (variant::build): Add an overloaded version with
488 an argument.
489 * tests/c++.at (AT_CHECK_VARIANT): Check it.
490
491 2008-11-10 Akim Demaille <demaille@gostai.com>
492
493 Test variants.
494 * tests/c++.at (AT_CHECK_VARIANTS): New.
495 Use it with and without %define assert.
496
497 2008-11-10 Akim Demaille <demaille@gostai.com>
498
499 Add %precedence support.
500 Unfortunately it is not possible to reuse the %prec directive. This
501 is because to please POSIX, we do not require to end the rules with a
502 semicolon. As a result,
503
504 foo: bar %prec baz
505
506 is ambiguous: either a rule which precedence is that of baz, or a rule,
507 and then a declaration of the precedence of the token baz.
508
509 * doc/bison.texinfo: Document %precedence.
510 (Precedence Only): New.
511 * src/assoc.h, src/assoc.c (precedence_assoc): New.
512 * src/conflicts.c (resolve_sr_conflict): Support it.
513 * src/scan-gram.l, src/parse-gram.y (%precedence): New token.
514 Parse it.
515 * tests/calc.at: Use %precedence for NEG.
516 * tests/conflicts.at (%precedence does not suffice)
517 (%precedence suffices): New tests.
518
519 2008-11-09 Akim Demaille <demaille@gostai.com>
520
521 Make benches in a sub dirs.
522 * etc/bench.pl.in ($dir): New.
523 Use it.
524 Check the use of constructors with an argument.
525 (bench_variant_parser): Fix.
526
527 2008-11-09 Akim Demaille <demaille@gostai.com>
528
529 fix eof condition
530
531 2008-11-09 Akim Demaille <demaille@gostai.com>
532
533 Fix --help.
534
535 2008-11-09 Akim Demaille <demaille@gostai.com>
536
537 Require the generation of parse-gram.output.
538 * src/Makefile.am (YACC): Pass --report=all.
539
540 2008-11-09 Akim Demaille <demaille@gostai.com>
541
542 Formatting changes.
543
544 2008-11-09 Akim Demaille <demaille@gostai.com>
545
546 Update TODO.
547 * TODO: Remove obsolete items.
548 Update others.
549
550 2008-11-09 Akim Demaille <demaille@gostai.com>
551
552 Enhance bench.pl.
553 * etc/bench.pl.in (parse, parse_expr, parse_term, parse_fact)
554 (@token, $grammar, $bench): New.
555 (generate_grammar_variant): Rename as...
556 (generate_grammar_list): this.
557 (generate_grammar): Adjust.
558 (bench_grammar): Rename as...
559 (bench): this.
560 Use it in the various bench-marking routines.
561 (-b, -g): New options.
562
563 2008-11-09 Akim Demaille <demaille@gostai.com>
564
565 Use a static hierarchy for symbols in the C++ parser.
566 * data/lalr1.cc (symbol_base_type, symbol_type)
567 (stack_symbol_type): Make it a static hierarchy.
568 Adjust dependencies.
569
570 2008-11-09 Akim Demaille <demaille@gostai.com>
571
572 bench.pl -d, --directive.
573 * etc/bench.pl.in (@directive): New.
574 (&bench_grammar): Use it.
575 (&bench_list_grammar): New, to provide access to the "variant"
576 grammar.
577 Use it.
578 (getopts): Support -d, --directive.
579
580 2008-11-09 Akim Demaille <demaille@gostai.com>
581
582 Use inline for small operations.
583 * data/lalr1.cc (symbol_base_type, symbol_type)
584 (stack_symbol_type): Declare constructor and other operations as
585 inline.
586 (yy_destroy_): Inline.
587
588 2008-11-09 Akim Demaille <demaille@gostai.com>
589
590 Introduce a hierarchy for symbols.
591 * data/lalr1.cc (symbol_base_type, symbol_type): New.
592 (data_type): Rename as...
593 (stack_symbol_type): this.
594 Derive from symbol_base_type.
595 (yy_symbol_value_print_): Merge into...
596 (yy_symbol_print_): this.
597 Rename as...
598 (yy_print_): this.
599 (yydestruct_): Rename as...
600 (yy_destroy_): this.
601 (b4_symbols_actions, YY_SYMBOL_PRINT): Adjust.
602 (parser::parse): yyla is now of symbol_type.
603 Use its type member instead of yytoken.
604
605 2008-11-09 Akim Demaille <demaille@gostai.com>
606
607 Rename data_type and stack_symbol_type.
608 * data/lalr1.cc (data_type): Rename as...
609 (stack_symbol_type): this.
610
611 2008-11-09 Akim Demaille <demaille@gostai.com>
612
613 Handle semantic value and location together.
614 * data/lalr1.cc (b4_symbol_actions): Bounce $$ and @$ to
615 yydata.value and yydata.location.
616 (yy_symbol_value_print_, yy_symbol_print_, yydestruct_)
617 (YY_SYMBOL_PRINT): Now take semantic value and location as a
618 single arg.
619 Adjust all callers.
620 (yydestruct_): New overload for a stack symbol.
621
622 2008-11-09 Akim Demaille <demaille@gostai.com>
623
624 Push a complete symbol, not connected parts.
625 * data/lalr1.cc (yypush_): Take a data_type&, not disconnected
626 state, value and location.
627 Adjust callers.
628
629 2008-11-09 Akim Demaille <demaille@gostai.com>
630
631 Agregate yylval and yylloc.
632 * data/lalr1.cc (parser::yylval, parser::yylloc): Replace by...
633 (parser::yyla): this.
634
635 2008-11-09 Akim Demaille <demaille@gostai.com>
636
637 Rely on the state stack to display reduction traces.
638 To display rhs symbols before a reduction, we used information about the rule
639 reduced, which required the tables yyrhs and yyprhs. Now use rely only on the
640 state stack to get the same information.
641
642 * data/lalr1.cc (b4_rhs_data, b4_rhs_state): New.
643 Use them.
644 (parser::yyrhs_, parser::yyprhs_): Remove.
645 (parser::yy_reduce_print_): Use the state stack.
646
647 2008-11-09 Akim Demaille <demaille@gostai.com>
648
649 Fuse yyval and yyloc into yylhs.
650 * data/lalr1.cc (b4_lhs_value, b4_lhs_location): Adjust to using
651 yylhs.
652 (parse): Replace yyval and yyloc with yylhs.value and
653 yylhs.location.
654 After a user action, compute yylhs.state earlier.
655 (yyerrlab1): Do not play tricks with yylhs.location, rather, use a
656 fresh error_token.
657
658 2008-11-09 Di-an Jan <dianj@freeshell.org>
659
660 Remove unused variable.
661 * src/output.c (type_names_output): Remove unused variable sep.
662
663 2008-11-09 Paolo Bonzini <bonzini@gnu.org>
664
665 Change tests/output.at quoting.
666 * tests/output.at (AT_CHECK_OUTPUT): Use conventional m4 quoting when
667 expanding arguments.
668
669 2008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
670
671 Don't add a semicolon to actions for %skeleton or %language.
672 It breaks Java test cases as reported by Akim Demaille.
673 * src/scan-code.l: Implement.
674
675 2008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
676
677 Clean up %skeleton and %language priority implementation.
678 * src/getargs.c (skeleton_prio): Use default_prio rather than 2, and
679 remove static qualifier because others will soon need to see it.
680 (language_prio): Likewise.
681 (getargs): Use command_line_prio rather than 0.
682 * src/getargs.h (command_line_prio, grammar_prio, default_prio): New
683 enum fields.
684 (skeleton_prio): Extern it.
685 (language_prio): Extern it.
686 * src/parse-gram.y: Use grammar_prio rather than 1.
687
688 2008-11-07 Akim Demaille <demaille@gostai.com>
689
690 Moving push traces into yypush_.
691 * data/lalr1.cc (yypush_): Now takes a optional trace message.
692 Adjust all uses.
693
694 2008-11-07 Akim Demaille <demaille@gostai.com>
695
696 The single-stack C++ parser is now the standard one.
697 * data/lalr1.cc: Rename as...
698 * data/lalr1-split.cc: this.
699 * data/lalr1-fusion.cc: Rename as...
700 * data/lalr1.cc: this.
701 * etc/bench.pl.in: Adjust.
702
703 2008-11-07 Akim Demaille <demaille@gostai.com>
704
705 Avoid empty-if warnings.
706 Reported by Quentin Hocquet.
707
708 * data/lalr1-fusion.cc (YY_SYMBOL_PRINT, YY_REDUCE_PRINT)
709 (YY_STACK_PRINT): Provide some contents even when !YYDEBUG.
710
711 2008-11-07 Akim Demaille <demaille@gostai.com>
712
713 Pass command line location to skeleton_arg and language_argmatch.
714 * src/getargs.h, src/getargs.c (skeleton_arg, language_argmatch):
715 The location argument is now mandatory.
716 Adjust all dependencies.
717 (getargs): Use command_line_location.
718
719 2008-11-07 Akim Demaille <demaille@gostai.com>
720
721 -D, --define.
722 * src/getargs.c (usage): Document -D.
723 Fix help string for --locations.
724 (command_line_location): New.
725 (short_options, long_options, getargs): Support -D, --define.
726 (getargs): Move -d support at the right place.
727 * doc/bison.texinfo (Bison Options): Update.
728 * tests/input.at (%define, --define): New.
729
730 2008-11-07 Akim Demaille <demaille@gostai.com>
731
732 Initialize the muscle table before parsing the command line.
733 * src/getargs.c (quotearg.h, muscle_tab.h): Include.
734 (getargs): Define file_name.
735 * src/main.c (main): Initialize muscle_tab before calling
736 getargs.
737 * src/muscle_tab.c (muscle_init): No longer define file_name, as
738 its value is not available yet.
739
740 2008-11-07 Akim Demaille <demaille@gostai.com>
741
742 Locations without columns for command line arguments.
743 * src/location.c (location_print): Don't display negative columns.
744 * src/location.h: Document this.
745
746 2008-11-07 Akim Demaille <demaille@gostai.com>
747
748 Fix --help.
749 * src/getargs.c (usage): Fix help string for -W.
750
751 2008-11-07 Akim Demaille <demaille@gostai.com>
752
753 Handle more general types of option arguments.
754 * build-aux/cross-options.pl: The argument ends at the first
755 space, not the first non-symbol character.
756 Use @var for each word appearing the argument description.
757
758 2008-11-07 Akim Demaille <demaille@gostai.com>
759
760 Destroy the variants that remain on the stack in case of error.
761 * data/lalr1-fusion.cc (yydestruct_): Invoke the variant's
762 destructor.
763 Display the value only if yymsg is nonnull.
764 (yyreduce): Invoke yydestruct_ when popping lhs symbols.
765
766 2008-11-07 Akim Demaille <demaille@gostai.com>
767
768 Add "%define assert" to variants.
769 This is used to help the user catch cases where some value gets
770 ovewritten by a new one. This should not happen, as this will
771 probably leak.
772
773 Unfortunately this uncovered a bug in the C++ parser itself: the
774 lookahead value was not destroyed between two calls to yylex. For
775 instance if the previous lookahead was a std::string, and then an int,
776 then the value of the std::string was correctly taken (i.e., the
777 lookahead was now an empty string), but std::string structure itself
778 was not reclaimed.
779
780 This is now done in variant::build(other&) (which is used to take the
781 value of the lookahead): other is not only stolen from its value, it
782 is also destroyed. This incurs a new performance penalty of a few
783 percent, and union becomes faster again.
784
785 * data/lalr1-fusion.cc (variant::build(other&)): Destroy other.
786 (b4_variant_if): New.
787 (variant::built): New.
788 Use it whereever the status of the variant changes.
789 * etc/bench.pl.in: Check the penalty of %define assert.
790
791 2008-11-07 Akim Demaille <demaille@gostai.com>
792
793 Use "%define variant" in bench.pl.
794 * etc/bench.pl.in: No longer use the pseudo directive %variants,
795 just use %define variants.
796
797 2008-11-07 Akim Demaille <demaille@gostai.com>
798
799 Regen.
800 * src/parse-gram.h, src/parse-gram.c: Regen.
801
802 2008-11-04 Joel E. Denny <jdenny@ces.clemson.edu>
803
804 Fix user actions without a trailing semicolon.
805 Reported by Sergei Steshenko at
806 <http://lists.gnu.org/archive/html/bug-bison/2008-11/msg00001.html>.
807 * THANKS (Sergei Steshenko): Add.
808 * src/scan-code.l (SC_RULE_ACTION): Fix it.
809 * tests/regression.at (Fix user actions without a trailing semicolon):
810 New test case.
811
812 2008-11-04 Akim Demaille <demaille@gostai.com>
813
814 Use b4_copyright_years.
815 * data/yacc.c (b4_copyright_years): New.
816 Fix its value according to the comments in the file.
817 Use it and undefine it.
818
819 2008-11-04 Akim Demaille <demaille@gostai.com>
820
821 Formatting changes.
822 * data/lalr1-fusion.cc, src/parse-gram.y: here.
823
824 2008-11-04 Akim Demaille <demaille@gostai.com>
825
826 Formatting changes.
827 * data/lalr1-fusion.cc: here.
828
829 2008-11-04 Akim Demaille <demaille@gostai.com>
830
831 Use strict on bench.pl.
832 * etc/bench.pl.in (&run, &generate_grammar): New.
833 Rename the grammar generating functions for consistency.
834 Change the interface so that the list of benches to run is passed
835 as (optionless) arguments.
836 (&compile): Use &run.
837
838 2008-11-04 Akim Demaille <demaille@gostai.com>
839
840 Remove spurious initial empty lines.
841 * data/glr.c, data/glr.cc, data/lalr1.cc, data/lalr1.java,
842 * data/yacc.c: End the @output lines with an @.
843
844 2008-11-04 Akim Demaille <demaille@gostai.com>
845
846 Improve the display of sizes.
847 * etc/bench.p.in: Higher precision.
848 Sort by decreasing size.
849
850 2008-11-04 Akim Demaille <demaille@gostai.com>
851
852 Don't memcpy C++ structures.
853 * data/lalr1-fusion.cc (b4_symbol_variant): Adjust additional
854 arguments.
855 (variant::build): New overload for
856 copy-construction-that-destroys.
857 (variant::swap): New.
858 (parser::yypush_): Use it in variant mode.
859
860 2008-11-04 Akim Demaille <demaille@gostai.com>
861
862 Better defaults for bench.pl.
863 * etc/bench.pl.in ($verbose, $cflags, $iterations): Change the
864 default values.
865 Adjust &verbose uses.
866 (-q, --quiet): New.
867
868 2008-11-04 Akim Demaille <demaille@gostai.com>
869
870 Make variant.yy more complex.
871 std::list cannot be copied via memcpy, they are more demanding than
872 std::string. Use one std::list to strengthen the test.
873
874 * examples/variant.yy: Use lalr1-fusion.cc, not lalr1.cc.
875 Adjust.
876 Create a list of strings, instead of a single large string.
877
878 2008-11-04 Akim Demaille <demaille@gostai.com>
879
880 bench.pl --bench.
881 * etc/bench.pl.in (--bench, $bench): New.
882
883 2008-11-04 Akim Demaille <demaille@gostai.com>
884
885 Sort methods.
886 * data/lalr1-fusion.cc (destroy): Use as() in its definition.
887 Define it after as().
888
889 2008-11-04 Akim Demaille <demaille@gostai.com>
890
891 Useless parens.
892 * data/lalr1-fusion.cc (b4_rhs_location): Remove useless parens.
893
894 2008-11-04 Akim Demaille <demaille@gostai.com>
895
896 Issue missing synclines after user actions.
897 * data/c.m4 (b4_case): Issue synclines on the output file.
898
899 2008-11-04 Akim Demaille <demaille@gostai.com>
900
901 Remove trailing empty line.
902 * data/lalr1-fusion.cc: Don't add an empty line after the user's
903 epilogue.
904
905 2008-11-04 Akim Demaille <demaille@gostai.com>
906
907 Fix output of copyright years.
908 * data/bison.m4 (b4_copyright): Fix the indentation of the
909 copyright year paragraph.
910 Use b4_copyright_years when no years are given.
911 * data/lalr1.cc, data/lalr1-fusion.cc, data/location.cc
912 (b4_copyright_years): New.
913 Use it.
914
915 2008-11-04 Akim Demaille <demaille@gostai.com>
916
917 Avoid the spurious initial empty line.
918 * data/lalr1-fusion.cc, data/location.cc: Put a trailing "@" at
919 the end of @output request to suppress the empty line that
920 results.
921
922 2008-11-04 Akim Demaille <demaille@gostai.com>
923
924 Remove parser::rhs_number_type.
925 * data/lalr1-fusion.cc (rhs_number_type): No longer define it.
926 (yyrhs_): Use b4_table_define.
927
928 2008-11-04 Akim Demaille <demaille@gostai.com>
929
930 Fix iteration type.
931 * data/lalr1-fusion.cc: Use an int to iterate up to an int.
932
933 2008-11-04 Akim Demaille <demaille@gostai.com>
934
935 Factor the declaration of the integer tables.
936 * data/lalr1-fusion.cc (b4_table_define): New.
937 Use it.
938
939 2008-11-03 Akim Demaille <demaille@gostai.com>
940
941 Fix indentation of tables in lalr1.cc
942 * data/lalr1-fusion.cc: Fix the indentation.
943
944 2008-11-03 Akim Demaille <demaille@gostai.com>
945
946 Destroy the lhs symbols after reduction.
947 * data/lalr1-fusion.cc (parse): After the user action, when in
948 variant mode, destroy the lhs symbols.
949
950 2008-11-03 Akim Demaille <demaille@gostai.com>
951
952 Simplify yysyntax_error_ use.
953 * data/lalr1-fusion.cc (yysyntax_error_): Always pass it the token
954 type, but make it unnamed in the declaration when it is not used.
955
956 2008-11-03 Akim Demaille <demaille@gostai.com>
957
958 Let yy::variant::build return an lvalue.
959 * data/lalr1-fusion.cc (variant::build): Return a reference to the
960 object.
961
962 2008-11-03 Akim Demaille <demaille@gostai.com>
963
964 Define yy::variant only when needed.
965 * data/lalr1-fusion.cc (yy::variant): Define only if variants are
966 used.
967
968 2008-11-03 Akim Demaille <demaille@gostai.com>
969
970 Bench the three-stack lalr1.cc.
971 * etc/bench.pl.in: Bench the three-stack lalr1.cc vs. the
972 one-stack one.
973
974 2008-11-03 Akim Demaille <demaille@gostai.com>
975
976 Fail on parse error in calc++.
977 * doc/bison.texinfo (calc++.cc): Propagate failures to the exit
978 status.
979 * examples/calc++/test ($me, $number, $exit, run): New.
980 Use them to propagate errors to the exit status.
981
982 2008-11-03 Akim Demaille <demaille@gostai.com>
983
984 Don't specify the skeleton twice in the example.
985 * examples/calc++/Makefile.am: Don't pass -S to Bison, the grammar
986 file does what is needed.
987
988 2008-11-03 Akim Demaille <demaille@gostai.com>
989
990 bench: Improve output.
991 * etc/bench.pl.in (bench_grammar): Tune the printf format.
992
993 2008-11-03 Akim Demaille <demaille@gostai.com>
994
995 bench: check impact of %debug on variants.
996 * etc/bench.pl.in (variant_grammar): Fix the computation of
997 $variant.
998 Generate a grammar file that can work with or without %debug.
999 Do use the @directive.
1000 (bench_variant_parser): Check impact of %debug.
1001 (@directives): Rename all the occurrences to...
1002 (@directive): this, for consistency.
1003
1004 2008-11-03 Akim Demaille <demaille@gostai.com>
1005
1006 bench: report the size too.
1007 * etc/bench.pl.in ($iterations): Defaults to -3.
1008 (&bench_grammar): Require hireswallclock.
1009 Compute and display the size of the result.
1010 More comments.
1011
1012 2008-11-03 Akim Demaille <demaille@gostai.com>
1013
1014 bench: More use of the verbosity level.
1015 * etc/bench.pl.in ($verbose, &verbose): New.
1016 Use them.
1017 More POD documentation.
1018
1019 2008-11-03 Akim Demaille <demaille@gostai.com>
1020
1021 bench.pl: a command line interface
1022 * etc/bench.pl.in: More doc.
1023 Some fixes in the documentation.
1024 ($cflags, $iterations, &help, &getopt): New.
1025 Use them.
1026 (&variant_grammar): Let the number of stages be 10 times what is
1027 specified.
1028
1029 2008-11-03 Akim Demaille <demaille@gostai.com>
1030
1031 Bench the use of Boost.Variants.
1032 * etc/bench.pl.in ($cxx, &variant_grammar, &bench_variant_parser):
1033 New.
1034 (&compile): Be ready to compile C++ parsers.
1035 (&bench_push_parser): Move debug information to the outermost
1036 level.
1037 * THANKS: Add Michiel De Wilde.
1038
1039 2008-11-03 Akim Demaille <demaille@gostai.com>
1040
1041 bench.pl: Pass directives as a list instead of as a string.
1042 * etc/bench.pl.in (&directives): New.
1043 (&triangular_grammar, &calc_grammar): Use it to format the Bison
1044 directives.
1045 (&triangular_grammar): Do use the directives (were ignored).
1046 (&bench_grammar, &bench_push_parser): Adjust to pass lists of
1047 directives.
1048
1049 2008-11-03 Akim Demaille <demaille@gostai.com>
1050
1051 Improve genericity of bench.pl.
1052 * etc/bench.pl.in (&bench_grammar): Take the set of benches as
1053 argument.
1054 (&bench_push_parser): New.
1055 Call it.
1056
1057 2008-11-03 Akim Demaille <demaille@gostai.com>
1058
1059 Add documentation to bench.pl.
1060 * etc/bench.pl.in: Comment changes.
1061
1062 2008-11-03 Akim Demaille <demaille@gostai.com>
1063
1064 Fuse the three stacks into a single one.
1065 In order to make it easy to perform benchmarks to ensure that there are no
1066 performance loss, lalr1.cc is forked into lalr1-fusion.cc. Eventually,
1067 lalr1-fusion.cc will replace lalr1.cc.
1068
1069 Meanwhile, to make sure that lalr1-fusion.cc is correctly exercized by the
1070 test suite, the user must install a symbolic link from lalr1.cc to it.
1071
1072 Instead of having three stacks (state, value, location), use a stack
1073 of triples. This considerably simplifies the code (and it will be
1074 easier not to require locations as currently does the C++ parser),
1075 and also gives a 10% speedup according to etc/bench (probably mainly since
1076 memory allocation is done once instead of three times).
1077
1078 Another motivation is to make it easier to destruct properly
1079 semantic values: now that they are bound to their state (hence
1080 symbol type) it will be easier to call the appropriate destructor.
1081
1082 These changes should probably benefit the C parser too.
1083
1084 * data/lalr1.cc: Copy as... * data/lalr1-fusion.cc: this new
1085 file.
1086 (b4_rhs_value, b4_rhs_location): New definitions overriding those
1087 from c++.m4.
1088 (state_stack_type, semantic_stack_type, location_stack_type)
1089 (yystate_stack_, yysemantic_stack_, yylocation_stack_): Remove.
1090 (data_type, stack_type, yystack_): New.
1091 (YYLLOC_DEFAULT, yypush_): Adjust.
1092 (yyerror_range): Now based on data_type, not location_type.
1093
1094 2008-11-03 Akim Demaille <demaille@gostai.com>
1095
1096 Push the state, value, and location at the same time.
1097 This is needed to prepare a forthcoming patch that fuses the three
1098 stacks into one.
1099
1100 * data/lalr1.cc (parser::yypush_): New.
1101 (parser::yynewstate): Change the semantics: instead of arriving to
1102 this label when value and location have been pushed, but yystate
1103 is to be pushed on the state stack, now the three of them must
1104 have been pushed before. yystate still must be the new state.
1105 This allows to use yypush_ everywhere instead of individual
1106 handling of the stacks.
1107
1108 2008-11-03 Akim Demaille <demaille@gostai.com>
1109
1110 Prefer references to pointers.
1111 * data/lalr1.cc (b4_symbol_actions): New, overrides the default C
1112 definition to use references instead of pointers.
1113 (yy_symbol_value_print_, yy_symbol_print_, yydestruct_):
1114 Take the value and location as references.
1115 Adjust callers.
1116
1117 2008-11-03 Akim Demaille <demaille@gostai.com>
1118
1119 stack::size instead of stack::height.
1120 * data/lalr1.cc (stack::height): Rename as...
1121 (stack::size): this.
1122 Fix the output type.
1123 Comment changes.
1124
1125 2008-11-03 Akim Demaille <demaille@gostai.com>
1126
1127 Use variants to support objects as semantic values.
1128 This patch was inspired by work by Michiel De Wilde. But he used Boost
1129 variants which (i) requires Boost on the user side, (ii) is slow, and
1130 (iii) has useless overhead (the parser knows the type of the semantic value
1131 there is no reason to duplicate this information as Boost.Variants do).
1132
1133 This implementation reserves a buffer large enough to store the largest
1134 objects. yy::variant implements this buffer. It was implemented with
1135 Quentin Hocquet.
1136
1137 * src/output.c (type_names_output): New.
1138 (output_skeleton): Invoke it.
1139 * data/c++.m4 (b4_variant_if): New.
1140 (b4_symbol_value): If needed, provide a definition for variants.
1141 * data/lalr1.cc (b4_symbol_value, b4_symbol_action_)
1142 (b4_symbol_variant, _b4_char_sizeof_counter, _b4_char_sizeof_dummy)
1143 (b4_char_sizeof, yy::variant): New.
1144 (parser::parse): If variants are requested, define
1145 parser::union_type, parser::variant, change the definition of
1146 semantic_type, construct $$ before running the user action instead
1147 of performing a default $$ = $1.
1148 * examples/variant.yy: New.
1149 Based on an example by Michiel De Wilde.
1150
1151 2008-11-03 Akim Demaille <demaille@gostai.com>
1152
1153 Parameterize the extraction of semantic values.
1154 To make future changes easier, no longer rely on ".TYPE" being the
1155 way to get a semantic value.
1156
1157 * data/c.m4 (b4_symbol_value): New.
1158 Use it.
1159 * data/c++.m4, data/yacc.c: Use it.
1160 * data/glr.c: Use b4_symbol_value.
1161 (b4_rhs_data): New.
1162 Use it.
1163
1164 2008-11-03 Akim Demaille <demaille@gostai.com>
1165
1166 Prepare easier M4 changes.
1167 * data/lalr1.cc: Use escaped [] instead of literals to prepare
1168 future changes.
1169
1170 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
1171
1172 Initiate further development.
1173 * NEWS: Create an empty section for new entries.
1174 * gnulib: Update submodule to HEAD.
1175
1176 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
1177
1178 * NEWS: Version 2.4.
1179
1180 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
1181
1182 Prepare for next release.
1183 * NEWS: Briefly mention changes since 2.3b.
1184 * README: Say GNU m4 1.4.6, which we've been requiring in release
1185 announcements already, not 1.4.3, which breaks the build.
1186
1187 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
1188
1189 Say %language is experimental.
1190 We're thinking of extending it's effect on output file naming. See the
1191 thread at
1192 <http://lists.gnu.org/archive/html/bison-patches/2008-10/msg00003.html>.
1193 * NEWS: Say it's experimental.
1194 * doc/bison.texinfo (Decl Summary): Say it's experimental, and so don't
1195 recommend it over %skeleton for now.
1196 (Bison Options): Likewise.
1197 (C++ Bison Interface): Use %skeleton not %language.
1198 (Calc++ Parser): Use %skeleton not %language.
1199 * src/getargs.c (usage): Say it's experimental.
1200
1201 2008-11-01 Di-an Jan <dianj@freeshell.org>
1202 Paolo Bonzini <bonzini@gnu.org>
1203
1204 Support all Java parser class modifiers.
1205 * data/java.m4 (b4_percent_define_get3): New.
1206 (b4_final_if, b4_strictfp_if): New.
1207 * data/lalr1.java (final, strictfp, extends, implements): Support.
1208 * doc/bison.texinfo (final, strictfp, extends, implements): Add
1209 documentation.
1210 * tests/java.at (AT_CHECK_JAVA_MINIMAL): New.
1211 (AT_CHECK_JAVA_MINIMAL_W_LEXER): New.
1212 (AT_CHECK_JAVA_GREP): New.
1213 (Java parser class modifiers): New test.
1214 (Java parser class extends and implements): New test.
1215
1216 Model exception propagation better with throws and lex_throws.
1217 * data/java.m4 (b4_list2): New.
1218 (throws): Change default.
1219 * data/lalr1.java (yyaction): Add throws.
1220 (parse): Add lex_throws in addition to throws.
1221 * doc/bison.texinfo (throws, lex_throws): Add documentation.
1222 * tests/java.at (Java throws specifications): New test.
1223
1224 Improve documentation for Java parsers.
1225 * doc/bison.texinfo (Java Parsers): Add subsections.
1226 Don't quote first argument of %define.
1227 (Java Bison Interface): Document output files. Move documentation
1228 of parser class and merge into Java Parser Interface. Document
1229 features that error out. Document directives with no effect.
1230 Move note about Javadoc higher.
1231 (Java Semantic Values): Explicitly mention stype.
1232 Document that generic types cannot be used.
1233 (Java Location Values): Use @deftypeivar. Document constructors.
1234 Correct return value for toString.
1235 (Java Parser Interface): List undocumented constants/fields.
1236 Move documentation of fields added by %parse-param closer to list
1237 of members. Document that token names are added as fields.
1238 Document constructors accurately. Remove error method.
1239 (Java Scanner Interface): Move note on %pure-parser to Java Bison
1240 Interface. Describe %code lexer and yylex accutately.
1241 Remove documentation that does not match the code.
1242 (Java Action Features): New.
1243 (Java Differences): Add reference. Add item on semantic values.
1244 Add note about @{ ... @}. Clarify %% epilogue placement.
1245 (Java Declarations Summary): New.
1246
1247 Fix Java skeleton.
1248 * data/java.m4 (b4_prefix): Correct quoting for m4_define_default.
1249 (b4_remove_comma): Quote test argument.
1250 (b4_identification): Remove "bison" field.
1251 * tests/java.at (Java parser class and package names): New test.
1252 (Java %parse-param and %lex-param): New test.
1253 (Java stype, position_class and location_class): New test.
1254
1255 2008-10-31 Di-an Jan <dianj@freeshell.org>
1256
1257 * data/lalr1.jave: Update copyright years.
1258 (YYParser): Correct name of "generated from" file in Javadoc:
1259 use b4_file_name instead of @ofile@.
1260 (Location constructor): Correct Javadoc parameter name.
1261 (yylloc): Add missing opening m4 quote after b4_location_if.
1262 This removes a stray [ in the Javadoc of Lexer.getStartPos.
1263 (Lexer.yyerror): Fix incorrect m4 and Javadoc.
1264 (YYParser constructor): Correct Javadoc parameter name.
1265
1266 2008-10-30 Joel E. Denny <jdenny@ces.clemson.edu>
1267
1268 Always put auxiliary code files in the same dir as other output files.
1269 * src/files.c (compute_file_name_parts): When the user specifies
1270 --output but not --file-prefix, extract the directory prefix from the
1271 file prefix not from the grammar file name. This affects the location
1272 of files like location.hh generated by the C++ skeleton. The includes
1273 in the other output files require this fix.
1274 * tests/output.at (AT_CHECK_OUTPUT): Automatically create directories
1275 for expected output files.
1276 (Output files): Add a test for the above.
1277
1278 2008-10-29 Joel E. Denny <jdenny@ces.clemson.edu>
1279
1280 * gnulib: Update submodule to HEAD.
1281
1282 2008-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
1283
1284 Update copyright year.
1285 * src/files.c: Here.
1286
1287 2008-10-28 Di-an Jan <dianj@freeshell.org> (tiny change)
1288
1289 Don't overwrite the input file.
1290 * src/files.c (output_file_name_check): Fatal error if using input file
1291 for output.
1292 * tests/output.at: (AT_CHECK_CONFLICTING_OUTPUT): Add return status
1293 argument.
1294 (Conflicting output files): Add test.
1295
1296 2008-10-28 Akim Demaille <demaille@gostai.com>
1297
1298 Space changes.
1299 * data/lalr1.cc: Formatting changes.
1300
1301 2008-10-28 Akim Demaille <demaille@gostai.com>
1302
1303 Don't define debugging functions when !YYDEBUG.
1304 * data/lalr1.cc (debug_stream, set_debug_stream)
1305 (debug_level_type, debug_level, set_debug_level): Don't
1306 declare them when YYDEBUG is not defined.
1307 The implementation are already YYDEBUG-aware.
1308
1309 2008-10-28 Akim Demaille <demaille@gostai.com>
1310
1311 Prefer "continue" for empty loop bodies.
1312 * etc/bench.pl.in: Use "continue" instead of {}.
1313
1314 2008-10-28 Akim Demaille <demaille@gostai.com>
1315
1316 Space and comments changes.
1317 * data/c++.m4, data/glr.c, data/lalr1.cc: Copyright year changes.
1318 * data/c.m4, data/lalr1.cc: Space changes.
1319
1320 2008-10-28 Akim Demaille <demaille@gostai.com>
1321
1322 Make gnulib a submodule.
1323 * gnulib: New.
1324 * .gitmodules (gnulib): New.
1325
1326 2008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
1327
1328 Fix yyerror_range for user-defined location type in C++. Reported by
1329 Georg Sauthoff at
1330 <http://lists.gnu.org/archive/html/bug-bison/2008-08/msg00008.html>.
1331 * data/lalr1.cc (parse): Change type of yyerror_range to location_type.
1332 * THANKS (Georg Sauthoff): Add.
1333
1334 2008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
1335
1336 Update several administrative files mainly to facilitate releasing.
1337 * HACKING (Administrivia): Make the git-merge-changelog notes more
1338 helpful.
1339 (Test suite): Don't say lalr1.cc is not exercised in the test suite.
1340 (Release Procedure): Update for git and add numerous details that were
1341 previously missing.
1342 * Makefile.am (EXTRA_DIST): Remove Makefile.cfg and Makefile.maint.
1343 * maint.mk (announcement): Don't list bison as a bootstrap tool so
1344 that announcements don't claim we bootstrapped with whatever bison
1345 happened to be in PATH. Add flex as a bootstrap tool.
1346 * Makefile.maint: Remove, previously replaced by maint.mk.
1347 * Makefile.cfg: Remove, and migrate settings to...
1348 * cfg.mk: ... here for the sake of `make announcement'.
1349 * bootstrap.conf (gnulib_modules): Add announce-gen.
1350 * README: Say GNU Bison instead of just Bison. Suggested by Karl
1351 Berry.
1352
1353 2008-10-08 Di-an Jan <dianj@freeshell.org> (tiny change)
1354
1355 Small but important bugfixes for the Java skeleton.
1356 * data/lalr1.java (yyerror): Change Location to b4_location_type.
1357 (yy_symbol_print): Call toString on yyvaluep.
1358
1359 2008-08-29 Akim Demaille <demaille@gostai.com>
1360
1361 Clarify UPDATED use.
1362 * doc/bison.texinfo: It refers to the last edition of this file,
1363 not to the release date of Bison.
1364 Reported by Joel E. Denny.
1365
1366 2008-08-29 Akim Demaille <demaille@gostai.com>
1367
1368 * README: Update FAQ pointer.
1369 Reported by Joel E. Denny.
1370
1371 2008-08-27 Eric Blake <ebb9@byu.net>
1372
1373 Resync m4sugar from autoconf.
1374 * data/m4sugar/m4sugar.m4 (m4_defn, m4_popdef, m4_undefine)
1375 (m4_init): Adjust to latest m4.git changes.
1376 (m4_mapall_sep, _m4_list_cmp, m4_version_compare): Reduce side
1377 effects.
1378 * data/m4sugar/foreach.m4 (_m4_shiftn): Fix off-by-one bug.
1379 (_m4_list_cmp): Reduce side effects.
1380
1381 2008-08-27 Akim Demaille <demaille@gostai.com>
1382
1383 Check yyerrok in calc.at.
1384 * tests/calc.at (calc.y): Use yyerrok on "( error )".
1385 (AT_CHECK_CALC): Add a check that ensures that yyerrok works as
1386 expected.
1387
1388 2008-08-27 Akim Demaille <demaille@gostai.com>
1389
1390 Support yyerrok in lalr1.cc.
1391 YYBACKUP is still to import back into lalr1.cc.
1392 * data/lalr1.cc (yyerrork, yyclearin, YYRECOVERING): Define.
1393
1394 2008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
1395
1396 For maintainer-check*, don't recompile for a $(VERSION) update.
1397 * cfg.mk: New file.
1398 (_is-dist-target): Override the one in GNUmakefile.
1399 * Makefile.am (EXTRA_DIST): Add cfg.mk.
1400
1401 2008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
1402
1403 Update for recent change to gnulib.
1404 * src/parse-gram.y: Don't include strverscmp.h. It comes from
1405 string.h now.
1406
1407 2008-08-15 Eric Blake <ebb9@byu.net>
1408
1409 Remaining m4sugar merge from autoconf.
1410 * data/m4sugar/m4sugar.m4: Copy entire file from autoconf.
1411 * data/m4sugar/foreach.m4: New file, copied from autoconf.
1412 * data/Makefile.am (dist_m4sugar_DATA): Distribute it.
1413 * src/output.c (output_skeleton): Tell m4 how to find it.
1414
1415 Partial m4sugar merge from autoconf: m4_map.
1416 * data/m4sugar/m4sugar.m4 (m4_fst): Delete.
1417 (m4_map, m4_map_sep, _m4_map): Rewrite more efficiently.
1418 (m4_apply, _m4_apply, m4_mapall, m4_mapall_sep): New macros.
1419 * data/java.m4 (b4_token_enums): Use more efficient short-circuit
1420 for empty list.
1421 * data/c.m4 (b4_token_defines, b4_token_enums, b4_c_ansi_formals):
1422 Likewise.
1423 (b4_parse_param_for): Avoid m4_fst, now that autoconf no longer
1424 declares it.
1425
1426 2008-08-07 Joel E. Denny <jdenny@ces.clemson.edu>
1427
1428 Keep .version and PACKAGE_VERSION in sync.
1429 * Makefile.am ($(top_srcdir)/.version): Declare configure as a
1430 dependency, and add comments justifying this in more detail. Discussed
1431 starting at
1432 <http://lists.gnu.org/archive/html/bison-patches/2008-07/msg00022.html>.
1433
1434 2008-08-06 Eric Blake <ebb9@byu.net>
1435
1436 Partial m4sugar merge from autoconf: m4_shiftn.
1437 * data/m4sugar/m4sugar.m4 (m4_shiftn): Faster implementation.
1438 (m4_shift2, m4_shift3): New macros.
1439 (m4_case, m4_bmatch, m4_bpatsubsts, m4_join): Adjust clients.
1440 * data/c.m4 (b4_c_function_def, b4_c_ansi_function_def)
1441 (b4_c_ansi_function_decl, b4_c_function_call): Likewise.
1442 * data/java.m4 (b4_remove_comma): Likewise.
1443
1444 Partial m4sugar merge from autoconf: m4_wrap vs. m4 1.6.
1445 * data/m4sugar/m4sugar.m4 (m4_unquote, m4_wrap_lifo): New macros.
1446 (m4_wrap): Guarantee FIFO order, in spite of m4 1.6.
1447 (m4_init): Consolidate wrapped text into single m4_wrap.
1448 * data/bison.m4 (b4_check_user_names_wrap): Stick with LIFO order
1449 in wrapped text.
1450
1451 2008-08-05 Eric Blake <ebb9@byu.net>
1452
1453 Partial m4sugar merge from autoconf: builtins, version.m4.
1454 * data/m4sugar/m4sugar.m4 (changeword): Nuke.
1455 (m4_prepend): Remove, as it is unused and inherently quadratic,
1456 whereas m4_append is linear in newer m4.
1457 (m4_mkstemp): New builtin.
1458 (m4_symbols): Make rename conditional.
1459 (m4_version_prereq): Ensure fatal error if used in bison, which
1460 intentionally lacks version.m4.
1461
1462 Fix comments in m4sugar.
1463 * data/m4sugar/m4sugar.m4: Comment changes, borrowed from autoconf.
1464
1465 2008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
1466
1467 Update for recent .gitignore fix in Gnulib.
1468 * bootstrap: Back out 2008-07-18 hack now that gnulib-tool creates
1469 anchored .gitignore entries.
1470
1471 2008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
1472
1473 Set gnu or gnits strictness.
1474 * configure.ac (AM_INIT_AUTOMAKE): Set gnu strictness during
1475 development and gnits strictness for releases. Based on Eric Blake's
1476 suggestion at
1477 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00019.html>.
1478
1479 2008-07-31 Paolo Bonzini <bonzini@gnu.org>
1480
1481 * NEWS: Clarify documentation of %language.
1482
1483 2008-07-31 Paolo Bonzini <bonzini@gnu.org>
1484
1485 Support usage of git-merge-changelog.
1486 * .gitattributes: New.
1487 * HACKING: Document usage of git-merge-changelog.
1488 * bootstrap: Install git-merge-changelog entries in .git/config
1489 if appropriate.
1490
1491 2008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
1492
1493 Remove remaining dependence on CVS Id keyword.
1494 * ChangeLog: For the sake of people still using CVS, don't use dollars
1495 when mentioning Id.
1496 * data/xslt/bison.xsl: Remove Id from header comments, where it was
1497 unusual anyway.
1498 * data/xslt/xml2dot.xsl: Likewise.
1499 * data/xslt/xml2text.xsl: Likewise.
1500 * data/xslt/xml2xhtml.xsl: Likewise.
1501 * doc/Doxyfile.in (PROJECT_NUMBER): Don't use ID.
1502 * doc/Makefile.am (neutralize): Remove, no longer needed.
1503 (.x.1): Don't use neutralize.
1504 (edit): Don't substitute for ID.
1505 (Doxyfile): Don't define Id, and thus don't depend on ChangeLog.
1506
1507 2008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
1508
1509 Fix dependence on computed configure variables.
1510 * doc/Makefile.am (common_dep): Depend on $(top_srcdir)/configure not
1511 $(top_srcdir)/configure.ac so that changes to computed variables, such
1512 as PACKAGE_VERSION, are seen.
1513 * tests/Makefile.am ($(srcdir)/package.m4): Likewise.
1514
1515 2008-07-20 Joel E. Denny <jdenny@ces.clemson.edu>
1516
1517 Update copyright dates for recent changes.
1518 * Makefile.am: Here.
1519 * src/Makefile.am: Here.
1520 * src/reduce.c: Here.
1521 * tests/reduce.at: Here.
1522
1523 2008-07-18 Joel E. Denny <jdenny@ces.clemson.edu>
1524
1525 Use git-version-gen for version names between releases.
1526 * .cvsignore (.tarball-version, GNUmakefile, *~): Add.
1527 * .gitignore (/.tarball-version, /GNUmakefile, /*~): Add.
1528 * .prev-version: New.
1529 * .version.in: Remove.
1530 * ChangeLog: Remove the Id previously used for capturing the CVS
1531 revision.
1532 * GNUmakefile: Remove, now copied from Gnulib.
1533 * Makefile.am: Add code suggested by comments in
1534 build-aux/git-version-gen.
1535 (EXTRA_DIST): Remove GNUmakefile, handled by Gnulib. Add maint.mk,
1536 .prev-version, and .version.
1537 * NEWS (2.3b+): Rename to...
1538 (?.?): ... this because we're dropping the "+" version naming scheme,
1539 but, in general, we still can't be sure of our next release name.
1540 * bootstrap: Add a quick hack to remove from .gitignore the
1541 GNUmakefile entry that gnulib adds. We already have a /GNUmakefile
1542 entry. This should really be fixed in gnulib instead.
1543 * bootstrap.conf (gnulib_modules): Add gnumakefile.
1544 * configure.ac (AC_INIT): Set version name by invoking
1545 build-aux/git-version-gen.
1546 (AC_CONFIG_FILES): Remove .version, now generated by
1547 build-aux/git-version-gen.
1548 * maint.mk: New, copied from coreutils.
1549 * doc/.cvsignore (bison.1): Add.
1550 * doc/.gitignore (/bison.1): Add.
1551 * doc/bison.1: Remove, generated.
1552 * src/.cvsignore (revision.c): Remove.
1553 * src/.gitignore (/revision.c): Remove.
1554 * src/Makefile.am (bison_SOURCES): Remove revision.c and revision.h.
1555 (BUILT_SOURCES): Remove revision.c.
1556 (revision.c): Remove.
1557 * src/getargs.c (version): Don't print revision after the VERSION.
1558 * src/revision.h: Remove.
1559
1560 2008-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
1561
1562 Fix untranslatable composition of sentences. Reported by Goran
1563 Uddeborg at
1564 <http://lists.gnu.org/archive/html/bug-bison/2008-06/msg00000.html>.
1565 * THANKS (Goran Uddeborg): Add.
1566 * src/reduce.c (reduce_print): Report the number of nonterminals and
1567 rules useless in the grammar in separate sentences.
1568 * tests/reduce.at (Useless Rules): Update output.
1569 (Reduced Automaton): Likewise.
1570 (Underivable Rules): Likewise.
1571 (Empty Language): Likewise.
1572
1573 2008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
1574
1575 Fix some .gitignore and .cvsignore problems.
1576 * bootstrap (insert_sorted_if_absent): Replace all uses with...
1577 (insert_vc_ignore): ... this new function, which prepends `/' to all
1578 .gitignore entries before passing them to insert_sorted_if_absent.
1579 * bootstrap.conf (vc_ignore): Set to '.cvsignore .gitignore' so that
1580 .cvsignore files are maintained even though Bison developers run
1581 bootstrap while using Git.
1582 * .cvsignore (*.patch *.log log patches applied): Remove, apparently
1583 unneeded by Bison.
1584 (gnulib): Add.
1585 * .gitignore (/*.patch *.log log patches applied): Remove, broken and
1586 unneeded. Reported by Eric Blake.
1587 * lib/.gitignore (/*~): Add.
1588 * po/.cvsignore, runtime-po/.cvsignore: Sync with .gitignore.
1589 * examples/calc++/.gitignore (/calc++.exe): Add. Reported by Eric
1590 Blake.
1591 * src/.gitignore (/bison.exe): Add. Reported by Eric Blake.
1592
1593 2008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
1594
1595 Improve forward-compatibility with GNU M4. Reported by Eric Blake at
1596 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00000.html>.
1597 * bootstrap.conf (gnulib_modules): Add unsetenv.
1598 * lib/.gitignore, lib/.cvsignore (/unsetenv.c): Add.
1599 * m4/.gitignore, m4/.cvsignore (/environ.m4): Add.
1600 (/setenv.m4): Add.
1601 * src/output.c (output_skeleton): For the m4 invocation, pass -dV as
1602 the first argument because it may become position-dependent, and unset
1603 POSIXLY_CORRECT so Bison's skeletons have access to GNU M4 extensions.
1604 Add comments explaining these issues in more detail.
1605
1606 2008-07-14 Joel E. Denny <jdenny@ces.clemson.edu>
1607
1608 Add .gitignore everywhere based on .cvsignore.
1609 * .gitignore: New.
1610 * build-aux/.gitignore: New.
1611 * data/.gitignore: New.
1612 * doc/.gitignore: New.
1613 * etc/.gitignore: New.
1614 * examples/.gitignore: New.
1615 * examples/calc++/.gitignore: New.
1616 * lib/.gitignore: New.
1617 * m4/.gitignore: New.
1618 * po/.gitignore: New.
1619 * runtime-po/.gitignore: New.
1620 * src/.gitignore: New.
1621 * tests/.gitignore: New.
1622
1623 2008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
1624
1625 * NEWS (2.3b+): New section, empty for now.
1626 * configure.ac (AC_INIT): 2.3b -> 2.3b+.
1627
1628 2008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
1629
1630 * NEWS (2.3b): Update release date since there has been a delay in
1631 getting the announcements and tarballs out.
1632
1633 2008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
1634
1635 * NEWS: Version 2.3b.
1636 * configure.ac (AC_INIT): Likewise.
1637 (PACKAGE_COPYRIGHT_YEAR): Update to 2008.
1638
1639 2008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
1640
1641 * HACKING: Don't say don't mention HACKING in the ChangeLog. We've
1642 been doing it for years.
1643 (Test suite): Mention maintainer-push-check and maintainer-xml-check.
1644 (Release Procedure): Add FIXME about make alpha being unmaintained.
1645
1646 2008-05-13 Joel E. Denny <jdenny@ces.clemson.edu>
1647
1648 * data/yacc.c: Reformat m4 a little for readability.
1649 * src/lalr.c (build_relations): Correct comment.
1650
1651 2008-05-12 Juan Manuel Guerrero <juan.guerrero@gmx.de>
1652
1653 DJGPP specific issue.
1654 * djgpp/config.sed: Fixes required to run configure scripts generated
1655 by autoconf 2.62.
1656
1657 2008-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
1658
1659 * HACKING (Release Procedure): translation@iro.umontreal.ca is now
1660 coordinator@translationproject.org.
1661
1662 2008-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
1663
1664 * THANKS: Add Eric Blake.
1665
1666 2008-04-23 Eric Blake <ebb9@byu.net>
1667
1668 Revert prior patch, by working around autoconf regression.
1669 * tests/output.at (m4_expand): Add workaround for autoconf 2.62.
1670 ("Output file name: ("): Uncomment test.
1671 ("Output file name: )"): Likewise.
1672 Based on an idea from Noah Misch.
1673
1674 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
1675
1676 Work-around an Autoconf 2.62 AT_SETUP bug that was not present in
1677 2.61. Reported by Juan Manuel Guerrero at
1678 <http://lists.gnu.org/archive/html/bug-bison/2008-04/msg00011.html>.
1679 * tests/output.at ("Output file name: ("): Comment out test case for
1680 now.
1681 ("Output file name: )"): Likewise.
1682
1683 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
1684
1685 * GNUmakefile: Update git-version-gen invocation so make dist
1686 succeeds.
1687
1688 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
1689
1690 Update to the current gnulib CVS repository, and fix trigraph handling
1691 in Bison.
1692 * bootstrap: Update gnulib CVS repository URL.
1693 (symlink_to_dir): Encapsulate the code that guarantees the destination
1694 directory exists into...
1695 (check_dst_dir): ... this new function, and...
1696 (cp_mark_as_generated): ... reuse it here so that bootstrap doesn't
1697 fail when copying files into lib/uniwidth/.
1698 * src/output.c (prepare_symbols): When writing yytname muscles, where
1699 symbol names will be encoded in C-string literals, tell quotearg to
1700 escape trigraphs. This used to be the default in gnulib.
1701 * tests/regression.at (Token definitions): Because of the change in
1702 gnulib's quotearg behavior, string_as_id in parse-gram.y no longer
1703 escapes trigraphs in symbol names. Thus, yytname no longer has
1704 trigraphs unnecessarily doubly escaped. Update test case output.
1705 Extend test case to be sure Bison's own error messages will no longer
1706 have trigraphs in symbol names unnecessarily escaped once.
1707
1708 2008-04-20 Joel E. Denny <jdenny@ces.clemson.edu>
1709
1710 Fix make dist infinite loop reported by Juan Manuel Guerrero at
1711 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00009.html>.
1712 * .cvsignore: Add .version.
1713 * .version.in: New.
1714 * bootstrap.conf (gnulib_modules): Add git-version-gen.
1715 * configure.ac (AC_CONFIG_FILES): Add .version.
1716 * build-aux/.cvsignore: Add git-version-gen.
1717
1718 2008-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
1719
1720 * NEWS (2.3a+): Mention that -g now takes an argument.
1721 * doc/bison.texinfo (Bison Options): Reword -W entry a little for
1722 consistency. Update the -g and -x entries now that they take
1723 arguments. Use brackets to indicate optional arguments.
1724 * src/getargs.c (usage): Explain the relationship between arguments of
1725 long and short options more completely. Document --defines and -d
1726 separately since the former takes an argument but, for POSIX Yacc, the
1727 latter does not.
1728 (short_options): Let -W take an optional argument like --warnings.
1729 (getargs): Sort cases.
1730
1731 2008-02-28 Akim Demaille <demaille@gostai.com>
1732
1733 * doc/bison.texinfo: Fix a few typos.
1734
1735 2008-02-28 Akim Demaille <akim@epita.fr>
1736
1737 * doc/bison.texinfo (Bison Options): Document -W.
1738 Based on Joel E. Denny's NEWS entry, and Automake's documentation.
1739
1740 2008-02-28 Akim Demaille <akim@epita.fr>
1741
1742 * src/getargs.c (short_options): Split and sort for readability.
1743 -g and -x take optional arguments, just like their long options.
1744 * build-aux/cross-options.pl: Use /x to make the regexp easier to
1745 understand.
1746 Fix the handling of $opt which resulted in all the argument to be
1747 considered as optional.
1748
1749 2008-02-22 Joel E. Denny <jdenny@ces.clemson.edu>
1750
1751 * NEWS (2.3a+): Don't say %language is experimental. Mention Java and
1752 say its interface is experimental.
1753 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
1754 Java.
1755 (Bison Options): In the -L and --language entry, mention Java.
1756 (Java Bison Interface): Say the interface is experimental.
1757 * src/getargs.c (usage): Mention -L and --language.
1758
1759 * NEWS (2.3a+): Say the push parsing interface is experimental.
1760 * doc/bison.texinfo (Push Decl): Likewise.
1761 (Decl Summary): Likewise in the "%define api.push_pull" entry.
1762 (Push Parser Function): Likewise.
1763 (Pull Parser Function): Likewise.
1764 (Parser Create Function): Likewise.
1765 (Parser Delete Function): Likewise.
1766 (Table of Symbols): Likewise in the yypstate_delete, yypstate_new,
1767 yypull_parse, and yypush_parse entries.
1768
1769 * NEWS (2.3a+): Mention XML support, and say the schema is
1770 experimental.
1771 * doc/bison.texinfo (Bison Options): Mention -x and --xml.
1772 * src/getargs.c (usage): Say the XML schema is experimental.
1773
1774 * NEWS (2.3a+): Say option instead of flag.
1775
1776 2008-02-21 Wojciech Polak <polak@gnu.org>
1777
1778 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Change footer
1779 text.
1780
1781 2008-02-20 Joel E. Denny <jdenny@ces.clemson.edu>
1782
1783 Fix impure push parser compile error reported by Bob Rossi at
1784 <http://lists.gnu.org/archive/html/help-bison/2008-02/msg00023.html>.
1785 * data/yacc.c: Clean up whitespace in the output a little.
1786 (yypstate_allocated): Define for impure push parsers regardless of
1787 whether the pull interface is also requested.
1788 * tests/push.at (Push Parsing: Multiple impure instances): Extend to
1789 check impure push parsers without the pull interface.
1790
1791 * data/yacc.c (yypstate_new): Don't try to invoke yyerror since
1792 yyerror takes arguments specified by %parse-param while yypstate_new
1793 does not.
1794 * doc/bison.texinfo (Parser Create Function): Document that
1795 yypstate_new returns 0 for multiple impure parser instances.
1796 * tests/push.at (Push Parsing: Multiple impure instances): Update
1797 expected stderr output.
1798
1799 2008-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
1800
1801 * runtime-po/POTFILES.in (push.c): Remove.
1802
1803 2008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
1804
1805 * data/Makefile.am (dist_pkgdata_DATA): Remove push.c.
1806 * data/push.c: Rename to...
1807 * data/yacc.c: ... this, overwriting it.
1808 * etc/bench.pl.in (bench_grammar): `%pure-parser'-> `%define api.pure'.
1809 `%push-pull-parser' -> `%define api.push_pull "both"'.
1810 Remove old yacc.c tests, and update push.c tests to yacc.c.
1811
1812 2008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
1813
1814 * data/bison.m4 (b4_percent_code_get): Output %code block comments like
1815 `"%code top" blocks' instead of `%code "top" blocks'.
1816 * data/push.c: Import yacc.c changes from 2008-01-09 and 2007-08-03.
1817 Clean up whitespace in the output a little.
1818
1819 2008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
1820
1821 Fix documentation problems reported by Tim Josling at
1822 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00013.html>.
1823 * NEWS (2.3a+): Mention removal of --no-parser, -n, and %no-parser.
1824 * doc/bison.texinfo (Token Decl): Token numbers are *nonnegative*
1825 integers. Explain the effect of literal string aliases on error
1826 messages. Copy token 0 documentation from the C++ skeleton
1827 documentation.
1828
1829 2008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
1830
1831 Accept a token number in a %left, %right, or %nonassoc for POSIX
1832 conformance. Reported by Tim Josling at
1833 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00010.html>.
1834 * NEWS (2.3a+): Mention.
1835 * doc/bison.texinfo (Precedence Decl): Describe how literal strings
1836 and code numbers are treated by precedence declarations.
1837 * src/parse-gram.y (precedence_declaration): Use symbols.prec instead
1838 of symbols.1.
1839 (symbols.prec): New, just like symbols.1 but uses symbol.prec instead
1840 of symbol.
1841 (symbol.prec): New, just like symbol but allows INT.
1842 * src/symtab.c (symbol_user_token_number_set): Remove an aver that no
1843 longer holds.
1844 * tests/regression.at (Token number in precedence declaration): New
1845 test case.
1846
1847 2008-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
1848
1849 DJGPP specific issues.
1850 * djgpp/config.bat: Add filenames that are not 8.3 clean and that must
1851 be changed. Copyright timestamp adjusted.
1852 * djgpp/config.sed: Add filenames that are not 8.3 clean and that must
1853 be changed. Copyright timestamp adjusted.
1854 * djgpp/config.site: Copyright timestamp adjusted.
1855 * djgpp/config_h.sed: Copyright timestamp adjusted.
1856 * djgpp/djunpack.bat: Copyright timestamp adjusted.
1857 * djgpp/fnchnage.lst: Add filenames that are not 8.3 clean to the
1858 filename translation list.
1859 * djgpp/subpipe.c (init_subpipe): Check the environment variables
1860 TMPDIR, TMP and TEMP, in that order, to determinate where the temp
1861 files shall be created. Before trying to use the temp dir where the
1862 environment variable points to check that the dir really exists. If
1863 not default to the cwd as temp dir. Copyright timestamp adjusted.
1864 * djgpp/subpipe.h: Copyright timestamp adjusted.
1865 * djgpp/testsuite.sed: Copyright timestamp adjusted.
1866
1867 2008-01-30 Paul Eggert <eggert@cs.ucla.edu>
1868
1869 * doc/bison.texinfo: Update Back-Cover text to reflect new GNU wording.
1870
1871 2008-01-09 Paul Eggert <eggert@cs.ucla.edu>
1872
1873 * data/yacc.c (yyparse): Correct the comment when locations aren't used.
1874 Problem reported by Claudio Saavedra in
1875 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00003.html>.
1876
1877 2008-01-05 Wojciech Polak <polak@gnu.org>
1878
1879 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Precede an XHTML
1880 document's title with the input grammar file name.
1881
1882 2007-12-22 Joel E. Denny <jdenny@ces.clemson.edu>
1883
1884 Automate regression testing of the XML/XSLT implementation. Discussed
1885 starting at
1886 <http://lists.gnu.org/archive/html/bison-patches/2007-11/msg00021.html>.
1887 * configure.ac (XSLTPROC): New substitution.
1888 * Makefile.am (maintainer-xml-check): New phony target invoking...
1889 * tests/Makefile.am (maintainer-xml-check): ... this new phony target
1890 invoking make maintainer-check with BISON_TEST_XML=1.
1891 * tests/atlocal.in (XSLTPROC): New.
1892 * tests/local.at (AT_BISON_CHECK): New macro to (1) instruct Valgrind
1893 not to report reachable memory when Bison is expected to have a
1894 non-zero exit status and (2) to compare XML/XSLT output with --graph
1895 and --report=all output for every working grammar when
1896 BISON_TEST_XML=1.
1897 (AT_BISON_CHECK_NO_XML): Likewise, but skip XML checks.
1898 (AT_BISON_CHECK_XML): New.
1899 (AT_QUELL_VALGRIND): New.
1900 * tests/testsuite.at (ORIGINAL_AT_CHECK): Remove this and...
1901 (AT_CHECK): ... don't redefine this since this was the old way to
1902 quell Valgrind.
1903 * tests/actions.at: Rewrite all AT_CHECK invocations for bison as
1904 AT_BISON_CHECK invocations.
1905 * tests/c++.at: Likewise.
1906 * tests/calc.at: Likewise.
1907 * tests/conflicts.at: Likewise.
1908 * tests/cxx-type.at: Likewise.
1909 * tests/existing.at: Likewise.
1910 * tests/glr-regression.at: Likewise.
1911 * tests/headers.at: Likewise.
1912 * tests/input.at: Likewise.
1913 * tests/java.at: Likewise.
1914 * tests/output.at: Likewise.
1915 * tests/push.at: Likewise.
1916 * tests/reduce.at: Likewise.
1917 * tests/regression.at: Likewise.
1918 * tests/sets.at: Likewise.
1919 * tests/skeletons.at: Likewise.
1920 * tests/synclines.at: Likewise.
1921 * tests/torture.at: Likewise.
1922 (Big triangle): Use AT_BISON_CHECK_NO_XML instead since this grammar
1923 tends to hang xsltproc.
1924 (Big horizontal): Likewise.
1925
1926 2007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
1927
1928 In XML output, remove redundant class attribute on symbol element.
1929 * data/xslt/bison.xsl (xsl:key name="bison:symbolByName"): New.
1930 * data/xslt/xml2xhtml.xsl (xsl:template match="symbol"): Use it to
1931 look up a symbol to determine whether it's a nonterminal or terminal.
1932 * src/gram.c (rule_rhs_print_xml): Remove class attribute.
1933 * src/state.c (state_rule_lookahead_tokens_print_xml): Likewise.
1934
1935 Add prec/assoc information to XML output.
1936 * src/gram.c (grammar_rules_print_xml): For each rule that has a
1937 %prec, add a percent_prec attribute.
1938 * src/print-xml.c (print_grammar): For each terminal that has a
1939 precedence or associativity, add a prec or assoc attribute.
1940 (xml_indent): New.
1941 (xml_puts): Use xml_indent.
1942 (xml_printf): Use xml_indent.
1943 * src/print-xml.h (xml_indent): Prototype.
1944
1945 * tests/existing.at (GNU pic Grammar): Fix a rule miscopied from
1946 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
1947
1948 2007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
1949
1950 * data/xslt/bison.xsl (bison:ruleNumber): Rename to...
1951 (bison:ruleByNumber): ... this for clarity.
1952 * data/xslt/xml2dot.xsl (xsl:template match="item"): Update.
1953 * data/xslt/xml2text.xsl (xsl:template match="item"): Update.
1954 (xsl:template match="reduction"): Update.
1955 (xsl:template match="item"): Update.
1956 (xsl:template match="reduction"): Update.
1957
1958 In the XML output, don't print the list of rules where symbols appear.
1959 Compute it in XSLT instead. Discussed at
1960 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00024.html>.
1961 * data/xslt/bison.xsl (bison:ruleByLhs): New.
1962 (bison:ruleByRhs): New.
1963 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Use
1964 bison:ruleByRhs.
1965 (xsl:template match="terminal/rule"): Remove.
1966 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
1967 bison:ruleByRhs.
1968 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
1969 Remove.
1970 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Use
1971 bison:ruleByRhs and mode="number-link" for rule template.
1972 (xsl:template match="terminal/rule"): Remove.
1973 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
1974 bison:ruleByRhs and mode="number-link" for rule template.
1975 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
1976 Rewrite as...
1977 (xsl:template match="rule" mode="number-link"): ... this.
1978 * src/print-xml.c (print_grammar): Don't print the list of rules.
1979
1980 2007-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
1981
1982 Don't let --report affect XML output; always print all information.
1983 Discussed at
1984 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00020.html>.
1985 * src/conflicts.c (log_resolution): Implement.
1986 * src/print-xml.c (print_core): Implement.
1987 (print_state): Implement.
1988 (print_xml): Implement.
1989
1990 * NEWS (2.3a+): Fix quotes.
1991 * src/parse-gram.y (prologue_declaration): For consistency with -v,
1992 don't let %verbose clear the list specified by --report.
1993
1994 2007-11-26 Akim Demaille <akim@epita.fr>
1995
1996 * data/Makefile.am (dist_pkgdata_DATA): Ship and install bison.xsl.
1997
1998 2007-11-24 Joel E. Denny <jdenny@ces.clemson.edu>
1999
2000 In the XML output, list useless and unused symbols and rules with the
2001 useful ones and add a "usefulness" attribute. Discussed starting at
2002 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00017.html>.
2003 * src/gram.c (grammar_rules_partial_print_xml): Remove.
2004 (grammar_rules_print_xml): Print all rules instead of just those
2005 useful in the grammar, and add a "usefulness" attribute.
2006 * src/gram.h (grammar_rules_partial_print_xml): Remove prototype.
2007 * src/print-xml.c (print_rules_useless_in_parser): Remove.
2008 (print_grammar): Print all nonterminals instead of just useful ones,
2009 and add a "usefulness" attribute to nonterminals and terminals.
2010 (print_xml): Don't print a separate "reductions" or
2011 "rules-useless-in-parser" element.
2012 * src/reduce.c (reduce_output): Use reduce_token_unused_in_grammar.
2013 (reduce_xml): Remove.
2014 (reduce_token_unused_in_grammar): New.
2015 (reduce_nonterminal_useless_in_grammar): New.
2016 * src/reduce.h (reduce_xml): Remove prototype.
2017 (reduce_token_unused_in_grammar): Add prototype.
2018 (reduce_nonterminal_useless_in_grammar): Add prototype.
2019 * data/xslt/xml2text.xsl: Update for XML changes.
2020 * data/xslt/xml2xhtml.xsl: Update for XML changes.
2021 * tests/reduce.at (Useless Terminals): Update output.
2022 (Useless Rules): Update output.
2023 (Reduced Automaton): Update output.
2024
2025 Say "Terminals unused in grammar" instead of "Unused terminals".
2026 * NEWS (2.3a+): Update.
2027 * doc/bison.texinfo (Understanding): Update example output.
2028 * src/reduce.c (reduce_output): Implement.
2029 * data/xslt/xml2text.xsl: Implement.
2030 * data/xslt/xml2xhtml.xsl: Implement.
2031
2032 2007-11-18 Joel E. Denny <jdenny@ces.clemson.edu>
2033
2034 Accept --report-file=FILE to override the default `.output' filename.
2035 * NEWS (2.3a+): Mention.
2036 * doc/bison.texinfo (Bison Options): Add an entry.
2037 * src/files.c (compute_output_file_names): Don't override
2038 spec_verbose_file if already set.
2039 * src/getargs.c (usage): Document --report-file.
2040 (REPORT_FILE_OPTION): New anonymous enum member.
2041 (long_options): Add entry for it.
2042 (getargs): Add case for it setting spec_verbose_file.
2043
2044 * build-aux/cross-options.pl: Don't record a short option just because
2045 there's an arg.
2046 * doc/.cvsignore: Add yacc.1.
2047
2048 2007-11-14 Akim Demaille <akim@epita.fr>
2049
2050 * doc/yacc.1.in: New.
2051 * configure.ac, doc/Makefile.am: Adjust.
2052 * configure.ac (PACKAGE_COPYRIGHT_YEAR): New substitution, and new
2053 config.h symbol.
2054 Use AC_SUBST for assignments too.
2055 * src/getargs.c (version): Use PACKAGE_COPYRIGHT_YEAR.
2056
2057 2007-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
2058
2059 * src/gram.c: Remove comments that duplicate comments in gram.h.
2060
2061 When reporting useless rules and nonterminals, say "useless in grammar"
2062 instead of "useless", and say "useless in parser" instead of "never
2063 reduced". Discussed starting at
2064 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00033.html>.
2065 * NEWS (2.3a+): Mention this change.
2066 * data/xslt/xml2text.xsl: Update output text and expected input XML
2067 element names to match changes below.
2068 * data/xslt/xml2xhtml.xsl: Likewise.
2069 (xsl:template match="bison-xml-report"): Add missing entry in Table of
2070 Contents: "Rules useless in parser due to conflicts".
2071 * doc/bison.texinfo (Decl Summary): Reword a little.
2072 (Understanding): Update example output for changes below.
2073 * src/gram.c: (rule_useful_p): Rename to...
2074 (rule_useful_in_grammar_p): ... this.
2075 (rule_useless_p): Rename to...
2076 (rule_useless_in_grammar_p): ... this.
2077 (rule_never_reduced_p): Rename to...
2078 (rule_useless_in_parser_p): ... this.
2079 (grammar_rules_print): Update for renames.
2080 (grammar_rules_print_xml): Update for renames.
2081 (grammar_rules_never_reduced_report): Rename to...
2082 (grammar_rules_useless_report): ... this since it is used for either
2083 kind of useless rule.
2084 * src/gram.h: Reword comments and update function names in prototypes.
2085 * src/main.c (main): Say "rule useless in parser due to conflicts".
2086 * src/print-xml.c (print_rules_never_reduced): Rename to...
2087 (print_rules_useless_in_parser): ... this, and rename output XML
2088 element "rules-never-reduced" to "rules-useless-in-parser".
2089 (print_xml): Update for rename.
2090 * src/print.c (print_results): Say "Rules useless in parser due to
2091 conflicts".
2092 * src/reduce.c (reduce_grammar_tables): Say "rule useless in grammar".
2093 (nonterminals_reduce): Say "nonterminal useless in grammar".
2094 (reduce_output): Say "Nonterminals useless in grammar".
2095 Say "Rules useless in grammar".
2096 (reduce_xml): Rename output XML element "useless" to
2097 "useless-in-grammar".
2098 (reduce_print): Don't report the count of grammatically useless rules
2099 as "rules never reduced" just because %yacc is specified.
2100 In the correct report of this count, say nonterminal(s) and rule(s)
2101 "useless in grammar".
2102 * tests/conflicts.at (S/R in initial): Update expected output.
2103 (Defaulted Conflicted Reduction): Likewise.
2104 (Unreachable States After Conflict Resolution): Likewise.
2105 * tests/existing.at (GNU pic Grammar): Likewise.
2106 * tests/reduce.at (Useless Nonterminals): Likewise.
2107 (Useless Rules): Likewise.
2108 (Reduced Automaton): Likewise.
2109 (Underivable Rules): Likewise.
2110 (Empty Language): Likewise.
2111
2112 2007-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
2113
2114 * data/bison.m4 (b4_cat): Put a newline after the end delimiter of the
2115 here document and before the EOF so that BSD's implementation of Bourne
2116 shell doesn't parse the delimiter as part of the here document.
2117 * doc/.cvsignore: Add cross-options.texi.
2118 * src/getargs.c (usage): Add a blank line after the warning categories.
2119
2120 2007-11-08 Paolo Bonzini <bonzini@gnu.org>
2121
2122 * data/lalr1.java (Lexer): Remove usage of b4_pure_if.
2123
2124 2007-11-05 Akim Demaille <akim@epita.fr>
2125
2126 Remove Id: from bison.1.
2127 * doc/Makefile.am (remove_time_stamp): Include the sed invocation.
2128 (perl -0777 -pi -e 's/\.PP\nId): New.
2129 (.x.1): Use it to ignore the version control revision.
2130
2131 2007-11-05 Akim Demaille <demaille@gostai.com>
2132
2133 * build-aux/Makefile.am: Ship cross-options.pl.
2134 * doc/Makefile.am: Always refer to cross-options.texi with
2135 $(srcdir).
2136 (MAINTAINERCLEANFILES): Add it.
2137
2138 2007-11-04 Akim Demaille <demaille@gostai.com>
2139
2140 Generate the long/short option cross-table.
2141 * build-aux/cross-options.pl: New.
2142 * doc/Makefile.am (cross-options.texi): New.
2143 * doc/bison.texinfo: Use it.
2144
2145 2007-11-04 Akim Demaille <demaille@gostai.com>
2146
2147 Generate bison.1 using help2man.
2148 * doc/common.x, doc/bison.x: New.
2149 * doc/Makefile.am (bison.1, .x.1): New.
2150 The code is taken from autoconf-2.61/man/Makefile.am.
2151 * configure.ac: Look for help2man.
2152
2153 2007-11-04 Akim Demaille <demaille@gostai.com>
2154
2155 Complete --help.
2156 * src/getargs.c (usage): Document -W, make it clear that -d,
2157 -g and -x have optional arguments.
2158
2159 2007-11-04 Akim Demaille <demaille@gostai.com>
2160
2161 Find sha1sum when named gsha1sum.
2162 * bootstrap (find_tool): New.
2163 ($SHA1SUM): New.
2164
2165 2007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
2166
2167 Deprecate %pure-parser and add `%define api.pure'. Discussed starting
2168 at
2169 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00006.html>.
2170 * NEWS (2.3a+): Mention.
2171 * data/bison.m4 (b4_pure_if): Don't define it here.
2172 * data/c.m4 (b4_identification): Depend on individual skeletons to
2173 define b4_pure_flag, b4_push_flag, or b4_pull_flag if they use the
2174 values of the %define variables api.pure or api.push_pull. Define
2175 YYPURE, YYPUSH, and YYPULL accordingly.
2176 * data/glr.c: Define b4_pure_if based on `%define api.pure' unless
2177 glr.cc has already defined b4_pure_flag.
2178 * data/push.c: Define b4_pure_if based on `%define api.pure'.
2179 Remove YYPUSH and YYPULL since they're back in b4_identification again.
2180 * data/yacc.c: Define b4_pure_if based on `%define api.pure'.
2181 * doc/bison.texinfo (Pure Decl): Update.
2182 (Push Decl): Update.
2183 (Decl Summary): Add api.pure to %define entry.
2184 In %pure-parser entry, say it's deprecated and reference %define.
2185 (Pure Calling): Update.
2186 (Error Reporting): Update.
2187 (C++ Scanner Interface): Update.
2188 (How Can I Reset the Parser): Update.
2189 (Table of Symbols): In %pure-parser entry, say it's deprecated and
2190 reference %define.
2191 * src/getargs.c (pure_parser): Remove global variable.
2192 * src/getargs.h (pure_parser): Remove extern.
2193 * src/output.c (prepare): Don't define pure_flag muscle.
2194 * src/parse-gram.y (prologue_declaration): Implement %pure-parser as a
2195 wrapper around `%define api.pure'.
2196 * tests/calc.at (Simple LALR Calculator): Update.
2197 (Simple GLR Calculator): Update.
2198 * tests/cxx-type.at (GLR: Resolve ambiguity, pure, no locations):
2199 Update.
2200 (GLR: Resolve ambiguity, pure, locations): Update.
2201 (GLR: Merge conflicting parses, pure, no locations): Update.
2202 (GLR: Merge conflicting parses, pure, locations): Update.
2203 * tests/glr-regression.at (Uninitialized location when reporting
2204 ambiguity): Update
2205 * tests/input.at (Unused %define api.pure): New test case.
2206 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Update definition for
2207 AT_PURE_IF and AT_PURE_AND_LOC_IF.
2208 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
2209
2210 2007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
2211
2212 %define push_pull -> %define api.push_pull. Discussed starting at
2213 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00005.html>.
2214 * data/push.c: Expect the new name.
2215 * data/yacc.c: Likewise.
2216 * doc/bison.texinfo (Push Decl): Update.
2217 (Decl Summary): Update %define entry.
2218 (Push Parser Function): Update.
2219 (Pull Parser Function): Update.
2220 (Parser Create Function): Update.
2221 (Parser Delete Function): Update.
2222 * tests/calc.at (Simple LALR Calculator): Update.
2223 * tests/input.at (%define enum variables): Update.
2224 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
2225 (Push Parsing: Multiple impure instances): Update.
2226 (Push Parsing: Unsupported Skeletons): Update.
2227 * tests/torture.at (Exploding the Stack Size with Alloca): Update.
2228 (Exploding the Stack Size with Malloc): Update.
2229
2230 * NEWS (2.3a+): Add an entry for the push parser, and clean up the
2231 other entries some.
2232
2233 2007-10-27 Joel E. Denny <jdenny@ces.clemson.edu>
2234
2235 For the XML output's terminal element, rename @number to @token-number,
2236 and add @symbol-number. In the nonterminal element, rename @number to
2237 @symbol-number. Discussed starting at
2238 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00040.html>.
2239 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Update for
2240 renames.
2241 (xsl:template match="nonterminal"): Likewise.
2242 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Likewise.
2243 (xsl:template match="nonterminal"): Likewise.
2244 * src/print-xml.c (print_grammar): Implement.
2245
2246 2007-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
2247
2248 * data/xslt/xml2dot.xsl (xsl:template match="automaton/state"): After
2249 2007-10-11 change, the child elements here are items not rules.
2250 (xsl:template match="item"): New.
2251 (xsl:template match="rule"): Update for new reduced itemset.
2252 (xsl:template match="point"): Remove.
2253 (xsl:template match="empty"): For consistency with --graph, don't
2254 output "/* empty */".
2255 * data/xslt/xml2text.xsl (xsl:template match="terminal"): When invoking
2256 line-wrap, don't pass a negative value as first-line-length since this
2257 won't work with the following changes.
2258 (xsl:template name="line-wrap"): Simplify slightly.
2259 (xsl:template name="ws-search"): Eliminate recursion.
2260 * src/print_graph.c (print_core): Don't print a reduction's lookahead
2261 set next to an item whose dot is not at the end of the RHS even if it
2262 happens to be associated with the same rule.
2263
2264 2007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
2265
2266 Add %define lr.keep_unreachable_states.
2267 * NEWS (2.3a+): Mention it in the entry for unreachable state removal.
2268 * doc/bison.texinfo (Decl Summary): Mention it in the %define entry.
2269 * src/main.c (main): Implement it.
2270 * tests/conflicts.at (Unreachable States After Conflict Resolution):
2271 Extend to test it, and fix a typo.
2272
2273 2007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
2274
2275 * NEWS (2.3a+): Add entry for recent .output file lookahead set fix.
2276 * doc/bison.texinfo (Understanding): Remove a bogus lookahead set in
2277 the example .output text.
2278 * tests/regression.at (Extra lookahead sets in report): Improve wording
2279 of comments.
2280
2281 2007-10-17 Wojciech Polak <polak@gnu.org>
2282
2283 * src/print-xml.c (print_grammar): Renamed
2284 <terminal> and <nonterminal> attributes:
2285 "type" to "number" and "symbol" to "name".
2286 * data/xslt/xml2text.xsl (xsl:template match="terminal"):
2287 Use new attribute names.
2288 (xsl:template match="nonterminal"): Likewise.
2289 * data/xslt/xml2xhtml.xsl: Likewise.
2290
2291 2007-10-17 Joel E. Denny <jdenny@ces.clemson.edu>
2292
2293 * doc/bison.texinfo (Bison Options): Add entry for --print-datadir.
2294 (Option Cross Key): Likewise.
2295
2296 * src/print-xml.c (print_core): Don't print a reduction's lookahead set
2297 next to an item whose dot is not at the end of the RHS even if it
2298 happens to be associated with the same rule.
2299 * src/print.c (print_core): Likewise.
2300 * tests/conflicts.at (Unresolved SR Conflicts): Update output.
2301 (Resolved SR Conflicts): Update output.
2302 * tests/regression.at (Extra lookahead sets in report): New test case.
2303
2304 2007-10-11 Wojciech Polak <polak@gnu.org>
2305
2306 * src/print-xml.c (print_core): Remove item set
2307 redundancy.
2308 * data/xslt/bison.xsl (bison:ruleNumber): New key.
2309 Improve processing time. Suggested by Joel E. Denny.
2310 * data/xslt/xml2dot.xsl (xsl:template name="escape"):
2311 Write xsl:param "required" attribute as comment.
2312 * data/xslt/xml2text.xsl (xsl:template match="item"): New.
2313 (xsl:template match="rule"): Support new reduced itemset.
2314 (xsl:template match="point"): Remove.
2315 * data/xslt/xml2xhtml.xsl: Likewise.
2316
2317 2007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
2318
2319 * src/getargs.c (version): Update copyright year.
2320
2321 2007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
2322
2323 Make xml2dot.xsl and --graph produce the same output.
2324 * data/xslt/xml2dot.xsl (xsl:template match="rule"): Use a `&#10;'
2325 instead of a `\n'. That is, don't add escapes yet or they'll be doubly
2326 escaped later.
2327 (xsl:template name="output-node"): Use the new escape template instead
2328 of the string-replace template directly.
2329 (xsl:template name="output-edge"): Likewise.
2330 (xsl:template name="escape"): New, escapes backslashes and newlines in
2331 addition to quotation marks.
2332 * src/graphviz.c (start_graph, output_node, output_edge): Add
2333 whitespace to output for legibility.
2334
2335 Make xml2text.xsl and --report produce the same output, and remove the
2336 XML "conflicts" element since a conflict summary is easily extracted
2337 from the automaton.
2338 * data/xslt/bison.xsl: New.
2339 (xsl:template match="state" mode="bison:count-conflicts): New.
2340 * data/xslt/xml2text.xsl: Import bison.xsl.
2341 (xsl:template match="bison-xml-report"): Instead of styling the
2342 "conflicts" element, style the "automaton" element with mode
2343 "conflicts". Unlike the former, the latter lists S/R and R/R
2344 conflicts for a state on the same line.
2345 (xsl:template match="conflicts"): Remove.
2346 (xsl:template match="conflict"): Remove.
2347 (xsl:template match="terminal"): Line-wrap the list of rules in which
2348 the terminal is used.
2349 (xsl:template match="nonterminal"): Likewise for nonterminals.
2350 (xsl:template match="automaton" mode="conflicts"): New.
2351 (xsl:template match="state" mode="conflicts"): New.
2352 (xsl:template name="line-wrap"): New.
2353 (xsl:template name="ws-search"): New.
2354 * data/xslt/xml2xhtml.xsl: Import bison.xsl.
2355 (xsl:template match="bison-xml-report"): Instead of styling the
2356 "conflicts" element, style the "automaton" element with mode
2357 "conflicts."
2358 (xsl:template match="conflicts"): Remove.
2359 (xsl:template match="conflict"): Remove.
2360 (xsl:template match="automaton" mode="conflicts"): New.
2361 (xsl:template match="state" mode="conflicts): New.
2362 * src/conflicts.c (conflicts_output_xml): Remove.
2363 * src/conflicts.h (conflicts_output_xml): Remove prototype.
2364 * src/print-xml.c (print_xml): Don't invoke conflicts_output_xml.
2365 * src/print.c (print_grammar): Consistently wrap at the 66th column so
2366 the corresponding XSLT is easier. Also, never wrap between a word and
2367 the comma that follows it.
2368
2369 2007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
2370
2371 Improve C++ namespace support. Discussed starting at
2372 <http://lists.gnu.org/archive/html/help-bison/2007-09/msg00016.html>.
2373 * data/c++.m4: (b4_namespace_ref, b4_namespace_open,
2374 b4_namespace_close): New macros that interpret the %define variable
2375 "namespace" so its value can contain "::" to indicate nested
2376 namespaces.
2377 * data/glr.cc (b4_namespace): Don't define, and replace all uses with
2378 the above macros.
2379 * data/lalr1.cc (b4_namespace): Likewise.
2380 * data/location.cc (b4_namespace): Likewise.
2381 * doc/bison.texinfo (Decl Summary): Move `%define push_pull' entry
2382 inside a new table in the general %define entry. Document `%define
2383 namespace' there as well. Point the %name-prefix entry to it since it
2384 explains it more completely in the case of C++.
2385 (C++ Bison Interface): Mention `%define namespace' instead of
2386 %name-prefix.
2387 (Table of Symbols): Remove the `%define push_pull' entry. The %define
2388 entry suffices.
2389 * tests/c++.at (Relative namespace references): New test case.
2390 (Absolute namespace references): New test case.
2391 (Syntactically invalid namespace references): New test case.
2392 * tests/input.at (C++ namespace reference errors): New test case.
2393
2394 2007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
2395
2396 Add syncline support and location accessor to internal %define
2397 interfaces.
2398 * data/bison.m4 (b4_percent_define_get_loc): New.
2399 (b4_percent_define_get_syncline): New.
2400 (b4_percent_define_flag_if): Use b4_percent_define_get_loc.
2401 (b4_percent_define_default): Record defining location as line 1 rather
2402 than 0 for the sake of synchronizing #line's, and define
2403 b4_percent_define_syncline(VARIABLE).
2404 (b4_percent_define_check_values): Use b4_percent_define_get_loc.
2405 * src/muscle_tab.c (muscle_syncline_grow): New.
2406 (muscle_code_grow): Use muscle_syncline_grow.
2407 (muscle_percent_define_insert): Use muscle_percent_define_get_loc, and
2408 define b4_percent_define_syncline(VARIABLE).
2409 (muscle_percent_define_get_loc): New.
2410 (muscle_percent_define_get_syncline): New.
2411 (muscle_percent_define_flag_if): Use muscle_percent_define_get_loc, and
2412 remove some unused variables.
2413 (muscle_percent_define_default): Record defining location as line 1
2414 rather than 0 for the sake of synchronizing #line's, and define
2415 b4_percent_define_syncline(VARIABLE).
2416 (muscle_percent_define_check_values): Use
2417 muscle_percent_define_get_loc.
2418 * src/muscle_tab.h (muscle_percent_define_get_loc): Prototype.
2419 (muscle_percent_define_get_syncline): Prototype.
2420 * tests/skeletons.at (%define Boolean variables: invalid skeleton
2421 defaults): Update output for location change.
2422 (Complaining during macro argument expansion): Extend to test
2423 b4_percent_define_get_loc and b4_percent_define_get_syncline errors.
2424
2425 2007-10-07 Joel E. Denny <jdenny@ces.clemson.edu>
2426
2427 Fix some error-reporting macro bugs.
2428 * data/bison.m4 (b4_cat): New.
2429 (b4_error, b4_error_at): Use b4_cat to send error directives directly
2430 to stdout so they don't become arguments to other macros. Update
2431 comments and add examples.
2432 (b4_warn, b4_warn_at, b4_complain, b4_complain_at): Update comments and
2433 add examples.
2434 (b4_fatal, b4_fatal_at): Likewise, and invoke m4_exit(1) immediately
2435 after printing the error directive so that M4 doesn't report subsequent
2436 problems that are induced by this problem.
2437 * src/scan-skel.l: Recognize @` digraph outside of directive arguments
2438 instead of just in them. Recognize @\n in both places. Both expand to
2439 the empty string. Needed by b4_cat.
2440 * tests/skeletons.at (Complaining during macro argument expansion):
2441 New test case.
2442 (Fatal errors make M4 exit immediately): New test case.
2443
2444 2007-10-04 Joel E. Denny <jdenny@ces.clemson.edu>
2445
2446 Implement --print-datadir.
2447 * src/getargs.c (usage): Mention.
2448 (PRINT_DATADIR_OPTION): New anonymous enum member.
2449 (long_options): Add entry for it.
2450 (getargs): Add case for it calling compute_pkgdatadir.
2451 * src/output.c (output_skeleton): Encapsulate data directory
2452 computation from here...
2453 (prepare): ... and from here...
2454 (compute_pkgdatadir): ... into this new function.
2455 * src/output.h (compute_pkgdatadir): Prototype.
2456
2457 2007-09-29 Joel E. Denny <jdenny@ces.clemson.edu>
2458
2459 * src/print-xml.c (escape_bufs): New static global variable
2460 replacing...
2461 (xml_escape_n): ... the static local variable buf here.
2462 (print_xml): Free memory for escape_bufs.
2463 * src/reduce.c (reduce_xml): XML-escape terminal symbol tags.
2464
2465 2007-09-25 Joel E. Denny <jdenny@ces.clemson.edu>
2466
2467 Replace `%push-parser' and `%push-pull-parser' with
2468 `%define push_pull "push"' and `%define push_pull "both"'.
2469 `%define push_pull "pull"' is the default.
2470 * doc/bison.texinfo (Push Decl, Push Parser Function,
2471 Pull Parser Function, Parser Create Function, Parser Delete Function):
2472 Update declarations.
2473 (Decl Summary, Table of Symbols): Replace %push-parser and
2474 %push-pull-parser entries with a %define push_pull entry.
2475 * data/bison.m4 (b4_percent_define_check_values): New macro.
2476 (b4_pull_if, b4_push_if, b4_use_push_for_pull_if): Move these
2477 definitions...
2478 * data/c.m4 (b4_identification): ... and the YYPUSH and YYPULL cpp
2479 definitions...
2480 * data/push.c: ... to here and compute them from the value of the
2481 %define variable push_pull.
2482 * data/c-skel.m4: Instead of choosing the push.c skeleton for push
2483 parsing requests here...
2484 * data/yacc.c: ... hack this to switch to push.c any time
2485 b4_use_push_pull_flag or the %define variable push_pull is set. This
2486 will go away when we mv push.c yacc.c.
2487 * data/c++-skel.m4, data/glr.c, data/java-skel.m4: Don't report that
2488 push parsing is not supported since unused %define variables are
2489 reported anyway.
2490 * src/getargs.c, src/getargs.h (pull_parser, push_parser): Remove.
2491 * src/muscle_tab.h (muscle_percent_define_check_values): Update
2492 comments for consistency with b4_percent_define_check_values.
2493 * src/output.c (prepare): Don't insert b4_pull_flag and b4_push_flag
2494 muscles.
2495 * src/parse-gram.y (PERCENT_PUSH_PARSER, PERCENT_PUSH_PULL_PARSER):
2496 Remove.
2497 (prologue_declaration): Remove %push-parser and %push-pull-parser
2498 rules.
2499 * src/scan-gram.l (%push-parser, %push-pull-parser): Remove rules.
2500 * tests/calc.at: Update declarations.
2501 * tests/input.at (%define enum variables): New test case.
2502 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update
2503 declaration.
2504 (Push Parsing: Multiple impure instances): Update declaration.
2505 (Push Parsing: Unsupported Skeletons): New test case.
2506 * tests/torture.at (Exploding the Stack Size with Alloca): Update
2507 declaration.
2508 (Exploding the Stack Size with Malloc): Update declaration.
2509
2510 2007-09-24 Wojciech Polak <polak@gnu.org>
2511
2512 Add XSLT transformations.
2513
2514 * data/xslt/xml2dot.xsl: Transform XML into DOT.
2515 * data/xslt/xml2text.xsl: Transform XML into plain text.
2516 * data/xslt/xml2xhtml.xsl: Transform XML into XHTML.
2517 * data/Makefile.am (xsltdir): New variable.
2518 (dist_xslt_DATA): Add xslt/*.xsl files.
2519
2520 2007-09-23 Paul Eggert <eggert@cs.ucla.edu>
2521
2522 * src/conflicts.c (log_resolution): Fix indenting bugs I introduced.
2523 Problem reported by Wojciech Polak.
2524 * src/print-xml.c (xml_puts): Work even if LEVEL exceeds INT_MAX/2.
2525 (xml_printf): Undo change I made on 21 September; that is,
2526 indent 2 spaces, not 1.
2527
2528 2007-09-23 Joel E. Denny <jdenny@ces.clemson.edu>
2529
2530 Pacify ./configure --enable-gcc-warnings.
2531 * src/print-xml.c, src/print-xml.h (xml_puts): Make third argument
2532 `char const *' instead of `char *'.
2533 * src/state.c (state_rule_lookahead_tokens_print_xml): Remove unused
2534 local variable `sep'.
2535
2536 2007-09-21 Paul Eggert <eggert@cs.ucla.edu>
2537
2538 * src/gram.c (rule_rhs_print_xml): Now static, since it isn't used
2539 elsewhere.
2540 * src/print-xml.c: Prefer "const" after types; that's more consistent.
2541 (xml_printf): Indent just 1 space for level.
2542 (e_char, xlate_char): Remove.
2543 (xml_escape_string): Rewrite to avoid undefined behavior (used
2544 storage that was freed from the stack).
2545 (xml_escape_n): Don't bother checking for subscript error.
2546
2547 2007-09-21 Wojciech Polak <polak@gnu.org>
2548
2549 Add Bison XML Automaton Report.
2550
2551 Add support for an -x option to generate an XML report.
2552 It is not documented yet.
2553 * src/print-xml.c: New file.
2554 * src/print-xml.h: Likewise.
2555 * lib/timevar.def (TV_XML): New var.
2556 * src/Makefile.am (bison_SOURCES): Add print-xml.c, print-xml.h.
2557 * src/conflicts.c: Include print-xml.h.
2558 (solved_conflicts_xml_obstack): New var.
2559 (log_resolution, conflicts_solve, conflicts_free):
2560 Add support for XML report.
2561 (conflicts_output_val): New function.
2562 * src/conflicts.h (conflicts_output_val): New decl.
2563 * src/files.c (spec_xml_file): New var.
2564 (compute_output_file_names, output_file_names_free): Add XML support.
2565 * src/files.h (spec_xml_file): New decl.
2566 * src/getargs.c (xml_flag): New var.
2567 (usage, short_options, long_options, getargs): Add XML support.
2568 * src/getargs.h (xml_flag): New decl.
2569 * src/gram.c: Include print-xml.h.
2570 (rule_lhs_print_xml, rule_rhs_print_xml):
2571 (grammar_rules_partial_print_xml, grammar_rules_print_xml):
2572 New functions.
2573 * src/gram.h: Declare external ones.
2574 * src/main.c: Include print-xml.h.
2575 (main): Add XML support.
2576 * src/reduce.c: Include print-xml.h.
2577 (reduce_xml): New function.
2578 * src/reduce.h: Declare it.
2579 * src/state.c: Include print-xml.h.
2580 (state_new): Add XML support.
2581 (state_rule_lookahead_tokens_print_xml): New function.
2582 * src/state.h: Declare it.
2583 (struct state): New member solved_conflicts_xml.
2584 * src/symtab.c (symbol_class_get_string): New function.
2585 * src/symtab.h: Declare it.
2586
2587 2007-09-21 Paul Eggert <eggert@cs.ucla.edu>
2588
2589 * GNUmakefile: Switch to coreutils's version.
2590 * bootstrap: Likewise.
2591 * Makefile.cfg: Adjust to new GNUmakefile.
2592 * README-hacking: Likewise.
2593
2594 Import from gnulib:
2595
2596 2006-08-18 Paul Eggert <eggert@cs.ucla.edu>
2597 Bruno Haible <bruno@clisp.org>
2598
2599 * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
2600 and is a script that invokes bison. Tighten the code. Add comments.
2601
2602 2007-08-28 Joel E. Denny <jdenny@ces.clemson.edu>
2603
2604 Spell "boolean" as "Boolean". Reported by Akim Demaille.
2605 * data/bison.m4 (b4_percent_define_flag_if): Fix complaint.
2606 * doc/bison.texinfo (Decl Summary): Fix.
2607 * src/muscle_tab.c (muscle_percent_define_flag_if): Fix complaint.
2608 * tests/input.at (Boolean %define variables): Update output.
2609 * tests/skeletons.at (%define boolean variables: invalid skeleton
2610 defaults): Rename to...
2611 (%define Boolean variables: invalid skeleton defaults): ... this and
2612 update output.
2613
2614 2007-08-17 Joel E. Denny <jdenny@ces.clemson.edu>
2615
2616 In impure push mode, don't allow more than one yypstate to be allocated
2617 since multiple impure parsers would corrupt yynerrs.
2618 * data/push.c (yypstate_allocated): New static global variable
2619 initialized to 0.
2620 (yypull_parse): If yypstate_new returns 0, don't report it as memory
2621 exhaustion if yypstate_allocated is 1, but still return 2.
2622 (yypstate_new): Invoke yyerror and return 0 if yypstate_allocated is
2623 already 1. Otherwise, set it to 1.
2624 (yypstate_delete): Set it to 0.
2625 * tests/push.at (Push Parsing: Multiple impure instances): New test
2626 case.
2627
2628 2007-08-17 Bob Rossi <bob@brasko.net>
2629
2630 * doc/bison.texinfo (Push Decl): Document the push parser.
2631 (Table of Symbols): Ditto.
2632 (Pure Decl): Ditto.
2633 (Decl Summary): Ditto.
2634 (Multiple Parsers, Push Parser Function, Pull Parser Function,
2635 Parser Create Function, Parser Delete Function):
2636 Add new push parser symbols.
2637 (Table of Symbols): Document push-parser, push-pull-parser,
2638 yypush_parse, yypull_parse, yypstate_new and yypstate_delete.
2639
2640 2007-08-15 Paul Eggert <eggert@cs.ucla.edu>
2641
2642 Update to GPLv3.
2643 * doc/gpl-3.0.texi: New file.
2644 * doc/gpl.texi: Remove.
2645 * COPYING, GNUmakefile, HACKING, Makefile.am, Makefile.cfg:
2646 * Makefile.maint, NEWS, PACKAGING, README, README-alpha:
2647 * README-hacking, TODO, bootstrap, bootstrap.conf:
2648 * configure.ac, data/Makefile.am, data/README, data/bison.m4:
2649 * data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4:
2650 * data/glr.c, data/glr.cc, data/java-skel.m4, data/java.m4:
2651 * data/lalr1.cc, data/lalr1.java, data/location.cc:
2652 * data/push.c, data/yacc.c, data/m4sugar/m4sugar.m4:
2653 * djgpp/Makefile.maint, djgpp/README.in, djgpp/config.bat:
2654 * djgpp/config.sed, djgpp/config.site, djgpp/config_h.sed:
2655 * djgpp/djunpack.bat, djgpp/subpipe.c, djgpp/subpipe.h:
2656 * djgpp/testsuite.sed, doc/Makefile.am, doc/bison.texinfo:
2657 * doc/fdl.texi, doc/refcard.tex, etc/Makefile.am, etc/README:
2658 * etc/bench.pl.in, examples/Makefile.am, examples/extexi:
2659 * examples/calc++/Makefile.am, lib/Makefile.am, lib/abitset.c:
2660 * lib/abitset.h, lib/bbitset.h, lib/bitset.c, lib/bitset.h:
2661 * lib/bitset_stats.c, lib/bitset_stats.h, lib/bitsetv-print.c:
2662 * lib/bitsetv-print.h, lib/bitsetv.c, lib/bitsetv.h:
2663 * lib/ebitset.c, lib/ebitset.h, lib/get-errno.c:
2664 * lib/get-errno.h, lib/lbitset.c, lib/lbitset.h:
2665 * lib/libiberty.h, lib/main.c, lib/subpipe.c, lib/subpipe.h:
2666 * lib/timevar.c, lib/timevar.def, lib/timevar.h:
2667 * lib/vbitset.c, lib/vbitset.h, lib/yyerror.c:
2668 * m4/c-working.m4, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4:
2669 * m4/timevar.m4, src/LR0.c, src/LR0.h, src/Makefile.am:
2670 * src/assoc.c, src/assoc.h, src/closure.c, src/closure.h:
2671 * src/complain.c, src/complain.h, src/conflicts.c:
2672 * src/conflicts.h, src/derives.c, src/derives.h, src/files.c:
2673 * src/files.h, src/flex-scanner.h, src/getargs.c:
2674 * src/getargs.h, src/gram.c, src/gram.h, src/graphviz.c:
2675 * src/lalr.c, src/lalr.h, src/location.c, src/location.h:
2676 * src/main.c, src/muscle_tab.c, src/muscle_tab.h:
2677 * src/nullable.c, src/nullable.h, src/output.c, src/output.h:
2678 * src/parse-gram.c, src/parse-gram.h, src/parse-gram.y:
2679 * src/print.c, src/print.h, src/print_graph.c:
2680 * src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c:
2681 * src/reduce.h, src/relation.c, src/relation.h:
2682 * src/revision.h, src/scan-code.h, src/scan-code.l:
2683 * src/scan-gram.h, src/scan-gram.l, src/scan-skel.h:
2684 * src/scan-skel.l, src/state.c, src/state.h, src/symlist.c:
2685 * src/symlist.h, src/symtab.c, src/symtab.h, src/system.h:
2686 * src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h:
2687 * tests/Makefile.am, tests/actions.at, tests/c++.at:
2688 * tests/calc.at, tests/conflicts.at, tests/cxx-type.at:
2689 * tests/existing.at, tests/glr-regression.at:
2690 * tests/headers.at, tests/input.at, tests/java.at:
2691 * tests/local.at, tests/output.at, tests/push.at:
2692 * tests/reduce.at, tests/regression.at, tests/sets.at:
2693 * tests/skeletons.at, tests/synclines.at, tests/testsuite.at:
2694 * tests/torture.at:
2695 Update to GPLv3.
2696
2697 2007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
2698
2699 Get rid of broken %no-parser, -n, and --no-parser implementation and
2700 documentation.
2701 * TODO: Don't mention them.
2702 * doc/bison.1: Likewise.
2703 * doc/bison.texinfo (Decl Summary): Likewise.
2704 (Bison Options): Likewise.
2705 (Option Cross Key): Likewise.
2706 * src/getargs.c (no_parser_flag): Remove global variable.
2707 (usage): Don't print description of -n and --no-parser.
2708 (long_options): Remove --no-parser entry here.
2709 (getargs): Remove -n case in the switch here.
2710 * src/getargs.h (no_parser_flag): Remove extern.
2711 * tests/regression.at (Web2c Actions): Remove comment that mentions
2712 --no-parser.
2713
2714 2007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
2715
2716 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Do not
2717 name user variables starting with `yy'. Just pass NULL instead of a
2718 dummy local &yylval to yypush_parse.
2719 * tests/torture.at (AT_DATA_STACK_TORTURE): Do not name user variables
2720 starting with `yy'.
2721
2722 2007-08-03 Joel E. Denny <jdenny@ces.clemson.edu>
2723
2724 * data/yacc.c (yyexhaustedlab): Define it when YYERROR_VERBOSE is
2725 true since it's then always used regardless of whether yyoverflow is
2726 defined. Reported by Christian Burger at
2727 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00031.html>.
2728 * THANKS: Add Christian Burger.
2729
2730 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
2731 node names: say "Decl Summary" not "Bison Declaration Summary".
2732
2733 2007-07-28 Joel E. Denny <jdenny@ces.clemson.edu>
2734
2735 * src/muscle_tab.c (muscle_percent_define_flag_if): In order to
2736 determine whether this function has already complained about an invalid
2737 value for a %define boolean variable, don't check whether Bison has
2738 ever examined the value. As written, the check was a tautology.
2739 Instead, record and check for this complaint using a separate muscle.
2740
2741 2007-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
2742
2743 Fix push parsing memory leak reported by Brandon Lucia at
2744 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00032.html>.
2745 * THANKS: Add Brandon Lucia.
2746 * data/push.c (yypstate_delete): Free the stack if it was reallocated
2747 but the parse never completed and thus freed it.
2748 * tests/Makefile.am (TESTSUITE_AT): Add push.at.
2749 * tests/testsuite.at: Include push.at.
2750 * test/push.at: New.
2751 (Push Parsing: Memory Leak for Early Deletion): New test case.
2752
2753 2007-07-17 Joel E. Denny <jdenny@ces.clemson.edu>
2754
2755 Improve handling of multiple S/R conflicts in the same state and of S/R
2756 conflicts involving multiple reductions.
2757 * src/conflicts.c (resolve_sr_conflict): Don't assign the error action
2758 set for a state here or Bison will abort if it is reassigned on a
2759 later conflicted reduction in the same state.
2760 Similarly, don't finalize and assign the solved conflicts report here
2761 or it will be lost if it is reassigned on a later conflicted reduction
2762 in the same state.
2763 (set_conflicts): Instead, assign them both here after all S/R conflicts
2764 in the state have been fully examined.
2765 * src/print.c (shift_set): Rename to...
2766 (no_reduce_set): ... this.
2767 (print_reductions): Update for rename, and add %nonassoc error action
2768 tokens to no_reduce_set so that, when printing the first remaining
2769 reduction on an error action token, the reduction is enclosed in
2770 brackets.
2771 (print_results): Update for rename.
2772 * tests/conflicts.at (Solved conflicts report for multiple reductions
2773 in a state): New test case.
2774 (%nonassoc error actions for multiple reductions in a state): New test
2775 case.
2776
2777 * src/main.c (main): Don't depend on C99 features.
2778
2779 2007-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
2780
2781 * build-aux/.cvsignore: Add compile.
2782 * lib/.cvsignore: Add charset.alias, ref-add.sed, ref-del.sed, and
2783 uniwidth.
2784
2785 2007-07-10 Joel E. Denny <jdenny@ces.clemson.edu>
2786
2787 * bootstrap (slurp): Create target directories that don't exist.
2788 Specifically, we need lib/uniwidth/ because of recent Gnulib changes.
2789
2790 2007-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
2791
2792 * LR0.c (new_itemsets): Fix wording in comments: say item index rather
2793 than item number.
2794 * closure.c (closure): Likewise.
2795 * state.h (reductions): Comment sorting of rules.
2796 (state): Comment sorting of items.
2797
2798 2007-07-02 Joel E. Denny <jdenny@ces.clemson.edu>
2799
2800 Fix C++ test cases after recent Gnulib changes. Discussed starting at
2801 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00000.html>.
2802 * examples/calc++/Makefile.am (DEFAULT_INCLUDES): Override Automake's
2803 definition in order to avoid Gnulib headers since we don't use config.h
2804 here.
2805 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Use AT_DATA_GRAMMAR
2806 rather than AT_DATA so that config.h is included.
2807
2808 2007-07-01 Joel E. Denny <jdenny@ces.clemson.edu>
2809
2810 * data/glr.c (yy_yypstack, yypstates, yypdumpstack): Use YYFPRINTF
2811 instead of fprintf. Guard these functions with #if YYDEBUG instead of
2812 #ifdef YYDEBUG for consistency with all other uses of YYDEBUG in Bison
2813 and so that YYFPRINTF is guaranteed to be defined here.
2814
2815 2007-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
2816
2817 * src/muscle_tab.c (muscle_percent_define_invalid_value): Replace
2818 with...
2819 (muscle_percent_define_check_values): ... this more helpful function.
2820 Again, it's not used yet, but it will be.
2821 * src/muscle_tab.h: Likewise.
2822
2823 Improve some comments in parser table construction.
2824 * src/LR0.c (new_itemsets): Explain sorting of itemset and kernel_base.
2825 (generate_states): Don't mention ruleset, which is internal to closure.
2826 * src/closure.c (closure): Explain sorting of core and itemset, which
2827 is required for this function to behave correctly.
2828 * src/closure.h (closure): Mention sorting.
2829
2830 2007-05-28 Joel E. Denny <jdenny@ces.clemson.edu>
2831
2832 * src/lalr.c (state_lookahead_tokens_count): For code readability,
2833 move the check for disabled transitions to an aver since conflict
2834 resolution hasn't happened yet.
2835
2836 * src/lalr.c (state_lookahead_tokens_count): Remove the check that
2837 labels a state as inconsistent just because it has error transitions.
2838 The original form of this check appeared in revision 1.1 of lalr.c,
2839 which was committed on 1991-12-21. Now (at least), changing the
2840 consistency label on such a state appears to have no useful effect in
2841 any of the places it is examined, which I enumerate below. The key
2842 point to understanding each item in this enumeration is that a state
2843 with an error transition is labelled consistent in the first place only
2844 if it has no rules, so the check cannot matter for states that have
2845 rules. (1) Labelling a state as inconsistent will cause set_conflicts
2846 to try to identify its conflicts, and a state must have *rules* to have
2847 conflicts. (2) Labelling a state as inconsistent will affect how
2848 action_row sets the default *rule* for the state. (3) Labelling a
2849 state as inconsistent will cause build_relations to add lookback edges
2850 to *rules* in that state.
2851 * src/state.h (struct state): Word the comment for member consistent
2852 more carefully.
2853
2854 2007-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
2855
2856 Don't depend on C99 features.
2857 * src/conflicts.c (conflicts_update_state_numbers): Fix for-loop.
2858 * src/lalr.c (lalr_update_state_numbers): Fix for-loop.
2859 * src/reader.c (check_and_convert_grammar): Fix for-loop.
2860 * src/state.c (state_mark_reachable_states): Fix for-loop.
2861 (state_remove_unreachable_states): Fix for-loop.
2862
2863 Don't widen struct state with member reachable just to temporarily
2864 record reachability. Instead, use a local bitset.
2865 * src/state.h (struct state): Remove member.
2866 * src/state.c (state_new): Don't initialize it.
2867 (state_mark_reachable_states): Rename to...
2868 (state_record_reachable_states): ... this, and use bitset.
2869 (state_remove_unreachable_states): Use bitset.
2870
2871 2007-05-26 Joel E. Denny <jdenny@ces.clemson.edu>
2872
2873 * src/Makefile.am (yacc): Quote target action commands properly so
2874 that the yacc script isn't corrupt. Reported by Hans Aberg at
2875 <http://lists.gnu.org/archive/html/bug-bison/2007-05/msg00003.html>.
2876
2877 * data/glr.c (yylval): As in yacc.c, don't extern in the header for
2878 the case of pure parsers. Reported by Frans Englich at
2879 <http://lists.gnu.org/archive/html/help-bison/2007-05/msg00018.html>.
2880 * THANKS: Add Frans Englich.
2881
2882 * NEWS (2.3a+): In the %code entry, reference section `Bison
2883 Declaration Summary' from the manual now since the %code summary has
2884 moved there.
2885 * doc/bison.texinfo (Prologue Alternatives): Mention that directives
2886 in the rules section must be terminated by semicolons.
2887
2888 2007-05-20 Joel E. Denny <jdenny@ces.clemson.edu>
2889
2890 Extend the front-end API for %define variables to more completely
2891 mirror the back-end. This will be useful in the future.
2892 * data/bison.m4 (b4_percent_define_get, b4_percent_define_ifdef):
2893 Update comments to mention the new front-end counterparts of these
2894 macros.
2895 * src/muscle_tab.c (MUSCLE_COMMON_DECODE): New macro with common code
2896 for muscle_string_decode and muscle_location_decode.
2897 (muscle_string_decode): New static function.
2898 (muscle_location_decode): Use MUSCLE_COMMON_DECODE.
2899 (muscle_percent_define_get, muscle_percent_define_ifdef): New
2900 functions.
2901 (muscle_percent_define_flag_if): Use muscle_percent_define_ifdef and
2902 muscle_percent_define_get to mimic the b4_percent_define_flag_if
2903 implementation more closely.
2904 (muscle_percent_define_invalid_value): New function.
2905 * src/muscle_tab.h (muscle_percent_define_get,
2906 muscle_percent_define_ifdef, muscle_percent_define_invalid_value):
2907 Prototype.
2908
2909 2007-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
2910
2911 * NEWS (2.3a+): Mention yesterday's state-removal change.
2912 (2.3a): Remove the %language entry, which was added after 2.3a.
2913 * src/LR0.c, src/closure.c, src/closure.h, src/conflicts.c,
2914 src/conflicts.h, src/lalr.c, src/lalr.h, src/print.c,
2915 src/print_graph.c, src/state.c, src/state.h, tests/conflicts.at,
2916 tests/existing.at: Update copyright date.
2917
2918 2007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
2919
2920 If conflict resolution makes states unreachable, remove those states,
2921 report rules that are then unused, and don't report conflicts in those
2922 states.
2923 * src/conflicts.c, src/conflicts.h (conflicts_update_state_numbers):
2924 New global function.
2925 * src/lalr.c, src/lalr.h (lalr_update_state_numbers): New global
2926 function.
2927 * src/main.c (main): After conflict resolution, remove the unreachable
2928 states and update all data structures that reference states by number.
2929 * src/state.c (state_new): Initialize each state's reachable member to
2930 false.
2931 (state_mark_reachable_states): New static function.
2932 (state_remove_unreachable_states): New global function.
2933 * src/state.h (struct state): Add member bool reachable.
2934 (state_remove_unreachable_states): Prototype.
2935 * tests/conflicts.at (Unreachable States After Conflict Resolution):
2936 New test case.
2937 * tests/existing.at (GNU pic Grammar): Update test case output now that
2938 an unused rule is discovered.
2939
2940 2007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
2941
2942 Minor code cleanup in parser table construction.
2943 * src/LR0.c (new_itemsets): Use item_number_is_symbol_number.
2944 (new_itemsets, save_reductions): Update for rename to nitemset.
2945 * src/closure.c (nritemset): Rename to...
2946 (nitemset): ... this since the "r" appears to meaningless and isn't
2947 used in the comments.
2948 (closure): Update for rename.
2949 * src/closure.h (nritemset): Update extern to...
2950 (nitemset): ... this.
2951 * src/lalr.c (LA): Fix a typo in comments.
2952 * src/print.c (print_core): Update for rename to nitemset.
2953 * src/print_graph.c (print_graph): Likewise.
2954 * src/state.h: Fix some typos in header comments.
2955
2956 2007-04-04 Paul Eggert <eggert@cs.ucla.edu>
2957
2958 * THANKS: Use ASCII for Sebastien Fricker's name. Bison source
2959 still sticks to ASCII. Sorry!
2960
2961 * README-hacking: New file, taken mostly from coreutils, with changes
2962 for Bison. Contains much of the contents of:
2963 * README-cvs: Remove.
2964 * bootstrap: Sync from gnulib.
2965 * build-aux/.cvsignore: Remove *.t, mkinstalldirs.
2966 * lib/.cvsignore: Add wchar.h, wctype.h. Remove exit.h.
2967
2968 2007-03-10 Joel E. Denny <jdenny@ces.clemson.edu>
2969
2970 * doc/bison.texinfo (Destructor Decl): Fix typo reported by Sebastian
2971 Setzer.
2972 (Java Differences): Fix some typos.
2973 * THANKS: Add Sebastian Setzer.
2974
2975 2007-03-07 Paolo Bonzini <bonzini@gnu.org>
2976
2977 * data/java.m4 (b4_single_class_if): Remove.
2978 (b4_abstract_if): Look at "%define abstract".
2979 (b4_lexer_if): New.
2980 (b4_union_name): Rename...
2981 (b4_yystype): ... to this. Map to "%define stype".
2982 (b4_rhs_value, b4_parse_param_decl, b4_lex_param_decl,
2983 b4_maybe_throws): Fix quoting.
2984 (b4_lex_param_call): Move below to keep b4_*_param_decl close.
2985 * data/lalr1.java (Lexer interface): Always define.
2986 (Lexer interface within parser class): Remove.
2987 (YYLexer class): New, used when "%code lexer" is present.
2988 (constructor): When "%code lexer" is used, pass %lex-param
2989 to the lexer constructor.
2990 (yylex, yyparse): Remove %lex-param from method invocations
2991 (YYStack, yyaction, yyparse): Rename b4_union_name to b4_yystype.
2992
2993 * doc/bison.texinfo (Java Bison Interface): Mention "%define
2994 abstract". Rename "%define union_name" to "%define stype".
2995 Rename method names according to previous patch.
2996 (Java Scanner Interface): Describe "%code lexer" instead of
2997 "%pure-parser" and "%define single_class".
2998 (Java Differences): Mention "%code lexer".
2999
3000 * tests/java.at (_AT_DATA_JAVA_CALC_Y): Remove final argument.
3001 Include scanner here, using macros from tests/local.at.
3002 (AT_DATA_CALC_Y): Remove final argument.
3003 (_AT_CHECK_JAVA_CALC): Likewise.
3004 (AT_CHECK_JAVA_CALC): Likewise. Test all four combinations
3005 of %locations and %error-verbose.
3006 (main): Test with and without %lex-param.
3007 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_LEXPARAM_IF.
3008 (AT_BISON_OPTION_POPDEFS): Pop it.
3009
3010 2007-03-07 Juan Manuel Guerrero <juan.guerrero@gmx.de>
3011
3012 DJGPP spefic issue. Inhibit the use of disallowed characters for
3013 file name genertion on Win98, WinXP, etc. These are |<>":?*\
3014 and concern testsuite case 46.
3015 * Makefile.am: djgpp/testsuite.sed added to EXTRA_DIST
3016 * djgpp/testsuite.sed: Inhibit the use of disallowed characters.
3017 * djgpp/config.bat: Inhibit the use of disallowed characters.
3018
3019 2007-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
3020
3021 Miscellaneous %define and %code cleanup.
3022 * data/bison.m4 (b4_percent_define_flag_if): Correct comments on how
3023 values are interpreted.
3024 * doc/bison.texinfo (Decl Summary): Clean up and extend %define
3025 documentation a little more.
3026 * src/muscle_tab.c (MUSCLE_USER_NAME_CONVERT,
3027 muscle_percent_define_insert, muscle_percent_code_grow): New
3028 functions/macros.
3029 * src/muscle_tab.h (muscle_percent_define_insert,
3030 muscle_percent_code_grow): Prototype.
3031 * src/parse-gram.y (prologue_declaration): Use
3032 muscle_percent_define_insert and muscle_percent_code_grow when parsing
3033 %define and %code directives.
3034
3035 Make it easy to share %define boolean variables between the front-end
3036 and back-end. Though not used yet, this will be useful in the future.
3037 * data/bison.m4 (b4_check_user_names): Rewrite comments to talk about
3038 Bison uses of names rather than just skeleton uses of names.
3039 (b4_percent_define_get, b4_percent_define_ifdef): Rename
3040 b4_percent_define_skeleton_variables(VARIABLE) to
3041 b4_percent_define_bison_variables(VARIABLE).
3042 (b4_percent_code_get, b4_percent_code_ifdef): Rename
3043 b4_percent_code_skeleton_qualifiers(QUALIFIER) to
3044 b4_percent_code_bison_qualifiers(QUALIFIER).
3045 (b4_check_user_names_wrap): Update for renames.
3046 * src/muscle_tab.c, src/muscle_tab.h (muscle_percent_define_flag_if,
3047 muscle_percent_define_default): New functions mimicking
3048 b4_percent_define_flag_if and b4_percent_define_default.
3049
3050 For %define variables, report locations for invalid values and
3051 redefinitions.
3052 * data/bison.m4 (b4_percent_define_flag_if): Read
3053 b4_percent_define_loc(VARIABLE) to report the location of an invalid
3054 value for VARIABLE.
3055 (b4_percent_define_default): Save a special location in
3056 b4_percent_define_loc(VARIABLE) in case the default value for VARIABLE
3057 must later be reported as invalid.
3058 * src/muscle_tab.c (muscle_location_grow, muscle_location_decode): New
3059 functions.
3060 (muscle_percent_define_insert): Record the location of VARIABLE in
3061 muscle percent_define_loc(VARIABLE), and use it to report the previous
3062 location for a redefinition.
3063 (muscle_percent_define_flag_if): Update like b4_percent_define_flag_if.
3064 (muscle_percent_define_default): Update like b4_percent_define_default.
3065 (muscle_grow_user_name_list): Rename to...
3066 (muscle_user_name_list_grow): ... this for consistency and use
3067 muscle_location_grow.
3068 * src/muscle_tab.h (muscle_location_grow): Prototype.
3069 * tests/input.at (%define errors): Update expected output.
3070 * tests/skeletons.at (%define boolean variables: invalid skeleton
3071 defaults): New test case.
3072
3073 2007-02-28 Joel E. Denny <jdenny@ces.clemson.edu>
3074
3075 * src/print.c (lookahead_set, state_default_rule): Remove.
3076 (print_reductions): Replace state_default_rule invocation with
3077 equivalent use of yydefact, which was computed in token_actions in
3078 tables.c.
3079 (print_results): Don't allocate lookahead_set.
3080
3081 2007-02-27 Paolo Bonzini <bonzini@gnu.org>
3082
3083 * data/lalr1.java: Prefix all private members with yy.
3084
3085 2007-02-24 Joel E. Denny <jdenny@ces.clemson.edu>
3086
3087 Use YYFPRINTF instead of fprintf where appropriate. Reported by
3088 Sebastien Fricker at
3089 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00035.html>.
3090 * THANKS: Add Sebastien Fricker.
3091 * data/glr.c, data/push.c, data/yacc.c (yy_reduce_print): Implement.
3092 * doc/bison.texinfo (Tracing): Make it clearer that YYFPRINTF must
3093 accept a variable number of arguments.
3094
3095 2007-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
3096
3097 * bootstrap: Remove occurrences of .#bootmp from lib/Makefile.
3098
3099 2007-02-13 Juan Manuel Guerrero <juan.guerrero@gmx.de>
3100
3101 * djgpp/config.bat: Adjustments concerning the use of autoconf 2.61.
3102 * djgpp/config.sed: Adjustments concerning the use of autoconf 2.61.
3103 * djgpp/config.site: Adjustments concerning the use of autoconf 2.61.
3104
3105 2007-02-11 Paul Eggert <eggert@cs.ucla.edu>
3106
3107 Undo my 2007-02-07 change, switching back to the c-strcase module
3108 introduced in the 2007-02-03 change. Bruno Haible reported that
3109 the 2007-02-07 change would be dangerous in Turkish if we add a
3110 language whose name contains "i", since "i" is not lowercase "I"
3111 in Turkish.
3112 * bootstrap.conf (gnulib_modules): Add c-strcase. Remove strcase.
3113 * lib/.cvsignore: Add c-ctype.c, c-ctype.h, c-strcase.h,
3114 c-strcasecomp.c, c-strncasecmp.c. Remove strcasecmp.c, strncasecmp.c.
3115 * m4/.cvsignore: Remove strcase.m4.
3116 * src/getargs.c: Revert 2007-02-07 change, as follows.
3117 Include c-strcase.h.
3118 (language_argmatch): Use c_strcasecmp rather than strcasecmp.
3119
3120 2007-02-11 Bruno Haible <bruno@clisp.org>
3121
3122 Enable the Java related testsuite tests when the only Java compiler
3123 found is a gcj < 4.3. Discussed at
3124 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00016.html>.
3125 * configure.ac (gt_JAVACOMP): Don't specify a target_version.
3126
3127 2007-02-11 Joel E. Denny <jdenny@ces.clemson.edu>
3128
3129 * data/Makefile.am: Update copyright date.
3130 * data/push.c (yypull_parse): Report memory exhaustion and return 2 if
3131 yypstate_new returns NULL.
3132 (yypstate_new): Return NULL if malloc does.
3133 * src/reader.c (packgram): Move translation of rule actions from the
3134 beginning of packgram to...
3135 (check_and_convert_grammar): ... here right before packgram is invoked
3136 so it's easier to write more complete comments, and remove redundant
3137 code.
3138
3139 2007-02-10 Joel E. Denny <jdenny@ces.clemson.edu>
3140
3141 As in semantic actions, make @$ in %initial-action, %destructor, and
3142 %printer imply %locations.
3143 * src/scan-code.l (SC_SYMBOL_ACTION): Set locations_flag = true when
3144 scanning @$.
3145 * tests/actions.at (AT_CHECK_ACTION_LOCATIONS): New macro supporting...
3146 (@$ in %initial-action implies %locations,
3147 @$ in %destructor implies %locations,
3148 @$ in %printer implies %locations): ... these new test cases.
3149
3150 2007-02-07 Paul Eggert <eggert@cs.ucla.edu>
3151
3152 Undo most of the 2007-02-03 change, switching to the strcase module
3153 now that gnulib strcase has been fixed.
3154 * bootstrap.conf (gnulib_modules): Remove c-strcase. Add strcase.
3155 * lib/.cvsignore: Remove c-ctype.c, c-ctype.h, c-strcase.h,
3156 c-strcasecomp.c, c-strncasecmp.c. Add strcasecmp.c, strncasecmp.c
3157 * m4/.cvsignore: Add strcase.m4.
3158 * src/getargs.c: Revert 2007-02-03 change, as follows.
3159 Don't include c-strcase.h.
3160 (language_argmatch): Use strcasecmp rather than c_strcasecmp.
3161 strcasecmp has "unspecified behavior" outside the POSIX locale,
3162 but it works fine in practice if at least one argument is ASCII,
3163 as is the case in Bison.
3164
3165 2007-02-07 Paolo Bonzini <bonzini@gnu.org>
3166
3167 * tests/java.at: Skip tests if only one of javac/java is present.
3168 Reported by Joel E. Denny.
3169 * tests/atlocal.in: Adjust copyright years.
3170
3171 2007-02-05 Paolo Bonzini <bonzini@gnu.org>
3172
3173 * data/lalr1.java (Stack): Work around old verifiers that disallow
3174 access to the private fields of an inner class, from the outer class.
3175 We can make Stack's fields public because user code doesn't have access
3176 to the instance of Stack used by parse(). Reported by Paul Eggert.
3177
3178 2007-02-03 Paul Eggert <eggert@cs.ucla.edu>
3179
3180 * .cvsignore: Add javacomp.sh, javaexec.sh. Is this really
3181 the right spot for these files?
3182 * bootstrap.conf (gnulib_modules): Add c-strcase.
3183 * lib/.cvsignore: Add c-ctype.c c-ctype.h, c-strcasecomp.c,
3184 c-strncasecmp.c.
3185 * src/getargs.c: Include c-strcase.h.
3186 (language_argmatch): Use c_strcasecmp rather than strcasecmp,
3187 to avoid unspecified behavior.
3188
3189 2007-02-01 Joel E. Denny <jdenny@ces.clemson.edu>
3190
3191 * doc/bison.texinfo (Decl Summary): Correct typo.
3192
3193 2007-01-30 Paolo Bonzini <bonzini@gnu.org>
3194
3195 * data/bison.m4 (b4_percent_define_flag_if): Don't treat 0 as false.
3196 Complain if the value does not match empty, "true" or "false".
3197 * data/c++.m4: Adjust default definitions of %define variables.
3198 * data/java.m4: Adjust default definitions of %define variables.
3199 * doc/bison.texinfo (Decl Summary): Adjust the %define entry according
3200 to above behavior.
3201 * tests/input.at (Boolean %define variables): Test new behavior.
3202
3203 2007-01-29 Paolo Bonzini <bonzini@gnu.org>
3204
3205 * NEWS: Mention java.
3206 * TODO: Remove things that are done.
3207 * bootstrap.conf: Add javacomp-script and javaexec-script.
3208 * configure.ac: Invoke gt_JAVACOMP and gt_JAVAEXEC.
3209
3210 * data/Makefile.am: Add new files.
3211 * data/java-skel.m4: New.
3212 * data/java.m4: New.
3213 * data/lalr1.java: New.
3214
3215 * doc/bison.texinfo: Put "A Complete C++ Example" under
3216 C++ Parsers. Add Java Parsers. Put C++ Parsers and Java Parsers
3217 under Other Languages.
3218
3219 * src/getargs.c (valid_languages): Add Java.
3220 * src/getargs.h (struct bison_language): Update size of string fields.
3221
3222 * tests/Makefile.am: Add java.at.
3223 * tests/atlocal.in: Add CONF_JAVA and CONF_JAVAC.
3224 * tests/java.at: New.
3225 * tests/testsuite.at: Include it.
3226
3227 2007-01-28 Joel E. Denny <jdenny@ces.clemson.edu>
3228
3229 Clean up.
3230 * src/scan-skel.l (at_directive_perform): Add at_directive_argc and
3231 at_directive_argv arguments so these no longer have to be global
3232 variables. Also, update the implementation for the following changes.
3233 (fail_for_at_directive_too_many_args,
3234 fail_for_at_directive_too_few_args): Add at_directive_name argument.
3235 (at_directive_name): Remove as at_directive_argv[0] will be used for
3236 this now.
3237 (AT_DIRECTIVE_ARGC_MAX): Increment to make space in at_directive_argv
3238 for the directive name.
3239 (at_directive_argc, at_directive_argv): Make these local within
3240 skel_lex instead of global.
3241 (INITIAL): Update directive start action for above changes.
3242 (SC_AT_DIRECTIVE_ARG): Rename to...
3243 (SC_AT_DIRECTIVE_ARGS): ... this, and update for above changes.
3244 (SC_AT_DIRECTIVE_SKIP_WS): Update.
3245 (scan_skel): Move yylex_destroy to...
3246 (skel_scanner_free): ... here.
3247 * tests/skeletons.at (installed skeleton file name): Rename to...
3248 (installed skeleton file names): ... this.
3249
3250 2007-01-27 Joel E. Denny <jdenny@ces.clemson.edu>
3251
3252 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
3253 node names: say "Table of Symbols" not "Bison Symbols", and say "Decl
3254 Summary" not "Directives".
3255 * doc/bison.texinfo (Decl Summary, Calc++ Parser): Cross-reference the
3256 %code entry in "Decl Summary" rather than the one in "Table of Symbols"
3257 since the former is now the more complete one.
3258 (Prologue Alternatives): Likewise and do the same for %defines.
3259 (Table of Symbols): Add summary of %code, add summary of %define, and
3260 move full %code documentation to...
3261 (Decl Summary): ... here for consistency with other entries in these
3262 sections.
3263 Move %define entry in order to keep this list alphabetized.
3264 Reword %define entry a little to put less emphasis on the skeleton
3265 concept, which most users shouldn't have to think about.
3266
3267 2007-01-26 Paul Eggert <eggert@cs.ucla.edu>
3268
3269 Adjust to recent gnulib changes.
3270 * lib/.cvsignore: Remove stpcpy.h, strndup.h, strnlen.h.
3271 Add string.h, string_.h, unistd_.h, wchar_.h.
3272 * m4/.cvsignore: Add gnulib-common.m4, string_h.m4, wchar.m4.
3273 * src/system.h: Don't include <stpcpy.h>; this is now done by
3274 <string.h>.
3275
3276 2007-01-23 Paolo Bonzini <bonzini@gnu.org>
3277
3278 Simplify implementation of unqualified %code, implement macros for
3279 uniform treatment of boolean %define flags. Document %define.
3280 * data/bison.m4 (b4_percent_define_ifdef, b4_percent_define_flag_if,
3281 b4_percent_code_ifdef): New.
3282 (b4_percent_code_get): Map unqualified %code to b4_percent_code().
3283 * data/c++.m4: Define default value for global_tokens_and_yystype.
3284 * data/glr.cc: Likewise.
3285 * data/location.cc: Use b4_percent_define_flag_if.
3286
3287 * doc/bison.texinfo (Decl Summary): Document %define.
3288
3289 * src/parse-gram.y (Unqualified %code): Change muscle name to
3290 b4_percent_code().
3291 (content.opt): Default to empty.
3292
3293 2007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
3294
3295 Implement support for relative and absolute skeleton file names.
3296 Discussed starting at
3297 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00071.html>.
3298 * doc/bison.texinfo (Decl Summary): Document in %skeleton entry.
3299 (Bison Options): Document in --skeleton entry.
3300 * src/output.c (output_skeleton): Use strncpy rather than strcpy since
3301 full_skeleton can't necessarily hold all of pkgdatadir.
3302 If the specified skeleton file name contains a `/', don't prepend
3303 pkgdatadir.
3304 * src/parse-gram.y (prologue_declaration): If the specified skeleton
3305 file name contains a `/', prepend the grammar file directory.
3306 * tests/Makefile.am (TESTSUITE_AT): Add skeletons.at.
3307 * skeletons.at: New file.
3308 (relative skeleton file names): New test case.
3309 (installed skeleton file names): New test case.
3310 * tests/testsuite.at: Include skeletons.at.
3311
3312 * bootstrap: Update copyright to 2007.
3313
3314 2007-01-17 Paolo Bonzini <bonzini@gnu.org>
3315
3316 * bootstrap: Remove occurrences of .#bootmp from the files.
3317
3318 2007-01-17 Akim Demaille <akim@epita.fr>
3319
3320 * doc/bison.texinfo (Calc++ Parser): Don't try to alias
3321 nonterminals.
3322 Use per-type %printer.
3323
3324 2007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
3325
3326 * NEWS, data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4,
3327 data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
3328 djgpp/config.site, src/files.c, src/files.h, src/main.c,
3329 src/muscle_tab.c, src/muscle_tab.h, src/parse-gram.y, src/reader.h,
3330 src/scan-skel.h, src/scan-skel.l, tests/actions.at, tests/calc.at,
3331 tests/glr-regression.at, tests/input.at, tests/local.at,
3332 tests/output.at, tests/torture.at: Update copyright to 2007.
3333
3334 2007-01-16 Akim Demaille <akim@epita.fr>
3335
3336 * doc/bison.texinfo (Calc++ Parsing Driver): Let "parse" return an
3337 error code.
3338 (Calc++ Scanner): Exit with failure if we can't open the input
3339 file.
3340 Accept "-" standing for stdin.
3341 (Calc++ Top Level): Print the result only if the parsing was
3342 successful.
3343
3344 2007-01-16 Akim Demaille <akim@epita.fr>
3345
3346 * data/lalr1.cc (yy_reduce_print_): Add a missing end-of-line.
3347
3348 2007-01-15 Paolo Bonzini <bonzini@gnu.org>
3349 and Joel E. Denny <jdenny@ces.clemson.edu>
3350
3351 Clean up %define and %code implementation in M4 some. Most
3352 importantly, rename all related macros to be in the b4_percent_define
3353 and b4_percent_code namespaces. Also, complete support for `.' in
3354 %define variable names and %code qualifiers.
3355 * data/bison.m4 (b4_check_user_names): Check for special
3356 "SKELETON-NAMESPACE(name)" macros instead of using two nested
3357 m4_foreach loops.
3358 (b4_get_percent_define, b4_get_percent_code): Rename to...
3359 (b4_percent_define_get, b4_percent_code_get): ... these.
3360 Extend documentation with examples.
3361 For SKELETON-NAMESPACE (as documented for b4_check_user_names), use
3362 b4_percent_define_skeleton_variables and
3363 b4_percent_code_skeleton_qualifiers.
3364 Expect any value for the %define variable `foo' to be stored in the
3365 macro named `b4_percent_define(foo)'; expect any %code blocks for the
3366 qualifier `foo' to be stored in a macro named `b4_percent_code(foo)';
3367 expect any unqualified %code blocks to be stored in a macro named
3368 `b4_percent_code_unqualified'.
3369 Use m4_indir so that %define variable names and %code qualifiers can
3370 contain `.', which is allowed by the grammar parser.
3371 (b4_percent_define_default): New macro to set a default value for a
3372 %define variable.
3373 (m4_wrap): Update wrapped code, and fix some underquoting.
3374 (b4_check_user_names_wrap): Update and define outside the m4_wrap.
3375 Expect grammar uses of %define variables and %code qualifiers to be
3376 defined in b4_percent_define_user_variables and
3377 b4_percent_code_user_qualifiers.
3378 * data/c++.m4: Use b4_percent_define_default rather than
3379 m4_define_default. Fix some underquoting. Skeleton usage of %define
3380 variable define_location_comparison now implies skeleton usage of
3381 %define variable filename_type.
3382 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
3383 data/push.c, data/yacc.c: Update macro names.
3384 * src/parse-gram.y (prologue_declaration, grammar_declaration): Update
3385 muscle names.
3386
3387 2007-01-14 Juan Manuel Guerrero <juan.guerrero@gmx.de>
3388
3389 DJGPP specific issues.
3390
3391 * djgpp/config.site: Set ac_cv_path_mkdir to a sane DJGPP specific
3392 default. Set gl_cv_absolute_wctype_h to a sane DJGPP specific default.
3393
3394 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
3395
3396 * tests/glr-regression.at: Use AT_PARSER_CHECK rather than AT_CHECK to
3397 run parsers in all tests so that Valgrind is invoked during
3398 maintainer-check-valgrind.
3399 (Duplicate representation of merged trees): Free all semantic values.
3400 (Duplicated user destructor for lookahead): Likewise.
3401
3402 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
3403
3404 * tests/local.at (AT_PARSER_CHECK): Add a PRE argument to specify a
3405 command-line prefix.
3406 * tests/torture.at (Exploding the Stack Size with Alloca): Stderr is
3407 ignored, so use that PRE to set --log-fd=1 in VALGRIND_OPTS so we don't
3408 miss Valgrind messages.
3409 (Exploding the Stack Size with Malloc): Likewise.
3410
3411 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
3412
3413 Ignore YYSTACK_USE_ALLOCA for push parsers since the stacks can't be
3414 locals. Reported by Juan Manuel Guerrero at
3415 <http://lists.gnu.org/archive/html/bug-bison/2007-01/msg00000.html>.
3416 * data/push.c: Enclose the #ifdef YYSTACK_USE_ALLOCA in b4_push_if.
3417 Fix some indentation also.
3418 * tests/torture.at (Exploding the Stack Size with Alloca): Add comment
3419 explaining this issue.
3420
3421 2007-01-09 Paolo Bonzini <bonzini@gnu.org>
3422 and Joel E. Denny <jdenny@ces.clemson.edu>
3423
3424 Simplify union and prologue handling, and escape union and lex/parse
3425 params with digraphs.
3426 * data/bison.m4 (b4_pre_prologue, b4_post_prologue): Set their default
3427 values to the empty string since these are no longer guaranteed
3428 initialized by the front-end.
3429 * data/glr.c, data/glr.cc, data/lalr1.cc, data/push.c, data/yacc.c: Add
3430 braces around b4_user_stype since this is no longer done by the
3431 front-end.
3432 * src/files.c, src/files.h (pre_prologue_obstack,
3433 post_prologue_obstack): Remove.
3434 * src/muscle_tab.c (muscle_pair_list_grow): Don't duplicate header
3435 comments here. Use MUSCLE_OBSTACK_SGROW so that values are escaped
3436 with digraphs. This fixes lex params and parse params.
3437 * src/muscle_tab.h (muscle_pair_list_grow): Update comments.
3438 * src/output.c (prepare): Remove muscle insertion of the prologues.
3439 (output): Remove freeing of pre_prologue_obstack and
3440 post_prologue_obstack.
3441 * src/parse-gram.y (prologue_declaration): Use muscle_code_grow rather
3442 than prologue_augment for prologue parsing so you don't need prologue
3443 obstacks.
3444 (grammar_declaration): For %union RHS, use `braceless' instead of
3445 "{...}" so that braces are already stripped and code is escaped with
3446 digraphs.
3447 * src/reader.c (prologue_augment): Remove.
3448 (reader): Remove initialization of pre_prologue_obstack and
3449 post_prologue_obstack.
3450 * src/reader.h (prologue_augment): Remove.
3451
3452 * data/c.m4: Remove stray parenthesis.
3453
3454 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
3455
3456 Remove quotes from variables names in %define directives and from
3457 qualifiers in %code directives, and restrict the characters that are
3458 allowed in them to M4-friendly ones. For %define, continue to support
3459 the quoted form as a deprecated feature. Discussed starting at
3460 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00023.html>.
3461 * NEWS (2.3a+): Add entry for the change to %define. Update entry for
3462 %code.
3463 * doc/bison.texinfo (Prologue Alternatives): Update.
3464 (Decl Summary): In %defines entry, update mention of `%code requires'
3465 and `%code provides'.
3466 (C++ Location Values): Update %define uses.
3467 (Calc++ Parser Interface): Likewise.
3468 (Calc++ Parser): Likewise, and update `%code requires' uses.
3469 (Table of Symbols): Update %code documentation.
3470 * src/parse-gram.y (prologue_declaration): For %define variables, use
3471 `variable' instead of `STRING'.
3472 (grammar_declaration): For %code qualifiers, use `ID' instead of
3473 `STRING'.
3474 (variable): New nonterminal that takes an `ID' or a `STRING'.
3475 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update %code
3476 and %define uses.
3477 * tests/calc.at (_AT_DATA_CALC_Y): Update %define use.
3478 * tests/input.at (Reject unused %code qualifiers): Update %code uses.
3479 (%define errors): Update %define uses.
3480
3481 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
3482
3483 * src/parse-gram.y (prologue_declaration): Use MUSCLE_INSERT_STRING
3484 instead of muscle_insert for %define values so that M4-special
3485 characters are replaced with digraphs.
3486 * tests/input.at (%define errors): Extend to check weird values.
3487
3488 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
3489
3490 Instead of having skeletons declare all valid %define variables and
3491 %code qualifiers, provide macros that retrieve the associated values
3492 and build these lists automatically. Thus Bison will now warn when a
3493 variable or qualifier is not used by the skeleton in the current
3494 invocation regardless of whether it might sometimes be used by that
3495 skeleton in other invocations. Also, move all %define value macros to
3496 the b4_percent_define_ namespace, and remove the %define "NAME" {CODE}
3497 form, which is replaced by %code.
3498 * data/bison.m4 (b4_check_for_unrecognized_names): Rename to...
3499 (b4_check_user_names): ... this, and change the series of valid name
3500 arguments to a single list argument for names used in the skeleton
3501 similar to the existing list argument for names used in the grammar.
3502 Warn instead of complaining.
3503 (b4_get_percent_define, b4_get_percent_code): New to retrieve %define
3504 values and %code code, to format %code code properly, and to build
3505 lists of all %define variables and %code qualifiers used in the
3506 skeleton: b4_skeleton_percent_define_variables and
3507 b4_skeleton_percent_code_qualifiers.
3508 (b4_check_percent_define_variables, b4_check_percent_code_qualifiers):
3509 Remove, and...
3510 (m4_wrap): ... m4_wrap b4_check_user_names invocations instead so that
3511 the skeleton names lists can finish building first. In place of
3512 b4_used_percent_define_variables and b4_used_percent_code_qualifiers,
3513 expect the lists b4_user_percent_define_variables and
3514 b4_user_percent_code_qualifiers.
3515 * data/c++.m4: Where setting default values for b4_parser_class_name,
3516 b4_location_type, b4_filename_type, b4_namespace, and
3517 b4_define_location_comparison, update their names to the
3518 b4_percent_define_ namespace.
3519 * data/glr.c: Don't use b4_check_percent_define_variables and
3520 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
3521 * data/glr.cc, data/lalr1.cc: Likewise, and use b4_get_percent_define.
3522 (b4_parser_class_name, b4_namespace): Define these using
3523 b4_get_percent_define for parser_class_name and namespace.
3524 * data/location.cc: Use b4_get_percent_define.
3525 * data/push.c: Don't use b4_check_percent_define_variables and
3526 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
3527 * data/yacc.c: Likewise, and don't call m4_exit in
3528 b4_use_push_for_pull_if or m4_wrap code will never execute.
3529 * src/muscle_tab.c, src/muscle_tab.h (muscle_grow_used_name_list):
3530 Rename to...
3531 (muscle_grow_user_name_list): ... this for consistency with the
3532 terminology used in bison.m4.
3533 * src/parse-gram.y (prologue_declaration): Prepend "percent_define_" to
3534 %define variable names, and rename muscle used_percent_define_variables
3535 to user_percent_define_variables.
3536 (grammar_declaration): Rename muscle used_percent_code_qualifiers to
3537 user_percent_code_qualifiers.
3538 (content): Remove.
3539 (content.opt): Replace content RHS with STRING RHS so %define "NAME"
3540 {CODE} form is no longer accepted.
3541 * tests/input.at (Reject bad %code qualifiers): Rename to...
3542 (Reject unused %code qualifiers): ... this, and update test output.
3543 (%define error): Update test output.
3544
3545 2007-01-07 Joel E. Denny <jdenny@ces.clemson.edu>
3546
3547 Check for unrecognized %define variables similar to checking for
3548 unrecognized %code qualifiers. Check for redefined %define variables.
3549 * data/bison.m4 (b4_check_for_unrecognized_names): New macro that
3550 generalizes...
3551 (b4_check_percent_code_qualifiers): ... this, which now wraps it.
3552 (b4_check_percent_define_variables): New, also wraps it.
3553 * data/glr.c: Unless glr.cc is wrapping glr.c, declare no valid %define
3554 variables using b4_check_percent_define_variables.
3555 * data/glr.cc, data/lalr1.cc: Declare the valid %define variables as
3556 all those exercised in the test suite and all those listed in the
3557 `Default values' section of c++.m4. Are there others?
3558 * data/push.c, data/yacc.c: Declare no valid %define variables.
3559 * src/muscle_tab.c, src/muscle_tab.h (muscle_find_const): New function,
3560 similar to muscle_find, but it works even when the muscle stores a
3561 const value.
3562 (muscle_grow_used_name_list): New function for constructing the used
3563 name list muscles that b4_check_for_unrecognized_names requires.
3564 * src/parse-gram.y (prologue_declaration): Warn if a variable is
3565 %define'd more than once. Define the b4_used_percent_define_variables
3566 muscle with muscle_grow_used_name_list.
3567 (grammar_declaration): Abbreviate %code code with
3568 muscle_grow_used_name_list.
3569 * tests/input.at (%define errors): New.
3570
3571 2007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
3572
3573 Provide warn_at, complain_at, and fatal_at function callbacks to the
3574 skeletons, and use this for %code qualifier complaints.
3575 * data/bison.m4 (b4_error_at): New, invoked by...
3576 (b4_warn_at, b4_complain_at, b4_fatal_at): ... these new macros to wrap
3577 the skeleton scanner's new @warn_at(...@), @complain_at(...@), and
3578 @fatal_at(...@) directives.
3579 (b4_check_percent_code_qualifiers): Rewrite to expect locations for
3580 qualifiers in b4_used_percent_code_qualifiers and to use
3581 b4_complain_at.
3582 * src/location.c, src/location.h (boundary_set_from_string): New global
3583 function.
3584 * src/muscle_tab.c, src/muscle_tab.h (muscle_boundary_grow): New global
3585 function.
3586 * src/parse-gram.y (grammar_declaration): Add locations for qualifiers
3587 to b4_used_percent_code_qualifiers.
3588 * src/scan-skel.l (fail_for_at_directive_too_few_args): New static
3589 function.
3590 (AT_DIRECTIVE_ARGC_MAX): Increase for boundary arguments.
3591 (lineno): Rename to...
3592 (out_lineno): ... this so I don't misunderstand it again.
3593 (SC_AT_DIRECTIVE_SKIP_WS): Don't increment out_lineno for newlines
3594 here; these newlines are in the input but not the output file.
3595 (SC_AT_DIRECTIVE_ARG): Likewise. Extract directive execution to...
3596 (at_directive_perform): ... this new static function, and add handling
3597 of new @warn_at(...@), @complain_at(...@), and @fatal_at(...@)
3598 directives.
3599 * tests/input.at (Reject bad %code qualifiers): Update test output with
3600 locations and extend.
3601
3602 * tests/output.at (Output file name: [, Output file name: ]): Remove
3603 bogus comment about these tests failing.
3604
3605 2007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
3606
3607 Clean up b4_check_percent_code_qualifiers a little.
3608 * data/bison.m4 (b4_check_percent_code_qualifiers): Expect qualifiers
3609 in b4_used_percent_code_qualifiers to be double-M4-quoted. Rewrite
3610 documentation and add examples.
3611 * src/parse-gram.y (grammar_declaration): Double-M4-quote those
3612 qualifiers here.
3613
3614 2007-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
3615
3616 Don't use m4_divert since it makes m4_divert_push and m4_divert_pop
3617 unreliable -- especially when they're hidden inside another macro.
3618 * data/bison.m4, data/c++-skel.m4, data/c++.m4, data/c-skel.m4,
3619 data/c.m4: Remove m4_divert(-1).
3620 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
3621 data/push.c, data/yacc.c: Likewise, and replace m4_divert(0) with
3622 m4_divert_push(0) and m4_divert_pop(0).
3623 * src/output.c (output_skeleton): Don't add an m4_divert_push(0) and
3624 an m4_wrap([m4_divert_pop(0)]) to the M4. Diversion -1, which is
3625 pushed and popped by m4sugar, should be first on the stack.
3626
3627 Provide warn, complain, and fatal function callbacks to the skeletons.
3628 This provides more flexibility than m4_fatal, improves the error
3629 message format, and captures messages for translation. Discussed
3630 starting at
3631 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00063.html>.
3632 * data/bison.m4 (b4_error): New, invoked by...
3633 (b4_warn, b4_complain, b4_fatal): ... these new macros to wrap the
3634 skeleton scanner's new @warn(...@), @complain(...@), and @fatal(...@)
3635 directives. Because these M4 macros might be called when the current
3636 diversion is -1 or 0, m4_divert_push and m4_divert_pop is used; thus
3637 the previous removal of uses of m4_divert, which caused trouble.
3638 (b4_check_percent_code_qualifiers): Use b4_complain instead of
3639 m4_fatal to report unrecognized %code qualifiers.
3640 * data/c++-skel.m4: Use b4_complain instead of m4_fatal to report C++
3641 push parser requests.
3642 * data/glr.c: Use b4_complain instead of m4_fatal to report
3643 non-deterministic push parser requests.
3644 Update @output usage to @output(...@) form.
3645 * data/glr.cc, data/lalr1.cc: Use b4_fatal instead of m4_fatal to
3646 report missing %defines. Update @output usage to @output(...@) form.
3647 * data/location.cc, data/push.c, data/yacc.c: Update @output usage to
3648 @output(...@) form.
3649 * src/main.c (main): Invoke skel_scanner_free.
3650 * src/scan-skel.h (skel_scanner_free): Prototype new function.
3651 * src/scan-skel.l (FLEX_NO_OBSTACK): Don't define; we now need the
3652 obstack_for_string from flex-scanner.h.
3653 (YY_DECL): Use to declare skel_lex static.
3654 (decode_at_digraphs): Remove; now handled in the new
3655 SC_AT_DIRECTIVE_ARG start condition.
3656 (fail_for_at_directive_too_many_args, fail_for_invalid_at): New static
3657 functions.
3658 (at_directive_name, AT_DIRECTIVE_ARGC_MAX, at_directive_argc,
3659 at_directive_argv): New static globals.
3660 (INITIAL): Use fail_for_invalid_at.
3661 Don't parse `@output file_name\n' or `@basename(...@)'. Instead,
3662 recognize the start of a generalized `@directive(...@)' form and
3663 start...
3664 (SC_AT_DIRECTIVE_ARG): ... this new start condition to parse the
3665 directive args (using the new obstack_for_string), to decode the
3666 contained @ diagraphs, and to perform the directive. It recognizes
3667 @basename(...@), @warn(...@), @complain(...@), @fatal(...@), and
3668 @output(...@).
3669 (SC_AT_DIRECTIVE_SKIP_WS): New start condition started by
3670 SC_AT_DIRECTIVE_ARG to skip whitespace after the argument delimiter,
3671 `@,'.
3672 (scan_skel): Initialize obstack_for_string on the first call.
3673 (skel_scanner_free): New function to free obstack_for_string.
3674 * tests/input.at (Reject bad %code qualifiers): Update test output.
3675
3676 2007-01-04 Joel E. Denny <jdenny@ces.clemson.edu>
3677
3678 Consolidate the 4 prologue alternative directives (%code, %requires,
3679 %provides, and %code-top) into a single %code directive with an
3680 optional qualifier field. Discussed at
3681 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00012.html>.
3682 * NEWS (2.3a+): Rewrite the existing entry for the prologue
3683 alternatives.
3684 * doc/bison.texinfo (Prologue Alternatives): Update.
3685 (Decl Summary): Update to %code "requires" and %code "provides".
3686 (Calc++ Parser): Update to %code "requires".
3687 (Table of Symbols): Remove entries for %requires, %provides, and
3688 %code-top. Rewrite %code entry, and add a %code "QUALIFIER" entry.
3689 * data/bison.m4 (b4_user_provides, b4_user_requires): Remove as these
3690 are replaced by b4_percent_code_provides and b4_percent_code_requires,
3691 which are skeleton-specific.
3692 (b4_check_percent_code_qualifiers): New. A skeleton can use this to
3693 declare what %code qualifiers it supports and to complain if any other
3694 qualifiers were used in the grammar.
3695 * data/glr.cc: Update to use b4_user_code([b4_percent_code_requires])
3696 and b4_user_code([b4_percent_code_provides]) in place of
3697 b4_user_requires and b4_user_provides.
3698 * data/glr.c, data/lalr1.cc, data/push.c, data/yacc.c: Likewise.
3699 Add b4_user_code([b4_percent_code_top]) and
3700 b4_user_code([b4_percent_code]).
3701 Invoke b4_check_percent_code_qualifiers.
3702 * src/parse-gram.y (PERCENT_CODE_TOP, PERCENT_PROVIDES,
3703 PERCENT_REQUIRES): Remove.
3704 (grammar_declaration): Remove RHS's for %code-top, %provides, and
3705 %requires. Rewrite the %code RHS as the unqualified form defining the
3706 muscle b4_percent_code. Add another RHS for the qualified %code form,
3707 which defines muscles of the form b4_percent_code_QUALIFIER and the
3708 b4_used_percent_code_qualifiers muscle.
3709 * src/scan-gram.l (PERCENT_CODE_TOP, PERCENT_PROVIDES,
3710 PERCENT_REQUIRES): Remove.
3711 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update to use
3712 %code "requires" and %code "provides".
3713 * tests/input.at (Reject bad %code qualifiers): New.
3714
3715 2007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
3716
3717 Use the new code_props interface for destructors and printers.
3718 * src/symtab.h (symbol, semantic_type): Remove destructor_location and
3719 printer_location members, and change the type of the destructor and
3720 printer members to code_props.
3721 (symbol_destructor_set, symbol_destructor_get, symbol_printer_set,
3722 symbol_printer_get, semantic_type_destructor_set,
3723 semantic_type_printer_set, default_tagged_destructor_set,
3724 default_tagless_destructor_set, default_tagged_printer_set,
3725 default_tagless_printer_set): Use code_props in arguments and return
3726 types in place of char const * and location.
3727 (symbol_destructor_location_get, symbol_printer_location_get): Remove
3728 since the locations are now contained in the return of
3729 symbol_destructor_get and symbol_printer_get.
3730 * src/output.c (symbol_destructors_output, symbol_printers_output):
3731 Replace with...
3732 (symbol_code_props_output): ... this to eliminate duplicate code.
3733 (output_skeleton): Update to use symbol_code_props_output.
3734 * src/reader.c (symbol_should_be_used): Update use of
3735 symbol_destructor_get.
3736 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
3737 Update uses of the various _destructor_set and _printer_set functions.
3738 * src/symtab.c: (default_tagged_destructor_location,
3739 default_tagless_destructor_location, default_tagged_printer_location,
3740 default_tagless_printer_location): Remove since we...
3741 (default_tagged_destructor, default_tagless_destructor,
3742 default_tagged_printer, default_tagless_printer): ... change the type
3743 of these to code_props.
3744 (symbol_new, semantic_type_new, symbol_destructor_set,
3745 semantic_type_destructor_set, symbol_destructor_get,
3746 symbol_printer_set, semantic_type_printer_set, symbol_printer_get,
3747 symbol_check_alias_consistency, default_tagged_destructor_set,
3748 default_tagless_destructor_set, default_tagged_printer_set,
3749 default_tagless_printer_set): Update.
3750 (symbol_destructor_location_get, symbol_printer_location_get): Remove.
3751 (SYMBOL_CODE_PRINT): New similar to SYMBOL_ATTR_PRINT but for
3752 code_props members.
3753 (symbol_print): Use SYMBOL_CODE_PRINT.
3754
3755 2007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
3756
3757 Use the new code_props interface for rule actions.
3758 * src/symlist.h (symbol_list): Replace action, action_location, and
3759 used members with a code_props action_props member.
3760 * src/reader.c (symbol_should_be_used, grammar_rule_check,
3761 grammar_midrule_action, grammar_current_rule_merge_set,
3762 grammar_current_rule_symbol_append, packgram): Update.
3763 * src/scan-code.h (translate_rule_action): Remove, no longer used.
3764 * src/scan-code.l (handle_action_dollar): Update.
3765 (translate_rule_action): Remove, no longer used.
3766 * src/symlist.c (symbol_list_sym_new, symbol_list_syms_print): Update.
3767
3768 2007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
3769
3770 Use the new code_props interface in parse-gram.y.
3771 * src/parse-gram.y (prologue_declaration, braceless, epilogue.opt):
3772 Update all uses of translate_* functions to use the new code_props
3773 interface and to use gram_scanner_last_string_free and
3774 code_scanner_last_string_free where possible.
3775 (grammar_declaration): symbol_list_destructor_set and
3776 symbol_list_printer_set now perform the translation, so don't do it
3777 here. Use gram_scanner_last_string_free where possible.
3778 * src/scan-code.h, src/scan-code.l (translate_symbol_action,
3779 translate_code): Remove, no longer used.
3780 * src/symlist.h, src/symlist.c (symbol_list_destructor_set,
3781 symbol_list_printer_set): Perform code translation here rather than
3782 depending on the caller to do so.
3783
3784 * src/symlist.h (struct symbol_list): Correct some documentation typos.
3785 * src/scan-gram.h (gram_last_string): Remove declaration.
3786 * src/scan-gram.l (last_string): Declare it static.
3787
3788 2007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
3789
3790 Encapsulate code properties and related functionality for the various
3791 destructors, printers, and actions into a code_props structure and
3792 interface. This patch merely implements code_props in scan-code.h and
3793 scan-code.l. Future patches will rewrite other modules to use it.
3794 Discussed starting at
3795 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00020.html>.
3796 * src/location.h (EMPTY_LOCATION_INIT): Define so that it's easier to
3797 consistently initialize const structs that have an empty location
3798 field.
3799 * src/location.c (empty_location): Initialize with EMPTY_LOCATION_INIT
3800 to ensure consistency.
3801 * src/scan-code.h (code_props): New structure.
3802 (code_props_none_init, CODE_PROPS_NONE_INIT, code_props_none): New
3803 function, macro, and const global variable for initializing a
3804 code_props with no code.
3805 (code_props_plain_init, code_props_symbol_action_init,
3806 code_props_rule_action_init, code_props_translate_code): The rest of
3807 the new code_props functional interface. Among other things, the init
3808 functions set the code_props kind field so that
3809 code_props_translate_code will know whether to behave like
3810 translate_symbol_action, translate_rule_action, or translate_code.
3811 These old translate functions must remain until all other modules are
3812 updated to use the new code_props interface.
3813 (code_scanner_last_string_free): New function similar to
3814 gram_scanner_last_string_free.
3815 (code_scanner_free): Add documentation.
3816 * src/scan-code.l: Implement the new interface.
3817 (code_lex): Make it static, add a code_props* argument, and remove the
3818 rule argument.
3819 (last_string): New static global similar to the one in scan-gram.l.
3820 (SC_RULE_ACTION): Update to use the code_props* argument to code_lex
3821 instead of rule.
3822 (SC_SYMBOL_ACTION): For $$, set the is_value_used member of the
3823 code_props since Bison may one day use this information for destructors
3824 and printers.
3825 (<*><<EOF>>): Use STRING_FINISH so that last_string is set.
3826 (handle_action_dollar): Use symbol_list_n_get and set used flag
3827 directly since symbol_list_n_used_set is removed.
3828 (translate_action): Add a code_props* argument and remove the rule,
3829 action, and location arguments. Pass the code_props* on to code_lex.
3830 (translate_rule_action, translate_symbol_action, translate_code):
3831 Rewrite as wrappers around the new code_props interface.
3832 * src/symlist.h, src/symlist.c (symbol_list_n_used_set): Remove since
3833 it would eventually need to break the encapsulation of code_props.
3834
3835 2007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
3836
3837 * etc/.cvsignore: New.
3838
3839 2007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
3840
3841 Add maintainer-push-check to run maintainer-check using push parsing in
3842 place of pull parsing where available.
3843 * Makefile.am (maintainer-push-check): New.
3844 * data/bison.m4 (b4_use_push_for_pull_if): New.
3845 * data/push.c: Redefine b4_push_if and b4_use_push_for_pull_if
3846 appropriately based on their existing values.
3847 (yypush_parse): Don't print push-parser-specific diagnostics if push
3848 parsing is being used in place of pull parsing.
3849 * data/yacc.c: If push parsing should replace pull parsing, redirect to
3850 push.c.
3851 * src/output.c (prepare): Check BISON_USE_PUSH_FOR_PULL environment
3852 variable, and insert b4_use_push_for_pull_flag into muscles.
3853 * tests/Makefile.am (maintainer-push-check): New.
3854
3855 2006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
3856
3857 * data/push.c (yypush_parse): Set yynew = 1 at the end of a parse
3858 (whether successful or failed) so that yypush_parse can be invoked
3859 again to start a new parse using the same yypstate.
3860 * tests/torture.at (AT_DATA_STACK_TORTURE): For push mode, extend to
3861 check multiple yypull_parse invocations on the same yypstate. For pull
3862 mode, extend to check multiple yyparse invocations.
3863 (Exploding the Stack Size with Alloca): Extend to try with
3864 %push-pull-parser.
3865 (Exploding the Stack Size with Malloc): Likewise.
3866
3867 * tests/calc.at (Simple LALR Calculator): Don't specify
3868 %skeleton "push.c" since %push-pull-parser implies that now.
3869 * tests/headers.at (export YYLTYPE): Don't check for the push
3870 declarations. Otherwise, this test case can't be used to see if push
3871 mode can truly emulate pull mode.
3872 * tests/input.at (Torturing the Scanner): Likewise.
3873 * tests/local.at (AT_YACC_OR_PUSH_IF, AT_PUSH_IF): Remove.
3874 (AT_YYERROR_SEES_LOC_IF): Rather than AT_YACC_OR_PUSH_IF, use
3875 AT_YACC_IF, which now includes the case of push mode since %skeleton
3876 need not be used for push mode. This will be more intuitive once
3877 push.c is renamed to yacc.c.
3878
3879 2006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
3880
3881 For push mode, convert yyparse from a macro to a function, invoke yylex
3882 instead of passing a yylexp argument to yypull_parse, and don't
3883 generate yypull_parse or yyparse unless %push-pull-parser is declared.
3884 Discussed starting at
3885 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00163.html>.
3886 * data/bison.m4 (b4_pull_if): New.
3887 * data/c.m4 (b4_identification): Define YYPULL similar to YYPUSH.
3888 * data/push.c: Improve M4 quoting a little.
3889 (b4_generate_macro_args, b4_parenthesize): Remove.
3890 (yyparse): If there's a b4_prefix, #define this to b4_prefix[parse]
3891 any time a pull parser is requested.
3892 Don't #define this as a wrapper around yypull_parse. Instead, when
3893 both push and pull are requested, make it a function that does that
3894 same thing.
3895 (yypull_parse): If there's a b4_prefix, #define this to
3896 b4_prefix[pull_parse] when both push and pull are requested.
3897 Don't define this as a function unless both push and pull are
3898 requested.
3899 Remove the yylexp argument and hard-code yylex invocation instead.
3900 * etc/bench.pl.in (bench_grammar): Use %push-pull-parser instead of
3901 %push-parser.
3902 * src/getargs.c (pull_parser): New global initialized to true.
3903 * getargs.h (pull_parser): extern it.
3904 * src/output.c (prepare): Insert pull_flag muscle.
3905 * src/parse-gram.y (PERCENT_PUSH_PULL_PARSER): New token.
3906 (prologue_declaration): Set both push_parser and pull_parser = true for
3907 %push-pull-parser. Set push_parser = true and pull_parser = false for
3908 %push-parser.
3909 * src/scan-gram.l: Don't accept %push_parser as an alternative to
3910 %push-parser since there's no backward-compatibility concern here.
3911 Scan %push-pull-parser.
3912 * tests/calc.at (Simple LALR(1) Calculator): Use %push-pull-parser
3913 instead of %push-parser.
3914 * tests/headers.at (export YYLTYPE): Make yylex static, and don't
3915 prototype it in the module that calls yyparse.
3916 * tests/input.at (Torturing the Scanner): Likewise.
3917 * tests/local.at (AT_PUSH_IF): Check for %push-pull-parser as well.
3918
3919 2006-12-26 Joel E. Denny <jdenny@ces.clemson.edu>
3920
3921 Update etc/bench.pl. Optimize push mode a little (the yyn change
3922 deserves most of the credit).
3923 * Makefile.am (SUBDIRS): Add etc subdirectory.
3924 * configure.ac (AC_CONFIG_FILES): Add etc/bench.pl and etc/Makefile.
3925 * data/push.c (b4_declare_parser_state_variables): Move yyn, yyresult,
3926 yytoken, yyval, and yyloc declarations to...
3927 (yyparse or yypush_parse): ... here to improve performance. For
3928 yypush_parse invocations after the first, be sure to assign yyn its old
3929 value again.
3930 (yypstate_new): Don't bother initializing the yyresult field since the
3931 initial value isn't used.
3932 (yyn, yyresult, yytoken, yyval, yyloc): For each NAME in this list,
3933 remove the #define that, in push mode, set it to yyps->NAME.
3934 * etc/Makefile.am: New.
3935 * etc/bench.pl: Remove and build it instead from...
3936 * etc/bench.pl.in: ... this new file. Use @abs_top_builddir@ to invoke
3937 "tests/bison" from the build directory by default rather than just
3938 invoking "bison" from $PATH.
3939 (calc_grammar): Update push parser code: don't declare yylval globally,
3940 don't define yyparse_wrapper, and don't #define yyparse.
3941 (bench_grammar): Update to check all working combinations of yacc.c,
3942 push.c, impure, pure, pull, and push.
3943
3944 2006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
3945
3946 For push mode, add pull wrappers around yypush_parse.
3947 * data/push.c: (b4_generate_macro_args, b4_parenthesize): New macros.
3948 (yypull_parse): New function wrapping yypush_parse.
3949 (yyparse): New #define wrapping yypull_parse.
3950 * tests/calc.at (_AT_DATA_CALC_Y): Call yyparse even when %push-parser
3951 is declared.
3952 * tests/headers.at (export YYLTYPE): Make yylex global. For push mode,
3953 prototype yylex in the module that calls yyparse, and don't prototype
3954 yyparse there. Otherwise, the yyparse expansion won't compile.
3955 * tests/input.at (Torturing the Scanner): Likewise.
3956
3957 2006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
3958
3959 Enable push parsers to operate in impure mode. Thus, %push-parser no
3960 longer implies %pure-parser. The point of this change is to move
3961 towards being able to test the push parser code by running the entire
3962 test suite as if %push-parser had been declared.
3963 * data/push.c (yypush_parse): For impure mode, remove the
3964 yypushed_char, yypushed_val, and yypushed_loc arguments.
3965 Instead, declare these as local variables initialized to the global
3966 yychar, yylval, and yylloc.
3967 For the first yypush_parse invocation only, restore the initial values
3968 of these global variables when it's time to read a token since they
3969 have been overwritten.
3970 * src/parse-gram.y (prologue_declaration): Don't set pure_parser for
3971 %push-parser.
3972 * tests/calc.at (Simple LALR(1) Calculator): Always declare
3973 %pure-parser along with %push-parser since this test case was designed
3974 for pure push parsers.
3975 * tests/local.at (AT_PURE_OR_PUSH_IF): Remove unused.
3976 (AT_YACC_OR_PUSH_IF): New.
3977 (AT_YYERROR_SEES_LOC_IF): Fix enough that the test suite passes, but
3978 add a note that it's still wrong for some cases (as it has been for a
3979 while).
3980 (AT_PURE_LEX_IF): Use AT_PURE_IF instead of AT_PURE_OR_PUSH_IF since
3981 %push-parser no longer implies %pure-parser.
3982
3983 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
3984
3985 Remove some unnecessary differences between the pull parser code and
3986 the push parser code. This patch enables yynerrs in push mode.
3987 * data/push.c: Reformat M4 a little.
3988 (b4_yyerror_range): Remove and convert all uses to just yyerror_range.
3989 (b4_declare_scanner_communication_variables): Don't omit yynerrs just
3990 because push mode is on. Instead, if pure mode is on, move yynerrs
3991 to...
3992 (b4_declare_parser_state_variables): ... here.
3993 (yynerrs, yyerror_range): For push mode, #define each NAME in this list
3994 to yyps->NAME so it can be used in yypush_parse.
3995 (yypush_parse): Don't omit uses of yynerrs in push mode.
3996
3997 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
3998
3999 Fix bug such that the first pushed token's value and location are
4000 sometimes overwritten (sometimes by %initial-action) before being used.
4001 * data/push.c (yypush_parse): Rename arguments yynchar, yynlval, and
4002 yynlloc to yypushed_char, yypushed_val, and yypushed_loc for clarity.
4003 For the first yypush_parse invocation, initialize yychar to YYEMPTY to
4004 more closely mimic the pull parser logic.
4005 Don't copy the pushed token to yychar, yylval, and yylloc until it's
4006 time to read a token, which is after any initialization of yylval and
4007 yylloc.
4008 (gottoken): Rename label to...
4009 (yyread_pushed_token): ... for clarity and to avoid infringing on the
4010 user namespace.
4011
4012 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
4013
4014 Rearrange initialization of the parser state variables so that the
4015 skeleton doesn't have to have a copy for pull mode and another for push
4016 mode. This patch also fixes at least a bug such that yylloc was not
4017 initialized (with b4_location_initial_line and
4018 b4_location_initial_column) upon calling yypush_parse. However, that
4019 initialization now overwrites the first token's location;
4020 %initial-action assigning @$ already did the same thing, and both bugs
4021 will be fixed in a later patch.
4022 * data/push.c (b4_yyssa): Remove and convert all uses to just yyssa.
4023 (b4_declare_parser_state_variables): Remove initialization of yytoken,
4024 yyss, yyvs, yyls, and yystacksize.
4025 (yypstate_new): Remove initialization of some yypstate fields: yystate,
4026 yyerrstatus, yytoken, yyss, yyvs, yyls, yystacksize, yyssp, yyvsp, and
4027 yylsp.
4028 (yyssa, yyvsa, yylsa): For push mode, #define each NAME in this list to
4029 yyps->NAME so it can be used in yypush_parse.
4030 (yyparse or yypush_parse): For yypush_parse, don't print the
4031 "Starting parse" diagnostic for invocations after the first.
4032 Add initialization of yytoken, yyss, yyvs, yyls, and yystacksize; for
4033 yypush_parse, only do it for the first invocation.
4034 Allow yystate, yyerrstatus, yyssp, yyvsp, yylsp, and yylloc
4035 initialization to occur in yypush_parse but only on the first
4036 invocation.
4037
4038 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
4039
4040 * data/push.c: Add CPP guards around push parser declarations in both
4041 the header and the code file.
4042 In the code file, move the push parser declarations to the same place
4043 they appear in the header file.
4044 Clean up the M4 some, especially the inconsistent underquoting in
4045 some b4_c_function_def and b4_c_function_decl uses.
4046
4047 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
4048
4049 Encapsulate the push parser state variables into an M4 macro so the
4050 push skeleton doesn't have to list them again for pull mode's yyparse.
4051 For push mode, remove yypush_parse's local equivalents of these
4052 variables to eliminate unnecessary copying between the two sets at
4053 run-time. This patch also fixes at least a bug related to multiple
4054 %initial-action invocations in push mode.
4055 * data/push.c (b4_declare_parser_variables): Rename to...
4056 (b4_declare_scanner_communication_variables): ... this for clarity and
4057 update both uses.
4058 (b4_declare_yyparse_variables): Remove and move its contents to the one
4059 spot where it was invoked.
4060 (b4_declare_parser_state_variables): New macro containing the parser
4061 state variables required by push mode.
4062 (struct yypstate): Replace all fields but yynew with
4063 b4_declare_parser_state_variables.
4064 (yystate, yyn, yyresult, yyerrstatus, yytoken, yyss, yyssp, yyvs,
4065 yyvsp, yyls, yylsp, yystacksize, yyval, yyloc): For push mode, #define
4066 each NAME in this list to yyps->NAME so it can be used in yypush_parse.
4067 (yyparse or yypush_parse): For yyparse in pull mode, replace local
4068 parser state variable declarations with
4069 b4_declare_parser_state_variables.
4070 Don't initialize parser state variables when calling yypush_parse since
4071 yypstate_new already does that.
4072 Invoke the user's initial action only upon the first yypush_parse
4073 invocation.
4074 Remove all code that copies between the local parser state variables
4075 and the yypstate.
4076
4077 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
4078
4079 * data/push.c (union yyalloc): Rename yyss, yyvs, and yyls fields to
4080 prevent a name collision in a future patch where these names will
4081 sometimes be #define'd.
4082 (YYSTACK_RELOCATE): Add an argument to select a union yyalloc field
4083 since it no longer has the same name as the existing argument.
4084 (yyparse or yypush_parse): Update all uses of YYSTACK_RELOCATE.
4085
4086 2006-12-19 Paolo Bonzini <bonzini@gnu.org>
4087 and Joel E. Denny <jdenny@ces.clemson.edu>
4088
4089 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
4090 that the argument is case-insensitive, and there's no `=' here.
4091 For the %skeleton entry, mention that %language is better.
4092 (Bison Options): Likewise for --language and --skeleton. Move the
4093 --skeleton entry so that the `Tuning the parser' section is sorted
4094 alphabetically on long options.
4095 (C++ Bison Interface): Don't use the word skeleton. Don't explain the
4096 %language directive in detail here; cross-reference the %language
4097 documentation instead.
4098 (Calc++ Parser): Use `%require "@value{VERSION}"' rather than
4099 `%require "2.3b"' so that the example is always up-to-date.
4100 (Table of Symbols): Add entries for %language and %skeleton.
4101 * examples/extexi (normalize): Instead of replacing every %require
4102 argument with the current Bison version, just substitute for
4103 `@value{VERSION}'. This guarantees that we're testing what actually
4104 appears in the documentation.
4105 * examples/calc++/Makefile.am ($(calc_extracted)): Use `$(VERSION)'
4106 rather than `@VERSION@'.
4107
4108 2006-12-18 Paul Eggert <eggert@cs.ucla.edu>
4109
4110 * NEWS: Reword the %language news a bit, and put it earlier.
4111
4112 * src/getargs.c (skeleton_arg): Last arg is now location const *.
4113 Rewrite to simplify the logic.
4114 (language_argmatch): Likewise.
4115 (program_name): We now own this var.
4116 * src/getargs.h (struct bison_language): Use char[] rather than
4117 const char *.
4118
4119 * doc/bison.texinfo (Decl Summary, Bison Options): Don't claim
4120 Java is supported.
4121 * src/complain.c (program_name): Remove decl; no longer needed.
4122 * src/main.c (program_name): Remove; now belongs to getargs.
4123
4124 2006-12-18 Paolo Bonzini <bonzini@gnu.org>
4125
4126 * NEWS: Document %language.
4127
4128 * data/Makefile.am (dist_pkgdata_DATA): Add c-skel.m4, c++-skel.m4.
4129
4130 * data/c-skel.m4, data/c++-skel.m4: New files.
4131 * data/glr.c: Complain on push parsers.
4132
4133 * doc/bison.texinfo (C++ Parser Interface): Prefer %language
4134 over %skeleton.
4135 (Decl Summary): Document %language and %skeleton.
4136 (Command line): Document -L.
4137
4138 * examples/extexi: Rewrite %require directive.
4139 * examples/calc++/Makefile.am: Pass VERSION to extexi.
4140
4141 * src/files.c (compute_exts_from_gc): Look in language structure
4142 for .y extension.
4143 (compute_file_name_parts): Check whether .tab should be added.
4144 * src/getargs.c (valid_languages, skeleton_prio, language_prio):
4145 (language, skeleton_arg, language_argmatch): New.
4146 (long_options): Add --language.
4147 (getargs): Use skeleton_arg, add -L/--language.
4148 * src/getargs.h: Include location.h.
4149 (struct bison_language, language, skeleton_arg, language_argmatch): New.
4150 * src/output.c (prepare): Pick default skeleton from struct language.
4151 Don't dispatch C skeletons here.
4152 * src/parse-gram.y (PERCENT_LANGUAGE): New.
4153 (prologue_declaration): Add "%language" rule, use skeleton_arg.
4154 * src/scan-gram.l ("%language"): New rule.
4155
4156 * tests/calc.at: Test %skeleton and %language.
4157 * tests/local.at (AT_SKEL_CC_IF): Look for %language.
4158 (AT_GLR_IF): Look for %skeleton "glr.cc".
4159 (AT_LALR1_CC_IF, AT_GLR_CC_IF): Rewrite.
4160 (AT_YACC_IF): Reject %language.
4161
4162 2006-12-18 Paul Eggert <eggert@cs.ucla.edu>
4163
4164 * src/symtab.h (struct semantic_type): Remove the tag 'semantic_type',
4165 since it wasn't used; only the typedef name 'semantic_type' is needed.
4166 Also, omit trailing white space.
4167
4168 * bootstrap: Sync from coreutils.
4169 (gnulib_extra_files): Add build-aux/announce.gen.
4170 (slurp): Adjust .gitignore files like .cvsignore files.
4171 * build-aux/announce-gen: Remove from CVS, since bootstrap
4172 now creates this.
4173
4174 2006-12-16 Joel E. Denny <jdenny@ces.clemson.edu>
4175
4176 Make %push-parser imply %pure-parser. This fixes several bugs; see
4177 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00148.html>.
4178 * src/parse-gram.y (prologue_declaration): For %push-parser, also set
4179 pure_parser = true.
4180 * data/push.c: Don't bother testing b4_push_if when deciding whether
4181 to expand b4_declare_parser_variables globally.
4182 (yypush_parse): Likewise in here.
4183
4184 * data/push.c (yypush_parse): Add b4_parse_param to arguments.
4185 (yy_reduce_print): Reformat M4 for readability.
4186
4187 2006-12-15 Bob Rossi <bob@brasko.net>
4188 and Joel Denny <jdenny@ces.clemson.edu>
4189
4190 * data/push.c (yypstate): Add typedef, and update all uses of
4191 struct yypstate to just yypstate.
4192 * tests/calc.at (_AT_DATA_CALC_Y): Update here as well.
4193
4194 2006-12-14 Bob Rossi <bob@brasko.net>
4195
4196 * data/push.c (yypush_parse): Declare prototype regardless of
4197 %locations option.
4198
4199 2006-12-14 Bob Rossi <bob@brasko.net>
4200
4201 * data/push.c (yyparse): Remove the prototype and the #define when in
4202 push-parser mode.
4203
4204 2006-12-13 Bob Rossi <bob@brasko.net>
4205
4206 * data/push.c (yypstate_init): Rename to...
4207 (yypstate_new): ... this and use b4_c_function_def.
4208 (yypstate_delete): New.
4209 (yypush_parse): Change parameters yynval and yynlloc to be const.
4210 * tests/calc.at (_AT_DATA_CALC_Y): Use new yypstate_new and
4211 yypstate_delete functions.
4212
4213 2006-12-13 Joel E. Denny <jdenny@ces.clemson.edu>
4214
4215 * configure.ac (AC_PREREQ): Require Autoconf 2.61 because of our
4216 strange test case titles. Reported by Bob Rossi.
4217
4218 2006-12-13 Paul Eggert <eggert@cs.ucla.edu>
4219
4220 * TODO: Add pointer to Sylvain Schmitz's work on static detection
4221 of potential ambiguities in GLR grammers.
4222
4223 2006-12-12 Joel E. Denny <jdenny@ces.clemson.edu>
4224
4225 * tests/testsuite.at (AT_CHECK): When checking if $1 starts with
4226 `bison ', use m4_index instead of m4_substr since chopping up a string
4227 containing M4-special characters causes problems here.
4228
4229 Fix a couple of bugs related to special characters in user-specified
4230 file names, and make it easier for skeletons to compute output file
4231 names with the same file name prefix as Bison-computed output file
4232 names.
4233 * data/glr.cc, data/push.c, data/yacc.c: In @output, use
4234 b4_parser_file_name and b4_spec_defines_file instead of
4235 @output_parser_name@ and @output_header_name@, which are now redundant.
4236 * data/glr.c, data/lalr1.cc: Likewise. Also, in header #include's, use
4237 b4_parser_file_name, b4_spec_defines_file, and the new
4238 @basename(FILENAME@) instead of @output_parser_name@ and
4239 @output_header_name@, which inappropriately escaped the file names as
4240 C string literals.
4241 * src/files.c (all_but_ext): Remove static qualifier.
4242 (compute_output_file_names): Move `free (all_but_ext)' to...
4243 (output_file_names_free): ... here since all_but_ext is needed later.
4244 * src/files.h (all_but_ext): Extern.
4245 * src/muscle_tab.h (MUSCLE_INSERT_STRING_RAW): New macro that does
4246 exactly what MUSCLE_INSERT_STRING used to do.
4247 (MUSCLE_INSERT_STRING): Use MUSCLE_OBSTACK_SGROW so that M4-special
4248 characters are escaped properly.
4249 * src/output.c (prepare): Define muscle file_name_all_but_ext as
4250 all_but_ext.
4251 For pkgdatadir muscle, maintain previous functionality by using
4252 MUSCLE_INSERT_STRING_RAW instead of MUSCLE_INSERT_STRING. The problem
4253 is that b4_pkgdatadir is used inside m4_include in the skeletons, so
4254 digraphs would never be expanded. Hopefully no one has M4-special
4255 characters in his Bison installation path.
4256 * src/scan-skel.l: Don't parse @output_header_name@ and
4257 @output_parser_name@ anymore since they're now redundant.
4258 In @output, use decode_at_digraphs.
4259 Parse a new @basename command that invokes last_component.
4260 (decode_at_digraphs): New.
4261 (BASE_QPUTS): Remove unused.
4262 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): New macro.
4263 (Output file name): New tests.
4264
4265 2006-12-09 Joel E. Denny <jdenny@ces.clemson.edu>
4266
4267 Warn about output files that are generated by the skeletons and that
4268 conflict with other output files.
4269 * data/glr.c: Don't generate the header file here when glr.cc does.
4270 * src/files.c (file_names, file_names_count): New static globals.
4271 (compute_output_file_names): Invoke output_file_name_check for files
4272 not generated by the skeletons and remove existing checks.
4273 (output_file_name_check): New function that warns about conflicting
4274 output file names.
4275 (output_file_names_free): Free file_names.
4276 * src/files.h (output_file_name_check): Declare.
4277 * src/scan-skel.l: Invoke output_file_name_check for files generated by
4278 the skeletons.
4279 * tests/output.at (AT_CHECK_CONFLICTING_OUTPUT): New.
4280 (Conflicting output files): New tests.
4281
4282 2006-12-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4283
4284 * doc/bison.texinfo: Fix a couple of typos.
4285
4286 2006-12-08 Bob Rossi <bob@brasko.net>
4287
4288 * data/push.c: (yypvarsinit, yypvars, struct yypvars, yypushparse):
4289 Rename to...
4290 (yypstate_init, yypstate, struct yypstate, yypush_parse): ... these and
4291 update all uses.
4292 (b4_yyssa, b4_yyerror_range, yypstate_init): Rename pv to yyps.
4293 (yypush_parse): Rename yypvars argument to yyps and remove redundant
4294 local pv.
4295 (yypstate_init, yypush_parse): Declare in Bison-generated header file.
4296 * tests/calc.at (_AT_DATA_CALC_Y): Use newly named functions.
4297
4298 2006-12-07 Bob Rossi <bob@brasko.net>
4299 and Joel Denny <jdenny@ces.clemson.edu>
4300
4301 * data/push.c (yypvarsinit): Change return type from void* to struct
4302 yypvars*. No longer cast to void* on return.
4303 (struct yypvars): Remove yylen since it need not be remembered between
4304 yypushparse invocations.
4305 (yypushparse): Don't copy between yylen and pv->yylen.
4306
4307 2006-12-05 Bob Rossi <bob@brasko.net>
4308
4309 * data/push.c (yychar_set, yylval_set, yylloc_set): Delete.
4310 (yypushparse): Add yynchar, yynlval, yynlloc parameters.
4311 (b4_declare_parser_variables): Do not declare yynerrs for push mode.
4312 (struct yypvars): Remove b4_declare_parser_variables.
4313 (yypvarsinit): Remove init code for removed variables.
4314 (global scope): Do not declare b4_declare_parser_variables if
4315 push or pure mode.
4316 (yypushparse): Add b4_declare_parser_variables.
4317 Init new local variables, and remove init code for removed
4318 yypvars variables.
4319 (yyparse): Delete.
4320 * tests/calc.at (_AT_DATA_CALC_Y): Call yypushparse for push mode
4321 and yyparse for other modes.
4322 (AT_CHECK_CALC_LALR): Added '%skeleton "push.c"' for push tests.
4323 * tests/local.at (AT_PUSH_IF, AT_PURE_OR_PUSH_IF): Added.
4324 (AT_YYERROR_SEES_LOC_IF): push-parser makes this false.
4325 (AT_PURE_LEX_IF): True if pure or push parser.
4326
4327 2006-12-05 Joel E. Denny <jdenny@ces.clemson.edu>
4328
4329 Document Yacc prologue alternatives and default %destructor's and
4330 %printer's as experimental. Don't mention Java yet. Discussed at
4331 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00002.html>.
4332 * NEWS (2.3a+): Say they're experimental. Remove any mention of Java.
4333 (2.3a): Annotate this entry to say the old forms of these features were
4334 also experimental.
4335 * doc/bison.texinfo (Prologue Alternatives, Freeing Discarded Symbols,
4336 Table of Symbols): Say they're experimental. Comment out any mention
4337 of Java (we'll want this back eventually).
4338
4339 2006-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
4340
4341 Support a file name argument to %defines. Deprecate `=' in
4342 %file-prefix, %name-prefix, and %output. Discussed at
4343 <http://lists.gnu.org/archive/html/help-bison/2006-09/msg00001.html>.
4344 * NEWS (2.3a+): Mention.
4345 * doc/bison.texinfo (Decl Summary, Table of Symbols): Add entry for new
4346 form of %defines, and remove `=' from entries for %file-prefix,
4347 %name-prefix, and %output.
4348 * src/parse-gram.y (prologue_declaration): Implement.
4349 * tests/calc.at (Simple LALR Calculator, Simple GLR Calculator, Simple
4350 LALR1 C++ Calculator, Simple GLR C++ Calculator): Remove the `=' from
4351 all but one occurrence of %name-prefix.
4352 * tests/headers.at (export YYLTYPE): Remove the `=' from %name-prefix.
4353 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Likewise.
4354 * tests/output.at (AT_CHECK_OUTPUT): Remove the `=' from all but one
4355 occurrence of each of %file-prefix and %output. Add check for %defines
4356 with argument.
4357 * tests/reduce.at (Useless Terminals, Useless Nonterminals,
4358 Useless Rules, Reduced Automaton, Underivable Rules, Empty Language):
4359 Remove the `=' from %output.
4360
4361 2006-11-21 Joel E. Denny <jdenny@ces.clemson.edu>
4362
4363 Don't escape $ in test case titles since Autoconf 2.61 now does that
4364 correctly.
4365 * tests/actions.at (Default %printer and %destructor are not for error
4366 or $undefined): Here.
4367 (Default %printer and %destructor are not for $accept): Here.
4368 * tests/input.at (Invalid $n and @n): Here.
4369
4370 2006-11-20 Joel E. Denny <jdenny@ces.clemson.edu>
4371
4372 Rename <!> to <>. Discussed starting at
4373 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00039.html>.
4374 * NEWS (2.3a+): Update.
4375 * doc/bison.texinfo (Freeing Discarded Symbols, Table of Symbols):
4376 Update.
4377 * src/parse-gram.y (TYPE_TAG_NONE, generic_symlist_item): Implement.
4378 * src/scan-gram.l (INITIAL): Implement.
4379 * src/symlist.c (symbol_list_default_tagless_new): Update comment.
4380 * src/symlist.h (symbol_list, symbol_list_default_tagless_new): Update
4381 comment.
4382 * tests/actions.at (Default tagless %printer and %destructor,
4383 Default tagged and per-type %printer and %destructor,
4384 Default %printer and %destructor are not for error or $undefined,
4385 Default %printer and %destructor are not for $accept,
4386 Default %printer and %destructor for mid-rule values): Update.
4387 * tests/input.at (Default %printer and %destructor redeclared,
4388 Unused values with default %destructor): Update.
4389
4390 2006-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
4391
4392 Don't let %prec take a nonterminal.
4393 * src/reader.c (grammar_current_rule_prec_set): Make the %prec symbol a
4394 token.
4395 * tests/input.at (%prec takes a token): New test checking that %prec
4396 won't take a nonterminal.
4397
4398 2006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
4399
4400 * tests/testsuite.at (AT_CHECK): Don't miss an exit value of 0 because
4401 it was double-quoted.
4402 * src/Makefile.am (YACC): Use --warnings=all,error so that Bison's own
4403 grammar is maintained with Bison's highest standards.
4404 * src/getargs.c: Fix some typos in Doxygen comments.
4405
4406 2006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
4407
4408 Fix memory leaks in scanners generated by at least Flex 2.5.9 and
4409 later. Reported by Paul Eggert in
4410 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00014.html>.
4411 * src/flex-scanner.h (yylex_destroy): Define for Flex before 2.5.9.
4412 * src/scan-code.l (translate_action): Don't bother invoking
4413 yy_delete_buffer (YY_CURRENT_BUFFER) before creating the first buffer.
4414 (code_scanner_free): Instead of invoking
4415 yy_delete_buffer (YY_CURRENT_BUFFER) directly, invoke yylex_destroy,
4416 which frees more.
4417 * src/scan-gram.l (gram_scanner_free): Likewise.
4418 * src/scan-skel.l (scan_skel): Likewise.
4419
4420 2006-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
4421
4422 * src/files.c (tr): Change return type to void.
4423 * src/muscle_tab.c (muscle_insert): Free storage in case muscle_grow
4424 has been called previously for the same key.
4425 (muscle_find): Return storage instead of value so that
4426 --enable-gcc-warnings doesn't produce warnings that the return discards
4427 const. aver that the value and storage are the same since storage
4428 could potentially be NULL when value is not.
4429 * tests/testsuite.at (AT_CHECK): Treat an unspecified exit value the
4430 same as 0.
4431
4432 2006-11-08 Paul Eggert <eggert@cs.ucla.edu>
4433
4434 * bootstrap.conf (excluded_files): Exclude m4/codeset.m4 (undoing
4435 the earlier change today), m4/intl.m4, m4/intldir.m4. This gives
4436 us a slightly cleaner distribution, and also works.
4437 * m4/.cvsignore: Add inline.m4, wint_t.m4 to accommodate recent
4438 gnulib changes.
4439
4440 2006-11-08 Joel E. Denny <jdenny@ces.clemson.edu>
4441 and Paul Eggert <eggert@cs.ucla.edu>
4442
4443 Don't let Bison leak memory except when it complains.
4444 * src/files.h (parser_file_name, spec_verbose_file, spec_graph_file):
4445 (spec_defines_file, dir_prefix): Now char *, not const char *,
4446 since they are freed.
4447 * src/files.c: Likewise.
4448 (all_but_ext, all_but_tab_ext, src_extension, header_extension):
4449 Likewise.
4450 (tr): Now operates in-place. All uses changed.
4451 (compute_exts_from_gf, compute_exts_from_src): Don't leak temporary
4452 values.
4453 (compute_file_name_parts, compute_output_file_names): Don't store
4454 read-only data in variables that will be freed.
4455 (compute_output_file_names): Free all_but_ext, all_but_tab_ext,
4456 src_extension, and header_extension.
4457 (output_file_names_free): New public function to free
4458 spec_verbose_file, spec_graph_file, spec_defines_file,
4459 parser_file_name, and dir_prefix.
4460 * src/getargs.c (getargs): Don't store read-only data in variables that
4461 will be freed.
4462 * src/main.c (main): Invoke output_file_names_free, code_scanner_free
4463 (which previously existed but was unused), and quotearg_free.
4464 * src/muscle_tab.h (muscle_insert): value arg is now a `char const *'.
4465 * src/muscle_tab.c: Likewise.
4466 (muscle_entry): Make the value char const *,
4467 and add a new storage member that is char * and can be freed.
4468 (muscle_entry_free): New private function.
4469 (muscle_init): Use it instead of free.
4470 (muscle_insert, muscle_grow): Update and use new storage member.
4471 (muscle_code_grow): Free the string passed to muscle_grow
4472 since it's not needed anymore.
4473 * src/parse-gram.y (%union): Make `chars' member a `char const *', and
4474 add a new `char *code' member.
4475 ("{...}"): Declare semantic type as code.
4476 * src/scan-code.h (translate_rule_action):
4477 (translate_symbol_action, translate_code, translate_action): Return
4478 `char const *' rather than `char *' since external code should not free
4479 these strings.
4480 * src/scan-code.l: Likewise.
4481 * src/scan-gram.l (<SC_BRACED_CODE>): Use val->code for BRACED_CODE,
4482 which is "{...}" in the parser.
4483 * tests/Makefile.am (maintainer-check-valgrind): Set
4484 VALGRIND_OPTS='--leak-check=full --show-reacheable=yes' before invoking
4485 Valgrind.
4486 * tests/calc.at (_AT_DATA_CALC_Y): fclose the FILE* so Valgrind doesn't
4487 complain.
4488 * tests/testsuite.at (AT_CHECK): Redefine so that running Bison and
4489 expecting a non-zero exit status sets --leak-check=summary and
4490 --show-reachable=no for Valgrind. Bison unabashedly leaks memory in
4491 this case, and we don't want to hear about it.
4492
4493 2006-11-08 Paul Eggert <eggert@cs.ucla.edu>
4494
4495 * bootstrap (runtime-po/Makevars): Derive from po/Makevars
4496 instead of from the template, to simplify configuration a bit.
4497 * bootstrap.conf (excluded_files): Don't exclude m4/codeset.m4
4498 and m4/wint_t.m4, as they are needed with the latest gnulib.
4499
4500 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
4501
4502 Disable unset/unused mid-rule value warnings by default, and recognize
4503 --warnings=midrule-values to enable them. Discussed starting at
4504 <http://lists.gnu.org/archive/html/help-bison/2006-10/msg00030.html>.
4505 * NEWS (2.3a+): Mention.
4506 * src/getargs.c, src/getargs.h (warnings_args, warnings_types, enum
4507 warnings): Add entry for midrule-values subargument.
4508 * src/reader.c (symbol_should_be_used): Don't return true just because
4509 the value is a set/used mid-rule value unless
4510 --warnings=midrule-values was specified.
4511 * tests/input.at (Unused values, Unused values before symbol
4512 declarations): Run tests with and without --warnings=midrule-values.
4513
4514 * src/reader.c (check_and_convert_grammar): Use symbol_list_free rather
4515 than LIST_FREE directly.
4516
4517 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
4518
4519 Finish implementing --warnings=error, which should not be implied by
4520 --warnings=all (or by its synonyms -W and --warnings without
4521 subarguments).
4522 * src/complain.c (set_warning_issued): New function to report that
4523 warnings are being treated as errors and to record an error if so.
4524 Invoke...
4525 (warn_at, warn): ... here.
4526 * src/getargs.c (warnings_args, warnings_types): Reorder so that
4527 "error - warnings are errors" does not appear above "all - all of the
4528 above".
4529 (getargs): For -W and --warnings without subarguments, don't let
4530 FLAGS_ARGMATCH set warnings_error in warnings_flag.
4531 * src/getargs.h (enum warnings): Unset warnings_error in warnings_all.
4532
4533 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
4534
4535 * src/getargs.c (flags_argmatch): Don't cause segmentation fault for
4536 empty subargument list. For example: `bison --warnings= parser.y'.
4537
4538 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
4539
4540 * data/push.c, data/yacc.c: Make sure there's a newline at the end of
4541 the parser header file so that gcc doesn't warn.
4542
4543 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
4544
4545 Split the default %destructor/%printer into two kinds: <*> and <!>.
4546 Discussed starting at
4547 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00060.html>.
4548 * NEWS (2.3a+): Mention.
4549 * doc/bison.texinfo (Freeing Discarded Symbols): Document this and the
4550 previous change today related to mid-rules.
4551 (Table of Symbols): Remove %symbol-default and add <*> and <!>.
4552 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): Remove.
4553 (TYPE_TAG_ANY): Add as <*>.
4554 (TYPE_TAG_NONE): Add as <!>.
4555 (generic_symlist_item): Remove RHS for %symbol-default and add RHS's
4556 for <*> and <!>.
4557 * src/scan-gram.l (PERCENT_SYMBOL_DEFAULT): Remove.
4558 (TYPE_TAG_ANY, TYPE_TAG_NONE): Add.
4559 * src/symlist.c (symbol_list_default_new): Split into tagged and
4560 tagless versions.
4561 (symbol_list_destructor_set, symbol_list_printer_set): Split
4562 SYMLIST_DEFAULT case into SYMLIST_DEFAULT_TAGGED and
4563 SYMLIST_DEFAULT_TAGLESS.
4564 * src/symlist.h: Update symbol_list_default*_new prototypes.
4565 (symbol_list.content_type): Split enum value SYMLIST_DEFAULT into
4566 SYMLIST_DEFAULT_TAGGED and SYMLIST_DEFAULT_TAGLESS.
4567 * src/symtab.c (default_destructor, default_destructor_location,
4568 default_printer, default_printer_location): Split each into tagged and
4569 tagless versions.
4570 (symbol_destructor_get, symbol_destructor_location_get,
4571 symbol_printer_get, symbol_printer_location_get): Implement tagged
4572 default and tagless default cases.
4573 (default_destructor_set, default_printer_set): Split each into tagged
4574 and tagless versions.
4575 * src/symtab.h: Update prototypes.
4576 * tests/actions.at (Default %printer and %destructor): Rename to...
4577 (Default tagless %printer and %destructor): ... this, and extend.
4578 (Per-type %printer and %destructor): Rename to...
4579 (Default tagged and per-type %printer and %destructor): ... this, and
4580 extend.
4581 (Default %printer and %destructor for user-defined end token): Extend.
4582 (Default %printer and %destructor are not for error or $undefined):
4583 Update.
4584 (Default %printer and %destructor are not for $accept): Update.
4585 (Default %printer and %destructor for mid-rule values): Extend.
4586 * tests/input.at (Default %printer and %destructor redeclared): Extend.
4587 (Unused values with default %destructor): Extend.
4588
4589 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
4590
4591 Don't apply the default %destructor/%printer to an unreferenced midrule
4592 value. Mentioned at
4593 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00104.html>.
4594 * src/symtab.c (dummy_symbol_get): Name all dummy symbols initially
4595 like $@n instead of just @n so that the default %destructor/%printer
4596 logic doesn't see them as user-defined symbols.
4597 (symbol_is_dummy): Check for both forms of the name.
4598 * src/reader.c (packgram): Remove the `$' from each midrule symbol
4599 name for which the midrule value is referenced in any action.
4600 * tests/actions.at (Default %printer and %destructor for mid-rule
4601 values): New test.
4602 * tests/regression.at (Rule Line Numbers, Web2c Report): Update output
4603 for change to dummy symbol names.
4604
4605 2006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
4606
4607 Warn about unset midrule $$ if the corresponding $n is used.
4608 * src/reader.c (symbol_should_be_used): Check midrule parent rule for
4609 $n usage.
4610 (packgram): Before invoking grammar_rule_check on any rule, make sure
4611 all actions have already been scanned in order to set `used' flags.
4612 Otherwise, checking that a midrule's $$ is set will not always work
4613 properly because the midrule check must forward-reference the midrule's
4614 parent rule.
4615 * tests/input.at (AT_CHECK_UNUSED_VALUES): Extend to check the new
4616 warning.
4617
4618 2006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
4619
4620 More improvements to the documentation of the prologue alternatives:
4621 * NEWS (2.3a+): Mention the new `Prologue Alternatives' section in the
4622 Bison manual.
4623 * doc/bison.texinfo (Prologue Alternatives): Correct some errors. Add
4624 some text to clarify the relative importance of the new directives and
4625 to show how these directives may be viewed as code labels.
4626
4627 2006-10-16 Joel E. Denny <jdenny@ces.clemson.edu>
4628
4629 Similar to the recently removed %before-header, add %code-top as the
4630 alternative to the pre-prologue. Mentioned at
4631 <http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00063.html>.
4632 Also, let the prologue alternatives appear in the grammar section.
4633 * src/parse-gram.y (PERCENT_CODE_TOP): New token.
4634 (prologue_declaration): Move the existing prologue alternatives to...
4635 (grammar_declaration): ... here and add %code-top.
4636 * src/scan-gram.l (PERCENT_CODE_TOP): New token.
4637
4638 Clean up and extend documentation for the prologue alternatives.
4639 * NEWS (2.3a+): Describe prologue alternatives.
4640 * doc/bison.texinfo (Prologue): Move discussion of prologue
4641 alternatives to...
4642 (Prologue Alternatives): ... this new section, and extend it to discuss
4643 all 4 directives in detail.
4644 (Table of Symbols): Clean up discussion of prologue alternatives and
4645 add %code-top.
4646
4647 2006-10-16 Juan Manuel Guerrero <juan.guerrero@gmx.de>
4648
4649 DJGPP specific issues.
4650
4651 * djgpp/config.bat: config.hin has been moved to lib. Adjust
4652 config.bat accordingly.
4653 * djgpp/config.sed: Adjust config.sed for the use of autoconf 2.60.
4654 * djgpp/config.site: Likewise.
4655
4656 2006-10-16 Paolo Bonzini <bonzini@gnu.org>
4657
4658 Replace %*-header with %provides, %requires, %code. See discussion at
4659 http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00002.html
4660
4661 * data/bison.m4 (b4_user_requires, b4_user_provides): New.
4662 (b4_user_start_header): Remove.
4663 * data/glr.c: Use new macros instead of b4_*start_header
4664 and b4_*end_header.
4665 * data/glr.cc: Likewise.
4666 * data/lalr1.cc: Likewise.
4667 * data/push.c: Likewise.
4668 * data/yacc.c: Likewise.
4669
4670 * doc/bison.texinfo: Remove %before-header, rename
4671 %{start,end,after}-header to %requires, %provides, %code.
4672
4673 * src/parse-gram.y: Likewise (also rename token names accordingly).
4674 * src/scan-gram.l: Likewise.
4675 * tests/actions.at: Likewise.
4676
4677 2006-10-14 Paul Eggert <eggert@cs.ucla.edu>
4678
4679 * lib/Makefile.am (AM_CFLAGS): Remove $(WERROR_CFLAGS).
4680 Problem reported by Joel E. Denny.
4681
4682 2006-10-14 Jim Meyering <jim@meyering.net>
4683
4684 (Sync from coreutils.)
4685 Work also when the working directory (with e.g. coreutils sources)
4686 is version controlled with git, rather than CVS.
4687 * bootstrap (CVS_only_file): Test for the existence of README-cvs,
4688 rather than CVS.
4689 In messages and comments, say e.g., "checked-out sources",
4690 rather than "CVS sources".
4691 (version_controlled_file): New function. Work for git as well as
4692 for CVS. Don't use grep's -q option.
4693 (slurp): Call it here, in place of CVS-specific code.
4694
4695 2006-10-14 Joel E. Denny <jdenny@ces.clemson.edu>
4696
4697 Fix testsuite for ./configure --enable-gcc-warnings:
4698 * configure.ac (gcc-warnings): Move -Wall before -Wno-sign-compare.
4699 Otherwise, gcc 4.1.0 (at least) warns about sign comparisons in
4700 __AT_CHECK_PRINTER_AND_DESTRUCTOR in tests/actions.at.
4701 * test/input.at (Torturing the Scanner): #include <stdlib.h> for abort.
4702 * test/regression.at (Diagnostic that expects two alternatives):
4703 Likewise.
4704
4705 2006-10-12 Paul Eggert <eggert@cs.ucla.edu>
4706
4707 * bootstrap.conf (gnulib_modules): Add config-h.
4708 * djgpp/subpipe.c: Include <config.h> unconditionally; don't
4709 worry about HAVE_CONFIG_H.
4710 * lib/abitset.c: Likewise.
4711 * lib/bitset.c: Likewise.
4712 * lib/bitset_stats.c: Likewise.
4713 * lib/bitsetv-print.c: Likewise.
4714 * lib/bitsetv.c: Likewise.
4715 * lib/ebitset.c: Likewise.
4716 * lib/get-errno.c: Likewise.
4717 * lib/lbitset.c: Likewise.
4718 * lib/subpipe.c: Likewise.
4719 * lib/timevar.c: Likewise.
4720 * lib/vbitset.c: Likewise.
4721 * lib/bitset.c: Include "bitset.h" first, to test interface.
4722 * lib/bitset_stats.c: Include "bitset_stats.h" first.
4723 * lib/bitsetv-print.c: Include "bitsetv-print.h" first.
4724 * lib/bitsetv.c: Include "bitsetv.h" first.
4725 * lib/get-errno.c: Include "get-errno.h" first.
4726 * m4/.cvsignore: Add config-h.m4.
4727 * tests/actions.at (Default %printer and %destructor for ...):
4728 Adjust expected line numbers in output to reflect removal of #if
4729 HAVE_CONFIG_H lines.
4730 * tests/glr-regression.at (Missed %merge type warnings when ...):
4731 Likewise.
4732 * tests/regression.at (Braced code in declaration in rules section):
4733 Likewise.
4734 * tests/atlocal.in (CPPFLAGS): Don't define HAVE_CONFIG_H.
4735 * tests/local.at (AT_DATA_GRAMMAR_PROLOGUE):
4736 Include <config.h> unconditionally.
4737
4738 * bootstrap: Sync from coreutils, as follows:
4739
4740 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
4741
4742 * bootstrap (symlink_to_gnulib): Fix bug: the dot_dots shell
4743 variable was sometimes used without being initialized. This
4744 messed up the installation of the INSTALL file in some cases.
4745
4746 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
4747
4748 * bootstrap (usage, main program, symlink_to_gnulib): Add option
4749 --copy. Inspired by a suggestion from Bruno Haible.
4750
4751 2006-10-03 Jim Meyering <jim@meyering.net>
4752
4753 * bootstrap: Undo last change to this file, since now gnulib-tool
4754 sticks with the automake default in generating dependencies.
4755
4756 2006-10-12 Paul Eggert <eggert@cs.ucla.edu>
4757
4758 * configure.ac: Use AC_PROG_CC_STDC; this is more modern than
4759 the old AC_PROG_CC / AM_PROG_CC_STDC combination.
4760
4761 * doc/bison.1: Add copyright notice.
4762
4763 * data/glr.c: Don't include <stdarg.h>; not used.
4764
4765 * NEWS: The -g and --graph options now output graphs in Graphviz
4766 DOT format, not VCG format.
4767 * doc/bison.1: Likewise.
4768 * doc/bison.texinfo (Understanding, Bison Options): Likewise.
4769 * THANKS: Add Satya Kiran Popuri, who proposed the initial version
4770 of this change in
4771 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00158.html>.
4772 * TODO: Remove Graphviz entry.
4773 * src/Makefile.am (bison_SOURCES): Add graphviz.c and graphviz.h;
4774 remove vcg.c, vcg.h, vcg_defaults.h.
4775 * src/vcg.c, src/vcg.h, src/vcg_defaults.h: Remove.
4776 * src/graphviz.c, src/graphviz.h: New files.
4777 * src/files.c (compute_output_file_names): Output .dot, not .vcg.
4778 * src/files.h: Make comment more generic.
4779 * src/main.c (main): Likewise.
4780 * src/print_graph.h: Likewise.
4781 * src/getargs.c (usage): Make usage description more generic.
4782 * src/print_graph.c: Include graphviz.h rather than vcg.h.
4783 (static_graph, fgraph): Remove. All uses changed to pass
4784 arguments instead of sharing a static var.
4785 (print_core, print_actions, print_state, print_graph):
4786 Output graphviz format rather than VCG format.
4787 * tests/.cvsignore: Remove *.vcg; add *.dot.
4788 * tests/output.at: Expect *.dot files, not *.vcg files.
4789
4790 * data/Makefile.am (dist_pkgdata_DATA): Add bison.m4; this
4791 accommodates the 2006-10-08 change.
4792
4793 2006-10-11 Bob Rossi <bob@brasko.net>
4794
4795 * data/push.c (yypushparse, yypvarsinit, yypvars): Wrap in b4_push_if.
4796 (b4_yyssa, b4_yyerror_range): New macros.
4797 (struct yypvars): Remove yyssa_ptr and yyerror_range_ptr fields.
4798 (yypvarsinit): Remove init of removed fields.
4799 (yypushparse): Remove use of removed fields; use new macros instead.
4800
4801 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
4802
4803 * data/push.c (yypushparse): Fix memory leak if yymsg is malloced
4804 in a push parser. Reindent slightly to match yacc.c better.
4805
4806 2006-10-11 Bob Rossi <bob@brasko.net>
4807
4808 * data/push.c (struct yypvars): Remove yymsgbuf, yymsgbuf_ptr, yymsg,
4809 yymsg_alloc fields.
4810 (yypvarsinit, yypushparse): Remove init of removed fields.
4811 (yypushparse): Use yymsgbuf instead of yymsgbuf_ptr.
4812
4813 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
4814
4815 * THANKS: Add Paolo Bonzini and Bob Rossi.
4816
4817 2006-10-08 Paolo Bonzini <bonzini@gnu.org>
4818
4819 * data/c.m4 (b4_copyright, b4_epilogue, b4_location_initial_column,
4820 b4_location_initial_line, p4_parse_param, b4_ints_in, b4_flag_if,
4821 b4_define_flag_if and uses, b4_basename, b4_syncline, b4_user_code,
4822 b4_define_user_cde and uses): Remove.
4823 (b4_comment, b4_prefix, b4_sync_start): New.
4824 * data/bison.m4: New file, with most of the content removed from c.m4.
4825 * src/muscle_tab.h: Use "do {...} while(0)" throughout.
4826 * src/output.c (output_skeleton): Pass bison.m4.
4827 (prepare): Pass glr_flag and nondeterministic_flag. Pass prefix
4828 only if specified.
4829
4830 2006-10-05 Paul Eggert <eggert@cs.ucla.edu>
4831
4832 Fix test failure reported by Tom Lane in
4833 <http://lists.gnu.org/archive/html/bug-bison/2006-10/msg00000.html>
4834 and try to make such failures easier to catch in the future.
4835 * data/glr.c (YYTRANSLATE): Don't check for nonpositive arg;
4836 that's now the caller's responsibility.
4837 (yyprocessOneStack, yyrecoverSyntaxError, yyparse):
4838 Set yychar = YYEOF if it's negative.
4839 * tests/actions.at (yylex): Abort if asked to read past EOF.
4840 * tests/conflicts.at (yylex): Likewise.
4841 * tests/cxx-type.at (yylex): Likewise.
4842 * tests/glr-regression.at (yylex): Likewise.
4843 * tests/input.at (yylex): Likewise.
4844 * tests/regression.at (yylex): Likewise.
4845 * tests/torture.at (yylex): Likewise.
4846
4847 2006-10-01 Paul Eggert <eggert@cs.ucla.edu>
4848
4849 Fix problems with translating English-language diagnostics.
4850 * bootstrap: Fix bug introduced in recent bootstrap changes, with
4851 respect to bison-runtime pot generation. The YY_ stuff
4852 wasn't being captured.
4853 * bootstrap.conf (XGETTEXT_OPTIONS_RUNTIME): New var.
4854 * po/POTFILES.in: Add src/location.c, src/scan-code.l.
4855 * runtime-po/POTFILES.in: Add data/push.c.
4856
4857 2006-09-29 Paul Eggert <eggert@cs.ucla.edu>
4858
4859 Merge bootstrap changes from coreutils.
4860
4861 2006-09-28 Jim Meyering <jim@meyering.net>
4862
4863 Automatically generated dependencies are important even
4864 when all of the sources in a directory come from gnulib.
4865 * bootstrap (gnulib_tool): Remove the "no-dependencies" automake
4866 option that gnulib-tool adds to what becomes our lib/gnulib.mk.
4867
4868 2006-09-23 Jim Meyering <jim@meyering.net>
4869
4870 * bootstrap (gnulib_tool_options): Add "--local-dir gl".
4871
4872 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
4873
4874 * bootstrap: Add support for --force.
4875 (usage): New function. Describe usage less tersely.
4876 (CVS_only_file): New var.
4877
4878 2006-09-21 Paul Eggert <eggert@cs.ucla.edu>
4879
4880 * data/push.c (YYPUSH_MORE): Make it an enum instead.
4881 (yypushparse): Use YYPUSH_MORE instead of the mystery constant.
4882 Adjust white space and comments to match GNU style better.
4883
4884 2006-09-20 Bob Rossi <bob@brasko.net>
4885
4886 * data/push.c (yyresult_get): Remove function.
4887 (YYPUSH_MORE): Add #define.
4888 (yypushparse): Modify return value.
4889
4890 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
4891
4892 * stamp-h.in: Remove; no longer needed.
4893 * .cvsignore: Replace autom4te.cache and config.cache with *.cache.
4894 Remove config.h, config.hin, intl (no longer created).
4895 * lib/.cvsignore: Add config.h, config.hin, configmake.h, inttypes.h,
4896 stamp-h1.
4897
4898 Sync bootstrap from coreutils, as follows:
4899
4900 2006-09-18 Paul Eggert <eggert@cs.ucla.edu>
4901
4902 * bootstrap (symlink_to_gnulib): New function.
4903 (cp_mark_as_generated): Use it, to prefer symlinks-to-gnulib
4904 to copies-of-gnulib.
4905 (cp_mark_as_generated, slurp, gnulib_files):
4906 Avoid making a copy if it's the same as the old version.
4907 (gnulib_files): Add support for this variable (used by Bison).
4908
4909 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
4910
4911 * src/getargs.c (usage): Rework to use conventions similar to
4912 coreutils, to make translation a bit easier and the code a bit
4913 smaller. Problem reported by Tim Van Holder.
4914
4915 2006-09-15 Paul Eggert <eggert@cs.ucla.edu>
4916
4917 Use some of gnulib's new modules, taken from coreutils.
4918
4919 * bootstrap: Sync from coreutils, except add support for gnulib_files.
4920 * bootstrap.conf: New file.
4921 (gnulib_modules): Add configmake, inttypes, unistd.
4922 (XGETTEXT_OPTIONS): Add complain, complain_at,
4923 fatal, fatal_at, warn, warn_at, unexpected_end.
4924 * configure.ac (AC_CONFIG_HEADERS): config.h is now in lib, not here.
4925 (gl_USE_SYSTEM_EXTENSIONS): Remove; gl_EARLY now does this.
4926 (gl_EARLY): Add.
4927 (AM_STDBOOL_H): Remove; gl_INIT now dows this.
4928 (gl_INIT): Add
4929 (GNULIB_AUTOCONF_SNIPPET): Remove.
4930 (AM_GNU_GETTEXT): Add; require formatstring macros since that's
4931 the pickiest.
4932 * lib/.cvsignore: Add inttypes_.h.
4933 * lib/Makefile.am: Include gnulib.mk first so we can append to it.
4934 (AM_CFLAGS): Add WERROR_CFLAGS, to be more like coreutils.
4935 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES): Remove
4936 no-longer-necessary initializations.
4937 (lib_SOURCES): Remove, replacing by libbison_a_SOURCES.
4938 * lib/subpipe.c: Include <unistd.h> unconditionally, now that we
4939 use the unistd module.
4940 * src/system.h: Likewise.
4941 * m4/.cvsignore: Remove *_gl.m4, gnulib.m4, inttypes_h.m4, uintmax_t.m4,
4942 ulonglong.m4. Add gettext.m4, gnulib-cache.m4, gnulib-comp.m4,
4943 gnulib-tool.m4, inttypes-h.m4, inttypes-pri.m4, inttypes.m4.
4944 * src/Makefile.am (DEFS): Remove, since configmake does this for us.
4945 (AM_CPPFLAGS): Remove -I../lib, since Automake does that for us.
4946 * src/system.h: Include inttypes.h unconditionally, now that we
4947 use the inttypes module. Don't bother to include stdint.h, since
4948 inttypes.h now does that for us.
4949 (LOCALEDIR): Remove, now that we use the configmake module.
4950 * src/getargs.c: Include configmake.h.
4951 * src/main.c: Likewise.
4952 * src/output.c: Likewise.
4953 * tests/atlocal.in (CPPFLAGS): Include from $abs_top_builddir/lib,
4954 not from $abs_top_builddir, since config.h moved.
4955
4956
4957 Port to GCC 2.95. First two problems reported by Michael Deutschmann in
4958 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00018.html>.
4959
4960 * src/parse-gram.y (symbol_declaration): Don't put statements
4961 before declarations; it's not portable to C89.
4962 * src/scan-code.l (handle_action_at): Likewise.
4963
4964 * src/scan-code.l: Always initialize braces_level; the old code
4965 left it uninitialized and therefore had undefined behavior.
4966
4967 Don't attempt to redefine 'assert', since it runs afoul of
4968 systems where standard headers (mistakenly) include <assert.h>.
4969 Instead, define and use our own alternative, called 'aver'.
4970 * src/reader.c: Don't include assert.h, since we no longer
4971 use assert.
4972 * src/scan-code.l: Likewise.
4973 * src/system.h (assert): Remove, replacing with....
4974 (aver): New function, taking a bool arg. All uses changed.
4975 * src/tables.c (pack_vector): Ensure that aver arg is bool,
4976 not merely an integer.
4977
4978 2006-09-15 Bob Rossi <bob@brasko.net>
4979
4980 * data/Makefile.am (dist_pkgdata_DATA): Add push.c.
4981 * data/c.m4 (YYPUSH): New.
4982 (b4_push_if): New macro. Use it instead of #ifdef YYPUSH.
4983 * src/getargs.c (push_parser): New var.
4984 * src/getargs.h (push_parser): New declaration.
4985 * src/output.c (prepare): Add macro insertion of `push_flag'.
4986 * src/parse-gram.y (PERCENT_PUSH_PARSER): New token.
4987 (prologue_declaration): Parse %push-parser.
4988 * src/scan-gram.l: Scan new PERCENT_PUSH_PARSER token.
4989 * tests/calc.at (_AT_CHECK_CALC_ERROR): Add "Return" and "Now" to
4990 list of removed lines from the traces observed.
4991 (AT_CHECK_CALC_LALR): Added push parser tests.
4992
4993 2006-09-13 Paul Eggert <eggert@cs.ucla.edu>
4994
4995 * NEWS: Version 2.3a.
4996 * configure.ac (AC_INIT): Likewise.
4997
4998 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Remove
4999 "#define YYSTYPE int" that caused "make maintainer-check" to fail
5000 due to header ordering dependencies. I don't know why the #define
5001 was there.
5002
5003 Fix glr.cc and lalr1.cc's use of YYDEBUG so that there's zero
5004 runtime cost when YYDEBUG is not defined, and so that some tests
5005 that used to fail now work. Problem and initial suggestion by
5006 Paolo Bonzini.
5007 * data/c++.m4 (b4_parse_param_cons): Omit leading ','.
5008 * data/glr.cc (b4_parser_class_name):
5009 Initialize yycdebug_ only if YYDEBUG. Also, initialize yydebug_.
5010 (debug_level, set_debug_level): Affect yydebug_, not ::yydebug.
5011 (yydebug_) [YYDEBUG]: New member.
5012 (yycdebug_): Now defined only if YYDEBUG.
5013 * data/lalr1.cc (yydebug_, yycdebug_): Now defined only if YYDEBUG.
5014 (YYCDEBUG) [!YYDEBUG]: Don't use yydebug_ and yycdebug_.
5015 (b4_parser_class_name): Initialize yydebug_ and yycdebug_ only
5016 if YYYDEBUG.
5017 (debug_stream, set_debug_stream, debug_level, set_debug_level):
5018 Define only if YYDEBUG.
5019 * tests/calc.at (_AT_DATA_CALC_Y) [!YYDEBUG]: Omit call to
5020 set_debug_level.
5021 * tests/regression.at (_AT_DATA_DANCER_Y) [!YYDEBUG]: Likewise.
5022 * tests/calc.at (AT_CHECK_CALC_GLR_CC): Uncomment calls to
5023 AT_CHECK_CALC_GLR_CC that are working now.
5024
5025 2006-09-12 Paul Eggert <eggert@cs.ucla.edu>
5026
5027 * data/glr.cc (YYERROR_VERBOSE, YYTOKEN_TABLE): Remove.
5028 We don't need them in glr.cc, and glr.c defines them.
5029 Defining YYERROR_VERBOSE to 0 here breaks glr.c, since glr.c
5030 assumes that defining it to anything is the same as defining
5031 it to 1. Problem reported by Paolo Bonzini.
5032
5033 2006-09-12 Paolo Bonzini <bonzini@gnu.org> (tiny change)
5034
5035 * data/c.m4 (b4_null, b4_case): Define.
5036 * src/output.c (prepare_symbols): Use b4_null.
5037 (user_actions_output): Use b4_case.
5038
5039 2006-09-11 Paul Eggert <eggert@cs.ucla.edu>
5040
5041 * data/glr.c (b4_shared_declarations): Put start-header first,
5042 before any #includes that we generate, so that feature-test
5043 macros work. Problem reported by Michael Deutschmann in
5044 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00004.html>.
5045 * data/lalr1.cc: Likewise.
5046 * doc/bison.texinfo (Prologue): Document that feature-test macros
5047 should be defined before any Bison declarations.
5048 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Put defns
5049 that depend on location.hh after, not before, Bison decls, since
5050 we now include location.hh after the first user prologue.
5051
5052 * doc/bison.texinfo (Calc++ Parser): Fix memory leak reported by
5053 Sander Brandenburg in
5054 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00002.html>.
5055 Also, fix minor white space and comment issues.
5056 (Prologue): Mention that it's better to define feature-test macros
5057 before Bison declarations. Problem reported by Michael Deutschmann.
5058
5059 * README-cvs: Fix typo: "&" should be "&&". Problem reported
5060 by Jim Meyering.
5061 * m4/.cvsignore: Add argmatch.m4. Remove obstack.m4, strerror_r.m4.
5062 This adjusts to recent gnulib changes.
5063
5064 2006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
5065
5066 Finish implementation of per-type %destructor/%printer. Discussed
5067 starting at
5068 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>
5069 and
5070 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>.
5071 * NEWS (2.3+): Add a description of this feature to the default
5072 %destructor/%printer description.
5073 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise.
5074 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
5075 Invoke semantic_type_destructor_set or semantic_type_printer_set when a
5076 list node contains a semantic type.
5077 * src/symtab.c, src/symtab.h: Extend with a table that associates
5078 semantic types with their %destructor's and %printer's.
5079 (semantic_type_from_uniqstr, semantic_type_get,
5080 semantic_type_destructor_set, semantic_type_printer_set): New functions
5081 composing the public interface of that table.
5082 (symbol_destructor_get, symbol_destructor_location_get,
5083 symbol_printer_get, symbol_printer_location_get): If there's no
5084 per-symbol %destructor/%printer, look up the per-type before trying
5085 the default.
5086 * tests/actions.at (Per-type %printer and %destructor): New test case.
5087 * tests/input.at (Default %printer and %destructor redeclared):
5088 Extend to check that multiple occurrences of %symbol-default in a
5089 single %destructor/%printer declaration is an error.
5090 (Per-type %printer and %destructor redeclared, Unused values with
5091 per-type %destructor): New test cases.
5092
5093 2006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
5094
5095 Require default %destructor/%printer to be declared using
5096 %symbol-default instead of an empty symbol list, and start working on
5097 new per-type %destructor/%printer. Discussed at
5098 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00007.html>.
5099 * NEWS (2.3+): Add %symbol-default to example.
5100 * bison.texinfo (Freeing Discarded Symbols): Likewise.
5101 (Table of Symbols): Add entry for %symbol-default.
5102 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): New token.
5103 (generic_symlist, generic_symlist_item): New nonterminals for creating
5104 a list in which each item is a symbol, semantic type, or
5105 %symbol-default.
5106 (grammar_declaration): Use generic_symlist in %destructor and %printer
5107 declarations instead of symbols.1 or an empty list.
5108 (symbol_declaration, precedence_declaration, symbols.1): Update actions
5109 for changes to symbol_list.
5110 * src/reader.c: Update for changes to symbol_list.
5111 * src/scan-code.l: Likewise.
5112 * src/scan-gram.l: Scan new PERCENT_SYMBOL_DEFAULT token.
5113 * src/symlist.c, src/symlist.h: Extend such that a list node may
5114 represent a semantic type or a %symbol-default in addition to just an
5115 ordinary symbol. Add switched functions for setting %destructor's and
5116 %printer's.
5117 * tests/actions.at, tests/input.at: Add %symbol-default to all default
5118 %destructor/%printer declarations.
5119
5120 2006-08-23 Joel E. Denny <jdenny@ces.clemson.edu>
5121
5122 Whether the default %destructor/%printer applies to a particular symbol
5123 isn't a question of whether the user *declares* that symbol (in %token,
5124 for example). It's a question of whether the user by any means
5125 *defines* the symbol at all (by simply using a char token, for
5126 example). $end is defined by Bison whereas any other token with token
5127 number 0 is defined by the user. The error token is always defined by
5128 Bison regardless of whether the user declares it with %token, but we
5129 may one day let the user define error as a nonterminal instead.
5130 * NEWS (2.3+): Say "user-defined" instead of "user-declared".
5131 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise, and document
5132 the meaning of "user-defined".
5133 * tests/actions.at (Default %printer and %destructor for user-declared
5134 end token): Rename to...
5135 (Default %printer and %destructor for user-defined end token): ...
5136 this.
5137
5138 * src/symtab.c (symbol_destructor_get, symbol_printer_get): In the
5139 computation of whether to apply the default, don't maintain a list of
5140 every Bison-defined symbol. Instead, just check for a first character
5141 of '$', which a user symbol cannot have, and check for the error token.
5142
5143 2006-08-21 Joel E. Denny <jdenny@ces.clemson.edu>
5144
5145 Don't apply the default %destructor or %printer to the error token,
5146 $undefined, or $accept. This change fits the general rule that the
5147 default %destructor and %printer are only for user-declared symbols,
5148 and it solves several difficulties that are described in the new test
5149 cases listed below.
5150 * src/symtab.c (symbol_destructor_get, symbol_printer_get): Implement.
5151 * tests/actions.at (Default %printer and %destructor are not for error
5152 or $undefined, Default %printer and %destructor are not for $accept):
5153 New test cases.
5154
5155 2006-08-19 Joel E. Denny <jdenny@ces.clemson.edu>
5156
5157 Allow %start after the first rule.
5158 * src/reader.c (grammar_current_rule_begin): Don't set the start symbol
5159 when parsing the first rule.
5160 (check_and_convert_grammar): Search for it here after all grammar
5161 declarations have been parsed. Skip midrules, which have dummy LHS
5162 nonterminals.
5163 * src/symtab.c (symbol_is_dummy): New function.
5164 * src/symtab.h (symbol_is_dummy): Declare it.
5165 * tests/input.at (%start after first rule): New test.
5166
5167 2006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
5168
5169 Redo some of the previous commit: add back the ability to use
5170 non-aliased/undeclared string literals since it might be useful to
5171 those declaring %token-table.
5172 * src/reader.c (check_and_convert_grammar): Undo changes in previous
5173 commit: don't worry about complaints from symbols_pack.
5174 * src/symtab.c (symbol_new, symbol_class_set,
5175 symbol_check_alias_consistency): Undo changes in previous commit: count
5176 each string literal as a new symbol and token, assign it a symbol
5177 number, and don't complain about non-aliased string literals.
5178 (symbols_pack): Since symbol_make_alias still does not decrement symbol
5179 and token counts but does still set aliased tokens to the same number,
5180 symbol_pack_processor now leaves empty slots in the symbols array.
5181 Remove those slots.
5182 * tests/regression.at (Undeclared string literal): Remove test case
5183 added in previous commit since non-aliased string literals are allowed
5184 again.
5185 (Characters Escapes, Web2c Actions): Undo changes in previous commit:
5186 remove unnecessary string literal declarations.
5187 * tests/sets.at (Firsts): Likewise.
5188
5189 2006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
5190
5191 Don't allow an undeclared string literal, but allow a string literal to
5192 be used before its declaration.
5193 * src/reader.c (check_and_convert_grammar): Don't invoke packgram if
5194 symbols_pack complained.
5195 * src/symtab.c (symbol_new): Don't count a string literal as a new
5196 symbol.
5197 (symbol_class_set): Don't count a string literal as a new token, and
5198 don't assign it a symbol number since symbol_make_alias does that.
5199 (symbol_make_alias): It's not necessary to decrement the symbol and
5200 token counts anymore. Don't assume that an alias declaration occurs
5201 before any uses of the identifier or string, and thus don't assert that
5202 one of them has the highest symbol number so far.
5203 (symbol_check_alias_consistency): Complain if there's a string literal
5204 that wasn't declared as an alias.
5205 (symbols_pack): Bail if symbol_check_alias_consistency failed since
5206 symbol_pack asserts that every token has been assigned a symbol number
5207 although undeclared string literals have not.
5208 * tests/regression.at (String alias declared after use, Undeclared
5209 string literal): New test cases.
5210 (Characters Escapes, Web2c Actions): Declare string literals as
5211 aliases.
5212 * tests/sets.at (Firsts): Likewise.
5213
5214 2006-08-14 Joel E. Denny <jdenny@ces.clemson.edu>
5215
5216 In the grammar scanner, STRING_FINISH unclosed constructs and return
5217 them to the parser in order to improve error messages.
5218 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER,
5219 SC_BRACED_CODE, SC_PROLOGUE): Implement.
5220 * tests/input.at (Unclosed constructs): New test case.
5221 * tests/regression.at (Invalid inputs): Update now that unclosed %{ is
5222 seen.
5223
5224 * src/scan-gram.h, src/scan-gram.l (gram_last_braced_code_loc): Remove
5225 unused global.
5226
5227 2006-08-13 Joel E. Denny <jdenny@ces.clemson.edu>
5228
5229 Handle string aliases for character tokens correctly.
5230 * src/symtab.c (symbol_user_token_number_set): If the token has an
5231 alias, check and set its alias's user token number instead of its own,
5232 which is set to indicate the alias. Previously, every occurrence of
5233 the character token in the grammar overwrote that alias indicator with
5234 the character code.
5235 * tests/input.at (String aliases for character tokens): New test.
5236
5237 2006-08-12 Joel E. Denny <jdenny@ces.clemson.edu>
5238
5239 * src/parse-gram.y: Add `%expect 0' so we don't overlook conflicts.
5240
5241 2006-08-11 Paul Eggert <eggert@cs.ucla.edu>
5242
5243 * bootstrap: Put in need-ngettext argument to AM_GNU_GETTEXT,
5244 to prevent failures when building on older platforms.
5245 Check for autopoint failure.
5246 Set XGETTEXT_OPTIONS to values that check for C format strings,
5247 so that translators are warned about them (this also helps
5248 prevent core dumps).
5249
5250 * lib/subpipe.c (create_subpipe): Use new gnulib pipe_safer
5251 function, since it simplifies our code a bit.
5252
5253 * configure.ac (AC_ARG_ENABLE): Use -Wextra -Wno-sign-compare
5254 rather than -W, so we don't get bogus warnings about sign comparisons.
5255 Add -Wpointer-arith, since that warning is useful (it reports code
5256 that does not conform to C89 and that some compilers reject).
5257 * data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c: Undo latest change,
5258 since it's no longer needed.
5259
5260 2006-08-10 Joel E. Denny <jdenny@ces.clemson.edu>
5261
5262 Clean up scanners a bit.
5263 * src/flex-scanner.h (FLEX_NO_OBSTACK): New macro that blocks obstack
5264 definitions so gcc won't warn when obstack_for_string is unused.
5265 * src/scan-code.l: config.h and system.h are already #include'd by
5266 scan-code-c.c, so get rid of them here.
5267 * src/scan-gram.l: Likewise.
5268 * src/scan-skel.l: Likewise, and use flex-scanner.h without obstack
5269 definitions rather than duplicating the rest of it.
5270 * src/scan-gram-c.c, scan-skel-c.c: #include "system.h".
5271
5272 2006-08-09 Joel E. Denny <jdenny@ces.clemson.edu>
5273
5274 Suppress signed/unsigned comparison warnings for yycheck.
5275 * data/c.m4 (b4_safest_int_type): New macro.
5276 * data/glr.c, data/lalr1.cc: Wherever you compare yycheck[i] against
5277 a signed int type, cast it to b4_safest_int_type first.
5278 * data/yacc.c: Likewise.
5279 (b4_safest_int_type): Overwrite the one from c.m4 since b4_int_type is
5280 also overwritten.
5281
5282 2006-08-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> (tiny change)
5283
5284 * doc/bison.texinfo: Fix some typos.
5285
5286 2006-08-02 Paul Eggert <eggert@cs.ucla.edu>
5287
5288 * m4/.cvsignore: Add inttypes_h.m4,lib-ld.m4, lib-prefix.m4,
5289 po.m4, stdint_h.m4, uintmax_t.m4, ulonglong.m4, warning.m4.
5290
5291 * bootstrap (gnulib_tool): Stop using --assume-autoconf;
5292 the latest gnulib does this a different way.
5293 (get_translations): Sharuzzaman Ahmat Raslan reported that the ms
5294 translation was patched, so stop omitting it.
5295
5296 2006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
5297
5298 Enable declaration of default %printer/%destructor. Make the parser
5299 use these for all user-declared grammar symbols for which the user does
5300 not declare a specific %printer/%destructor. Thus, the parser uses it
5301 for token 0 if the user declares it but not if Bison generates it as
5302 $end. Discussed starting at
5303 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>,
5304 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>,
5305 and
5306 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>.
5307 * NEWS (2.3+): Mention.
5308 * doc/bison.texinfo (Actions in Mid-Rule): It's no longer impossible to
5309 declare a %destructor for a mid-rule's semantic value. It's just
5310 impossible to declare one specific to it.
5311 (Freeing Discarded Symbols): Mention that @$ can be used in %destructor
5312 code. Describe default %destructor form.
5313 * src/parse-gram.y (grammar_declaration): Parse default
5314 %printer/%destructor declarations.
5315 * src/output.c (symbol_destructors_output): Use symbol_destructor_get
5316 and symbol_destructor_location_get rather than accessing the destructor
5317 and destructor_location members of struct symbol.
5318 (symbol_printers_output): Likewise but for %printer's.
5319 * src/reader.c (symbol_should_be_used): Likewise but for %destructor's
5320 again.
5321 * src/symtab.c (default_destructor, default_destructor_location,
5322 default_printer, default_printer_location): New static global
5323 variables to record the default %destructor and %printer.
5324 (symbol_destructor_get, symbol_destructor_location_get,
5325 symbol_printer_get, symbol_printer_location_get): New functions to
5326 compute the appropriate %destructor and %printer for a symbol.
5327 (default_destructor_set, default_printer_set): New functions to set the
5328 default %destructor and %printer.
5329 * src/symtab.h: Prototype all those new functions.
5330 * tests/actions.at (Default %printer and %destructor): New test to
5331 check that the right %printer and %destructor are called, that they're
5332 not called for $end, and that $$ and @$ work correctly.
5333 (Default %printer and %destructor for user-declared end token): New
5334 test to check that the default %printer and %destructor are called for
5335 a user-declared end token.
5336 * tests/input.at (Default %printer and %destructor redeclared, Unused
5337 values with default %destructor): New tests to check related grammar
5338 warnings and errors.
5339
5340 2006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
5341
5342 Clean up handling of %destructor for the end token (token 0).
5343 Discussed starting at
5344 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>
5345 and
5346 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00013.html>.
5347
5348 Make the skeletons consistent in how they pop the end token and invoke
5349 its %destructor.
5350 * data/glr.c (yyrecoverSyntaxError, yyparse): Don't pop the start
5351 state, which has token number 0, since this would invoke the
5352 %destructor for the end token.
5353 * data/lalr1.cc (yy::parser::parse): Don't check for the final state
5354 until after shifting the end token, or else it won't be popped.
5355 * data/yacc.c (yyparse): Likewise.
5356
5357 * data/glr.c (yyparse): Clear the lookahead after shifting it even when
5358 it's the end token. Upon termination, destroy an unshifted lookahead
5359 even when it's the end token.
5360 * data/lalr1.cc (yy::parser::parse): Likewise.
5361 * data/yacc.c (yyparse): Likewise.
5362
5363 * src/reader.c (packgram): Don't check rule 0. This suppresses unused
5364 value warnings for the end token when the user gives the end token a
5365 %destructor.
5366
5367 * tests/actions.at (Printers and Destructors): Test all the above.
5368
5369 2006-07-24 Paul Eggert <eggert@cs.ucla.edu>
5370
5371 Update to latest gnulib and gettext versions.
5372 * bootstrap (gnulib-modules): Remove hard-locale, stdio-safer.
5373 Add fopen-safer.
5374 (gnulib_files): Add m4/warning.m4. Don't worry about files
5375 overwritten by autopoint.
5376 Replace gt_INTL_SUBDIR_CORE with an empty body in m4/gettext_gl.m4.
5377 Suppress "id", "ms", "tr" translations for now, since gettext 0.15
5378 rejects them.
5379 Don't use autoreconf; instead, invoke autopoint etc. by hand,
5380 so that we can remove the intl files at a better time.
5381 (intl_files_to_remove): Remove aclocal.m4, since it gets
5382 rebuilt anyway. Remove m4/inttypes_h.m4, m4/inttypes.m4,
5383 m4/isc-posix.m4, m4/lib-ld.m4, m4/lib-prefix.m4, m4/po.m4,
5384 m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
5385 Add m4/inttypes-h.m4, m4/lock.m4, m4/visibility.m4.
5386 Remove datarootdir hack; no longer needed.
5387 * configure.ac: Use gl_WARNING_CFLAGS rather than BISON_WARNING.
5388 (AM_GNU_GETTEXT_VERSION): Bump from 0.12 to 0.15.
5389 * lib/.cvsignore: Remove hard-locale.c, hard-locale.h, strdup.c,
5390 strdup.h.
5391 * m4/.cvsignore: Remove hard-locale.m4, strdup.m4.
5392 * m4/warning.m4: Remove from CVS, since we now use gnulib's version.
5393
5394 2006-07-20 Paul Eggert <eggert@cs.ucla.edu>
5395
5396 * bootstrap: Adjust to today's change to gnulib-tool by invoking
5397 it with --assume-autoconf='latest-stable'.
5398
5399 2006-07-13 Joel E. Denny <jdenny@ces.clemson.edu>
5400
5401 * src/parse-gram.y (grammar_declaration): Don't confuse Doxygen (at
5402 least 1.4.7 and 1.4.4) by putting a #line between `typedef union
5403 YYSTYPE' and `{'.
5404 * src/muscle_tab.h (muscle_grow): Replace the header comments with
5405 those from muscle_tab.c since the old ones are misleading.
5406
5407 2006-07-13 Akim Demaille <akim@epita.fr>
5408
5409 Support %define "KEY" {VALUE}.
5410 * src/scan-code.h, src/scan-code.l (translate_action)
5411 (translate_rule_action, translate_symbol_action, translate_code):
5412 Return char *, not const char *.
5413 * src/parse-gram.y (declaration): Rename as...
5414 (prologue_declaration): this.
5415 (string_content): Remove this nonterminal, use STRING.
5416 (braceless, content, content.opt): New nonterminal.
5417 Use them.
5418 (%define): Now accept content.opt, i.e., accept also BRACED_CODE
5419 as value.
5420 * src/scan-gram.l (getargs.h): Don't include it.
5421
5422 2006-07-12 Paul Eggert <eggert@cs.ucla.edu>
5423
5424 * data/lalr1.cc (YYCDEBUG): Use 'if (yydebug_) (*yycdebug_)'
5425 rather than a for-loop that declares a local bool variable. This
5426 should work around a compatibility problem with a Cray x1e C++
5427 compiler reported by Hung Nguyen in
5428 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00022.html>.
5429 The for-loop was introduced in the 2004-11-17 change but I don't
5430 know why it was needed.
5431
5432 2006-07-12 Akim Demaille <akim@epita.fr>
5433
5434 * data/c.m4: Comment changes.
5435
5436 2006-07-10 Akim Demaille <akim@lrde.epita.fr>
5437
5438 * src/complain.c (error_message, ERROR_MESSAGE): New.
5439 To factor...
5440 (fatal_at, fatal, warn_at, warn, complain_at, complain): these.
5441 * src/complain.h, src/complain.c (warning_issued): Remove, unused.
5442
5443 2006-07-09 Paul Eggert <eggert@cs.ucla.edu>
5444
5445 * NEWS: Instead of %union, you can define and use your own union type
5446 YYSTYPE if your grammar contains at least one <type> tag.
5447 Your YYSTYPE need not be a macro; it can be a typedef.
5448 * doc/bison.texinfo (Value Type, Multiple Types, Location Type):
5449 (Union Decl, Decl Summary): Document this.
5450 * data/glr.c (YYSTYPE): Implement this.
5451 * data/glr.cc (YYSTYPE): Likewise.
5452 * data/lalr1.cc (YYSTYPE): Likewise.
5453 * data/yacc.c (YYSTYPE): Likewise.
5454 * src/output.c (prepare): Output tag_seen_flag.
5455 * src/parse-gram.y (declaration, grammar_declaration):
5456 Use 'union_seen' rather than 'typed' to determine whether
5457 %union has been seen, since grammars can now be typed without
5458 %union.
5459 (symbol_declaration, type.opt, symbol_def):
5460 Keep track of whether a tag has been seen.
5461 * src/reader.c (union_seen, tag_seen): New vars.
5462 (typed): remove.
5463 * src/reader.h (union_seen, tag_seen, typed): Likewise.
5464 * src/scan-code.l (untyped_var_seen): New variable.
5465 (handle_action_dollar): Adjust to above changes.
5466 (handle_action_dollar, handle_action_at):
5467 Improve overflow checking for outlandish numbers.
5468 * tests/input.at (AT_CHECK_UNUSED_VALUES): Redo test to
5469 avoid new diagnostics generated by above changes.
5470 * tests/regression.at (YYSTYPE typedef): Add test to check
5471 for type tags without %union.
5472
5473 * src/symlist.c (symbol_list_length): Return int, not unsigned
5474 int, since callers expect int. This may need to get revisited
5475 once we have proper integer overflow checking.
5476
5477 * src/scan-gram.h (gram_scanner_cursor): Remove decl, since this
5478 object is now static.
5479
5480 * src/getargs.c (flags_argmatch): Return void, not int,
5481 to pacify ./configure --enable-gcc-warnings.
5482
5483 * src/flex-scanner.h (STRING_FREE): Don't use FLEX_PREFIX (last_string)
5484 since last_string is already defined to FLEX_PREFIX (last_string).
5485
5486 2006-07-09 Akim Demaille <akim@lrde.epita.fr>
5487
5488 Implement --warnings/-W.
5489 * src/getargs.c (report_argmatch, trace_argmatch): Remove,
5490 replaced by...
5491 (flags_argmatch, FLAGS_ARGMATCH): this new function and macro.
5492 Adjust callers.
5493 * src/getargs.h, src/getargs.c (warnings, warnings_flags)
5494 (warnings_args, warnings_types): New.
5495 (getargs, short_options, long_options): Accept -W/--warnings.
5496 Sort the options by alphabetical order, upper case letter right
5497 before its lower case.
5498
5499 2006-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
5500
5501 Change %merge result type clash warnings to errors. Discussed at
5502 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00026.html>.
5503 * src/reader.c (record_merge_function_type): Use complain_at.
5504 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
5505 declared later): Update test case results.
5506
5507 2006-07-09 Akim Demaille <akim@lrde.epita.fr>
5508
5509 * src/getargs.h, src/getargs.c: Swap --report and --trace handling
5510 to be in alphabetical order.
5511 (trace_args): Spelling fixes.
5512
5513 2006-07-09 Paul Eggert <eggert@cs.ucla.edu>
5514
5515 * data/yacc.c (YYID, yy_stack_print): Prefix local vars with "yy"
5516 so they don't collide with user-defined macros.
5517 (yy_stack_print): Don't assume that yytype_int16 promotes to int;
5518 this was never guaranteed, and now that we're using gnulib stdint,
5519 which defines int_fast16_t to long int, the problem is exposed.
5520
5521 2006-07-08 Paul Eggert <eggert@cs.ucla.edu>
5522
5523 * data/c.m4 (b4_basename): Simplify a bit, since we don't
5524 need the full POSIX semantics (and weren't implementing them
5525 anyway).
5526
5527 Adjust to Autoconf 2.60 and today's gnulib.
5528 * bootstrap (gnulib_modules): Add stdint.
5529 Remove special case for m4/onceonly_2_57.m4, since gnulib-tool
5530 no longer copies it.
5531 (intl_files_to_remove): Remove m4/longlong.m4 and m4/wchar_t.m4,
5532 since stdint needs the former and wcwidth (which is now required
5533 by mbswidth) needs the latter.
5534 Append 'datarootdir = @datarootdir@' to po/Makefile.in.in, to
5535 work around a compatibility glitch between gettext 0.14.6 and
5536 Autoconf 2.60.
5537 * configure.ac (AC_PREREQ): Require Autoconf 2.60.
5538 Do not check for uintptr_t, since new stdint module does the right
5539 thing.
5540 * lib/.cvsignore: Remove alloca.c, alloca.h, alloca_.h.
5541 Add stdint.h, stdint_.h, wcwidth.h.
5542 * m4/.cvsignore: Remove alloca.m4, onceonly.m4.
5543 Add absolute-header.m4, double-slash-root.m4, longlong.m4,
5544 stdint.m4, wchar_t.m4, wcwidth.m4.
5545 * src/files.c: Include <dirname.h> and <stdio-safer.h> in the
5546 usual order for ../lib/*.h files.
5547 (file_name_split): Use last_component, not base_name, to adjust
5548 to gnulib changes.
5549 * src/parse-gram.h: Include <strverscmp.h> in the usual order
5550 for ../lib/*.h files.
5551 (YYTYPE_INT16, YYTYPE_INT8, YYTYPE_UINT16, YYTYPE_UINT8):
5552 Define unconditionally, since we now assume the stdint module.
5553 * src/scan-skel.l: Include <dirname.h>.
5554 (BASE_QPUTS): Use last_component, not base_name.
5555 * src/system.h: Include <unlocked-io.h> in the usual order
5556 for ../lib/*.h files. Include <stdint.h> unconditionally,
5557 since we now use the stdint module.
5558 (uintptr_t): Declare if UINTPTR_MAX is not defined, not
5559 HAVE_UINTPTR_T, since we now use the stdint module.
5560 (base_name): Remove decl, since files now include <dirname.h>
5561 to get the decl.
5562
5563 2006-07-08 Akim Demaille <akim@lrde.epita.fr>
5564
5565 * data/c.m4 (b4_location_initial_column, b4_location_initial_line):
5566 New, default to 1.
5567 * data/yacc.c, data/glr.c, data/location.cc: Use them.
5568 * NEWS, doc/bison.texinfo: The initial column and line are 1 by
5569 default.
5570 * tests/calc.at: Adjust.
5571
5572 2006-07-08 Akim Demaille <akim@lrde.epita.fr>
5573
5574 * data/c.m4 (b4_basename): New.
5575 (b4_syncline): Also output the location of its invocation (from
5576 the skeleton).
5577 (b4_user_action, b4_define_user_action, b4_user_actions)
5578 (b4_user_initial_action, b4_user_post_prologue, b4_user_start_header)
5579 (b4_user_stype): New.
5580 * data/yacc.c, data/glr.c, data/lalr1.cc, data/glr.cc: Use them.
5581
5582 2006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
5583
5584 In the grammar file, the first column is 1 not 0 on the first line as
5585 on every other line.
5586 * src/parse-gram.y (%initial-action): Initialize @$ correctly.
5587 * tests/input.at (Torturing the Scanner): Update output.
5588
5589 * src/scan-gram.l (scanner_cursor): Declare it static.
5590
5591 2006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
5592
5593 In warnings, say "previous declaration" rather than "first
5594 declaration".
5595 * src/symtab.c (redeclaration): Do that here.
5596 * src/reader.c (record_merge_function_type): In the case of a result
5597 type clash, report the previous declaration rather than the very first
5598 one in the grammar file.
5599 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
5600 declared later): Add a third declaration to check this behavior.
5601 * tests/input.at (Incompatible Aliases): Update output.
5602
5603 2006-06-27 Akim Demaille <akim@epita.fr>
5604
5605 * doc/Doxyfile.in: New.
5606 * doc/Makefile.am: Use it.
5607 * src/lalr.h, src/symtab.h: Initial doxygenation.
5608
5609 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
5610
5611 Don't miss %merge result type warnings just because the LHS types are
5612 declared after the %merge. This continues the effort of the previous
5613 patch.
5614 * src/reader.c (get_merge_function): Don't set the merger type yet.
5615 (record_merge_function_type): New function for setting the merger type
5616 and checking for clashes.
5617 (grammar_current_rule_merge_set): Set the location of the %merge for
5618 the current rule.
5619 (packgram): Invoke record_merge_function_type for each rule now that
5620 all symbol type declarations have been parsed.
5621 * src/reader.h (merger_list.type_declaration_location): New member
5622 storing the location of the first %merge from which the type for this
5623 merging function was derived.
5624 * src/symlist.h (symbol_list.merger_declaration_location): New member
5625 storing the location of a rule's %merge, if any.
5626 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
5627 declared later): New test to catch the error fixed by the above patch.
5628
5629 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
5630
5631 Get action warnings (grammar_rule_check) right even when symbol
5632 declarations appear after the rules. Discussed at
5633 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00108.html>
5634 and
5635 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00151.html>.
5636 Don't mistake the type of $$ in a midrule to be that of its parent
5637 rule's $$.
5638 * src/reader.c (grammar_current_rule_end): Don't invoke
5639 grammar_rule_check yet since not all symbol declarations may have been
5640 parsed yet.
5641 (grammar_midrule_action): Likewise.
5642 Don't record whether the midrule's $$ has been used yet since actions
5643 haven't been translated yet.
5644 Record the midrule's parent rule and its RHS index within the parent
5645 rule.
5646 (grammar_current_rule_action_append): Don't translate the action yet
5647 since not all symbol declarations may have been parsed yet and, thus,
5648 warnings about types for $$, $n, @$, and @n can't be reported yet.
5649 (packgram): Translate the action and invoke grammar_rule_check now that
5650 all symbol declarations have been parsed.
5651 * src/scan-code.l (handle_action_dollar): Now that this is invoked
5652 after parsing the entire grammar file, the symbol list here in the case
5653 of a midrule is actually the midrule's empty RHS, so reference its
5654 parent rule's RHS where necessary.
5655 On the other hand, now that you can already know it's a midrule, you
5656 aren't forced to think $$ has the same type as its parent rule's $$.
5657 (handle_action_at): In the case of a midrule, reference the parent rule
5658 where necessary.
5659 * src/symlist.c (symbol_list_new): Initialize new midrule-related
5660 members.
5661 (symbol_list_length): Now that this is invoked after all rules have
5662 been parsed, a NULL symbol (rather than a NULL symbol list node)
5663 terminates a rule. symbol_list_print already does this correctly.
5664 * src/symlist.h (symbol_list.midrule_parent_rule,
5665 symbol_list.midrule_parent_rhs_index): New members so that midrules can
5666 remember their relationships with their parents.
5667 * tests/input.at (Type Clashes): Extend to catch the midrule $$ error
5668 fixed by the above patch.
5669 (_AT_UNUSED_VALUES_DECLARATIONS, AT_CHECK_UNUSED_VALUES): New m4 macros
5670 implementing...
5671 (Unused values): ... this old test case and...
5672 (Unused values before symbol declarations): ... this new test case.
5673 This one is the same as `Unused values' except that all symbol
5674 declarations appear after the rules in order to catch the rest of the
5675 errors fixed by the above patch.
5676
5677 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
5678
5679 More cleanup.
5680 * src/reader.c (current_rule): Declare it static since it's no longer
5681 used outside this file.
5682 (grammar_current_rule_action_append): Remove redundant arguments from
5683 translate_rule_action invocation.
5684 * src/reader.h (current_rule): Remove this unused extern.
5685 * src/scan-code.h (translate_rule_action): Remove redundant arguments.
5686 * src/scan-code.l (translate_rule_action): Likewise.
5687
5688 2006-06-25 Joel E. Denny <jdenny@ces.clemson.edu>
5689
5690 Clean up yesterday's patch.
5691 * parse-gram.y (rhs): Move grammar_midrule_action invocation from here
5692 to...
5693 * src/reader.c (grammar_current_rule_action_append): ... here for
5694 consistency with grammar_current_rule_symbol_append.
5695 * tests/regression.at (Braced code in declaration in rules section):
5696 Make yyerror and yylex static as usual.
5697
5698 2006-06-24 Joel E. Denny <jdenny@ces.clemson.edu>
5699
5700 Fix bug that mistakes braced code in a declaration in the rules section
5701 to be a rule action. Mentioned at
5702 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00105.html>.
5703 * src/scan-gram.l: Move midrule action detection from the start of the
5704 scanning of any braced code to...
5705 * src/parse-gram.y (rhs): ... the parsing of braced code as a rule
5706 action. For readability, use $2 and @2 rather than the equivalent
5707 global variables.
5708 * tests/regression.at (Braced code in declaration in rules section):
5709 New test to catch the error fixed by the above patch.
5710
5711 Work on code readability some.
5712 * src/scan-code.l (current_rule): Get rid of this misleading and
5713 redundant declaration: it's actually extern'ed in reader.h.
5714 (YY_DECL, code_lex, handle_action_dollar, handle_action_at,
5715 translate_action): Add a rule argument and use it instead of the global
5716 current_rule.
5717 (translate_rule_action): This already receives current_rule through an
5718 argument, so pass it on to translate_action instead of assigning
5719 current_rule to current_rule.
5720 (translate_symbol_action, translate_code): Pass rule = NULL to
5721 translate_action.
5722
5723 2006-06-23 Joel E. Denny <jdenny@ces.clemson.edu>
5724
5725 Rename %before-definitions to %start-header and %after-definitions to
5726 %end-header. Don't use these declarations to separate pre-prologue
5727 blocks from post-prologue blocks. Add new order-independent
5728 declarations %before-header and %after-header as alternatives to the
5729 traditional Yacc pre-prologue and post-prologue blocks. Discussed at
5730 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00110.html>.
5731 * NEWS (2.3+): Update for these changes.
5732 * data/glr.c (b4_before_definitions): Update to...
5733 (b4_start_header): ... this.
5734 (b4_after_definitions): Update to...
5735 (b4_end_header): ... this.
5736 * data/glr.cc: Likewise.
5737 * data/lalr1.cc: Likewise.
5738 * data/yacc.c: Likewise.
5739 * doc/bison.texinfo (The prologue): Update names, and replace remaining
5740 prologue blocks with %*-header declarations.
5741 (Calc++ Parser): Likewise.
5742 (Decl Summary): Update names.
5743 (Table of Symbols): Update description.
5744 * src/parse-gram.y (PERCENT_AFTER_DEFINITIONS): Update to...
5745 (PERCENT_END_HEADER): ... this.
5746 (PERCENT_BEFORE_DEFINITIONS): Update to...
5747 (PERCENT_START_HEADER): ... this.
5748 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
5749 (declaration): Update token names and m4 macro names.
5750 When parsing %end-header and %start-header, invoke translate_code
5751 before muscle_code_grow, and no longer set global booleans to remember
5752 whether these declarations have been seen.
5753 Parse new %after-header and %before-header.
5754 * src/reader.c (before_definitions, after_definitions): Remove.
5755 (prologue_augment): Accept a new bool argument to specify whether to
5756 augment the pre-prologue or post-prologue.
5757 * src/reader.h (before_definitions, after_definitions): Remove these
5758 extern's.
5759 (prologue_augment): Add new bool argument.
5760 * src/scan-gram.l (PERCENT_AFTER_DEFINITIONS): Update to...
5761 (PERCENT_END_HEADER): ... this.
5762 (PERCENT_BEFORE_DEFINITIONS): Update to...
5763 (PERCENT_START_HEADER): ... this.
5764 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
5765 * tests/actions.at (Printers and Destructors): Update names.
5766
5767 2006-06-22 Joel E. Denny <jdenny@ces.clemson.edu>
5768
5769 Add comparison operators for C++ location classes. Discussed at
5770 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00092.html>.
5771 * data/c++.m4 (b4_define_location_comparison): New boolean %define
5772 declaration indicating whether filename_type has an operator==. If
5773 filename_type is `std::string', it defaults to `1', `0' otherwise.
5774 * data/location.cc: Iff b4_define_location_comparison is `1', add
5775 operator== and operator!= for class position and for class location.
5776
5777 Some minor fixes.
5778 * src/scan-action.l: Remove unused file.
5779 * src/symtab.c (symbol_printer_set): Use printer_location not
5780 destructor_location.
5781 * src/symtab.h (struct symbol): Replace incorrect source comment for
5782 printer members.
5783 * tests/input.at (Incompatible Aliases): Update output with correct
5784 printer location.
5785
5786 2006-06-20 Joel E. Denny <jdenny@ces.clemson.edu>
5787
5788 Don't put the pre-prologue in the header file. For the yacc.c code
5789 file and the glr.c header and code files, move the pre-prologue before
5790 the token definitions. Add new %before-definitions and
5791 %after-definitions to declare code that will go in both the header file
5792 and code file. Discussed at
5793 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00000.html>,
5794 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00016.html>,
5795 and
5796 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00055.html>.
5797 * NEWS (2.3+): Describe these changes.
5798 * data/glr.c (b4_pre_prologue): Move from within to before...
5799 (b4_shared_declarations): ... this.
5800 Add new b4_before_definitions before b4_token_enums.
5801 Add new b4_after_definitions at the end.
5802 * data/glr.cc (b4_pre_prologue): Replace with...
5803 (b4_before_definitions): ... this in the header file.
5804 (b4_after_definitions): New near the end of the header file.
5805 * data/lalr1.cc (b4_pre_prologue): Move from the header file to the
5806 code file right before including the header file.
5807 (b4_before_definitions): New in the previous position of
5808 b4_pre_prologue in the header file.
5809 (b4_after_definitions): New near the end of the header file.
5810 * data/yacc.c: Clean up some m4 quoting especially in the header file.
5811 (b4_token_enums_defines): In the code file, move to right before
5812 YYSTYPE for consistency with the header file.
5813 (b4_before_definitions): New right before b4_token_enums_defines in
5814 both the header and code file.
5815 (b4_after_definitions): New right after YYLTYPE and yylloc in both the
5816 header and code file.
5817 * doc/bison.texinfo (Prologue): Show use of %before-definitions instead
5818 of prologues for %union dependencies.
5819 (Decl Summary): In %defines description, mention the effect of
5820 %before-definitions and %after-definitions on the header file.
5821 (Calc++ Parser): Forward declare driver in a %before-definitions rather
5822 than in the pre-prologue so that make check succeeds.
5823 (Table of Symbols): Add entries for %before-definitions and
5824 %after-definitions.
5825 * src/parse-gram.y (PERCENT_BEFORE_DEFINITIONS): New token for
5826 %before-definitions.
5827 (PERCENT_AFTER_DEFINITIONS): New token for %after-definitions.
5828 (declaration): Parse those declarations and append to
5829 b4_before_definitions and b4_after_definitions, respectively.
5830 * src/reader.c (before_definitions, after_definitions): New bools to
5831 track whether those declarations have been seen.
5832 (prologue_augment): Add to the post-prologue if %union,
5833 %before-definitions, or %after-definitions has been seen.
5834 * src/reader.h (before_definitions, after_definitions): New extern's.
5835 * src/scan-gram.l: Scan the new declarations.
5836 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Place the second
5837 prologue block in a %before-definitions or a %after-definitions based
5838 on whether the %union is declared.
5839 * tests/regression.at (Early token definitions with --yacc, Early token
5840 definitions without --yacc): Move tests for token definitions into the
5841 post-prologue since token names are no longer defined in the
5842 pre-prologue.
5843
5844 2006-06-20 Akim Demaille <akim@epita.fr>
5845
5846 * src/symtab.h, src/symtab.c (symbol_from_uniqstr): New.
5847 (symbol_get): Use it.
5848 * src/parse-gram.y: Use it.
5849
5850 2006-06-19 Joel E. Denny <jdenny@ces.clemson.edu>
5851
5852 * src/scan-gram.l: Remove unused declaration of last_string_1 so the
5853 build succeeds when configured with --enable-gcc-warnings.
5854
5855 2006-06-19 Paul Eggert <eggert@cs.ucla.edu>
5856
5857 * src/parse-gram.y (char_name): New function.
5858 (CHAR, STRING, string_content): For %printer, properly escape.
5859 (ID): Prefer fputs to fprintf.
5860 (id): Reindent to be consistent with other rules.
5861 Properly quote char.
5862
5863 The Translation Project changed its way of publishing translations
5864 to maintainers. I haven't received any responses to my request
5865 for supporting the old way, or for documenting the new way. I
5866 have modified 'bootstrap' to use screen scraping
5867 (in this case, HTML scraping). This is unreliable and inelegant,
5868 but I don't see any better way. Yuck.
5869 * bootstrap (TP_URL, WGET_COMMAND): New vars.
5870 (get_translations): New function, which uses HTML scraping to
5871 deduce locations of latest translations.
5872 Use this function to grab both bison and bison-runtime .po files.
5873 Don't bother priming the pump for the runtime-po domain any more,
5874 as it's now translated better than bison is.
5875
5876 2006-06-19 Akim Demaille <akim@epita.fr>
5877
5878 * src/scan-gram.l: No longer "parse" things after `%union' until
5879 `{'. Rather, return a single "%union" token.
5880 No longer make symbols: return strings, and leave the conversion
5881 to symbols to the parser.
5882 (SC_PRE_CODE, token_type): Remove.
5883 * src/parse-gram.y (%union): New field `character'.
5884 Sort tokens.
5885 (CHAR): New token.
5886 (ID, ID_COLON): Now that the scanner no longer makes them
5887 identifiers, adjust all uses to invoke symbol_get.
5888 (id_colon): New, wraps the conversion from string to symbol.
5889 (%union): Accept a possible union_name.
5890 (symbol): Now can be a char.
5891 * data/c.m4 (b4_union_name): Leave a default value.
5892 * data/glr.c, data/yacc.c: Use it.
5893
5894 2006-06-11 Joel E. Denny <jdenny@ces.clemson.edu>
5895
5896 For associating token numbers with token names for "yacc.c", don't use
5897 #define statements unless `--yacc' is specified; always use enum
5898 yytokentype. Most important discussions start at:
5899 <http://lists.gnu.org/archive/html/bison-patches/2005-09/msg00053.html>,
5900 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00052.html>,
5901 and
5902 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00043.html>.
5903 * NEWS (2.3+): Mention.
5904 * data/c.m4 (b4_yacc_if): New.
5905 (b4_token_enums_defines): Use b4_yacc_if to decide whether to add the
5906 token #define's.
5907 * doc/bison.texinfo (Bison Options): Describe the effect of `--yacc'
5908 on token name definitions.
5909 * src/getargs.c (usage): Capitalize `Yacc' in English.
5910 * src/output.c (prepare): Define b4_yacc_flag.
5911 * tests/regression.at (Early token definitions): Test that tokens names
5912 are defined before the pre-prologue not just before the post-prologue.
5913 Remove this test case and copy to...
5914 (Early token definitions with --yacc): ... this to test #define's.
5915 (Early token definitions without --yacc): ... and this to test enums.
5916
5917 2006-06-11 Paul Eggert <eggert@cs.ucla.edu>
5918
5919 * NEWS: Reword the post-2.3 change to not be so optimistic about
5920 removing the old "look-ahead" spelling.
5921 Update previous look-ahead/lookahead change reports.
5922 * REFERENCES: look-ahead -> lookahead (since that's
5923 what he actually wrote).
5924 * doc/refcard.tex: look ahead -> lookahead,
5925 look-ahead -> lookahead
5926
5927 2006-06-09 Joel E. Denny <jdenny@ces.clemson.edu>
5928
5929 For consistency, use `lookahead' instead of `look-ahead' or
5930 `look_ahead'. Discussed starting at
5931 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00049.html>
5932 and then at
5933 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00017.html>.
5934 * NEWS: For the next release, note the change to `--report'.
5935 * TODO, doc/bison.1: Update English.
5936 * doc/bison.texinfo: Update English.
5937 (Understanding Your Parser, Bison Options): Document as
5938 `--report=lookahead' rather than `--report=look-ahead'.
5939 * src/conflicts.c: Update English in comments.
5940 (lookahead_set): Rename from look_ahead_set.
5941 (flush_reduce): Rename argument look_ahead_tokens to lookahead_tokens.
5942 (resolve_sr_conflict): Rename local look_ahead_tokens to
5943 lookahead_tokens, and update other uses.
5944 (flush_shift, set_conflicts, conflicts_solve, count_sr_conflicts,
5945 count_rr_conflicts, conflicts_free): Update uses.
5946 * src/getargs.c (report_args): Move "lookahead" before alternate
5947 spellings.
5948 (report_types): Update uses.
5949 (usage): For `--report' usage description, state `lookahead' spelling
5950 rather than `look-ahead'.
5951 * src/getargs.h (report.report_lookahead_tokens): Rename from
5952 report_look_ahead_tokens.
5953 * src/lalr.c: Update English in comments.
5954 (compute_lookahead_tokens): Rename from compute_look_ahead_tokens.
5955 (state_lookahead_tokens_count): Rename from
5956 state_look_ahead_tokens_count.
5957 Rename local n_look_ahead_tokens to n_lookahead_tokens.
5958 (lookahead_tokens_print): Rename from look_ahead_tokens_print.
5959 Rename local n_look_ahead_tokens to n_lookahead_tokens.
5960 Update other uses.
5961 Update English in output.
5962 (add_lookback_edge, initialize_LA, lalr, lalr_free): Update uses.
5963 * src/print.c: Update English in comments.
5964 (lookahead_set): Rename from look_ahead_set.
5965 (print_reduction): Rename argument lookahead_token from
5966 look_ahead_token.
5967 (print_core, state_default_rule, print_reductions, print_results):
5968 Update uses.
5969 * src/print_graph.c: Update English in comments.
5970 (print_core): Update uses.
5971 * src/state.c: Update English in comments.
5972 (reductions_new): Update uses.
5973 (state_rule_lookahead_tokens_print): Rename from
5974 state_rule_look_ahead_tokens_print, and update other uses.
5975 * src/state.h: Update English in comments.
5976 (reductions.lookahead_tokens): Rename from look_ahead_tokens.
5977 (state_rule_lookahead_tokens_print): Rename from
5978 state_rule_look_ahead_tokens_print.
5979 * src/tables.c: Update English in comments.
5980 (conflict_row, action_row): Update uses.
5981 * tests/glr-regression.at
5982 (Incorrect lookahead during deterministic GLR,
5983 Incorrect lookahead during nondeterministic GLR): Rename
5984 print_look_ahead to print_lookahead.
5985 * tests/torture.at: Update English in comments.
5986 (AT_DATA_LOOKAHEAD_TOKENS_GRAMMAR): Rename from
5987 AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR.
5988 (Many lookahead tokens): Update uses.
5989 * data/glr.c: Update English in comments.
5990 * lalr1.cc: Likewise.
5991 * yacc.c: Likewise.
5992 * src/conflicts.h: Likewise.
5993 * src/lalr.h: Likewise.
5994 * src/main.c: Likewise.
5995 * src/output.c: Likewise.
5996 * src/parse-gram.c: Likewise.
5997 * src/tables.h: Likewise.
5998 * tests/calc.at: Likewise.
5999
6000 2006-06-08 Joel E. Denny <jdenny@ces.clemson.edu>
6001
6002 * src/flex-scanner.h (yytext): Remove stray `*/' in #define.
6003
6004 2006-06-07 Paul Eggert <eggert@cs.ucla.edu>
6005
6006 * TODO: Add request from Nelson H. F. Beebe to be able to install
6007 Bison without installing the yacc script.
6008
6009 2006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
6010
6011 * src/flex-scanner.h: For the sake of Flex 2.5.4, don't #define yyleng
6012 and yytext if they're already #define'd.
6013 * src/flex-scanner.h, src/location.h: Move #include "system.h" to...
6014 * src/scan-code-c.c: ... here.
6015 * src/scan-code.l, src/scan-gram.l: ... and here. Also #include
6016 <config.h>.
6017
6018 2006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
6019
6020 Get Bison to build again when configured with --enable-gcc-warnings.
6021 * src/location.c, src/location.h, src/main.c, src/scan-code.l: Add some
6022 missing #include's.
6023 * src/scan-code.l (handle_action_dollar, handle_action_at): Rename
6024 loc argument as it shadows a global.
6025 * src/scan-gram.l: Remove stray comma that prevents boundary_set
6026 invocation.
6027
6028 * src/.cvsignore: Add scan-code.c.
6029
6030 2006-06-07 Akim Demaille <akim@epita.fr>
6031
6032 * src/scan-gram.l: Move the "add a trailing ; to actions" code
6033 to...
6034 * src/scan-code.l: here.
6035 * tests/input.at (Torturing the Scanner): Fix another location
6036 error.
6037
6038 2006-06-07 Akim Demaille <akim@epita.fr>
6039
6040 * src/Makefile.am (BUILT_SOURCES): Fix the trailing backslash.
6041
6042 2006-06-06 Akim Demaille <akim@epita.fr>
6043
6044 Extract the parsing of user actions from the grammar scanner.
6045 As a consequence, the relation between the grammar scanner and
6046 parser is much simpler. We can also split "composite tokens" back
6047 into simple tokens.
6048 * src/gram.h (ITEM_NUMBER_MAX, RULE_NUMBER_MAX): New.
6049 * src/scan-gram.l (add_column_width, adjust_location): Move to and
6050 rename as...
6051 * src/location.h, src/location.c (add_column_width)
6052 (location_compute): these.
6053 Fix the column count: the initial column is 0.
6054 (location_print): Be robust to ending column being 0.
6055 * src/location.h (boundary_set): New.
6056 * src/main.c: Adjust to scanner_free being renamed as
6057 gram_scanner_free.
6058 * src/output.c: Include scan-code.h.
6059 * src/parse-gram.y: Include scan-gram.h and scan-code.h.
6060 Use boundary_set.
6061 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_INITIAL_ACTION)
6062 (PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Remove the {...} part,
6063 which is now, again, a separate token.
6064 Adjust all dependencies.
6065 Whereever actions with $ and @ are used, use translate_code.
6066 (action): Remove this nonterminal which is now useless.
6067 * src/reader.c: Include assert.h, scan-gram.h and scan-code.h.
6068 (grammar_current_rule_action_append): Use translate_code.
6069 (packgram): Bound check ruleno, itemno, and rule_length.
6070 * src/reader.h (gram_in, gram__flex_debug, scanner_cursor)
6071 (last_string, last_braced_code_loc, max_left_semantic_context)
6072 (scanner_initialize, scanner_free, scanner_last_string_free)
6073 (gram_out, gram_lineno, YY_DECL_): Move to...
6074 * src/scan-gram.h: this new file.
6075 (YY_DECL): Rename as...
6076 (GRAM_DECL): this.
6077 * src/scan-code.h, src/scan-code.l, src/scan-code-c.c: New.
6078 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
6079 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
6080 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
6081 Move these declarations, and...
6082 (obstack_for_string, STRING_GROW, STRING_FINISH, STRING_FREE):
6083 these to...
6084 * src/flex-scanner.h: this new file.
6085 * src/scan-gram.l (rule_length, rule_length_overflow)
6086 (increment_rule_length): Remove.
6087 (last_braced_code_loc): Rename as...
6088 (gram_last_braced_code_loc): this.
6089 Adjust to the changes of the parser.
6090 Move all the handling of $ and @ into...
6091 * src/scan-code.l: here.
6092 * src/scan-gram.l (handle_dollar, handle_at): Remove.
6093 (handle_action_dollar, handle_action_at): Move to...
6094 * src/scan-code.l: here.
6095 * src/Makefile.am (bison_SOURCES): Add flex-scanner.h,
6096 scan-code.h, scan-code-c.c, scan-gram.h.
6097 (EXTRA_bison_SOURCES): Add scan-code.l.
6098 (BUILT_SOURCES): Add scan-code.c.
6099 (yacc): Be robust to white spaces.
6100
6101 * tests/conflicts.at, tests/input.at, tests/reduce.at,
6102 * tests/regression.at: Adjust the column numbers.
6103 * tests/regression.at: Adjust the error message.
6104
6105 2006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
6106
6107 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
6108 Use Akim's wording from
6109 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00056.html>.
6110
6111 2006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
6112
6113 Between Bison releases, manually append `+' to the previous Bison
6114 release number, and use that as a signal to automatically print the
6115 ChangeLog's CVS Id keyword from --version. Discussed starting at
6116 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00028.html>.
6117 * ChangeLog: Add Id header.
6118 * configure.ac (AC_INIT): Append `+' to `2.3'.
6119 * src/.cvsignore: Add revision.c.
6120 * src/Makefile.am (bison_SOURCES): Add revision.c and revision.h.
6121 (BUILT_SOURCES): Add revision.c.
6122 (revision.c): New target rule. This file defines a new global variable
6123 named revision. It initializes it with either the Id from ChangeLog
6124 or, if VERSION doesn't contain `+', with the empty string.
6125 * src/getargs.c (version): Print the value of revision.
6126 * src/revision.h: Extern revision.
6127
6128 2006-06-05 Paul Eggert <eggert@cs.ucla.edu>
6129
6130 * NEWS: Version 2.3.
6131 * configure.ac (AC_INIT): Likewise.
6132
6133 2006-05-30 Paul Eggert <eggert@cs.ucla.edu>
6134
6135 * data/glr.c (YYRECOVERING): Define to be a function-like macro
6136 with no arguments, not as an object-like macro. This is for
6137 compatibility with data/yacc.c. Problem reported by John P. Hartmann in
6138 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00059.html>.
6139 * doc/bison.texinfo (Action Features, Error Recovery, Table of Symbols):
6140 Document this.
6141
6142 2006-05-30 Joel E. Denny <jdenny@ces.clemson.edu>
6143
6144 * src/getargs.c (usage): Back out yesterday's modification of the
6145 --help output so that we don't have to wait for translation before
6146 releasing 2.3.
6147
6148 2006-05-29 Paul Eggert <eggert@cs.ucla.edu>
6149
6150 * doc/bison.texinfo (Introduction): Don't say "GLR grammar".
6151 Problem reported by Akim Demaille.
6152
6153 2006-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
6154
6155 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
6156
6157 2006-05-26 Paul Eggert <eggert@cs.ucla.edu>
6158
6159 * data/yacc.c (yy_reduce_print): Omit trailing white space in
6160 generated source code. Problem reported by Frans Englich in
6161 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00049.html>.
6162
6163 2006-05-22 Paul Eggert <eggert@cs.ucla.edu>
6164
6165 * Makefile.maint (gzip_rsyncable, GZIP_ENV): Compute within the
6166 shell, not within 'make', so that 'make' by an ordinary builder
6167 (using GNU make) does not worry about configuring gzip. This also
6168 works around a bug reported independently by Keith Thompson and by
6169 Georg Schwarz, whereby gzip 1.2.4 --help would output usage on
6170 stderr rather than stdout, messing up the build logs.
6171
6172 2006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
6173
6174 * data/yacc.c (yyparse): Wrap the final return from yyparse inside YYID
6175 to make sure that YYID will never be unused. This fixes a 'make
6176 maintainer-check' failure caused by the recent changes to the 'Trivial
6177 grammars' test case, which caused g++ 4.1.0 to complain that YYID was
6178 not used.
6179 * data/glr.c (yyparse): Wrap yyparse's return inside YYID just in case.
6180
6181 2006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
6182
6183 * data/glr.c (yyresolveLocations): Remove bogus YYASSERT that the
6184 state before an empty RHS is always resolved here. Only the location
6185 of that state is guaranteed to be resolved, and that's enough. This
6186 fixes the remaining bug reported by Derek M. Jones in
6187 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
6188 * tests/glr-regression.at (Uninitialized location when reporting
6189 ambiguity): Test the above case.
6190 Also, the embedded comments in this test case claim it checks the case
6191 of an empty RHS that has inherited the initial location. However, the
6192 corresponding LHS was already resolved, so yyresolveLocations didn't
6193 actually have reason to modify it. Fix this by forcing
6194 nondeterministic operation at the beginning of the parse.
6195
6196 2006-05-20 Paul Eggert <eggert@cs.ucla.edu>
6197
6198 * data/c.m4 (b4_yy_symbol_print_generate):
6199 (b4_yy_symbol_print_generate): Use 'YYSTYPE const' rather than
6200 'const YYSTYPE', and similarly for YYLTYPE. This fixes one
6201 of the bugs reported today by Derek M Jones in
6202 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
6203 * doc/bison.texinfo (Value Type): Document that YYSTYPE must be
6204 defined to be a type name without parens or brackets.
6205 (Location Type): Similarly for YYLTYPE.
6206 * tests/regression.at (Trivial grammars): Put in a test for this
6207 bug that will be caught by 'make maintainer-check' (though not,
6208 alas, by 'make check' unless your compiler is picky).
6209
6210 2006-05-19 Paul Eggert <eggert@cs.ucla.edu>
6211
6212 * NEWS: Version 2.2.
6213 * configure.ac (AC_INIT): Likewise.
6214
6215 2006-05-17 Joel E. Denny <jdenny@ces.clemson.edu>
6216
6217 * data/glr.c (yyreportTree): Make room in yystates for the state
6218 preceding the RHS. This fixes the segmentation fault reported by Derek
6219 M. Jones in
6220 <http://lists.gnu.org/archive/html/help-bison/2006-05/msg00035.html>.
6221 (yyreportTree, yypdumpstack): Subtract 1 from yyrule before printing
6222 to the user. Reported for yyreportTree by Derek M. Jones later in the
6223 same thread.
6224 * THANKS: Add Derek M. Jones.
6225 Update my email address.
6226 Fix typo in Steve Murphy's name.
6227
6228 2006-05-14 Paul Eggert <eggert@cs.ucla.edu>
6229
6230 * data/glr.c (yyreportSyntaxError): Fix off-by-one error in
6231 checking against YYLAST that caused the parser to miss a potential
6232 alternative in its diagnostic.
6233 Problem reported by Maria Jose Moron Fernandez in
6234 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00024.html>.
6235 * data/lalr1.cc (yysyntax_error_): Likewise.
6236 * data/yacc.c (yysyntax_error): Likewise.
6237 * tests/regression.at (_AT_DATA_DANCER_Y): Use static array for
6238 tokens, in case we run into an older C compiler.
6239 (_AT_DATA_EXPECT2_Y, AT_CHECK_EXPECT2): New macros.
6240 Use them to check for the off-by-one error fixed above.
6241
6242 * data/yacc.c (yytnamerr): Fix typo: local var should be of type
6243 YYSIZE_T, not size_t.
6244 * tests/regression.at (Trivial grammars): New test, to catch
6245 the error fixed by the above patch.
6246
6247 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
6248
6249 * doc/bison.texinfo (C++ Bison Interface): Clarify the naming
6250 scheme.
6251 Reported by Steve Murphy.
6252
6253 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
6254
6255 * data/glr.cc, data/lalr1.cc: Using %defines is mandatory.
6256 * data/glr.cc: b4_location_flag is now b4_locations_flag.
6257
6258 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
6259
6260 Implement --trace=m4.
6261 * src/getargs.c (trace_types, trace_args): Accept trace_m4.
6262 * src/output.c (output_skeleton): When set, pass -dV to m4.
6263
6264 Factor the handling of flags in m4.
6265 * src/output.c (prepare): Rename the muscle names debug, defines,
6266 error_verbose to debug_flag, defines_flag, error_verbose_flag.
6267 * data/c.m4: Adjust.
6268 (_b4_define_flag_if, b4_define_flag_if, b4_defines_if): New.
6269 Use b4_define_flag_if to define other b4_FLAG_if macros.
6270 (b4_location_if): As a consequence, rename as...
6271 (b4_locations_if): this, for consistency.
6272 Adjust all the skeletons.
6273
6274 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
6275
6276 * etc/bench.pm: Shorten bench names.
6277
6278 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
6279
6280 * src/output.h, src/output.c (error_verbose): Move to...
6281 * src/getargs.h, src/getargs.c: here.
6282 Sort the flags.
6283 Adjust dependencies.
6284
6285 2006-05-13 Paul Eggert <eggert@cs.ucla.edu>
6286
6287 * data/c.m4 (b4_copyright): Put the special exception for Bison
6288 skeletons here, so we don't have to put it in each skeleton. All
6289 uses changed. Suggested by Akim Demaille. Also, wrap the
6290 copyright notice, in case it is longer than 80 columns. Replace
6291 comma by newline after title.
6292
6293 2006-05-11 Paul Eggert <eggert@cs.ucla.edu>
6294
6295 * doc/bison.texinfo (Calc++ Scanner): The flex behavior is an
6296 incompatibility, not a bug. Mention that it wasn't fixed as of
6297 flex 2.5.33.
6298
6299 2006-05-11 Akim Demaille <akim@lrde.epita.fr>
6300
6301 * examples/extexi: Enforce the precedence of concatenation over
6302 >>.
6303 Reported by Tommy Nordgren.
6304
6305 2006-05-11 Akim Demaille <akim@lrde.epita.fr>
6306
6307 * data/lalr1.cc (yytranslate_): Rename token as t to avoid clashes
6308 with the member "token".
6309 Reported by Martin Nylin.
6310
6311 2006-05-08 Paul Eggert <eggert@cs.ucla.edu>
6312
6313 * data/glr.c: Switch to Bison 2.2 special-exception language in
6314 the copyright notice. Use more-regular format for titles and
6315 copyright notices.
6316 * data/glr.cc: Likewise.
6317 * data/location.cc: Likewise.
6318 * data/yacc.cc: Likewise.
6319 * doc/bison.texinfo (Conditions): Document this.
6320 * NEWS: likewise. Upgrade version to 2.2.
6321
6322 2006-04-27 Akim Demaille <akim@lrde.epita.fr>
6323
6324 * data/glr.cc: Remove dead code.
6325
6326 2006-04-25 Paul Eggert <eggert@cs.ucla.edu>
6327
6328 * bootstrap: Comment out the AM_CPPFLAGS line, since we don't use
6329 that variable and the line breaks the bootstrap. Problem reported
6330 by Juan M. Guerrero.
6331
6332 2006-04-24 Akim Demaille <akim@lrde.epita.fr>
6333
6334 * doc/bison.texinfo (Multiple start-symbols): New.
6335
6336 2006-04-24 Akim Demaille <akim@lrde.epita.fr>
6337
6338 * etc/README, etc/bench.pl: New.
6339
6340 2006-04-03 Akim Demaille <akim@lrde.epita.fr>
6341
6342 * src/scan-gram.l: Be robust to BRACED_CODE appearing before any
6343 rule.
6344 Reported by Mickael Labau.
6345 * tests/input.at (Torturing the Scanner): Test it.
6346
6347 2006-03-16 Paul Eggert <eggert@cs.ucla.edu>
6348
6349 * doc/bison.texinfo (Decl Summary): Don't mention yylloc twice.
6350 Problem reported by Bob Rossi.
6351
6352 2006-03-13 Paul Eggert <eggert@cs.ucla.edu>
6353
6354 * doc/bison.texinfo: Remove @shorttitlepage stuff; it wasn't used
6355 and didn't really work.
6356 For the index, use @ifnotinfo, not @iftex.
6357 Minor cleanups of spacing and terminology.
6358
6359 2006-03-12 Akim Demaille <akim@lrde.epita.fr>
6360
6361 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Fix the definition
6362 of AT_NAME_PREFIX when %name-prefix is not used.
6363
6364 2006-03-12 Akim Demaille <akim@lrde.epita.fr>
6365
6366 Apply --prefix to C++ skeletons too: they change the namespace.
6367 The test suite already exercize these cases.
6368 * data/c++.m4 (b4_namespace): New.
6369 * data/lalr1.cc, data/glr.cc, data/location.cc: Use it instead of `yy'.
6370 * data/lalr1.cc (yytnameerr_): Move its definition into the namespace.
6371 * data/yacc.c, data/glr.c: Remove a useless `[]'.
6372 * doc/bison.texinfo: Document it.
6373 (Option Cross Key): Use @multitable in all formats. It looks
6374 nicer, even in TeX outputs.
6375 (Rules): Use the same code whatever the output type is.
6376 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS)
6377 (_AT_BISON_OPTION_POPDEFS): Support AT_NAME_PREFIX.
6378 * tests/calc.at: Use it, instead of hard coding `yy'.
6379
6380 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
6381
6382 * TODO: Remove dead items.
6383
6384 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
6385
6386 * doc/FAQ: Remove, merged into...
6387 * doc/bison.texinfo (FAQ): this.
6388 * doc/Makefile.am (EXTRA_DIST): Adjust.
6389
6390 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
6391
6392 * data/c.m4 (b4_token_enum): Always define the enum of tokens,
6393 even if empty.
6394 * data/lalrl1.cc, data/glr.cc (parser::token_type): New.
6395 * doc/bison.texinfo (Calc++ Scanner): Use it.
6396
6397 2006-03-09 Paul Eggert <eggert@cs.ucla.edu>
6398
6399 Fix two nits reported by twlevo, plus one more that I discovered.
6400
6401 * src/assoc.h (assoc_to_string): Give a name to the arg, as
6402 this is the usual Bison style.
6403 * src/location.h (location_print): Likewise.
6404
6405 * src/reader.h (token_name): Likewise.
6406
6407 2006-03-08 Paul Eggert <eggert@cs.ucla.edu>
6408
6409 Fix some nits reported by twlevo.
6410 * doc/FAQ: Remove ancient Y2K FAQ, replacing it with "secure"
6411 and "POSIX". Use more-modern syntax for URLs. Mention C++
6412 and ask for Java. Don't hardwire OS version numbers. Add
6413 copyright notice.
6414 * m4/.cvsignore: Add unistd_h.m4, for latest gnulib.
6415 * src/conflicts.c (solved_conflicts_obstack): Now static.
6416
6417 2006-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
6418
6419 * doc/bison.texinfo (Introduction): Mention GLR and C++ as on the web
6420 page. Say "you can use it" not "you may use it" as on the web page;
6421 we're describing capabilities not granting permission.
6422
6423 2006-03-06 Paul Eggert <eggert@cs.ucla.edu>
6424
6425 * data/glr.c (yyresolveLocations): Rename local variables to avoid
6426 shadowing warnings. Use usual patter for iterating through RHS.
6427 * tests/glr-regression.at
6428 (Uninitialized location when reporting ambiguity):
6429 Modify yylex so that it uses its argument, rather than trying
6430 to rely on ARGSUSED (which doesn't work for gcc with warnings).
6431 const char -> char const.
6432
6433 * tests/Makefile.am ($(srcdir)/package.m4, maintainer-check-valgrind):
6434 Don't use tabs inside commands; it messes up 'ps'.
6435 Problem reported by twlevo.
6436
6437 2006-03-06 Joel E. Denny <jdenny@ces.clemson.edu>
6438
6439 * tests/glr-regression.at (Uninitialized location when reporting
6440 ambiguity): New test case.
6441 * data/glr.c (yyresolveLocations): New function, which uses
6442 YYLLOC_DEFAULT.
6443 (yyresolveValue): Invoke yyresolveLocations before reporting an
6444 ambiguity.
6445 * doc/bison.texinfo (Default Action for Locations): Note
6446 YYLLOC_DEFAULT's usage for ambiguity locations.
6447 (GLR Semantic Actions): Cross-reference those notes.
6448
6449 2006-03-04 Joel E. Denny <jdenny@ces.clemson.edu>
6450
6451 * tests/glr-regression.at (Leaked semantic values when reporting
6452 ambiguity): Remove unnecessary union and type declarations.
6453 (Leaked lookahead after nondeterministic parse syntax error): New test
6454 case.
6455 * data/glr.c (yyparse): Check for zero stacks remaining before
6456 attempting to shift the lookahead so that you don't lose it.
6457
6458 2006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
6459
6460 Avoid memory leaks by not invoking longjmp in yyreportAmbiguity.
6461 * tests/glr-regression.at (Leaked semantic values when reporting
6462 ambiguity): New test case.
6463 * data/glr.c (yyreportAmbiguity): Invoke yyyerror directly and return
6464 yyabort rather than invoking yyFail, which invokes longjmp. Remove the
6465 now unnecessary yystackp parameter.
6466 (yyresolveValue): Return yyreportAmbiguity's result. Now the necessary
6467 destructors can be called.
6468
6469 * tests/glr-regression.at: Don't invoke bison with `-t' unnecessarily
6470 in existing testcases.
6471
6472 2006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
6473
6474 Don't leak semantic values for parent RHS when a user action cuts the
6475 parser, and clean up related code a bit.
6476 * tests/glr-regression.at (Leaked merged semantic value if user action
6477 cuts parse): Rename to...
6478 (Leaked semantic values if user action cuts parse): ... this. Add check
6479 for leaked parent RHS values.
6480 * data/glr.c (yydestroyGLRState): In debugging output, distinguish
6481 between an unresolved state (non-empty chain of semantic options) and
6482 an incomplete one (signaled by an empty chain).
6483 (yyresolveStates): Document the interface. Move all manipulation of a
6484 successfully or unsuccessfully resolved yyGLRState to...
6485 (yyresolveValue): ... here so that yyresolveValue always leaves a
6486 yyGLRState with consistent data and thus is easier to understand.
6487 Remove the yyvalp and yylocp parameters since they are always just
6488 taken from the yys parameter. When reporting a discarded merged value
6489 in debugging output, note that it is incompletely merged. Document the
6490 interface.
6491 (yyresolveAction): If resolving any of the RHS states fails, destroy
6492 them all rather than leaking them. Thus, as long as user actions are
6493 written to clean up the RHS correctly, yyresolveAction always cleans up
6494 the RHS of a semantic option. Document the interface.
6495
6496 2006-02-27 Paul Eggert <eggert@cs.ucla.edu>
6497
6498 * data/glr.c (yyexpandGLRStack): Catch an off-by-one error that
6499 led to a segmentation fault in GNU Pascal. Problem reported
6500 by Waldek Hebisch.
6501
6502 2006-02-21 Joel E. Denny <jdenny@ces.clemson.edu>
6503
6504 * doc/bison.texinfo (Mid-Rule Actions): Explain how to bury a
6505 mid-rule action inside a nonterminal symbol in order to declare a
6506 destructor for its semantic value.
6507
6508 2006-02-16 Paul Eggert <eggert@cs.ucla.edu>
6509
6510 * data/yacc.c [(! defined yyoverflow || YYERROR_VERBOSE) && !
6511 YYSTACK_USE_ALLOCA && ! defined YYSTACK_ALLOC && defined
6512 __cplusplus && ! defined _STDLIB_H && !
6513 ((defined YYMALLOC || defined malloc) && (defined YYFREE ||
6514 defined free))]: Include <stdlib.h> rather than rolling our own
6515 declarations of malloc and free, to avoid problems with
6516 incompatible declarations (using 'throw') C++'s stdlib.h. This
6517 should fix Debian bug 340012
6518 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=340012>,
6519 reported by Guillaume Melquiond.
6520
6521 2006-02-13 Paul Eggert <eggert@cs.ucla.edu>
6522
6523 * NEWS: Clarify symbols versus types in unused-value warnings.
6524
6525 * configure.ac (AC_INIT): Bump version number.
6526
6527 2006-02-13 Paul Eggert <eggert@cs.ucla.edu>
6528
6529 * NEWS: Version 2.1a.
6530 * tests/headers.at (AT_TEST_CPP_GUARD_H): Declare yyerror and yylex,
6531 since C99 requires this.
6532
6533 2006-02-11 Paul Eggert <eggert@cs.ucla.edu>
6534
6535 * m4/c-working.m4: New file.
6536 * configure.ac (BISON_TEST_FOR_WORKING_C_COMPILER): Use it.
6537
6538 2006-02-10 Paul Eggert <eggert@cs.ucla.edu>
6539
6540 * Makefile.maint: Merge from coreutils.
6541
6542 2006-02-09 Paul Eggert <eggert@cs.ucla.edu>
6543
6544 More portability fixes for problems summarized by Nelson H. F. Beebe.
6545
6546 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Catch a
6547 configuration screwup "./configure CC=/opt/SUNWspro/bin/c89
6548 CFLAGS="-xarch=generic64" CXX=/opt/SUNWspro/bin/CC
6549 LDFLAGS="-xarch=generic64" with Sun C 5.7 on Solaris 10; this
6550 messes up because C++ code is compiled in 32-bit mode but linked
6551 in 64-bit mode.
6552
6553 2006-02-08 Paul Eggert <eggert@cs.ucla.edu>
6554
6555 More portability fixes for problems summarized by Nelson H. F. Beebe.
6556
6557 * doc/bison.texinfo (Calc++ Scanner): Work around a bug in flex
6558 2.5.31. This resembles the 2005-10-10 patch to src/scan-skel.l.
6559
6560 * examples/calc++/Makefile.am (check_PROGRAMS): Renamed from
6561 nodist_PROGRAMS, since we don't need to actually compile the
6562 example if we're just doing a plain 'make'. This avoids bothering
6563 the installer unnecessarily about problems due to weird C++
6564 compilers.
6565
6566 2006-02-06 Paul Eggert <eggert@cs.ucla.edu>
6567
6568 More portability fixes for problems summarized by Nelson H. F. Beebe.
6569
6570 * tests/headers.at (AT_TEST_CPP_GUARD_H): Use #include <...> rather
6571 than #include "...", and compile with -I'.'. The old method was
6572 not portable, according to Posix and the C standard, and it does
6573 not work with Sun C 5.7, where previous #line directives affect
6574 the working directory used in later #include "..." directives.
6575
6576 2006-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
6577
6578 Various DJGGP specific issues in /djgpp
6579
6580 2006-02-02 Paul Eggert <eggert@cs.ucla.edu>
6581
6582 More portability fixes for problems summarized by Nelson H. F. Beebe.
6583
6584 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check that
6585 '#include <map>' works and that you can apply ++ to iterators.
6586
6587 2006-02-01 Paul Eggert <eggert@cs.ucla.edu>
6588
6589 Work around portability problems summarized by Nelson H. F. Beebe in
6590 <http://lists.gnu.org/archive/html/bug-bison/2005-09/msg00021.html>.
6591
6592 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
6593 that '#include <string>' works.
6594
6595 * data/lalr1.cc (yytranslate_): No longer inline, to work around a
6596 porting problem to g++ 3.4.3 on Darwin 7.9.0, where g++ complained
6597 "warning: sorry: semantics of inline function static data `const
6598 unsigned char translate_table[262]' are wrong (you'll wind up with
6599 multiple copies)".
6600
6601 * lib/bbitset.h (struct bitset_vtable): Rename members not, and,
6602 or, xor to not_, and_, or_, and xor_, respectively. This works
6603 around a bug in GCC 3.4.3 on Irix 6.5, which apparently has a
6604 random system header somewhere that includes the equivalent of
6605 <iso646.h>.
6606
6607 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that "$CC
6608 -E" works; it apparently doesn't work with PathScale EKO Compiler
6609 Suite Version 2.0.
6610
6611 2006-01-30 Joel E. Denny <jdenny@ces.clemson.edu>
6612
6613 During deterministic GLR operation, user actions should be able to
6614 influence the parse by changing yychar. To make this easier to fix and
6615 to make glr.c easier to evolve in general, don't maintain yytoken in
6616 parallel with yychar; just compute yytoken when needed.
6617 * tests/glr-regression.at (Incorrect lookahead during deterministic
6618 GLR): Check that setting yychar in a user action has the intended
6619 effect.
6620 * data/glr.c (yyGLRStack): Remove yytokenp member.
6621 (yyclearin): Don't set *yytokenp.
6622 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Examine
6623 yychar rather than *yytokenp to determine the current lookahead.
6624 Compute yytoken locally when needed.
6625 (yyparse): Likewise. Remove the local yytoken that yytokenp used to
6626 point to.
6627
6628 * doc/bison.texinfo (Bison Options): Remove stray sentence fragment
6629 after `--report' documentation.
6630
6631 2006-01-30 Paul Eggert <eggert@cs.ucla.edu>
6632
6633 * src/parse-gram.y (grammar_declaration): Location of printer
6634 symbol is @1, not list->location. Bug reported by twlevo.
6635 * tests/input.at (Incompatible Aliases): Adjust to above change.
6636
6637 2006-01-29 Paul Eggert <eggert@cs.ucla.edu>
6638
6639 * tests/input.at (AT_CHECK_UNUSED_VALUES): Remove. Instead, do
6640 all the test at once. This makes the output easier to read in the
6641 normal case.
6642
6643 Fix a longstanding bug uncovered by bro-0.9a9/src/parse.y, which I
6644 got from <http://bro-ids.org/download.html>. The bug is that
6645 when two actions appeared in succession, the second one was
6646 scanned before the first one was added to the grammar rule
6647 as a midrule action. Bison then output the incorrect warning
6648 "parse.y:905.17-906.36: warning: unused value: $3".
6649 * src/parse-gram.y (BRACED_CODE, action): These are no longer
6650 associated with a value.
6651 (rhs): Don't invoke grammar_current_rule_action_append.
6652 (action): Invoke it here instead.
6653 * src/reader.c (grammar_midrule_action): Now extern.
6654 (grammar_current_rule_action_append): Don't invoke
6655 grammar_midrule_action; that is now the scanner's job.
6656 * src/reader.h (last_string, last_braced_code_loc):
6657 (grammar_midrule_action): New decls.
6658 * src/scan-gram.l (last_string): Now extern, sigh.
6659 (last_braced_code_loc): New extern variable.
6660 (<INITIAL>"{"): Invoke grammar_midrule_action if the current
6661 rule already has an action.
6662 (<SC_BRACED_CODE>"}"): Set last_braced_code_loc before returning.
6663 * tests/input.at (AT_CHECK_UNUSED_VALUES):
6664 Add some tests to check that the above changes fixed the bug.
6665
6666 2006-01-27 Paul Eggert <eggert@cs.ucla.edu>
6667
6668 * src/reader.c (symbol_should_be_used): Renamed from symbol_typed_p.
6669 All used changed. Check whether the symbol has a destructor,
6670 not whether it is typed.
6671 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add a destructor, so
6672 that the values are still reported as unused. All line numbers
6673 adjusted.
6674
6675 2006-01-23 Paul Eggert <eggert@cs.ucla.edu>
6676
6677 Work around a bug in bro 0.8, which underparenthesizes its
6678 definition of YYLLOC_DEFAULT.
6679 * data/glr.c: Change all uses of YYLLOC_DEFAULT to parenthesize
6680 their arguments.
6681 * data/lalr1.cc: Likewise.
6682 * data/yacc.cc: Likewise.
6683
6684 2006-01-22 Paul Eggert <eggert@cs.ucla.edu>
6685
6686 Work around a bug in Pike 7.0, and give the Pike folks a
6687 better way to override the usual int widths.
6688 * data/yacc.c (b4_int_type): Use yytype_uint8, etc., so that the
6689 user can override the types.
6690 (short): #undef, to work around a bug in Pike 7.0.
6691 (yytype_uint8, yytype_int8, yytype_uint16, yytype_int16): New types.
6692 (union yyalloc.yyss): Use yytype_int16 rather than short.
6693 All uses changed.
6694 (yysigned_char): Remove.
6695 * src/parse-gram.y (YYTYPE_UINT8, YYTYPE_INT8, YYTYPE_UINT16):
6696 (YYTYPE_INT16): New macros, to test the new facility in yacc.c.
6697 * tests/regression.at (Web2c Actions): Adjust to above changes.
6698
6699 * src/reader.c (check_and_convert_grammar): New function.
6700 (reader): Close the input file even if something went wrong during
6701 parsing. Minor file descriptor leak reported by twlevo.
6702
6703 * src/assoc.c (assoc_to_string): Use a default: abort (); case
6704 to pacify gcc -Wswitch-default.
6705 * src/scan-gram.l (adjust_location): Use a default: break; case
6706 to pacify gcc -Wswitch-default.
6707 * src/scan-skel.h (skel_get_lineno, skel_get_in, skel_get_out):
6708 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
6709 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
6710 Move these decls to scan-skel.l, since they don't need to be
6711 visible elsewhere.
6712 * src/scan-skel.l: Accept the above decls.
6713 (skel_lex): New decl, to pacify GCC when unpatched flex 2.5.31
6714 is used.
6715
6716 2006-01-21 Paul Eggert <eggert@cs.ucla.edu>
6717
6718 * Makefile.cfg (local-checks-to-skip): Add changelog-check,
6719 since we don't want to insist on a version number at the start
6720 of the changelog every time.
6721 * Makefile.maint: Sync from coreutils a bit better.
6722 (sc_trailing_blank): Renamed from sc_trailing_space.
6723 All uses changed.
6724 (sc_no_if_have_config_h, sc_require_config_h):
6725 (sc_prohibit_assert_without_use): New rules.
6726 (sc_obsolete_symbols): Don't catch Makefile.maint itself.
6727 (sc_dd_max_sym_length): Fix leading spaces in rule.
6728 (sc_system_h_headers): Prefix with @.
6729 (sc_useless_cpp_parens, m4-check): Output line numbers.
6730 (changelog-check): Allow version only in head.
6731 * data/c.m4: Use "defined FOO" instead of "defined (FOO)", to
6732 satisfy new Makefile.maint rule.
6733 * data/glr.c: Likewise.
6734 * data/glr.cc: Likewise.
6735 * data/lalr1.cc: Likewise.
6736 * data/yacc.c: Likewise.
6737 * lib/ebitsetv.c: Likewise.
6738 * lib/lbitset.c: Likewise.
6739 * lib/subpipe.c: Likewise.
6740 * lib/timevar.c: Likewise.
6741 * src/system.h: Likewise.
6742 * data/yacc.c (YYSTYPE): Don't generate trailing spaces in output.
6743 * djgpp/Makefile.maint: Add copyright notice.
6744 * djgpp/README.in: Likewise.
6745 * djgpp/config.bat: Likewise.
6746 * djgpp/config.site: Likewise.
6747 * djgpp/config_h.sed: Likewise.
6748 * djgpp/djunpack.bat: Likewise.
6749 * djgpp/config.sed: Fix copyright notice to match standard format.
6750 * djgpp/subpipe.h: Likewise.
6751 * lib/bitsetv-print.c: Likewise.
6752 * lib/bitsetv.c: Likewise.
6753 * lib/subpipe.h: Likewise.
6754 * lib/timevar.c: Likewise.
6755 * lib/timevar.h: Likewise.
6756 * djgpp/subpipe.c: Use standard recipe for config.h.
6757 * lib/abitset.c: Likewise.
6758 * lib/bitset.c: Likewise.
6759 * lib/bitset_stats.c: Likewise.
6760 * lib/bitsetv-print.c: Likewise.
6761 * lib/bitsetv.c: Likewise.
6762 * lib/ebitsetv.c: Likewise.
6763 * lib/get-errno.c: Likewise.
6764 * lib/lbitset.c: Likewise.
6765 * lib/subpipe.c: Likewise.
6766 * lib/timevar.c: Likewise.
6767 * lib/vbitset.c: Likewise.
6768 * tests/local.at: Likewise.
6769 * src/scan-gram.l: Don't include verify.h, since system.h does
6770 that for us.
6771 * .x-sc_require_config_h: New file.
6772 * .x-sc_unmarked_diagnostics: New file.
6773
6774 2006-01-20 Paul Eggert <eggert@cs.ucla.edu>
6775
6776 Be a bit more systematic about using 'abort'.
6777 * lib/abitset.c (abitset_test): Remove ATTRIBUTE_UNUSED; not needed.
6778 * lib/bitset.c (bitset_bytes, bitset_init, bitset_op4_cmp):
6779 Put 'default: abort ();' before some other case, to satisfy older
6780 pedantic compilers.
6781 * lib/bitset_stats.c (bitset_stats_init): Likewise.
6782 * lib/ebitset.c (ebitset_elt_find, ebitset_op3_cmp): Likewise.
6783 * lib/lbitset.c (lbitset_elt_find, lbitset_op3_cmp): Likewise.
6784 * src/conflicts.c (resolve_sr_conflict): Likewise.
6785 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str):
6786 (get_decision_str, get_orientation_str, get_node_alignment_str):
6787 (get_arrow_mode_str, get_crossing_type_str, get_view_str):
6788 (get_linestyle_str, get_arrowstyle_str): Likewise.
6789 * src/conflicts.c (resolve_sr_conflict):
6790 Use a default case rather than one for the one remaining enum
6791 value, to catch invalid enum values as well.
6792 * src/lalr.c (set_goto_map, map_goto):
6793 Prefer "assert (FOO);" to "if (!FOO) abort ();".
6794 * src/nullable.c (nullable_compute, token_definitions_output):
6795 Likewise.
6796 * src/reader.c (packgram, reader): Likewise.
6797 * src/state.c (transitions_to, state_new, state_reduction_find):
6798 Likewise.
6799 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias):
6800 (symbol_pack): Likewise.
6801 * src/tables.c (conflict_row, pack_vector): Likewise.
6802 * src/scan-skel.l (QPUTS): Remove unnecessary parens.
6803 (BASE_QPUTS, "@output ".*\n): Remove unnecessary asserts.
6804 * src/system.h: Don't include <assert.h>.
6805 (assert): New macro.
6806
6807 * doc/bison.texinfo (Prologue, Rules, Actions, Union Decl, Action Decl):
6808 (Destructor Decl, Parser Function, Pure Calling):
6809 Describe rules for braces inside C code more carefully.
6810
6811 2006-01-19 Paul Eggert <eggert@cs.ucla.edu>
6812
6813 Fix some porting glitches found by Nelson H. F. Beebe.
6814 * lib/abitset.c (abitset_resize): Rewrite to avoid warnings from
6815 compilers that don't understand that abort () does not return.
6816 * src/state.c (transitions_to): Likewise.
6817 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
6818 that '#include <cstdlib>' works.
6819 * src/system.h (INT8_MIN, INT16_MIN, INT32_MIN, INT8_MAX):
6820 (INT16_MAX, UINT8_MAX, INT32_MAX, UINT16_MAX, UINT32_MAX):
6821 #undef if ! defined __STDC_VERSION__ || __STDC_VERSION__ < 199901,
6822 for the benefit of some pre-C99 compilers.
6823
6824 * bootstrap: Undo changes to gnulib files that autoreconf made.
6825
6826 Minor fixups to get 'make maintainer-check' to work.
6827 * configure.ac: Don't use -Wnested-externs, as it's incompatible
6828 with the new verify.h implementation.
6829 * data/c.m4 (b4_yy_symbol_print_generate): YYUSE (yyoutput).
6830 * data/glr.c (YYUSE): Depend on __GNUC__ as well.
6831 * data/yacc.c (YYUSE): Likewise.
6832 * data/lalr1.cc (yysyntax_error_): YYUSE (yystate).
6833 * lib/subpipe.c (end_of_output_subpipe): The args are unused.
6834 * src/parse-gram.y (declaration): Don't pass a string constant
6835 to a function that expects char *, since GCC might complain
6836 about the constant value.
6837 * src/reader.c (symbol_typed_p): Add parens to pacify GCC.
6838 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): #undef yylloc and yylval
6839 before #defining them.
6840 * tests/glr-regression.at
6841 (Incorrectly initialized location for empty right-hand side in GLR):
6842 In yyerror, use the msg arg.
6843 (Corrupted semantic options if user action cuts parse):
6844 (Incorrect lookahead during deterministic GLR):
6845 (Incorrect lookahead during nondeterministic GLR):
6846 Don't name a local var 'index'; it shadows string.h's 'index'.
6847
6848 2006-01-19 Akim Demaille <akim@epita.fr>
6849
6850 * tests/calc.at (_AT_DATA_CALC_Y): Initialize the whole initial
6851 location, not just parts of it.
6852
6853 2006-01-18 Paul Eggert <eggert@cs.ucla.edu>
6854
6855 * NEWS: Document the fact that multiple %unions are now allowed.
6856 * doc/bison.texinfo (Union Decl): Likewise.
6857 * TODO: This feature is now implemented, so remove it from
6858 the wishlist.
6859
6860 * Makefile.maint: Merge with coreutils Makefile.maint.
6861 (CVS_LIST): Use build-aux version if available.
6862 (VERSION_REGEXP): New macro.
6863 (syntax-check-rules): Add sc_no_if_have_config_h,
6864 sc_prohibit_assert_without_use, sc_require_config_h,
6865 sc_useless_cpp_parens.
6866 (sc_obsolete_symbols): Check for O_NDELAY.
6867 (sc_dd_max_sym_length): Track coreutils.
6868 (sc_unmarked_diagnostics): Look in all files, not just *.c.
6869 (sc_useless_cpp_parens): New rule.
6870 (news-date-check): Look for version or today's date.
6871 (changelog-check): Don't require version number near head.
6872 (copyright-check): Use current year instead of hardwiring 2005.
6873 (my-distcheck): Depend on $(release_archive_dir)/$(prev-tgz).
6874 (announcement): Add --gpg-key-ID.
6875
6876 * djgpp/config.sed: Add copyright notice, and replace "filesystem"
6877 with "file system".
6878
6879 Avoid undefined behavior that addressed just before the start of an
6880 array. Problem reported by twlevo.
6881 * src/reader.c (packgram): Prepend a new sentinel before ritem.
6882 * src/lalr.c (build_relations): Rely on new sentinel.
6883 * src/gram.c (gram_free): Adjust to new sentinel.
6884
6885 2006-01-12 Joel E. Denny <jdenny@ces.clemson.edu>
6886
6887 * data/glr.c (yyGLRStateSet): Rename yylookaheadStatuses to
6888 yylookaheadNeeds. All uses updated.
6889 (yysplitStack): Rename local yynewLookaheadStatuses to
6890 yynewLookaheadNeeds.
6891 * data/glr-regression.at (Incorrect lookahead during nondeterministic
6892 GLR): In comments, change `lookahead status' to `lookahead need'.
6893
6894 2006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
6895
6896 * data/glr.c (yysplitStack): A little stylistic rewrite.
6897
6898 2006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
6899
6900 * data/glr.c (yyaddDeferredAction): Flesh out the comment.
6901
6902 2006-01-11 Joel E. Denny <jdenny@ces.clemson.edu>
6903
6904 * doc/bison.texinfo: Fix some typos.
6905 (GLR Semantic Actions): New subsection discussing special
6906 considerations because GLR semantic actions might be deferred.
6907 (Actions): Mention look-ahead usage of yylval.
6908 (Actions and Locations): Mention look-ahead usage of yylloc.
6909 (Special Features for Use in Actions): Add YYEOF entry and mention it
6910 in the yychar entry.
6911 In the yychar entry, remove mention of the local yychar case (pure
6912 parser) since this is irrelevant information when writing semantic
6913 actions and since it's already discussed in `Table of Symbols' where
6914 yychar is otherwise described as an external variable.
6915 In the yychar entry, don't call it the `current' look-ahead since it
6916 isn't when semantic actions are deferred.
6917 In the yychar and yyclearin entries, add note about deferred semantic
6918 actions.
6919 Add yylloc and yylval entries discussing look-ahead usage.
6920 (Look-Ahead Tokens): When discussing yychar, don't call it the
6921 `current' look-ahead, and do mention yylval and yylloc.
6922 (Error Recovery): Cross-reference `Action Features' when mentioning
6923 yyclearin.
6924 (Table of Symbols): In the yychar entry, don't call it the `current'
6925 look-ahead.
6926 In the yylloc and yylval entries, mention look-ahead usage.
6927
6928 2006-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
6929
6930 * tests/glr-regression.at: Update copyright year to 2006.
6931
6932 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
6933
6934 * data/glr.c (yyGLRStateSet): Add yybool* yylookaheadStatuses member to
6935 use during nondeterministic operation to track which stacks have
6936 actually needed the current lookahead.
6937 (yyinitStateSet, yyfreeStateSet, yyremoveDeletes, yysplitStack):
6938 Allocate, deallocate, resize, and otherwise shuffle space for
6939 yylookaheadStatuses in parallel with yystates member of yyGLRStateSet.
6940 (yysplitStack, yyprocessOneStack, yyparse): Set lookahead status
6941 appropriately during nondeterministic operation.
6942 (yySemanticOption): Add int yyrawchar, YYSTYPE yyval, and YYLTYPE yyloc
6943 members to store the current lookahead to be used by the deferred
6944 user action.
6945 (yyaddDeferredAction): Add size_t yyk parameter specifying the stack
6946 from which the RHS is taken. Set the lookahead members of the new
6947 yySemanticOption according to the lookahead status for stack yyk.
6948 (yyglrShiftDefer, yyglrReduce): Pass yyk parameter on to
6949 yyaddDeferredAction.
6950 (yyresolveAction): Set yychar, yylval, and yylloc to the lookahead
6951 members of yySemanticOption before invoking yyuserAction, and then set
6952 them back to their current values afterward.
6953 (yyparse): Set yychar = YYEMPTY where yytoken = YYEMPTY.
6954 (yyreportAmbiguity): Add /*ARGSUSED*/ to pacify lint.
6955 * tests/glr-regression.at: Remove `.' from the ends of recent test case
6956 titles for consistency.
6957 (Leaked merged semantic value if user action cuts parse): In order to
6958 suppress lint warnings, use arguments in merge function, and assign
6959 char value < 128 in main.
6960 (Incorrect lookahead during deterministic GLR): New test case.
6961 (Incorrect lookahead during nondeterministic GLR): New test case.
6962
6963 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
6964
6965 * data/c.m4 (b4_yy_symbol_print_generate): In yy_symbol_print, accept
6966 !yyvaluep as signal that no semantic value is available to print.
6967 * data/glr.c (yydestroyGLRState): If state is not resolved, don't try
6968 to print a semantic value.
6969
6970 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
6971
6972 * tests/glr-regression.at: For consistency with my newer test cases,
6973 don't thank myself.
6974
6975 2006-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
6976
6977 * data/glr.c (yyresolveValue): When merging semantic options, if at
6978 least one user action succeeds but a later one cuts the parse, then
6979 destroy the semantic value before returning rather than leaking it.
6980 (yyresolveStates): If a user action cuts the parse and thus
6981 yyresolveValue fails, ignore the (unset) semantic value rather than
6982 corrupting the yyGLRState, and empty the semantic options list since
6983 the user actions should have called all necessary destructors.
6984 Simplify code with YYCHK.
6985 * tests/glr-regression.at (Corrupted semantic options if user action
6986 cuts parse): New test case.
6987 (Undesirable destructors if user action cuts parse): New test case.
6988 Before applying any of this patch, this test case never actually failed
6989 for me... but only because the corrupted semantic options usually
6990 masked this bug.
6991 (Leaked merged semantic value if user action cuts parse): New test
6992 case.
6993
6994 2006-01-05 Akim Demaille <akim@epita.fr>
6995
6996 * src/reader.c, src/symlist.h, src/symlist.c: s/mid_rule/midrule/.
6997
6998 2006-01-04 Paul Eggert <eggert@cs.ucla.edu>
6999
7000 * data/c.m4 (b4_c_modern): New macro, with a new provision for
7001 _MSC_VER. Problem reported by Cenzato Marco.
7002 (b4_c_function_def): Use it.
7003 * data/yacc.c (YYMODERN_C): Remove. All uses replaced by
7004 b4_c_modern.
7005 (yystrlen, yystpcpy, yyparse): Use b4_c_function... macros rather
7006 than rolling our own.
7007
7008 2006-01-04 Akim Demaille <akim@epita.fr>
7009
7010 Also warn about non-used mid-rule values.
7011 * src/symlist.h, src/symlist.c (symbol_list): Add a mid_rule
7012 member.
7013 (symbol_list_new): Adjust.
7014 * src/reader.c (symbol_typed_p): New.
7015 (grammar_rule_check): Use it.
7016 (grammar_midrule_action): Bind a mid-rule LHS to its rule.
7017 Check its rule.
7018 * tests/input.at (AT_CHECK_UNUSED_VALUES): New.
7019 Use it.
7020 * tests/actions.at (Exotic Dollars): Adjust.
7021
7022 2006-01-04 Akim Demaille <akim@epita.fr>
7023
7024 * src/reader.c (grammar_midrule_action): If $$ is set in a
7025 mid-rule, move the `used' bit to its lhs.
7026 * tests/input.at (Unused values): New.
7027 * tests/actions.at (Exotic Dollars): Adjust: exp is not typed.
7028
7029 2006-01-03 Paul Eggert <eggert@cs.ucla.edu>
7030
7031 * doc/bison.texinfo (Bison Options): Say more accurately what
7032 --yacc does.
7033 * src/parse-gram.y (rules_or_grammar_declaration): Don't complain
7034 about declarations in the grammar when in Yacc mode, as POSIX does
7035 not require a diagnostic when the grammar uses extensions.
7036
7037 * src/reduce.c (reduce_grammar): Remove unnecessary cast to bool.
7038
7039 Warn about dubious constructions like "%token T T".
7040 Reported by twlevo.
7041 * src/symtab.h (struct symbol.declared): New member.
7042 * src/symtab.c (symbol_new): Initialize it to false.
7043 (symbol_class_set): New arg DECLARING, specifying whether
7044 this is a declaration that we want to warn about, if there
7045 is more than one of them. All uses changed.
7046
7047 * data/glr.c, data/glr.cc, data/lalr1.cc, data/yacc.c:
7048 Allow multiple %union directives, whose contents concatenate.
7049 * src/parse-gram.y (grammar_declaration): Likewise.
7050 Use muscle_code_grow, so that we don't need stype_line any more.
7051 All uses changed.
7052
7053 * src/muscle_tab.c (muscle_grow): Fix comment.
7054
7055 * ChangeLog, data/c.m4, data/glr.c, data/glr.cc, data/location.cc:
7056 * data/yacc.c, src/getargs.c, src/output.c, tests/cxx-type.at:
7057 Update copyright year to 2006.
7058
7059 2006-01-03 Akim Demaille <akim@epita.fr>
7060
7061 Have glr.cc pass (some of) the calc.at tests.
7062 * data/glr.cc (b4_parse_param_orig): New.
7063 (b4_parse_param): Improve its definition, and bound it more
7064 clearly in the skeleton.
7065 (b4_epilogue): Append, instead of prepending, in order to keep
7066 #line consistency.
7067 Simplify the generation of auxiliary functions: locations and
7068 purity are mandated.
7069 (b4_global_tokens_and_yystype): Honor it.
7070 * data/location.cc (c++.m4): Don't include it.
7071 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Define AT_GLR_CC_IF
7072 and AT_SKEL_CC_IF.
7073 * tests/calc.at (AT_CHECK_CALC): Rely on AT_SKEL_CC_IF instead of
7074 AT_LALR1_CC_IF.
7075 Be sure to initialize the first position's filename.
7076 (AT_CHECK_CALC_LALR1_CC): Add %location and %defines, they are
7077 mandated anyway.
7078 (AT_CHECK_CALC_GLR_CC): New.
7079 Use it to exercise glr.cc as a lalr1.cc drop-in replacement.
7080
7081 2006-01-02 Akim Demaille <akim@epita.fr>
7082
7083 * src/output.c (output_skeleton): Don't hard wire the inclusion of
7084 c.m4.
7085 * data/c++.m4, data/glr.c, data/yacc.c: Include c.m4.
7086 * data/glr.cc: Do not include stack.hh.
7087
7088 2006-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
7089
7090 * data/glr.c: Reformat whitespace with tabs.
7091 (b4_lpure_formals): Remove this unused m4 macro.
7092 * tests/cxx-type.at: Reformat whitespace with tabs.
7093 (_AT_TEST_GLR_CXXTYPES): In union Node, rename node_info to nodeInfo
7094 since it's a member. Rename type to isNterm for clarity.
7095
7096 2005-12-29 Akim <akim@sulaco.local>
7097
7098 Let glr.cc catch up with symbol_value_print.
7099 * data/glr.cc (b4_yysymprint_generate): Replace by...
7100 (b4_yy_symbol_print_generate): this.
7101 (yy_symbol_print, yy_symbol_value_print): Declare them.
7102
7103 2005-12-28 Paul Eggert <eggert@cs.ucla.edu>
7104
7105 * src/location.h (boundary): Note that a line or column equal
7106 to INT_MAX indicates an overflow.
7107 * src/scan-gram.l: Include verify.h. Don't include get-errno.h.
7108 (rule_length_overflow, increment_rule_length, add_column_width):
7109 New functions.
7110 (<INITIAL>{id}, <SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'"):
7111 (<SC_BRACED_CODE>"}"):
7112 Use increment_rule_length rather than incrementing it by hand.
7113 (adjust_location, handle_syncline): Diagnose overflow.
7114 (handle_action_dollar, handle_action_at):
7115 Fix bug with monstrosities like $-2147483648.
7116 Remove now-unnecessary checks.
7117 (scan_integer): Verify assumptions and remove now-unnecessary checks.
7118 (convert_ucn_to_byte): Verify assumptions.
7119 (handle_syncline): New arg LOC. All callers changed.
7120 Don't store through a value derived from char const * pointer.
7121
7122 * src/reader.c (grammar_rule_check): Rewrite slightly to avoid
7123 GCC warnings.
7124
7125 2005-12-27 Paul Eggert <eggert@cs.ucla.edu>
7126
7127 * src/reader.c (grammar_midrule_action, grammar_symbol_append):
7128 Remove unnecessary forward static decls.
7129
7130 2005-12-27 Akim Demaille <akim@epita.fr>
7131
7132 * src/reader.c (grammar_current_rule_check): Also check that $$
7133 is used.
7134 Take the rule to check as argument, hence rename as...
7135 (grammar_rule_check): this.
7136 * src/reader.h, src/reader.c (grammar_rule_begin, grammar_rule_end):
7137 Rename as...
7138 (grammar_rule_begin, grammar_rule_end): these, for consistency.
7139 (grammar_midrule_action, grammar_symbol_append): Now static.
7140 * tests/torture.at (input): Don't rely on the default action
7141 being always performed.
7142 * tests/calc.at: "Set" $$ even when the action is "cut" with
7143 YYERROR or other.
7144 * tests/actions.at (Exotic Dollars): Instead of using unused
7145 values, check that the warning is issued.
7146
7147 2005-12-22 Paul Eggert <eggert@cs.ucla.edu>
7148
7149 * NEWS: Improve wording for unused-value warnings.
7150
7151 2005-12-22 Akim Demaille <akim@epita.fr>
7152
7153 * data/lalr1.cc, data/yacc.c, data/glr.c, data/c.m4
7154 (b4_yysymprint_generate): Rename as...
7155 (b4_yy_symbol_print_generate): this.
7156 Generate yy_symbol_print instead of yysymprint.
7157 Generate also yy_symbol_value_print, and use it.
7158
7159 2005-12-22 Akim Demaille <akim@epita.fr>
7160
7161 * NEWS: Warn about unused values.
7162 * src/symlist.h, src/symlist.c (symbol_list, symbol_list_new): Add
7163 a `used' member.
7164 (symbol_list_n_get, symbol_list_n_used_set): New.
7165 (symbol_list_n_type_name_get): Use symbol_list_n_get.
7166 * src/scan-gram.l (handle_action_dollar): Flag used symbols.
7167 * src/reader.c (grammar_current_rule_check): Check that values are
7168 used.
7169 * src/symtab.c (symbol_print): Accept 0.
7170 * tests/existing.at: Remove the type information.
7171 Empty the actions.
7172 Remove useless actions (beware of mid-rule actions: perl -000
7173 -pi -e 's/\s*\{\}(?=[\n\s]*[|;])//g').
7174 * tests/actions.at (Exotic Dollars): Use unused values.
7175 * tests/calc.at: Likewise.
7176 * tests/glr-regression.at (No users destructors if stack 0 deleted):
7177 Likewise.
7178
7179 * src/gram.c (rule_useful_p, rule_never_reduced_p): Use
7180 rule_useful_p.
7181
7182 2005-12-21 Paul Eggert <eggert@cs.ucla.edu>
7183
7184 Undo 2005-12-01 tentative license wording change. The wording is
7185 still being reviewed by the lawyers, and we don't want to wait for
7186 them before publishing a test release. For now, revert to the
7187 previous wording.
7188 * NEWS: Undo 2005-12-01 change.
7189 * data/glr.c: Revert to previous license wording.
7190 * data/glr.cc: Likewise.
7191 * data/lalr1.cc: Likewise.
7192 * data/location.cc: Likewise.
7193 * data/yacc.c: Likewise.
7194
7195 * NEWS: Reword %destructor vs YYABORT etc.
7196 * data/glr.c: Use American spacing, for consistency.
7197 * data/glr.cc: Likewise.
7198 * data/lalr1.cc: Likewise.
7199 * data/yacc.c: Likewise.
7200 * data/yacc.c: Reformat comments slightly.
7201 * doc/bison.texinfo: Replace "non-" with "non" when that makes sense,
7202 for consistency. Fix some spelling errors and reword recently-included
7203 text slightly.
7204 * tests/cxx-type.at: Cast results of malloc, for C++.
7205
7206 2005-12-21 Joel E. Denny <address@hidden>
7207
7208 * tests/cxx-type.at: Construct a tree, count the parents of shared
7209 nodes, and free each node once and only once. Previously, the memory
7210 for semantic values was leaked instead.
7211
7212 2005-12-21 Joel E. Denny <address@hidden>
7213
7214 * data/glr.c (struct yyGLRStack): If pure, add yyval and yyloc members.
7215 (yylval, yylloc): If pure, #define to yystackp->yyval and
7216 yystackp->yyloc similar to yychar and yynerrs.
7217 (yyparse): If pure, remove local yylval and yylloc. Add local
7218 yystackp to accommodate pure definitions of yylval and yylloc.
7219 (b4_lex_param, b4_lyyerror_args, b4_lpure_args): If pure, change
7220 yylvalp and yyllocp to &yylval and &yylloc.
7221 (nerrs, char, lval, lloc): If pure, add #define's for b4_prefix[]
7222 namespace. Previously, nerrs and char were missing, but lval and lloc
7223 weren't necessary.
7224 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Remove
7225 yylvalp and yyllocp parameters since, if pure, these are now always
7226 accessible through yystackp. If not pure, they are still accessible
7227 globally.
7228 * data/glr.c, data/yacc.c (YYLLOC_DEFAULT): Change `if (N)' to
7229 `if (YYID (N))' to pacify lint.
7230
7231 2005-12-21 Akim Demaille <akim@epita.fr>
7232
7233 YYACCEPT, YYERROR, and YYABORT, as user actions, should not
7234 destroy the RHS symbols of a rule.
7235 * data/yacc.c (yylen): Initialize to 0.
7236 Keep its value to the number of items to possibly shift.
7237 In particular, a regular successful parse that ends on YYFINAL by
7238 a (internal) YYACCEPT must not have yylen != 0.
7239 (yyerrorlab, yyreturn): Pop the RHS.
7240 Reorder a bit to emphasize the `shifting' bits of code.
7241 (YYPOPSTACK): Now accept a number of items to pop.
7242 * data/lalr1.cc: Likewise.
7243 * data/glr.c: Formatting changes.
7244 Use goto instead of fall through.
7245 * doc/bison.texinfo (Destructor Decl): Complete.
7246
7247 2005-12-20 Juan Manuel Guerrero <juan.guerrero@gmx.de>
7248
7249 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
7250 * djgpp/Makefile.maint: Fix PACKAGE variable computation.
7251 * djgpp/config.bat: Replace every occurence of the file name
7252 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
7253 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
7254 * djgpp/config.sed: Replace every occurence of the file name
7255 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
7256 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
7257 * djgpp/djunpack.bat: DJGPP specific file.
7258 * djgpp/fnchange.lst: DJGPP specific file.
7259 * djgpp/README.in: Add new information about how to unpack the bison
7260 source on MSDOS and other systems which have 8.3 file name restrictions
7261 using djunpack.bat and fnchange.lst.
7262
7263 2005-12-12 Paul Eggert <eggert@cs.ucla.edu>
7264
7265 * bootstrap (build_cvs_prefix): Remove; unused.
7266 (CVS_PREFIX): Adjust to yesterday's Savannah reorganization
7267 when getting gnulib.
7268
7269 2005-12-12 "Joel E. Denny" <jdenny@ces.clemson.edu>
7270
7271 * data/glr.c: Reorder typedef declarations for structs to match order
7272 of struct declarations.
7273 Rename yystack everywhere to yystackp except in yyparse where it's not
7274 a pointer.
7275 (yyglrShift): Change parameter YYSTYPE yysval to YYSTYPE* yyvalp for
7276 consistency.
7277 (yyis_table_ninf): Change 0 to YYID (0) to pacify lint.
7278 (yyreportSyntaxError): Add /*ARGSUSED*/ to pacify lint.
7279 (yyparse): Change while (yytrue) to while ( YYID (yytrue)) to pacify
7280 lint.
7281
7282 2005-12-09 Paul Eggert <eggert@cs.ucla.edu>
7283
7284 * tests/sets.at (Accept): Fix typos in regular expression used to
7285 sed out the final state number.
7286
7287 Work around portability problem on Solaris 10: flex-generated
7288 files include <stdio.h> before <config.h>, which messes up
7289 because the latter defines __EXTENSIONS__. Address the problem
7290 by creating two new little files that include <config.h> first,
7291 then include the flex-generated files. Rewrite everyone else
7292 to include <config.h> first, as well.
7293 * lib/timevar.c: Always include "config.h".
7294 * src/Makefile.am (bison_SOURCES): Replace scan-gram.l with
7295 scan-gram-c.c, and scan-skel.l with scan-skel-c.c.
7296 (EXTRA_bison_SOURCES): New macro.
7297 * src/scan-gram-c.c, src/scan-skel-c.c: New files.
7298 * src/system.h: Don't include config.h.
7299 * src/LR0.c: Include <config.h> first.
7300 * src/assoc.c: Likewise.
7301 * src/closure.c: Likewise.
7302 * src/complain.c: Likewise.
7303 * src/conflicts.c: Likewise.
7304 * src/derives.c: Likewise.
7305 * src/files.c: Likewise.
7306 * src/getargs.c: Likewise.
7307 * src/gram.c: Likewise.
7308 * src/lalr.c: Likewise.
7309 * src/location.c: Likewise.
7310 * src/main.c: Likewise.
7311 * src/muscle_tab.c: Likewise.
7312 * src/nullable.c: Likewise.
7313 * src/output.c: Likewise.
7314 * src/parse-gram.y: Likewise.
7315 * src/print.c: Likewise.
7316 * src/print_graph.c: Likewise.
7317 * src/reader.c: Likewise.
7318 * src/reduce.c: Likewise.
7319 * src/relation.c: Likewise.
7320 * src/state.c: Likewise.
7321 * src/symlist.c: Likewise.
7322 * src/symtab.c: Likewise.
7323 * src/tables.c: Likewise.
7324 * src/uniqstr.c: Likewise.
7325 * src/vcg.c: Likewise.
7326
7327 * src/parse-gram.y: Fix minor problems uncovered by lint.
7328 (current_lhs, current_lhs_location): Now static.
7329 (current_assoc): Remove unused variable.
7330
7331 Cleanups so that Bison-generated parsers have less lint.
7332 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate):
7333 Prepend /*ARGSUSED*/, for lint's sake.
7334 * data/glr.c (YYUSE): Properly parenthesize, and use an alternate
7335 definition if 'lint' is defined.
7336 (YYID): New macro (or function, if lint).
7337 All uses of /*CONSTCOND*/0 replaced by YYID(0).
7338 * data/yacc.c: Likewise.
7339 * data/glr.c (yyuserAction, yyuserMerge, yy_reduce_print):
7340 (yyrecoverSyntaxError): Prepend /*ARGSUSED*/.
7341 * data/glr.cc (YYLLOC_DEFAULT): Omit /*CONSTCOND*/ since this code
7342 is C++ only.
7343 * data/lalr1.cc (YYUSE): Just use a cast, since this code is C++ only.
7344 * data/yacc.c (YYSTACK_FREE) [defined YYSTACK_ALLOC]:
7345 Use YYID(0) rather than 0, for lint.
7346 (yystrlen): Rewrite to avoid lint warning about ptrdiff_t overflow.
7347 (yysyntax_error): Rewrite to avoid lint warnings about parenthesization.
7348
7349 2005-12-07 Paul Eggert <eggert@cs.ucla.edu>
7350
7351 * tests/glr-regression.at
7352 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
7353 Close memory leak reported by twlevo.
7354
7355 2005-12-06 "Joel E. Denny" <jdenny@ces.clemson.edu>
7356
7357 * data/glr.c (yyprocessOneStack, yyparse): Synchronize the shift for
7358 all stacks.
7359 (yyparse): Iterate another stack in order to call user destructors.
7360 * tests/glr-regression.at (No users destructors if stack 0 deleted):
7361 New test case.
7362 (Duplicated user destructor for lookahead): This test now is expected
7363 to succeed.
7364
7365 2005-12-01 Paul Eggert <eggert@cs.ucla.edu>
7366
7367 * NEWS: Document the following change.
7368 * data/yacc.c: Say "parser skeleton" rather than "file", since
7369 it's no longer just a file.
7370 * data/glr.c: Grant a special exception for C GLR parsers, that
7371 reads like the already-existing exception for C LALR(1) parsers.
7372 * data/glr.cc: Likewise.
7373 * data/lalr1.cc: Likewise.
7374 * data/location.cc: Likewise.
7375 * data/yacc.c: Reword the "written by" statement to clarify that
7376 it was the parser skeleton, not the entire output file.
7377 * data/glr.c: Written by Paul Hilfinger.
7378 * data/glr.cc: Written by Akim Demaille.
7379 * data/lalr1.cc: Likewise.
7380
7381 2005-11-18 Paul Eggert <eggert@cs.ucla.edu>
7382
7383 * data/yacc.c (yy_reduce_print, YY_REDUCE_PRINT):
7384 Fix typos in previous change that broke 'make check'.
7385 YY_REDUCE_PRINT cannot be a pseudo-varargs macro; that isn't
7386 supported in C.
7387 * tests/calc.at (_AT_CHECK_CALC,_AT_CHECK_CALC_ERROR):
7388 Don't check NUM-STDERR-LINES, since the output format is fluctuating.
7389 We can revert this once things settle down.
7390
7391 * src/conflicts.c (conflicts_print): Don't print file name twice
7392 when %expect fails because there were no conflicts.
7393 * doc/bison.texinfo (Expect Decl): Tighten up wording in previous
7394 change.
7395 * tests/conflicts.at (%expect not enough, %expect too much):
7396 (%expect with reduce conflicts): Adjust to new behavior.
7397
7398 2005-11-18 Akim Demaille <akim@epita.fr>
7399
7400 * src/conflicts.c (conflicts_print): Unsatisfied %expectation are
7401 errors.
7402 * NEWS: Document this.
7403 * doc/bison.texinfo (Expect Decl): Likewise.
7404
7405 2005-11-16 Akim Demaille <akim@epita.fr>
7406
7407 Generalize the display of semantic values and locations in traces.
7408 * data/glr.c (yy_reduce_print): Fix indices (again).
7409 * data/c++.m4 (b4_rhs_value, b4_rhs_location): Don't expect
7410 literal integers.
7411 * data/lalr1.cc (yyreduce_print): Rename as...
7412 (yy_reduce_print): this.
7413 Display values and locations.
7414 * data/yacc.c (yy_reduce_print): Likewise.
7415 (YY_REDUCE_PRINT): Adjust to pass the required arguments.
7416 (yysymprint): Move higher to be visible from yy_reduce_print).
7417 (yyparse): Adjust.
7418 * tests/calc.at: Adjust the expected length of the traces.
7419
7420 2005-11-14 Akim Demaille <akim@epita.fr>
7421
7422 * data/glr.c (yy_reduce_print): The loop was quite wrong: type are
7423 from 1 to N, while values and location start at 0.
7424 (b4_rhs_location, b4_rhs_value): Add parens around $1 and $2.
7425
7426 2005-11-14 Akim Demaille <akim@epita.fr>
7427
7428 * data/glr.c (yy_reduce_print): Fix the $ number.
7429
7430 2005-11-14 Akim Demaille <akim@epita.fr>
7431
7432 "Use" parse parameters.
7433 * data/c.m4 (b4_parse_param_for, b4_parse_param_use): New.
7434 * data/glr.c, data/glr.cc: Use them.
7435 * data/glr.c (YYUSE): Have a C++ definition that supports
7436 non-pointer types.
7437
7438 2005-11-14 Akim Demaille <akim@epita.fr>
7439
7440 * data/glr.c (yyexpandGLRStack): Declare only if defined.
7441
7442 2005-11-14 Akim Demaille <akim@epita.fr>
7443
7444 * data/glr.cc: New.
7445 * data/m4sugar/m4sugar.m4 (m4_prepend): New.
7446
7447 2005-11-12 Akim Demaille <akim@epita.fr>
7448
7449 Let position and location be PODs.
7450 * data/location.cc (position::initialize, location::initialize): New.
7451 (position::position, location::location): Define only if
7452 b4_location_constructors is defined.
7453 * data/lalr1.cc (b4_location_constructors): Define it for backward
7454 compatibility.
7455 * doc/bison.texinfo (Initial Action Decl): Use initialize.
7456
7457 2005-11-12 Akim Demaille <akim@epita.fr>
7458
7459 * data/lalr1.cc: Move the body of the ctor and dtor into the
7460 parser file (instead of the header).
7461 Wrap the implementations in a "namespace yy".
7462
7463 2005-11-12 Akim Demaille <akim@epita.fr>
7464
7465 Have glr.c include its header file when created.
7466 * data/glr.c (b4_shared_declarations): New.
7467 Output them verbatim in the parser if !%defines, otherwise
7468 output then in the header file, and include it instead.
7469
7470 2005-11-11 Akim Demaille <akim@epita.fr>
7471
7472 * data/glr.c: Comment changes.
7473
7474 2005-11-11 Akim Demaille <akim@epita.fr>
7475
7476 When yydebug, report semantic and location values for reductions.
7477 * data/glr.c (yy_reduce_print): Report the semantic values and the
7478 locations.
7479 (YY_REDUCE_PRINT): Adjust.
7480 (yyglrReduce): Use them.
7481 (b4_rhs_value, b4_rhs_location): Remove m4_eval invocations.
7482 * data/c.m4 (b4_yysymprint_generate): Specify the const arguments.
7483 * tests/calc.at (_AT_CHECK_CALC_ERROR): Remove the reduction
7484 traces.
7485
7486 2005-11-10 Akim Demaille <akim@epita.fr>
7487
7488 * data/glr.c (yynewGLRStackItem, YY_RESERVE_GLRSTACK): New.
7489 (yyaddDeferredAction, yyglrShift, yyglrShiftDefer): Use them.
7490 (yyexpandGLRStack, YYRELOC): Define only when YYSTACKEXPANDABLE.
7491
7492 2005-11-09 Albert Chin-A-Young <china@thewrittenword.com>
7493
7494 * m4/cxx.m4, examples/Makefile.am: Don't build
7495 examples/calc++ if no C++ compiler is available. (trivial change)
7496
7497 2005-11-09 Akim Demaille <akim@epita.fr>
7498
7499 * src/scan-skel.l: Use a couple of asserts.
7500
7501 2005-11-03 Akim Demaille <akim@epita.fr>
7502
7503 In some (weird) cases, the final state number is incorrect.
7504 Reported by Alexandre Duret-Lutz.
7505 * src/LR0.c (state_list_append): Remove the computation of
7506 final_state.
7507 (save_reductions): Do it here.
7508 (get_state): Alpha conversion.
7509 (generate_states): Use a for loop.
7510 * src/gram.h (item_number_is_rule_number)
7511 (item_number_is_symbol_number): New.
7512 * src/state.c: Use assert.
7513 * src/system.h: Include assert.h.
7514 * tests/sets.at (Accept): New.
7515
7516 2005-10-30 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
7517
7518 * data/glr.c (yyfill): Adjust comment.
7519 (yyresolveAction): Initialize default location properly
7520 for empty right-hand sides.
7521 (yydoAction): Ditto.
7522 Add comment explaining apparently dead code.
7523 * tests/glr-regression.at
7524 (Incorrectly initialized location for empty right-hand side in GLR):
7525 New test.
7526
7527 2005-10-30 Paul Eggert <eggert@cs.ucla.edu>
7528
7529 * bootstrap (cleanup_gnulib): New function. Use it to clean up
7530 gnulib when interrupted. This fixes some race conditions and
7531 works around some portability problems (one noted by Paul
7532 Hilfinger).
7533
7534 2005-10-22 Akim <akim@epita.fr>
7535
7536 * Makefile.cfg: Adjust to config -> build-aux.
7537 Reported by twledo.
7538
7539 2005-10-21 Akim Demaille <akim@epita.fr>
7540
7541 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Pass
7542 the %parse-params.
7543 * data/glr.c (YY_SYMBOL_PRINT, yydestroyGLRState): Adjust.
7544 * data/yacc.c (b4_Pure_if): Rename as...
7545 (b4_yacc_pure_if): this.
7546 (YY_SYMBOL_PRINT, yyparse): Adjust.
7547 * doc/bison.texinfo: Formatting changes.
7548
7549 2005-10-21 Akim Demaille <akim@epita.fr>
7550
7551 Finish the transition config -> build-aux.
7552 * configure.ac, Makefile.am: Use build-aux.
7553 * config/prev-version, config/announce-gen, config/Makefile.am:
7554 Move to...
7555 * build-aux/prev-version, build-aux/announce-gen,
7556 * build-aux/Makefile.am: here.
7557
7558 2005-10-14 Akim Demaille <akim@epita.fr>
7559
7560 * examples/calc++/test: Use set -x only when VERBOSE.
7561
7562 2005-10-13 Paul Eggert <eggert@cs.ucla.edu>
7563
7564 * NEWS: Bison now warns if it finds a stray `$' or `@' in an action.
7565 * src/scan-gram.l (<SC_BRACED_CODE>[$@]): Implement this.
7566
7567 2005-10-13 Akim Demaille <akim@epita.fr>
7568
7569 * src/scan-skel.l: Output the base name parts of the parser and
7570 header file names.
7571 * tests/output.at (AT_CHECK_OUTPUT): Support subdirectories, and
7572 additional checks.
7573 Use this to exercise C++ outputs in subdirs.
7574 Reported by Oleg Smolsky.
7575
7576 2005-10-12 Paul Eggert <eggert@cs.ucla.edu>
7577
7578 * data/c.m4 (b4_c_function_def): Look at __C99_FUNC__, not at
7579 __STDC_VERSION__, as IBM cc 7.0 doesn't define the latter either.
7580 Problem reported by John P. Hartmann.
7581 * data/yacc.c (YYMODERN_C): Likewise. Don't define if the user has
7582 already defined it.
7583
7584 2005-10-12 Akim Demaille <akim@epita.fr>
7585
7586 * src/parse-gram.y (version_check): Exit 63 to please missing
7587 (stands for "version mismatch).
7588 * tests/input.at, doc/bison.texinfo: Adjust.
7589
7590 2005-10-10 Paul Eggert <eggert@cs.ucla.edu>
7591
7592 Work around portability problems with Visual Age C compiler
7593 (xlc and xlC_r) reported by John P. Hartmann.
7594 * data/location.cc (initial_column, initial_line): Remove.
7595 All uses replaced by 0 and 1.
7596 * src/scan-gram.l (gram_wrap): Redefine to avoid bug in flex 2.5.31
7597 that xlc complains about.
7598 * src/scan-skel.l (skel_wrap): Likewise.
7599 * data/c.m4 (b4_c_function_def): Look at __STDC_VERSION__ as well
7600 as __STDC__.
7601 * data/yacc.c (YYMODERN_C): New macro, which also looks at
7602 __STDC_VERSION__. Use it everywhere instead of looking at
7603 __STDC__ and __cplusplus.
7604
7605 2005-10-10 Akim Demaille <akim@epita.fr>
7606
7607 * examples/calc++/test: Be quiet unless VERBOSE.
7608
7609 2005-10-05 Paul Eggert <eggert@cs.ucla.edu>
7610
7611 * data/c.m4 (yydestruct, yysymprint):
7612 Use YYUSE instead of casting to void.
7613 * data/glr.c (YYUSE): New macro.
7614 (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
7615 Use it instead of rolling our own.
7616 (YYLLOC_DEFAULT, YYCHK, YYDPRINTF, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
7617 (YYCHK1):
7618 Use /*CONSTCOND*/ to suppress lint warnings.
7619 * data/lalr1.cc (YYLLOC_DEFAULT, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
7620 (YY_STACK_PRINT): Use 'false' not '0'.
7621 (YYUSE): New macro.
7622 (yysymprint_, yydestruct_): Use it instead of rolling our own.
7623 * data/yacc.c (YYUSE): New macro.
7624 (YYCOPY, YYSTACK_RELOCATE, YYBACKUP, YYLLOC_DEFAULT):
7625 (YYDPRINTF, YY_SYMBOL_PRINT, YY_STACK_PRINT, YY_REDUCE_PRINT):
7626 (yyerrorlab): Use /*CONSTCOND*/ to suppress lint warnings.
7627
7628
7629 * data/m4sugar/m4sugar.m4 (_m4_map): New macro.
7630 (m4_map, m4_map_sep): Use it. Handle the empty list correctly.
7631
7632 2005-10-04 Paul Eggert <eggert@cs.ucla.edu>
7633
7634 Undo the parts of the unlocked-I/O change that substituted
7635 putc or puts for printf. This might hurt performance a bit,
7636 but some people prefer the printf style.
7637 * data/c.m4 (yysymprint): Prefer printf to puts and putc.
7638 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): Remove.
7639 All uses replaced by YYFPRINTF and YYDPRINTF.
7640 * data/yacc.c: Likewise.
7641 * lib/bitset.c (bitset_print): Likewise.
7642 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer printf to
7643 putc and puts.
7644 * lib/lbitset.c (debug_lbitset): Likewise.
7645 * src/closure.c (print_firsts, print_fderives): Likewise.
7646 * src/gram.c (grammar_dump): Likewise.
7647 * src/lalr.c (look_ahead_tokens_print): Likewise.
7648 * src/output.c (escaped_output): Likewise.
7649 (user_actions_output): Break apart two printfs.
7650 * src/parse-gram.y (%printer): Prefer printf to putc and puts.
7651 * src/reduce.c (reduce_print): Likewise.
7652 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
7653 * src/system.h: Include unlocked-io.h rathe than stdio.h.
7654
7655 * data/glr.c (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
7656 Use assignments rather than casts-to-void to suppress
7657 unused-variable warnings. This pacifies 'lint'.
7658 * data/lalr1.cc (yysymprint_, yydestruct_): Use a call to suppress
7659 unused-variable warnings.
7660
7661 2005-10-03 Juan Manuel Guerrero <juan.guerrero@gmx.de>
7662
7663 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
7664
7665 2005-10-02 Paul Eggert <eggert@cs.ucla.edu>
7666
7667 Use unlocked I/O for a minor performance improvement on hosts like
7668 GNU/Linux and Solaris that support unlocked I/O. The basic idea
7669 is to use the gnlib unlocked-io module, and to prefer putc and
7670 puts to printf when either will work (since the latter doesn't
7671 come in an unlocked flavor).
7672 * bootstrap (gnulib_modules): Add unlocked-io.
7673 * data/c.m4 (yysymprint): Prefer puts and putc to printf.
7674 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): New macros.
7675 Prefer them to YYFPRINTF and YYDPRINTF if either will do,
7676 and similarly for puts and putc and printf.
7677 * data/yacc.c: Likewise.
7678 * lib/bitset.c (bitset_print): Likewise.
7679 * lib/bitset.h [USE_UNLOCKED_IO]: Include unlocked-io.h.
7680 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer putc and puts
7681 to printf.
7682 * lib/lbitset.c (debug_lbitset): Likewise.
7683 * src/closure.c (print_firsts, print_fderives): Likewise.
7684 * src/gram.c (grammar_dump): Likewise.
7685 * src/lalr.c (look_ahead_tokens_print): Likewise.
7686 * src/output.c (escaped_output): Likewise.
7687 (user_actions_output): Coalesce two printfs.
7688 * src/parse-gram.y (%printer): Prefer putc and puts to printf.
7689 * src/reduce.c (reduce_print): Likewise.
7690 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
7691 * src/system.h: Include unlocked-io.h rather than stdio.h.
7692
7693 * data/lalr1.cc: Don't put an unmatched ' in a dnl comment, as
7694 this confuses xgettext.
7695
7696 2005-10-02 Akim Demaille <akim@epita.fr>
7697
7698 * bootstrap (gnulib_modules): Add strverscmp.
7699 * lib/.cvsignore: Add strverscmp.c, strverscmp.h.
7700 * m4/.cvsignore: Add strverscmp.m4.
7701 * src/parse-gram.y (%require): New token, new rule.
7702 (version_check): New.
7703 * src/scan-gram.l (%require): Adjust.
7704 * tests/input.at (AT_REQUIRE): New.
7705 Use it.
7706 * doc/bison.texinfo (Require Decl): New.
7707 (Calc++ Parser): Use %require.
7708
7709 2005-10-02 Akim Demaille <akim@epita.fr>
7710
7711 * data/location.cc: New.
7712
7713 2005-10-02 Paul Eggert <eggert@cs.ucla.edu>,
7714 Akim Demaille <akim@epita.fr>
7715
7716 Make sure -odir/foo.cc creates dir/location.hh etc.
7717 * src/files.h (spec_outfile, parser_file_name, spec_name_prefix)
7718 (spec_file_prefix, spec_verbose_file, spec_graph_file)
7719 (spec_defines_file): Now const.
7720 (dir_prefix): New.
7721 (short_base_name): Remove.
7722 * src/files.c: Adjust.
7723 (dirname.h): Include.
7724 (base_name): Don't prototype it.
7725 (finput): Remove, duplicates gram_in.
7726 (full_base_name, short_base_name): Replace by...
7727 (all_but_ext, all_but_tab_ext): these.
7728 (compute_base_names): Rename as...
7729 (compute_file_name_parts): this.
7730 Update to compute the new variables, including dir_prefix.
7731 Adjust dependencies.
7732 * src/output.c (prepare): Output them.
7733 * src/reader.c: Adjust to use gram_in, not finput.
7734 * src/scan-skel.l (@dir_prefix@): New.
7735
7736 2005-10-02 Juan Manuel Guerrero <juan.guerrero@gmx.de>
7737
7738 * lib/subpipe.c: New function end_of_output_subpipe() added
7739 to allow support for non-posix systems. This is a no-op function
7740 for posix systems.
7741
7742 * lib/subpipe.h: New function end_of_output_subpipe() added
7743 to allow support for non-posix systems. This is a no-op function
7744 for posix systems.
7745
7746 * src/output.c (output_skeleton): Use end_of_output_subpipe() to
7747 handle the lack of pipe/fork functionality on non-posix systems.
7748
7749 * djgpp/Makefile.maint: DJGPP specific file.
7750
7751 * djgpp/README.in: DJGPP specific file.
7752
7753 * djgpp/config.bat: DJGPP specific configuration file.
7754
7755 * djgpp/config.sed: DJGPP specific configuration file.
7756
7757 * djgpp/config.site: DJGPP specific configuration file.
7758
7759 * djgpp/config_h.sed: DJGPP specific configuration file.
7760
7761 * djgpp/subpipe.c: DJGPP specific replacement file for lib/subpipe.c.
7762
7763 * djgpp/subpipe.h: DJGPP specific replacement file for lib/subpipe.h.
7764
7765 2005-10-02 Akim Demaille <akim@epita.fr>
7766
7767 * data/location.cc: New, extract from...
7768 * data/lalr1.cc: here.
7769 (location.hh): Include it after the user prologue, in case the
7770 filename type is defined by the user.
7771 Forward declation location and position before the pre-prologue.
7772 (yyresult_): Rename as...
7773 (yyresult): this, it's a local variable, not an attribute.
7774 * data/Makefile.am (dist_pkgdata_DATA): Adjust.
7775
7776 2005-10-01 Akim Demaille <akim@epita.fr>
7777
7778 * examples/extexi: Restore the #line generation.
7779
7780 2005-09-30 Akim Demaille <akim@epita.fr>,
7781 Alexandre Duret-Lutz <adl@gnu.org>
7782
7783 Move the token type and YYSTYPE in the parser class.
7784 * data/lalr1.cc (stack.hh, location.hh): Include earlier.
7785 (parser::token): New, from the moved free definition of tokens.
7786 (parser::semantic_value): Now a full definition instead of an
7787 indirection to YYSTYPE.
7788 (b4_post_prologue): No longer included in the header file, but
7789 in the implementation file.
7790 * doc/bison.texi (C+ Language Interface): Update.
7791 * src/parse-gram.y: Support unary %define.
7792 * tests/actions.at: Define global_tokens_and_yystype for backward
7793 compatibility until we update the tests.
7794 * tests/calc.at: Idem.
7795 (first_line, first_column, last_line, last_column): Define for lalr1.cc
7796 to simplify the code.
7797
7798 2005-09-29 Paul Eggert <eggert@cs.ucla.edu>
7799
7800 Port to SunOS 4.1.4, which lacks strtoul and strerror.
7801 Ah, the good old days! Problem reported by Peter Klein.
7802 * bootstrap (gnulib_modules): Add strerror, strtoul.
7803 * lib/.cvsignore: Add strerror.c, strtol.c, strtoul.c
7804 * m4/.cvsignore: Add strerror.m4, strtol.m4, strtoul.m4.
7805
7806 2005-09-29 Akim Demaille <akim@epita.fr>
7807
7808 * data/c.m4 (b4_error_verbose_if): New.
7809 * data/lalr1.cc: Use it.
7810 (YYERROR_VERBOSE_IF): Remove.
7811 (yyn_, yylen_, yystate_, yynerrs_, yyerrstatus_): Remove as
7812 parser members, replaced by...
7813 (yyn, yylen, yystate, yynerss, yyerrstatus): these parser::parse
7814 local variables.
7815 (yysyntax_error_): Takes the state number as argument.
7816 (yyreduce_print_): Use the argument yyrule, not the former
7817 attribute yyn_.
7818
7819 2005-09-26 Paul Eggert <eggert@cs.ucla.edu>
7820
7821 * bootstrap (gnulib_modules): Add verify.
7822 * lib/.cvsignore: Add verify.h.
7823 * src/getargs.c: Use ARGMATCH_VERIFY rather than verify.
7824 * src/system.h (verify): Remove.
7825 Include verify.h instead.
7826 * src/tables.c (tables_generate): Use new API for 'verify'.
7827
7828 2005-09-21 Paul Eggert <eggert@cs.ucla.edu>
7829
7830 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Do not use
7831 local variables whose names begin with 'yy'.
7832 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
7833 Trivial changes from Joel E. Denny.
7834
7835 * bootstrap (gnulib_modules): Remove alloca. Bison doesn't need
7836 it itself.
7837 * src/main.c (main) [C_ALLOCA]: Don't flush alloca'ed memory; we
7838 don't use alloca any more.
7839
7840 * data/yacc.c [YYSTACK_USE_ALLOCA && !defined __GNUC__ && ! defined
7841 __BUILTIN_VA_ARG_INCR && ! defined _AIX && ! defined _MSC_VER &&
7842 defined _ALLOCA_H]: Don't include <stdlib.h>; not needed in this case.
7843 * tests/torture.at (Exploding the Stack Size with Alloca): Adjust
7844 to match yacc.c, to test more hosts.
7845
7846 2005-09-20 Paul Eggert <eggert@cs.ucla.edu>
7847
7848 * data/yacc.c (YYSIZE_T): Reindent to make it clearer. This
7849 doesn't affect behavior.
7850 (YYSTACK_ALLOC) [YYSTACK_USE_ALLOCA]: Improve support for
7851 Solaris, AIX, MSC.
7852 (_STDLIB_H): Renamed from YYINCLUDED_STDLIB_H. All uses changed.
7853 This works a bit better with glibc, if user code has already included
7854 stdlib.h.
7855 * doc/bison.texinfo (Bison Parser): Document that users can't
7856 arbitrarily use malloc and free for other purposes. Document
7857 that <alloca.h> and <malloc.h> might be included.
7858 (Table of Symbols): Under YYSTACK_USE_ALLOCA, Don't claim that the
7859 user must declare alloca.
7860
7861 * HACKING (release): Forwarn the Translation Project about
7862 stable releses.
7863
7864 2005-09-20 Akim Demaille <akim@epita.fr>
7865
7866 * data/glr.c: Use b4_token_enums, not b4_token_enums_defines.
7867
7868 2005-09-19 Paul Eggert <eggert@cs.ucla.edu>
7869
7870 * data/yacc.c (YYSIZE_MAXIMUM): New macro.
7871 (YYSTACK_ALLOC_MAXIMUM): Use it.
7872 (yysyntax_error): New function.
7873 (yyparse) [YYERROR_VERBOSE]: Don't leak memory indefinitely if
7874 multiple syntax errors are reported, and alloca is being used.
7875 Instead, reallocate buffers twice as big each time, so that
7876 we waste at most half the allocated memory. Start with a small
7877 (128-byte) buffer that will suffice in most cases anyway.
7878 Use yysyntax_error to do most of the work.
7879
7880 * doc/bison.texinfo (Error Reporting, Table of Symbols):
7881 yynerrs is the number of errors reported, not the number of
7882 errors encountered.
7883
7884 * tests/glr-regression.at (Duplicated user destructor for lookahead):
7885 Mark it as expected to fail.
7886 Cast result of malloc; problem reported by twlevo@xs4all.nl.
7887 * tests/actions.at, tests/calc.at, tests/glr-regression.at:
7888 Don't start user-code symbols with "yy", to avoid name space problems.
7889
7890 2005-09-19 Akim Demaille <akim@epita.fr>
7891
7892 Remove the traits, failed experiment.
7893 It never proved useful, and anyway because of the current
7894 definition, it was not possible to have several specialization of
7895 this traits, making it useless.
7896 * data/lalr1.cc (yy:traits): Remove.
7897 Inline its definitions in the parser class.
7898
7899 2005-09-19 Akim Demaille <akim@epita.fr>
7900
7901 * tests/atlocal.in (LIBS): Pass INTLLIBS to address failures on at
7902 least Mac OSX with a /usr/local install of gettext.
7903
7904 2005-09-19 Akim Demaille <akim@epita.fr>
7905
7906 * data/lalr1.cc (yyparse): Rename yylooka and yyilooka as yychar
7907 and yytoken for similarity with the other skeletons.
7908
7909 2005-09-19 Akim Demaille <akim@epita.fr>
7910
7911 * NEWS, configure.ac: update version number to 2.1a.
7912
7913 2005-09-16 Paul Eggert <eggert@cs.ucla.edu>
7914
7915 * NEWS: Version 2.1.
7916
7917 * NEWS: Remove notice of yytname change, since it was never in an
7918 official release.
7919 * data/glr.c (yydestroyGLRState): Rename local var to avoid shadowing
7920 diagnostic.
7921 * src/output.c (prepare): Likewise.
7922 * data/lalr1.cc (YYERROR_VERBOSE_IF): New macro.
7923 (yysyntax_error_): Use it to avoid GCC warning when YYERROR_VERBOSE
7924 is not defined. This is an awful hack, but it's enough for now.
7925 All callers changed.
7926 * tests/glr-regression-at (make_value): Args are const pointers now,
7927 to avoid GCC warning.
7928 (Duplicated user destructor for lookahead): New test. Currently
7929 skipped. It fails on my host but I'm not sure it'll always fail.
7930
7931 2005-09-16 Akim Demaille <akim@epita.fr>
7932
7933 * src/symtab.h (struct symbol): Declare the printer and destructor
7934 as const, to avoid accidental calls to free.
7935 (symbol_destructor_set, symbol_printer_set): Adjust.
7936 * src/symtab.c: Adjust.
7937
7938 2005-09-16 Akim Demaille <akim@epita.fr>
7939
7940 * data/c.m4 (b4_token_enums): New.
7941 (b4_token_defines): Rename as...
7942 (b4_token_enums_defines): this.
7943 (b4_token_defines): New, output only the #defines.
7944 * data/yacc.c, data/glr.c: Adjust.
7945 * data/lalr1.cc: Use b4_token_enums instead of b4_token_enums_defines.
7946 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Define
7947 as default values.
7948
7949 2005-09-16 Akim Demaille <akim@epita.fr>
7950
7951 * data/lalr1.cc (yylex_): Remove, inline its code.
7952 (yyreport_syntax_error_): Remove, replaced by...
7953 (yysyntax_error_): this which returns a string and leaves to the
7954 caller the call to the users' error function.
7955 (yylooka_, yyilooka_, yylval, yylloc, yyerror_range_, yyval, yyloc):
7956 Move from members of the parser object...
7957 (yylooka, yyilooka, yylval, yylloc, yyerror_range, yyval, yyloc):
7958 to local variables of the parse function.
7959
7960 2005-09-16 Akim Demaille <akim@epita.fr>
7961
7962 * doc/bison.texinfo (Calc++ Parser): Don't promote defining YYEOF
7963 since it's in Bison's name space.
7964
7965 2005-09-15 Paul Eggert <eggert@cs.ucla.edu>
7966
7967 * data/glr.c (yyresolveValue): Add default case to pacify
7968 gcc -Wswitch-default. Problem reported by twlevo@xs4all.nl.
7969
7970 * NEWS: Document when yyparse started to return 2.
7971 * doc/bison.texinfo (Parser Function): Document when yyparse
7972 returns 2.
7973
7974 * data/lalr1.cc: Revert part of previous change, as it's incompatible.
7975 (b4_filename_type): Renamed back from b4_file_name_type. All uses
7976 changed.
7977 (class position): file_name -> filename (reverting). All uses changed.
7978
7979 2005-09-14 Paul Eggert <eggert@cs.ucla.edu>
7980
7981 * examples/calc++/Makefile.am ($(calc_sources_generated)): Don't
7982 do anything if $@ exists. This reverts part of the 2005-07-07
7983 patch.
7984
7985 2005-09-11 Paul Eggert <eggert@cs.ucla.edu>
7986
7987 * Makefile.am (EXTRA_DIST): Do not distribute REFERENCES; it
7988 contains obsolete information and isn't worth distributing as a
7989 separate file anyway.
7990 * data/glr.c [defined YYSETJMP]: Don't include <setjmp.h>.
7991 (YYJMP_BUF, YYSETJMP, YYLONGJMP) [!defined YYSETJMP]: New macros.
7992 All uses of jmp_buf, setjmp, longjmp changed to use these instead.
7993 (yyparse): Abort if user code uses longjmp to throw an unexpected
7994 value.
7995
7996 2005-09-09 Paul Eggert <eggert@cs.ucla.edu>
7997
7998 * data/c.m4 (b4_identification): Define YYBISON_VERSION.
7999 Suggested by twlevo@xs4all.nl.
8000
8001 * data/glr.c (YYCHK1): Do not assume YYE is in range.
8002 This avoids a diagnostic from gcc -Wswitch-enum.
8003 Problem reported by twlevo@xs4all.nl.
8004
8005 * doc/bison.texinfo: Don't use "filename", as per GNU coding
8006 standards. Use "file name" or "file" or "name", depending on
8007 the context.
8008 (Invocation): The output of "bison hack/foo.y" goes to foo.tab.c,
8009 not to hack/foo.tab.c.
8010 (Calc++ Top Level): 2nd arg of main is not const.
8011 * data/glr.c: b4_filename -> b4_file_name.
8012 * data/lalr1.cc: Likewise. Also, b4_filename_type -> b4_file_name_type.
8013 All uses changed.
8014 (class position): filename -> file_name. All uses changed.
8015 * data/yacc.c: b4_filename -> b4_file_name.
8016 * lib/bitset.h: filename -> file_name in local vars.
8017 * lib/bitset_stats.c: Likewise.
8018 * src/files.c: Likewise.
8019 * src/scan-skel.l ("@output ".*\n): Likewise.
8020 * src/files.c (file_name_split): Renamed from filename_split.
8021 * src/muscle_tab.c (muscle_init): Output b4_file_name, not b4_filename.
8022
8023 2005-09-08 Paul Eggert <eggert@cs.ucla.edu>
8024
8025 * lib/.cvsignore: Add pipe-safer.c, stdio--.h, unistd--.h,
8026 to accommodate latest gnulib.
8027
8028 * tests/glr-regression.at (Duplicate representation of merged trees):
8029 Add casts to pacify g++. Problem reported by twlevo@xs4all.nl.
8030
8031 * bootstrap: Add comment as to why the AM_LANGINFO_CODESET hack is
8032 needed.
8033
8034 2005-08-26 Paul Eggert <eggert@cs.ucla.edu>
8035
8036 * data/glr.c (yydestroyGLRState): Renamed from yydestroyStackItem.
8037 All uses changed. Invoke user destructor after an error during a
8038 split parse (trivial change from Joel E. Denny).
8039
8040 * tests/glr-regression.at
8041 (User destructor after an error during a split parse): New test case.
8042 Problem reported by Joel E. Denny in:
8043 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00029.html
8044
8045 2005-08-25 Paul Eggert <eggert@cs.ucla.edu>
8046
8047 * README-cvs: Give URLs for recommended tools.
8048 Mention Gzip version problem, and bootstrapping issues.
8049 Remove troubleshooting section, as it's somewhat obsolete.
8050
8051 * bootstrap (no_cache): New var, to accommodate different wget
8052 variants. Use it instead of '-C off'. Problem reported by
8053 twlevo@xs4all.nl.
8054
8055 * data/glr.c (yydestroyStackItem): New function.
8056 (yyrecoverSyntaxError, yyreturn): Use it to improve quality of
8057 debugging information. Problem reported by Joel E. Denny.
8058
8059 2005-08-25 Akim Demaille <akim@epita.fr>
8060
8061 * tests/local.at (AT_COMPILE_CXX): Pass $LINKS too.
8062
8063 2005-08-24 Paul Eggert <eggert@cs.ucla.edu>
8064
8065 * data/glr.c (yyrecoverSyntaxError, yyreturn):
8066 Don't invoke destructor on unresolved entries.
8067 * tests/glr-regression.at
8068 (User destructor for unresolved GLR semantic value): New test case.
8069 Problem reported by Joel E. Denny in:
8070 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00016.html
8071
8072 2005-08-21 Paul Eggert <eggert@cs.ucla.edu>
8073
8074 * lib/.cvsignore: Remove realloc.c, strncasecmp.c, xstrdup.c.
8075 Add strnlen.c.
8076 * m4/.cvsignore: Remove codeset.m4, gettext.m4, lib-ld.m4,
8077 lib-prefix.m4, po.m4.
8078
8079 * data/glr.c (yyreturn): Use "Cleanup:" rather than "Error:"
8080 in yydestruct diagnostic, since it might not be an error.
8081 Problem reported by Joel Denny near end of
8082 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
8083 * data/lalr1.cc (yyerturn): Likewise.
8084 * data/yacc.c (yyreturn): Likewise.
8085 * tests/calc.at (_AT_CHECK_CALC_ERROR): Adjust to the above change.
8086
8087 * src/files.c: Remove obsolete FIXME comment.
8088
8089 * data/glr.c (YY_SYMBOL_PRINT): Append a newline, for consistency
8090 with the other templates, and to fix bogus run-on messages such
8091 as the one reported at the end of
8092 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
8093 All callers changed to avoid the newline.
8094 (yyprocessOneStack): Output two lines rather than one, to accommodate
8095 the above change. This changes the debug output format slightly.
8096
8097 * data/glr.c (yyresolveValue): Fix redundant parse tree problem
8098 reported by Joel E. Denny in
8099 <http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00004.html>
8100 (trivial change).
8101 * tests/glr-regression.at (Duplicate representation of merged trees):
8102 New test, from Joel E. Denny in:
8103 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00013.html>.
8104 * THANKS: Add Joel E. Denny.
8105
8106 * configure.ac (AC_INIT): Bump to 2.0c.
8107
8108 2005-07-24 Paul Eggert <eggert@cs.ucla.edu>
8109
8110 * NEWS: Version 2.0b.
8111
8112 * Makefile.am (SUBDIRS): Put examples before tests, so that
8113 "make check" doesn't finish with "All 1 tests passed".
8114
8115 * tests/regression.at (Token definitions): Don't rely on
8116 AT_PARSER_CHECK for data that contains backslashes. It currently
8117 uses 'echo', and 'echo' isn't portable if its argument contains
8118 backslashes. Problem found on OpenBSD 3.4. Also, do not assume
8119 that the byte '\0xff' is not printable in the C locale; it is,
8120 under OpenBSD 3.4 (!). Luckily, '\0x80' through '\0x9e' are
8121 not printable, so use '\0x81' to test.
8122
8123 * data/glr.c (YYOPTIONAL_LOC): Define even if it's not a recent
8124 version of GCC, since the macro is used with non-GCC compilers.
8125
8126 Fix core dump reported by Pablo De Napoli in
8127 <http://lists.gnu.org/archive/html/bug-bison/2005-07/msg00053.html>.
8128 * tests/regression.at (Invalid inputs with {}): New test.
8129 * src/parse-gram.y (token_name): Translate type before using
8130 it as an index.
8131
8132 * data/glr.c (ATTRIBUTE_UNUSED): Remove, since it infringes on
8133 the user's name space. All uses changed to __attribute__
8134 ((__unused__)).
8135 (yyFail, yyMemoryExhausted, yyreportAmbiguity):
8136 Add __attribute__ ((__noreturn__)).
8137
8138 * etc/clcommit: Remove. We weren't using it, and it failed
8139 "make maintainer-distcheck".
8140 * Makefile.maint: Merge from coreutils.
8141 (CVS_LIST, CVS_LIST_EXCEPT): New macros.
8142 (syntax-check-rules): Change list of rules as described below.
8143 (sc_cast_of_alloca_return_value, sc_dd_max_sym_length):
8144 (sc_file_system, sc_obsolete_symbols, sc_prohibit_atoi_atof):
8145 (sc_prohibit_jm_in_m4, sc_root_tests, sc_tight_scope):
8146 (sc_trailing_space): New rules.
8147 (sc_xalloc_h_in_src): Remove.
8148 (sc_cast_of_argument_to_free, sc_cast_of_x_alloc_return_value):
8149 (sc_space_tab, sc_error_exit_success, sc_changelog):
8150 (sc_system_h_headers, sc_sun_os_names, sc_unmarked_diagnostics):
8151 (makefile-check, po-check, author_mark_check):
8152 (makefile_path_separator_check, copyright-check):
8153 Use grep -n, to make it easier to find violations.
8154 Use CVS_LIST and CVS_LIST_EXCEPT.
8155 (header_regexp, h_re): Remove.
8156 (dd_c): New macro.
8157 (sc_dd_max_sym_length, .re-list, news-date-check): New rules.
8158 (my-distcheck): Use more-modern GCC flags.
8159 (signatures, %.asc): Remove.
8160 (rel-files, announcement): Remove signatures.
8161 Restore old updating code, even though we don't use it, so
8162 that we're the same as coreutils.
8163 (alpha, beta, major): Depend on news-date-check.
8164 Make the upload commands.
8165
8166 * data/c.m4, data/lalr1.cc, data/yacc.c: Normalize white space.
8167 * lib/abitset.h, lib/bbitset.h, lib/bitset.h: Likewise.
8168 * lib/bitset_stats.c, lib/ebitset.h, lib/lbitset.c: Likewise.
8169 * lib/libitset.h, lib/timevar.c, lib/vbitset.h: Likewise.
8170 * src/Makefile.am, src/gram.c, src/muscle_tab.h: Likewise.
8171 * src/parse-gram.y, src/system.h, src/tables.c, src/vcg.c: Likewise.
8172 * src/vcg_defaults.h, tests/cxx-type.at, tests/existing.at: Likewise.
8173 * tests/sets.at: Likewise.
8174
8175 * data/m4sugar/m4sugar.m4: Sync from Autoconf, except that
8176 we comment out the Autoconf version number.
8177 * doc/bison.texinfo (Calc++ Scanner): Don't use atoi, as
8178 it's error-prone and "make maintainer-distcheck" rejects it.
8179
8180 * lib/subpipe.c: Include <fcntl.h> without checking for HAVE_FCNTL_H.
8181 Indent calls to "error" to pacify "make maintainer-distcheck",
8182 when the calls are not intended to be translated.
8183 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't check for fcntl.h.
8184
8185 * src/Makefile.am (DEFS): Use +=, to pacify
8186 "make maintainer-distcheck".
8187 (bison_SOURCES): Add scan-skel.h.
8188 (sc_tight_scope): New rule, from coreutils.
8189
8190 * src/files.c (src_extension, header_extension):
8191 Now static, not extern.
8192 * src/getargs.c (short_options): Likewise.
8193 * src/muscle_tab.c (muscle_table): Likewise.
8194 * src/parse-gram.y (current_class, current_type, current_prec):
8195 Likewise.
8196 * src/reader.c (grammar_end, previous_rule_end): Likewise.
8197 * src/getargs.h: Redo comments to pacify "make maintainer-distcheck".
8198 * src/main.c (main): Cast bindtextdomain and textdomain calls to
8199 void, to avoid warning when NLS is disabled.
8200 * src/output.c: Include scan-skel.h.
8201 (scan_skel): Remove decl, since scan-skel.h does this.
8202 (output_skeleton):
8203 Indent calls to "error" to pacify "make maintainer-distcheck".
8204 * src/print_graph.c: Don't include <obstack.h>, as system.h does this.
8205 * src/reader.h (gram_end, gram_lineno): New decls to pacify
8206 "make maintainer-distcheck".
8207 * src/scan-skel.l (skel_lex, skel_get_lineno, skel_get_in):
8208 (skel_get_out, skel_get_leng, skel_get_text, skel_set_lineno):
8209 (skel_set_in, skel_set_out, skel_get_debug, skel_set_debug):
8210 (skel_lex_destroy, scan_skel): Move these decls to...
8211 * src/scan-skel.h: New file.
8212 * src/uniqstr.c (uniqstr_assert):
8213 Indent calls to "error" to pacify "make maintainer-distcheck".
8214
8215 * tests/Makefile.am ($(srcdir)/package.m4): Use $(VAR),
8216 not @VAR@.
8217
8218 * tests/torture.at: Revamp to avoid misuse of atoi that
8219 "make maintainer-distcheck" complained about.
8220
8221 * examples/extexi (message): Don't print a message more than once,
8222 and omit line-number decoration that makes Emacs compile think
8223 that informative messages are worth worrying about.
8224
8225 2005-07-22 Paul Eggert <eggert@cs.ucla.edu>
8226
8227 * configure.ac: Update version number.
8228
8229 * Makefile.am (SUBDIRS): Add examples; somehow this got removed
8230 accidentally.
8231 * examples/calc++/calc++-parser.yy: Remove from CVS, as it's
8232 autogenerated by the maintainer.
8233 * examples/calc++/.cvsignore: Add *.yy.
8234
8235 * lib/bitset.c (bitset_alloc): Don't cast xcalloc result.
8236 * lib/bitset_stats.c (bitset_stats_init): Likewise.
8237 * lib/bitsetv.c (bitsetv_alloc): Likewise.
8238
8239 * po/POTFILES.in: Add lib/xalloc-die.c; remove lib/xmalloc.c.
8240
8241 * src/relation.c (relation_transpose): Rewrite to avoid bogus complaint
8242 from maintainer-distcheck about casting the argument of 'free'.
8243
8244 * NEWS: Mention recent yytname changes.
8245 * THANKS: Add Anthony Heading, twlevo@xs4all.nl.
8246
8247 * bootstrap: For translations that have not yet been upgraded to
8248 the new runtime-po domain, prime the pump by extracting the
8249 relevant strings from the obsolete translations. This code can be
8250 removed once the bison-runtime domain has been translated by each
8251 team.
8252
8253 * src/scan-gram.l (<SC_PRE_CODE>.): Don't double-quote token names,
8254 now that token names are already quoted.
8255
8256 Fix problem reported by Anthony Heading.
8257 * data/glr.c (YYTOKEN_TABLE): New macro.
8258 (yytname): Define if YYTOKEN_TABLE.
8259 * data/yacc.c (YYTOKEN_TABLE, yytname): Likewise.
8260 * data/lalr1.cc (YYTOKEN_TABLE, yytname_): Likewise.
8261 (YYERROR_VERBOSE): Define the same way the other skeletons do.
8262 * src/output.c (prepare_symbols): Output token_table_flag.
8263
8264 2005-07-21 Paul Eggert <eggert@cs.ucla.edu>
8265
8266 * data/glr.c (yyinitGLRStack, yyreturn): Don't call malloc
8267 again if the first call fails.
8268
8269 * data/glr.c (yytnamerr): New function.
8270 (yyreportSyntaxError): Use it to dequote most string literals.
8271 * data/lalr1.c (yytname_): Renamed from yyname_, for compatibility
8272 with other skeletons. All uses changed.
8273 (yytnameerr_): New function.
8274 (yyreport_syntax_error): Use it to dequote most string literals.
8275 * data/yacc.c (yytnamerr): New function.
8276 (yyerrlab): Use it to decode most string literals.
8277 * doc/bison.texinfo (Decl Summary, Calling Convention):
8278 Clarify quoting convention of yytname.
8279 * src/output.c (prepare_symbols): Quote all names. This undoes
8280 the 2005-04-17 change, which is now accomplished (mostly) via
8281 changes in the parsers as described above.
8282 * tests/regression.at (Token definitions, Web2c Actions):
8283 Undo most 2005-04-17 change here, too.
8284
8285 2005-07-20 Paul Eggert <eggert@cs.ucla.edu>
8286
8287 Fix more problems reported by twlevo@xs4all.nl.
8288 * tests/cxx-type.at: Don't pipe output of ./types through sed to
8289 remove trailing spaces. This loses the exit status of ./types,
8290 and isn't needed since ./types shouldn't be emitting trailing
8291 spaces.
8292 * data/glr.c (yyreturn): Don't pop stack if yyinitStateSet failed,
8293 as the stack isn't valid in that case.
8294
8295 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
8296 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
8297 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
8298 Add declarations to pacify "gcc -Wmissing-prototypes" when flex 2.5.31
8299 is used.
8300 * src/scan-skel.l (skel_get_lineno, skel_get_in, skel_get_out):
8301 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
8302 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
8303 Likewise.
8304
8305 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Work even with
8306 overly-picky compilers that reject 'char *foo = "bar";'.
8307
8308 * src/symtab.c (SYMBOL_ATTR_PRINT, symbol_print): Direct output
8309 to FILE * parameter, not to stderr. This fixes a typo introduced
8310 in the 2005-07-12 change.
8311
8312 * lib/subpipe.c (create_subpipe): Rewrite slightly to avoid
8313 warnings from GCC 4.
8314
8315 * data/glr.c (yyexpandGLRStack, yyaddDeferredAction, yyexpandGLRStack):
8316 (yyglrShiftDefer, yysplitStack):
8317 Remove unused parameters b4_pure_formals. All uses changed.
8318 (yyglrShift): Remove unused parameters b4_user_formals.
8319 All uses changed.
8320 (yyglrReduce): Removed unused parameter yylocp. All uses changed.
8321
8322 2005-07-18 Paul Eggert <eggert@cs.ucla.edu>
8323
8324 Destructor cleanups and regularization among the three skeletons.
8325 * NEWS: Document the behavior changes.
8326 * data/glr.c (yyrecoverSyntaxError): Don't bother to pop the
8327 stack before failing, as the cleanup code will do it for us now.
8328 * data/lalr1.cc (yyerrlab): Likewise.
8329 * data/glr.c (yyparse): Pop everything off the stack before
8330 freeing it, so that destructors get called properly.
8331 * data/lalr1.cc (yyreturn): Likewise.
8332 * data/yacc.c (yyreturn): Pop and destroy the start symbol, too.
8333 This is more consistent.
8334 * doc/bison.texinfo (Destructor Decl): Mention more reasons
8335 why destructors might be called. 1.875 -> 2.1.
8336 (Destructor Decl, Decl Summary, Table of Symbols):
8337 Some English-language cleanups for %destructor.
8338 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
8339 Add output line for destructor of start symbol.
8340 * tests/calc.at (AT_CHECK_CALC): Add one to line counts,
8341 because of that same extra output line.
8342
8343 * NEWS: Document minor wording changes in diagnostics of
8344 Bison-generated parsers.
8345 * data/glr.c (yyMemoryExhausted): Renamed from yyStackOverflow.
8346 Remove unused formals. All uses changed.
8347 (yyreportAmbiguity): "ambiguity detected" -> "syntax is ambiguous".
8348 (yyparse): Rename yyoverflowlab to yyexhaustedlab.
8349 * data/yacc.c (yyparse): "parser stack overflow" -> "memory exhausted".
8350 Rename yyoverflowab to yyexhaustedlab.
8351 When memory exhaustion occurs during syntax-error reporting,
8352 report it separately rather than in a single diagnostic; this
8353 eases translation.
8354 * doc/bison.texinfo (Memory Management): Renamed from Stack Overflow.
8355 (Memory Exhausted): Renamed from Parser Stack Overflow.
8356 Revamp wording slightly to prefer "memory exhaustion".
8357 * tests/actions.at: "parser stack overflow" -> "memory exhausted".
8358
8359 * data/c.m4 (b4_yysymprint_generate): Use YYFPRINTF, not fprintf.
8360
8361 Add i18n support to the GLR skeleton. Partially fix the C++
8362 skeleton; a C++ expert needs to finish this. Remove debugging
8363 msgids; there's little point to having them translated, since they
8364 can be understood only by someone who can read the
8365 (English-language) source code.
8366
8367 Generate runtime-po/bison-runtime.pot automatically, so that we
8368 don't have to worry about garbage getting in that file. We'll
8369 make sure after the next official release that old msgids don't
8370 get lost. See
8371 <http://lists.gnu.org/archive/html/bison-patches/2005-07/msg00119.html>.
8372
8373 * runtime-po/Makefile.in.in, runtime-po/bison-runtime.pot: Remove.
8374 Now auto-generated.
8375 * PACKAGING: Don't claim that Gawk, GCC, Perl use this method yet.
8376 Fix typos in explanations of the runtime file.
8377 * bootstrap: Change gettext keyword from YYI18N to YY_.
8378 Use standard Makefile.in.in in runtime-po, since we'll arrange
8379 for backward-compatible bison-runtime.po files in a different way.
8380 * data/glr.c (YY_): New macro, from yacc.c.
8381 (yyuserAction, yyreportAmbiguity, yyreportSyntaxError, yyparse):
8382 Translate messages intended for users.
8383 (yyreportSyntaxError): Change "virtual memory" to "memory" to match
8384 the wording in the other skeletons. We don't know that the memory
8385 is virtual.
8386 * data/lalr1.cc (YY_): Renamed from _. All uses changed.
8387 Use same method that yacc.c uses.
8388 Don't translate debugging messages.
8389 (yy::yyreport_syntax_error): Put in a FIXME for the i18n stuff;
8390 it doesn't work (yet), and requires C++ expertise to fix.
8391 * data/yacc.c (YY_): Renamed from YY18N. All uses changed.
8392 Move defn to a more logical place, to be consistent with other
8393 skeletons.
8394 Don't translate debugging messages.
8395 Don't assume line numbers fit in unsigned int; use unsigned long fmts.
8396 * doc/bison.texinfo: Mention <libintl.h>. Change glibc cross reference
8397 to gettext cross reference. Add indexing terms. Mention YYENABLE_NLS.
8398 * runtime-po/POTFILES.in: Add data/glr.c, data/lalr1.cc.
8399
8400 Fix yyerror / yylex test glitches noted by twlevo@xs4all.nl.
8401 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Have yyerror return
8402 void, not int.
8403 * tests/glr-regression.at (Badly Collapsed GLR States):
8404 Likewise.
8405 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
8406 yylex should return 0 at EOF rather than aborting.
8407
8408 Improve tests for stack overflow in GLR parser.
8409 Problem reported by twlevo@xs4all.nl.
8410 * data/glr.c (struct yyGLRStack): Remove yyerrflag member.
8411 All uses removed.
8412 (yyStackOverflow): Just longjmp, but with value 2 so that caller
8413 can handle the problem.
8414 (YYCHK1): Use goto (a la yacc.c) rather than setting a flag.
8415 (yyparse): New local variable yyresult to record the result.
8416 Use result of setjmp to set it, rather than storing itinto
8417 struct.
8418 (yyDone): Remove label.
8419 (yyacceptlab, yyabortlab, yyoverflowlab, yyreturn): New labels,
8420 to mimic yacc.c. Do not discard lookahead if it's EOF (possible
8421 if YYABORT is used).
8422 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Exit with
8423 yyparse status; put status > 1 into diagnostic.
8424 Check that status==2 works.
8425 * tests/calc.at, tests/cxx-type.at, tests/glr-regression.at:
8426 Use exit status 3 for failure to open (which shouldn't happen).
8427
8428 2005-07-17 Paul Eggert <eggert@cs.ucla.edu>
8429
8430 * tests/conflicts.at (%nonassoc and eof): Don't exit with status
8431 1 on syntax error; just let yyparse do its thing.
8432 * tests/glr-regression.at (Badly Collapsed GLR States): Likewise.
8433 * tests/torture.at (AT_DATA_STACK_TORTURE): Likewise.
8434 (Exploding the Stack Size with Alloca):
8435 (Exploding the Stack Size with Malloc):
8436 Expect exit status 2, not 1, since the parser is supposed to blow
8437 its stack. Problem reported by twlevo@xs4all.nl.
8438
8439 * data/glr.c (yyparse): Don't assume that the initial calls
8440 to YYMALLOC succeed; in that case, yyparse incorrectly returned 0.
8441 Print a stack-overflow message and fail instead.
8442 Initialize the line-number information before creating the stack,
8443 so that the stack-overflow message can report line zero safely.
8444
8445 2005-07-14 Paul Eggert <eggert@cs.ucla.edu>
8446
8447 Fix problems reported by twlevo@xs4all.nl.
8448 * data/glr.c (YYSTACKEXPANDABLE): Don't define if already defined.
8449 (yyuserMerge): Provide a default case if b4_mergers is empty.
8450 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Define YYSTACKEXPANDABLE.
8451 * tests/glr-regression.at
8452 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
8453 Add casts to pacify C++ compilers.
8454 * tests/glr-regression.at (Improper merging of GLR delayed action
8455 sets): Declare yylex before using it.
8456 * tests/Makefile.am (maintainer-check-g++): Fix a stray
8457 $(GXX) that escaped the renaming of GXX to CXX. Remove bogus
8458 test for valgrind; valgrind is independent of g++.
8459 (maintainer-check-posix): Add _POSIX2_VERSION=200112, to check
8460 for compatibility with POSIX 1003.1-2001 (if running coreutils).
8461 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Port to stricter C++.
8462 Use a destructor, so that we can expand the stack. Change
8463 YYSTYPE to char * so that we can free it. Cast result of malloc.
8464
8465 2005-07-13 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
8466
8467 * data/glr.c (yyuserAction): Fix uninitialized variable that caused
8468 a valgrind failure. Problem reported by twlevo@xs4all.nl.
8469
8470 2005-07-13 Paul Eggert <eggert@cs.ucla.edu>
8471
8472 * PACKAGING: New file, suggested by Bruno Haible and taken from
8473 similar wording in gettext's PACKAGING file.
8474 * NEWS: Mention PACKAGING.
8475 * Makefile.am (EXTRA_DIST): Add PACKAGING.
8476
8477 2005-07-12 Paul Eggert <eggert@cs.ucla.edu>
8478
8479 * NEWS: Document recent i18n improvements.
8480 * bootstrap: Get runtime translations into runtime-po.
8481 Create runtime-po files automatically, if possible.
8482 * configure.ac: Invoke BISON_I18N, so that we eat our own dog food.
8483 * data/yacc.c: Rewrite inclusion of <libintl.h> so that ENABLE_NLS
8484 does not infringe on the user's name space.
8485 (YYENABLE_NLS): Renamed from ENABLE_BISON_NLS.
8486 * doc/bison.texinfo (Internationalization): Revamp the English
8487 and Texinfo syntax a bit, to try to make it clearer.
8488 (Bison Options, Option Cross Key): Mention --print-localedir.
8489 * m4/bison-i18n.m4 (BISON_I18N): Rename ENABLE_BISON_NLS to
8490 YYENABLE_NLS. Quote a bit more.
8491 * runtime-po/.cvsignore: New file.
8492 * runtime-po/Makefile.in.in (mostlyclean): Remove *.old.pot.
8493 * runtime-po/Rules-quot: Remove; now created by bootstrap.
8494 * runtime-po/quot.sed: Likewise.
8495 * runtime-po/boldquot.sed: Likewise.
8496 * runtime-po/en@quot.header: Likewise.
8497 * runtime-po/en@boldquot.header: Likewise.
8498 * runtime-po/insert-header.sin: Likewise.
8499 * runtime-po/remove-potcdate.sin: Likewise.
8500 * runtime-po/Makevars: Likewise.
8501 * runtime-po/LINGUAS: Likewise.
8502 * runtime-po/de.po: Likewise; we will rely on the translation project
8503 to maintain this, so "bootstrap" should get it.
8504 * src/getarg.c (PRINT_LOCALEDIR_OPTION): Let the C compiler determine
8505 its value.
8506 * src/main.c (main): Bind the bison-runtime domain, too.
8507
8508 2005-07-12 Bruno Haible <bruno@clisp.org>
8509
8510 * data/yacc.c: Include <libintl.h> when NLS is enabled.
8511 (YYI18N): Renamed from _. Use dgettext when NLS is enabled.
8512 * po/POTFILES.in: Remove autogenerated file src/parse-gram.c.
8513 * runtime-po: New directory.
8514 * runtime-po/Makefile.in.in: New file, copied from po/, with modified
8515 $(DOMAIN).pot-update rule, so that old messages are never dropped.
8516 * runtime-po/Rules-quot: New file, copied from po/.
8517 * runtime-po/quot.sed: Likewise.
8518 * runtime-po/boldquot.sed: Likewise.
8519 * runtime-po/en@quot.header: Likewise.
8520 * runtime-po/en@boldquot.header: Likewise.
8521 * runtime-po/insert-header.sin: Likewise.
8522 * runtime-po/remove-potcdate.sin: Likewise.
8523 * runtime-po/Makevars: New file.
8524 * runtime-po/POTFILES.in: New file.
8525 * runtime-po/LINGUAS: New file.
8526 * runtime-po/bison-runtime.pot: New file.
8527 * runtime-po/de.po: New file.
8528 * m4/bison.m4: New file.
8529 * Makefile.am (SUBDIRS): Add runtime-po.
8530 (aclocaldir, aclocal_DATA): New variables.
8531 * configure.ac: Add AC_CONFIG_FILES of runtime-po/Makefile.in.
8532 Define aclocaldir.
8533 * src/getargs.c (usage): Document --print-localedir option.
8534 (PRINT_LOCALEDIR_OPTION): New enum item.
8535 (long_options): Add --print-localedir option.
8536 (getargs): Handle --print-localedir option.
8537 * doc/bison.texinfo (Bison Parser): Remove paragraph about _().
8538 (Internationalization): New section.
8539
8540 2005-07-12 Akim Demaille <akim@epita.fr>
8541
8542 * src/symtab.h, src/symtab.c (symbol_print): Swap the arguments,
8543 for consistency with the rest of the code.
8544 * src/symlist.h, src/symlist.c (symbol_list_print): Ditto.
8545 Add separators.
8546
8547 2005-07-12 Akim Demaille <akim@epita.fr>
8548
8549 * src/parse-gram.y: Use %printer instead of YYPRINT.
8550
8551 2005-07-12 Akim Demaille <akim@epita.fr>
8552
8553 * src/symtab.h, src/symtab.c (symbol_print): New.
8554 * src/symlist.h, src/symlist.c (symbol_list_print): New.
8555 * src/symlist.c (symbol_list_n_type_name_get): Report the culprit.
8556
8557 2005-07-12 Akim Demaille <akim@epita.fr>
8558
8559 * data/glr.c (b4_syncline): Fix (swap) the definitions of
8560 b4_at_dollar and b4_dollar_dollar.
8561
8562 2005-07-11 Paul Eggert <eggert@cs.ucla.edu>
8563
8564 * doc/bison.texinfo (Mystery Conflicts): Add reference to DeRemer
8565 and Pennello's paper.
8566
8567 2005-07-09 Paul Eggert <eggert@cs.ucla.edu>
8568
8569 * data/yacc.c (yyparse): Undo previous patch. Instead,
8570 set yylsp[0] and yyvsp[0] only if the initial action
8571 sets yylloc and yylval, respectively.
8572
8573 * data/yacc.c (yyparse): In the initial action, set
8574 yylsp[0] and yyvsp[0] rather than yylloc and yylval.
8575 This avoids the use of undefined variables if the initial
8576 action does not set yylloc and/or yylval.
8577
8578 2005-07-07 Paul Eggert <eggert@cs.ucla.edu>
8579
8580 * examples/calc++/calc++-driver.cc, examples/calc++/calc++-driver.hh:
8581 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc:
8582 Remove from CVS. These files are automatically generated.
8583 * examples/extexi: Clarify that this file is now part of Bison,
8584 not GNU M4, and that it works with any POSIX-compatible Awk.
8585 * examples/calc++/Makefile.am (run_extexi): Remove; not used.
8586 ($(calc_extracted)): Renamed from $(calc_sources_extracted),
8587 so that we also get calc++-parser.yy. Geneate it.
8588 Use $(AWK), not gawk, since any conforming Awk will do.
8589 Put comment before action, since older 'make' can't handle comment
8590 in action.
8591 $(BUILT_SOURCES): List all built sources, not just some of them.
8592 $(MAINTAINERCLEANFILES): Remove *.stamp, and all built sources.
8593 $($(srcdir)/calc++-parser.stamp): Work even if POSIXLY_CORRECT.
8594 $($(calc_sources_generated)): Remove unnecessary test for existence
8595 of target. (This had a shell syntax error anyway; a stray "x".)
8596 (calc_extracted): List $(srcdir)/calc++-parser.yy, not
8597 calc++-parser.yy.
8598 * examples/.cvsignore, examples/calc++/.cvsignore: New files.
8599
8600 * bootstrap (gnulib_modules): Add gettext, now that it's no longer
8601 implied by the other modules.
8602
8603 2005-07-06 Akim Demaille <akim@epita.fr>
8604
8605 Bind examples/calc++ to the package.
8606 * examples/calc++/Makefile: Remove, replaced by...
8607 * examples/calc++/Makefile.am: ... this new file.
8608 * examples/calc++/test: Remove input.
8609 * examples/calc++/compile: Remove.
8610 * examples/Makefile.am: New.
8611 * configure.ac, Makefile.am: Adjust.
8612 * doc/Makefile.am (clean-local): New, for more recent texi2dvis.
8613
8614 2005-07-05 Paul Eggert <eggert@cs.ucla.edu>
8615
8616 * data/glr.c (yyFail): Drastically simplify; since the format argument
8617 never had any % directives, we can simply pass it to yyerror.
8618 (yyparse): Use "t a; a=b;" rather than "t a = b;" when a will
8619 be modified later, as that is the usual style in glr.c.
8620 Problems reported by Paul Hilfinger.
8621
8622 Rewrite GLR parser to catch more buffer overrun, storage exhaustion,
8623 and size overflow errors.
8624 * data/glr.c: Include <stdio.h> etc. after user prolog, not before,
8625 in case the user prolog sets feature-test macros like _GNU_SOURCE.
8626 (YYSIZEMAX): New macro.
8627 (yystpcpy): New function, taken from yacc.c.
8628 (struct yyGLRStack.yyspaceLeft): Now size_t, not int.
8629 (yyinitGLRStack, yyfreeGLRstack): Remove unnecessary forward decls,
8630 so that we don't have to maintain their signatures.
8631 (yyFail): Check for buffer overflow, by using vsnprintf rather
8632 than vsprintf. Allocate a bigger buffer if possible.
8633 Report an error if buffer allocation fails.
8634 (yyStackOverflow): New function.
8635 (yyinitStateSet, yyinitGLRStack): Return a boolean indicating whether
8636 the initialization was successful. It might fail if storage was
8637 exhausted.
8638 (yyexpandGLRStack): Add more checks for storage allocation failure.
8639 Use yyStackOverflow to report failures.
8640 (yymarkStackDeleted, yyglrShift, yyglrShiftDefer, yydoAction):
8641 (yysplitStack, yyprocessOneStack, yyparse, yypstack):
8642 Don't assume stack number fits in int.
8643 (yysplitStack): Check for storage allocation failure.
8644 (yysplitStack, yyprocessOneStack): Add pure_formals, so that we
8645 can print diagnostics on storage allocation failure. All callers
8646 changed.
8647 (yyresolveValue): Use yybool for boolean.
8648 (yyreportSyntaxError): Check for size-calculation overflow.
8649 This code is taken from yacc.c.
8650 (yyparse): Check for storage allocation errors when allocating
8651 the initial stack.
8652
8653 2005-07-05 Akim Demaille <akim@epita.fr>
8654
8655 Extract calc++ from the documentation.
8656 * doc/bison.texinfo (Calc++): Add the extraction marks.
8657 * examples/extexi: New, from the aborted GNU Programming 2E.
8658 Separate the different paragraph of a file with empty lines.
8659 * examples/Makefile: Use it to extract the whole calc++ example.
8660
8661 2005-06-24 Akim Demaille <akim@epita.fr>
8662
8663 * doc/bison.texinfo (C++ Parser Interface): Use defcv to define
8664 class typedefs.
8665
8666 2005-06-22 Akim Demaille <akim@epita.fr>
8667
8668 * doc/bison.texinfo (C++ Language Interface): First stab.
8669 (C++ Parsers): Remove.
8670
8671 2005-06-22 Akim Demaille <akim@epita.fr>
8672
8673 * data/lalr1.cc (yylex_): Honor %lex-param.
8674
8675 2005-06-22 Akim Demaille <akim@epita.fr>
8676
8677 Start a set of simple examples.
8678 * examples/calc++/Makefile, examples/calc++/calc++-driver.cc,
8679 * examples/calc++/calc++-driver.hh,
8680 * examples/calc++/calc++-parser.yy,
8681 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc,
8682 * examples/calc++/compile, examples/calc++/test: New.
8683
8684 2005-06-09 Paul Eggert <eggert@cs.ucla.edu>
8685
8686 * data/yacc.c (malloc, free) [defined __cplusplus]: Wrap inside
8687 extern "C" {}. This fixes a problem reported by Paul Hilfinger,
8688 which stems from the 2005-05-27 patch.
8689
8690 2005-06-06 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
8691
8692 * data/glr.c: Modify treatment of unused parameters to permit use
8693 of g++ (which doesn't allow __attribute__ ((unused)) for parameters).
8694
8695 2005-05-30 Paul Eggert <eggert@cs.ucla.edu>
8696
8697 Fix infringement on user name space reported by Janos Zoltan Szabo.
8698 * data/yacc.c (yyparse): strlen -> yystrlen.
8699
8700 2005-05-30 Akim Demaille <akim@epita.fr>
8701
8702 * data/lalr1.cc (_): New.
8703 Translate the various messages.
8704
8705 2005-05-27 Paul Eggert <eggert@cs.ucla.edu>
8706
8707 Fix infringement on user name space reported by Bruno Haible.
8708 * data/yacc.c (YYSIZE_T): Define first, so that later decls can use it.
8709 Prefer GCC's __SIZE_TYPE__ if available, so that we don't infringe on
8710 the user's name space.
8711 (alloca): Include <stdlib.h> to get it, if it's not built in.
8712 (YYMALLOC, YYFREE): Define only if needed.
8713 (malloc, free): Declare, but only if needed, as this infringes on
8714 the user name space.
8715
8716 2005-05-25 Paul Eggert <eggert@cs.ucla.edu>
8717
8718 Fix BeOS, FreeBSD, MacOS porting problems reported by Bruno Haible.
8719 * lib/bitset.c (bitset_print): Don't assume size_t can be printed
8720 with %d format.
8721 * lib/ebitset.c (min, max): Undef before defining.
8722 * lib/vbitset.c (min, max): Likewise.
8723 * lib/subpipe.c (create_subpipe): Save local variables in case
8724 vfork clobbers them.
8725
8726 2005-05-24 Bruno Haible <bruno@clisp.org>
8727
8728 * tests/synclines.at (AT_SYNCLINES_COMPILE): Add support for the
8729 error message syntax used by gcc-4.0.
8730
8731 2005-05-23 Paul Eggert <eggert@cs.ucla.edu>
8732
8733 * README: Mention m4 1.4.3. Remove obsolete advice about
8734 Sun Forte Developer 6 update 2, VMS, and MS-DOS.
8735
8736 * bootstrap: Remove workaround for problem I encountered with
8737 gettext 0.14.1; it seems to be fixed now.
8738
8739 2005-05-22 Paul Eggert <eggert@cs.ucla.edu>
8740
8741 * NEWS: Version 2.0a.
8742
8743 * src/files.c: Include "stdio-safer.h"; this fixes a typo in
8744 the previous change.
8745
8746 Various maintainer cleanups.
8747 * .cvsignore: Add a.exe, a.out, b.out,, conf[0-9]*, confdefs*,
8748 conftest*, for benefit of CVS commands run at the same time as
8749 "configure". Add build-aux, since "bootstrap" now creates it and
8750 its subfiles.
8751 * Makefile.cfg (move_if_change): Remove.
8752 * Makefile.maint: Remove the update stuff; we now use "bootstrap".
8753 (ftp-gnu, www-gnu, move_if_change, local_updates, update):
8754 (po_repo, do-po-update, po-update, wget_files, get-targets):
8755 (config.guess-url_prefix, config.sub-url_prefix):
8756 (ansi2knr.c-url_prefix, texinfo.tex-url_prefix):
8757 (standards.texi-url_prefix, make-stds.texi-url_prefix, taget, url):
8758 ($(get-targets), cvs-files, automake_repo, wget-update, cvs-update):
8759 Remove.
8760 * configure.ac (AC_CONFIG_AUX_DIR): Change from config to build-aux;
8761 this is now the recommended name.
8762 * config/.cvsignore: Remove config.guess, config.rpath, config.sub,
8763 depcomp, install-sh, mdate-sh, missing, mkinstalldirs, texinfo.tex,
8764 ylwrap. These files now go into build-aux.
8765 * config/move-if-change: Remove.
8766 * config/prev-version.txt: Bump from 1.75 to 2.0.
8767
8768 * bootstrap: Add stdio-safer, unistd-safer modules.
8769 Remove m4/glibc2.m4 (introduced by latest gnulib, but
8770 we don't need it).
8771 * lib/.cvsignore: Add dup-safer.c, fd-safer.c,
8772 fopen-safer.c, stdio-safer.h, unistd-safer.h.
8773 * lib/subpipe.c: Include "unistd-safer.h".
8774 (create_subpipe): Make sure all the newly-created
8775 file descriptors are > 2, so that diagnostics don't
8776 get sent down them (which might cause Bison to hang, in theory).
8777 * m4/.cvsignore: Add stdio-safer.m4, unistd-safer.m4.
8778 * src/files.c (xfopen): Use fopen_safer, not fopen.
8779
8780 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Port
8781 yesterday's yacc.c fix.
8782
8783 2005-05-21 Paul Eggert <eggert@cs.ucla.edu>
8784
8785 * data/glr.c, data/lalr1.cc: Update copyright date.
8786
8787 Fix a destructor bug reported by Wolfgang Spraul in
8788 <http://lists.gnu.org/archive/html/bug-bison/2005-05/msg00042.html>.
8789 * data/yacc.c (yyabortlab): Don't call destructor, and
8790 don't set yychar to EMPTY.
8791 (yyoverflowlab): Don't call destructor.
8792 (yyreturn): Call destructor, if yychar is neither YYEOF nor YYEMPTY.
8793 * tests/calc.at (AT_CHECK_CALC): Expect one fewer output lines,
8794 since we no longer output the message "discarding lookahead token
8795 end of input ()".
8796
8797 2005-05-20 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
8798
8799 * data/glr.c (YY_SYMBOL_PRINT): Don't print newline at end to
8800 fix a small glitch in debugging output.
8801 (yyprocessOneStack, yyrecoverSyntaxError, yyparse): Print newline
8802 after YY_SYMBOL_PRINT where needed.
8803
8804 (struct yyGLRState): Add some comments.
8805 (struct yySemanticOption): Add some comments.
8806 (union yyGLRStackItem): Add comment.
8807
8808 (yymergeOptionSets): Correct this to properly perform the union,
8809 avoiding infinite reported by Michael Rosien.
8810 Update comment.
8811
8812 * tests/glr-regression.at: Add test for GLR merging error reported
8813 by M. Rosien.
8814
8815 2005-05-13 Paul Eggert <eggert@cs.ucla.edu>
8816
8817 * COPYING, ChangeLog, GNUmakefile, HACKING, Makefile.am,
8818 Makefile.cfg, Makefile.maint, NEWS, README, README-alpha,
8819 README-cvs, TODO, bootstrap, configure.ac, data/Makefile.am,
8820 data/README, data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c,
8821 data/m4sugar/m4sugar.m4, doc/Makefile.am, doc/bison.texinfo,
8822 doc/fdl.texi, doc/gpl.texi, doc/refcard.tex, lib/Makefile.am,
8823 lib/abitset.c, lib/abitset.h, lib/bbitset.h, lib/bitset.c,
8824 lib/bitset.h, lib/bitset_stats.c, lib/bitset_stats.h,
8825 lib/bitsetv-print.c, lib/bitsetv-print.h, lib/bitsetv.c,
8826 lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/get-errno.c,
8827 lib/get-errno.h, lib/lbitset.c, lib/lbitset.h, lib/libiberty.h,
8828 lib/main.c, lib/subpipe.c, lib/subpipe.h, lib/timevar.c,
8829 lib/timevar.def, lib/timevar.h, lib/vbitset.c, lib/vbitset.h,
8830 lib/yyerror.c, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4, m4/timevar.m4,
8831 m4/warning.m4, src/LR0.c, src/LR0.h, src/Makefile.am, src/assoc.c,
8832 src/assoc.h, src/closure.c, src/closure.h, src/complain.c,
8833 src/complain.h, src/conflicts.c, src/conflicts.h, src/derives.c,
8834 src/derives.h, src/files.c, src/files.h, src/getargs.c,
8835 src/getargs.h, src/gram.c, src/gram.h, src/lalr.c, src/lalr.h,
8836 src/location.c, src/location.h, src/main.c, src/muscle_tab.c,
8837 src/muscle_tab.h, src/nullable.c, src/nullable.h, src/output.c,
8838 src/output.h, src/parse-gram.c, src/parse-gram.h,
8839 src/parse-gram.y, src/print.c, src/print.h, src/print_graph.c,
8840 src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c,
8841 src/reduce.h, src/relation.c, src/relation.h, src/scan-gram.l,
8842 src/scan-skel.l, src/state.c, src/state.h, src/symlist.c,
8843 src/symlist.h, src/symtab.c, src/symtab.h, src/system.h,
8844 src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h,
8845 src/vcg.c, src/vcg.h, src/vcg_defaults.h, tests/Makefile.am,
8846 tests/actions.at, tests/c++.at, tests/calc.at, tests/conflicts.at,
8847 tests/cxx-type.at, tests/existing.at, tests/glr-regression.at,
8848 tests/headers.at, tests/input.at, tests/local.at, tests/output.at,
8849 tests/reduce.at, tests/regression.at, tests/sets.at,
8850 tests/synclines.at, tests/testsuite.at, tests/torture.at:
8851 Update FSF postal mail address.
8852
8853 2005-05-11 Paul Eggert <eggert@cs.ucla.edu>
8854
8855 * tests/local.at (AT_COMPILE_CXX): Treat LDFLAGS like AT_COMPILE does.
8856 Problem reported by Ralf Menzel.
8857
8858 2005-05-01 Paul Eggert <eggert@cs.ucla.edu>
8859
8860 * tests/actions.at: Test that stack overflow invokes destructors.
8861 From Marcus Holland-Moritz.
8862 * data/yacc.c (yyerrlab): Move the code that destroys the stack
8863 from here....
8864 (yyreturn): to here. That way, destructors are called properly
8865 even if the stack overflows, or the user calls YYACCEPT or
8866 YYABORT. Stack-overflow problem reported by Marcus Holland-Moritz.
8867 (yyoverflowlab): Destroy the lookahead.
8868
8869 2005-04-24 Paul Eggert <eggert@cs.ucla.edu>
8870
8871 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): Add more-descriptive comment.
8872
8873 2005-04-17 Paul Eggert <eggert@cs.ucla.edu>
8874
8875 * NEWS: Bison-generated C parsers no longer quote literal strings
8876 associated with tokens.
8877 * src/output.c (prepare_symbols): Don't escape strings,
8878 since users don't want to see C escapes.
8879 * tests/calc.at (AT_CHECK_CALC): Adjust to lack of quotes
8880 in diagnostics.
8881 * tests/input.at (Torturing the Scanner): Likewise.
8882 * tests/regression.at (Token definitions, Web2c Actions): Likewise.
8883
8884 2005-04-16 Paul Eggert <eggert@cs.ucla.edu>
8885
8886 * tests/torture.at (AT_INCREASE_DATA_SIZE): Skip the test if
8887 the data size is known to be too small and we can't increase it.
8888 This works around an HP-UX 11.00 glitch reported by Andrew Benham.
8889
8890 2005-04-15 Paul Eggert <eggert@cs.ucla.edu>
8891
8892 * src/parse-gram.y: Include quotearg.h.
8893 (string_as_id): Quote $1 before using it as a key, since the
8894 lexer no longer quotes it for us.
8895 (string_content): Don't strip quotes, since lexer no longer
8896 quotes it for us.
8897 * src/scan-gram.l: Include quotearg.h.
8898 ("\""): Omit quote.
8899 ("'"<SC_ESCAPED_CHARACTER>): Quote symbol before using it as
8900 a key, since the rest of the lexer doesn't quote it.
8901 * src/symtab.c (symbol_get): Don't quote symbol; caller does it now.
8902 * tests/regression.at (Token definitions): Check for backslashes
8903 in token strings.
8904
8905 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): New macro.
8906 (YYSIZE_T): Define to unsigned long int when using an older compiler.
8907 (yyparse): Revamp code to generate long syntax error message, to
8908 make it easier to translate, and to avoid problems with arithmetic
8909 overflow. Change "virtual memory" to "memory" in diagnostic, since
8910 we don't know whether the memory is virtual.
8911
8912 2005-04-13 Paul Eggert <eggert@cs.ucla.edu>
8913
8914 * NEWS: Bison-generated C parsers now use the _ macro to
8915 translate strings.
8916 * data/yacc.c (_) [!defined _]: New macro.
8917 All English strings wrapped inside this macro.
8918 * doc/bison.texinfo (Bison Parser): Document _.
8919 * po/POTFILES.in: Include src/parse-gram.c, since it now
8920 includes translateable strings that parse-gram.y doesn't.
8921
8922 2005-04-12 Paul Eggert <eggert@cs.ucla.edu>
8923
8924 * src/symtab.c (symbol_make_alias): Call symbol_type_set,
8925 reverting the 2004-10-11 change to this function.
8926 (symbol_check_alias_consistency): Don't call symbol_type_set
8927 if the type name is already correct.
8928 * tests/input.at (Typed symbol aliases): New test, from Tim Van Holder.
8929
8930 2005-03-25 Paul Eggert <eggert@cs.ucla.edu>
8931
8932 * tests/regression.at (Token definitions): Don't use a token named
8933 c, as that generates a "#define c ..." that runs afoul of buggy
8934 stdlib.h that uses the identifier c as a member of struct
8935 drand48_data. Problem reported by Horst Wente.
8936
8937 2005-03-21 Paul Eggert <eggert@cs.ucla.edu>
8938
8939 * bootstrap: Change translation URL from
8940 http://www2.iro.umontreal.ca/~gnutra/po/maint/bison/ to
8941 http://www.iro.umontreal.ca/translation/maint/bison/ to avoid
8942 redirection glitches. Problem reported by twlevo@xs4all.nl.
8943
8944 2005-03-20 Paul Eggert <eggert@cs.ucla.edu>
8945
8946 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Don't put options
8947 after operands; POSIX says this isn't portable for the c99 command.
8948
8949 2005-03-18 Paul Eggert <eggert@cs.ucla.edu>
8950
8951 * tests/glr-regression.at (glr-regr2a.y): Try to dump core
8952 immediately if a data overrun has occurred; this may help us track
8953 down what may be a spurious failure on MacOS.
8954
8955 2005-03-17 Paul Eggert <eggert@cs.ucla.edu>
8956
8957 Respond to problems reported by twlevo@xs4all.nl.
8958
8959 * bootstrap: Use "trap - 0" rather than the unportable "trap 0".
8960
8961 * src/vcg.h: Comment fix.
8962 * src/vcg_defaults.h: Parenthesize macro bodies to make them safe.
8963 (G_CMAX): Change to -1 instead of INT_MAX.
8964
8965 * data/yacc.c (yyparse): Omit spaces before #line.
8966
8967 2005-03-15 Paul Eggert <eggert@cs.ucla.edu>
8968
8969 * src/tables.c (state_number_to_vector_number): Put it inside an
8970 "#if 0", since it's not currently used. Problem reported by
8971 Roland McGrath.
8972
8973 2005-03-06 Paul Eggert <eggert@cs.ucla.edu>
8974
8975 * src/output.c (escaped_output): Renamed from
8976 escaped_file_name_output, since we now use it for symbol tags as
8977 well. All uses changed.
8978 (symbol_destructors_output, symbol_printers_output):
8979 Escape symbol tags too.
8980 Problem reported by Matyas Forstner in
8981 <http://lists.gnu.org/archive/html/bug-bison/2005-03/msg00009.html>.
8982
8983 * src/muscle_tab.c (muscle_code_grow): Don't quote numbers; it's
8984 not needed.
8985 * src/output.c (user_actions_output, token_definitions_output,
8986 symbol_destructors_output, symbol_printers_output): Likewise.
8987 * src/reader.c (prologue_augment): Likewise.
8988 * src/scan-gram.l (handle_action_dollar, handle_action_at): Likewise.
8989
8990 * src/vcg.c (output_edge): Don't quote linestyle arg.
8991 Problem reported by twlevo@xs4all.nl.
8992
8993 2005-02-28 Paul Eggert <eggert@cs.ucla.edu>
8994
8995 * doc/bison.texinfo (Semantic Tokens): Fix scoping problem in
8996 example, reported by Derek M Jones. Also, make the example even
8997 more outrageous, to better illustrate how bad the problem is.
8998
8999 2005-02-24 Paul Eggert <eggert@cs.ucla.edu>
9000
9001 * doc/bison.texinfo (Mfcalc Symtab): Correct the prototype for
9002 putsym. Typo reported by Sebastian Piping.
9003
9004 2005-02-23 Paul Eggert <eggert@cs.ucla.edu>
9005
9006 * doc/bison.texinfo (Language and Grammar): some -> same
9007 (Epilogue): int he -> in the
9008 Typos reported by Sebastian Piping via Justin Pence.
9009
9010 2005-02-07 Paul Eggert <eggert@cs.ucla.edu>
9011
9012 * tests/glr-regression.at (Improper handling of embedded actions
9013 and dollar(-N) in GLR parsers): Renamed from "Improper handling of
9014 embedded actions and $-N in GLR parsers", work around an Autoconf bug
9015 with dollar signs in test names.
9016 * tests/input.at (Invalid dollar-n): Renamed from "Invalid \$n",
9017 for a similar reason.
9018
9019 2005-01-28 Paul Eggert <eggert@cs.ucla.edu>
9020
9021 * src/vcg.c (output_graph): G_VIEW -> normal_view in case someone
9022 wants to redefine G_VIEW.
9023
9024 2005-01-27 Paul Eggert <eggert@cs.ucla.edu>
9025
9026 * src/vcg.c (get_view_str): Remove case for normal_view.
9027 Problem reported by twlevo@xs4all.nl.
9028
9029 2005-01-24 Paul Eggert <eggert@cs.ucla.edu>
9030
9031 * configure.ac (O0CFLAGS, O0CXXFLAGS): Fix quoting bug.
9032 Problem reported by twlevo@xs4all.nl.
9033
9034 * doc/bison.texinfo: Change @dircategory from "GNU programming
9035 tools" to "Software development". Requested by Richard Stallman
9036 via Karl Berry.
9037
9038 2005-01-23 Paul Eggert <eggert@cs.ucla.edu>
9039
9040 * tests/c++.at (AT_CHECK_DOXYGEN): Don't use options after operands.
9041 Problem reported by twlevo@xs4all.nl.
9042
9043 2005-01-21 Paul Eggert <eggert@cs.ucla.edu>
9044
9045 * data/yacc.c (YYCOPY, yystpcpy, yyparse): Remove "register"
9046 keyword; it's not needed with modern compilers, and it doesn't
9047 affect correctness with older compilers. Suggested by
9048 twlevo@xs4all.nl.
9049
9050 2005-01-17 Paul Eggert <eggert@cs.ucla.edu>
9051
9052 * data/glr.c (yyuserAction): Add "default: break;" case to pacify
9053 gcc -Wswitch-default.
9054 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
9055 * data/yacc.c (yyparse): Likewise.
9056
9057 2005-01-12 Paul Eggert <eggert@cs.ucla.edu>
9058
9059 * src/system.h (OUTPUT_EXT, TAB_EXT): Define only if not defined
9060 already. Let config.h define any nonstandard values.
9061
9062 2005-01-10 Paul Eggert <eggert@cs.ucla.edu>
9063
9064 * tests/calc.at (_AT_DATA_CALC_Y): Use alarm (100), not alarm (10),
9065 for the benefit of slower hosts. Problem reported by
9066 Nelson H. F. Beebe.
9067
9068 2005-01-07 Paul Eggert <eggert@cs.ucla.edu>
9069
9070 * data/yacc.c (yyparse): Pacify non-GCC compilers about yyerrorlab
9071 being defined and not used.
9072 * data/lalr1.cc (yyparse): Likewise.
9073 Use "if (false)" rather than "if (0)".
9074
9075 2005-01-05 Paul Eggert <eggert@cs.ucla.edu>
9076
9077 * TODO: Mention that we should allow NUL bytes in tokens.
9078
9079 2005-01-02 Paul Eggert <eggert@cs.ucla.edu>
9080
9081 * src/scan-skel.l (<<EOF>>): Don't close standard output.
9082 Problem reported by Hans Aberg.
9083
9084 2005-01-01 Paul Eggert <eggert@cs.ucla.edu>
9085
9086 * src/getargs.c (version): Happy new year; update overall
9087 program copyright date from 2004 to 2005.
9088
9089 * src/scan-skel.l ("@output ".*\n): Don't close standard output.
9090 Problem reported by Hans Aberg.
9091 * tests/output.at (AT_CHECK_OUTPUT): New arg SHELLIO.
9092 (Output file names.): Add a test for the case when standard output
9093 is closed.
9094
9095 2004-12-26 Paul Eggert <eggert@cs.ucla.edu>
9096
9097 * doc/bison.texinfo (@copying): Update FDL version number to 1.2,
9098 to fix an oversight in the Bison 2.0 manual.
9099
9100 2004-12-25 Paul Eggert <eggert@cs.ucla.edu>
9101
9102 * NEWS: Version 2.0. Reformat the existing news items since
9103 1.875, so that related items are grouped together.
9104 * configure.ac (AC_INIT): Bump version to 2.0.
9105 * src/parse-gram.c, src/parse-gram.h: Regenerate with 2.0.
9106
9107 * tests/torture.at (Exploding the Stack Size with Alloca): Set
9108 YYSTACK_USE_ALLOCA to 1 if __GNUC__ or alloca are defined;
9109 otherwise, we're not testing alloca. Unfortunately there's no
9110 simple way to consult HAVE_ALLOCA here.
9111
9112 * data/lalr1.cc (yydestruct_): Pacify unused variable warning
9113 for yymsg, too.
9114
9115 * src/LR0.c (new_itemsets): Use memset rather than zeroing by
9116 hand. This avoids a warning about comparing int to size_t when
9117 GCC warnings are enabled.
9118
9119 2004-12-22 Paul Eggert <eggert@cs.ucla.edu>
9120
9121 * NEWS: Bison-generated parsers no longer default to using the
9122 alloca function (when available) to extend the parser stack, due
9123 to widespread problems in unchecked stack-overflow detection.
9124 * data/glr.c (YYMAXDEPTH): Remove undef when zero. It's the user's
9125 responsibility to set it to a positive value. This lets the user
9126 specify a value that is not a preprocessor constant.
9127 * data/yacc.c (YYMAXDEPTH): Likewise.
9128 (YYSTACK_ALLOC): Define only if YYSTACK_USE_ALLOCA is nonzero.
9129 * doc/bison.texinfo (Stack Overflow): YYMAXDEPTH no longer needs
9130 to be a compile-time constant. However, explain the constraints on it.
9131 Also, explain the constraints on YYINITDEPTH.
9132 (Table of Symbols): Explain that alloca is no longer the default.
9133 Explain the user's responsibility if they define YYSTACK_USE_ALLOCA
9134 to 1.
9135
9136 * doc/bison.texinfo (Location Default Action): Mention that n must
9137 be zero when k is zero. Suggested by Frank Heckenbach.
9138
9139 2004-12-22 Akim Demaille <akim@epita.fr>
9140
9141 * data/lalr1.cc (parser::token_number_type, parser::rhs_number_type)
9142 (parser::state_type, parser::semantic_type, parser::location_type):
9143 Private, not public.
9144 (parser::parse): Return ints, not bool.
9145 Returning a bool introduces a problem: 0 corresponds to false, and
9146 it seems weird to return false on success. Returning true changes
9147 the conventions for yyparse.
9148 Alternatively we could return void and send an exception.
9149 There is no clear consensus (yet?).
9150 (state_stack, semantic_stack, location_stack): Rename as...
9151 (state_stack_type, semantic_stack_type, location_stack_type): these.
9152 Private, not public.
9153 * tests/c++.at: New.
9154 * tests/testsuite.at, tests/Makefile.am: Adjust.
9155
9156 2004-12-21 Akim Demaille <akim@epita.fr>
9157
9158 * data/lalr1.cc (parser::parse): Return a bool instead of an int.
9159
9160 2004-12-21 Akim Demaille <akim@epita.fr>
9161
9162 Don't impose std::string for filenames.
9163
9164 * data/lalr1.cc (b4_filename_type): New.
9165 (position::filename): Use it.
9166 (parser.hh): Move the inclusion of stack.hh and location.hh below
9167 the user code, so that needed headers for the filename type can be
9168 included first.
9169 Forward declare them before the user code.
9170 * tests/Makefile.am (check-local, installcheck-local): Pass
9171 TESTSUITEFLAGS to the TESTSUITE.
9172
9173 2004-12-20 Akim Demaille <akim@epita.fr>
9174
9175 Use more STL like names: my_class instead of MyClass.
9176
9177 * data/lalr1.cc (LocationStack, LocationType, RhsNumberType)
9178 (SemanticStack, SemanticType, StateStack, StateType)
9179 (TokenNumberType, Stack, Slice, Traits, Parser::location)
9180 (Parser::value): Rename as...
9181 (location_stack, location_type, rhs_number_type, semantic_stack)
9182 (semantic_type, state_stack, state_type, token_number_type, stack)
9183 (slice, traits, parser::yylloc, parser::yylval): these.
9184
9185 * tests/calc.at, tests/regression.at, tests/actions.at: Adjust.
9186
9187 2004-12-19 Paul Eggert <eggert@cs.ucla.edu>
9188
9189 * data/glr.c (YYLLOC_DEFAULT): Use GNU spacing conventions.
9190 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
9191
9192 2004-12-17 Paul Eggert <eggert@cs.ucla.edu>
9193
9194 Remove uses of 'short int' and 'unsigned short int'. This raises
9195 some arbitrary limits. It uses more memory but nowadays that's
9196 not much of an issue.
9197
9198 This change does not affect the generated parsers; that's a different
9199 task, as some users will want to conserve memory there.
9200
9201 Ideally we should use size_t to represent all object counts, and
9202 something like ptrdiff_t to represent signed differences of object
9203 counts; but that will require more code-cleanup than I have the
9204 time to do right now.
9205
9206 * src/LR0.c (allocate_itemsets, new_itemsets, save_reductions):
9207 Use size_t, not int or short int, to count objects.
9208 * src/closure.c (nritemset, closure): Likewise.
9209 * src/closure.h (nritemset, closure): Likewise.
9210 * src/nullable.c (nullable_compute): Likewise.
9211 * src/print.c (print_core): Likewise.
9212 * src/print_graph.c (print_core): Likewise.
9213 * src/state.c (state_compare, state_hash): Likewise.
9214 * src/state.h (struct state): Likewise.
9215 * src/tables.c (default_goto, goto_actions): Likewise.
9216
9217 * src/gram.h (rule_number, rule): Use int, not short int.
9218 * src/output.c (prepare_rules): Likewise.
9219 * src/state.h (state_number, STATE_NUMBER_MAXIMUM, transitions,
9220 errs, reductions): Likewise.
9221 * src/symtab.h (symbol_number, SYMBOL_NUMBER_MAXIMUM, struct symbol):
9222 Likewise.
9223 * src/tables.c (vector_number, tally, action_number,
9224 ACTION_NUMBER_MINIMUM): Likewise.
9225 * src/output.c (muscle_insert_short_int_table): Remove.
9226
9227 2004-12-17 Akim Demaille <akim@epita.fr>
9228
9229 * data/lalr1.cc: Extensive Doxygenation.
9230 (error_): Rename as...
9231 (error): this, since it is visible to the user.
9232 Adjust callers.
9233 (Parser::message): Now an automatic variable from...
9234 (Parser::yyreport_syntax_error_): here.
9235 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust to
9236 Parser::error.
9237 * tests/input.at: Escape $.
9238
9239 2004-12-16 Paul Eggert <eggert@cs.ucla.edu>
9240
9241 * data/glr.c (b4_lhs_value, b4_rhs_value, b4_rhs-location):
9242 Parenthesize rhs to avoid obscure problems with mistakes like
9243 "foo$$bar = foo$1bar;". Problem reported by twlevo at xs4all.
9244 * data/lalr1.cc (b4_lhs_value, b4_rhs_value, b4_lhs_location,
9245 b4_rhs_location): Likewise.
9246 * data/yacc.c (b4_lhs_value, b4_rhs_value, b4_lhs_location,
9247 b4_rhs_location): Likewise.
9248
9249 2004-12-16 Akim Demaille <akim@epita.fr>
9250
9251 * data/lalr1.cc (yyreport_syntax_error_): Catch up with glr.c and
9252 yacc.c: be sure to stay within yycheck_.
9253 * tests/actions.at: Re-enable C++ tests.
9254
9255 2004-12-16 Akim Demaille <akim@epita.fr>
9256
9257 * src/print_graph.c (print_graph): Remove layoutalgorithm uses for
9258 real.
9259
9260 2004-12-16 Akim Demaille <akim@epita.fr>
9261
9262 Use #define to handle the %name-prefix.
9263
9264 * data/glr.c, data/yacc.c: Comment changes.
9265 * data/lalr1.cc (yylex): Use #define to select the name of yylex,
9266 so that one can refer to yylex in the parser file, and have it
9267 renamed, as is the case with other skeletons.
9268
9269 2004-12-16 Akim Demaille <akim@epita.fr>
9270
9271 Move lalr1.cc internals into yy*.
9272
9273 * data/lalr1.cc (semantic_stack_, location_stack_, state_stack_)
9274 (semantic_stack_, location_stack_, pact_, pact_ninf_, defact_)
9275 (pgoto_, defgoto_, table_, table_ninf_, check_, stos_, r1_, r2_)
9276 (name_, rhs_, prhs_, rline_, token_number_, eof_, last_, nnts_)
9277 (empty_, final_, terror_, errcode_, ntokens_)
9278 (user_token_number_max_, undef_token_, n_, len_, state_, nerrs_)
9279 (looka_, ilooka_, error_range_, nerrs_):
9280 Rename as...
9281 (yysemantic_stack_, yylocation_stack_, yystate_stack_)
9282 (yysemantic_stack_, yylocation_stack_, yypact_, yypact_ninf_)
9283 (yydefact_, yypgoto_, yydefgoto_, yytable_, yytable_ninf_)
9284 (yycheck_, yystos_, yyr1_, yyr2_, yyname_, yyrhs_, yyprhs_)
9285 (yyrline_, yytoken_number_, yyeof_, yylast_, yynnts_, yyempty_)
9286 (yyfinal_, yyterror_, yyerrcode_, yyntokens_)
9287 (yyuser_token_number_max_, yyundef_token_, yyn_, yylen_, yystate_)
9288 (yynerrs_, yylooka_, yyilooka_, yyerror_range_, yynerrs_):
9289 these.
9290
9291 2004-12-15 Paul Eggert <eggert@cs.ucla.edu>
9292
9293 Fix some problems reported by twlevo at xs4all.
9294 * src/symtab.c (symbol_new): Report an error if the input grammar
9295 contains too many symbols. This is better than calling abort() later.
9296 * src/vcg.h (enum layoutalgorithm): Remove. All uses removed.
9297 (struct node, struct graph):
9298 Rename member expand to stretch. All uses changed.
9299 (struct graph): Remove member layoutalgorithm. All uses removed.
9300 * src/vcg.c (get_layoutalgorithm_str): Remove. All uses removed.
9301 * src/vcg_defaults.h (G_STRETCH): Renamed from G_EXPAND.
9302 All uses changed.
9303 (N_STRETCH): Rename from N_EXPAND. All uses changed.
9304
9305 2004-12-15 Akim Demaille <akim@epita.fr>
9306
9307 * data/lalr1.cc: Normalize /** \brief ... */ to ///.
9308 Add more Doxygen comments.
9309 (symprint_, stack_print_, reduce_print_, destruct_, pop)
9310 (report_syntax_error_, translate_): Rename as...
9311 (yysymprint_, yystack_print_, yyreduce_print_, yydestruct_)
9312 (yypop_, yyreport_syntax_error_, yytranslate_): this.
9313
9314 2004-12-15 Akim Demaille <akim@epita.fr>
9315
9316 * data/lalr1.cc (lex_): Rename as...
9317 (yylex_): this.
9318 Move the trace here.
9319 Take the %name-prefix into account.
9320 Reported by Alexandre Duret-Lutz.
9321
9322 2004-12-15 Akim Demaille <akim@epita.fr>
9323
9324 Simplify the C++ parser constructor.
9325
9326 * data/lalr1.cc (debug_): Rename as...
9327 (yydebug_): so that the parser's internals are always in the yy*
9328 pseudo namespace.
9329 Adjust uses.
9330 (b4_parse_param_decl): Remove the leading comma as it is now only
9331 called as unique argument list.
9332 (Parser::Parser): Remove the constructor accepting a location and
9333 an initial debugging level.
9334 Remove from the other ctor the argument for the debugging level.
9335 (debug_level_type, debug_level, set_debug_level): New.
9336
9337 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust
9338 constructor calls.
9339
9340 2004-12-15 Akim Demaille <akim@epita.fr>
9341
9342 Remove b4_root related material: failure experiment
9343 (which goal was to allow to derive from a class).
9344
9345 * data/lalr1.cc (b4_root, b4_param, b4_constructor): Remove
9346 definitions and uses.
9347
9348 2004-12-14 Paul Eggert <eggert@cs.ucla.edu>
9349
9350 * data/glr.c (struct yyGLRStack): yyerror_range now has 3 items,
9351 not 2, since it's not portable to subtract 1 from the start of an
9352 array. The new item 0 is never set or used. All uses changed.
9353
9354 (yyrecoverSyntaxError): Use YYLLOC_DEFAULT instead of assuming
9355 the default definition of YYLLOC_DEFAULT. Problem reported
9356 by Frank Heckenbach.
9357
9358 2004-12-12 Paul Eggert <eggert@cs.ucla.edu>
9359
9360 * data/glr.c (YYRHSLOC): Don't have two definitions, one for
9361 the normal case and one for the error case. Just use the
9362 first one uniformly. Problem reported by Frank Heckenbach.
9363 (YYLLOC_DEFAULT): Use the conventions of yacc.c, so we can
9364 use exactly the same macro in both places.
9365 (yyerror_range): Now of type yyGLRStackItem, not YYLTYPE,
9366 so that the normal-case YYRHSLOC works for the error case too.
9367 All uses changed.
9368 * data/yacc.c (YYRHSLOC): New macro, taken from glr.c.
9369 (YYLLOC_DEFAULT): Use the same macro as glr.c.
9370 * doc/bison.texinfo (Location Default Action): Don't claim that
9371 we have an array of locations. Use the same macro for both glr
9372 and lalr parsers. Mention YYRHSLOC. Mention what happens when
9373 the index is 0.
9374
9375 2004-12-10 Paul Eggert <eggert@cs.ucla.edu>
9376
9377 * HACKING: Update email addresses to send announcements to.
9378
9379 * configure.ac (AC_INIT): Bump version to 1.875f.
9380
9381 2004-12-10 Paul Eggert <eggert@cs.ucla.edu>
9382
9383 * NEWS: Version 1.875e.
9384 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875e.
9385
9386 * src/scan-skel.l: Include "complain.h", for "fatal".
9387
9388 * src/relation.h (relation_print, relation_digraph):
9389 Relation sizes are of type relation_node, not size_t (this is
9390 merely a doc fix, since the two types are equivalent).
9391 (relation_transpose): Relation sizes are of type relation_node,
9392 not int.
9393 * src/relation.c: Likewise.
9394 (top, infinity): Now of type relation_node, not int.
9395 (traverse, relation_transpose): Use relation_node, not int.
9396
9397 * data/glr.c (yyuserAction, yyrecoverSyntaxError): Mark args
9398 with ATTRIBUTE_UNUSED if they're not used, to avoid GCC warning.
9399 (yyparse): Remove unused local introduced in 2004-10-25 patch.
9400
9401 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): New arg
9402 specifying whether the test should be skipped. Use it tp
9403 specify that the [%defines %skeleton "lalr1.cc"] tests currently
9404 fail on some hosts, and should be skipped.
9405
9406 2004-12-08 Paul Eggert <eggert@cs.ucla.edu>
9407
9408 * src/system.h (CALLOC, MALLOC, REALLOC): Remove. All callers
9409 changed to use xcalloc, xnmalloc, xnrealloc, respectively,
9410 unless otherwise specified below.
9411
9412 * src/LR0.c (allocate_itemsets): Use xnmalloc, not xcalloc,
9413 to allocate kernel_base, kernel_items, kernel_size, since
9414 they needn't be initialized to 0.
9415 (allocate_storgae): Likewise, for shiftset, redset, shift_symbol.
9416 * src/closure.c (new_closure): Likewise, for itemset.
9417 * src/derives.c (derives_compute): Likewise, for delts, derives, q.
9418 * src/lalr.c (set_goto_map): Likewise, for temp_map.
9419 (initialize_F): Likewise, for reads, edge, reads[i], includes[i].
9420 (build_relations): Likewise for edge, states1, includes.
9421 * src/nullable.c (nullable_compute): Likewise, for squeue, relts.
9422 * src/reader.c (packgram): Likewise, for ritem, rules.
9423 * src/reduce.c (nonterminals_reduce): Likewise for nontermmap.
9424 * src/relation.c (relation_digraph): Likewise for VERTICES.
9425 (relation_transpose): Likewise for new_R, end_R.
9426 * src/symtab.c (symbols_token_translations_init): Likewise for
9427 token_translations.
9428 * src/tables.c (save_row): Likewise for froms, tos, conflict_tos.
9429 (token_actions): Likewise for yydefact, actrow, conflrow,
9430 conflict_list.
9431 (save_column): Likewise for froms[symno], tos[symno].
9432 (goto_actions): Likewise for state_count.
9433 (pack_table): Likewise for base, pos, check.
9434 (tables_generate): Likewise for width.
9435
9436 * src/LR0.c (set_states): Don't reuse kernel_size and kernel_base
9437 for initial core. Just have a separate core, so we needn't worry
9438 about whether kernel_size and kernel_base are initialized.
9439
9440 * src/LR0.c (shift_symbol, redset, shiftset, kernel_base,
9441 kernel_size, kernel_items): Remove unnecessary initialization.
9442 * src/conflicts.c (conflicts): Likewise.
9443 * src/derives.c (derives): Likewise.
9444 * src/muscle_tablc (muscle_insert): Likewise.
9445 * src/relation.c (relation_digraph): Likewise.
9446 * src/tables.c (froms, tos, conflict_tos, tally, width, actrow, order,
9447 conflrow, conflict_table, conflict_list, table, check):
9448 Likewise.
9449
9450 * src/closure.c (new_closure): Arg is of type unsigned int, not int.
9451 This is because all callers pass unsigned int.
9452 * src/closure.h (new_closure): Likewise.
9453
9454 * src/lalr.c (initialize_F): Initialize reads[i] in all cases.
9455 (build_relations): Initialize includes[i] in all cases.
9456 * src/reader.c (packgram): Always initialize rules[ruleno].prec
9457 and rules[ruleno].precsym. Initialize members in order.
9458 * src/relation.c (relation_transpose): Always initialize new_R[i]
9459 and end_R[i].
9460 * src/table.c (conflict_row): Initialize 0 at end of conflict_list.
9461
9462 * src/output.c (prepare_actions): Pass 0 instead of conflict_list[0];
9463 conflict_list[0] was always 0, but now it isn't initialized.
9464
9465 * src/table.c (table_grow): When conflict_table grew, the grown
9466 area wasn't cleared. Fix this.
9467
9468 * lib/.cvsignore: Add strdup.c, strdup.h.
9469 * m4/.cvsignore: Add strdup.m4.
9470
9471 2004-12-07 Paul Eggert <eggert@cs.ucla.edu>
9472
9473 * src/lalr.h (GOTO_NUMBER_MAXIMUM): New macro.
9474 * src/lalr.c (set_goto_map): Don't allow ngotos to equal
9475 GOTO_NUMBER_MAXIMUM, since we occasionally compute
9476 ngotos + 1 without checking for overflow.
9477 (build_relations): Use END_NODE, not -1, to denote end of edges.
9478 * src/lalr.c (set_goto_map, map_goto, initialize_F, add_loopback_edge,
9479 build_relations): Use goto_number, not int, for goto numbers.
9480 * src/tables.c (save_column, default_goto): Likewise.
9481
9482 2004-11-23 Akim Demaille <akim@epita.fr>
9483
9484 * data/lalr1.cc (YYSTYPE): Define it as is done for C, instead
9485 of #defining from yystype.
9486 Don't typedef yystype, C++ does not need it.
9487 This lets it possible to forward declare it as union.
9488
9489 2004-11-23 Paul Eggert <eggert@cs.ucla.edu>
9490
9491 * bootstrap (gnulib_modules): Add extensions.
9492 Problem reported by Jim Meyering.
9493
9494 2004-11-22 Paul Eggert <eggert@cs.ucla.edu>
9495
9496 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c,
9497 src/lalr.c, src/nullable.c, src/relation.c, src/scan-skel.l,
9498 src/system.h, src/tables.c: XFREE -> free, to accommodate
9499 recent change to gnulib xalloc.h.
9500 Problem reported by Jim Meyering.
9501
9502 2004-11-17 Akim Demaille <akim@epita.fr>
9503
9504 * data/lalr1.cc (symprint_): Use cdebug_ to avoid warnings.
9505
9506 2004-11-17 Akim Demaille <akim@epita.fr>,
9507 Alexandre Duret-Lutz <adl@gnu.org>
9508
9509 * data/lalr1.cc (Parser::yycdebug_): New, a pointer, to allow
9510 changes.
9511 (YYCDEBUG): Adjust.
9512 Use it instead of cdebug_.
9513 (Parser::debug_stream, Parser::set_debug_stream): New.
9514 (Parser::symprint_): Define cdebug_ for temporary backward
9515 compatibility.
9516 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use
9517 debug_stream ().
9518
9519 2004-11-17 Akim Demaille <akim@epita.fr>
9520
9521 * data/lalr1.cc (Parser:print_): Remove, use %printer instead.
9522 * tests/regression.at (_AT_DATA_DANCER_Y): Adjust.
9523 * tests/calc.at (_AT_DATA_CALC_Y): Ditto.
9524 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
9525
9526 2004-10-27 Paul Eggert <eggert@cs.ucla.edu>
9527
9528 * data/glr.c (yyloc_default): Remove; not used.
9529 Problem reported by Frank Heckenbach.
9530
9531 2004-10-25 Akim Demaille <akim@epita.fr>
9532
9533 * data/glr.c (YYRHSLOC): Move its definition next to its uses.
9534 Introduce another definition to address simple location arrays.
9535 (yyGLRStack): New member: yyerror_range.
9536 (yyrecoverSyntaxError, yyparse): Update it.
9537 (yyrecoverSyntaxError): Use it when shifting the error token to
9538 have an accurate range, equivalent to the one computed by both
9539 yacc.c and lalr1.cc.
9540 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Change its yylex so
9541 that column numbers start at column 0, as per GNU Coding
9542 Standards, the others tests, and the doc.
9543 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT_WITH_LOC):
9544 Adjust to the above change (first column is 0).
9545 And adjust the location of the "<error>", now covering the whole
9546 line.
9547
9548 2004-10-22 Akim Demaille <akim@epita.fr>
9549 and Paul Eggert <eggert@cs.ucla.edu>
9550
9551 Remove some arbitrary limits on goto numbers and relations.
9552 * src/lalr.c (goto_map, ngotos, from_state, to_state): Omit
9553 initial values, since they're never used.
9554 (set_goto_map): ngotos is now unsigned, so test for overflow
9555 by seeing whether it wraps around to zero.
9556 * src/lalr.h (goto_number): Now size_t, not short int.
9557 (GOTO_NUMBER_MAXIMUM): Remove.
9558 * src/relation.c (relation_print, traverse, relation_transpose):
9559 Check for END_NODE rather than looking at sign.
9560 * src/relation.h (END_NODE): New macro.
9561 (relation_node): Now size_t, not short int.
9562
9563 2004-10-22 Paul Eggert <eggert@cs.ucla.edu>
9564
9565 * doc/bison.texinfo (Language and Grammar): In example, "int" is a
9566 keyword, not an identifier. Problem reported by Baron Schwartz in
9567 <http://lists.gnu.org/archive/html/bug-bison/2004-10/msg00017.html>.
9568
9569 2004-10-11 Akim Demaille <akim@epita.fr>
9570
9571 * src/symtab.c (symbol_check_alias_consistency): Also check
9572 type names, destructors, and printers.
9573 Reported by Alexandre Duret-Lutz.
9574 Recode the handling of associativity and precedence in terms
9575 of symbol_precedence_set.
9576 Accept no redeclaration at all, not even equal to the previous
9577 value.
9578 (redeclaration): New.
9579 Use it to factor redeclaration complaints.
9580 (symbol_make_alias): Don't set the type of the alias, let
9581 symbol_check_alias_consistency do it as for other features.
9582 * src/symtab.h (symbol): Add new member prec_location, and
9583 type_location.
9584 * src/symtab.c (symbol_precedence_set, symbol_type_set): Set them.
9585 * tests/input.at (Incompatible Aliases): New.
9586
9587 2004-10-09 Paul Eggert <eggert@cs.ucla.edu>
9588
9589 .cvsignore fixes to accommodate gnulib changes,
9590 and the practice of naming build directories "_build".
9591 * .cvsignore: Add "_*". Sort.
9592 * lib/.cvsignore: Add getopt_.h, xalloc-die.c.
9593 * m4/.cvsignore: Add "*_gl.m4".
9594
9595 2004-10-06 Akim Demaille <akim@epita.fr>
9596
9597 * src/parse-gram.y (add_param): Fix the truncation of trailing
9598 spaces.
9599
9600 2004-10-05 Akim Demaille <akim@epita.fr>
9601
9602 In Bison 1.875's yacc.c, YYLLOC_DEFAULT was called regardless
9603 whether the reducion was empty or not. This leaves room to
9604 improve the use of YYLLOC_DEFAULT in such a case.
9605 lalr1.cc is still experimental, so changing this is acceptable.
9606 And finally, there are probably not many users who changed the
9607 handling of locations in GLR, so changing is admissible too.
9608
9609 * data/glr.c, data/lalr1.cc, data/yacc.c (YYLLOC_DEFAULT): On an
9610 empty reduction, set @$ to an empty location ending the previously
9611 stacked symbol.
9612 Adjust uses to make sure the code is triggered on empty
9613 reductions.
9614 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust the
9615 expected output: empty reductions have empty locations.
9616
9617 2004-09-29 Akim Demaille <akim@epita.fr>
9618
9619 * data/lalr1.cc: Move towards a more standard C++ coding style
9620 for templates: Class < T > -> Class<T>.
9621
9622 2004-09-29 Akim Demaille <akim@epita.fr>
9623
9624 * data/lalr1.cc: Reinstall the former ctor, for sake of
9625 compatibility, but warn it will be removed.
9626 Move towards a more standard C++ coding style (i.e., type *var ->
9627 type* var).
9628
9629 2004-09-27 Paul Eggert <eggert@cs.ucla.edu>
9630
9631 * src/parse-gram.y (add_param): Rewrite to avoid strchr,
9632 since it's less likely to work if NULs are involved in the future.
9633
9634 2004-09-27 Akim Demaille <akim@epita.fr>
9635
9636 * data/yacc.c (YY_LOCATION_PRINT): Fix its default declaration.
9637
9638 2004-09-27 Akim Demaille <akim@epita.fr>
9639
9640 * data/lalr1.cc (b4_parse_param_decl_1): New.
9641 (b4_parse_param_decl): Use it to have different names between attribute
9642 and argument names.
9643 (b4_cc_constructor_call): Likewise.
9644
9645 2004-09-24 Akim Demaille <akim@epita.fr>
9646
9647 * src/parse-gram.y (add_param): Strip the leading and trailing
9648 blanks from a formal argument declaration.
9649 (YY_LOCATION_PRINT): New.
9650
9651 2004-09-24 Akim Demaille <akim@epita.fr>
9652
9653 * data/c.m4 (b4_yysymprint_generate): Move the YYINPUT invocation
9654 after the location.
9655
9656 2004-09-24 Akim Demaille <akim@epita.fr>
9657
9658 * doc/bison.texinfo (Table of Symbols): Sort.
9659
9660 2004-09-21 Akim Demaille <akim@epita.fr>
9661
9662 * data/yacc.c, data/glr.c (b4_at_dollar, b4_dollar_dollar): Remove
9663 the useless parentheses.
9664 Suggested by Paul Eggert.
9665
9666 2004-09-20 Akim Demaille <akim@epita.fr>
9667
9668 Let the initial-action act on the look-ahead, and use it for the
9669 "initial push" (corresponding to an hypothetical beginning-of-file).
9670 And let lalr1.cc honor %initial-action.
9671
9672 * doc/bison.texinfo (Initial Action Decl): Clarify, and add an
9673 example.
9674 * data/lalr1.cc (Parser::initlocation_): Remove, bad experiment.
9675 (Parser::Parser): Remove the ctor that used to initialize it.
9676 (Parser::parse): Like in the other skeletons, issue the "starting
9677 parse" message before any action.
9678 Honor %initial-action.
9679 Initialize the stacks with the lookahead.
9680 * data/yacc.c: Let $$ and @$ in %initial-action designate the
9681 look-ahead.
9682 Push them in the stacks.
9683 * tests/actions.at, tests/calc.at: Adjust the C++ ctor invocations.
9684
9685 2004-09-20 Akim Demaille <akim@epita.fr>
9686
9687 * doc/bison.texinfo (Initial Action Decl): New.
9688
9689 2004-09-20 Akim Demaille <akim@epita.fr>
9690
9691 * data/yacc.c (YY_LOCATION_PRINT): Use YYLTYPE_IS_TRIVIAL as a
9692 clearer criterion to define it.
9693 (parse): Initialize the initial location when YYLTYPE_IS_TRIVIAL.
9694 When reducing on an empty RHS, use the latest stacked location as
9695 location.
9696 yylloc is not always available.
9697 * data/glr.c: Likewise.
9698 Also, honor initial-actions.
9699
9700 2004-09-20 Akim Demaille <akim@epita.fr>
9701
9702 * data/yacc.c (YY_LOCATION_PRINT): New.
9703 Define when we know YYLTYPE's structure, i.e., when the default
9704 YYLLOC_DEFAULT is used.
9705 * data/c.m4 (b4_yysymprint_generate): Use it.
9706 * data/lalr1.cc (YYLLOC_DEFAULT): Stop relying on the initial
9707 value of the result.
9708 (error_start_): Replace with...
9709 (error_range_): this location array.
9710 This allows to replace code relying on the implementation of
9711 locations by portable code.
9712 * data/yacc.c (yylerrsp): Replace with...
9713 (yyerror_range): this.
9714 Every time a token is popped, update yyerror_range[0], to have an
9715 accurate location for the error token.
9716 * data/glr.c (YY_LOCATION_PRINT): New.
9717 (yyprocessOneStack): Fix an invocation of YY_SYMBOL_PRINT:
9718 deference a pointer.
9719 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): No longer
9720 report the location in %printers.
9721
9722 * src/scan-skel.l: Instead of abort, report error messages to ease
9723 understanding skeleton scanning failures.
9724
9725 2004-09-16 Akim Demaille <akim@epita.fr>
9726
9727 * data/lalr1.cc (Stack::Iterator, Stack::ConstIterator): Rename as...
9728 (iterator, const_iterator): these, to be more in the C++ spirit.
9729 Also, return reverse iterators so that when displaying the stack
9730 we display its bottom first.
9731 (Parser::stack_print_, Parser::reduce_print_): Match the messages
9732 from yacc.c.
9733 We should probably use vector here though.
9734
9735 2004-09-16 Akim Demaille <akim@epita.fr>
9736
9737 Have more complete shift traces.
9738
9739 * data/yacc.c, data/lalr1.c, data/glr.c: Use YY_SYMBOL_PRINT
9740 to report Shifts instead of ad hoc YYDPRINTF invocations,
9741 including for the error token.
9742 * data/lalr1.cc (symprint_): Output the location.
9743 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): In C++, don't
9744 output the location within the %printer.
9745 Activate GLR tests, at least to make sure they compile properly.
9746 They still don't pass though.
9747 * tests/calc.at: Adjust expect verbose output, since now "Entering
9748 state..." is on a different line than the "Shifting" message.
9749
9750 2004-09-08 Akim Demaille <akim@epita.fr>
9751
9752 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Move the
9753 Bison directive from the Bison file to the invocation of this
9754 macro, so that these directives are passed to
9755 AT_BISON_OPTION_PUSHDEFS to get correct help macros.
9756 Use these helping macros (e.g., AT_LOC, AT_VAL and so forth).
9757 Move the AT_SETUP/AT_CLEANUP outside, to report as test title
9758 the extra Bison directives instead of the whole series.
9759 Change the grammar so that there are recoverable errors, and
9760 unrecoverable errors. Now we can have the parser give up before
9761 consuming the whole input. As a result we now can observe that
9762 the lookahead is freed when needed.
9763 Change the parser source to parse argv[1] instead of a hard coded
9764 string.
9765 Simplify yylex, and give a value and location to EOF.
9766 Simplify some invocations of AT_CHECK_PRINTER_AND_DESTRUCTOR that
9767 passed directives already coded in the file.
9768 Add some tests to check the location of "error".
9769 For some tests, the C++ parser is correct, and not yacc.c.
9770 For other tests, they provide different, but unsatisfying, values,
9771 so keep the C++ value so that at least one parser is "correct"
9772 according to the test suite.
9773 (Actions after errors): Remove, this is subsumed by the
9774 AT_CHECK_PRINTER_AND_DESTRUCTOR series.
9775
9776 2004-09-06 Akim Demaille <akim@epita.fr>
9777
9778 * data/lalr1.cc: Adjust the indentation of the labels.
9779 (Parser::pop): New.
9780 Use it.
9781
9782 2004-09-06 Akim Demaille <akim@epita.fr>
9783
9784 * data/yacc.cc, data/glr.cc (yydestruct): Accept an additional
9785 argument, an informative message.
9786 Call YY_SYMBOL_PRINT.
9787 Adjust all callers: integrate the associated YY_SYMBOL_PRINT.
9788 * data/lalr1.cc (destruct_): Likewise.
9789 In addition, no longer depend on b4_yysymprint_generate and
9790 b4_yydestruct_generate to generate these functions, do it "by
9791 hand".
9792
9793 2004-09-03 Akim Demaille <akim@epita.fr>
9794
9795 * data/glr.c, data/lalr1.cc, data/yacc.c: When YYABORT was
9796 invoked, yydestruct the lookahead.
9797 * tests/calc.at (Calculator $1): Update the expected lengths of
9798 traces: there is an added line for the discarded lookahead.
9799 * doc/bison.texinfo (Destructor Decl): Some rewording.
9800 Define "discarded" symbols.
9801
9802 2004-09-02 Akim Demaille <akim@epita.fr>
9803
9804 * data/lalr1.cc (translate_, destruct_): No reason to be static.
9805
9806 2004-09-02 Akim Demaille <akim@epita.fr>
9807
9808 * data/glr.c, yacc.c (YYDSYMPRINT): Remove, not used.
9809 (YYDSYMPRINTF): Rename as...
9810 (YY_SYMBOL_PRINT): this.
9811 * data/lalr1.cc (YY_SYMBOL_PRINT): New, modeled after the previous
9812 two.
9813 Use it instead of direct symprint_ calls.
9814 (yybackup): Tweak the "Now at end of input" case to match yacc.c's
9815 one.
9816
9817 2004-09-02 Akim Demaille <akim@epita.fr>
9818
9819 * data/lalr1.cc (b4_yysymprint_generate): New.
9820 (symprint_): New member function, defined when YYDEBUG.
9821 Use it consistently instead of token/nterm debugging output by
9822 hand.
9823 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust
9824 %printer calls to use cdebug_ when using lalr1.cc.
9825
9826 2004-08-30 Florian Krohm <florian@edamail.fishkill.ibm.com>
9827
9828 * data/glr.c: Guard the declarations of yypstack and yypdumpstack
9829 with #ifdef YYDEBUG.
9830
9831 2004-08-26 Akim Demaille <akim@epita.fr>
9832
9833 * doc/bison.texinfo (Implementing Loops): Rename as...
9834 (Implementing Gotos/Loops): this.
9835
9836 2004-08-13 Paul Eggert <eggert@cs.ucla.edu>
9837
9838 Adjust to latest gnulib.
9839 * bootstrap (gnulib_modules): Add xalloc-die.
9840 Set LC_ALL=C so that file names sort consistently.
9841 Prefer the gnulib copies of gettext.m4, glibc21.m4,
9842 inttypes_h.m4, lib-ld.m4, lib-prefix.m4, po.m4, stdint_h.m4,
9843 uintmax_t.m4, ulonglong.m4.
9844 (intl_files_to_remove): Add gettext.m4, lib-ld.m4, lib-prefix.m4,
9845 po.m4 since we are now using _gl.m4 instead.
9846
9847 2004-08-10 Florian Krohm <florian@edamail.fishkill.ibm.com>
9848
9849 * src/scan-action.l: Remove. Scanning of semantic actions is
9850 handled in scan-gram.l.
9851
9852 2004-08-07 Florian Krohm <florian@edamail.fishkill.ibm.com>
9853
9854 * src/scan-gram.l (handle_syncline): Use uniqstr_new not xstrdup.
9855
9856 * src/location.h (struct): The file member is a uniqstr.
9857 (equal_boundaries): Use UNIQSTR_EQ for comparison.
9858
9859 2004-07-22 Paul Eggert <eggert@cs.ucla.edu>
9860
9861 Fix bug with non-%union parsers that have printers or destructors,
9862 which led to a Bison core dump. Reported by Peter Fales in
9863 <http://lists.gnu.org/archive/html/bug-bison/2004-07/msg00014.html>.
9864
9865 * data/c.m4 (b4_symbol_actions): Don't assume %union was used.
9866 * data/lalr1.cc (yystype) [defined YYSTYPE]: Define to YYSTYPE,
9867 not to our own type.
9868 * src/output.c (symbol_destructors_output, symbol_printers_output):
9869 Don't assume %union.
9870 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR,
9871 AT_CHECK_PRINTER_AND_DESTRUCTOR): New argument
9872 UNION-FLAG. All callers changed.
9873 (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't assume %union.
9874 Use type char, not unsigned int, when declaring an array of char;
9875 this lets us remove a cast.
9876 (Printers and Destructors): Add non-%union test cases.
9877
9878 2004-06-21 Paul Eggert <eggert@cs.ucla.edu>
9879
9880 * doc/bison.texinfo: Minor editorial changes, mostly to the new
9881 GLR writeups. E.g., avoid frenchspacing and the future tense,
9882 change "lookahead" to "look-ahead", and change "wrt" to "with
9883 respect to".
9884
9885 2004-06-21 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
9886
9887 * doc/bison.texinfo (Merging GLR Parses, Compiler Requirements):
9888 New sections, split off from the GLR Parsers section. Put the new
9889 Simple GLR Parser near the start of the GLR section, for clarity.
9890 Rewrite connective text.
9891
9892 2004-06-21 Frank Heckenbach <frank@g-n-u.de>
9893
9894 * doc/bison.texinfo (Simple GLR Parsers): New section.
9895
9896 2004-06-21 Paul Eggert <eggert@cs.ucla.edu>
9897
9898 * NEWS, TODO, doc/bison.texinfo:
9899 Use "look-ahead" instead of "lookahead", to be consistent.
9900 * REFERENCES: Fix incorrect reference to DeRemer and Pennello,
9901 while we're fixing "look-ahead".
9902 * src/conflicts.c (shift_set): Renamed from shiftset.
9903 (look_ahead_set): Renamed from lookaheadset.
9904 * src/print.c: Likewise.
9905 * src/getargs.c (report_args): Add "look-ahead" as the new canonical
9906 name for "lookahead".
9907 (report_types, usage): Likewise.
9908 * src/getargs.h (report_look_ahead_tokens): Renamed from
9909 report_lookaheads.
9910 * src/lalr.c (compute_look_ahead_tokens): Renamed from
9911 compute_lookaheads.
9912 (state_look_ahead_tokens_count): Renamed from state_lookaheads_count.
9913 (look_ahead_tokens_print): Renamed from lookaheads_print.
9914 * src/state.c (state_rule_look_ahead_tokens_print): Renamed from
9915 state_rule_lookaheads_print.
9916 * src/state.h: Likewise.
9917 (reductions.look_ahead_tokens): Renamed from lookaheads.
9918 * tests/torture.at (AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR): Renamed from
9919 AT_DATA_LOOKAHEADS_GRAMMAR.
9920
9921 2004-06-03 Paul Eggert <eggert@cs.ucla.edu>
9922
9923 * README: Update location of patched M4 distribution.
9924
9925 2004-05-30 Albert Chin-A-Young <china@thewrittenword.com>
9926
9927 Don't assume the C++ compiler takes the same arguments as the C compiler
9928 (trivial change).
9929 * configure.ac (O0CXXFLAGS): New var.
9930 * tests/atlocal.in (CXXFLAGS): Use it.
9931
9932 2004-05-29 Paul Eggert <eggert@cs.ucla.edu>
9933
9934 Fix some "make check" problems with C++ reported by
9935 Albert Chin-A-Young for Tru64 C++ in this thread:
9936 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00049.html
9937
9938 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check for std::cerr.
9939 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
9940 Output to a .cc file for C++, not to a .c file.
9941 * tests/calc.at (AT_CHECK_CALC): Likewise.
9942 * tests/regression.at (AT_CHECK_DANCER): Likewise.
9943 * tests/local.at (AT_COMPILE_CXX): Default to OUTPUT.cc, not OUTPUT.c.
9944
9945 2004-05-28 Albert Chin-A-Young <china@thewrittenword.com>
9946
9947 * tests/calc.at, tests/actions.at: Workaround for SGI
9948 C++ compiler. (trivial change)
9949
9950 2004-05-27 Paul Eggert <eggert@cs.ucla.edu>
9951
9952 Spent a few hours checking out which prerequisite versions the
9953 current sources actually require. I went all the way back to
9954 Gettext 0.10.40, Automake 1.4, and Autoconf 2.57 and investigated
9955 a seemingly endless set of combinations of versions more recent
9956 than that. The bottom line is that the current sources require
9957 fairly recent versions of the build tools, and it'll be some work
9958 to change this.
9959 * configure.ac (AC_PREREQ): Increase from 2.58 to 2.59.
9960 (AM_INIT_AUTOMAKE): Increase from 1.7 to 1.8.
9961 (AM_GNU_GETTEXT_VERSION): Increase from 0.11.5 to 0.12.
9962 Add comments explaining why those particular versions are
9963 currently needed.
9964
9965 * src/parse-gram.y (lloc_default): Rewrite to avoid compiler bug
9966 in SGI MIPSpro 7.4.1m. Problem reported by Albert Chin-A-Young in
9967 <http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00037.html>.
9968
9969 * configure.ac (AC_PREREQ): Bump to 2.58, since 2.57 doesn't work
9970 (it fails with a Autoconf-without-aclocal-m4 diagnostic).
9971
9972 2004-05-26 Paul Eggert <eggert@cs.ucla.edu>
9973
9974 * configure.ac (AM_GNU_GETTEXT_VERSION): Lower it from 0.14.1 to
9975 0.11.5. Suggested by Bruno Haible.
9976 * bootstrap: Remove gettext version checking.
9977
9978 * doc/bison.texinfo (Decl Summary): Also mention that %union
9979 can depend on prerequisite types. Problem reported by Tim
9980 Van Holder.
9981
9982 2004-05-25 Paul Eggert <eggert@cs.ucla.edu>
9983
9984 * README: Mention GNU m4 1.4 bugs and Akim's patched version.
9985 * README-alpha: Don't tell people not to package this.
9986
9987 * bootstrap: Don't assume $(...) works; use `...` instead.
9988 Problem reported by Paul Hilfinger. Also, diagnose non-GNU
9989 gettext better.
9990
9991 * doc/bison.texinfo (Decl Summary, Bison Options): Clarify what's
9992 put into the -d output file, and mention what to do if YYSTYPE is
9993 defined as a macro.
9994
9995 2004-05-24 Paul Eggert <eggert@cs.ucla.edu>
9996
9997 Undo change made earlier today: it caused autopoint to not bring
9998 in ABOUT-NLS. Ouch. Instead, substitute our own diagnostic for
9999 autopoint's.
10000
10001 * bootstrap: Check that gettext version matches what's in
10002 configure.ac. Warn users to ignore robots.txt ERROR 404.
10003 * bootstrap: Undo today's earlier change (logged below).
10004 * configure.ac (AM_GNU_GETTEXT_VERSION): Likewise.
10005
10006 The gettext version checking is causing more trouble than it's
10007 curing; remove it. Problem reported by Paul Hilfinger.
10008
10009 * bootstrap: Issue a warning that one can expect a message
10010 'AM_GNU_GETTEXT is used, but not AM_GNU_GETTEXT_VERSION'.
10011 * configure.ac (AM_GNU_GETTEXT_VERSION): Remove.
10012
10013 2004-05-23 Paul Eggert <eggert@cs.ucla.edu>
10014
10015 Ensure that the C++ compiler used for testing actually works on a
10016 simple test program; if not, skip the C++-related tests. Problem
10017 reported by Vin Shelton in:
10018 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00026.html
10019
10020 * m4/cxx.m4: New file.
10021 * configure.ac (BISON_TEST_FOR_WORKING_CXX_COMPILER): Add.
10022 * tests/atlocal.in (BISON_CXX_WORKS): Add.
10023 * tests/local.at (AT_COMPILE_CXX): Use it.
10024
10025 2004-05-21 Paul Eggert <eggert@cs.ucla.edu>
10026
10027 * data/glr.c (yylloc): Output this macro even if locations are not
10028 being generated, as the GLR parser needs it even in that case.
10029 Problem reported by Troy A. Johnson
10030 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=195946>.
10031
10032 * configure.ac (AC_INIT): Update to 1.875e.
10033
10034 2004-05-21 Paul Eggert <eggert@cs.ucla.edu>
10035
10036 * NEWS: Version 1.875d.
10037 * configure.ac (AC_INIT): Likewise.
10038 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875d.
10039
10040 * configure.ac (--enable-gcc-warnings): Do not enable -Wshadow,
10041 -Wmissing-prototypes, or -Wstrict-prototypes for C++. The current
10042 lalr1.cc runs afoul of the first, and the last two are no longer
10043 supported by GCC 3.4.0.
10044 * README: Mention GNU m4 1.4 or later; mention m4 patches.
10045 * HACKING: Use ./bootstrap, not "make update" to import foreign files.
10046
10047 2004-05-06 Paul Eggert <eggert@cs.ucla.edu>
10048
10049 * src/muscle_tab.c (hash_muscle): Accept and return size_t, not
10050 unsigned int, for compatibility with latest gnulib hash module.
10051 * src/state.c (state_hash, state_hasher): Likewise.
10052 * src/symtab.c (hash_symbol, hash_symbol_hasher): Likewise.
10053 * src/uniqstr.c (hash_uniqstr): Likewise.
10054
10055 2004-05-03 Paul Eggert <eggert@cs.ucla.edu>
10056
10057 * NEWS: Unescaped newlines are no longer allowed in char & strings.
10058
10059 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER,
10060 SC_CHARACTER,SC_STRING>): Reject unescaped newlines in
10061 character and string literals.
10062 (unexpected_end): New function.
10063 (unexpected_eof): Use it.
10064 (unexpected_newline): New function.
10065 (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>): Coalesce duplicate
10066 actions.
10067
10068 * NEWS: Document %expect-rr.
10069
10070 * bootstrap (--gnulib-srcdir=*, --cvs-user=*):
10071 Fix typo by replacing $1 with $option.
10072 Remove more 'intl'-related files.
10073 Don't DEFUN AM_INTL_SUBDIR twice.
10074
10075 * lib/.cvsignore: Add strndup.h. Remove memchr.c, memcmp.c,
10076 memrchr.c, strcasecmp.c, strchr.c, strrchr.c, strspn.c, strtol.c,
10077 strtoul.c.
10078 * m4/.cvsignore: Add exitfail.m4, extensions.m4, gnulib.m4,
10079 hard-locale.m4, mbstate_t.m4, strerror_r.m4, strndup.m4,
10080 xstrndup.m4. Remove glibc21.m4, intdiv0.m4, inttypes-pri.m4,
10081 inttypes.m4, inttypes_h.m4, isc-posix.m4, lcmessage.m4,
10082 stdint_h.m4, uintmax_t.m4, ulonglong.m4.
10083 * src/.cvsignore: Add *.output.
10084
10085 * src/parse-gram.y: Put copyright notice inside %{ %} so it
10086 gets copied to the output file.
10087
10088 2004-04-28 Paul Eggert <eggert@twinsun.com>
10089
10090 Get files from the gnulib and po repositories, instead of relying
10091 on them being in our CVS. Upgrade to latest versions of gnulib
10092 and Automake.
10093
10094 * Makefile.am (SUBDIRS): Remove m4; Automake now does m4.
10095 * bootstrap: Bootstrap from gnulib and po repositories.
10096 Much of this code was stolen from GNU diff and GNU tar's bootstrap.
10097 * README-cvs: Document these changes. Remove version numbers from
10098 mentions of build tools, since they change so often. Mention Flex.
10099
10100 * configure.ac (AC_CONFIG_MACRO_DIR): Add, with m4 as arg.
10101 (gl_USE_SYSTEM_EXTENSIONS): Add.
10102 (AC_GNU_SOURCE, AC_AIX, AC_MINIX):
10103 Remove; no longer needed, as gl_USE_SYSTEM_EXTENSIONS
10104 does this for us.
10105 (AC_ISC_POSIX): Remove; we no longer support this
10106 ancient OS, as it gets in the way of latest Autoconf & gnulib.
10107 (AC_HEADER_STDC): Remove: we now assume C89 or better.
10108 (AC_CHECK_HEADERS_ONCE): Use instead of AC_CHECK_HEADERS.
10109 Do not check for C89 headers, except for locale.h which is used
10110 by the Yacc library and must port to K&R hosts.
10111 (AC_CHECK_FUNCS_ONCE): Use instead of AC_CHECK_FUNCS.
10112 Do not check for C89 functions, except for setlocale which is
10113 used by the Yacc library.
10114 (AC_CHECK_DECLS, AC_REPLACE_FUNCS): Remove; no longer needed.
10115 (gl_DIRNAME, gl_ERROR, gl_FUNC_ALLOCA, gl_FUNC_MEMCHR,
10116 gl_FUNC_MEMRCHR, gl_FUNC_STPCPY, gl_FUNC_STRNLEN, gl_FUNC_STRTOL,
10117 gl_GETOPT, gl_HASH, gl_MBSWIDTH, gl_OBSTACK, gl_QUOTE,
10118 gl_QUOTEARG, gl_XALLOC, jm_FUNC_GLIBC_UNLOCKED_IO, jm_FUNC_MALLOC,
10119 AM_GNU_GETTEXT): Remove; now done by:
10120 (GNULIB_AUTOCONF_SNIPPET): Add. "bootstrap" builds this for us.
10121 (AC_CONFIG_FILES): Remove m4/Makefile, as Automake now does this
10122 for us.
10123
10124 * lib/Makefile.am: Include gnulib.mk, built for us by "bootstrap".
10125 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES):
10126 Define to empty, as gnulib.mk will do the rest for us.
10127 ($(libbison_a_OBJECTS), stdbool.h): Remove, as gnulib.mk does this
10128 for us.
10129 (libbison_a_SOURCES): Define to $(lib_SOURCES) now.
10130 (lib_SOURCES): New symbol, containing only the non-gnulib libs.
10131
10132 * src/files.c: Include gnulib's xstrndup.h.
10133
10134 * src/system.h (MALLOC): Use xnmalloc, for better overflow checking.
10135 (REALLOC): Use xnrealloc, for likewise.
10136 (xstrndup, stpcpy): Remove decls, as gnulib does this for us now.
10137 (strnlen, memrchr): Remove decls; functions no longer used.
10138 Include <stpcpy.h>.
10139
10140 * config/depcomp, config/install-sh, lib/alloca.c, lib/argmatch.c,
10141 lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
10142 lib/error.c, lib/error.h, lib/getopt.c, lib/getopt.h,
10143 lib/getopt1.c, lib/gettext.h, lib/hash.c, lib/hash.h,
10144 lib/malloc.c, lib/mbswidth.c, lib/mbswidth.h, lib/memchr.c,
10145 lib/memcmp.c, lib/memrchr.c, lib/obstack.c, lib/obstack.h,
10146 lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h,
10147 lib/realloc.c, lib/stdbool_.h, lib/stpcpy.c, lib/strcasecmp.c,
10148 lib/strchr.c, lib/strncasecmp.c, lib/strnlen.c, lib/strrchr.c,
10149 lib/strspn.c, lib/strtol.c, lib/strtoul.c, lib/unlocked-io.h,
10150 lib/xalloc.h, lib/xmalloc.c, lib/xstrdup.c, lib/xstrndup.c,
10151 m4/Makefile.am, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
10152 m4/error.m4, m4/getopt.m4, m4/hash.m4, m4/malloc.m4,
10153 m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4, m4/memcmp.m4,
10154 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/prereq.m4,
10155 m4/quote.m4, m4/quotearg.m4, m4/realloc.m4, m4/stdbool.m4,
10156 m4/stpcpy.m4, m4/strnlen.m4, m4/strtol.m4, m4/strtoul.m4,
10157 m4/unlocked-io.m4, m4/xalloc.m4, po/LINGUAS, po/Makefile.in.in,
10158 po/Makevars, po/da.po, po/de.po, po/es.po, po/et.po, po/fr.po,
10159 po/hr.po, po/id.po, po/it.po, po/ja.po, po/ms.po, po/nl.po,
10160 po/pt_BR.po, po/ro.po, po/ru.po, po/sv.po, po/tr.po:
10161 Remove, as these files are now generated automatically
10162 by bootstrap or automake.
10163
10164 * po/ChangeLog: Remove: all but one entry was a duplicate
10165 of this file, and I moved that 2000-11-02 entry here.
10166
10167 * config/.cvsignore: Add Makefile, depcomp, install-sh.
10168 * lib/.cvsignore: Add alloca.c, alloca.h, alloca_.h, argmatch.c,
10169 argmatch.h, basename.c, dirname.c, dirname.h, error.c, error.h,
10170 exit.h, exitfail.c, exitfail.h, getopt.c, getopt.h, getopt1.c,
10171 getopt_int.h, gettext.h, gnulib.mk, hard-locale.c, hard-locale.h,
10172 hash.c, hash.h, malloc.c, mbswidth.c, mbswidth.h, memchr.c,
10173 memcmp.c, memrchr.c, obstack.c, obstack.h, quote.c, quote.h,
10174 quotearg.c, quotearg.h, realloc.c, stdbool_.h, stpcpy.c, stpcpy.h,
10175 strcasecmp.c, strchr.c, stripslash.c, strncasecmp.c, strndup.c,
10176 strnlen.c, strrchr.c, strspn.c, strtol.c, strtoul.c,
10177 unlocked-io.h, xalloc.h, xmalloc.c, xstrdup.c, xstrndup.c,
10178 xstrndup.h.
10179 * m4/.cvsignore: Remove Makefile, Makefile.in. Add alloca.m4,
10180 dirname.m4, dos.m4, error.m4, getopt.m4, hash.m4, mbrtowc.m4,
10181 mbswidth.m4, obstack.m4, onceonly.m4, quote.m4, quotearg.m4,
10182 stdbool.m4, stpcpy.m4, strnlen.m4, unlocked-io.m4, xalloc.m4.
10183 * po/.cvsignore: Add *.po, LINGUAS, Makefile.in.in, Makevars.
10184 * src/.cvsignore: Remove *_.c.
10185
10186
10187 * Makefile.maint (GZIP_ENV): Don't use --rsyncable if gzip doesn't
10188 support it. (The latest stable gzip doesn't.)
10189
10190 2004-04-27 Paul Eggert <eggert@twinsun.com>
10191
10192 * data/lalr1.cc (Parser::stos_) [! YYDEBUG]: Define even in this
10193 case, as stos_ is now used by destructors due to the 2004-02-09
10194 change.
10195
10196 Remove more K&R C support.
10197 * lib/libiberty.y (PARAMS): Remove. All uses removed.
10198 * lib/subpipe.c (errno): Remove decl.
10199 Include <stdlib.h> unconditionally.
10200 (EXIT_FAILURE): Remove macro.
10201 * src/complain.c (vfprintf, strerror): Remove.
10202 * src/system.h: Include limits.h, stdlib.h, string.h, locale.h
10203 unconditionally.
10204 (EXIT_FAILURE, EXIT_SUCCESS, setlocale): Remove defns.
10205 Use latest Autoconf recommendations for including inttypes.h, stdint.h.
10206 (strchr, strspn, memchr): Remove decls.
10207 * tests/calc.at (_AT_DATA_CALC_Y): Include stdlib.h, string.h
10208 unconditionally. Do not declare perror.
10209 * tests/conflicts.at (%nonassoc and eof): Include stdlib.h
10210 unconditionally.
10211
10212 * src/complain.c (_): Remove useless defn, as system.h defines this.
10213
10214 * lib/bitset.h (__INT_TO_PTR): Remove; workaround no longer needed
10215 with latest obstack.h.
10216 * lib/ebitset.c (ebitset_elt_alloc): Don't bother to cast args
10217 to procedure types, as obstack.h now does that for us.
10218 * lib/lbitset.c (lbitset_elt_alloc): Likewise.
10219
10220 * lib/subpipe.h [HAVE_SYS_TYPES_H]: Include <sys/types.h>,
10221 so that this include file can stand alone.
10222 * lib/subpipe.c: Do not include <sys/types.h>, as subpipe.h
10223 does this now. Include subpipe.h first after config.h, to
10224 test whether it can stand alone.
10225
10226 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't
10227 declare yyerror when using lalr.cc, as GCC 3.4.0 warns about the
10228 unused declaration.
10229
10230 * tests/synclines.at (%union synch line): Put a dummy member in
10231 the union, because empty unions aren't allowed in C. Caught
10232 by GCC 3.4.0.
10233
10234 2004-04-13 Jim Meyering <jim@meyering.net>
10235
10236 * src/conflicts.c (conflicts_print): Correct format string typo:
10237 use `%%' to produce literal `%'. (trivial change)
10238
10239 2004-03-30 Paul Eggert <eggert@twinsun.com>
10240
10241 * src/getargs.c (version): Update copyright year to 2004.
10242
10243 * data/c.m4 (b4_int_type): Use 'short int' rather than
10244 'short', and similarly for 'long', 'unsigned', etc.
10245 * data/glr.c (YYTRANSLATE, yyconfl, yySymbol, yyItemNum,
10246 yygetLRActions, yyprocessOneStack, yyrecoverSyntaxError,
10247 yy_yypstack, yydumpstack): Likewise.
10248 * data/lalr1.cc (user_token_number_max_, user_token_number_max_,
10249 translate_, seq_, [], pop, Slice, range_, operator+, operator+=):
10250 Likewise.
10251 * data/yacc.c (b4_int_type, yyss, YYSTACK_BYTES, yysigned_char,
10252 yy_stack_print, yyparse): Likewise.
10253 * doc/bison.texinfo (Prologue, Multiple Types): Likewise.
10254 * lib/bbitset.h (bitset_word, BITSET_WORD_BITS): Likewise.
10255 * lib/bitset.c (bitset_print): Likewise.
10256 * lib/bitset_stats.c (bitste_log_histogram_print): Likewise.
10257 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
10258 * lib/bitsetv.c (bitsetv_dump): Likewise.
10259 * lib/ebitset.c (EBITSET_ELT_BITS, ebitset_elt_alloc): Likewise.
10260 * lib/lbitset.c (LBITSET_ELT_BITS, lbitset_elt_alloc, debug_lbitset):
10261 Likewise.
10262 * src/LR0.c (allocate_itemsets): Likewise.
10263 * src/gram.h (rule_number, rule): Likewise.
10264 * src/lalr.h (goto_number): Likewise.
10265 * src/nullable.c (nullable_compute): Likewise.
10266 * src/output.c (prepare_rules): Likewise.
10267 * src/relation.c (relation_print, relation_digraph): Likewise.
10268 * src/relation.h (relation_node): Likewise.
10269 * src/state.h (state_number, transitions, errs, reductions,
10270 struct state): Likewise.
10271 * src/symtab.h (symbol_number, struct symbol): Likewise.
10272 * src/tables.c (vector_number, tally, action_number,
10273 default_goto, goto_actions): Likewise.
10274 * tests/existing.at (GNU Cim Grammar): Likewise.
10275 * tests/regression.at (Web2c Actions): Likewise.
10276
10277 * src/output.c (muscle_insert_short_int_table): Renamed from
10278 muscle_insert_short_table. All uses changed.
10279
10280 2004-03-25 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
10281
10282 * src/parse-gram.y: Define PERCENT_EXPECT_RR.
10283 (declaration): Replace expected_conflicts with expected_sr_conflicts.
10284 Add %expect-rr rule.
10285
10286 * src/scan-gram.l: Recognize %expect-rr.
10287
10288 * src/conflicts.h (expected_sr_conflicts): Rename from
10289 expected_conflicts.
10290 (expected_rr_conflicts): Declare.
10291
10292 * src/conflicts.c (expected_sr_conflicts): Rename from
10293 expected_conflicts.
10294 (expected_rr_conflicts): Define.
10295 (conflicts_print): Check r/r conflicts against expected_rr_conflicts
10296 for GLR parsers.
10297 Use expected_sr_conflicts in place of expected_conflicts.
10298 Warn if expected_rr_conflicts used in non-GLR parser.
10299
10300 * doc/bison.texinfo: Add documentation for %expect-rr.
10301
10302 2004-03-08 Paul Eggert <eggert@gnu.org>
10303
10304 Add support for hex token numbers. Suggested by Odd Arild Olsen in
10305 <http://lists.gnu.org/archive/html/bison-patches/2004-03/msg00000.html>.
10306
10307 * NEWS: Document hexadecimal tokens, no NUL bytes, %destructor
10308 in lalr1.cc.
10309 * doc/bison.texinfo (Token Decl): Add hexadecimal token numbers.
10310 * src/scan-gram.l (scan_integer): New function.
10311 ({int}): Use it.
10312 (0[xX][0-9abcdefABCDEF]+): New pattern, to support hex numbers.
10313 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>, \\x[0-9abcdefABCDEF]+,
10314 handle_action_dollar, handle_action_at, convert_ucn_to_byte):
10315 Say "long int", not "long", for uniformity with GNU style.
10316
10317 2004-02-25 Paul Eggert <eggert@twinsun.com>
10318
10319 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Ignore stdout from
10320 compilers. This fixes a problem with Intel's C++ compiler being
10321 chatty, reported by Guido Trentalancia in
10322 <http://lists.gnu.org/archive/html/bug-bison/2004-02/msg00030.html>.
10323
10324 2004-02-09 Alexandre Duret-Lutz <adl@gnu.org>
10325
10326 Support %destructor and merge error locations in lalr1.cc.
10327
10328 * data/lalr1.cc (b4_cxx_destruct_def): New macro.
10329 (Parser::stos_): Define unconditionally.
10330 (Parser::destruct_): New method. Generate its body with
10331 b4_yydestruct_generate.
10332 (Parser::error_start_): New attribute.
10333 (Parser::parse) <yyerrlab, yyerrlab1>: Call destruct_ on erroneous
10334 token which are discarded.
10335 (Parser::parse) <yyerrlab, yyerrorlab, yyerrlab1>: Update
10336 error_start_ when erroneous token are discarded.
10337 (Parser::parse) <yyerrlab1>: Compute the location of the error
10338 token so that it covers all the discarded tokens.
10339 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust so
10340 it can be called with `%skeleton "lalr1.cc"', and do that.
10341
10342 2004-02-02 Paul Eggert <eggert@twinsun.com>
10343
10344 * src/Makefile.am (AM_CPPFLAGS): New macro. It mentions
10345 $(top_srcdir)/lib and ../lib. This fixes a bug reported
10346 by Paul Hilfinger; the old INCLUDES value didn't mention ../lib.
10347 There's no need to mention top_builddir since Automake does that
10348 for us.
10349 (INCLUDES): Remove, as Automake says it's obsolescent.
10350 Contents migrated into AM_CPPFLAGS as described above.
10351 * lib/Makefile.am (INCLUDES): Remove; obsolescent.
10352
10353 2004-01-14 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
10354
10355 * data/glr.c (yytokenName): Bullet-proof against YYEMPTY token.
10356 (yyreportSyntaxError): Handle case where lookahead token is
10357 YYEMPTY.
10358
10359 2004-01-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10360
10361 * data/glr.c: Put casts on uses of YYREALLOC and YYMALLOC so that
10362 resulting parsers are compilable with C++.
10363
10364 2003-12-23 Paul Eggert <eggert@twinsun.com>
10365
10366 * config/depcomp, config/install-sh: Sync with Automake 1.8.
10367 * src/output.c (output_skeleton): Rename local var.
10368 * tests/input.at (Torturing the Scanner): Don't use \x0 or \0 in
10369 Bison tokens, as this runs afoul of the 2003-10-07 change that
10370 disallowed NUL bytes in character constants or string literals.
10371
10372 * tests/local.at: Require Autoconf 2.59's Autotest.
10373 * tests/testsuite.at: Don't include local.at, since we now assume
10374 Autoconf 2.59 or later. Autoconf 2.59 had some problems with
10375 including it.
10376 * tests/Makefile.am ($(TESTSUITE)): Remove warning about ignoring
10377 multiple inclusion warnings.
10378
10379 2003-12-02 Akim Demaille <akim@epita.fr>
10380
10381 * doc/bison.texinfo (How Can I Reset the Parser): More about start
10382 conditions.
10383 From Bruno Haible.
10384
10385 2003-11-18 Alexandre Duret-Lutz <adl@gnu.org>
10386
10387 * doc/bison.texinfo (Bison Options): Escape `@' in `$@'.
10388
10389 2003-10-07 Paul Eggert <eggert@twinsun.com>
10390
10391 * tests/Makefile.am (clean-local): Don't run 'testsuite --clean'
10392 if testsuite doesn't exist.
10393
10394 * doc/bison.texinfo (Symbols): NUL bytes are not allowed in string
10395 literals, unfortunately.
10396 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
10397 Complain about NUL bytes in character constants or string literals.
10398
10399 2003-10-05 Paul Eggert <eggert@twinsun.com>
10400
10401 * NEWS: Don't document %no-default-prec, as it's still
10402 too experimental.
10403 * doc/bison.texinfo: Document %no-default-prec only if
10404 the defaultprec flag is set. Normally it's not.
10405
10406 2003-10-04 Paul Eggert <eggert@twinsun.com>
10407
10408 * data/glr.c (b4_rhs_value, b4_rhs_location): Yield a
10409 non-modifiable lvalue, instead of a modifiable one.
10410 * doc/bison.texinfo (Actions): Document that $$ can
10411 be assigned to. Do not claim that $$ and $N are
10412 array element references: user code should not rely on this.
10413
10414 2003-10-01 Paul Eggert <eggert@twinsun.com>
10415
10416 * src/parse-gram.h (PERCENT_NO_DEFAULT_PREC): New token.
10417 (grammar_declaration): Use it.
10418 * src/scan-gram.l: New token %no-default-prec.
10419 * tests/conflicts.at: Revamp tests to use %no-default-prec.
10420 * NEWS, doc/bison.texinfo: Document the above.
10421
10422 2003-10-01 Akim Demaille <akim@epita.fr>
10423
10424 VCG no longer supports long_straight_phase.
10425
10426 * src/vcg.c, src/vcg.h: Remove the handling of long_straight_phase.
10427 * src/print_graph.c (print_graph): Adjust.
10428
10429 2003-09-30 Frank Heckenbach <frank@g-n-u.de>
10430 and Paul Eggert <eggert@twinsun.com>
10431
10432 * doc/bison.texinfo (Decl Summary, Contextual Precedence,
10433 Table of Symbols): Document %default-prec.
10434 * src/parse-gram.y (PERCENT_DEFAULT_PREC): New token.
10435 (grammar_declaration): Set default_prec on %default-prec.
10436 * src/scan-gram.l (%default-prec): New token.
10437 * src/reader.h (default_prec): New flag.
10438 * src/reader.c: Likewise.
10439 (packgram): Handle it.
10440 * tests/conflicts.at (%default-prec without %prec,
10441 %default-prec with %prec, %default-prec 1): New tests.
10442
10443 2003-09-30 Paul Eggert <eggert@twinsun.com>
10444
10445 * tests/testsuite.at: Include local.at, not input.at, fixing
10446 a typo in the 2003-08-25 patch.
10447
10448 2003-08-27 Akim Demaille <akim@epita.fr>
10449
10450 * data/lalr1.cc (yyparse) [__GNUC__]: "Use" yyerrorlab to pacify
10451 GCC warnings.
10452
10453 2003-08-26 Akim Demaille <akim@epita.fr>
10454
10455 * config/announce-gen (print_changelog_deltas): Neutralize "<#" as
10456 "<\#" to avoid magic from Gnus when posting parts of this script.
10457
10458 2003-08-26 Akim Demaille <akim@epita.fr>
10459
10460 * data/lalr1.cc (Parser::report_syntax_error_): New, extracted from
10461 (Parser::parse): here.
10462 Adjust: nerrs and errstatus is now replaced by...
10463 (Parser::nerrs_, Parser::errstatus_): New.
10464
10465 2003-08-25 Akim Demaille <akim@epita.fr>
10466
10467 * config/announce-gen, Makefile.cfg: New.
10468 * Makefile.am: Adjust.
10469 * GNUmakefile, Makefile.maint: Update from CVS Autoconf, but
10470 keeping local WGET and WGETFLAGS modifications from Paul Eggert.
10471
10472 2003-08-25 Akim Demaille <akim@epita.fr>
10473
10474 When reducing initial empty rules, Bison parser read an initial
10475 location that is not defined. This results in garbage, and that
10476 affects Bison's own parser. Therefore we need (i) to extend Bison
10477 to support a means to initialize this location, and (ii) to use
10478 this CVS Bison to fix CVS Bison's parser.
10479
10480 * src/reader.h, reader.c (epilogue_augment): Remove, replace
10481 with...
10482 * src/muscle_tab.h, src/muscle_tab.c (muscle_code_grow): this.
10483 * src/parse-gram.y: Adjust.
10484 (%initial-action): New.
10485 (%error-verbose): Since we require CVS Bison, there is no reason
10486 not to use it.
10487 * src/scan-gram.l: Adjust.
10488 * src/Makefile.am (YACC): New, to make sure we use our own parser.
10489 * data/yacc.c (yyparse): Use b4_initial_action.
10490
10491 2003-08-25 Akim Demaille <akim@epita.fr>
10492
10493 * doc/bison.texinfo: Don't promote stdout for error messages.
10494
10495 2003-08-25 Akim Demaille <akim@epita.fr>
10496
10497 * data/lalr1.cc (Parser::reduce_print_): Remove unused yyi.
10498 From Alexandre Duret-Lutz.
10499
10500 2003-08-25 Akim Demaille <akim@epita.fr>
10501
10502 Version 1.875c.
10503
10504 2003-08-25 Akim Demaille <akim@epita.fr>
10505
10506 * data/lalr1.cc (Parser::stack_print_, YY_STACK_PRINT): New.
10507 Use them.
10508
10509 2003-08-25 Akim Demaille <akim@epita.fr>
10510
10511 * data/lalr1.cc (Parser::reduce_print_): New.
10512 Use it.
10513
10514 2003-08-25 Akim Demaille <akim@epita.fr>
10515
10516 Have lalr1.cc catch with Paul Eggert's patch to fix the infinite
10517 error recovery loops. This patch is based on
10518 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00000.html>.
10519 Also, augment the similarity between lalr1.cc and yacc.c.
10520 Note: the locations of error recovery rules are not correct yet.
10521
10522 * data/lalr1.cc: Comment changes to augment the similarity between
10523 lalr1.cc and yacc.c.
10524 (YYERROR): Goto to yyerrorlab, not yyerrlab1.
10525 (yyerrlab1): Remove, but where it used to be (now the bottom part of
10526 yyerrlab), when hitting EOF, pop the whole stack here instead of
10527 merely falling thru the default error handling mechanism.
10528 (yyerrorlab): New label, with the old contents of YYERROR,
10529 plus the following change: pop the stack of rhs corresponding
10530 to the production that invoked YYERROR. That is how Yacc
10531 behaves (required by POSIX).
10532 * tests/calc.at (AT_CHECK_CALC_LALR1_CC): No longer expected to
10533 fail.
10534
10535 2003-08-25 Akim Demaille <akim@epita.fr>
10536
10537 Tune local.at so that people can "autom4te -l autotest calc.at -o
10538 calc" for instance, to extract a sub test suite.
10539
10540 * tests/testsuite.at: Move the initialization, Autotest version
10541 requirement, and AT_TESTED invocation into...
10542 * tests/local.at: here.
10543 * tests/testsuite.at: Include it for compatibility with Autoconf
10544 2.57.
10545 * tests/Makefile.am ($(TESTSUITE)): Report that the warning should
10546 be ignore.
10547
10548 2003-08-04 Paul Eggert <eggert@twinsun.com>
10549
10550 Rework code slightly to avoid gcc -Wtraditional warnings.
10551 * data/glr.c (yyuserMerge): Return void, not YYSTYPE.
10552 The returned value is now stored in *YY0. All callers changed.
10553 * src/output.c (merge_output): Adjust to the above change.
10554
10555 2003-07-26 Paul Eggert <eggert@twinsun.com>
10556
10557 * data/glr.c (YYASSERT): New macro.
10558 (yyfillin, yydoAction, yyglrReduce, yysplitStack,
10559 yyresolveStates, yyprocessOneStack):
10560 Use `YYASSERT (FOO);' rather than `if (! (FOO)) abort ();'.
10561 Derived from a suggestion by Frank Heckenbach.
10562
10563 2003-07-25 Paul Eggert <eggert@twinsun.com>
10564
10565 * data/glr.c (yyglrReduce): Don't use C89 string concatenation,
10566 for portability to K&R C (after ansi2knr, presumably). See
10567 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>
10568 by Frank Heckenbach, though I have omitted the structure-initialization
10569 part of his glr-knr.diff patch since I recall that the Portable
10570 C Compiler didn't require that change.
10571
10572 Let the user specify how to allocate and free memory.
10573 Derived from a suggestion by Frank Heckenbach in
10574 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>.
10575 * data/glr.c (YYFREE, YYMALLOC, YYREALLOC): New macros.
10576 All uses of free, malloc, realloc changed to use these macros,
10577 and unnecessary casts removed.
10578 * data/yacc.c (YYFREE, YYMALLOC): Likewise.
10579
10580 2003-07-06 Matthias Mann <MatthiasMann@gmx.de>
10581
10582 * data/lalr1.cc (operator<<(std::ostream&, const Position&)):
10583 use s.empty() rather than s == "" to test for empty string; see
10584 <http://lists.gnu.org/archive/html/bison-patches/2003-07/msg00003.html>
10585 (trivial change)
10586
10587 2003-06-25 Akim Demaille <akim@epita.fr>
10588
10589 * config/depcomp, config/install-sh: Update from masters.
10590
10591 2003-06-20 Paul Eggert <eggert@twinsun.com>
10592
10593 * data/glr.c (YYLLOC_DEFAULT): Parenthesize arguments as needed,
10594 and return properly parenthesized result.
10595 * data/lalar1.cc (YYLLOC_DEFAULT): Likewise.
10596 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
10597 Remove unnecessary parentheses from uses.
10598 * doc/bison.texinfo (Location Default Action): Describe the
10599 conventions for parentheses.
10600
10601 2003-06-19 Paul Eggert <eggert@twinsun.com>
10602
10603 * data/glr.c (yyremoveDeletes, yy_reduce_print, yyglrReduce,
10604 yyreportTree): Do not assume that size_t is the same width as int,
10605 when printing sizes. Print sizes using an unsigned format.
10606 Problem reported by Frank Heckenbach in
10607 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00035.html>.
10608
10609 Port to Forte Developer 7 C compiler.
10610 * data/glr.c (struct YYLTYPE): If locations are not being used,
10611 declare a single dummy member, as empty structs do not conform
10612 to the C standard.
10613 (YYERROR, YYBACKUP): Do not use "do { ...; return foo; } while (0)";
10614 the Forte Developer 7 C compiler complains that end-of-loop
10615 code is not reached.
10616
10617 2003-06-17 Paul Eggert <eggert@twinsun.com>
10618
10619 * lib/libiberty.h (PARAMS): Spell argument as Args, not as X, to
10620 avoid warnings from picky compilers about redefinition of PARAMS.
10621
10622 2003-06-17 Paul Eggert <eggert@twinsun.com>
10623
10624 Version 1.875b.
10625
10626 * NEWS: Document 1.875b.
10627
10628 * lib/bbitset.h: Do not include config.h; that's the includer's job.
10629 Do not include <sys/types.h>; shouldn't be needed on a C89 host.
10630 * lib/bitset.h (bitset_compatible_p): Indent as per GNU standard.
10631 Don't use 'index' in comments, as it's a builtin fn on some hosts.
10632 * lib/bitset_stats.c: Include gettext.h unconditionally, as
10633 per recent gettext manual's suggestion.
10634 * lib/ebitset.c (ebitset_resize, ebitset_unused_clear):
10635 Use prototypes, not old-style definitions.
10636 * lib/lbitset.c (lbitset_unused_clear): Likewise.
10637 * lib/vbitset.c (vbitset_resize, vbitset_ones, vbitset_zero,
10638 vbitset_empty_p, vbitset_copy1, vbitset_not, vbitset_equal_p,
10639 vbitset_subset_p, vbitset_disjoint_p, vbitset_and, vbitset_and_cmp,
10640 vbitset_andn, vbitset_andn_cmp, vbitset_or, vbitset_or_cmp,
10641 vbitset_xor, vbitset_xor_cmp, vbitset_and_or, vbitset_and_or_cmp,
10642 vbitset_andn_or, vbitset_andn_or_cmp, vbitset_or_and,
10643 vbitset_or_and_cmp, vbitset_copy): Likewise.
10644
10645 * lib/libiberty.h: Do not include config.h; that's the includer's job.
10646 Do not include <stdlib.h>.
10647 (PARAMS): Define unconditionally for C89.
10648 (ATTRIBUTE_NORETURN): Remove.
10649 (ATTRIBUTE_UNUSED): Define unconditionally.
10650
10651 Upgrade to 2003-06-08 libbitset, submitted by Michael Hayes in:
10652 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00005.html>
10653 * lib/Makefile.am (bitsets_sources): Add vbitset.c, vbitset.h.
10654 * lib/vbitset.c, lib/vbitset.h: New files.
10655 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
10656 lib/bitset_stats.c, lib/ebitset.c, lib/lbitset.c: Import
10657 from libbitset.
10658
10659 * doc/bison.texinfo (How Can I Reset the Parser): Renamed from
10660 `How Can I Reset @code{yyparse}', since texinfo does not allow
10661 arbitrary @ in node names.
10662
10663 * m4/Makefile.am (EXTRA_DIST): Add the following files, which
10664 shouldn't be needed according to the gettext 0.12.1 documentation
10665 but which seem to be needed anyway: codeset.m4 glibc21.m4
10666 intdiv0.m4 inttypes-pri.m4 inttypes.m4 inttypes_h.m4 isc-posix.m4
10667 lcmessage.m4 nls.m4 po.m4 stdint_h.m4 uintmax_t.m4 ulonglong.m4.
10668 * po/Makefile.in.in: Upgrade to gettext 0.12.1 version.
10669
10670 * lib/.cvsignore: Add stdbool.h.
10671 * m4/.cvsignore: Add nls.m4, po.m4.
10672
10673 Upgrade to CVS gnulib.
10674 * stdbool_.h: File renamed from stdbool.h.in.
10675 * configure.ac (AM_STDBOOL_H): Invoke this instead of
10676 AC_HEADER_STDBOOL.
10677 (AM_GNU_GETTEXT): Put brackets around args, as latest manual suggests.
10678 (AM_GNU_GETTEXT_VERSION): Update to 0.12.1.
10679 * lib/Makefile.am (EXTRA_DIST): Add stdbool_.h.
10680 (MOSTLYCLEANFILES): New var.
10681 ($(libbison_a_OBJECTS)): Depend on $(STDBOOL_H).
10682 (stdbool.h): New rule.
10683 * lib/dirname.c, lib/dirname.h, lib/hash.c, lib/hash.h,
10684 lib/malloc.c, lib/obstack.h, lib/quote.c, lib/realloc.c,
10685 lib/strcasecmp.c, lib/xalloc.h, m4/alloca.m4, m4/onceonly.m4,
10686 m4/quote.m4: Upgrade to today's gnulib.
10687
10688 * tests/calc.at (AT_CHECK_CALC): New option EXPECTED-TO-FAIL.
10689 (AT_CHECK_CALC_LALR1_CC): Use it, since the C++ LALR parser fails
10690 the tests right now.
10691 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Ensure yylex and
10692 yyerror are declared before use; C99 requires this.
10693
10694 2003-06-09 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10695
10696 * data/glr.c (YYERROR): Update definition to reset yyerrState to 0
10697 first.
10698 (yyrecoverSyntaxError): Correct the logic for setting and testing
10699 yyerrState.
10700 Correct comment on handling EOF.
10701 Allow states with only a default reduction, rather than failing
10702 (I can't quite reconstruct why these were not allowed before).
10703
10704 Fixes to avoid problem that $-N rules in GLR parsers can cause
10705 buffer overruns, corrupting state.
10706
10707 * src/output.c (prepare_rules): Output max_left_semantic_context
10708 definition.
10709 * src/reader.h (max_left_semantic_context): New variable declaration.
10710 * src/scan-gram.l (max_left_semantic_context): Define.
10711 (handle_action_dollar): Update max_left_semantic_context.
10712 * data/glr.c (YYMAXLEFT): New definition.
10713 (yydoAction): Increase size of yyrhsVals by YYMAXLEFT.
10714 (yyresolveAction): Ditto.
10715
10716 Fixes to problems with location handling in GLR parsers reported by
10717 Frank Heckenbach (2003/06/05).
10718
10719 * data/glr.c (YYLTYPE): Make trivial if locations not used.
10720 (YYRHSLOC): Add parentheses, and define only if locations used.
10721 (YYLLOC_DEFAULT): Add parentheses, and give trivial definition if
10722 locations not used.
10723 (yyuserAction): Use YYLLOC_DEFAULT to set *yylocp.
10724 (yydoAction): Remove redundant initialization of *yyvalp and *yylocp.
10725
10726 * tests/cxx-type.at: Exercise location information; update tests
10727 to differentiate output with and without locations.
10728 Remove forward declarations of yylex and yyerror---caused errors
10729 because default YYLTYPE not yet defined.
10730 Change semantic actions to compute strings, rather than printing
10731 them directly (to test proper passing of semantics values). Change
10732 output to prefix notation and update test data and expected results.
10733 (yylex): Track locations.
10734 (stmtMerge): Return value rather than printing, and include arguments
10735 in value.
10736
10737 2003-06-03 Paul Eggert <eggert@twinsun.com>
10738
10739 Avoid warnings generated by GCC 2.95.4 when Bison is
10740 configured with --enable-gcc-warnings.
10741 * data/lalr1.cc (yy::]b4_parser_class_name[::parse,
10742 yy::]b4_parser_class_name[::translate_,
10743 yy::Stack::operator[] (unsigned),
10744 yy::Stack::operator[] (unsigned) const,
10745 yy::Slice::operator[] (unsigned),
10746 yy::Slice::operator[] (unsigned) const):
10747 Rename local vars to avoid warnings.
10748 * tests/glr-regression.at (Improper handling of embedded actions
10749 and $-N in GLR parsers): Remove unused local variable from yylex.
10750 * tests/regression.at (_AT_DATA_DANCER_Y): Declare yylex to take
10751 (void) as arg when not pure, since we now assume C89 when building
10752 Bison. Pacify GCC by using parameter.
10753
10754 2003-06-02 Paul Eggert <eggert@twinsun.com>
10755
10756 * data/lalr1.cc (yy::Position::lines, yy::Position::columns,
10757 yy::Location::lines, yy::Location::columns): Rename arguments
10758 to avoid shadowing; this removes a warning generated by GCC 3.3.
10759
10760 2003-06-01 Paul Eggert <eggert@twinsun.com>
10761
10762 Don't pass C-only warning optins (e.g., -Wmissing-declarations)
10763 to g++, as GCC 3.3 complains if you do it.
10764 * configure.ac (WARNING_CXXFLAGS): New subst. Set it to
10765 everything that WARNING_CFLAGS has, except omit warnings
10766 not suitable for C++.
10767 (AC_PROG_CXX): Use this instead of AC_CHECK_PROGS([CXX], [g++]).
10768 * tests/atlocal.in (CXXFLAGS): New var.
10769 * tests/local.at (AT_COMPILE_CXX): Use it instead of CFLAGS.
10770
10771 Fix a GLR parser bug I reported in February; see
10772 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00008.html>.
10773 The problem was that GLR parsers did not conform to the C standard,
10774 because actions like { $1 = $2 + $3; } expanded to expressions
10775 that invoked YYFILL in separate subexpressions, and YYFILL assigned
10776 to a local variable. The C standard says that expressions
10777 like (var = f ()) + (var = f ()) have undefined behavior.
10778 Another problem was that GCC sometimes issues warnings that
10779 yyfill and its parameters are unused.
10780
10781 * data/glr.c (yyfillin): Renamed from the old yyfill. Mark
10782 as possibly unused.
10783 (yyfill): New function.
10784 (YYFILL): Use it.
10785 (yyuserAction): Change type of yynormal to bool, so that it matches
10786 the new yyfill signature. Mark it as possibly unused.
10787
10788
10789 Follow up on a bug I reported in February, where a Bison-generated
10790 parser can loop. Provide a test case and a fix for yacc.c. I
10791 don't have a fix for lalr1.cc or for glr.c, unfortunately.
10792 The original bug report is in:
10793 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00044.html>
10794
10795 * data/yacc.c (YYERROR): Now just 'goto yyerrorlab', since the
10796 macro's size was becoming unwieldy.
10797 (yyerrlab): Do not discard an empty lookahead symbol, as this
10798 might destroy garbage.
10799 (yyerrorlab): New label, with the old contents of YYERROR,
10800 plus the following change: pop the stack of rhs corresponding
10801 to the production that invoked YYERROR. That is how Yacc
10802 behaves, and POSIX requires this behavior.
10803 (yyerrlab1): Use YYPOPSTACK instead of its definiens.
10804 * tests/calc.at (_AT_DATA_CALC_Y): Include unistd.h if available.
10805 Define 'alarm' to do nothing if unistd.h is not available.
10806 Add a new rule "exp: '-' error;" to test the above change to
10807 data/yacc.c. Use 'alarm' to abort any test taking longer than
10808 10 seconds, as it's probably looping.
10809 (AT_CHECK_CALC): Test recovery from error in new grammar rule.
10810 Also, the new yacc.c generates two fewer diagnostics for an
10811 existing test.
10812
10813 2003-05-24 Paul Eggert <eggert@twinsun.com>
10814
10815 * data/glr.c (YYSTACKEXPANDABLE): Do not evaluate
10816 YYSTYPE_IS_TRIVIAL or YYSTYPE_IS_TRIVIAL unless they are defined.
10817 This fixes a problem reported by John Bowman when the Compaq/HP
10818 Alpha cxx compiler happy (e.g. using cxx -D__USE_STD_IOSTREAM
10819 -ansi -Wall -gall).
10820 * data/yacc.c (union yyalloc): Likewise.
10821 (YYCOPY): Do not evaluate __GNUC__ unless it is defined.
10822
10823 Switch from 'int' to 'bool' where that makes sense.
10824
10825 * lib/abitset.c (abitset_test, abitset_empty_p, abitset_equal_p,
10826 abitset_subset_p, abitset_disjoint_p, abitset_and_cmp,
10827 abitset_andn_cmp, abitset_or_cmp, abitset_xor_cmp, abitset_and_or,
10828 abitset_and_or_cmp, abitset_andn_or_cmp, abitset_or_and_cmp):
10829 Return or accept bool, not int. All callers changed.
10830 * lib/bbitset.h: (bitset_toggle_, bitset_copy_, bitset_and_or_cmp_,
10831 bitset_andn_or_cmp_, bitset_or_and_cmp_): Likewise.
10832 * lib/bitset.c (bitset_only_set_p, bitset_print, bitset_toggle_,
10833 bitset_copy_, bitset_op4_cmp, bitset_and_or_cmp_, bitset_andn_or_cmp_,
10834 bitset_or_and_cmp_): Likewise.
10835 * lib/bitset.h (bitset_test, bitset_only_set_p): Likewise.
10836 * lib/bitset_stats.c (bitset_stats_print, bitset_stats_toggle,
10837 bitset_stats_test, bitset_stats_empty_p, bitset_stats_disjoint_p,
10838 bitset_stats_equal_p, bitset_stats_subset_p, bitset_stats_and_cmp,
10839 bitset_stats_andn_cmp, bitset_stats_or_cmp, bitset_stats_xor_cmp,
10840 bitset_stats_and_or_cmp, bitset_stats_andn_or_cmp,
10841 bitset_stats_or_and_cmp): Likewise.
10842 * lib/ebitset.c (ebitset_elt_zero_p, ebitset_equal_p, ebitset_copy_cmp,
10843 ebitset_test, ebitset_empty_p, ebitset_subset_p, ebitset_disjoint_p,
10844 ebitset_op3_cmp, ebitset_and_cmp, ebitset_andn_cmp, ebitset_or_cmp,
10845 ebitset_xor_cmp): Likewise.
10846 * lib/lbitset.c (lbitset_elt_zero_p, lbitset_equal_p, lbitset_copy_cmp,
10847 lbitset_test, lbitset_empty_p, lbitset_subset_p, lbitset_disjoint_p,
10848 lbitset_op3_cmp, lbitset_and_cmp, lbitset_andn_cmp, lbitset_or_cmp,
10849 lbitset_xor_cmp): Likewise.
10850 * lib/bbitset.h: Include <stdbool.h>.
10851 (struct bitset_vtable): The following members now return bool, not
10852 int: toggle, test, empty_p, disjoint_p, equal_p, subset_p,
10853 and_cmp, andn_cmp, or_cmp, xor_cmp, and_or_cmp, andn_or_cmp,
10854 or_and_cmp).
10855 * src/conflicts.c (count_rr_conflicts): Likewise.
10856 * lib/bitset_stats.h (bitset_stats_enabled): Now bool, not int.
10857 All uses changed.
10858 * lib/ebitset.c (ebitset_obstack_init): Likewise.
10859 * lib/lbitset.c (lbitset_obstack_init): Likewise.
10860 * src/getargs.c (debug_flag, defines_flag, locations_flag,
10861 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
10862 graph_flag): Likewise.
10863 * src/getargs.h (debug_flag, defines_flag, locations_flag,
10864 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
10865 graph_flag): Likewise.
10866 * src/output.c (error_verbose): Likewise.
10867 * src/output.h (error_verbose): Likewise.
10868 * src/reader.c (start_flag, typed): Likewise.
10869 * src/reader.h (typed): Likewise.
10870 * src/getargs.c (LOCATIONS_OPTION): New constant.
10871 (long_options, getargs): Use it.
10872 * src/lalr.c (build_relations): Use bool, not int.
10873 * src/nullable.c (nullable_compute): Likewise.
10874 * src/print.c (print_reductions): Likewise.
10875 * src/tables.c (action_row, pack_vector): Likewise.
10876 * src/muscle_tab.h (MUSCLE_INSERT_BOOL): New macro.
10877 * src/output.c (prepare): Use it.
10878 * src/output.c (token_definitions_output,
10879 symbol_destructors_output, symbol_destructors_output): Use string,
10880 not boolean integer, to keep track of whether to output separator.
10881 * src/print_graph.c (print_core): Likewise.
10882 * src/state.c (state_rule_lookaheads_print): Likewise.
10883
10884 * config/install-sh: Sync from automake 1.7.5.
10885
10886 2003-05-14 Paul Eggert <eggert@twinsun.com>
10887
10888 * src/parse-gram.y (rules_or_grammar_declaration): Require a
10889 semicolon after a grammar declaration, in the interest of possible
10890 future changes to the Bison input language.
10891 Do not allow a stray semicolon at the start of the grammar.
10892 (rhses.1): Allow one or more semicolons after any rule, including
10893 just before "|" as required by POSIX.
10894 * tests/input.at (Torturing the Scanner): Add tests for ";|" in a
10895 grammar.
10896
10897 2003-05-14 Alexandre Duret-Lutz <adl@gnu.org>
10898
10899 %parse-param support for lalr1.cc.
10900
10901 * data/lalr1.cc (b4_parse_param_decl, b4_parse_param_cons,
10902 b4_cc_constructor_calls, b4_cc_constructor_call,
10903 b4_parse_param_vars, b4_cc_var_decls, b4_cc_var_decl): New m4
10904 definitions.
10905 (yy::b4_parser_class_name::b4_parser_class_name): Take extra
10906 parse-param arguments.
10907 (yy::b4_parser_class_name): Declare instance variables to
10908 hold parse-param arguments.
10909 * tests/calc.at: s/value/semantic_value/ because value clashes
10910 with a member of yy::b4_parser_class_name. Adjust C++ code
10911 to handle %parse-param. Enable %parse-param test in C++.
10912
10913 2003-05-12 Paul Eggert <eggert@twinsun.com>
10914
10915 * doc/bison.texinfo (How Can I Reset @code{yyparse}): Reword the
10916 English a bit. Fix fclose typo. Change "const char" to "char
10917 const", and use ANSI C rather than K&R for "main". Suggest
10918 YY_FLUSH_BUFFER over yyrestart (as that is what Flex recommends)
10919 and suggest yy_switch_to_buffer.
10920
10921 2003-05-05 Paul Eggert <eggert@twinsun.com>
10922
10923 * lib/bitset.h (__INT_TO_PTR): Define to a value that presumes
10924 C89. This avoids a diagnostic on compilers that define __STDC__
10925 to 0, fixing a problem with Tru64 cc reported by Martin Mokrejs in
10926 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
10927
10928 2003-05-03 Paul Eggert <eggert@twinsun.com>
10929
10930 * lib/bitset.h (BITSET_FOR_EACH, BITSET_FOR_EACH_REVERSE):
10931 Do not overrun array bounds.
10932 This should fix a bug reported today by Olatunji Oluwabukunmi in
10933 <http://lists.gnu.org/archive/html/bug-bison/2003-05/msg00004.html>.
10934
10935 2003-04-29 Akim Demaille <akim@epita.fr>
10936
10937 * src/gram.h, src/gram.c (pure_parser, glr_parser): Move to...
10938 * src/getargs.c, src/getargs.h: here, as bool, not int.
10939 (nondeterministic_parser): New.
10940 * src/parse-gram.y, src/scan-gram.l: Support
10941 %nondeterministic-parser.
10942 * src/output.c (prepare): Use nondeterministic_parser instead
10943 of glr_parser where appropriate.
10944 * src/tables.c (conflict_row, action_row, save_row)
10945 (token_actions, token_actions, pack_vector): Ditto.
10946
10947 2003-04-29 Akim Demaille <akim@epita.fr>
10948
10949 * doc/bison.texinfo (C++ Parsers, Implementing Loops): New.
10950
10951 2003-04-29 Akim Demaille <akim@epita.fr>
10952
10953 * tests/calc.at: Also test yacc.c and glr.c (but not lalr1.cc yet)
10954 with %pure-parser and %locations to exercise the patch from Yakov
10955 Markovitch below.
10956
10957 2003-04-28 Tim Van Holder <tim.van.holder@pandora.be>
10958
10959 * data/yacc.c: (b4_lex_param): Corrected for the case where
10960 %lex-param is provided and %pure-parser isn't.
10961
10962 2003-04-27 Paul Eggert <eggert@twinsun.com>
10963
10964 Avoid gcc -Wundef warnings reported by Gerald Pfeifer in
10965 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00044.html>.
10966 * data/yacc.c (YYSTACK_ALLOC): Don't evaluate YYSTACK_USE_ALLOCA
10967 if it is not defined.
10968 (YYMAXDEPTH): Don't evaluate YYMAXDEPTH if it is not defined.
10969
10970 2003-04-26 Paul Eggert <eggert@twinsun.com>
10971
10972 * data/lalr1.cc (yy::Parser::pact_ninf_, yy::Parser::table_ninf_):
10973 Declare to be of type suitable for the ninf value itself, not of
10974 type suitable for the corresponding table, since the latter might
10975 be unsigned but the ninf value might be negative. This fixes a
10976 bug reported by Alexandre Duret-Lutz in
10977 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00017.html>.
10978
10979 * configure.ac (AC_FUNC_ERROR_AT_LINE): Remove, since gl_ERROR
10980 invokes it. We shouldn't invoke it twice because it will attempt
10981 to put error.o in the archive twice. This fixes a glitch reported
10982 by Martin Mokrejs in
10983 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
10984
10985 2003-04-21 Paul Eggert <eggert@twinsun.com>
10986
10987 * m4/error.m4: Update from Bruno Haible's 2003-04-14 patch
10988 to gnulib.
10989
10990 2003-04-21 Yakov Markovitch <Markovitch@iso.ru>
10991
10992 * data/glr.c (yyexpandGLRStack) [!YYSTACKEXPANDABLE]:
10993 Fix obvious typo that results in uncompilable GLR parsers
10994 when both %pure-parser and %locations are used. (trivial change)
10995
10996 2003-04-17 Paul Eggert <eggert@twinsun.com>
10997
10998 * src/scan-gram.l: Add %option nounput, since we no longer use unput.
10999 (unexpected_eof): Renamed from unexpected_end_of_file, for brevity.
11000 Do not insert the expected token via unput, as this runs afoul
11001 of a POSIX-compatibility bug in flex 2.5.31.
11002 All uses changed to BEGIN the parent state,
11003 since we no longer insert the expected token via unput.
11004 * tests/regression.at (Invalid inputs): Remove cascaded diagnostic
11005 that is no longer emitted after the above change.
11006
11007 * src/conflicts.c (set_conflicts): Resolve all conflicts, not just
11008 the first one. This change is from Paul Hilfinger, and it fixes
11009 regression reported by Werner Lemberg in
11010 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
11011
11012 (resolve_sr_conflict): Don't invoke state_errs_set
11013 unless one or more tokens have been explicitly made errors.
11014 Otherwise, the above change causes Bison to abort.
11015
11016 * tests/existing.at (GNU pic Grammar): New test case, taken from
11017 Lemberg's email.
11018
11019 2003-03-31 Akim Demaille <akim@epita.fr>
11020
11021 * doc/Makefile.am (AM_MAKEINFOFLAGS): Don't split the info file.
11022
11023 2003-03-31 Akim Demaille <akim@epita.fr>
11024
11025 * src/output.c (prepare_symbols): Avoid trailing spaces in the
11026 output.
11027
11028 2003-03-31 Akim Demaille <akim@epita.fr>
11029
11030 * doc/bison.texinfo (Strings are Destroyed): s/losses/loses/.
11031 From Paul Hilfinger.
11032
11033 2003-03-29 Akim Demaille <akim@epita.fr>
11034
11035 * m4/error.m4: Do not put under dynamic conditions some code which
11036 expansion is under static control.
11037
11038 2003-03-29 Akim Demaille <akim@epita.fr>
11039
11040 * doc/bison.texinfo (How Can I Reset @code{yyparse}): New.
11041
11042 2003-03-29 Akim Demaille <akim@epita.fr>
11043
11044 * doc/bison.texinfo (Strings are Destroyed): New.
11045
11046 2003-03-13 Paul Eggert <eggert@twinsun.com>
11047
11048 * .cvsignore: Add configure.lineno.
11049 * src/.cvsignore: Add yacc.
11050 * tests/.cvsignore: Add testsuite.log.
11051 * doc/fdl.texi: Sync with latest FSF version.
11052
11053 2003-03-12 Paul Eggert <eggert@twinsun.com>
11054
11055 * scan-gram.l (YY_USER_INIT): Initialize code_start, too.
11056 (<INITIAL><<EOF>>, <SC_PRE_CODE><<EOF>>): Set *loc to the scanner
11057 cursor, instead of leaving it undefined. This fixes a bug
11058 reported by Tim Van Holder in
11059 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00023.html>.
11060 * tests/input.at (Torturing the Scanner): Test the scanner on
11061 an empty input file, which was Tim Van Holder's test case.
11062
11063 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): When checking whether
11064 <sys/resource.h> can be included, include sys/time.h and
11065 sys/times.h first, if available. This works around the SunOS
11066 4.1.4 porting bug reported by Bruce Becker in
11067 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00018.html>.
11068
11069 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't
11070 AC_CHECK_HEADERS([sys/wait.h]), as this interferes with
11071 AC_HEADER_SYS_WAIT.
11072
11073 Merge changes from gnulib. This was prompted because the CVS
11074 snapshot didn't build on Solaris 7 due to strnlen problems.
11075
11076 These changes need to be merged back into gnulib:
11077 * lib/hash.c: Include <stdbool.h> unconditionally.
11078 * m4/onceonly.m4 (m4_quote): New macro.
11079 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
11080 Quote AC_FOREACH variable-expansions properly.
11081 The 2003-01-03 obstack.h change also needs merging.
11082 {end of changes requiring merging}
11083
11084 * lib/stdbool.h.in, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
11085 m4/getopt.m4, m4/hash.m4, m4/malloc.m4, m4/memchr.m4,
11086 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/quote.m4,
11087 m4/quotearg.m4, m4/realloc.m4, m4/stpcpy.m4, m4/strnlen.m4,
11088 m4/strtol.m4, m4/strtoul.m4, m4/unlocked-io.m4, m4/xalloc.m4:
11089 New files, imported from gnulib.
11090 * m4/Makefile.am (EXTRA_DIST): Add the new m4/*.m4 files mentioned
11091 above.
11092
11093 * lib/mbswidth.c, m4/error.m4, m4/mbrtowc.m4, m4/mbswidth.m4,
11094 m4/memcmp.m4, m4/prereq.m4, m4/stdbool.m4: Update to current
11095 gnulib sources.
11096
11097 * configure.ac (gl_DIRNAME, gl_GETOPT, gl_HASH, gl_QUOTE, gl_XALLOC):
11098 Add.
11099 (gl_ERROR): New, replacing jm_PREREQ_ERROR.
11100 (gl_FUNC_ALLOCA): New, replacing AC_FUNC_ALLOCA.
11101 (gl_FUNC_STPCPY): New, replacing AC_REPLACE_FUNCS(stpcpy).
11102 (gl_FUNC_STRNLEN): New, replacing AC_FUNC_STRNLEN.
11103 (gl_MBSWIDTH): New, replacing jm_PREREQ_MBSWIDTH.
11104 (gl_OBSTACK): New, replacing AC_FUNC_OBSTACK.
11105 (gl_QUOTEARG): New, replacing jm_PREREQ_QUOTEARG.
11106 (jm_FUNC_GLIBC_UNLOCKED_IO, gl_FUNC_STPCPY, gl_FUNC_STRTOL): New.
11107 (jm_FUNC_MALLOC): New, replacing AC_FUNC_MALLOC.
11108 (jm_FUNC_REALLOC): New, replacing AC_FUNC_REALLOC.
11109 (jm_PREREQ_ARGMATCH): Remove.
11110 (AC_REPLACE_FUNCS): Remove memchr, memrchr, stpcpy, strtol, strtoul.
11111 * lib/Makefile.am (libbison_a_SOURCES): Add argmatch.c, argmatch.h.
11112
11113 * src/system.h: Include <stdbool.h> unconditionally.
11114
11115 * lib/bbitset.h: Include <limits.h> unconditionally. We have been
11116 assuming at least C89 in the bitset code for some time now.
11117
11118 2003-03-03 Akim Demaille <akim@epita.fr>
11119
11120 * ro.po: New.
11121
11122 2003-03-02 Akim Demaille <akim@epita.fr>
11123
11124 * doc/bison.texinfo (Table of Symbols): Reactivate the
11125 documentation for %lex-param, and %parse-param.
11126
11127 2003-03-02 Akim Demaille <akim@epita.fr>
11128
11129 * data/yacc.c, data/glr.c, data/lal1.cc: Use similar code to
11130 generate verbose error messages.
11131 Use the number of tokens as an upper bound in yytname, as it
11132 cannot be a non terminal.
11133
11134 2003-03-02 Akim Demaille <akim@epita.fr>
11135
11136 * tests/regression.at (_AT_DATA_DANCER_Y): Fix the expected error
11137 message.
11138
11139 2003-03-02 Akim Demaille <akim@epita.fr>
11140
11141 * tests/regression.at (_AT_DATA_DANCER_Y, AT_CHECK_DANCER): New.
11142 Use them to exercise yycheck overrun.
11143 Based on Andrew Suffield's grammar.
11144
11145 2003-03-02 Akim Demaille <akim@epita.fr>
11146
11147 Create tests/local.at for Bison generic testing macros.
11148
11149 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Move to...
11150 * tests/local.at (AT_BISON_OPTION_PUSHDEFS, AT_BISON_OPTION_POPDEFS):
11151 This new file.
11152 * tests/calc.at (AT_CHECK_CALC): Adjust.
11153 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR)
11154 (AT_COMPILE, AT_COMPILE_CXX, AT_PARSER_CHECK): Move to...
11155 * tests/local.at: here.
11156 (AT_COMPILE_CXX): Tags the tests using it as c++.
11157 Ignore the test if CXX is not functional.
11158
11159 2003-03-01 Paul Eggert <eggert@twinsun.com>
11160
11161 * src/scan-gram.l (code_start): Initialize it to scanner_cursor,
11162 not loc->end, since loc->end might contain garbage and this leads
11163 to undefined behavior on some platforms.
11164 (id_loc, token_start): Use (IF_LINTed) initial values that do not
11165 depend on *loc, so that the reader doesn't give the the false
11166 impression that *loc is initialized.
11167 (<INITIAL>"%%"): Do not bother setting code_start, since its value
11168 does not survive the return.
11169
11170 2003-03-01 Akim Demaille <akim@epita.fr>
11171
11172 * src/scan-gram.l (code_start): Always initialize it when entering
11173 into yylex, as SC_EPILOGUE is activated *before* the corresponding
11174 yylex invocation. An alternative would be making it static, but
11175 then it starts with the second %%'s beginning, instead of its end.
11176
11177 2003-02-28 Paul Eggert <eggert@twinsun.com>
11178
11179 * lib/mbswidth.c: Include <wchar.h> before "mbswidth.h", to work
11180 around a UnixWare 7.1.1 porting bug reported by John Hughes in
11181 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00030.html>.
11182
11183 2003-02-26 Paul Eggert <eggert@twinsun.com>
11184
11185 * README: Mention compiler bug in Sun Forte Developer 6 update 2.
11186 Remove Sequent/Pyramid discussion (nobody uses them any more).
11187 Merge VMS and MS-DOS discussion; these ports may well be dead
11188 but let's keep mentioning them for now. Put <> around email
11189 addresses. Add copyright notice.
11190
11191 2003-02-24 Paul Eggert <eggert@twinsun.com>
11192
11193 * data/glr.c (yy_reduce_print): yylineno -> yylno,
11194 to avoid collision with flex use of yylineno.
11195 Problem reported by Bruce Lilly in
11196 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00016.html>.
11197 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
11198 * data/yacc.c (yy_reduce_print): Likewise.
11199
11200 * config/depcomp: Sync with Automake 1.7.3.
11201
11202 2003-02-21 Akim Demaille <akim@epita.fr>
11203
11204 * data/lalr1.cc: Use temporary variables instead of casts to
11205 change integer types.
11206 Suggested by Paul Eggert.
11207
11208 2003-02-21 Akim Demaille <akim@epita.fr>
11209
11210 * doc/bison.texinfo: Use "location" consistently to refer to @n,
11211 to avoid confusions with lalr1.cc's notion of Position.
11212 Suggested by Paul Eggert.
11213
11214 2003-02-20 Akim Demaille <akim@epita.fr>
11215
11216 * data/lalr1.cc (position.hh): Make sure "columns" never pushes
11217 before initial_columns.
11218 (location.hh): Use consistent variable names when defining the
11219 operator<<.
11220 Use "last" so that we subtract from Positions, not from unsigned.
11221
11222 2003-02-20 Akim Demaille <akim@epita.fr>
11223
11224 * data/lalr1.cc (position.hh): New subfile, including the extended
11225 and Doxygen'ed documentation of class Position.
11226 (location.hh): Use it.
11227 Document a` la Doxygen.
11228 With the help of Benoit Perrot.
11229
11230 2003-02-20 Akim Demaille <akim@epita.fr>
11231
11232 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Define
11233 AT_YACC_IF.
11234 Redefine AT_YYERROR_SEES_LOC_IF using it.
11235 (_AT_DATA_CALC_Y): Don't declare yyerror when lalr1.cc, as it is
11236 not defined.
11237 Don't use the location in yy::Parser::error_ and
11238 yy::Parser::print_ when not %locations.
11239 Activate more lalr1.cc tests.
11240
11241 2003-02-19 Akim Demaille <akim@epita.fr>
11242
11243 * data/lalr1.cc: When displaying a line number, be sure to make it
11244 an int.
11245
11246 2003-02-19 Akim Demaille <akim@epita.fr>
11247
11248 * data/lalr1.cc (b4_stack_depth_init, yy::Parser::initdepth_):
11249 Remove, useless.
11250 (YYABORT, YYACCEPT, YYERROR): New.
11251 * tests/calc.at: Renable the lalr1.cc test.
11252
11253 2003-02-19 Akim Demaille <akim@epita.fr>
11254
11255 * tests/calc.at (AT_CHECK_CALC): Check different scenarios of
11256 error recovery, mixing with/without pops and discarding of the
11257 lookahead.
11258 Exercise YYERROR.
11259 Disable the lalr1.cc tests as currently it doesn't support YYERROR.
11260
11261 2003-02-17 Paul Eggert <eggert@twinsun.com>
11262
11263 * tests/atlocal.in (LDFLAGS, LIBS): New vars.
11264 * tests/testsuite.at (AT_COMPILE): Use them.
11265 This fixes the testsuite problem reported by Robert Lentz in
11266 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00011.html>.
11267
11268 2003-02-12 Paul Eggert <eggert@twinsun.com>
11269
11270 * data/yacc.c (yyerrlab) [YYERROR_VERBOSE]:
11271 Avoid subscript error in yycheck. Bug reported by Andrew Suffield in
11272 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00003.html>.
11273 * data/glr.c (yyreportSyntaxError) [YYERROR_VERBOSE]: Likewise.
11274 Check for malloc failure, for consistency with yacc.c.
11275 (yytname_size): Remove, for consistency with yacc.c.
11276
11277 The bug still remains in data/lalr1.cc, as I didn't have time
11278 to fix it there.
11279
11280 2003-02-06 Akim Demaille <akim@epita.fr>
11281
11282 * configure.ac (GXX): Rename as...
11283 (CXX): this, to keep the original Autoconf semantics.
11284 Require 2.57.
11285 * data/lalr1.cc: Fix b4_copyright invocations.
11286 If YYDEBUG is not defined, don't depend upon name_ being defined.
11287 (location.hh): Include string and iostream.
11288 (Position::filename): New member.
11289 (Position::Position ()): New.
11290 (operator<< (Position)): New.
11291 (operator- (Position, int)): New.
11292 (Location::first, Location::last): Rename as...
11293 (Location::begin, Location::end): these, to mock the conventional
11294 iterator names.
11295 (operator<< (Location)): New.
11296 * tests/atlocal.in (CXX): New.
11297 * tests/testsuite.at (AT_COMPILE_CXX): New.
11298 * tests/calc.at (_AT_DATA_CALC_Y): Adjust yyerror to report the
11299 locations in a more synthetic way.
11300 (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF is positive if
11301 lalr1.cc is used.
11302 Adjust the C locations to match those from Emacs: first column is
11303 column 0.
11304 Change all the expected results.
11305 Conform to the GCS: simplify the locations when applicable.
11306 (LOC, VAL, YYLLOC_FORMAL, YYLLOC_ARG, USE_YYLLOC, LEX_FORMALS)
11307 (LEX_ARGS, USE_LEX_ARGS, LEX_PRE_FORMALS, LEX_PRE_ARGS): Replace
11308 these CPP macros with the m4 macros new defined by...
11309 (AT_CHECK_PUSHDEFS): this, i.e.:
11310 (AT_LALR1_CC_IF, AT_PURE_LEX_IF, AT_LOC, AT_VAL, AT_LEX_FORMALS)
11311 (AT_LEX_ARGS, AT_USE_LEX_ARGS, AT_LEX_PRE_FORMALS, AT_LEX_PRE_ARGS)
11312 New macros.
11313 (AT_CHECK_POPDEFS): Undefine them.
11314 (AT_CHECK_CALC_LALR1_CC): New.
11315 Use it for the first lalr1.cc test.
11316
11317 2003-02-04 Akim Demaille <akim@epita.fr>
11318
11319 * data/lalr1.cc (YYLLOC_DEFAULT): Fix its definition: be based on
11320 Location as is defined.
11321
11322 2003-02-04 Akim Demaille <akim@epita.fr>
11323
11324 * data/lalr1.cc: If YYDEBUG is not defined, don't depend upon
11325 name_ being defined.
11326
11327 2003-02-03 Paul Eggert <eggert@twinsun.com>
11328
11329 * src/gram.h (start_symbol): Remove unused decl.
11330
11331 Use more-consistent naming conventions for local vars.
11332
11333 * src/derives.c (derives_compute): Change type of local var from
11334 int to rule_number.
11335 * src/gram.c (grammar_rules_partial_print): Likewise.
11336 * src/print.c (print_core): Likewise.
11337 * src/reduce.c (reduce_grammar_tables): Likewise.
11338
11339 * src/gram.c (grammar_dump): Change name of item_number *
11340 local var from r to rp.
11341 * src/nullable.c (nullable_compute): Likewise.
11342
11343 * src/gram.h (ISTOKEN, ISVAR): Use i, not s, for int var.
11344
11345 * src/gram.h (symbol_number_as_item_number): Use sym, not s,
11346 for symbol or symbol_number var.
11347 * src/reader.c (grammar_start_symbol_set): Likewise.
11348 * src/reader.h (grammar_start_symbol_set, grammar_symbol_append):
11349 Likewise.
11350 * src/state.c (transitions_to): Likewise.
11351 * src/state.h: Likewise.
11352 * src/tables.c (symbol_number_to_vector_number): Likewise.
11353
11354 * src/muscle_tab.h (MUSCLE_OBSTACK_SGROW): Use p, not s, for
11355 char * var.
11356
11357 * src/parse-gram.y (lloc_default): Use loc, not r, for YYLTYPE
11358 var.
11359
11360 * src/scan-gram.l (no_cr_read): Use bytes_read, not s, for size
11361 var.
11362
11363 * src/system.h (xstrndup, strchr, strspn, strnlen, memchr, memrchr):
11364 Use str, not s, for char * var. Use ch, not c, for character var.
11365 Use size for size var.
11366
11367 * src/uniqstr.c (uniqstr_new, uniqstr_assert): Use str, not s, for
11368 char * var.
11369 (uniqstr_print, uniqst_print_processor): Use ustr, not s, for
11370 uniqstr var.
11371 * src/uniqstr.h: Likewise.
11372
11373 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
11374 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
11375 get_node_alignment_str, get_arrow_mode_str, get_crossing_type_str,
11376 get_view_str, get_linestyle_str, get_arrowstyle_str): Rename
11377 param to have same name as that of enum, so that we don't use
11378 "s" to stand for a non-state.
11379
11380 2003-02-02 Akim Demaille <akim@epita.fr>
11381
11382 * src/scan-skel.l: Scan more than one inert character per yylex
11383 invocation.
11384
11385 2003-02-01 Paul Eggert <eggert@twinsun.com>
11386
11387 Version 1.875a.
11388
11389 * po/LINGUAS: Add ms.
11390
11391 2003-01-30 Akim Demaille <akim@epita.fr>
11392
11393 * doc/Makefile.am (CLEANFILES): Add bison.fns for distcheck.
11394
11395 2003-01-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
11396
11397 * tests/cxx-type.at: Correct apparent typo in Bison input: $$ instead
11398 of $1.
11399
11400 Changes in response to error report by S. Eken: GLR mode does not
11401 handle negative $ indices or $ indices in embedded rules correctly.
11402 See <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00076.html>.
11403
11404 * data/glr.c (b4_rhs_value): Change to use YYFILL macro.
11405 (b4_rhs_location): Ditto.
11406 (yyfill): New function to copy from stack tree into array
11407 incrementally.
11408 (yyuserAction): Modify to allow incremental move of semantic values
11409 to rhs array when in GLR mode.
11410 Define YYFILL to use in user-defined actions to fill semantic array
11411 as needed.
11412 Remove dummy use of yystack, as there is now a guaranteed use.
11413 (yydoAction): Modify to allow incremental move of semantic values
11414 to rhs array when in GLR mode.
11415 (yyresolveAction): Ditto.
11416 (yyglrShiftDefer): Update comment.
11417 (yyresolveStates): Use X == NULL for pointers, not !X.
11418 (yyglrReduce): Ditto.
11419 (yydoAction): Ditto
11420
11421 * tests/glr-regr1.at: Rename to ...
11422 * tests/glr-regression.at: Add new regression test for the problems
11423 described above (adapted from S. Eken).
11424 Update copyright notice.
11425 * tests/testsuite.at: Rename glr-regr1.at to glr-regression.at.
11426 * tests/Makefile.am: Ditto.
11427
11428 2003-01-28 Paul Eggert <eggert@twinsun.com>
11429
11430 * data/lalr1.cc: Do not use @output_header_name@ unless
11431 b4_defines_flag is set. This fixes two bugs reported by
11432 Tim Van Holder in
11433 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00071.html>
11434 and <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00073.html>.
11435
11436 2003-01-21 Paul Eggert <eggert@twinsun.com>
11437
11438 * data/yacc.c (YYERROR): Move code from yyerrlab1 to here, so that
11439 we don't need to worry about yyerrlab1 being reported as an
11440 "unused label" by non-GCC C compilers. The downside is that if
11441 locations are used then a couple of statements are duplicated each
11442 time YYERROR is invoked, but the upside is that the warnings
11443 should vanish.
11444 (yyerrlab1): Move code to YERROR.
11445 (yyerrlab2): Remove. Change uses back to yyerrlab1.
11446 This reverts some of the 2002-12-27 change.
11447
11448 2003-01-17 Paul Eggert <eggert@twinsun.com>
11449
11450 * src/output.c (symbol_printers_output): Fix typo that led
11451 to core dump. Problem reported by Antonio Rus in
11452 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00058.html>.
11453
11454 2003-01-13 Akim Demaille <akim@epita.fr>,
11455 Quoc Peyrot <chojin@lrde.epita.fr>,
11456 Robert Anisko <anisko_r@lrde.epita.fr>
11457
11458 * data/lalr1.cc (parse::yyerrlab1): When popping the stack, stop
11459 when the stacks contain one element, as the loop would otherwise
11460 free the last state, and then use the top state (the one we just
11461 popped). This means that the initial elements will not be freed
11462 explicitly, as is the case in yacc.c; it is not a problem, as
11463 these elements have fake values.
11464
11465 2003-01-11 Paul Eggert <eggert@twinsun.com>
11466
11467 * NEWS: %expect-violations are now just warnings, reverting
11468 to Bison 1.30 and 1.75 behavior. This fixes the GCC 3.2
11469 bootstrapping problem reported by Matthias Klose; see
11470 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00053.html>.
11471 * src/conflicts.c (conflicts_print): Likewise.
11472 * tests/conflicts.at (%expect not enough, %expect too much,
11473 %expect with reduce conflicts): Likewise.
11474 * doc/bison.texinfo (Expect Decl): Document this. Also mention
11475 that the warning is enabled if the number of conflicts changes
11476 (not necessarily increases).
11477
11478 * src/getargs.c (version): Update copyright year.
11479
11480 2003-01-09 Akim Demaille <akim@epita.fr>
11481
11482 * src/Makefile.am, lib/Makefile.am: Use $(VAR) instead of @VAR@.
11483
11484 2003-01-08 Paul Eggert <eggert@twinsun.com>
11485
11486 * Makefile.maint (WGETFLAGS):
11487 New macro, containing "-C off" to disable proxy caches.
11488 All uses of $(WGET) changed to $(WGET) $(WGETFLAGS).
11489 (rel-check): Use $(WGET) instead of wget.
11490
11491 2003-01-06 Paul Eggert <eggert@twinsun.com>
11492
11493 * doc/bison.texinfo (Generalized LR Parsing): Add a reference to
11494 the GLR paper of Scott, Johnstone and Hussain.
11495
11496 2003-01-04 Paul Eggert <eggert@twinsun.com>
11497
11498 * configure.ac (AC_ARG_ENABLE): Add --disable-yacc.
11499 (YACC_SCRIPT, YACC_LIBRARY): New vars to AC_SUBST.
11500 * lib/Makefile.am (lib_LIBRARIES): liby.a -> @YACC_LIBRARY@.
11501 (EXTRA_LIBRARIES): New var, for liby.a.
11502 * src/Makefile.am (bin_SCRIPTS): yacc -> @YACC_SCRIPT@.
11503 (EXTRA_SCRIPTS): New var, for yacc.
11504
11505 * data/yacc.c (yyerrlab1): Omit attribute if __cplusplus is defined,
11506 since GNU C++ (as of 3.2.1) does not allow attributes on labels.
11507 Problem reported by Nelson H. F. Beebe.
11508
11509 2003-01-03 Paul Eggert <eggert@twinsun.com>
11510
11511 * lib/obstack.h (__INT_TO_PTR) [__STDC__]: Cast result to
11512 (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
11513 when compiling Bison 1.875's `bitset bset = obstack_alloc
11514 (bobstack, bytes);'. Problem reported by Nelson H. F. Beebe.
11515
11516 * src/scan-skel.l (QPUTS): Omit redundant `;' from macro definition.
11517 ([^@\n]): Renamed from [^@\n]+ so that the token buffer does not
11518 grow to a huge size with typical invocation.
11519
11520 * lib/hash.c (_Bool, bool, false, true, __bool_true_false_are_defined):
11521 Use the pattern recommended by Autoconf 2.57, except also protect
11522 against double-definition.
11523 * src/system.h: Likewise.
11524 Portability issues reported by Nelson H. F. Beebe.
11525
11526 * data/glr.c (yybool): Renamed from bool, to avoid collisions in C.
11527 All uses changed. Provide a definition in both C and C++.
11528 (yytrue, yyfalse): Define even if defined (__cplusplus).
11529
11530 * lib/bitset_stats.c (bitset_stats_list): Remove unused var.
11531 Reported by Nelson H. F. Beebe.
11532
11533 * src/scan-skel.l ("@oline@"): Output lineno+1, not lineno.
11534
11535 2003-01-02 Paul Eggert <eggert@twinsun.com>
11536
11537 * data/yacc.c (yyerrlab1): Append `;' after attribute, to
11538 pacify the buggy "smart preprocessor" in MacOS 10.2.3.
11539 Bug reported by Nelson H. F. Beebe.
11540
11541 2003-01-01 Paul Eggert <eggert@twinsun.com>
11542
11543 * Version 1.875.
11544
11545 2002-12-30 Paul Eggert <eggert@twinsun.com>
11546
11547 * src/scan-gram.l (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>","):
11548 Moved here from...
11549 (<INITIAL>","): Here. This causes stray "," to be treated
11550 more uniformly.
11551
11552 * src/scan-gram.l (<SC_BRACED_CODE>"}"): Output ";" before the
11553 last brace in braced code when not in Yacc mode, for compatibility
11554 with Bison 1.35. This resurrects the 2001-12-15 patch to
11555 src/reader.c.
11556
11557 * src/reader.h (YYDECL): Use YYSTYPE, not its deprecated alias
11558 yystype. This follows up the 2002-12-24 YYSTYPE bug fix.
11559
11560 2002-12-28 Paul Eggert <eggert@twinsun.com>
11561
11562 * src/symtab.c (symbol_make_alias): Set type of SYMVAL to be
11563 that of SYM's type. This fixes Debian bug 168069, reported by
11564 Thomas Olsson.
11565
11566 2002-12-28 Paul Eggert <eggert@twinsun.com>
11567
11568 Version 1.75f.
11569
11570 Switch back to the Yacc style of conflict reports, undoing some
11571 of the 2002-07-30 change.
11572 * doc/bison.texinfo (Understanding): Use Yacc style for
11573 conflict reports. Also, use new way of locating rules.
11574 * src/conflicts.c (conflict_report):
11575 Renamed from conflict_report_yacc, removing the old
11576 'conflict_report'. Translate the entire conflict report at once,
11577 so that we don't assume that "," has the same interpretation in
11578 all languages.
11579 (conflicts_output): Use Yacc-style conflict report for each state,
11580 instead of our more-complicated style.
11581 (conflicts_print): Use Yacc-style conflict report, except print
11582 the input file name when not emulating Yacc.
11583 * tests/conflicts.at (Unresolved SR Conflicts, Defaulted
11584 Conflicted Reduction, %expect not enough, %expect too much,
11585 %expect with reduce conflicts): Switch to Yacc-style conflict reports.
11586 * tests/existing.at (GNU Cim Grammar): Likewise.
11587 * tests/glr-regr1.at (Badly Collapsed GLR States): Likewise.
11588
11589 * src/complain.c (warn_at, warn, complain_at, complain, fatal_at,
11590 fatal): Don't invoke fflush; it's not needed and it might even be
11591 harmful for stdout, as stdout might not be open.
11592 * src/reduce.c (reduce_print): Likewise.
11593
11594 2002-12-27 Paul Eggert <eggert@twinsun.com>
11595
11596 Fix a bug where error locations were not being recorded correctly.
11597 This problem was originally reported by Paul Hilfinger in
11598 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00086.html>.
11599
11600 * data/yacc.c (yyparse): New local var yylerrsp, to record the
11601 top of the location stack's error locations.
11602 (yyerrlab): Set it. When discarding a token, push its location
11603 onto yylerrsp so that we don't lose track of the error's end.
11604 (yyerrlab1): Now is only the target of YYERROR, so that we can
11605 properly record the location of the action that failed. For GCC
11606 2.93 and later, insert an __attribute__ ((__unused__)) to avoid
11607 GCC warning about yyerrlab1 being unused if YYERROR is unused.
11608 (yyerrlab2): New label, which yyerrlab now falls through to.
11609 Compute the error's location by applying YYLLOC_DEFAULT to
11610 the locations of all the symbols that went into the error.
11611 * doc/bison.texinfo (Location Default Action): Mention that
11612 YYLLOC_DEFAULT is also invoked for syntax errors.
11613 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
11614 Error locations include the locations of all the tokens that were
11615 discarded, not just the last token.
11616
11617 2002-12-26 Paul Eggert <eggert@twinsun.com>
11618
11619 * src/files.c: Include quote.h.
11620 (compute_output_file_names): Warn if we detect conflicting
11621 outputs to the same file. This should catch the misunderstanding
11622 exemplified by Debian Bug 165349, reported by Bruce Stephens..
11623
11624 * src/conflicts.c (conflicts_print): If the user specifies
11625 "%expect N", report an error if there are any reduce/reduce
11626 conflicts. This is what the manual says should happen.
11627 This fixes Debian bug 130890, reported by Anthony DeRobertis.
11628 * tests/conflicts.at (%expect with reduce conflicts): New test.
11629
11630 Don't use m4_include on relative file names, as it doesn't work as
11631 desired if there happens to be a file with that name under ".".
11632
11633 * m4sugar/version.m4: Remove; it was included but it wasn't used.
11634 * data/Makefile.am (dist_m4sugar_DATA): Remove m4sugar/version.m4.
11635 * data/m4sugar/m4sugar.m4: Don't include m4sugar/version.m4.
11636 * data/glr.c, data/lalr1.cc, data/yacc.c: Don't include c.m4.
11637 * src/output.c (output_skeleton): Use full path names when
11638 specifying a file to include; don't rely on include path, as
11639 it's unreliable when the working file contains a file with
11640 that name.
11641
11642 2002-12-25 Paul Eggert <eggert@twinsun.com>
11643
11644 Remove obsolete references to bison.simple and bison.hairy.
11645 Problem mentioned by Aubin Mahe in
11646 <http://lists.gnu.org/archive/html/help-bison/2002-12/msg00010.html>.
11647 * data/glr.c: Comment fix.
11648 * doc/bison.1: Remove references. Also, mention "yacc".
11649
11650 * src/getargs.c (getargs) [MSDOS]: Don't assume optarg != NULL
11651 with -g option.
11652
11653 * src/parse-gram.y (declaration): Use enum "report_states" rather
11654 than its numeric value 1.
11655
11656 * src/scan-skel.l ("@output ".*\n): Close any old yyout before
11657 opening a new one. This fixes Debian bug 165349, reported by
11658 Bruce Stephens.
11659
11660 2002-12-24 Paul Eggert <eggert@twinsun.com>
11661
11662 Version 1.75e.
11663
11664 * Makefile.maint (cvs-update): Don't assume that the shell
11665 supports $(...), as Solaris sh doesn't.
11666
11667 * src/parse-gram.y (lloc_default): Remove test for empty
11668 nonterminals at the end, since it didn't change the result.
11669
11670 2002-12-24 Paul Eggert <eggert@twinsun.com>
11671
11672 If the user does not define YYSTYPE as a macro, Bison now declares it
11673 using typedef instead of defining it as a macro. POSIX requires this.
11674 For consistency, YYLTYPE is also declared instead of defined.
11675
11676 %union directives can now have a tag before the `{', e.g., the
11677 directive `%union foo {...}' now generates the C code
11678 `typedef union foo { ... } YYSTYPE;'; this is for Yacc compatibility.
11679 The default union tag is `YYSTYPE', for compatibility with Solaris 9
11680 Yacc. For consistency, YYLTYPE's struct tag is now `YYLTYPE'
11681 instead of `yyltype'.
11682
11683 `yystype' and `yyltype' are now obsolescent macros instead of being
11684 typedefs or tags; they are no longer documented and will be
11685 withdrawn in a future release.
11686
11687 * data/glr.c (b4_location_type): Remove.
11688 (YYSTYPE): Renamed from yystype.
11689 (YYSTYPE_IS_DECLARED): New macro, used to prevent double-typedef.
11690 (struct YYLTYPE): Renamed from struct yyltype.
11691 (YYLTYPE): Renamed from yyltype.
11692 (yyltype, yystype): New (and obsolescent) macros,
11693 for backward compatibility.
11694 * data/yacc.c: Likewise.
11695
11696 * data/yacc.c (YYSTYPE): Declare as union YYSTYPE if the user
11697 does not specify a union tag. This is for compatibility with
11698 Solaris 9 yacc.
11699
11700 * src/parse-gram.y (add_param): 2nd arg is now char * not char
11701 const *, since it is now modified by stripping surrounding { }.
11702 (current_braced_code): Remove.
11703 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_UNION,
11704 PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Change names to include
11705 trailing " {...}". Now of type <chars>.
11706 (grammar_declaration): Adjust to bundled tokens.
11707 (code_content): Remove; stripping is now done by add_param.
11708 (print_token_value): Print contents of bundled tokens.
11709 (token_name): New function.
11710
11711 * src/reader.h (braced_code, current_braced_code): Remove.
11712 (token_name): New decl.
11713
11714 * src/scan-gram.l (handle_dollar, handle_at): Now takes int
11715 token_type, not braced_code code_kind. All uses changed.
11716 (SC_PRE_CODE): New state, for scanning after a keyword that
11717 has (or usually has) an immediately-following braced code.
11718 (token_type): New local var, to keep track of which token type
11719 to return when scanning braced code.
11720 (<INITIAL>"%destructor", <INITIAL>"%lex-param",
11721 <INITIAL>"%parse-param", <INITIAL>"%printer",
11722 <INITIAL>"%union"): Set token type and BEGIN SC_PRE_CODE
11723 instead of returning a token type immediately.
11724 (<INITIAL>"{"): Set token type.
11725 (<SC_BRACED_CODE>"}"): Use it.
11726 (handle_action_dollar, handle_action_at): Now returns bool
11727 indicating success. Fail if ! current_rule; this prevents a core dump.
11728 (handle_symbol_code_dollar, handle_symbol_code_at):
11729 Remove; merge body into caller.
11730 (handle_dollar, handle_at): Complain in invalid contexts.
11731
11732 * NEWS, doc/bison.texinfo: Document the above.
11733 * NEWS: Fix years and program names in copyright notice.
11734
11735 2002-12-17 Paul Eggert <eggert@twinsun.com>
11736
11737 * NEWS, doc/bison.texinfo (Parser Function, Pure Calling, Error
11738 Reporting, Table of Symbols): Omit mentions of %lex-param and
11739 %parse-param from the documentation for now.
11740
11741 2002-12-15 Paul Eggert <eggert@twinsun.com>
11742
11743 Undo most of the 2002-11-12 yychar -> yytoken patch, as it broke
11744 GCC 3.2.1 (which depends on yychar == YYEMPTY when there is no
11745 lookahead symbol, and which sets yychar in parser actions) and it
11746 disagreed with the Bison documentation. Bug
11747 reported by Andrew Walrond.
11748
11749 * data/yacc.c (YYTRANSLATE): Don't check for negative argument,
11750 as the caller now does that.
11751 (yyclearin, YYBACKUP, yyparse): Use yychar, not yytoken.
11752 (YYEMPTY): Parenthesize right hand side, since others use it.
11753 (yyparse): Don't assume that our generated code is the only code
11754 that sets yychar.
11755
11756 2002-12-13 Paul Eggert <eggert@twinsun.com>
11757
11758 Version 1.75d.
11759
11760 POSIX requires a "yacc" command.
11761 * src/Makefile.am (bin_SCRIPTS): New macro, for yacc.
11762 (MOSTLYCLEANFILES): Add yacc.
11763 (yacc): New rule.
11764 * doc/bison.texinfo (Invocation, Bison Options): Mention yacc
11765 as an alias for bison y.
11766
11767 * po/LINGUAS: Add da.
11768
11769 * src/getargs.c (__GNU_LIBRARY__) [lint]: Define to work around
11770 problem with latest <getopt.h>.
11771 (HACK_FOR___GNU_LIBRARY___PROTOTYPE): New macro.
11772
11773 * doc/fdl.texi: Upgrade to 1.2.
11774 * lib/alloca.c, lib/error.c, lib/getopt.c, lib/getopt.h
11775 lib/getopt1.c, lib/gettext.h, lib/memrchr.c, lib/obstack.c,
11776 lib/obstack.h, lib/strnlen.c, lib/unlocked-io.h: Sync with
11777 gnulib.
11778 * config/install-sh: Sync with autotools.
11779
11780 Fix a bad interaction with flex 2.5.23 reported by Bruce Lilly in
11781 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
11782 * data/yacc.c (YYLTYPE, struct yyltype): Do not define unless
11783 locations are requested.
11784 (union yyalloc): Do not depend on YYLTYPE_IS_TRIVIAL unless
11785 locations are requested.
11786
11787 2002-12-12 Paul Eggert <eggert@twinsun.com>
11788
11789 Remove unportable casts and storage allocation tricks.
11790 While we're at it, remove almost all casts, since they
11791 usually aren't needed and are a sign of trouble.
11792
11793 * configure.ac (AC_CHECK_TYPES): Check for uintptr_t.
11794
11795 * src/derives.c (derives_compute): Do not subtract NTOKENS from
11796 the pointer DSET returned by malloc; this isn't portable.
11797 Instead, always use DSET[i - NTOKENS] rather than DSET[i].
11798 Similarly for DERIVES.
11799 * src/lalr.c (set_goto_map): Likewise, for GOTO_MAP and TEMP_MAP.
11800 * src/nullable.c (nullable_compute): Likewise, for RSETS and NULLABLE.
11801 * src/reduce.c (reduce_grammar_tables): Likewise, for nontermmap
11802
11803 * src/derives.c (derives_compute): Do not bother invoking
11804 int_of_rule_number, since rule numbers are integers.
11805
11806 * src/files.c (concat2, tr, compute_base_name): Use xmalloc (N)
11807 rather than XMALLOC (char, N).
11808
11809 * src/files.c (filename_split): Rewrite to avoid cast.
11810
11811 * src/gram.h (symbol_number_as_item_number,
11812 item_number_as_symbol_number, rule_number_as_item_number,
11813 item_number_as_rule_number):
11814 Now inline functions rather than macros, to avoid casts.
11815 * src/state.h (state_number_as_int): Likewise.
11816 * src/tables.c (state_number_to_vector_number,
11817 symbol_number_to_vector_number): Likewise.
11818
11819 * src/gram.h (int_of_rule_number): Remove; no longer used.
11820
11821 * src/lalr.c (add_lookback_edge): Use malloc rather than calloc,
11822 since the resulting storage is always stored into.
11823
11824 * src/main.c (alloca) [C_ALLOCA]: Add decl here, the only place
11825 where it's needed.
11826
11827 * src/muscle_tab.c (muscle_m4_output):
11828 Now inline. Return bool, not int.
11829 * src/state.c (state_compare): Likewise.
11830 * src/symtab.c (symbol_check_defined,
11831 symbol_check_alias_consistency, symbol_pack, symbol_translation,
11832 hash_compare_symbol, hash_symbol):
11833 Likewise.
11834 * src/uniqstr.c (uniqstr_print): Likewise.
11835 * src/muscle_tab.c (muscle_m4_output_processor):
11836 New function, to avoid casts.
11837 * src/state.c (state_comparator, stage_hasher): Likewise.
11838 * src/symtab.c (symbol_check_defined_processor,
11839 symbol_check_alias_consistency_processor, symbol_pack_processor,
11840 symbol_translation_processor, hash_symbol_comparator,
11841 hash_symbol_hasher): Likewise.
11842 * src/uniqstr.c (uniqstr_print_processor): Likewise.
11843 * src/muscle_tab.c (muscles_m4_output):
11844 Use new functions instead of casting old functions unportably.
11845 * src/state.c (state_hash_new): Likewise.
11846 * src/symtab.c (symbols_new, symbols_do, symbols_check_defined,
11847 symbols_token_translations_init):
11848 Likewise.
11849 * src/uniqstr.c (uniqstrs_new, hash_initialize, uniqstrs_do): Likewise.
11850
11851 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): Use long local
11852 var instead of casting to long, to avoid casts.
11853 (prepare_states): Use MALLOC rather than alloca, so that we don't
11854 have to worry about alloca.
11855 * src/state.c (state_hash_lookup): Likewise.
11856
11857 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>"'"): Use unsigned char
11858 local var instead of casting to unsigned char, to avoid casts.
11859
11860 * src/state.c (TRANSITIONS_ALLOC, ERRS_ALLOC, REDUCTIONS_ALLOC,
11861 STATE_ALLOC): Remove.
11862 (transitions_new, errs_new, reductions_new, state_new): Use malloc
11863 rather than calloc, and use offsetof to avoid allocating slightly
11864 too much storage.
11865 (state_new): Initialize all members.
11866
11867 * src/state.c (state_hash): Use unsigned accumulator, not signed.
11868
11869 * src/symtab.c (symbol_free): Remove; unused.
11870 (symbol_get): Remove cast in lhs of assignment.
11871 (symbols_do): Now static. Accept generic arguments, not
11872 hashing-related ones.
11873
11874 * src/symtab.h: (NUMBER_UNDEFINED): Remove unnecessary cast.
11875 (symbol_processor): Remove.
11876 (symbols_do): Remove decl; now static.
11877
11878 * src/system.h (alloca): Remove; decl no longer needed.
11879 (<stddef.h>): Include, for offsetof.
11880 (<inttypes.>, <stdint.h>): Include if available.
11881 (uintptr_t): New type, if system lacks it.
11882 (CALLOC, MALLOC, REALLOC): New macros.
11883 All uses of XCALLOC, XMALLOC, and XREALLOC changed to use these
11884 new macros.
11885
11886 * src/tables.c (table_size): Now int, to pacify GCC.
11887 (table_grow, table_ninf_remap): Use signed table size.
11888 (save_row): Don't bother initializing locals when not needed.
11889 (default_goto, goto_actions, pack_vector): Remove unnecessary casts.
11890 * src/uniqstr.c (hash_compare_uniqstr): Likewise.
11891
11892 * src/vcg.h: Correct misspellings.
11893
11894 * src/vcg_defaults.h (G_CMAX): Now INT_MAX.
11895
11896
11897 * src/getargs.c (getargs): Don't assume EOF == -1.
11898
11899 2002-12-09 Paul Eggert <eggert@twinsun.com>
11900
11901 Change identifier spellings to avoid collisions with names
11902 that are reserved by POSIX.
11903
11904 Don't use names ending in _t, since POSIX reserves them.
11905 For consistency, remove _e and _s endings -- they're weren't
11906 needed to remove ambiguity. All uses changed.
11907 * src/uniqstr.h (uniqstr): Renamed from uniqstr_t, which in
11908 turn was just renamed from struniq_t.
11909 * src/uniqstr.c (uniqstr_processor): Renamed from struniq_processor,
11910 which in turn was just renamed from struniq_processor_t.
11911 (hash_compare_uniqstr): Renamed from hash_compare_struniq, which
11912 in turn was renamed from hash_compare_struniq_t.
11913 * src/LR0.c (struct state_list): Renamed from struct state_list_s.
11914 (state_list): Renamed from state_list_t.
11915 * src/assoc.h (assoc): Renamed from assoc_t.
11916 * src/conflicts.c (enum conflict_resolution): Renamed from
11917 enum conflict_resolution_e.
11918 * src/derives.c (struct rule_list): Renamed from struct rule_list_s.
11919 (rule_list): Renamed from rule_list_t.
11920 * src/getargs.h (enum trace): Renamed from enum trace_e.
11921 (enum report): Renamed from enum report_e.
11922 * src/gram.h (item_number): Renamed from item_number_t.
11923 (rule_number): Renamed from rule_number_t.
11924 (struct rule_s): Remove the "rule_s" part; not used.
11925 (rule): Renamed from rule_t.
11926 (rule_filter): Renamed from rule_filter_t.
11927 * src/lalr.c (struct goto_list): Renamed from struct goto_list_s.
11928 (goto_list): Renamed from goto_list_t.
11929 * src/lalr.h (goto_number): Renamed from goto_number_t.
11930 * src/location.h (location): Renamed from location_t.
11931 * src/muscle_tab.c (muscle_entry): Renamed from muscle_entry_t,
11932 and moved here from:
11933 * src/muscle_tab.h (muscle_entry_t): here.
11934 * src/nullable.c (struct rule_list): Renamed from struct rule_list_s.
11935 (rule_list): Renamed from rule_list_t.
11936 * src/print_graph.c (static_graph): Renamed from graph.
11937 * src/reader.h (braced_code): Renamed from braced_code_t.
11938 Remove brace_code_e tag.
11939 * src/relation.h (relation_node): Renamed from relation_node_t.
11940 (relation_nodes): Renamed from relation_nodes_t.
11941 (relation): Renamed from relation_t.
11942 * src/state.h (state_number): Renamed from state_number_t.
11943 (struct state): Renamed from struct state_s.
11944 (state): Renamed from state_t.
11945 (transitions): Renamed from transitions_t. Unused (and
11946 misspelled) transtion_s tag removed.
11947 (errs): Renamed from errs_t. Unused errs_s tag removed.
11948 (reductions): Renamed from reductions_t. Unused tag
11949 reductions_s removed.
11950 * src/symlist.h (symbol_list): Renamed from symbol_list_t.
11951 (struct symbol_list): Renamed from struct symbol_list_s.
11952 * src/symtab.h (symbol_number): Renamed from symbol_number_t.
11953 (struct symbol): Renamed from struct symbol_s.
11954 (symbol): Renamed from symbol_t.
11955 * src/tables.c (vector_number): Renamed from vector_number_t.
11956 (action_number): Renamed from action_t.
11957 * src/tables.h (base_number): Renamed from base_t.
11958 * src/vcg.h (enum color): Renamed from enum color_e.
11959 (enum textmode): Renamed from enum textmode_e.
11960 (enum shape): Renamed from enum shape_e.
11961 (struct colorentry): Renamed from struct colorentry_s.
11962 (struct classname): Renamed from struct classname_s.
11963 (struct infoname): Renamed from struct infoname_s.
11964 (enum layoutalgorithm): Renamed from enum layoutalgorithm_e.
11965 (enum decision): Renamed from enum decision_e.
11966 (enum orientation): Renamed from enum orientation_e.
11967 (enum alignment): Renamed from enum alignment_e.
11968 (enum arrow_mode): Renamed from enum arrow_mode_e.
11969 (enum crossing_type): Renamed from enum crossing_type_e.
11970 (enum view): Renamed from enum view_e.
11971 (struct node): Renamed from struct node_s.
11972 (node): Renamed from node_t.
11973 (enum linestyle): Renamed from enum linestyle_e.
11974 (enum arrowstyle): Renamed from enum arrowstyle_e.
11975 (struct edge): Renamed from struct edge.
11976 (edge): Renamed from edge_t.
11977 (struct graph): Renamed from struct graph_s.
11978 (graph): Renamed from graph_t.
11979 * tests/calc.at (_AT_DATA_CALC_Y, Simple LALR Calculator):
11980 Rename value_t -> value.
11981 * tests/input.at (Torturing the Scanner): Rename value_t -> value,
11982 value_t_as_yystype -> value_as_yystype.
11983
11984 Don't include <errno.h> in the mainstream code, since it
11985 reserves E[A-Z0-9]* and we want to use symbols like 'EQUALS'.
11986 * lib/get-errno.c, lib/get-errno.h: New files.
11987 * lib/Makefile.am (libbison_a_SOURCES): Add get-errno.h,
11988 get-errno.c.
11989 * src/files.c (xfopen, xfclose): Use get_errno instead of errno.
11990 * src/output.c (output_skeleton): Likewise.
11991 * src/scan-gram.l (<INITIAL>{int}): Use set_errno and get_errno
11992 instead of errno.
11993 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>\\x[0-9abcdefABCDEF]+):
11994 Likewise.
11995 (handle_action_dollar, handle_action_at): Likewise.
11996 * src/system.h: Do not include <errno.h>.
11997 (TAB_EXT): Renamed from EXT_TAB.
11998 (OUTPUT_EXT): Renamed from EXT_OUTPUT.
11999
12000 Avoid str[a-z]*, since <string.h> reserves that name space.
12001 Change all instances of "struniq" in names to "uniqstr", and
12002 likewise for "STRUNIQ" and "UNIQSTR".
12003 * src/uniqstr.c: Renamed from src/struniq.c.
12004 * src/uniqstr.h: Renamed from src/struniq.h.
12005 * src/Makefile.am (bison_SOURCES): Adjust to these renamings.
12006 * src/files.c (strsuffix): Remove; unused.
12007 (concat2): Renamed from stringappend. Now static.
12008 * src/files.h (strsuffix, stringappend): Remove; unused.
12009 * src/parse-gram.y (<chars>): Renamed from <string>.
12010 (<uniqstr>): Renamed from <struniq>.
12011 * src/scan-gram.l (obstack_for_string): Renamed from string_obstack.
12012 * src/vcg.h (struct node_s.expand): Renamed from struct node_s.stretch.
12013 (struct graph_s.expand): Renamed from struct graph_s.stretch.
12014 * src/vcg_defaults.h (G_EXPAND): Renamed from G_STRETCH.
12015 (G_LONG_STRAIGHT_PHASE): Renamed from G_STRAIGHT_PHASE.
12016 (N_EXPAND): Renamed from N_STRETCH.
12017
12018 Avoid *_MAX and *_MIN, since <limits.h> reserves that name space.
12019 * data/yacc.c (YYSTACK_GAP_MAXIMUM): Renamed from YYSTACK_GAP_MAX.
12020 * src/gram.h (ITEM_NUMBER_MAX, ITEM_NUMBER_MIN, RULE_NUMBER_MAX):
12021 Remove; unused.
12022 * src/lalr.h (GOTO_NUMBER_MAXIMUM): Renamed from GOTO_NUMBER_MAX.
12023 * src/state.h (STATE_NUMBER_MAXIMUM): Renamed from STATE_NUMBER_MAX.
12024 * src/symtab.h (SYMBOL_NUMBER_MAXIMUM): Renamed from SYMBOL_NUMBER_MAX.
12025 * src/tables.c (VECTOR_NUMBER_MAX, VECTOR_NUMBER_MIN): Remove; unused.
12026 (BASE_MAXIMUM): Renamed from BASE_MAX.
12027 (BASE_MINIMUM): Renamed from BASE_MIN.
12028 (ACTION_MAX): Remove; unused.
12029 (ACTION_NUMBER_MINIMUM): Renamed from ACTION_MIN.
12030 Unnecessary casts removed from above defines.
12031
12032
12033 Fix misspelling in names.
12034 * src/vcg.h (enum_alignment_e): Renamed from enum_alignement_e.
12035 * src/vcg_defaults.h (G_NODE_ALIGNMENT): Renamed from
12036 G_NODE_ALIGNEMENT.
12037
12038
12039 * lib/timevar.c (timevar_report): Renamed from time_report,
12040 for consistency with other names.
12041 * lib/timevar.h (timevar_report): New decl.
12042 * src/system.h (time_report): Remove; decl is now in lib/timevar.h.
12043
12044
12045 Sort include-file uses.
12046
12047 Reorder all include files under src to be in the order "system.h".
12048 then the ../lib include files in angle brackets (alphabetized),
12049 then the . include files in double-quotes (alphabetized). Fix
12050 dependency breakages encountered in this process, as follows:
12051 * src/closure.h, src/derives.h, src/state.h: Include "gram.h".
12052 * src/complain.c: Don't include stdlib.h, string.h _LIBC stuff.
12053 * src/state.h: Include "symtab.h".
12054
12055 2002-12-08 Paul Eggert <eggert@twinsun.com>
12056
12057 * data/glr.c, data/lalr1.cc, data/yacc.c: Do not use __file__,
12058 since this causes problems when __file__ contains character
12059 sequences like "@" that are treated specially by src/scan-skel.l.
12060 Instead, just use the file's basename. This fixes the bug
12061 reported by Martin Mokrejs in
12062 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00007.html>.
12063
12064 2002-12-06 Paul Eggert <eggert@twinsun.com>
12065
12066 Add support for rules that do not have trailing semicolons, as
12067 POSIX requires. Improve the quality of locations in Bison
12068 diagnostics.
12069
12070 * src/location.c: Include <quotearg.h>.
12071 (empty_location): Now const.
12072 (location_print): New function. Follow the recommendation of the
12073 GNU Coding Standards for locations that span file boundaries.
12074 * src/location.h: Do not include <quotearg.h>; no longer needed.
12075 (boundary): New type.
12076 (location_t): Use it. This allows locations to span file boundaries.
12077 All member uses changed: file -> start.file or end.file (as needed),
12078 first_line -> start.line, first_column -> start.column,
12079 last_line -> end.line, last_column -> end.column.
12080 (equal_boundaries): New function.
12081 (LOCATION_RESET, LOCATION_STEP): Remove.
12082 (LOCATION_PRINT): Remove. All callers changed to use location_print.
12083 (empty_location): Now const.
12084 (location_print): New decl.
12085 * src/parse-gram.y (lloc_default): New function, which handles
12086 empty locations more accurately.
12087 (YYLLOC_DEFAULT): Use it.
12088 (%token COLON): Remove.
12089 (%token ID_COLON): New token.
12090 (rules): Use it.
12091 (declarations, rules): Remove trailing semicolon.
12092 (declaration, rules_or_grammar_declaration):
12093 Allow empty (";") declaration.
12094 (symbol_def): Remove empty actions; no longer needed.
12095 (rules_or_grammar_declaration): Remove trailing semicolon.
12096 (semi_colon.opt): Remove.
12097 * src/reader.h: Include location.h.
12098 (scanner_cursor): New decl.
12099 * src/reduce.c (nonterminals_reduce): Use warn_at rather than
12100 rolling our own.
12101 * src/scan-gram.l (YY_USER_INIT): Initialize scanner_cursor instead
12102 of *loc.
12103 (STEP): Remove. No longer needed, now that adjust_location does
12104 the work. All uses removed.
12105 (scanner_cursor): New var.
12106 (adjust_location): Renamed from extend_location. It now sets
12107 *loc and adjusts the scanner cursor. All uses changed.
12108 Don't bother testing for CR.
12109 (handle_syncline): Remove location arg; now updates scanner cursor.
12110 All callers changed.
12111 (unexpected_end_of_file): Now accepts start boundary of token or
12112 comment, not location. All callers changed. Update scanner cursor,
12113 not the location.
12114 (SC_AFTER_IDENTIFIER): New state.
12115 (context_state): Renamed from c_context. All uses changed.
12116 (id_loc, code_start, token_start): New local vars.
12117 (<INITIAL,SC_AFTER_IDENTIFIER>): New initial context. Move all
12118 processing of Yacc white space and equivalents here.
12119 (<INITIAL>{id}): Save id_loc. Begin state SC_AFTER_IDENTIFIER
12120 instead of returning ID immediately, since we need to search for
12121 a subsequent colon.
12122 (<INITIAL>"'", "\""): Save token_start.
12123 (<INITIAL>"%{", "{", "%%"): Save code_start.
12124 (<SC_AFTER_IDENTIFIER>): New state, looking for a colon.
12125 (<SC_YACC_COMMENT>, <SC_COMMENT>, <SC_LINE_COMMENT>):
12126 BEGIN context_state at end, not INITIAL.
12127 (<SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'",
12128 <SC_BRACED_CODE>"}", <SC_PROLOGUE>"%}", <SC_EPILOGUE><<EOF>>):
12129 Return correct token start.
12130 (<SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>): Save start boundary when
12131 the start of a character, string or multiline comment is found.
12132 * tests/conflicts.at (S/R in initial, Defaulted Conflicted
12133 Reduction): Adjust reported locations to match the more-precise
12134 results now expected.
12135 * tests/input.at (Invalid $n, Invalid @n, Type Clashes): Likewise.
12136 * tests/reduce.at (Useless Rules, Reduced Automaton,
12137 Underivable Rules): Likewise.
12138 * tests/regression.at (Invalid inputs): No longer `expecting ";"
12139 or "|"' now that so many other tokens are allowed by the new grammar.
12140
12141 * src/complain.h (current_file): Remove duplicate decl;
12142 current_file is now owned by files.h.
12143 * src/complain.c, src/scan-gram.l: Include files.h.
12144
12145 2002-12-06 Paul Eggert <eggert@twinsun.com>
12146
12147 * data/glr.c (yy_reduce_print): Don't assume that yyrline[yyrule]
12148 promotes to int; it might be unsigned int.
12149 * data/yacc.c (yy_reduce_print): Likewise.
12150
12151 * doc/bison.texinfo (Table of Symbols): YYERROR_VERBOSE should
12152 be #defined in the prologue, not in the Bison declarations.
12153 This fixes Debian Bug 102878, reported by Shaul Karl.
12154
12155 2002-12-02 Paul Eggert <eggert@twinsun.com>
12156
12157 * configure.ac (AC_REPLACE_FUNCS): Add strtoul.
12158 * lib/strtoul.c: New file, from gnulib.
12159 This fixes a porting bug reported by Peter Klein in
12160 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00000.html>.
12161
12162 2002-11-30 Paul Eggert <eggert@twinsun.com>
12163
12164 * src/scan-gram.l (no_cr_read, extend_location): Move to epilogue,
12165 and put only a forward declaration in the prologue. This is for
12166 consistency with the other scanner helper functions.
12167
12168 Type clashes now generate warnings, not errors, since it
12169 appears that POSIX may allow some grammars with type clashes.
12170 * src/reader.c (grammar_current_rule_check): Warn about
12171 type clashes instead of complaining.
12172 * tests/input.at (Type Clashes): Expect warnings, not complaints.
12173
12174 Add Yacc library, since POSIX requires it.
12175 * doc/bison.texinfo (Yacc Library): New node. Regenerate top menu.
12176 * lib/Makefile.am (lib_LIBRARIES, liby_a_SOURCES): New macros.
12177 * lib/main.c, lib/yyerror.c: New files.
12178
12179 gram_error can be static; it need not be extern.
12180 * src/reader.h (gram_error): Remove decl.
12181 * src/parse-gram.y (gram_error): Now static. Add static decl.
12182 (print_token_value): Omit parameter names from forward decl,
12183 for consistency.
12184
12185 2002-11-29 Paul Eggert <eggert@twinsun.com>
12186
12187 * doc/bison.texinfo: Emphasize that yylex and yyerror must
12188 be declared before being used. E.g., one should typically
12189 declare them in the prologue. Use GNU coding style in examples.
12190 Put "const" consistently after the type it modifies. Mention
12191 that C99 supports "inline". Mention that yyerror traditionally
12192 returns "int".
12193
12194 %parse-param and %lex-param now take just one argument, the
12195 declaration; the argument name is deduced from the declaration.
12196
12197 * doc/bison.texinfo (Parser Function, Pure Calling, Error
12198 Reporting, Table of Symbols): Document this.
12199 * src/parse-gram.y (add_param): New function.
12200 (COMMA): Remove.
12201 (declaration): Implement new rule for %parse-param and %lex-param.
12202 * src/scan-gram.l: "," now elicits a warning, rather than being
12203 a token; this is more compatible with byacc.
12204 * tests/calc.at (Simple LALR Calculator): Adopt new convention.
12205
12206 2002-11-27 Paul Eggert <eggert@twinsun.com>
12207
12208 Rename identifiers to avoid real and potential collisions.
12209
12210 * data/c.m4 (b4_yysymprint_generate): yyout -> yyoutput,
12211 to avoid collision with lex macro described by Bruce Lilly in
12212 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
12213 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
12214 * doc/bison.texinfo (Prologue, Tracing): yyprint -> print_token_value.
12215 * src/parse-gram.y (print_token_value): Renamed from yyprint.
12216 All uses changed.
12217 (YYPARSE_PARAM, YYLEX_PARAM, yycontrol): Remove. All uses changed.
12218 The name "yycontrol" violates the name space rules, and this stuff
12219 wasn't being used anyway.
12220 (input): Remove action; this stuff wasn't being used.
12221 (gram_error): Rename local variable yylloc -> loc.
12222 * src/reader.h (struct gram_control_s, gram_control_t): Remove.
12223 (YY_DECL): Don't use "yy" at start of local variables.
12224 All uses changed, e.g., yylloc -> loc.
12225 * src/scan-gram.l (STEP): Renamed from YY_STEP. All uses changed.
12226 (STRING_GROW): Renamed from YY_OBS_GROW. All uses changed.
12227 (STRING_FINISH): Renamed from YY_OBS_FINISH. All uses changed.
12228 (STRING_FREE): Renamed from YY_OBS_FREE. All uses changed.
12229
12230 * src/parse-gram.y (gram_error): loc is now const *.
12231 * src/reader.h (gram_error): Likewise.
12232
12233 2002-11-24 Paul Eggert <eggert@twinsun.com>
12234
12235 Version 1.75c.
12236
12237 * tests/actions.at (Actions after errors): Use an output format
12238 more similar to that of the Printers and Destructors test.
12239 Test the position of the ';' token too.
12240 (Printers and Destructors): Likewise.
12241 (Printers and Destructors: %glr-parser): Remove for now, to avoid
12242 unnecessarily alarming people when the test fails.
12243
12244 * data/yacc.c (yyerrlab1): Move this label down, so that the
12245 parser does not discard the lookahead token if the user code
12246 invokes YYERROR. This change is required for POSIX conformance.
12247
12248 * lib/error.c: Sync with gnulib.
12249
12250 2002-11-22 Paul Eggert <eggert@twinsun.com>
12251
12252 * lib/quotearg.c, lib/quotearg.h: Sync with gnulib.
12253 * lib/mbswidth.c, lib/mbswidth.h: Likewise.
12254 * lib/xmalloc.c: Likewise.
12255
12256 2002-11-20 Paul Eggert <eggert@twinsun.com>
12257
12258 * lib/argmatch.c, lib/argmatch.h: Sync with gnulib.
12259
12260 2002-11-20 Paul Eggert <eggert@twinsun.com>
12261
12262 Avoid use of <assert.h>, as the GNU Coding Standards hint that one
12263 should use `if (! x) abort ();' rather than `assert (x);', and
12264 anyway it's one less thing to worry about configuring.
12265
12266 * data/glr.c, lib/hash.c, src/system.h: Do not include <assert.h>.
12267 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise,
12268 and replace all instances of assert with abort.
12269 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
12270 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Likewise.
12271
12272 * data/glr.c (yydoAction, yyglrReduce, yysplitStack, yyresolveStates,
12273 yyresolveAction, yyprocessOneStack): Use abort rather than assert.
12274 * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
12275 hash_find_entry, hash_rehash, hash_insert): Likewise.
12276 * src/conflicts.c (resolve_sr_conflict): Likewise.
12277 * src/lalr.c (set_goto_map, map_goto): Likewise.
12278 * src/nullable.c (nullable_compute): Likewise.
12279 * src/output.c (prepare_rules, token_definitions_output): Likewise.
12280 * src/reader.c (packgram, reader): Likewise.
12281 * src/state.c (state_new, state_free, state_transitions_set,
12282 state_reduction_find): Likewise.
12283 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias,
12284 symbol_pack): Likewise.
12285 * src/tables.c (conflict_row, pack_vector): Likewise.
12286 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
12287 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
12288 get_node_alignement_str, get_arrow_mode_str, get_crossing_type_str,
12289 get_view_str, get_linestyle_str, get_arrowstyle_str): Likewise.
12290
12291 * lib/argmatch.h (ARRAY_CARDINALITY): Do not bother to #undef.
12292 (ARGMATCH_CONSTRAINT): New macro.
12293 (ARGMATCH_ASSERT): Use it.
12294
12295 * src/system.h (verify): New macro.
12296 * src/getargs.c (trace_argmatch, report_argmatch): Use verify
12297 rather than assert.
12298 * src/tables.c (tables_generate): Likewise.
12299
12300 * src/struniq.c (struniq_assert): Now returns void, and aborts
12301 if the assertion is false.
12302 (struniq_assert_p): Remove.
12303 * src/struniq.h: Likewise.
12304
12305 2002-11-18 Paul Eggert <eggert@twinsun.com>
12306
12307 * data/glr.c (yygetLRActions): Replace `yyindex' with
12308 `yytable[yyindex]' to fix typo introduced in my 2002-11-09 patch.
12309 This fixes the regression with Sun ONE Studio 7 cc that I reported in
12310 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00077.html>.
12311
12312 2002-11-18 Akim Demaille <akim@epita.fr>
12313
12314 * doc/bison.texinfo (Tracing): `yyprint' shouldn't prepend a
12315 space.
12316 From Tim Van Holder.
12317
12318 2002-11-17 Paul Eggert <eggert@twinsun.com>
12319
12320 Pacify Sun ONE Studio 7 lint. Also, rename "ParseError"
12321 to "SyntaxError" for consistency with my 2002-11-15 change.
12322
12323 * data/glr.c (YYDPRINTF, YYDSYMPRINT, YYDSYMPRINTF) [!YYDEBUG]: Do
12324 not define to {}, since this breaks the common use of `YYDPRINTF
12325 ((...));' if a single statement is desired (e.g. before `else').
12326 Work around GCC warnings by surrounding corresponding calls with
12327 {} if needed.
12328 (yyhasResolvedValue): Remove unused function.
12329 (yymergeOptionSets, yyresolvStack): Use `continue;' for empty
12330 loop body.
12331 (yyreportSyntaxError): Renamed from yyreportParseError.
12332 (yyrecoverSyntaxError): Renamed from yyrecoverParseError.
12333 All uses changed.
12334 * tests/calc.at (_AT_DATA_CALC_Y): Make vars static instead of
12335 extern when possible. Remove unused initializations.
12336
12337 2002-11-16 Akim Demaille <akim@epita.fr>
12338
12339 Augment the similarity between GLR and LALR traces.
12340
12341 * data/yacc.c (yy_stack_print, YY_STACK_PRINT, yy_reduce_print)
12342 (YY_REDUCE_PRINT): New.
12343 (yyparse): Use them.
12344 * data/glr.c (yy_reduce_print): Use YYFPRINTF, no need for
12345 YYDPRINT here.
12346 (yyglrReduce, yyrecoverParseError, yyparse): Don't report the
12347 state reached after the reduction/recovery, since...
12348 (yyparse, yyprocessOneStack): Report the state we are entering in.
12349
12350 2002-11-16 Akim Demaille <akim@epita.fr>
12351
12352 * src/getargs.h, src/getargs.c (trace_e, trace_args, trace_types):
12353 Add support for --trace=skeleton.
12354 * src/scan-skel.l: %option debug.
12355 Scan strings of non-@ or \n instead of character by character.
12356 (scan_skel): Handle trace_skeleton.
12357 (QPUTS): New.
12358 (@output_parser_name@, @output_header_name@): ``Restore'' their
12359 support (used to be M4 macros).
12360 * data/yacc.c: Quote larger chunks, a la glr.c.
12361 * data/lalr1.cc: Likewise.
12362 The header guards are no longer available, so use some other
12363 string than `YYLSP_NEEDED'.
12364
12365 2002-11-16 Akim Demaille <akim@epita.fr>
12366
12367 Make the ``Printers and Destructors'' test more verbose, taking
12368 `yacc.c''s behavior as (possibly wrong) reference.
12369
12370 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use printf
12371 instead of fprint on stdout.
12372 Set and report the last_line of the symbols.
12373 Consistently display values and locations.
12374
12375 2002-11-16 Paul Eggert <eggert@twinsun.com>
12376
12377 * data/yacc.c: Avoid over-quoting of __line__ and __file__.
12378
12379 2002-11-15 Paul Eggert <eggert@twinsun.com>
12380
12381 * tests/actions.at (Actions after errors): New test case.
12382
12383 * data/glr.c, data/lalr1.cc, data/yacc.cc, doc/bison.texinfo,
12384 src/conflicts.c, src/parse-gram.y, src/tables.c, src/tables.h,
12385 tests/action.at, tests/calc.at, tests/conflicts.at,
12386 tests/cxx-type.at, tests/regression.at:
12387 "parse error" -> "syntax error" for POSIX compatibility.
12388 "parsing stack overflow..." -> "parser stack overflow" so
12389 that code matches Bison documentation.
12390
12391 2002-11-15 Akim Demaille <akim@epita.fr>
12392
12393 * src/parse-gram.y (declaration): Have %parse-param and %lex-param
12394 take two BRACED_CODE, not two string_content.
12395 Free the scanner's obstack when we are done.
12396 (code_content): New.
12397 * tests/calc.at: Adjust.
12398 * doc/bison.texinfo: Adjust.
12399 Also, make sure to include the `,' for these declarations.
12400
12401 2002-11-15 Tim Van Holder <tim.van.holder@pandora.be>
12402
12403 * m4/prereq.m4: Removed the commented jm_PREREQ_HASH
12404 definition; avoids potential autoreconf problems.
12405
12406 2002-11-15 Akim Demaille <akim@epita.fr>
12407
12408 Always check the value returned by yyparse.
12409
12410 * tests/calc.at (_AT_DATA_CALC_Y): Have `main' exit with the value
12411 returned by yyparse.
12412 (_AT_CHECK_CALC_ERROR): Take the expected exit value as argument.
12413 Adjust calls.
12414 * tests/glr-regr1.at (glr-regr1.y): Have `main' exit with the value
12415 returned by yyparse.
12416
12417 2002-11-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
12418
12419 * data/glr.c (yyFail): Always set yyerrflag. Corrects regression
12420 on input.at test.
12421
12422 2002-11-14 Paul Eggert <eggert@twinsun.com>
12423
12424 * src/output.c (output_skeleton): Call xfopen instead of
12425 duplicating xfopen's body.
12426
12427 Fix bugs reported by Nelson H. F. Beebe in
12428 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00078.html>.
12429
12430 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that
12431 "$CC -E foo.h" is allowed, as this doesn't work with the Portland
12432 Group compiler. Instead, use "$CC -E bar.c". Include the .h
12433 file twice in the grammar, as an extra check.
12434
12435 * tests/input.at (Torturing the Scanner): Surround the
12436 backslash-newline tests with "#if 0", to make it less likely that
12437 we'll run into compiler bugs. Bring back solitary \ inside
12438 comment, but add a closing comment to work around HP C bug. Don't
12439 test backslash-newline in C character constant.
12440
12441 2002-11-14 Akim Demaille <akim@epita.fr>
12442
12443 * tests/synclines.at (AT_SYNCLINES_COMPILE): Ignore the exit
12444 status of the compiler.
12445 Calling `exit 1' is no longer needed.
12446 Reported by Nelson H. F. Beebe.
12447
12448 2002-11-14 Akim Demaille <akim@epita.fr>
12449
12450 * tests/atlocal.in (CPPFLAGS): We have config.h.
12451 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR):
12452 New.
12453 * tests/actions.at, tests/calc.at, tests/conflicts.at,
12454 * tests/cxx-type.at, tests/glr-regr1.at, tests/headers.at,
12455 * tests/regression.at, tests/torture.at: Use them for all the
12456 grammars that are to be compiled.
12457 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Rename as...
12458 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): this.
12459 * doc/bison.texinfo (GLR Parsers): Document `inline'.
12460
12461 2002-11-14 Akim Demaille <akim@epita.fr>
12462
12463 * doc/bison.texinfo: Various formatting changes (alignments in
12464 samples, additional @group/@end group, GCS in samples.
12465 Use @deffn instead of simple @table to define the directives,
12466 macros, variables etc.
12467
12468 2002-11-13 Paul Eggert <eggert@twinsun.com>
12469
12470 Fix some bugs reported by Albert Chin-A-Young in
12471 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00066.html>.
12472
12473 * tests/input.at (Torturing the Scanner): Don't invoke "cc a.c b.c
12474 -o c"; the HP C compiler chatters during compilation.
12475 Instead, invoke "cc -c a.c -o a.o; cc -c b.c -o b.o; cc a.o b.o -o c".
12476 * tests/headers.at (export YYLTYPE): Likewise.
12477
12478 * tests/input.at (Torturing the Scanner): Remove lines containing
12479 solitary backslashes, as they tickle a bug in the HP C compiler.
12480
12481 * tests/glr-regr1.at (Badly Collapsed GLR States): Avoid //
12482 comments, since they're not portable. Use GNU coding style.
12483
12484 2002-11-13 Akim Demaille <akim@epita.fr>
12485
12486 * data/yacc.c: Leave bigger chunks of quoted text.
12487 (YYDSYMPRINTF): New.
12488 Use it to report symbol activities.
12489 * data/glr.c (YYDSYMPRINTF): New.
12490 Use it.
12491
12492 2002-11-12 Paul Eggert <eggert@twinsun.com>
12493
12494 Version 1.75b.
12495
12496 * data/glr.c (yydoAction): Return YYRESULTTAG, not int.
12497 (yyglrReduce): Return yyok, not 0.
12498 This should avoid the enumerated-type warnings reported
12499 by Nelson H. F. Beebe in
12500 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00057.html>.
12501
12502 * lib/bbitset.h (BITSET_INLINE): Remove.
12503 * lib/bitset.h [! BITSET_INLINE]: Remove.
12504 (bitset_set, bitset_reset, bitset_test): Rename local vars
12505 to avoid shadowing warnings by GCC.
12506
12507 * data/glr.c (inline): Remove #define. It's the user's
12508 responsibility to #define it away, just like 'const'.
12509 This fixes one of the bugs reported by Nelson H. F. Beebe in
12510 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00058.html>.
12511
12512 * Makefile.maint (po-check): Scan .l and .y files instead of the
12513 .c and the .h files that they generate. This fixes the bug
12514 reported by Tim Van Holder in:
12515 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00062.html>
12516 Look for N_ as well as for _. Try to avoid matching #define for
12517 N_ and _.
12518 * po/POTFILES.in: Remove src/parse-gram.c, src/scan-gram.c,
12519 src/system.h. Add src/parse-gram.y, src/scan-gram.l.
12520 * src/scan-gram.l: Revamp regular expressions so that " and '
12521 do not confuse xgettext.
12522
12523 * src/struniq.h (struniq_new): Do not declare the return type
12524 to be 'const'; this violates the C standard.
12525 * src/struniq.c (struniq_new): Likewise.
12526
12527 2002-11-12 Albert Chin-A-Young <china@thewrittenword.com>
12528
12529 * src/Makefile.am (LDADD): Link $(LIBINTL) last to avoid the
12530 duplicate definition of optind on Tru64 UNIX 4.0D with the Compaq
12531 linker.
12532
12533 2002-11-12 Akim Demaille <akim@epita.fr>
12534
12535 * Makefile.maint: Sync with Autoconf:
12536 (local_updates): New.
12537
12538 2002-11-12 Akim Demaille <akim@epita.fr>
12539
12540 * po/POTFILES.in (src/lalr.c, src/state.c): Remove
12541
12542 2002-11-12 Akim Demaille <akim@epita.fr>
12543
12544 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Display the
12545 locations.
12546
12547 2002-11-12 Akim Demaille <akim@epita.fr>
12548
12549 * data/c.m4 (b4_yysymprint_generate): Pass *yyvaluep to YYPRINT,
12550 not yyvalue.
12551
12552 2002-11-12 Akim Demaille <akim@epita.fr>
12553
12554 * tests/actions.at (AT_CHECK_PRINTER_AND_DESTRUCTOR): New.
12555 Use it to test the GLR parser.
12556
12557 2002-11-12 Akim Demaille <akim@epita.fr>
12558
12559 * tests/regression.at (input.y): s/YYEOF/MYEOF/, as the skeleton
12560 defines it.
12561 * data/glr.c (yystos): New.
12562 (b4_yysymprint_generate, b4_yydestruct_generate): Invoke.
12563 (YYDSYMPRINT): New.
12564 (yyval): Don't define it, it is handled via M4.
12565 (yyrecoverParseError): Free verbosely the discarded symbols.
12566 * data/yacc.c (yysymprint): Remove, rather...
12567 (b4_yysymprint_generate): invoke.
12568 * data/c.m4 (b4_yysymprint_generate): New.
12569 Accept pointers as arguments, as opposed to the version from
12570 yacc.c.
12571 (b4_yydestruct_generate): Likewise.
12572 * tests/cations.at (Printers and Destructors): Use Bison directives
12573 instead of CPP macros.
12574 Don't rely on internal details.
12575
12576 2002-11-12 Akim Demaille <akim@epita.fr>
12577
12578 * data/c.m4 (b4_yydestruct_generate, b4_symbol_actions): New.
12579 * data/yacc.c: Rename yychar1 as yytoken, as in glr.c.
12580 Don't work on yychar (i.e., do set it to YYEMPTY, don't match
12581 it against YYEMPTY and so forth), work on yytoken (i.e., set
12582 it to YYEMPTY etc.).
12583 (yydestruct): Replace with a b4_yydestruct_generate invocation.
12584 (b4_symbol_actions): Remove.
12585 * data/glr.c (YYTRANSLATE): As for yacc.c, if negative, it stands
12586 for 0, end-of-input.
12587
12588 2002-11-12 Akim Demaille <akim@epita.fr>
12589
12590 * doc/bison.texinfo (Destructor Decl): New.
12591
12592 2002-11-12 Akim Demaille <akim@epita.fr>
12593
12594 * src/tables.c (tables_generate): Use free for pointers that
12595 cannot be NULL, not XFREE.
12596 (pack_vector): Use assert, not fatal, for bound violations.
12597 * src/state.c (state_new): Likewise.
12598 * src/reader.c (reader): Likewise.
12599 * src/lalr.c (set_goto_map): Likewise.
12600 * src/location.h (LOCATION_PRINT): If first_line is 0, just issue
12601 the file name.
12602
12603 2002-11-12 Akim Demaille <akim@epita.fr>
12604
12605 * src/scan-gram.l, src/reader.h (scanner_last_string_free):
12606 Restore.
12607 * src/scan-gram.l (last_string): Is global to the file, not to
12608 yylex.
12609 * src/parse-gram.y (input): Don't append the epilogue here,
12610 (epilogue.opt): do it here, and free the scanner's obstack.
12611 * src/reader.c (epilogue_set): Rename as...
12612 (epilogue_augment): this.
12613 * data/c.m4 (b4_epilogue): Defaults to empty.
12614
12615 2002-11-12 Akim Demaille <akim@epita.fr>
12616
12617 * src/getargs.c (long_options): Remove duplicates.
12618 * src/vmsgetargs.c, src/build.com, src/bison.cld, src/vmshlp.mar:
12619 Remove.
12620 * doc/bison.rnh: Remove.
12621 * doc/bison.texinfo (VMS Invocation): Remove.
12622
12623 2002-11-12 Akim Demaille <akim@epita.fr>
12624
12625 * src/struniq.h, src/struniq.c (struniq_t): Is const.
12626 (STRUNIQ_EQ, struniq_assert, struniq_assert_p): New.
12627
12628 Use struniq for symbols.
12629
12630 * src/symtab.h (symbol_t): The tag member is a struniq.
12631 (symbol_type_set): Adjust.
12632 * src/symtab.c (symbol_new): Takes a struniq.
12633 (symbol_free): Don't free the tag member.
12634 (hash_compare_symbol_t, hash_symbol_t): Rename as...
12635 (hash_compare_symbol, hash_symbol): these.
12636 Use the fact that tags as struniqs.
12637 (symbol_get): Use struniq_new.
12638 * src/symlist.h, src/symlist.c (symbol_list_n_type_name_get):
12639 Returns a strniq.
12640 * src/reader.h (merger_list, grammar_currentmerge_set): The name
12641 and type members are struniqs.
12642 * src/reader.c (get_merge_function)
12643 (grammar_current_rule_merge_set): Adjust.
12644 (TYPE, current_type): Are struniq.
12645
12646 Use struniq for file names.
12647
12648 * src/files.h, src/files.c (infile): Split into...
12649 (grammar_file, current_file): these.
12650 * src/scan-gram.c (YY_USER_INIT, handle_syncline): Adjust.
12651 * src/reduce.c (reduce_print): Likewise.
12652 * src/getargs.c (getargs): Likewise.
12653 * src/complain.h, src/complain.c: Likewise.
12654 * src/main.c (main): Call struniqs_new early enough to use it for
12655 file names.
12656 Don't free the input file name.
12657
12658 2002-11-12 Akim Demaille <akim@epita.fr>
12659
12660 * src/symtab.c (symbol_free): Remove dead deactivated code:
12661 type_name are properly removed.
12662 Don't use XFREE to free items that cannot be NULL.
12663 * src/struniq.h, src/struniq.c: New.
12664 * src/main.c (main): Initialize/free struniqs.
12665 * src/parse-gram.y (%union): Add astruniq member.
12666 (yyprint): Adjust.
12667 * src/scan-gram.l (<{tag}>): Return a struniq.
12668 Free the obstack bit that used to store it.
12669 * src/symtab.h (symbol_t): The 'type_name' member is a struniq.
12670
12671 2002-11-11 Paul Eggert <eggert@twinsun.com>
12672
12673 Revamp to fix many (but not all) of the C- and M4-related quoting
12674 problems. Among other things, this fixes the Bison bug reported
12675 by Jan Hubicka when processing the Bash grammar; see:
12676 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00039.html>
12677
12678 Use new @ escapes consistently. Represent brackets with @{ and @}
12679 rather than @<:@ and @:>@, since this works a bit better with dumb
12680 editors like vi. Represent @ with @@, since @ is now consistently
12681 an escape. Use @oline@ and @ofile@ rather than __oline__ and
12682 __ofile__, to avoid unexpected expansions. Similarly, use @output
12683 rather than #output.
12684
12685 * data/c.m4 (b4_copyright): Omit file name from comment, since
12686 the file name could contain "*/".
12687 (b4_synclines_flag): Don't quote the 2nd argument; it should already
12688 be quoted. All uses changed.
12689
12690 * data/glr.c: Use new @ escapes consistently.
12691 (b4_input_suffix, b4_output_parser_suffix, b4_output_parser_name,
12692 b4_output_header_suffix, b4_output_header_name, b4_header_guard):
12693 Remove, since they couldn't handle arbitrary characters in file
12694 names.
12695 * data/lalr1.cc: Likewise.
12696 * data/yacc.c: Likewise.
12697
12698 * src/files.c (output_infix): Remove; all uses removed.
12699 * src/files.h: Likewise.
12700
12701 * data/glr.c: Remove use of "#ifdef b4_header_guard", since it
12702 mishandled funny characters in file names, and anyway it isn't
12703 needed any more.
12704 * data/yacc.c: Likewise.
12705 * data/lalr1.cc: Use YYSLP_NEEDED instead of b4_header_guard.
12706
12707 * data/glr.c (YYSTYPE_IS_TRIVIAL): Define when the .h file would.
12708 * data/yacc.c: Likewise.
12709
12710 * src/muscle_tab.c: Include quotearg.h, since we need to quote C
12711 strings now.
12712 (muscle_init): Quote filename as a C string.
12713 * src/muscle_tab.h (MUSCLE_GROW_STRING_PAIR): Remove; unused.
12714 (MUSCLE_OBSTACK_SGROW, MUSCLE_INSERT_C_STRING): New macros.
12715 * src/output.c (escaped_file_name_output): New function.
12716 (prepare_symbols): Quote tokens for M4.
12717 (prepare): Don't insert output_infix, output_prefix,
12718 output_parser_name, output_header_name; this is now down by scan-skel.
12719 Insert skeleton as a C string.
12720
12721 * src/output.c (user_actions_output, symbol_destructors_output,
12722 symbol_printers_output): Quote filenames for C and M4.
12723 * src/reader.c (prologue_augment, epilogue_set): Likewise.
12724
12725 * src/scan-gram.l (<SC_CHARACTER>): Don't worry about any backslash
12726 escapes other than \\ and \'; this simplifies the code.
12727 (<SC_STRING>): Likewise, for \\ and \".
12728 (<SC_COMMENT,SC_LINE_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,
12729 SC_PROLOGUE,SC_EPILOGUE>): Escape $ and @, too.
12730 Use new escapes @{ and @} for [ and ].
12731
12732 * src/scan-skel.l (yylineno, yyoutname): Remove static vars, replacing
12733 them with auto vars.
12734 Switch to new escape scheme, where @ is the escape character uniformly.
12735 Abort if a stray escape character is found. Avoid unbounded input
12736 buffer when parsing non-escaped text.
12737
12738 * tests/input.at (Torturing the Scanner): Add tests that @oline@,
12739 __oline__, #output, $@, and @{ do not have unintended meanings.
12740
12741 2002-11-09 Paul Eggert <eggert@twinsun.com>
12742
12743 Fix the test failure due to GCC warnings described in
12744 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00000.html>.
12745 * data/glr.c (yyis_pact_ninf, yyis_table_ninf): New macros, which
12746 evaluate to 0 if it's impossible for NINF to be in the respective
12747 table.
12748 (yygetLRActions, yyrecoverParseError): Use them.
12749
12750 * src/scan-gram.l (unexpected_end_of_file): Fix bug: columns were
12751 counted in the token inserted at end of file. Now takes
12752 location_t *, not location_t, so that the location can be
12753 adjusted. All uses changed.
12754
12755 * tests/regression.at (Invalid inputs): Adjust wording in
12756 diagnostic to match the new behavior.
12757
12758 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR,
12759 AT_DATA_HORIZONTAL_GRAMMAR, AT_DATA_LOOKAHEADS_GRAMMAR,
12760 AT_DATA_STACK_TORTURE): Replace `assert (x);' with `if (! (x))
12761 abort ();'. This reduces the runtime of the "Many lookaheads"
12762 test from 27.6 to 2.7 minutes on a 440 MHz Ultrasparc III running
12763 GCC 3.2.
12764
12765 2002-11-07 Paul Eggert <eggert@twinsun.com>
12766
12767 * src/parse-gram.y (CHARACTER): Remove unused token.
12768 All uses removed.
12769
12770 * src/scan-gram.l: Remove stack option. We no longer use the
12771 stack, since the stack was never deeper than 1; instead, use the
12772 new auto var c_context to record the stacked value.
12773
12774 Remove nounput option. At an unexpected end of file, we now unput
12775 the minimal input necessary to end cleanly; this simplifies the
12776 code.
12777
12778 Avoid unbounded token sizes where this is easy.
12779
12780 (unexpected_end_of_file): New function.
12781 Use it to systematize the error message on unexpected EOF.
12782 (last-string): Now auto, not static.
12783 (YY_OBS_FREE): Remove unnecessary do while (0) wrapper.
12784 (scanner_last_string_free): Remove; not used.
12785 (percent_percent_count): Move decl to just before use.
12786 (SC_ESCAPED_CHARACTER): Return ID at unexpected end of file,
12787 not the (never otherwised-used) CHARACTER.
12788
12789 2002-11-07 Akim Demaille <akim@epita.fr>
12790
12791 Let yyerror always receive the msg as last argument, so that
12792 yyerror can be variadic.
12793
12794 * data/yacc.c (b4_yyerror_args): New.
12795 Use it when calling yyerror.
12796 * data/glr.c (b4_yyerror_args, b4_lyyerror_args): New.
12797 Use it when calling yyerror.
12798 * doc/bison.texinfo (Error Reporting): Adjust.
12799 * tests/calc.at (_AT_DATA_CALC_Y): Adjust.
12800 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Adjust.
12801
12802 2002-11-06 Akim Demaille <akim@epita.fr>
12803
12804 #line should have quoted strings.
12805 Ideally, this should be done by m4_quotearg.
12806
12807 * src/scan-skel.l: Include quotearg.h.
12808 Quote __ofile__.
12809 * src/output.c (symbol_printers_output)
12810 (symbol_destructors_output): Quote the file name.
12811
12812 2002-11-06 Akim Demaille <akim@epita.fr>
12813
12814 * tests/regression.at (Invalid inputs): Adjust to the recent
12815 messages.
12816
12817 2002-11-06 Akim Demaille <akim@epita.fr>
12818
12819 Restore --no-lines.
12820 Reported by Jim Kent.
12821
12822 * data/c.m4 (b4_syncline): New.
12823 * data/glr.c, data/yacc.c, data/lalr1.cc: Use it.
12824 * src/reader.c (prologue_augment, epilogue_set): Use b4_syncline.
12825 * src/output.c (user_actions_output): Likewise.
12826 (prepare): Define 'b4_synclines_flag'.
12827 * src/muscle_tab.c (muscle_init): Don't define b4_linef.
12828
12829 2002-11-06 Akim Demaille <akim@epita.fr>
12830
12831 * src/main.c (main): Free `infile'.
12832 * src/scan-gram.l (handle_syncline): New.
12833 Recognize `#line'.
12834 * src/output.c (user_actions_output, symbol_destructors_output)
12835 (symbol_printers_output): Use the location's file name, not
12836 infile.
12837 * src/reader.c (prologue_augment, epilogue_set): Likewise.
12838
12839 2002-11-05 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
12840
12841 * src/tables.c (matching_state): Don't allow states to match if
12842 either has GLR conflict entries.
12843
12844 2002-11-05 Paul Eggert <eggert@twinsun.com>
12845
12846 * src/scan-gram.l: Use more accurate diagnostics, e.g.
12847 "integer out of range" rather than "invalid value".
12848 * tests/input.at (Invalid $n, Invalid @n): Change expected wording
12849 accordingly.
12850
12851 Scan <% and %> digraphs in C code as POSIX 1003.1-2001 requires.
12852 Also, remove one static variable in the scanner.
12853
12854 * src/scan-gram.l (braces_level): Now auto, not static.
12855 Initialize to zero if the compiler is being picky.
12856 (INITIAL): Clear braces_level instead of incrementing it.
12857 (SC_BRACED_CODE): Treat <% and %> as { and } when inside C code,
12858 as POSIX 1003.1-2001 requires.
12859 * src/system.h (IF_LINT): New macro, taken from coreutils.
12860 * configure.ac: Define "lint" if --enable-gcc-warnings.
12861
12862 2002-11-05 Akim Demaille <akim@epita.fr>
12863
12864 * src/scan-gram.l: When it starts with `%', complain about the
12865 whole directive, not just that `invalid character: %'.
12866
12867 2002-11-04 Akim Demaille <akim@epita.fr>
12868
12869 * Makefile.maint: Update from Autoconf.
12870 (update, cvs-update, po-update, do-po-update): New.
12871
12872 2002-11-04 Akim Demaille <akim@epita.fr>
12873
12874 * tests/glr-regr1.at (Badly Collapsed GLR States): Prototype yylex
12875 and yyerror.
12876 Have yyerror `use' its arguments.
12877 * tests/calc.at (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF
12878 returns true when location & yacc & pure & parse-param.
12879 (_AT_DATA_CALC_Y): Let yyerror ``use'' its arguments.
12880
12881 2002-11-04 Akim Demaille <akim@epita.fr>
12882
12883 * src/location.h (LOCATION_PRINT): Use quotearg slot 3 to avoid
12884 clashes.
12885 * src/scan-gram.l: Use [\'] instead of ['] to pacify
12886 font-lock-mode.
12887 Use complain_at.
12888 Use quote, not quote_n since LOCATION_PRINT no longer uses the
12889 slot 0.
12890
12891 2002-11-03 Paul Eggert <eggert@twinsun.com>
12892
12893 * src/reader.c (get_merge_function, grammar_current_rule_check):
12894 Use consistent diagnostics for reporting type name clashes.
12895 Quote the types with <>, for consistency with Yacc.
12896 * tests/input.at (Type Clashes): Adjust to diagnostic changes.
12897
12898 2002-11-03 Akim Demaille <akim@epita.fr>
12899
12900 * data/c.m4 (b4_identification, b4_user_args, b4_parse_param):
12901 New.
12902 * data/yacc.m4 (b4_pure_args, b4_Pure_args): New.
12903 (b4_parse_param): Remove.
12904 Use b4_identification.
12905 Propagate b4_pure_args where needed to pass them to yyerror.
12906 * data/glr.m4 (b4_parse_param): Remove.
12907 (b4_user_formals, b4_pure_args, b4_pure_formals, b4_lpure_args)
12908 (b4_lpure_formals): New.
12909 Use b4_identification.
12910 (YY_USER_FORMALS, YY_USER_ARGS): Remove, replaced by
12911 b4_user_formals and b4_user_args.
12912 (yyexpandGLRStack, yyFail, yyaddDeferredAction, yyglrShiftDefer)
12913 (yyreportAmbiguity): When using a pure parser, also need
12914 the location, and the parse-params.
12915 Adjust callers.
12916 (yyuserAction, yyglrShift, yyreportParseError, yyrecoverParseError):
12917 When using a pure parser, also need the parse-params.
12918 Adjust callers.
12919 * tests/calc.at: Test pure (%pure-parser) and absolutely pure
12920 (%pure-parser + %parse-param) LALR and GLR parsers.
12921 (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): New, define AT_PARAM_IF,
12922 AT_LOCATION_IF, AT_PURE_IF, AT_GLR_IF, AAT_PURE_AND_LOC_IF,
12923 AT_GLR_OR_PARAM_IF, AT_YYERROR_ARG_LOC_IF, AT_YYERROR_SEES_LOC_IF.
12924 (_AT_DATA_CALC_Y): Equip for purity of yyerror.
12925 (_AT_CHECK_CALC_ERROR): Use AT_YYERROR_SEES_LOC_IF.
12926 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Equip for yyerror purity.
12927 * doc/bison.texinfo: Untabify the whole file.
12928 (Parser Function): Document %parse-param, deprecate YYPARSE_PARAM.
12929 (Pure Calling): Document %lex-param, deprecate YYLEX_PARAM.
12930 (Error Reporting): Adjust to these new directives.
12931 Document %error-verbose, deprecate YYERROR_VERBOSE.
12932
12933 2002-11-03 Akim Demaille <akim@epita.fr>
12934
12935 * tests/calc.at: Change all the AT_CHECK_CALC_LALR and
12936 AT_CHECK_CALC_GLR invocations to use % directives, instead of
12937 command line options.
12938 * tests/cxx-type.at: Formatting changes.
12939
12940 2002-11-03 Paul Eggert <eggert@twinsun.com>
12941
12942 * src/scan-gram.l: Revamp to fix POSIX incompatibilities,
12943 to count columns correctly, and to check for invalid inputs.
12944
12945 Use mbsnwidth to count columns correctly. Account for tabs, too.
12946 Include mbswidth.h.
12947 (YY_USER_ACTION): Invoke extend_location rather than LOCATION_COLUMNS.
12948 (extend_location): New function.
12949 (YY_LINES): Remove.
12950
12951 Handle CRLF in C code rather than in Lex code.
12952 (YY_INPUT): New macro.
12953 (no_cr_read): New function.
12954
12955 Scan UCNs, even though we don't fully handle them yet.
12956 (convert_ucn_to_byte): New function.
12957
12958 Handle backslash-newline correctly in C code.
12959 (SC_LINE_COMMENT, SC_YACC_COMMENT): New states.
12960 (eols, blanks): Remove. YY_USER_ACTION now counts newlines etc.;
12961 all uses changed.
12962 (tag, splice): New EREs. Do not allow NUL or newline in tags.
12963 Use {splice} wherever C allows backslash-newline.
12964 YY_STEP after space, newline, vertical-tab.
12965 ("/*"): BEGIN SC_YACC_COMMENT, not yy_push_state (SC_COMMENT).
12966
12967 (letter, id): Don't assume ASCII; e.g., spell out a-z.
12968
12969 ({int}, handle_action_dollar, handle_action_at): Check for integer
12970 overflow.
12971
12972 (YY_STEP): Omit trailing semicolon, so that it's more like C.
12973
12974 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>): Allow \0 and \00
12975 as well as \000. Check for UCHAR_MAX, not 255.
12976 Allow \x with an arbitrary positive number of digits, as in C.
12977 Check for overflow here.
12978 Allow \? and UCNs, for compatibility with C.
12979
12980 (handle_symbol_code_dollar): Use quote_n slot 1 to avoid collision
12981 with quote slot used by complain_at.
12982
12983 * tests/input.at: Add tests for backslash-newline, m4 quotes
12984 in symbols, long literals, and funny escapes in strings.
12985
12986 * configure.ac (jm_PREREQ_MBSWIDTH): Add.
12987 * lib/Makefile.am (libbison_a_SOURCES): Add mbswidth.h, mbswidth.c.
12988 * lib/mbswidth.h, lib/mbswidth.c: New files, from GNU gettext.
12989 * m4/Makefile.am (EXTRA_DIST): Add mbswidth.m4.
12990 * m4/mbswidth.m4: New file, from GNU coreutils.
12991
12992 * doc/bison.texinfo (Grammar Outline): Document // comments.
12993 (Symbols): Document that trigraphs have no special meaning in Bison,
12994 nor is backslash-newline allowed.
12995 (Actions): Document that trigraphs have no special meaning.
12996
12997 * src/location.h (LOCATION_COLUMNS, LOCATION_LINES): Remove;
12998 no longer used.
12999
13000 2002-11-02 Paul Eggert <eggert@twinsun.com>
13001
13002 * src/reader.c: Don't include quote.h; not needed.
13003 (get_merge_function): Reword warning to be consistent with
13004 type clash diagnostic in grammar_current_rule_check.
13005
13006 * lib/quotearg.c (quotearg_buffer_restyled): Fix off-by-two
13007 bug in trigraph handling.
13008
13009 * src/output.c (prepare_symbols): When printing token names,
13010 escape "[" as "@<:@" and likewise for "]".
13011
13012 * src/system.h (errno): Remove declaration, as we are now
13013 assuming C89 or better, and C89 guarantees errno.
13014
13015 2002-10-30 Paul Eggert <eggert@twinsun.com>
13016
13017 * lib/bitset_stats.c (bitset_stats_read, bitset_stats_write):
13018 Check for close failures.
13019 * src/files.h (xfclose): Return void, not int, since it always
13020 returned zero.
13021 * src/files.c (xfclose): Likewise. Report I/O error if ferror
13022 indicates one.
13023 * src/output.c (output_skeleton): Use xfclose rather than fclose
13024 and ferror. xfclose now checks ferror.
13025
13026 * data/glr.c (YYLEFTMOST_STATE): Remove.
13027 (yyreportTree): Use a stack-based leftmost state. This avoids
13028 our continuing battles with bogus warnings about initializers.
13029
13030 2002-10-30 Akim Demaille <akim@epita.fr>
13031
13032 * src/system.h: Don't use #ifdef/#ifndef on HAVE_ values, only
13033 #if.
13034
13035 2002-10-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13036
13037 * tests/glr-regr1.at: New test for reported regressions.
13038 * tests/testsuite.at: Add glr-regr1.at test.
13039 * tests/Makefile.am: Add glr-regr1.at test.
13040
13041 2002-10-24 Paul Eggert <eggert@twinsun.com>
13042
13043 Version 1.75a.
13044
13045 * tests/calc.at (_AT_DATA_CALC_Y): Remove unused strcat declaration.
13046 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Include stdlib.h, since
13047 we use malloc. Don't assume 'A' through 'Z' are contiguous.
13048 Don't assume strdup exists; POSIX says its an XSI extension.
13049 Check for buffer overflow on input.
13050
13051 2002-10-24 Akim Demaille <akim@epita.fr>
13052
13053 * src/output.c (output_skeleton): Don't disable M4sugar comments
13054 too soon: it results in comments being expanded.
13055 * data/yacc.c, data/glr.c, data/lalr1.cc: Do it right before the
13056 first output.
13057
13058 2002-10-24 Akim Demaille <akim@epita.fr>
13059
13060 * data/yacc.c (m4_int_type): New.
13061 * data/c.m4 (m4_int_type): Don't use yysigned_char, but `signed
13062 char' as only yacc.c wants K&R portability.
13063 * data/glr.c (yysigned_char): Remove.
13064 * data/lalr1.cc: Rename the trailing b4_name as b4_parser_class_name.
13065 Reported by Quoc Peyrot.
13066
13067 2002-10-23 Paul Eggert <eggert@twinsun.com>
13068
13069 * src/main.c (main): With --trace=time, report times even if a
13070 non-fatal error occurs. Formerly, the times were reported in some
13071 such cases but not in others.
13072 * src/reader.c (reader): Just return if a complaint has been issued,
13073 instead of exiting, so that 'main' can report times.
13074
13075 2002-10-22 Akim Demaille <akim@epita.fr>
13076
13077 * src/system.h: Include sys/types.
13078 Reported by Bert Deknuydt.
13079
13080 2002-10-23 Paul Eggert <eggert@twinsun.com>
13081
13082 * configure.ac (AC_PROG_LEX): Use instead of AM_PROG_LEX.
13083 Suggested by Art Haas.
13084
13085 2002-10-22 Paul Eggert <eggert@twinsun.com>
13086
13087 * src/complain.c (exit) [! (STDC_HEADERS || _LIBC)]: Remove exit
13088 decl; not needed any more.
13089 * src/main.c (main): Use return to exit, undoing yesterday's change.
13090 The last OS that we could find where this wouldn't work is
13091 SunOS 3.5, and that's too old to worry about now.
13092
13093 * data/glr.c (struct yyltype): Define members even when not
13094 doing locations. This is more consistent with yacc.c, and it
13095 works around the following bug reports:
13096 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00106.html
13097 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00111.html
13098
13099 * doc/bison.texinfo: Minor spelling and typographical fixes. Use
13100 @acronym consistently. Standardize on "Yacc" instead of "YACC",
13101 "Algol" instead of "ALGOL". Give a bit more history about BNF.
13102
13103 2002-10-22 Akim Demaille <akim@epita.fr>
13104
13105 * data/README: New.
13106
13107 2002-10-21 Paul Eggert <eggert@twinsun.com>
13108
13109 Be consistent about 'bool'; the old code used an enum in one
13110 module and an int in another, and this violates the C standard.
13111 * m4/stdbool.m4: New file, from coreutils 4.5.3.
13112 * configure.ac (AC_HEADER_STDBOOL): Add.
13113 * m4/Makefile.am (EXTRA_DIST): Add stdbool.m4.
13114 * src/muscle_tab.c (hash_compare_muscles): (a ? FALSE : TRUE) -> (! a)
13115 * src/symtab.c (hash_compare_symbol_t): Likewise.
13116 * src/system.h (bool, false, true): Use a definition consistent
13117 with ../lib/hash.c. All uses changed.
13118
13119 * src/complain.c (warning_issued): Renamed from warn_message_count,
13120 so that we needn't worry about integer overflow (!).
13121 Now of type bool. All uses changed.
13122 (complaint_issued): Renamed from complain_message_count; likewise.
13123
13124 * src/main.c (main): Use exit to exit with failure.
13125
13126 * src/complain.c (fatal_at, fatal): Use EXIT_FAILURE and EXIT_SUCCESS
13127 rather than 1 and 0.
13128 * src/main.c (main): Likewise.
13129 * src/getargs.c (getargs): Likewise.
13130 * src/reader.c (reader): Likewise.
13131
13132 * src/getarg.c (getargs): Remove duplicate code for
13133 "Try `bison --help'".
13134
13135 * src/files.c (xfopen, xfclose): Use EXIT_FAILURE rather than 2.
13136 What was that "2" for?
13137
13138 * src/complain.h (fatal, fatal_at): Add __attribute__((__noreturn__)).
13139 * src/getargs.c (usage): Likewise.
13140
13141 * src/getargs.c (getargs): When there are too few operands, report
13142 the last one. When there are too many, report the first extra
13143 one. This is how diffutils does it.
13144
13145 2002-10-20 Paul Eggert <eggert@twinsun.com>
13146
13147 Remove K&R vestiges.
13148 * configure.ac (AC_C_CONST, AM_C_PROTOTYPES): Remove.
13149 * src/complain.c (VA_START): Remove. Assume prototypes.
13150 (vfprintf) [! (HAVE_VPRINTF || defined vfprintf)]: New macro.
13151 (private_strerror, warn_at, warn, complain_at, complain, fatal_at,
13152 fatal): Assume prototypes.
13153 * src/complain.h: Assume prototypes.
13154 * src/system.h (PARAMS): Remove.
13155 Include <limits.h> unconditionally, since it's guaranteeed even
13156 for a freestanding C89 compiler.
13157 (SHRT_MIN, SHRT_MAX): Remove, since C89 guarantees them.
13158 * src/vmsgetargs.c (getargs, cli_present, cli_get_value): Prototype.
13159
13160 2002-10-20 Akim Demaille <akim@epita.fr>
13161
13162 * src/muscle_tab.c (muscle_grow): Remove trailing debugging code.
13163 * data/glr.c (YY_USER_FORMALS, YY_USER_ARGS): New.
13164 (yyuserAction, yydoAction, yyglrReduce, yyresolveValue)
13165 (yyresolveStates, yyresolveAction, yyresolveStack)
13166 (yyprocessOneStack): Use them.
13167 (yy_reduce_print): New.
13168 * tests/calc.at (_AT_DATA_CALC_Y): Exercise %parse-param.
13169
13170 2002-10-20 Akim Demaille <akim@epita.fr>
13171
13172 * data/c.m4 (b4_c_ansi_args): Recognize functions with no
13173 arguments and output `void'.
13174 (b4_c_function): Rename as...
13175 (b4_c_function_def): this.
13176 (b4_c_function_decl, b4_c_ansi_function_def)
13177 (b4_c_ansi_function_decl): New.
13178 Change the interpretation of the arguments: before `int, foo', now
13179 `int foo, foo'.
13180 * data/yacc.c (yyparse): Prototype and define thanks to these.
13181 Adjust b4_c_function_def uses.
13182 * data/glr.c (yyparse): Likewise, but ANSI only.
13183
13184 2002-10-20 Akim Demaille <akim@epita.fr>
13185
13186 * src/output.c (prepare): Move the definition of `tokens_number',
13187 `nterms_number', `undef_token_number', `user_token_number_max'
13188 to...
13189 (prepare_tokens): Here.
13190 (prepare_tokens): Rename as...
13191 (prepare_symbols): this.
13192 (prepare): Move the definition of `rules_number' to...
13193 (prepare_rules): here.
13194 (prepare): Move the definition of `last', `final_state_number',
13195 `states_number' to...
13196 (prepare_states): here.
13197 * data/yacc.c, data/lalr1.cc, data/glr.c: Normalize `>' into `<'.
13198
13199 2002-10-20 Akim Demaille <akim@epita.fr>
13200
13201 * src/tables.h, src/tables.c, src/output.c: Comment changes.
13202
13203 2002-10-20 Akim Demaille <akim@epita.fr>
13204
13205 * data/yacc.c, data/yacc.c (b4_location_if, b4_pure_if): Move to...
13206 * data/c.m4: here.
13207
13208 2002-10-20 Akim Demaille <akim@epita.fr>
13209
13210 * src/output.c (prepare): Use MUSCLE_INSERT_STRING.
13211 * src/muscle_tab.c (muscle_pair_list_grow): Rename `val as
13212 `pair'.
13213 (muscle_init): Move the `b4_ltype', `b4_maxdepth', `b4_initdepth',
13214 `name' to...
13215 * data/glr.c, data/lalr1.cc, data/yacc.c (b4_location_type)
13216 (b4_stack_depth_init, b4_stack_depth_max, b4_parser_class_name):
13217 These.
13218
13219 2002-10-19 Paul Eggert <eggert@twinsun.com>
13220
13221 Do not create a temporary file, as that involves security and
13222 cleanup headaches. Instead, use a pair of pipes.
13223 Derived from a suggestion by Florian Krohm.
13224 * lib/subpipe.c, lib/subpipe.h, m4/subpipe.m4: New files.
13225 * lib/mkstemp.c, lib/readpipe.c, lib/tempname.c, m4/mkstemp.m4: Remove.
13226 * configure.ac (UTILS_FUNC_MKSTEMP, jm_PREREQ_TEMPNAME): Remove.
13227 (BISON_PREREQ_SUBPIPE): Add.
13228 * lib/Makefile.am (libbison_a_SOURCES): Remove readpipe.c.
13229 Add subpipe.h, subpipe.c.
13230 * m4/Makefile.am (EXTRA_DIST): Remove mkstemp.m4. Add subpipe.m4.
13231 * po/POTFILES.in: Add lib/subpipe.c.
13232 * src/output.c: Include "subpipe.h".
13233 (m4_invoke): Remove decl.
13234 (scan_skel): New decl.
13235 (output_skeleton): Use pipe rather than temporary file for m4 input.
13236 Check that m4sugar.m4 is readable, to avoid deadlock.
13237 Check for pipe I/O error.
13238 * src/scan-skel.l (readpipe): Remove decl.
13239 (scan_skel): New function, to be used in place of m4_invoke.
13240 Read from stream rather than file.
13241
13242 * lib/timevar.c (TICKS_TO_MSEC, CLOCKS_TO_MSEC): Do not cast to
13243 float, as this generates a warning on Solaris 8 + GCC 3.2 with
13244 --enable-gcc-warnings. Instead, divide into 1.0 rather than 1;
13245 this generates a more-accurate value anyway.
13246
13247 * lib/timevar.c (timervar_accumulate): Rename locals to
13248 avoid confusion with similarly-named more-global.
13249 * src/muscle_tab.c (muscle_pair_list_grow): Likewise.
13250
13251 * src/output.c (prepare): Use xstrdup to convert char const *
13252 to char *, to avoid GCC warning.
13253
13254 2002-10-19 Akim Demaille <akim@epita.fr>
13255
13256 * tests/calc.at (_AT_DATA_CALC_Y): Define VAL, LOC, LEX_FORMALS,
13257 LEX_PRE_FORMALS, LEX_ARGS, LEX_PRE_ARGS, USE_LEX_ARGS.
13258 Use them to have `calc.y' ready for %pure-parser.
13259 * data/yacc.c (YYLEX): Pass a yylex return type to
13260 b4_c_function_call.
13261
13262 2002-10-19 Akim Demaille <akim@epita.fr>
13263
13264 Prototype support of %lex-param and %parse-param.
13265
13266 * src/parse-gram.y: Add the definition of the %lex-param and
13267 %parse-param tokens, plus their rules.
13268 Drop the `_' version of %glr-parser.
13269 Add the "," token.
13270 * src/scan-gram.l (INITIAL): Scan them.
13271 * src/muscle_tab.c: Comment changes.
13272 (muscle_insert, muscle_find): Rename `pair' as `probe'.
13273 * src/muscle_tab.h (MUSCLE_INSERT_PREFIX): Remove unused.
13274 (muscle_entry_s): The `value' member is no longer const.
13275 Adjust all dependencies.
13276 * src/muscle_tab.c (muscle_init): Adjust: use
13277 MUSCLE_INSERT_STRING.
13278 Initialize the obstack earlier.
13279 * src/muscle_tab.h, src/muscle_tab.c (muscle_grow)
13280 (muscle_pair_list_grow): New.
13281 * data/c.m4 (b4_c_function_call, b4_c_args): New.
13282 * data/yacc.c (YYLEX): Use b4_c_function_call to honor %lex-param.
13283 * tests/calc.at: Use %locations, not --locations.
13284 (AT_CHECK_CALC_GLR): Use %glr-parser, not %glr_parser.
13285
13286 2002-10-19 Akim Demaille <akim@epita.fr>
13287
13288 * src/getargs.c (usage): Take status as argument and exit
13289 accordingly.
13290 Report the traditional `Try ... --help' message when status != 0.
13291 (usage, version): Don't take a FILE * as arg, it is pointless.
13292 (getargs): When there is an incorrect number of arguments, make it
13293 an error, and report it GNUlically thanks to `usage ()'.
13294
13295 2002-10-18 Paul Eggert <eggert@twinsun.com>
13296
13297 * data/glr.c (yyreportParseError): Don't assume that sprintf
13298 yields the length of the printed string, as this is not true
13299 on SunOS 4.1.4. Reported by Peter Klein.
13300
13301 * tests/calc.at (_AT_DATA_CALC_Y): #undef memcmp and realloc.
13302 * tests/conflicts.at (%nonassoc and eof): Likewise.
13303 Fixes SunOS 4.1.4 test failure reported by Peter Klein.
13304
13305 2002-10-17 Akim Demaille <akim@epita.fr>
13306
13307 * src/getargs.h (trace_e): Add trace_scan, and trace_parse.
13308 * src/getargs.c (trace_types, trace_args): Adjust.
13309 * src/reader.c (grammar_current_rule_prec_set)
13310 (grammar_current_rule_dprec_set, grammar_current_rule_merge_set):
13311 Standardize error messages.
13312 And s/@prec/%prec/!
13313 (reader): Use trace_flag to enable scanner/parser debugging,
13314 instead of an adhoc scheme.
13315 * src/scan-gram.l: Remove trailing debugging code.
13316
13317 2002-10-16 Paul Eggert <eggert@twinsun.com>
13318
13319 * src/muscle_tab.h (MUSCLE_TAB_H_): Was misspelled as
13320 MUSCLE_TAB_H.
13321
13322 * NEWS: Officially drop support for building Bison with K&R C,
13323 since it didn't work anyway and it's not worth worrying about.
13324 * Makefile.maint (wget_files): Remove ansi2knr.c.
13325 (ansi2knr.c-url_prefix): Remove.
13326 * lib/.cvsignore: Remove ansi2knr, ansi2knr.*.
13327 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
13328 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
13329
13330 2002-10-15 Paul Eggert <eggert@twinsun.com>
13331
13332 Stop using the "enum_" trick for K&R-style function definitions;
13333 it confused me, and I was the author! Instead, assume that people
13334 who want to use K&R C compilers (when using these modules in GCC,
13335 perhaps?) will run ansi2knr.
13336
13337 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): Remove.
13338 All uses of "enum_" changed to "enum ".
13339 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
13340 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
13341
13342 * lib/abitset.c (abitset_and, abitset_and_cmp, abitset_and_or,
13343 abitset_and_or_cmp, abitset_andn, abitset_andn_cmp,
13344 abitset_andn_or, abitset_andn_or_cmp, abitset_bytes, abitset_copy,
13345 abitset_copy1, abitset_disjoint_p, abitset_empty_p,
13346 abitset_equal_p, abitset_init, abitset_list, abitset_list_reverse,
13347 abitset_not, abitset_ones, abitset_or, abitset_or_and,
13348 abitset_or_and_cmp, abitset_or_cmp, abitset_reset, abitset_set,
13349 abitset_size, abitset_small_list, abitset_subset_p, abitset_test,
13350 abitset_unused_clear, abitset_xor, abitset_xor_cmp, abitset_zero):
13351 Use function prototypes; this removes the need for declaring
13352 static functions simply to provide their prototypes.
13353 * lib/bitset.c (bitset_alloc, bitset_and_or_, bitset_and_or_cmp_,
13354 bitset_andn_or_, bitset_andn_or_cmp_, bitset_bytes, bitset_copy_,
13355 bitset_count_, bitset_create, bitset_dump, bitset_first,
13356 bitset_free, bitset_init, bitset_last, bitset_next,
13357 bitset_obstack_alloc, bitset_obstack_free, bitset_only_set_p,
13358 bitset_op4_cmp, bitset_or_and_, bitset_or_and_cmp_, bitset_prev,
13359 bitset_print, bitset_release_memory, bitset_toggle_,
13360 bitset_type_choose, bitset_type_get, bitset_type_name_get,
13361 debug_bitset): Likewise.
13362 * lib/bitset.h (bitset_set, bitset_reset, bitset_test): Likewise.
13363 * lib/bitset_stats.c (bitset_log_histogram_print,
13364 bitset_percent_histogram_print, bitset_stats_and,
13365 bitset_stats_and_cmp, bitset_stats_and_or,
13366 bitset_stats_and_or_cmp, bitset_stats_andn, bitset_stats_andn_cmp,
13367 bitset_stats_andn_or, bitset_stats_andn_or_cmp, bitset_stats_copy,
13368 bitset_stats_count, bitset_stats_disable, bitset_stats_disjoint_p,
13369 bitset_stats_dump, bitset_stats_empty_p, bitset_stats_enable,
13370 bitset_stats_equal_p, bitset_stats_free, bitset_stats_init,
13371 bitset_stats_list, bitset_stats_list_reverse, bitset_stats_not,
13372 bitset_stats_ones, bitset_stats_or, bitset_stats_or_and,
13373 bitset_stats_or_and_cmp, bitset_stats_or_cmp, bitset_stats_print,
13374 bitset_stats_print_1, bitset_stats_read, bitset_stats_reset,
13375 bitset_stats_set, bitset_stats_size, bitset_stats_subset_p,
13376 bitset_stats_test, bitset_stats_toggle, bitset_stats_type_get,
13377 bitset_stats_write, bitset_stats_xor, bitset_stats_xor_cmp,
13378 bitset_stats_zero): Likewise.
13379 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
13380 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
13381 bitsetv_dump, debug_bitsetv): Likewise.
13382 * lib/ebitset.c (ebitset_and, ebitset_and_cmp, ebitset_andn,
13383 ebitset_andn_cmp, ebitset_bytes, ebitset_copy, ebitset_copy_,
13384 ebitset_copy_cmp, ebitset_disjoint_p, ebitset_elt_add,
13385 ebitset_elt_alloc, ebitset_elt_calloc, ebitset_elt_find,
13386 ebitset_elt_free, ebitset_elt_last, ebitset_elt_remove,
13387 ebitset_elt_zero_p, ebitset_elts_grow, ebitset_empty_p,
13388 ebitset_equal_p, ebitset_free, ebitset_init, ebitset_list,
13389 ebitset_list_reverse, ebitset_not, ebitset_ones, ebitset_op3_cmp,
13390 ebitset_or, ebitset_or_cmp, ebitset_release_memory, ebitset_reset,
13391 ebitset_set, ebitset_size, ebitset_subset_p, ebitset_test,
13392 ebitset_weed, ebitset_xor, ebitset_xor_cmp, ebitset_zero):
13393 Likewise.
13394 * lib/lbitset.c (debug_lbitset, lbitset_and, lbitset_and_cmp,
13395 lbitset_andn, lbitset_andn_cmp, lbitset_bytes, lbitset_copy,
13396 lbitset_copy_cmp, lbitset_disjoint_p, lbitset_elt_alloc,
13397 lbitset_elt_calloc, lbitset_elt_find, lbitset_elt_free,
13398 lbitset_elt_link, lbitset_elt_unlink, lbitset_elt_zero_p,
13399 lbitset_empty_p, lbitset_equal_p, lbitset_free, lbitset_init,
13400 lbitset_list, lbitset_list_reverse, lbitset_not, lbitset_ones,
13401 lbitset_op3_cmp, lbitset_or, lbitset_or_cmp, lbitset_prune,
13402 lbitset_release_memory, lbitset_reset, lbitset_set, lbitset_size,
13403 lbitset_subset_p, lbitset_test, lbitset_weed, lbitset_xor,
13404 lbitset_xor_cmp, lbitset_zero): Likewise.
13405
13406 2002-10-14 Akim Demaille <akim@epita.fr>
13407
13408 Version 1.75.
13409
13410 2002-10-14 Akim Demaille <akim@epita.fr>
13411
13412 * tests/Makefile.am (maintainer-check-posix): New.
13413
13414 2002-10-14 Akim Demaille <akim@epita.fr>
13415
13416 * data/glr.c [YYDEBUG] (YYLEFTMOST_STATE): Initialize the yyloc
13417 member.
13418
13419 2002-10-14 Akim Demaille <akim@epita.fr>
13420
13421 * src/tables.c (table_ninf_remap): base -> tab.
13422 Reported by Matt Rosing.
13423
13424 2002-10-14 Paul Eggert <eggert@twinsun.com>
13425
13426 * tests/action.at, tests/calc.at, tests/conflicts.at,
13427 tests/cxx-type.at, tests/headers.at, tests/input.at,
13428 tests/regression.at, tests/synclines.at, tests/torture.at:
13429 Say "bison -o foo.c foo.y", not "bison foo.y -o foo.c",
13430 so that the tests still work even if POSIXLY_CORRECT is set.
13431 * doc/bison.texinfo (Rpcalc Compile, Invocation): Likewise.
13432
13433 * data/c.m4 (b4_int_type): Use yysigned_char instead of signed char,
13434 for portability to K&R hosts. Fix typo: signed char is guaranteed
13435 only to 127, not to 128.
13436 * data/glr.c (yysigned_char): New type.
13437 * data/yacc.c (yysigned_char): Likewise.
13438 * tests/regression.at (Web2c Actions): signed char -> yysigned_char.
13439
13440 2002-10-13 Paul Eggert <eggert@twinsun.com>
13441
13442 * data/yacc.c (yyparse): Rewrite to avoid "comparison is always
13443 true due to limited range of data type" warning from GCC.
13444
13445 * data/c.m4 (b4_token_defines): Protect against double-inclusion
13446 by wrapping enum yytokentype's definition inside #ifndef
13447 YYTOKENTYPE. This undoes a bug I introduced on 2002-10-12.
13448
13449 2002-10-13 Akim Demaille <akim@epita.fr>
13450
13451 * data/glr.c (yyglrShiftDefer, yyaddDeferredAction, yydoAction):
13452 Un yy- yyrhs to avoid the name clash with the global YYRHS.
13453
13454 2002-10-13 Akim Demaille <akim@epita.fr>
13455
13456 * Makefile.maint: Update from Autoconf 2.54.
13457 * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Remove, shipped with 2.54.
13458
13459 2002-10-13 Akim Demaille <akim@epita.fr>
13460
13461 * src/print.c (print_state): Separate the list of solved conflicts
13462 from the other items.
13463 * tests/conflicts.at (Resolved SR Conflicts): Adjust.
13464
13465 2002-10-13 Akim Demaille <akim@epita.fr>
13466
13467 Let nondeterministic skeletons be usable with deterministic
13468 tables.
13469
13470 With the patch, GAWK compiled by GCC without -O2 passes its test
13471 suite using a GLR parser driven by LALR tables. It fails with -O2
13472 because `struct stat' gives two different answers on my machine:
13473 88 (definition of an auto var) and later 96 (memset on this var).
13474 Hence the stack is badly corrumpted. The headers inclusion is to
13475 blame: if I move the awk.h inclusion before GLR's system header
13476 inclusion, the two struct stat have the same size.
13477
13478 * src/tables.c (pack_table): Always create conflict_table.
13479 (token_actions): Always create conflict_list.
13480 * data/glr.c (YYFLAG): Remove, unused.
13481
13482 2002-10-13 Akim Demaille <akim@epita.fr>
13483
13484 * configure.ac (AC_GNU_SOURCE): Use it instead of hand written code.
13485 (O0FLAGS): New.
13486 (VALGRIND, GXX): New.
13487 * tests/atlocal.in (CFLAGS): Use O0FLAGS.
13488 * tests/bison.in: Run $PREBISON a pre-command.
13489 * tests/Makefile.am (maintainer-check, maintainer-check-valgrind)
13490 (maintainer-check-g++): New.
13491 * Makefile.am (maintainer-check): New.
13492
13493 2002-10-13 Akim Demaille <akim@epita.fr>
13494
13495 * data/glr.c: Formatting changes.
13496 Tweak some trace messages to match yacc.c's.
13497
13498 2002-10-13 Akim Demaille <akim@epita.fr>
13499
13500 GLR parsers sometimes raise parse errors instead of performing the
13501 default reduction.
13502 Reported by Charles-Henry de Boysson.
13503
13504 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Don't
13505 check the length of the traces when %glr.
13506 (_AT_CHECK_CALC_ERROR): Also skip `^Stack' lines, coming from
13507 GLR's traces.
13508 (AT_CHECK_CALC_LALR, AT_CHECK_CALC_GLR): New.
13509 Test GLR parsers.
13510 * data/glr.c (YYLEFTMOST_STATE): Fix its value.
13511 (yyltype): Remove the yy prefix from the member names.
13512 (yytable): Complete its comment.
13513 (yygetLRActions): Map error action number from YYTABLE from
13514 YYTABLE_NINF to 0.
13515 (yyisErrorAction): No longer compare YYACTION to YYPACT_NINF
13516 (which was a bug: it should have been YYTABEL_NINF, and yet it was
13517 not satisfying as we could compare an YYACTION computed from
13518 YYDEFACT to YYTABLE_NINF although they are unrelated): 0 is the
13519 only value for error actions.
13520 (yyreportParseError): In verbose parse error messages, don't issue
13521 `error' in the list of expected tokens.
13522 * data/yacc.c (yyparse) <yybackup>: Rewrite the decoding of the
13523 next action to perform to match glr.c's decoding.
13524 (yytable): Complete its comment.
13525
13526 2002-10-13 Paul Eggert <eggert@twinsun.com>
13527
13528 Fix problem reported by Henrik Grubbstroem in
13529 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00098.html>:
13530 "nonterm: { $$ = 123; } { $$ = $1; };" was wrongly rejected,
13531 because the Bison parser reads the second action before reducing
13532 the first one.
13533 * src/scan-gram.l (rule_length): New static var.
13534 Use it to keep track of the rule length in the scanner, since
13535 we can't expect the parser to be in lock-step sync with the scanner.
13536 (handle_action_dollar, handle_action_at): Use this var.
13537 * tests/actions.at (Exotic Dollars): Test for the problem.
13538
13539 2002-10-12 Paul Eggert <eggert@twinsun.com>
13540
13541 * lib/timevar.c [! IN_GCC && HAVE_SYS_TIME_H]: Include <sys/time.h>.
13542 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): Check for <sys/time.h>.
13543 Include <sys/time.h> when checking for clock_t and struct tms.
13544 Use same include order as source.
13545 This is for the SunOS 4.1.4 porting bug reported by Peter Klein in
13546 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00016.html>.
13547
13548 * lib/timevar.c: Update copyright date and clarify comments.
13549 (get_time) [IN_GCC]: Keep the GCC version for reference.
13550
13551 * lib/timevar.c, lib/timevar.h, lib/timevar.def: Import
13552 GCC version as of today, then merge Bison's changes.
13553 Change "GCC" to "Bison" in copyright notice. timevar.def's
13554 author is Akim, so change that too.
13555
13556 * src/reader.c (grammar_current_rule_check):
13557 Don't worry about the default action if $$ is untyped.
13558 Prevents bogus warnings reported by Jim Gifford in
13559 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00015.html>.
13560
13561 * data/c.m4 (b4_token_enum): Do not define YYTOKENTYPE.
13562 * data/glr.c, data/lalr1.cc, data/yacc.c:
13563 Output token definitions before the first part of user declarations.
13564 Fixes compatibility problem reported by Jim Gifford for kbd in
13565 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00014.html>.
13566
13567 2002-10-11 Paul Eggert <eggert@twinsun.com>
13568
13569 * data/yacc.c (yyreport_parse_error): Remove, putting its body into...
13570 (yyparse): here. This undoes some of the 2002-07-25 change.
13571 Compatibility problem reported by Ralf S. Engelschall with
13572 OSSP cfg <http://www.ossp.org/pkg/lib/cfg/>.
13573
13574 2002-10-11 Akim Demaille <akim@epita.fr>
13575
13576 * tests/regression.at Characters Escapes): New.
13577 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Accept \' in strings and
13578 characters.
13579 Reported by Jan Nieuwenhuizen.
13580
13581 2002-10-11 Akim Demaille <akim@epita.fr>
13582
13583 * po/id.po: New.
13584
13585 2002-10-10 Paul Eggert <eggert@twinsun.com>
13586
13587 Portability fixes for bitsets; this also avoids several GCC
13588 warnings.
13589
13590 * lib/abitset.c: Include <stddef.h>, for offsetof.
13591 * lib/lbitset.c: Likewise.
13592
13593 * lib/abitset.c (abitset_bytes): Return a size that is aligned
13594 properly for vectors of objects. Do not assume that adding a
13595 header size to a multiple of a word size yields a value that is
13596 properly aligned for the whole union.
13597 * lib/bitsetv.c (bitsetv_alloc): Likewise.
13598
13599 * lib/bitset_stats.c (bitset_stats_bytes): Adjust to new,
13600 unique names for structures.
13601 * lib/ebitset.c (ebitset_bytes): Likewise.
13602 * lib/lbitset.c (lbitset_bytes): Likewise.
13603
13604 * lib/abitset.c (abitset_ones, abitset_zero, abitset_empty_p,
13605 abitset_copy1, abitset_not, abitset_equal_p, abitset_subset_p,
13606 abitset_disjoint_p, abitset_and, abitset_and_cmp, abitset_andn,
13607 abitset_andn_cmp, abitset_or, abitset_or_cmp, abitset_xor,
13608 abitset_xor_cmp, abitset_and_or, abitset_and_or_cmp,
13609 abitset_andn_or, abitset_andn_or_cmp, abitset_or_and,
13610 abitset_or_and_cmp, abitset_copy): Supply prototype decls,
13611 to improve the type-checking that GCC can do.
13612 * lib/bitset.c (bitset_op4_cmp): Likewise.
13613 * lib/bitset_stats.c (bitset_stats_count,
13614 bitset_stats_empty_p, bitset_stats_ones, bitset_stats_zero,
13615 bitset_stats_copy, bitset_stats_disjoint_p,
13616 bitset_stats_equal_p, bitset_stats_not, bitset_stats_subset_p,
13617 bitset_stats_and, bitset_stats_and_cmp, bitset_stats_andn,
13618 bitset_stats_andn_cmp, bitset_stats_or, bitset_stats_or_cmp,
13619 bitset_stats_xor, bitset_stats_xor_cmp, bitset_stats_and_or,
13620 bitset_stats_and_or_cmp, bitset_stats_andn_or,
13621 bitset_stats_andn_or_cmp, bitset_stats_or_and,
13622 bitset_stats_or_and_cmp): Likewise.
13623 * lib/lbitset.c (lbitset_and, lbitset_and_cmp, lbitset_andn,
13624 lbitset_andn_cmp, lbitset_or, lbitset_or_cmp, lbitset_xor,
13625 lbitset_xor_cmp, lbitset_empty_p, lbitset_ones, lbitset_not,
13626 lbitset_subset_p, lbitset_disjoint_p, debug_lbitset): Likewise.
13627
13628 * lib/abitset.h: Include bitset.h, not bbitset.h.
13629 * lib/ebitset.h: Likewise.
13630 * lib/lbitset.h: Likewise.
13631
13632 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): New types.
13633 All instances of parameters of type enum bitset_opts are now of
13634 type enum_bitset_opts, to conform to the C Standard, and similarly
13635 for enum_bitset_type.
13636 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
13637 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
13638
13639 Do not use "struct bitset_struct" to mean different things in
13640 different modules. Not only is this confusing, it violates
13641 the C Standard, which requires that structure types in different
13642 modules must be compatible if one is to be passed to the other.
13643 * lib/bbitset.h (bitset): Now points to a union, not to a struct.
13644 All instances of "struct bitset_struct *" replaced with "bitset".
13645 * lib/bitset.h (struct bitset_struct): Remove, replacing with....
13646 (union bitset_union, struct abitset_struct, struct ebitset_struct,
13647 struct lbitset_struct, struct bitset_stats_struct): New types.
13648 All uses of struct bitset_struct changed to union bitset_union,
13649 etc.
13650 * lib/abitset.c (struct abitset_struct, abitset,
13651 struct bitset_struct): Remove.
13652 * lib/bitset_stats.c (struct bitset_stats_struct, bitset_stats,
13653 struct bitset_struct): Remove.
13654 * lib/ebitset.c (struct ebitset_struct, ebitset, struct
13655 bitset_struct): Remove.
13656 * lib/lbitset.c (struct lbitset_struct, lbitset, bitset_struct):
13657 Likewise.
13658
13659 Do not call a function of type T using a call that assumes the
13660 function is of a different type U. Standard C requires that a
13661 function must be called with a type that is compatible with its
13662 definition.
13663 * lib/bbitset.h (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
13664 New decls.
13665 * lib/bitset.c (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
13666 New functions.
13667 * lib/ebitset.c (PFV): Remove.
13668 * lib/lbitset.c (PFV): Likewise.
13669 * lib/ebitset.c (ebitset_and, ebitset_andn, ebitset_or,
13670 ebitset_xor, ebitset_copy, ebitset_ones, ebitset_empty_p): New
13671 decls.
13672 (ebitset_and, ebitset_andn, ebitset_or, ebitset_xor): New functions.
13673 (ebitset_vtable): Use them.
13674 * lib/lbitset.c (lbitset_and, lbitset_andn, lbitset_or,
13675 lbitset_xor): New functions.
13676 (lbitset_vtable): Use them.
13677
13678 * lib/bitset.h (bitset_next, bitset_prev, bitset_only_set_p):
13679 Declare.
13680
13681 * lib/bitsetv.c (bitsetv_alloc): Add a cast to (void *) to avoid a
13682 GCC warning.
13683 * lib/lbitset.c (LBITSET_CURRENT1): Likewise.
13684 Use offsetof, for simplicity.
13685
13686 2002-10-06 Paul Eggert <eggert@twinsun.com>
13687
13688 * lib/bitset.h (bitset_reset): Do not assume that bitset_word is
13689 the same width as int. This reapplies a hunk of the 2002-08-12 patch
13690 <http://lists.gnu.org/archive/html/bison-patches/2002-08/msg00007.html>,
13691 which was inadvertently undone by the 2002-09-30 patch.
13692 * lib/lbitset.c (debug_lbitset): Do not assume that bitset_word is
13693 the same width as int.
13694
13695 2002-10-04 Paul Eggert <eggert@twinsun.com>
13696
13697 Version 1.50.
13698
13699 * configure.ac (AC_INIT), NEWS: Increment version number.
13700
13701 * doc/bison.texinfo: Minor spelling, grammar, and white space
13702 fixes.
13703 (Symbols): Mention that any negative value returned from yylex
13704 signifies end-of-input. Warn about negative chars. Mention
13705 the portable Standard C character set.
13706
13707 The GNU coding standard says CFLAGS and YFLAGS are reserved
13708 for the installer to set.
13709 * lib/Makefile.am (AM_CFLAGS): Renamed from CFLAGS.
13710 * src/Makefile.am (AM_CFLAGS): Likewise.
13711 (AM_YFLAGS): Renamed from YFLAGS.
13712
13713 Fix some MAX and MIN problems.
13714 * src/gram.h (ITEM_NUMBER_MIN): MIN_MAX -> INT_MIN.
13715 * src/lalr.h (GOTO_NUMBER_MAX): INT_MAX -> SHRT_MAX.
13716 * src/symtab.h (SYMBOL_NUMBER_MAX): New macro.
13717 * src/reader.c (reader): Use it.
13718
13719 * tests/regression.at (Braces parsing): Use grep, not fgrep, as
13720 POSIX 1003.1-2001 has removed fgrep.
13721
13722 2002-10-04 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
13723
13724 * lib/bbitset.h (BITSET_WINDEX_MAX): Redefine so that it cannot be
13725 interpreted as signed.
13726 * lib/ebitset.c (ebitset_list): Fix bug.
13727
13728 2002-10-01 Paul Eggert <eggert@twinsun.com>
13729
13730 More fixes for 64-bit hosts and large bitsets.
13731
13732 * lib/abitset.c (struct abitset_struct.n_bits, abitset_small_list,
13733 abitset_size, abitset_list, abitset_list_reverse, abitset_list):
13734 Use bitset_bindex, not int or unsigned int or size_t, to count bits.
13735 * lib/bbitset.h (struct bitset_vtable.size, struct bitset_vtable.count,
13736 struct bitset_vtable.list, struct bitset_vtable.list_reverse,
13737 bitset_count_, bitset_next, bitset_prev, bitset_first, bitset_last,
13738 bitset_count_): Likewise.
13739 * lib/bitset.h (bitset_iterator.num, bitset_iterator.i,
13740 bitset_first, bitset_last): Likewise.
13741 * lib/bitset_stats.c (bitset_stats_size, bitset_stats_list,
13742 bitset_stats_list_reverse, bitset_stats_size,
13743 bitset_stats_count, bitset_stats_list, bitset_stat_list_reverse):
13744 Likewise.
13745 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
13746 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
13747 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
13748 bitsetv_reflexive_transitive_closure): Likewise.
13749 * lib/bitsetv.h (bitsetv_alloc, bitsetv_create): Likewise.
13750 * lib/ebitset.c (ebitset_size, ebitset_list, ebitset_list_reverse):
13751 Likewise.
13752 * lib/lbitset.c (lbitset_size, lbitset_list, lbitset_list_merge):
13753 Likewise.
13754
13755 * lib/abitset.c (abitset_ones, abitset_zero, abitset_bytes):
13756 Use size_t, not unsigned int, to count bytes.
13757 * lib/abitset.h (abitset_bytes): Likewise.
13758 * lib/bitset.c (bitset_bytes, bitset_alloc, bitset_obstack_alloc):
13759 Likewise.
13760 * lib/bitset.h (bitset_bytes): Likewise.
13761 * lib/bitset_stats.c (bitset_stats_bytes, bitset_stats_init): Likewise.
13762 * lib/bitset_stats.h (bitset_stats_bytes): Likewise.
13763 * lib/bitsetv.c (bitsetv_alloc): Likewise.
13764 * lib/ebitset.c (ebitset_bytes): Likewise.
13765 * lib/ebitset.h (ebitset_bytes): Likewise.
13766 * lib/lbitset.c (lbitset_bytes): Likewise.
13767 * lib/lbitset.h (lbitset_bytes): Likewise.
13768
13769 * lib/abitset.c (abitset_empty_p, abitset_not, abitset_equal_p,
13770 abitset_subset_p, abitset_disjoint_p, abitset_and,
13771 abitset_and_cmp, abitset_andn, abitset_andn_cmp, abitset_or,
13772 abitset_or_cmp, abitset_xor, abitset_xor_cmp, abitset_and_or,
13773 abitset_and_or_cmp, abitset_andn_or, abitset_andn_or_cmp,
13774 abitset_or_and, abitset_or_and_cmp):
13775 Use bitset_windex instead of unsigned int.
13776 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
13777 * lib/ebitset.c (struct ebitset_struct.size, ebitset_elts_grow,
13778 ebitset_elt_add, ebitset_elt_remove, ebitset_weed,
13779 ebitset_elt_find, ebitset_list_reverse, ebitset_list, ebitset_init):
13780 Likewise.
13781 * lib/lbitset.c (lbitset_ones, lbitset_not): Likewise.
13782
13783 * lib/bitset.c (bitset_print):
13784 Use proper printf formats for widths of integer types.
13785 * lib/bitset_stats.c (bitset_percent_histogram_print,
13786 bitset_log_histogram_print, bitset_stats_print_1): Likewise.
13787 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
13788 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
13789 * lib/lbitset.c (lbitset_bytes): Likewise.
13790
13791 * lib/bbitset.h (BITSET_BINDEX_MAX, BITSET_WINDEX_MAX,
13792 BITSET_SIZE_MAX): New macros.
13793 (BITSET_INDEX_MAX): Remove. It wasn't right, since it assumed that
13794 sizeof (bitset_word) == sizeof (bitset_windex). All uses changed
13795 to BITSET_WINDEX_MAX.
13796
13797 * lib/bitset.c (bitset_next, bitset_prev, bitset_first,
13798 bitset_last): Return BITSET_BINDEX_MAX (not -1) for no value,
13799 since we now return the bitset_bindex type (not int).
13800
13801 * lib/bitsetv.c (bitsetv_alloc): Check for arithmetic overflow
13802 when computing sizes.
13803 * lib/ebitset.c (ebitset_elts_grow): Likewise.
13804
13805 * lib/lbitset.c (lbitset_elt_find): Simplify windex calculation
13806 and avoid cast to unsigned.
13807
13808 2002-09-30 Akim Demaille <akim@epita.fr>
13809
13810 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
13811 * lib/bitset_stats.c, lib/bitsetv.c, lib/ebitset.c, lib/lbitset.c:
13812 Updates from Michael Hayes.
13813
13814 2002-09-30 Art Haas <ahaas@neosoft.com>
13815
13816 * configure.ac: Update AC_OUTPUT and AM_CONFIG_HEADER
13817 invocations.
13818 * tests/cxx-type.at (declarator): Don't rely on NDEBUG being not
13819 defined.
13820
13821 2002-09-27 Akim Demaille <akim@epita.fr>
13822
13823 Version 1.49c.
13824
13825 2002-09-27 Akim Demaille <akim@epita.fr>
13826
13827 * configure.ac (AM_INIT_AUTOMAKE): We _need_ 1.7.
13828 (Because of AC_LIBSOURCE).
13829
13830 2002-09-27 Akim Demaille <akim@epita.fr>
13831
13832 Playing with Autoscan.
13833
13834 * configure.ac: Remove the old LIBOBJ tweaks.
13835 (AC_REPLACE_FUNCS): Add strrchr and strtol.
13836 * lib/strrchr.c: New.
13837 * lib/strtol.c: New, from the Coreutils 4.5.1.
13838
13839 2002-09-27 Akim Demaille <akim@epita.fr>
13840
13841 Playing with Autoscan.
13842
13843 * m4/prereq.m4 (jm_PREREQ_ARGMATCH, jm_FUNC_ARGMATCH): New.
13844 * lib/Makefile.am (libbison_a_SOURCES): No longer include
13845 argmatch.c and argmatch.h, since they are AC_LIBSOURCE'd.
13846 * lib/strcasecmp.c, lib/strncasecmp.c, lib/memcmp.c: New, from the
13847 Coreutils 4.5.1.
13848
13849 2002-09-24 Akim Demaille <akim@epita.fr>
13850
13851 * doc/bison.texinfo (Stack Overflow): xref to Recursion.
13852 (Frequently Asked Questions, Parser Stack Overflow): New.
13853
13854 2002-09-13 Akim Demaille <akim@epita.fr>
13855
13856 Playing with autoscan.
13857
13858 * src/reader.c (get_merge_function): Use xstrdup, not strdup.
13859 * src/files.c (skeleton_find): Remove, unused.
13860 * m4/memcmp.m4: New, from the Coreutils 4.5.1.
13861 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Run jm_FUNC_MEMCMP.
13862
13863 2002-09-13 Akim Demaille <akim@epita.fr>
13864
13865 * configure.ac (AM_INIT_AUTOMAKE): Require Automake 1.6.3.
13866 * Makefile.am (AUTOMAKE_OPTIONS): Don't.
13867
13868 2002-09-13 Akim Demaille <akim@epita.fr>
13869
13870 * configure.ac: Require 2.54.
13871 s/jm_FUNC_MALLOC/AC_FUNC_MALLOC/.
13872 s/jm_FUNC_REALLOC/AC_FUNC_REALLOC/.
13873 * m4/c-bs-a.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/realloc.m4:
13874 Remove, provided by Autoconf macros.
13875
13876 2002-09-12 Akim Demaille <akim@epita.fr>
13877
13878 * m4/prereq.m4: Update, from Coreutils 4.5.1.
13879
13880 2002-09-12 Akim Demaille <akim@epita.fr>
13881
13882 * m4/prereq.m4: Update, from Fileutils 4.1.5.
13883 * configure.ac (jm_PREREQ_TEMPNAME): Invoke it.
13884 Reported by Martin Mokrejs.
13885
13886 2002-09-10 Akim Demaille <akim@epita.fr>
13887
13888 * src/parse-gram.y: Associate a human readable string to each
13889 token type.
13890 * tests/regression.at (Invalid inputs): Adjust.
13891
13892 2002-09-10 Gary V. Vaughan <gary@gnu.org>
13893
13894 * tests/Makefile.am ($(srcdir)/package.m4): Bison now ships
13895 with an Autoconf-2.5x style configure.ac.
13896
13897 2002-09-06 Paul Eggert <eggert@twinsun.com>
13898
13899 * doc/bison.texinfo (Conditions): Make explicit that the GPL
13900 exception applies only to yacc.c. This is a modification of a
13901 patch originally suggested by Akim Demaille.
13902
13903 2002-09-06 Akim Demaille <akim@epita.fr>
13904
13905 * data/c.m4 (b4_copyright): Move the GPL exception comment from
13906 here to...
13907 * data/yacc.c: here.
13908
13909 * data/lalr1.cc (struct yyltype): Don't define it, since we use
13910 LocationType.
13911 (b4_ltype): Default to yy::Location from location.hh.
13912
13913 2002-09-04 Jim Meyering <jim@meyering.net>
13914
13915 * data/yacc.c: Guard the declaration of yytoknum also with
13916 `#ifdef YYPRINT', so it is declared only when used.
13917
13918 2002-09-04 Akim Demaille <akim@epita.fr>
13919
13920 * configure.in: Rename as...
13921 * configure.ac: this.
13922 Bump to 1.49c.
13923
13924 2002-09-04 Akim Demaille <akim@epita.fr>
13925
13926 * src/assoc.c, src/closure.c, src/gram.c, src/injections.c,
13927 * src/lalr.c, src/LR0.c, src/relation.c, src/tables.c: Don't
13928 translate maintainer only messages.
13929
13930 2002-08-12 Paul Eggert <eggert@twinsun.com>
13931
13932 Version 1.49b.
13933
13934 * Makefile.am (SUBDIRS): Remove intl.
13935 (DISTCLEANFILES): Remove.
13936 * NEWS: Mention that GNU M4 is now required. Clarify what is
13937 meant by "larger grammars". Mention the pt_BR translation.
13938 * configure.in (AC_CHECK_DECLS): Add getenv, getopt.
13939 (AM_GNU_GETTEXT_VERSION): New macro, replacing GETTEXT_VERSION var.
13940 Bump version from 0.11.2 to 0.11.5.
13941 (BISON_PREREQ_STAGE): Remove.
13942 (AM_GNU_GETTEXT): Use external gettext.
13943 (AC_OUTPUT): Remove intl/Makefile.
13944
13945 * config/depcomp, config/install-sh: Sync with Automake 1.6.3.
13946
13947 * data/glr.c: Include string.h, for strlen.
13948 (yyreportParseError): Use size_t for yysize.
13949 (yy_yypstack): No longer nested inside yypstates, as nested
13950 functions are not portable. Do not assume size_t is the
13951 same width as int.
13952 (yypstates): Do not assume that ptrdiff_t is the same width
13953 as int, and similarly for yyposn and YYINDEX.
13954
13955 * data/yacc.c: Fix comment about `$$ = $1': it can copy garbage.
13956
13957 * lib/Makefile.am (INCLUDES): Do not include from the intl
13958 directory, which has been removed.
13959 * src/Makefile.am (INCLUDES): Likewise.
13960
13961 * lib/Makefile.am (libbison_a_SOURCES): Add unlocked-io.h.
13962 (bitsets_sources, additional_bitsets_sources, timevars_sources):
13963 New vars.
13964
13965 * lib/Makefile.am (libbison_a_SOURCES): Avoid +=, a GNU make extension.
13966 * tests/Makefile.am (EXTRA_DIST): Likewise.
13967
13968 * lib/abitset.c (abitset_reverse_list, ebitset_reverse_list):
13969 Do not assume that bitset_windex is the same width as unsigned.
13970
13971 * lib/abitset.c (abitset_unused_clear): Do not assume that
13972 bitset_word is the same width as int.
13973 * lib/bbitset.h (BITSET_INDEX_MAX, BITSET_MSB): Likewise.
13974 * lib/bitset.h (bitset_set, bitset_reset): Likewise.
13975 * lib/bitset_stats.c (bitset_stats_set, bitset_stats_reset): Likewise.
13976 * lib/ebitset.c (ebitset_set, ebitset_reset): Likewise.
13977 * lib/lbitset.c (lbitset_set, lbitset_reset): Likewise.
13978
13979 * lib/abitset.c (abitset_op1): Use -1, not ~0, as memset arg (for
13980 portability to one's complement hosts!).
13981 * lib/ebitset.c (ebitset_op1): Likewise.
13982 * lib/lbitset.c (lbitset_op1): Likewise.
13983
13984 * lib/argmatch.c, lib/quotearg.c, quotearg.h: Sync with GNU tar.
13985 * lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
13986 lib/hash.c, lib/hash.h, lib/strnlen.c, lib/xmalloc.c:
13987 Sync with fileutils.
13988 * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
13989 lib/gettext.h: Sync with diffutils.
13990
13991 * lib/memrchr.c, lib/mkstemp.c, lib/strchr.c, lib/strnlen.c,
13992 lib/strspn.c, lib/tempname.c: Use GPL, not LGPL.
13993
13994 * lib/obstack.c, lib/obstack.h: Sync with fileutils, except use
13995 PROTOTYPES to check for prototypes, and "defined __STDC__" to
13996 check for void *.
13997
13998 * lib/bbitset.h (BITSET_WORD_BITS): Now of type unsigned, not
13999 size_t; the old version tried to do this but casted improperly.
14000 (bitset_bindex, bitset_windex): Now size_t, not unsigned long.
14001 (bitset_test): Now returns int, not unsigned long.
14002
14003 * lib/bitset_stats.c: Include "gettext.h".
14004 (_): New macro.
14005 (bitset_stats_set, bitset_stats_reset, bitset_stats_test): Don't
14006 name locals "index", as it generates unnecessary warnings on some
14007 hosts that have an "index" function.
14008
14009 * lib/bitset_stats.c (bitset_stats_print_1, bitset_stats_print,
14010 bitset_stats_read, bitset_stats_write): Wrap strings in _() if
14011 they need translation.
14012 * src/LR0.c (state_list_append, new_itemsets, get_state,
14013 append_states, generate_states): Likewise.
14014 * src/assoc.c (assoc_to_string): Likewise.
14015 * src/closure.c (print_closure, set_firsts, closure): Likewise.
14016 * src/gram.c (grammar_dump): Likewise.
14017 * src/injections.c (injections_compute): Likewise.
14018 * src/lalr.c (lookaheads_print): Likewise.
14019 * src/relation.c (relation_transpose): Likewise.
14020 * src/scan-gram.l: Likewise.
14021 * src/tables.c (table_grow, pack_vector): Likewise.
14022
14023 * m4/Makefile.am (EXTRA_DIST): Remove codeset.m4,
14024 glibc21.m4, isc-posix.m4 lcmessage.m4, stage.m4.
14025 * m4/malloc.m4, m4/realloc.m4: Sync with diffutils.
14026 * m4/mbstate_t.m4: Sync with fileutils.
14027 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): AC_MBSTATE_T -> AC_TYPE_MBSTATE_T.
14028
14029 * po/LINGUAS: Add pt_BR.
14030 * po/POTFILES.in: Add src/assoc.c, src/closure.c, src/gram.c,
14031 src/main.c, src/relation.c, src/state.c, lib/bitset_stats.c,
14032 lib/timevar.c.
14033 Use src/parse-gram.y instead of src/parse-gram.c, as the gettext
14034 manual recommends.
14035 Similarly, use src/scan-gram.l instead of src/scan-gram.c.
14036
14037 * src/complain.c (strerror_r): Remove decl; not needed.
14038 (strerror): Use same pattern as ../lib/error.c.
14039
14040 * src/files.c, src/files.h (compute_header_macro): Remove; unused.
14041
14042 * src/gram.c (grammar_dump): Do not assume ptrdiff_t fits in int.
14043
14044 * src/main.c (main): Cast result of bindtextdomain and textdomain
14045 to void, to avoid a GCC warning when --disable-nls is in effect.
14046
14047 * src/scan-gram.l: Use strings rather than escapes when possible,
14048 to minimize the number of warnings from xgettext.
14049 (handle_action_dollar, handle_action_at): Don't use isdigit,
14050 as it mishandles negative chars and it may not work as expected
14051 outside the C locale.
14052
14053 * src/symtab.c (symbol_get): Don't cast LHS of an assignment;
14054 this is a GCC extension and is not portable to other compilers.
14055
14056 * src/system.h (alloca): Use same pattern as ../lib/error.c.
14057 Do not include <ctype.h>; no longer needed.
14058 Do not include <malloc.h>; no longer needed (and generates
14059 warnings on OpenBSD 3.0).
14060
14061 * tests/cxx-type.at (yylex): Do not pass signed char to isupper;
14062 it's not portable.
14063
14064 * tests/regression.at: Do not use 'cc -c input.c -o input';
14065 Sun C rejects this. Instead, use 'cc -c input.c -o input.o'.
14066
14067 * tests/synclines.at (AC_SYNCLINES_COMPILE): Accept any nonzero
14068 exit status as failure, not just exit status 1. Sun C exits
14069 with status 2 sometimes.
14070
14071 * tests/torture.at (AT_INCREASE_DATA_SIZE): New macro.
14072 Use it for the two large tests.
14073
14074 2002-08-02 Akim Demaille <akim@epita.fr>
14075
14076 * src/conflicts.c (conflicts_output): Don't output rules never
14077 reduced here, since anyway that computation doesn't work.
14078 * src/gram.h, src/gram.h (rule_filter_t, rule_useful_p)
14079 (rule_useless_p, rule_never_reduced_p): New.
14080 (grammar_rules_partial_print): Use a filter instead of a range.
14081 Display the title only if needed.
14082 (grammar_rules_print): Adjust.
14083 (grammar_rules_never_reduced_report): New.
14084 * src/tables.c (action_row): Move the computation of rules never
14085 reduced to...
14086 (token_actions): here.
14087 * src/main.c (main): Make the parser before making the report, so
14088 that rules never reduced are computed.
14089 Call grammar_rules_never_reduced_report.
14090 * src/print.c (print_results): Report rules never reduced.
14091 * tests/conflicts.at, tests/reduce.at: Adjust.
14092
14093 2002-08-01 Akim Demaille <akim@epita.fr>
14094
14095 Instead of attaching lookaheads and duplicating the rules being
14096 reduced by a state, attach the lookaheads to the reductions.
14097
14098 * src/state.h (state_t): Remove the `lookaheads',
14099 `lookaheads_rule' member.
14100 (reductions_t): Add a `lookaheads' member.
14101 Use a regular array for the `rules'.
14102 * src/state.c (reductions_new): Initialize the lookaheads member
14103 to 0.
14104 (state_rule_lookaheads_print): Adjust.
14105 * src/state.h, src/state.c (state_reductions_find): New.
14106 * src/conflicts.c (resolve_sr_conflict, set_conflicts)
14107 (count_rr_conflicts): Adjust.
14108 * src/lalr.c (LArule): Remove.
14109 (add_lookback_edge): Adjust.
14110 (state_lookaheads_count): New.
14111 (states_lookaheads_initialize): Merge into...
14112 (initialize_LA): this.
14113 (lalr_free): Adjust.
14114 * src/main.c (main): Don't free nullable and derives too early: it
14115 is used by --verbose.
14116 * src/print.c, src/print_graph.c, src/tables.c: Adjust.
14117
14118 2002-08-01 Akim Demaille <akim@epita.fr>
14119
14120 * src/derives.h, src/derives.c (derives): A `rule_t***' instead of
14121 `rule_number_t**'.
14122 (set_derives, free_derives): Rename as...
14123 (derives_compute, derives_free): this.
14124 Adjust all dependencies.
14125 * src/nullable.c (set_nullable, free_nullable): Rename as...
14126 (nullable_compute, nullable_free): these.
14127 (rule_list_t): Store rule_t *, not rule_number_t.
14128 * src/state.c (state_rule_lookaheads_print): Directly compare rule
14129 pointers, instead of their numbers.
14130 * src/main.c (main): Call nullable_free, and derives_free earlier,
14131 as they were lo longer used.
14132
14133 2002-08-01 Akim Demaille <akim@epita.fr>
14134
14135 * lib/timevar.c (get_time): Include children time.
14136 * src/lalr.h (LA, LArule): Don't export them: used with the
14137 state_t.
14138 * src/lalr.c (LA, LArule): Static.
14139 * src/lalr.h, src/lalr.c (lalr_free): New.
14140 * src/main.c (main): Call it.
14141 * src/tables.c (pack_vector): Check whether loc is >= to the
14142 table_size, not >.
14143 (pack_tables): Don't free froms, tos, conflict_tos, and pos...
14144 (tables_generate): do it, since that's also it which allocates
14145 them.
14146 Don't free LA and LArule, main does.
14147
14148 2002-07-31 Akim Demaille <akim@epita.fr>
14149
14150 Separate parser tables computation and output.
14151
14152 * src/output.c (nvectors, base_t, base, base_ninf, conflict_table)
14153 (conflict_list, conflict_list_cnt, table, check, table_ninf)
14154 (yydefgoto, yydefact, high): Move to...
14155 * src/tables.h, src/tables.c: here.
14156 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
14157 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
14158 (symbol_number_to_vector_number, nvectors, BASE_MAX, BASE_MIN)
14159 (froms, tos, conflict_tos, tally, width, action_t, ACTION_MAX)
14160 (ACTION_MIN, actrow, order, nentries, pos, conflrow)
14161 (conflict_list_free, table_size, lowzero, table_grow, conflict_row)
14162 (action_row, save_row, token_actions, save_column, default_goto)
14163 (goto_actions, sort_actions, matching_state, pack_vector)
14164 (table_ninf_remap, pack_table, prepare_actions): Move to...
14165 * src/tables.c: here.
14166 * src/tables.h, src/tables.c(tables_generate, tables_free): New.
14167 * src/output.c (token_actions, output_base, output_conflicts)
14168 (output_check): Merge into...
14169 (prepare_actions): this.
14170 (actions_output): Rename as...
14171 (user_actions_output): this.
14172 * src/main.c (main): Call tables_generate and tables_free.
14173
14174 2002-07-31 Akim Demaille <akim@epita.fr>
14175
14176 Steal GCC's --time-report support.
14177
14178 * lib/timevar.c, lib/timevar.h, lib/timevar.def: New,
14179 stolen/adjusted from GCC.
14180 * m4/stage.m4: Remove time related checks.
14181 * m4/timevar.m4: New.
14182 * configure.in: Adjust.
14183 * src/system.h: Adjust to using timevar.h.
14184 * src/getargs.h, src/getargs.c: Support trace_time for
14185 --trace=time.
14186 * src/main.c (stage): Remove.
14187 (main): Replace `stage' invocations with timevar calls.
14188 * src/output.c: Insert pertinent timevar calls.
14189
14190 2002-07-31 Akim Demaille <akim@epita.fr>
14191
14192 Let --trace have arguments.
14193
14194 * src/getargs.h (enum trace_e): New.
14195 * src/getargs.c (trace_args, trace_types, trace_argmatch): New.
14196 (long_options, short_options): --trace/-T takes an optional
14197 argument.
14198 Change all the uses of trace_flag to reflect the new flags.
14199 * tests/sets.at (Firsts, Nullable, Broken Closure): Use --trace=sets.
14200
14201 Strengthen `stage' portability.
14202
14203 * m4/stage.m4 (BISON_PREREQ_STAGE): New.
14204 * configure.in: Use it.
14205 Don't check for malloc.h and sys/times.h.
14206 * src/system.h: Include them when appropriate.
14207 * src/main.c (stage): Compile only when mallinfo, struct mallinfo,
14208 times and struct tms are available.
14209
14210 2002-07-30 Akim Demaille <akim@epita.fr>
14211
14212 In verbose parse error message, don't report `error' as an
14213 expected token.
14214 * tests/actions.at (Printers and Destructors): Adjust.
14215 * tests/calc.at (Calculator $1): Adjust.
14216 * data/yacc.c, data/glr.c, data/lalr1.c: When making the verbose
14217 error message, do not report the parser accepts the error token in
14218 that state.
14219
14220 2002-07-30 Akim Demaille <akim@epita.fr>
14221
14222 Normalize conflict related messages.
14223
14224 * src/complain.h, src/complain.c (warn, complain): New.
14225 * src/conflicts.c (conflicts_print): Use them.
14226 (conflict_report_yacc): New, extracted from...
14227 (conflicts_print): here.
14228 * tests/conflicts.at, tests/existing.at: Adjust.
14229
14230 2002-07-30 Akim Demaille <akim@epita.fr>
14231
14232 Report rules which are never reduced by the parser: those hidden
14233 by conflicts.
14234
14235 * src/LR0.c (save_reductions): Don't make the final state too
14236 different: save its reduction (accept) instead of having a state
14237 without any action (no shift or goto, no reduce).
14238 Note: the final state is now a ``regular'' state, i.e., the
14239 parsers now contain `reduce 0' as default reduction.
14240 Nevertheless, since they decide to `accept' when yystate =
14241 final_state, they still will not reduce rule 0.
14242 * src/print.c (print_actions, print_reduction): Adjust.
14243 * src/output.c (action_row): Track reduced rules.
14244 (token_actions): Report rules never reduced.
14245 * tests/conflicts.at, tests/regression.at: Adjust.
14246
14247 2002-07-30 Akim Demaille <akim@epita.fr>
14248
14249 `stage' was accidently included in a previous patch.
14250 Initiate its autoconfiscation.
14251
14252 * configure.in: Look for malloc.h and sys/times.h.
14253 * src/main.c (stage): Adjust.
14254 Report only when trace_flag.
14255
14256 2002-07-29 Akim Demaille <akim@epita.fr>
14257
14258 * src/state.h, src/state.c (transitions_t): Holds state_t*'s, not
14259 state_number_t.
14260 (errs_t): symbol_t*, not symbol_number_t.
14261 (reductions_t): rule_t*, not rule_number_t.
14262 (FOR_EACH_SHIFT): New.
14263 * src/LR0.c, src/conflicts.c, src/lalr.c, src/output.c
14264 * src/print.c, src/print_graph.c: Adjust.
14265
14266 2002-07-29 Akim Demaille <akim@epita.fr>
14267
14268 Use $accept and $end, as BYacc and BTYacc do, instead of $axiom and $.
14269
14270 * src/symtab.h, src/symtab.c (eoftoken, axiom): Rename as...
14271 (endtoken, accept): these.
14272 * src/reader.c (reader): Set endtoken's default tag to "$end".
14273 Set undeftoken's tag to "$undefined" instead of "$undefined.".
14274 * doc/bison.texinfo (Table of Symbols): Mention $accept and $end.
14275 Adjust.
14276
14277 2002-07-29 Akim Demaille <akim@epita.fr>
14278
14279 * src/reduce.c (reduce_grammar): When the language is empty,
14280 complain about the start symbol, not the axiom.
14281 Use its location.
14282 * tests/reduce.at (Empty Language): New.
14283
14284 2002-07-26 Akim Demaille <akim@epita.fr>
14285
14286 * src/reader.h, src/reader.c (gram_error): ... can't get
14287 yycontrol without making too strong assumptions on the parser
14288 itself.
14289 * src/output.c (prepare_tokens): Use the real 0th value of
14290 token_translations instead of `0'.
14291 * src/parse-gram.y (yyerror): Don't rely on yycontrol being
14292 visible here.
14293 * data/yacc.c (yyreport_parse_error): Rename yylocation as yylloc
14294 for the time being: %locations ought to provide it to yyerror.
14295
14296 2002-07-25 Akim Demaille <akim@epita.fr>
14297
14298 * src/output.c (prepare_tokens): Go up to ntokens, not ntokens + 1.
14299 * doc/bison.texinfo (Decl Summary): s/$illegal/$undefined./.
14300 * tests/regression.at (Web2c Actions): Adjust.
14301
14302 2002-07-25 Akim Demaille <akim@epita.fr>
14303
14304 Stop storing rules from 1 to nrules + 1.
14305
14306 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c, src/lalr.c
14307 * src/nullable.c, src/output.c, src/print.c, src/reader.c
14308 * src/reduce.c: Allocate and free from &rules[0], not &rules[1].
14309 Iterate from 0 to nrules.
14310 Use rule_number_as_item_number and item_number_as_rule_number.
14311 Adjust to `derive' now containing possibly 0.
14312 * src/gram.h (rule_number_as_item_number, item_number_as_rule_number):
14313 Handle the `- 1' part in rule numbers from/to item numbers.
14314 * src/conflicts.c (log_resolution): Fix the message which reversed
14315 shift and reduce.
14316 * src/output.c (action_row): Initialize default_rule to -1.
14317 (token_actions): Adjust.
14318 * tests/sets.at (Nullable, Firsts): Fix the previously bogus
14319 expected output.
14320 * tests/conflicts.at (Resolved SR Conflicts): Likewise.
14321
14322 2002-07-25 Akim Demaille <akim@epita.fr>
14323
14324 * data/c.m4 (b4_c_function, b4_c_ansi_args, b4_c_ansi_arg)
14325 (b4_c_knr_arg_names, b4_c_knr_arg_name, b4_c_knr_arg_decls)
14326 (b4_c_knr_arg_decl): New.
14327 * data/yacc.c: Use it to define yysymprint, yydestruct, and
14328 yyreport_parse_error.
14329
14330 2002-07-25 Akim Demaille <akim@epita.fr>
14331
14332 * data/yacc.c (yyreport_parse_error): New, extracted from...
14333 (yyparse): here.
14334 (yydestruct, yysymprint): Move above yyparse.
14335 Be K&R compliant.
14336
14337 2002-07-25 Akim Demaille <akim@epita.fr>
14338
14339 * data/c.m4 (b4_ints_in, b4_int_type, b4_int_type_for): New,
14340 replace...
14341 (b4_sint_type, b4_uint_type): these.
14342 * data/yacc.c, data/glr.c, data/lalr1.cc: Use b4_int_type_for.
14343 * tests/regression.at (Web2c Actions): Adjust.
14344
14345 2002-07-25 Akim Demaille <akim@epita.fr>
14346
14347 * src/gram.h (TIEM_NUMBER_MAX): New.
14348 (item_number_of_rule_number, rule_number_of_item_number): Rename
14349 as...
14350 (rule_number_as_item_number, item_number_as_rule_number): these.
14351 Adjust dependencies.
14352 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
14353 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
14354 (symbol_number_to_vector_number): New.
14355 (order): Of vector_number_t* type.
14356 (base_t, BASE_MAX, BASE_MIN): New.
14357 (froms, tos, width, pos, check): Of base_t type.
14358 (action_number_t, ACTION_MIN, ACTION_MAX): New.
14359 (actrow): Of action_number_t type.
14360 (conflrow): Of unsigned int type.
14361 (table_ninf, base_ninf): New.
14362 (GENERATE_MUSCLE_INSERT_TABLE): Also output the `*_min' value.
14363 (muscle_insert_int_table, muscle_insert_base_table)
14364 (muscle_insert_rule_number_table): New.
14365 (prepare_tokens): Output `toknum' as int_table.
14366 (action_row): Returns a rule_number_t.
14367 Use ACTION_MIN, not SHRT_MIN.
14368 (token_actions): yydefact is rule_number_t*.
14369 (table_ninf_remap): New.
14370 (pack_table): Use it for `base' and `table'.
14371 * data/yacc.c, data/glr.c, data/lalr1.cc (YYFLAG): Remove,
14372 replaced with...
14373 (YYPACT_NINF, YYTABLE_NINF): these.
14374 (yypact, yytable): Compute their types instead of hard-coded
14375 `short'.
14376 * tests/regression.at (Web2c Actions): Adjust.
14377
14378 2002-07-19 Akim Demaille <akim@epita.fr>
14379
14380 * src/scan-gram.l (id): Can start with an underscore.
14381
14382 2002-07-16 Akim Demaille <akim@epita.fr>
14383
14384 * src/assoc.c, src/asssoc.h (assoc_t, assoc_to_string): New.
14385 Adjust all former `associativity' dependencies.
14386 * src/symtab.c (symbol_new): Default associativity is `undef', not
14387 `right'.
14388 (symbol_check_alias_consistence): Adjust.
14389
14390 2002-07-09 Akim Demaille <akim@epita.fr>
14391
14392 * doc/bison.texinfo: Properly set the ``header'' part.
14393 Use @dircategory ``GNU programming tools'' as per Texinfo's
14394 documentation.
14395 Use @copying.
14396
14397 2002-07-09 Akim Demaille <akim@epita.fr>
14398
14399 * lib/quotearg.h: Protect against multiple inclusions.
14400 * src/location.h (location_t): Add a `file' member.
14401 (LOCATION_RESET, LOCATION_PRINT): Adjust.
14402 * src/complain.c (warn_at, complain_at, fatal_at): Drop
14403 `error_one_per_line' support.
14404
14405 2002-07-09 Akim Demaille <akim@epita.fr>
14406
14407 * src/complain.h, src/complain.c (warn, complain): Remove, unused.
14408 * src/reader.c (lineno): Remove.
14409 Adjust all dependencies.
14410 (get_merge_function): Take a location and use complain_at.
14411 * src/symtab.h, src/symtab.c (symbol_make_alias): Likewise.
14412 * tests/regression.at (Invalid inputs, Mixing %token styles):
14413 Adjust.
14414
14415 2002-07-09 Akim Demaille <akim@epita.fr>
14416
14417 * src/parse-gram.y (rules_or_grammar_declaration): Add an error
14418 recovery rule, and forbid extensions when --yacc.
14419 (gram_error): Use complain_at.
14420 * src/reader.c (reader): Exit if there were parse errors.
14421
14422 2002-07-09 Akim Demaille <akim@epita.fr>
14423
14424 * tests/synclines.at (AT_SYNCLINES_COMPILE): New.
14425 (AT_TEST_SYNCLINE): Adjust to unusual GCC outputs.
14426 Reported by R Blake <blakers@mac.com>.
14427
14428 2002-07-09 Akim Demaille <akim@epita.fr>
14429
14430 * data/yacc.c: Output the copyright notive in the header.
14431
14432 2002-07-03 Akim Demaille <akim@epita.fr>
14433
14434 * src/output.c (froms, tos): Are state_number_t.
14435 (save_column): sp, sp1, and sp2 are state_number_t.
14436 (prepare): Rename `final' as `final_state_number', `nnts' as
14437 `nterms_number', `nrules' as `rules_number', `nstates' as
14438 `states_number', and `ntokens' as `tokens_number'. Remove `nsym',
14439 unused.
14440 * data/yacc.c, data/glr.c, data/lalr1.cc: Adjust.
14441 * data/lalr1.cc (nsym_): Remove, unused.
14442
14443 2002-07-03 Akim Demaille <akim@epita.fr>
14444
14445 * src/lalr.h, src/lalr.c (goto_number_t): New.
14446 * src/lalr.c (goto_list_t): New.
14447 Propagate them.
14448 * src/nullable.c (rule_list_t): New.
14449 Propagate.
14450 * src/types.h: Remove.
14451
14452 2002-07-03 Akim Demaille <akim@epita.fr>
14453
14454 * src/closure.c (print_fderives): Use rule_rhs_print.
14455 * src/derives.c (print_derives): Use rule_rhs_print.
14456 (rule_list_t): New, replaces `shorts'.
14457 (set_derives): Add comments.
14458 * tests/sets.at (Nullable, Firsts): Adjust.
14459
14460 2002-07-03 Akim Demaille <akim@epita.fr>
14461
14462 * src/output.c (prepare_actions): Free `tally' and `width'.
14463 (prepare_actions): Allocate and free `order'.
14464 * src/symtab.c (symbols_free): Free `symbols'.
14465 * src/scan-gram.l (scanner_free): Clear Flex's scanners memory.
14466 * src/output.c (m4_invoke): Move to...
14467 * src/scan-skel.l: here.
14468 (<<EOF>>): Close yyout, and free its name.
14469
14470 2002-07-03 Akim Demaille <akim@epita.fr>
14471
14472 Fix some memory leaks, and fix a bug: state 0 was examined twice.
14473
14474 * src/LR0.c (new_state): Merge into...
14475 (state_list_append): this.
14476 (new_states): Merge into...
14477 (generate_states): here.
14478 (set_states): Don't ensure a proper `errs' state member here, do it...
14479 * src/conflicts.c (conflicts_solve): here.
14480 * src/state.h, src/state.c: Comment changes.
14481 (state_t): Rename member `shifts' as `transitions'.
14482 Adjust all dependencies.
14483 (errs_new): For consistency, also take the values as argument.
14484 (errs_dup): Remove.
14485 (state_errs_set): New.
14486 (state_reductions_set, state_transitions_set): Assert that no
14487 previous value was assigned.
14488 (state_free): New.
14489 (states_free): Use it.
14490 * src/conflicts.c (resolve_sr_conflict): Don't use an `errs_t' as
14491 temporary storage: use `errs' and `nerrs' as elsewhere.
14492 (set_conflicts): Allocate and free this `errs'.
14493
14494 2002-07-02 Akim Demaille <akim@epita.fr>
14495
14496 * lib/libiberty.h: New.
14497 * lib: Update the bitset implementation from upstream.
14498 * src/closure.c, src/lalr.c, src/output.c, src/print_graph.c,
14499 * src/state.c: Use BITSET_FOR_EACH, not BITSET_EXECUTE.
14500 * src/main.c: Adjust bitset stats calls.
14501
14502 2002-07-01 Paul Eggert <eggert@twinsun.com>
14503
14504 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>): Convert to unsigned
14505 char, so that negative chars don't collide with $.
14506
14507 2002-06-30 Akim Demaille <akim@epita.fr>
14508
14509 Have the GLR tests be `warning' checked, and fix the warnings.
14510
14511 * data/glr.c (YYFPRINTF): Always define it, not only when YYDEBUG
14512 (yyuserAction, yyreportAmbiguity): `Use' all the arguments.
14513 (yyremoveDeletes): `yyi' and `yyj' are size_t.
14514 Use YYFPRINTF when under if (YYDEBUG) to avoid empty `if' bodies.
14515 (yyaddDeferredAction): static.
14516 (yyglrReduce): yyi, yyk, amd yyposn are size_t.
14517 (yyreportParseError): yyprefix is const.
14518 yytokenp is used only when verbose.
14519 (yy__GNUC__): Replace with __GNUC__.
14520 (yypdumpstack): yyi is size_t.
14521 (yypreference): Un-yy local variables and arguments, to avoid
14522 clashes with `yyr1'. Anyway, we are not in the user name space.
14523 (yytname_size): be an int, as is compared with ints.
14524 * tests/testsuite.at (AT_COMPILE, AT_PARSER_CHECK): New.
14525 Use them.
14526 * tests/cxx-gram.at: Use quotation to protect $1.
14527 Use AT_COMPILE to enable warnings hunts.
14528 Prototype yylex and yyerror.
14529 `Use' argc.
14530 Include `string.h', not `strings.h'.
14531 Produce and prototype stmtMerge only when used.
14532 yylex takes a location.
14533
14534 2002-06-30 Akim Demaille <akim@epita.fr>
14535
14536 We spend a lot of time in quotearg, in particular when --verbose.
14537
14538 * src/symtab.c (symbol_get): Store a quoted version of the key.
14539 (symbol_tag_get, symbol_tag_get_n, symbol_tag_print): Remove.
14540 Adjust all callers.
14541
14542 2002-06-30 Akim Demaille <akim@epita.fr>
14543
14544 * src/state.h (reductions_t): Rename member `nreds' as num.
14545 (errs_t): Rename members `nerrs' and `errs' as `num' and `symbols'.
14546 * src/state.c (ERRS_ALLOC, REDUCTIONS_ALLOC): Use the correct types.
14547
14548 2002-06-30 Akim Demaille <akim@epita.fr>
14549
14550 * src/state.h, src/state.c (shift_t, SHIFT_SYMBOL, SHIFT_IS_SHIFT)
14551 (SHIFT_IS_GOTO, SHIFT_IS_ERROR, SHIFT_DISABLE, SHIFT_IS_DISABLED)
14552 (shifts_to): Rename as...
14553 (transition_t, TRANSITION_SYMBOL, TRANSITION_IS_TRANSITION)
14554 (TRANSITION_IS_GOTO, TRANSITION_IS_ERROR, TRANSITION_DISABLE)
14555 (TRANSITION_IS_DISABLED, transitions_to): these.
14556
14557 2002-06-30 Akim Demaille <akim@epita.fr>
14558
14559 * src/print.c (print_shifts, print_gotos): Merge into...
14560 (print_transitions): this.
14561 (print_transitions, print_errs, print_reductions): Align the
14562 lookaheads columns.
14563 (print_core, print_transitions, print_errs, print_state,
14564 print_grammar): Output empty lines separator before, not after.
14565 (state_default_rule_compute): Rename as...
14566 (state_default_rule): this.
14567 * tests/conflicts.at (Defaulted Conflicted Reduction),
14568 (Unresolved SR Conflicts, Resolved SR Conflicts): Adjust.
14569 * tests/regression.at (Rule Line Numbers, Web2c Report): Adjust.
14570
14571 2002-06-30 Akim Demaille <akim@epita.fr>
14572
14573 Display items as we display rules.
14574
14575 * src/gram.h, src/gram.c (rule_lhs_print): New.
14576 * src/gram.c (grammar_rules_partial_print): Use it.
14577 * src/print.c (print_core): Likewise.
14578 * tests/conflicts.at (Defaulted Conflicted Reduction),
14579 (Unresolved SR Conflicts): Adjust.
14580 (Unresolved SR Conflicts): Adjust and rename as...
14581 (Resolved SR Conflicts): this, as was meant.
14582 * tests/regression.at (Web2c Report): Adjust.
14583
14584 2002-06-30 Akim Demaille <akim@epita.fr>
14585
14586 * src/print.c (state_default_rule_compute): New, extracted from...
14587 (print_reductions): here.
14588 Pessimize, but clarify the code.
14589 * tests/conflicts.at (Defaulted Conflicted Reduction): New.
14590
14591 2002-06-30 Akim Demaille <akim@epita.fr>
14592
14593 * src/output.c (action_row): Let default_rule be always a rule
14594 number.
14595
14596 2002-06-30 Akim Demaille <akim@epita.fr>
14597
14598 * src/closure.c (print_firsts, print_fderives, closure):
14599 Use BITSET_EXECUTE.
14600 * src/lalr.c (lookaheads_print): Likewise.
14601 * src/state.c (state_rule_lookaheads_print): Likewise.
14602 * src/print_graph.c (print_core): Likewise.
14603 * src/print.c (print_reductions): Likewise.
14604 * src/output.c (action_row): Likewise.
14605 Use SHIFT_IS_DISABLED, SHIFT_IS_SHIFT and SHIFT_SYMBOL.
14606
14607 2002-06-30 Akim Demaille <akim@epita.fr>
14608
14609 * src/print_graph.c: Use report_flag.
14610
14611 2002-06-30 Akim Demaille <akim@epita.fr>
14612
14613 * src/lalr.c (traverse, digraph, matrix_print, transpose): Move
14614 to...
14615 * src/relation.h, src/relation.c (traverse, relation_digraph)
14616 (relation_print, relation_transpose): New.
14617
14618 2002-06-30 Akim Demaille <akim@epita.fr>
14619
14620 * src/state.h, src/state.c (shifts_to): New.
14621 * src/lalr.c (build_relations): Use it.
14622
14623 2002-06-30 Akim Demaille <akim@epita.fr>
14624
14625 * src/gram.h (rule_number_t, RULE_NUMBER_MAX, int_of_rule_number)
14626 (item_number_of_rule_number, rule_number_of_item_number): New.
14627 * src/LR0.c, src/closure.c, src/derives.c, src/derives.h,
14628 * src/gram.c, src/lalr.c, src/nullable.c, src/output.c, src/print.c,
14629 * src/print_graph.c, src/reader.c, src/reduce.c, src/reduce.h:
14630 Propagate their use.
14631 Much remains to be done, in particular wrt `shorts' from types.h.
14632
14633 2002-06-30 Akim Demaille <akim@epita.fr>
14634
14635 * src/symtab.c (symbol_new): Initialize the `printer' member.
14636
14637 2002-06-30 Akim Demaille <akim@epita.fr>
14638
14639 * src/LR0.c (save_reductions): Remove, replaced by...
14640 * src/state.h, src/state.c (state_reductions_set): New.
14641 (reductions, errs): Rename as...
14642 (reductions_t, errs_t): these.
14643 Adjust all dependencies.
14644
14645 2002-06-30 Akim Demaille <akim@epita.fr>
14646
14647 * src/LR0.c (state_list_t, state_list_append): New.
14648 (first_state, last_state): Now symbol_list_t.
14649 (this_state): Remove.
14650 (new_itemsets, append_states, save_reductions): Take a state_t as
14651 argument.
14652 (set_states, generate_states): Adjust.
14653 (save_shifts): Remove, replaced by...
14654 * src/state.h, src/state.c (state_shifts_set): New.
14655 (shifts): Rename as...
14656 (shifts_t): this.
14657 Adjust all dependencies.
14658 * src/state.h (state_t): Remove the `next' member.
14659
14660 2002-06-30 Akim Demaille <akim@epita.fr>
14661
14662 * src/vcg.c (quote): Use slot 2, since we often pass symbol tag
14663 escaped in slot 0.
14664
14665 2002-06-30 Akim Demaille <akim@epita.fr>
14666
14667 Use hash.h for the state hash table.
14668
14669 * src/LR0.c (STATE_HASH_SIZE, state_hash): Remove.
14670 (allocate_storage): Use state_hash_new.
14671 (free_storage): Use state_hash_free.
14672 (new_state, get_state): Adjust.
14673 * src/lalr.h, src/lalr.c (states): Move to...
14674 * src/states.h (state_t): Remove the `link' member, no longer
14675 used.
14676 * src/states.h, src/states.c: here.
14677 (state_hash_new, state_hash_free, state_hash_lookup)
14678 (state_hash_insert, states_free): New.
14679 * src/states.c (state_table, state_compare, state_hash): New.
14680 * src/output.c (output_actions): Do not free states now, since we
14681 still need to know the final_state number in `prepare', called
14682 afterwards. Do it...
14683 * src/main.c (main): here: call states_free after `output'.
14684
14685 2002-06-30 Akim Demaille <akim@epita.fr>
14686
14687 * src/state.h, src/state.c (state_new): New, extracted from...
14688 * src/LR0.c (new_state): here.
14689 * src/state.h (STATE_ALLOC): Move to...
14690 * src/state.c: here.
14691 * src/LR0.h, src/LR0.c (nstates, final_state): Move to...
14692 * src/state.h, src/state.c: here.
14693
14694 2002-06-30 Akim Demaille <akim@epita.fr>
14695
14696 * src/reader.c (gensym): Rename as...
14697 * src/symtab.h, src/symtab.c (dummy_symbol_get): this.
14698 (getsym): Rename as...
14699 (symbol_get): this.
14700
14701 2002-06-30 Akim Demaille <akim@epita.fr>
14702
14703 * src/state.h (state_number_t, STATE_NUMBER_MAX): New.
14704 * src/LR0.c, src/LR0.h, src/conflicts.c, src/lalr.c, src/lalr.h,
14705 * src/output.c, src/print.c, src/print_graph.c: Propagate.
14706 * src/LR0.h, src/LR0.h (final_state): Is a state_t*.
14707
14708 2002-06-30 Akim Demaille <akim@epita.fr>
14709
14710 Make the test suite pass with warnings checked.
14711
14712 * tests/actions.at (Printers and Destructors): Improve.
14713 Avoid unsigned vs. signed issues.
14714 * tests/calc.at: Don't exercise the scanner here, do it...
14715 * tests/input.at (Torturing the Scanner): here.
14716
14717 2002-06-28 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14718
14719 * data/glr.c: Correct typo in Emacs-mode directive. Slightly
14720 reorganize first lines parallel to yacc.c.
14721
14722 2002-06-28 Akim Demaille <akim@epita.fr>
14723
14724 * data/c.m4 (b4_copyright, b4_sint_type, b4_uint_type, b4_token_define)
14725 (b4_token_enum, b4_token_defines): New, factored from...
14726 * data/lalr1.cc, data/yacc.c, glr.c: here.
14727
14728 2002-06-28 Akim Demaille <akim@epita.fr>
14729
14730 * data/yacc.c (yydestruct, yysymprint): Pacify GCC warnings for
14731 unused variables.
14732 * src/output.c (merger_output): static.
14733
14734 2002-06-28 Akim Demaille <akim@epita.fr>
14735
14736 * src/reader.h: s/grammer_current_rule_merge_set/grammar_.../.
14737 * src/conflicts.c (conflicts_total_count): `i' is unsigned, to
14738 pacify GCC.
14739 * src/output.c (save_row): Initialize all the variables to pacify GCC.
14740
14741 2002-06-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14742
14743 Accumulated changelog for new GLR parsing features.
14744
14745 * src/conflicts.c (count_total_conflicts): Change name to
14746 conflicts_total_count.
14747 * src/conflicts.h: Ditto.
14748 * src/output.c (token_actions): Use the new name.
14749 (output_conflicts): Change conflp => conflict_list_heads, and
14750 confl => conflict_list for better readability.
14751 * data/glr.c: Use the new names.
14752 * NEWS: Add self to GLR announcement.
14753
14754 * src/reader.c (free_merger_functions): Cleanup: XFREE->free.
14755
14756 * doc/bison.texinfo (GLR Parsers): Make corrections suggested by
14757 Akim Demaille.
14758
14759 * data/bison.glr: Change name to glr.c
14760 * data/glr.c: Renamed from bison.glr.
14761 * data/Makefile.am: Add glr.c
14762
14763 * src/getargs.c:
14764
14765 * src/symlist.h: Add dprec and merger fields to symbol_list_s.
14766 * src/symlist.c (symbol_list_new): Initialize dprec and merger fields.
14767
14768 Originally 2002-06-16 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14769
14770 * data/bison.glr: Be sure to restore the
14771 current #line when returning to the skeleton contents after having
14772 exposed the input file's #line.
14773
14774 Originally 2002-06-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14775
14776 * data/bison.glr: Bring up to date with changes to bison.simple.
14777
14778 Originally 2002-06-03 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14779
14780 * data/bison.glr: Correct definitions that use b4_prefix.
14781 Various reformatting.
14782 (GLRStack): Make yychar (in YYPURE case) and yytokenp as part of stack.
14783 (yyreportParseError, yyrecoverParseError, yyprocessOneStack): remove
14784 yytokenp argument; now part of stack.
14785 (yychar): Define to behave as documented.
14786 (yyclearin): Ditto.
14787
14788 Originally 2002-05-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14789
14790 * src/reader.h: Add declaration for free_merger_functions.
14791
14792 * src/reader.c (merge_functions): New variable.
14793 (get_merge_function): New function.
14794 (free_merger_functions): New function.
14795 (readgram): Check for %prec that is not followed by a symbol.
14796 Handle %dprec and %merge declarations.
14797 (packgram): Initialize dprec and merger fields in rules array.
14798
14799 * src/output.c (conflict_tos, conflrow, conflict_table, conflict_list,
14800 conflict_list_cnt, conflict_list_free): New variables.
14801 (table_grow): Also grow conflict_table.
14802 (prepare_rules): Output dprec and merger tables.
14803 (conflict_row): New function.
14804 (action_row): Output conflict lists for GLR parser. Don't use
14805 default reduction in conflicted states for GLR parser so that there
14806 are spaces for the conflict lists.
14807 (save_row): Also save conflict information.
14808 (token_actions): Allocate conflict list.
14809 (merger_output): New function.
14810 (pack_vector): Pack conflict table, too.
14811 (output_conflicts): New function to output yyconflp and yyconfl.
14812 (output_check): Allocate conflict_tos.
14813 (output_actions): Output conflict tables, also.
14814 (output_skeleton): Output b4_mergers definition.
14815 (prepare): Output b4_max_rhs_length definition.
14816 Use 'bison.glr' as default skeleton for GLR parsers.
14817
14818 * src/gram.c (glr_parser): New flag.
14819 (grammar_free): Call free_merger_functions.
14820
14821 * src/conflicts.c (count_rr_conflicts): Augment to optionally count
14822 all pairs of conflicting reductions, rather than just all tokens
14823 causing conflicts. Needed to size conflict tables.
14824 (conflicts_output): Modify call to count_rr_conflicts for new
14825 interface.
14826 (conflicts_print): Ditto.
14827 (count_total_conflicts): New function.
14828
14829 * src/reader.h (merger_list): New type.
14830 (merge_functions): New variable.
14831
14832 * src/lex.h (tok_dprec, tok_merge): New token types.
14833
14834 * src/gram.h (rule_s): Add dprec and merger fields.
14835 (glr_parser): New flag.
14836
14837 * src/conflicts.h (count_total_conflicts): New function.
14838
14839 * src/options.c (option_table): Add %dprec, %merge, and %glr-parser.
14840
14841 * doc/bison.texinfo (Generalized LR Parsing): New section.
14842 (GLR Parsers): New section.
14843 (Language and Grammar): Mention GLR parsing.
14844 (Table of Symbols): Add %dprec, %glr-parser, %merge, GLR
14845 Correct typo ("tge" -> "the").
14846
14847 * data/bison.glr: New skeleton for GLR parsing.
14848
14849 * tests/cxx-gram.at: New tests for GLR parsing.
14850
14851 * tests/testsuite.at: Include cxx-gram.at.
14852
14853 * tests/Makefile.am: Add cxx-gram.at.
14854
14855 * src/parse-gram.y:
14856
14857 * src/scan-gram.l: Add %dprec, %glr-parser, %merge.
14858
14859 * src/parse-gram.y: Grammar for %dprec, %merge, %glr-parser.
14860
14861 2002-06-27 Akim Demaille <akim@epita.fr>
14862
14863 * src/options.h, src/options.c: Remove.
14864 * src/getargs.c (short_options, long_options): New.
14865
14866 2002-06-27 Akim Demaille <akim@epita.fr>
14867
14868 * data/bison.simple, data/bison.c++: Rename as...
14869 * data/yacc.c, data/lalr1.cc: these.
14870 * doc/bison.texinfo (Environment Variables): Remove.
14871
14872 2002-06-25 Raja R Harinath <harinath@cs.umn.edu>
14873
14874 * src/getargs.c (report_argmatch): Initialize strtok().
14875
14876 2002-06-20 Akim Demaille <akim@epita.fr>
14877
14878 * data/bison.simple (b4_symbol_actions): New, replaces...
14879 (b4_symbol_destructor, b4_symbol_printer): these.
14880 (yysymprint): Be sure to call YYPRINT only for tokens, and using
14881 user token numbers.
14882
14883 2002-06-20 Akim Demaille <akim@epita.fr>
14884
14885 * data/bison.simple (yydestructor): Rename as...
14886 (yydestruct): this.
14887
14888 2002-06-20 Akim Demaille <akim@epita.fr>
14889
14890 * src/symtab.h, src/symtab.c (symbol_type_set)
14891 (symbol_destructor_set, symbol_precedence_set): The location is
14892 the last argument.
14893 Adjust all callers.
14894
14895 2002-06-20 Akim Demaille <akim@epita.fr>
14896
14897 * src/parse-gram.y (YYPRINT, yyprint): Don't mess with the parser
14898 internals.
14899 * src/reader.h, src/reader.c (grammar_current_rule_prec_set):
14900 Takes a location.
14901 * src/symtab.h, src/symtab.c (symbol_class_set)
14902 (symbol_user_token_number_set): Likewise.
14903 Adjust all callers.
14904 Promote complain_at.
14905 * tests/input.at (Type Clashes): Adjust.
14906
14907 2002-06-20 Akim Demaille <akim@epita.fr>
14908
14909 * data/bison.simple (YYLEX): Fix the declaration when
14910 %pure-parser.
14911
14912 2002-06-20 Akim Demaille <akim@epita.fr>
14913
14914 * data/bison.simple (yysymprint): Don't print the token number,
14915 just its name.
14916 * tests/actions.at (Destructors): Rename as...
14917 (Printers and Destructors): this.
14918 Also exercise %printer.
14919
14920 2002-06-20 Akim Demaille <akim@epita.fr>
14921
14922 * data/bison.simple (YYDSYMPRINT): New.
14923 Use it to remove many of the #if YYDEBUG/if (yydebug).
14924
14925 2002-06-20 Akim Demaille <akim@epita.fr>
14926
14927 * src/symtab.h, src/symtab.c (symbol_t): printer and
14928 printer_location are new members.
14929 (symbol_printer_set): New.
14930 * src/parse-gram.y (PERCENT_PRINTER): New token.
14931 Handle its associated rule.
14932 * src/scan-gram.l: Adjust.
14933 (handle_destructor_at, handle_destructor_dollar): Rename as...
14934 (handle_symbol_code_at, handle_symbol_code_dollar): these.
14935 * src/output.c (symbol_printers_output): New.
14936 (output_skeleton): Call it.
14937 * data/bison.simple (yysymprint): New. Cannot be named yyprint
14938 since there are already many grammar files with a user `yyprint'.
14939 Replace the calls to YYPRINT to calls to yysymprint.
14940 * tests/calc.at: Adjust.
14941 * tests/torture.at (AT_DATA_STACK_TORTURE): Remove YYPRINT: it was
14942 taking advantage of parser very internal details (stack size!).
14943
14944 2002-06-20 Akim Demaille <akim@epita.fr>
14945
14946 * src/scan-gram.l: Complete the scanner with the missing patterns
14947 to pacify Flex.
14948 Use `quote' and `symbol_tag_get' where appropriate.
14949
14950 2002-06-19 Akim Demaille <akim@epita.fr>
14951
14952 * tests/actions.at (Destructors): Augment to test locations.
14953 * data/bison.simple (yydestructor): Pass it the current location
14954 if locations are enabled.
14955 Prototype only when __STDC__ or C++.
14956 Change the argument names to move into the yy name space: there is
14957 user code here.
14958
14959 2002-06-19 Akim Demaille <akim@epita.fr>
14960
14961 * data/bison.simple (b4_pure_if): New.
14962 Use it instead of #ifdef YYPURE.
14963
14964 2002-06-19 Akim Demaille <akim@epita.fr>
14965
14966 * data/bison.simple (b4_location_if): New.
14967 Use it instead of #ifdef YYLSP_NEEDED.
14968
14969 2002-06-19 Akim Demaille <akim@epita.fr>
14970
14971 Prepare @$ in %destructor, but currently don't bind it in the
14972 skeleton, as %location use is not cleaned up yet.
14973
14974 * src/scan-gram.l (handle_dollar, handle_destructor_at)
14975 (handle_action_at): New.
14976 (handle_at, handle_action_dollar, handle_destructor_dollar): Take
14977 a braced_code_t and a location as additional arguments.
14978 (handle_destructor_dollar): Instead of requiring `b4_eval', just
14979 unquote one when outputting `b4_dollar_dollar'.
14980 Adjust callers.
14981 * data/bison.simple (b4_eval): Remove.
14982 (b4_symbol_destructor): Adjust.
14983 * tests/input.at (Invalid @n): Adjust.
14984
14985 2002-06-19 Zack Weinberg <zack@codesourcery.com>
14986
14987 * doc/bison.texinfo: Document ability to have multiple
14988 prologue sections.
14989
14990 2002-06-18 Akim Demaille <akim@epita.fr>
14991
14992 * src/files.c (compute_base_names): When computing the output file
14993 names from the input file name, strip the directory part.
14994
14995 2002-06-18 Akim Demaille <akim@epita.fr>
14996
14997 * data/bison.simple.new: Comment changes.
14998 Reported by Andreas Schwab.
14999
15000 2002-06-18 Matt Kraai <kraai@alumni.cmu.edu>
15001
15002 * data/bison.simple (yyoverflowlab): #ifndef yyoverflow, so that
15003 there are no `label `yyoverflowlab' defined but not used' warnings
15004 when yyoverflow is defined.
15005
15006 2002-06-18 Akim Demaille <akim@epita.fr>
15007
15008 * src/symtab.h, src/symtab.c (symbol_t): destructor_location is a
15009 new member.
15010 (symbol_destructor_set): Adjust.
15011 * src/output.c (symbol_destructors_output): Output the destructor
15012 locations.
15013 Output the symbol name.
15014 * data/bison.simple (b4_symbol_destructor): Adjust.
15015
15016 2002-06-18 Cris Bailiff <c.bailiff@awayweb.com>
15017 and Akim Demaille <akim@epita.fr>
15018
15019 * data/bison.simple.new (yyerrlab1): Be sure to pop and destroy
15020 what's left on the stack when the error recovery hits EOF.
15021 * tests/actions.at (Destructors): Complete to exercise this case.
15022
15023 2002-06-17 Akim Demaille <akim@epita.fr>
15024
15025 * data/m4sugar/m4sugar.m4 (m4_map): Recognize when the list of
15026 arguments is really empty, not only equal to `[]'.
15027 * src/symtab.h, src/symtab.c (symbol_t): `destructor' is a new
15028 member.
15029 (symbol_destructor_set): New.
15030 * src/output.c (symbol_destructors_output): New.
15031 * src/reader.h (brace_code_t, current_braced_code): New.
15032 * src/scan-gram.l (BRACED_CODE): Use it to branch on...
15033 (handle_dollar): Rename as...
15034 (handle_action_dollar): this.
15035 (handle_destructor_dollar): New.
15036 * src/parse-gram.y (PERCENT_DESTRUCTOR): New.
15037 (grammar_declaration): Use it.
15038 * data/bison.simple (yystos): Is always defined.
15039 (yydestructor): New.
15040 * tests/actions.at (Destructors): New.
15041 * tests/calc.at (_AT_CHECK_CALC_ERROR): Don't rely on egrep.
15042
15043 2002-06-17 Akim Demaille <akim@epita.fr>
15044
15045 * src/symlist.h, src/symlist.c (symbol_list_length): New.
15046 * src/scan-gram.l (handle_dollar, handle_at): Compute the
15047 rule_length only when needed.
15048 * src/output.c (actions_output, token_definitions_output): Output
15049 the full M4 block.
15050 * src/symtab.c: Don't access directly to the symbol tag, use
15051 symbol_tag_get.
15052 * src/parse-gram.y: Use symbol_list_free.
15053
15054 2002-06-17 Akim Demaille <akim@epita.fr>
15055
15056 * src/reader.h, src/reader.c (symbol_list, symbol_list_new)
15057 (symbol_list_prepend, get_type_name): Move to...
15058 * src/symlist.h, src/symlist.c (symbol_list_t, symbol_list_new)
15059 (symbol_list_prepend, symbol_list_n_type_name_get): here.
15060 Adjust all callers.
15061 (symbol_list_free): New.
15062 * src/scan-gram.l (handle_dollar): Takes a location.
15063 * tests/input.at (Invalid $n): Adjust.
15064
15065 2002-06-17 Akim Demaille <akim@epita.fr>
15066
15067 * src/reader.h, src/reader.c (symbol_list_new): Export it.
15068 (symbol_list_prepend): New.
15069 * src/parse-gram.y (%union): `list' is a new member.
15070 (symbols.1): New, replaces...
15071 (terms_to_prec.1, nterms_to_type.1): these.
15072 * src/symtab.h, src/symtab.c (symbol_type_set, symbol_precedence_set)
15073 Take a location as additional argument.
15074 Adjust all callers.
15075
15076 2002-06-15 Akim Demaille <akim@epita.fr>
15077
15078 * src/parse-gram.y: Move %token in the declaration section so that
15079 we don't depend upon CVS Bison.
15080
15081 2002-06-15 Akim Demaille <akim@epita.fr>
15082
15083 * src/state.h, src/state.c (state_rule_lookaheads_print): New.
15084 * src/print.c (print_core): Use it.
15085
15086 2002-06-15 Akim Demaille <akim@epita.fr>
15087
15088 * src/conflicts.c (log_resolution): Accept the rule involved in
15089 the sr conflicts instead of the lookahead number that points to
15090 that rule.
15091 (flush_reduce): Accept the current lookahead vector as argument,
15092 instead of the index in LA.
15093 (resolve_sr_conflict): Accept the current number of lookahead
15094 bitset to consider for the STATE, instead of the index in LA.
15095 (set_conflicts): Adjust.
15096 * src/lalr.c, src/lalr.h, src/state.h: Comment changes.
15097
15098 2002-06-15 Akim Demaille <akim@epita.fr>
15099
15100 * src/state.h (state_t): Replace the `lookaheadsp' member, a
15101 short, with `lookaheads' (bitsetv), `lookaheads_rule' (rule_t**).
15102 Adjust all dependencies.
15103 * src/lalr.c (initialize_lookaheads): Split into...
15104 (states_lookaheads_count, states_lookaheads_initialize): these.
15105 (lalr): Adjust.
15106
15107 2002-06-15 Akim Demaille <akim@epita.fr>
15108
15109 * src/gram.h, src/gram.c (grammar_rules_partial_print): New, eved
15110 out of...
15111 (grammar_rules_print): here.
15112 * src/reduce.c (reduce_output): Use it.
15113 * tests/reduce.at (Useless Rules, Reduced Automaton)
15114 (Underivable Rules): Adjust.
15115
15116 2002-06-15 Akim Demaille <akim@epita.fr>
15117
15118 Copy BYacc's nice way to report the grammar.
15119
15120 * src/gram.h, src/gram.c (grammar_rhs_print, grammar_rules_print):
15121 New.
15122 Don't print the rules' location, it is confusing and useless.
15123 (rule_print): Use grammar_rhs_print.
15124 * src/print.c (print_grammar): Use grammar_rules_print.
15125
15126 2002-06-15 Akim Demaille <akim@epita.fr>
15127
15128 Complete and rationalize `useless thing' warnings.
15129
15130 * src/symtab.h, src/symtab.c (symbol_tag_get, symbol_tag_get_n)
15131 (symbol_tag_print): New.
15132 Use them everywhere in place of accessing directly the tag member.
15133 * src/gram.h, src/gram.c (rule_print): New.
15134 Use it where a rule used to be printed `by hand'.
15135 * src/reduce.c (nonterminals_reduce): Report the use nonterminals.
15136 (reduce_grammar_tables): Report the useless rules.
15137 (reduce_print): Useless things are a warning, not an error.
15138 Report it as such.
15139 * tests/reduce.at (Useless Nonterminals, Useless Rules):
15140 (Reduced Automaton, Underivable Rules): Adjust.
15141 * tests/regression.at (Web2c Report, Web2c Report): Adjust.
15142 * tests/conflicts.at (Unresolved SR Conflicts)
15143 (Solved SR Conflicts): Adjust.
15144
15145 2002-06-15 Akim Demaille <akim@epita.fr>
15146
15147 Let symbols have a location.
15148
15149 * src/symtab.h, src/symtab.c (symbol_t): Location is a new member.
15150 (getsym): Adjust.
15151 Adjust all callers.
15152 * src/complain.h, src/complain.c (complain_at, fatal_at, warn_at):
15153 Use location_t, not int.
15154 * src/symtab.c (symbol_check_defined): Take advantage of the
15155 location.
15156 * tests/regression.at (Invalid inputs): Adjust.
15157
15158 2002-06-15 Akim Demaille <akim@epita.fr>
15159
15160 * src/parse-gram.y (YYLLOC_DEFAULT, current_lhs_location): New.
15161 (input): Don't try to initialize yylloc here, do it in the
15162 scanner.
15163 * src/scan-gram.l (YY_USER_INIT): Initialize yylloc.
15164 * src/gram.h (rule_t): Change line and action_line into location
15165 and action_location, of location_t type.
15166 Adjust all dependencies.
15167 * src/location.h, src/location.c (empty_location): New.
15168 * src/reader.h, src/reader.c (grammar_start_symbol_set)
15169 (grammar_symbol_append, grammar_rule_begin, grammar_rule_end)
15170 (grammar_current_rule_symbol_append)
15171 (grammar_current_rule_action_append): Expect a location as argument.
15172 * src/reader.c (grammar_midrule_action): Adjust to attach an
15173 action's location as dummy symbol location.
15174 * src/symtab.h, src/symtab.c (startsymbol_location): New.
15175 * tests/regression.at (Web2c Report, Rule Line Numbers): Adjust
15176 the line numbers.
15177
15178 2002-06-14 Akim Demaille <akim@epita.fr>
15179
15180 Grammar declarations may be found in the grammar section.
15181
15182 * src/parse-gram.y (rules_or_grammar_declaration): New.
15183 (declarations): Each declaration may end with a semicolon, not
15184 just...
15185 (grammar_declaration): `"%union"'.
15186 (grammar): Branch to rules_or_grammar_declaration.
15187
15188 2002-06-14 Akim Demaille <akim@epita.fr>
15189
15190 * src/main.c (main): Invoke scanner_free.
15191
15192 2002-06-14 Akim Demaille <akim@epita.fr>
15193
15194 * src/output.c (m4_invoke): Extracted from...
15195 (output_skeleton): here.
15196 Free tempfile.
15197
15198 2002-06-14 Akim Demaille <akim@epita.fr>
15199
15200 * src/parse-gram.y (directives, directive, gram)
15201 (grammar_directives, precedence_directives, precedence_directive):
15202 Rename as...
15203 (declarations, declaration, grammar, grammar_declaration)
15204 (precedence_declaration, precedence_declarator): these.
15205 (symbol_declaration): New.
15206
15207 2002-06-14 Akim Demaille <akim@epita.fr>
15208
15209 * src/files.c (action_obstack): Remove, unused.
15210 (output_obstack): Remove it, and all its dependencies, as it is no
15211 longer needed.
15212 * src/reader.c (epilogue_set): Build the epilogue in the
15213 muscle_obstack.
15214 * src/output.h, src/output.c (muscle_obstack): Move to...
15215 * src/muscle_tab.h, src/muscle_tab.h: here.
15216 (muscle_init): Initialize muscle_obstack.
15217 (muscle_free): New.
15218 * src/main.c (main): Call it.
15219
15220 2002-06-14 Akim Demaille <akim@epita.fr>
15221
15222 * src/location.h: New, extracted from...
15223 * src/reader.h: here.
15224 * src/Makefile.am (noinst_HEADERS): Merge into
15225 (bison_SOURCES): this.
15226 Add location.h.
15227 * src/parse-gram.y: Use location_t instead of Bison's.
15228 * src/reader.h, src/reader.c (prologue_augment, epilogue_set):
15229 Use location_t instead of ints.
15230
15231 2002-06-14 Akim Demaille <akim@epita.fr>
15232
15233 * data/bison.simple, data/bison.c++: Be sure to restore the
15234 current #line when returning to the skeleton contents after having
15235 exposed the input file's #line.
15236
15237 2002-06-12 Akim Demaille <akim@epita.fr>
15238
15239 * src/scan-gram.l (SC_BRACED_CODE): Don't use `<.*>', it is too
15240 eager.
15241 * tests/actions.at (Exotic Dollars): New.
15242
15243 2002-06-12 Akim Demaille <akim@epita.fr>
15244
15245 * src/scan-gram.l (SC_PROLOGUE): Don't eat characters amongst
15246 ['"/] too eagerly.
15247 * tests/input.at (Torturing the Scanner): New.
15248
15249 2002-06-11 Akim Demaille <akim@epita.fr>
15250
15251 * src/scan-gram.l (YY_OBS_INIT): Remove, replace with...
15252 [SC_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE]
15253 [SC_EPILOGUE]: Output the quadrigraphs only when not in a comment.
15254 * src/reader.h, src/scan-gram.l (scanner_initialize): this.
15255 * src/reader.c (reader): Use it.
15256
15257 2002-06-11 Akim Demaille <akim@epita.fr>
15258
15259 * src/scan-gram.l (YY_OBS_FINISH): Don't set yylval.
15260 Adjust all callers.
15261 (scanner_last_string_free): New.
15262
15263 2002-06-11 Akim Demaille <akim@epita.fr>
15264
15265 * src/scan-gram.l (YY_INIT, YY_GROW, YY_FINISH): Rename as...
15266 (YY_OBS_INIT, YY_OBS_GROW, YY_OBS_FINISH): these.
15267 (last_string, YY_OBS_FREE): New.
15268 Use them when returning an ID.
15269
15270 2002-06-11 Akim Demaille <akim@epita.fr>
15271
15272 Have Bison grammars parsed by a Bison grammar.
15273
15274 * src/reader.c, src/reader.h (prologue_augment): New.
15275 * src/reader.c (copy_definition): Remove.
15276
15277 * src/reader.h, src/reader.c (gram_start_symbol_set, prologue_augment)
15278 (grammar_symbol_append, grammar_rule_begin, grammar_midrule_action)
15279 (grammar_current_rule_prec_set, grammar_current_rule_check)
15280 (grammar_current_rule_symbol_append)
15281 (grammar_current_rule_action_append): Export.
15282 * src/parse-gram.y (symbol_list_new, symbol_list_symbol_append_
15283 (symbol_list_action_append): Remove.
15284 Hook the routines from reader.
15285 * src/scan-gram.l: In INITIAL, characters and strings are tokens.
15286 * src/system.h (ATTRIBUTE_NORETURN, ATTRIBUTE_UNUSED): Now.
15287
15288 * src/reader.c (read_declarations): Remove, unused.
15289
15290 * src/parse-gram.y: Handle the epilogue.
15291 * src/reader.h, src/reader.c (gram_start_symbol_set): Rename as...
15292 (grammar_start_symbol_set): this.
15293 * src/scan-gram.l: Be sure to ``use'' yycontrol to keep GCC quiet.
15294 * src/reader.c (readgram): Remove, unused.
15295 (reader): Adjust to insert eoftoken and axiom where appropriate.
15296
15297 * src/reader.c (copy_dollar): Replace with...
15298 * src/scan-gram.h (handle_dollar): this.
15299 * src/parse-gram.y: Remove `%thong'.
15300
15301 * src/reader.c (copy_at): Replace with...
15302 * src/scan-gram.h (handle_at): this.
15303
15304 * src/complain.h, src/complain.c (warn_at, complain_at, fatal_at):
15305 New.
15306
15307 * src/scan-gram.l (YY_LINES): Keep lineno synchronized for the
15308 time being.
15309
15310 * src/reader.h, src/reader.c (grammar_rule_end): New.
15311
15312 * src/parse.y (current_type, current_class): New.
15313 Implement `%nterm', `%token' support.
15314 Merge `%term' into `%token'.
15315 (string_as_id): New.
15316 * src/symtab.h, src/symtab.c (symbol_make_alias): Don't pass the
15317 type name.
15318
15319 * src/parse-gram.y: Be sure to handle properly the beginning of
15320 rules.
15321
15322 * src/parse-gram.y: Handle %type.
15323 * src/reader.c (grammar_rule_end): Call grammar_current_rule_check.
15324
15325 * src/parse-gram.y: More directives support.
15326 * src/options.c: No longer handle source directives.
15327
15328 * src/parse-gram.y: Fix %output.
15329
15330 * src/parse-gram.y: Handle %union.
15331 Use the prologue locations.
15332 * src/reader.c (parse_union_decl): Remove.
15333
15334 * src/reader.h, src/reader.c (epilogue_set): New.
15335 * src/parse-gram.y: Use it.
15336
15337 * data/bison.simple, data/bison.c++: b4_stype is now either not
15338 defined, then default to int, or to the contents of %union,
15339 without `union' itself.
15340 Adjust.
15341 * src/muscle_tab.c (muscle_init): Don't predefine `stype'.
15342
15343 * src/output.c (actions_output): Don't output braces, as they are
15344 already handled by the scanner.
15345
15346 * src/scan-gram.l (SC_CHARACTER): Set the user_token_number of
15347 characters to themselves.
15348
15349 * tests/reduce.at (Reduced Automaton): End the grammars with %% so
15350 that the epilogue has a proper #line.
15351
15352 * src/parse-gram.y: Handle precedence/associativity.
15353
15354 * src/symtab.c (symbol_precedence_set): Requires the symbol to be
15355 a terminal.
15356 * src/scan-gram.l (SC_BRACED_CODE): Catch strings and characters.
15357 * tests/calc.at: Do not use `%token "foo"' as it makes not sense
15358 at all to define terminals that cannot be emitted.
15359
15360 * src/scan-gram.l: Escape M4 characters.
15361
15362 * src/scan-gram.l: Working properly with escapes in user
15363 strings/characters.
15364
15365 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR)
15366 (AT_DATA_HORIZONTAL_GRAMMAR): Respect the `%token ID NUM STRING'
15367 grammar.
15368 Use more modest sizes, as for the time being the parser does not
15369 release memory, and therefore the process swallows a huge amount
15370 of memory.
15371
15372 * tests/torture.at (AT_DATA_LOOKAHEADS_GRAMMAR): Adjust to the
15373 stricter %token grammar.
15374
15375 * src/symtab.h (associativity): Add `undef_assoc'.
15376 (symbol_precedence_set): Do nothing when passed an undef_assoc.
15377 * src/symtab.c (symbol_check_alias_consistence): Adjust.
15378
15379 * tests/regression.at (Invalid %directive): Remove, as it is now
15380 meaningless.
15381 (Invalid inputs): Adjust to the new error messages.
15382 (Token definitions): The new grammar doesn't allow too many
15383 eccentricities.
15384
15385 * src/lex.h, src/lex.c: Remove.
15386 * src/reader.c (lastprec, skip_to_char, read_signed_integer)
15387 (copy_character, copy_string2, copy_string, copy_identifier)
15388 (copy_comment, parse_token_decl, parse_type_decl, parse_assoc_decl)
15389 (parse_muscle_decl, parse_dquoted_param, parse_skel_decl)
15390 (parse_action): Remove.
15391 * po/POTFILES.in: Adjust.
15392
15393 2002-06-11 Akim Demaille <akim@epita.fr>
15394
15395 * src/reader.c (parse_action): Don't store directly into the
15396 rule's action member: return the action as a string.
15397 Don't require `rule_length' as an argument: compute it.
15398 (grammar_current_rule_symbol_append)
15399 (grammar_current_rule_action_append): New, eved out from
15400 (readgram): here.
15401 Remove `action_flag', `rulelength', unused now.
15402
15403 2002-06-11 Akim Demaille <akim@epita.fr>
15404
15405 * src/reader.c (grammar_current_rule_prec_set).
15406 (grammar_current_rule_check): New, eved out from...
15407 (readgram): here.
15408 Remove `xaction', `first_rhs': useless.
15409 * tests/input.at (Type clashes): New.
15410 * tests/existing.at (GNU Cim Grammar): Adjust.
15411
15412 2002-06-11 Akim Demaille <akim@epita.fr>
15413
15414 * src/reader.c (grammar_midrule_action): New, Eved out from
15415 (readgram): here.
15416
15417 2002-06-11 Akim Demaille <akim@epita.fr>
15418
15419 * src/reader.c (grammar_rule_begin, previous_rule, current_rule):
15420 New.
15421 (readgram): Use them as replacement of inlined code, crule and
15422 crule1.
15423
15424 2002-06-11 Akim Demaille <akim@epita.fr>
15425
15426 * src/reader.c (grammar_end, grammar_symbol_append): New.
15427 (readgram): Use them.
15428 Make the use of `p' as local as possible.
15429
15430 2002-06-10 Akim Demaille <akim@epita.fr>
15431
15432 GCJ's parser requires the tokens to be defined before the prologue.
15433
15434 * data/bison.simple: Output the token definition before the user's
15435 prologue.
15436 * tests/regression.at (Braces parsing, Duplicate string)
15437 (Mixing %token styles): Check the output from bison.
15438 (Early token definitions): New.
15439
15440 2002-06-10 Akim Demaille <akim@epita.fr>
15441
15442 * src/symtab.c (symbol_user_token_number_set): Don't complain when
15443 assigning twice the same user number to a token, so that we can
15444 use it in...
15445 * src/lex.c (lex): here.
15446 Also use `symbol_class_set' instead of hand written code.
15447 * src/reader.c (parse_assoc_decl): Likewise.
15448
15449 2002-06-10 Akim Demaille <akim@epita.fr>
15450
15451 * src/symtab.c, src/symtab.c (symbol_class_set)
15452 (symbol_user_token_number_set): New.
15453 * src/reader.c (parse_token_decl): Use them.
15454 Use a switch instead of ifs.
15455 Use a single argument.
15456
15457 2002-06-10 Akim Demaille <akim@epita.fr>
15458
15459 Remove `%thong' support as it is undocumented, unused, duplicates
15460 `%token's job, and creates useless e-mail traffic with people who
15461 want to know what it is, why it is undocumented, unused, and
15462 duplicates `%token's job.
15463
15464 * src/reader.c (parse_thong_decl): Remove.
15465 * src/options.c (option_table): Remove "thong".
15466 * src/lex.h (tok_thong): Remove.
15467
15468 2002-06-10 Akim Demaille <akim@epita.fr>
15469
15470 * src/symtab.c, src/symtab.c (symbol_type_set)
15471 (symbol_precedence_set): New.
15472 * src/reader.c (parse_type_decl, parse_assoc_decl): Use them.
15473 (value_components_used): Remove, unused.
15474
15475 2002-06-09 Akim Demaille <akim@epita.fr>
15476
15477 Move symbols handling code out of the reader.
15478
15479 * src/reader.h, src/reader.c (errtoken, undeftoken, eoftoken)
15480 (axiom): Move to...
15481 * src/symtab.h, src/symtab.c: here.
15482
15483 * src/gram.c (start_symbol): Remove: use startsymbol->number.
15484 * src/reader.c (startval): Rename as...
15485 * src/symtab.h, src/symtab.c (startsymbol): this.
15486 * src/reader.c: Adjust.
15487
15488 * src/reader.c (symbol_check_defined, symbol_make_alias)
15489 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
15490 (token_translations_init)
15491 Move to...
15492 * src/symtab.c: here.
15493 * src/reader.c (packsymbols): Move to...
15494 * src/symtab.h, src/symtab.c (symbols_pack): here.
15495 * src/symtab.h, src/symtab.c (symbol_make_alias): Takes SYMVAL as
15496 argument.
15497
15498 2002-06-03 Akim Demaille <akim@epita.fr>
15499
15500 * src/muscle_tab.c (muscle_insert, muscle_find): Declarations,
15501 then statements.
15502
15503 2002-06-03 Akim Demaille <akim@epita.fr>
15504
15505 * src/muscle_tab.c (muscle_find, muscle_insert): Don't initialize
15506 structs with non literals.
15507 * src/scan-skel.l: never-interactive.
15508 * src/conflicts.c (enum conflict_resolution_e): No trailing
15509 comma.
15510 * src/getargs.c (usage): Split long literal strings.
15511 Reported by Hans Aberg.
15512
15513 2002-05-28 Akim Demaille <akim@epita.fr>
15514
15515 * data/bison.c++: Use C++ ostreams.
15516 (cdebug_): New member.
15517
15518 2002-05-28 Akim Demaille <akim@epita.fr>
15519
15520 * src/output.c (output_skeleton): Be sure to allocate enough room
15521 for `/' _and_ for `\0' in full_skeleton.
15522
15523 2002-05-28 Akim Demaille <akim@epita.fr>
15524
15525 * data/bison.c++: Catch up with bison.simple:
15526 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15527 and Paul Eggert <eggert@twinsun.com>: `error' handing.
15528 2002-05-26 Akim Demaille <akim@epita.fr>: stos_, token_number_,
15529 and popping traces.
15530
15531 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15532
15533 * src/output.c (output_skeleton): Put an explicit path in front of
15534 the skeleton file name, rather than relying on the -I directory,
15535 to partially alleviate effects of having a skeleton file lying around
15536 in the current directory.
15537
15538 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15539
15540 * src/conflicts.c (log_resolution): Correct typo:
15541 obstack_printf should be obstack_fgrow1.
15542
15543 2002-05-26 Akim Demaille <akim@epita.fr>
15544
15545 * src/state.h (state_t): `solved_conflicts' is a new member.
15546 * src/LR0.c (new_state): Set it to 0.
15547 * src/conflicts.h, src/conflicts.c (print_conflicts)
15548 (free_conflicts, solve_conflicts): Rename as...
15549 (conflicts_print, conflicts_free, conflicts_solve): these.
15550 Adjust callers.
15551 * src/conflicts.c (enum conflict_resolution_e)
15552 (solved_conflicts_obstack): New, used by...
15553 (log_resolution): this.
15554 Adjust to attach the conflict resolution to each state.
15555 Complete the description with the precedence/associativity
15556 information.
15557 (resolve_sr_conflict): Adjust.
15558 * src/print.c (print_state): Output its solved_conflicts.
15559 * tests/conflicts.at (Unresolved SR Conflicts)
15560 (Solved SR Conflicts): Exercise --report=all.
15561
15562 2002-05-26 Akim Demaille <akim@epita.fr>
15563
15564 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
15565 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
15566 * src/reader.c, src/reduce.c, src/state.h, src/symtab.h
15567 (token_number_t, item_number_as_token_number)
15568 (token_number_as_item_number, muscle_insert_token_number_table):
15569 Rename as...
15570 (symbol_number_t, item_number_as_symbol_number)
15571 (symbol_number_as_item_number, muscle_insert_symbol_number_table):
15572 these, since it is more appropriate.
15573
15574 2002-05-26 Akim Demaille <akim@epita.fr>
15575
15576 * tests/calc.at (AT_CHECK_CALC): Adjust: there are now additional
15577 `Error:' lines.
15578 * data/bison.simple (yystos) [YYDEBUG]: New.
15579 (yyparse) [YYDEBUG]: Display the symbols which are popped during
15580 error recovery.
15581 * tests/regression.at (Web2c Actions): Adjust: yystos is output now.
15582
15583 2002-05-25 Akim Demaille <akim@epita.fr>
15584
15585 * doc/bison.texinfo (Debugging): Split into...
15586 (Tracing): this new section, its former contents, and...
15587 (Understanding): this new section.
15588 * src/getargs.h, src/getargs.c (verbose_flag): Remove, replaced
15589 by...
15590 (report_flag): this.
15591 Adjust all dependencies.
15592 (report_args, report_types, report_argmatch): New.
15593 (usage, getargs): Report/support -r, --report.
15594 * src/options.h
15595 (struct option_table_struct): Rename as..,
15596 (struct option_table_s): this.
15597 Rename the `set_flag' member to `flag' to match with getopt_long's
15598 struct.
15599 * src/options.c (option_table): Split verbose into an entry for
15600 %verbose, and another for --verbose.
15601 Support --report/-r, so remove -r from the obsolete --raw.
15602 * src/print.c: Attach full item sets and lookaheads reports to
15603 report_flag instead of trace_flag.
15604 * lib/argmatch.h, lib/argmatch.c: New, from Fileutils 4.1.
15605
15606 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15607 and Paul Eggert <eggert@twinsun.com>
15608
15609 * data/bison.simple (yyparse): Correct error handling to conform to
15610 POSIX and yacc. Specifically, after syntax error is discovered,
15611 do not reduce further before shifting the error token.
15612 Clean up the code a bit by removing the labels yyerrdefault,
15613 yyerrhandle, yyerrpop.
15614 * NEWS: Document the above.
15615
15616 2002-05-20 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15617
15618 * data/bison.simple (yyr1): Don't use yy_token_number_type as element
15619 type; it isn't always big enough, since it doesn't necessarily
15620 include non-terminals.
15621 (yytranslate): Expand definition of yy_token_number_type, so that
15622 the latter can be removed.
15623 (yy_token_number_type): Remove, only one use.
15624 * data/bison.c++ (r1_): Parallel change to yyr1 in bison.simple---
15625 don't use TokenNumberType as element type.
15626
15627 * tests/regression.at: Modify expected output to agree with change
15628 to yyr1 and yytranslate.
15629
15630 2002-05-13 Florian Krohm <florian@edamail.fishkill.ibm.com>
15631
15632 * src/reader.c (parse_action): Use copy_character instead of
15633 obstack_1grow.
15634
15635 2002-05-13 Akim Demaille <akim@epita.fr>
15636
15637 * tests/regression.at (Token definitions): Prototype yylex and
15638 yyerror.
15639
15640 2002-05-12 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15641
15642 * src/scan-skel.l: Correct off-by-one error in handling of __oline__.
15643 * data/bison.simple (b4_sint_type, b4_uint_type): Correct to reflect
15644 32-bit arithmetic.
15645 * data/bison.c++ (b4_sint_type, b4_uint_type): Ditto.
15646
15647 2002-05-07 Akim Demaille <akim@epita.fr>
15648
15649 * tests/synclines.at: Be sure to prototype yylex and yyerror to
15650 avoid GCC warnings.
15651
15652 2002-05-07 Akim Demaille <akim@epita.fr>
15653
15654 Kill GCC warnings.
15655
15656 * src/reduce.c (nonterminals_reduce): Don't loop over RITEM: loop
15657 over the RHS of each rule.
15658 * src/gram.h, src/gram.c (nritems): Is `unsigned int', not int.
15659 * src/state.h (state_t): Member `nitems' is unsigned short.
15660 * src/LR0.c (get_state): Adjust.
15661 * src/reader.c (packgram): Likewise.
15662 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): `max' is of type
15663 `Type'.
15664 (muscle_insert_int_table): Remove, unused.
15665 (prepare_rules): Remove `max'.
15666
15667 2002-05-06 Akim Demaille <akim@epita.fr>
15668
15669 * src/closure.c (print_firsts): Display of the symbol tags.
15670 (bitmatrix_print): Move to...
15671 * lib/bitsetv-print.h, lib/bitsetv-print.c (bitsetv_matrix_dump):
15672 here.
15673 * tests/sets.at (Nullable, Broken Closure, Firsts): Adjust.
15674
15675 2002-05-06 Akim Demaille <akim@epita.fr>
15676
15677 * src/muscle_tab.c (muscle_m4_output): Must return TRUE for
15678 hash_do_for_each.
15679
15680 2002-05-06 Akim Demaille <akim@epita.fr>
15681
15682 * src/LR0.c (new_state, get_state): Instead of using the global
15683 `kernel_size' and `kernel_base', have two new arguments:
15684 `core_size' and `core'.
15685 Adjust callers.
15686
15687 2002-05-06 Akim Demaille <akim@epita.fr>
15688
15689 * src/reader.c (packgram): No longer end `ritem' with a 0
15690 sentinel: it is not used.
15691
15692 2002-05-05 Akim Demaille <akim@epita.fr>
15693
15694 New experimental feature: display the lookaheads in the report and
15695 graph.
15696
15697 * src/print (print_core): When --trace-flag, display the rules
15698 lookaheads.
15699 * src/print_graph.c (print_core): Likewise.
15700 Swap the arguments.
15701 Adjust caller.
15702
15703 2002-05-05 Akim Demaille <akim@epita.fr>
15704
15705 * tests/torture.at (Many lookaheads): New test.
15706
15707 2002-05-05 Akim Demaille <akim@epita.fr>
15708
15709 * src/output.c (GENERATE_OUTPUT_TABLE): Replace with...
15710 (GENERATE_MUSCLE_INSERT_TABLE): this.
15711 (output_int_table, output_unsigned_int_table, output_short_table)
15712 (output_token_number_table, output_item_number_table): Replace with...
15713 (muscle_insert_int_table, muscle_insert_unsigned_int_table)
15714 (muscle_insert_short_table, muscle_insert_token_number_table)
15715 (muscle_insert_item_number_table): these.
15716 Adjust all callers.
15717 (prepare_tokens): Don't free `translations', since...
15718 * src/reader.h, src/reader.c (grammar_free): do it.
15719 Move to...
15720 * src/gram.h, src/gram.c (grammar_free): here.
15721 * data/bison.simple, data/bison.c++: b4_token_number_max is now
15722 b4_translate_max.
15723
15724 2002-05-05 Akim Demaille <akim@epita.fr>
15725
15726 * src/output.c (output_unsigned_int_table): New.
15727 (prepare_rules): `i' is unsigned.
15728 `prhs', `rline', `r2' are unsigned int.
15729 Rename muscle `rhs_number_max' as `rhs_max'.
15730 Output muscles `prhs_max', `rline_max', and `r2_max'.
15731 Free rline and r1.
15732 * data/bison.simple, data/bison.c++: Adjust to use these muscles
15733 to compute types instead of constant types.
15734 * tests/regression.at (Web2c Actions): Adjust.
15735
15736 2002-05-04 Akim Demaille <akim@epita.fr>
15737
15738 * src/symtab.h (SALIAS, SUNDEF): Rename as...
15739 (USER_NUMBER_ALIAS, USER_NUMBER_UNDEFINED): these.
15740 Adjust dependencies.
15741 * src/output.c (token_definitions_output): Be sure not to output a
15742 `#define 'a'' when fed with `%token 'a' "a"'.
15743 * tests/regression.at (Token definitions): New.
15744
15745 2002-05-03 Paul Eggert <eggert@twinsun.com>
15746
15747 * data/bison.simple (b4_token_defines): Also define YYTOKENTYPE
15748 for K&R C.
15749
15750 2002-05-03 gettextize <bug-gnu-gettext@gnu.org>
15751
15752 * Makefile.am (SUBDIRS): Remove intl.
15753 (EXTRA_DIST): Add config/config.rpath.
15754
15755 2002-05-03 Akim Demaille <akim@epita.fr>
15756
15757 * data/bison.simple (m4_if): Don't output empty enums.
15758 And actually, output valid enum definitions :(.
15759
15760 2002-05-03 Akim Demaille <akim@epita.fr>
15761
15762 * configure.bat: Remove, completely obsolete.
15763 * Makefile.am (EXTRA_DIST): Adjust.
15764 Don't distribute config.rpath...
15765 * config/Makefile.am (EXTRA_DIST): Do it.
15766
15767 2002-05-03 Akim Demaille <akim@epita.fr>
15768
15769 * configure.in (GETTEXT_VERSION): New.
15770 Suggested by Bruno Haible for the forthcoming Gettext 0.10.3.
15771
15772 2002-05-03 Akim Demaille <akim@epita.fr>
15773
15774 * data/bison.simple (b4_token_enum): New.
15775 (b4_token_defines): Use it to output tokens both as #define and
15776 enums.
15777 Suggested by Paul Eggert.
15778 * src/output.c (token_definitions_output): Don't output spurious
15779 white spaces.
15780
15781 2002-05-03 Akim Demaille <akim@epita.fr>
15782
15783 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
15784
15785 2002-05-02 Robert Anisko <robert@lrde.epita.fr>
15786
15787 * data/bison.c++: Adapt expansion of $s and @s to the C++ parser.
15788 Update the stack class, give a try to deque as the default container.
15789
15790 2002-05-02 Akim Demaille <akim@epita.fr>
15791
15792 * data/bison.simple (yyparse): Do not implement @$ = @1.
15793 (YYLLOC_DEFAULT): Adjust to do it.
15794 * doc/bison.texinfo (Location Default Action): Fix.
15795
15796 2002-05-02 Akim Demaille <akim@epita.fr>
15797
15798 * src/reader.c (parse_braces): Merge into...
15799 (parse_action): this.
15800
15801 2002-05-02 Akim Demaille <akim@epita.fr>
15802
15803 * configure.in (ALL_LINGUAS): Remove.
15804 * po/LINGUAS, hr.po: New.
15805
15806 2002-05-02 Akim Demaille <akim@epita.fr>
15807
15808 Remove the so called hairy (semantic) parsers.
15809
15810 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove.
15811 * src/gram.h, src/gram.c (semantic_parser): Remove.
15812 (rule_t): Remove the guard and guard_line members.
15813 * src/lex.h (token_t): remove tok_guard.
15814 * src/options.c (option_table): Remove %guard and %semantic_parser
15815 support.
15816 * src/output.c, src/output.h (guards_output): Remove.
15817 (prepare): Adjust.
15818 (token_definitions_output): Don't output the `T'
15819 tokens (???).
15820 (output_skeleton): Don't output the guards.
15821 * src/files.c, src/files.c (attrsfile): Remove.
15822 * src/reader.c (symbol_list): Remove the guard and guard_line
15823 members.
15824 Adjust dependencies.
15825 (parse_guard): Remove.
15826 * data/bison.hairy: Remove.
15827 * doc/bison.texinfo (Environment Variables): Remove occurrences of
15828 BISON_HAIRY.
15829
15830 2002-05-02 Akim Demaille <akim@epita.fr>
15831
15832 * src/reader.c (copy_at, copy_dollarm parse_braces, parse_action)
15833 (parse_guard): Rename the formal argument `stack_offset' as
15834 `rule_length', which is more readable.
15835 Adjust callers.
15836 (copy_at, copy_dollar): Instead of outputting the hard coded
15837 values of $$, $n and so forth, output invocation to b4_lhs_value,
15838 b4_lhs_location, b4_rhs_value, and b4_rhs_location.
15839 Note: this patch partially drops `semantic-parser' support: it
15840 always does `rule_length - n', where semantic parsers ought to
15841 always use `-n'.
15842 * data/bison.simple, data/bison.c++ (b4_lhs_value)
15843 (b4_lhs_location, b4_rhs_value, and b4_rhs_location: New.
15844
15845 2002-05-02 Akim Demaille <akim@epita.fr>
15846
15847 * configure.in (AC_INIT): Bump to 1.49b.
15848 (AM_INIT_AUTOMAKE): Short invocation.
15849
15850 2002-05-02 Akim Demaille <akim@epita.fr>
15851
15852 Version 1.49a.
15853
15854 2002-05-01 Akim Demaille <akim@epita.fr>
15855
15856 * src/skeleton.h: Remove.
15857
15858 2002-05-01 Akim Demaille <akim@epita.fr>
15859
15860 * src/skeleton.h: Fix the #endif.
15861 Reported by Magnus Fromreide.
15862
15863 2002-04-26 Paul Eggert <eggert@twinsun.com>
15864
15865 * data/bison.simple (YYSTYPE_IS_TRIVIAL, YYLTYPE_IS_TRIVIAL):
15866 Define if we define YYSTYPE and YYLTYPE, respectively.
15867 (YYCOPY): Fix [] quoting problem in the non-GCC case.
15868
15869 2002-04-25 Robert Anisko <robert@lrde.epita.fr>
15870
15871 * src/scan-skel.l: Postprocess quadrigraphs.
15872
15873 * src/reader.c (copy_character): New function, used to output
15874 single characters while replacing `[' and `]' with quadrigraphs, to
15875 avoid troubles with M4 quotes.
15876 (copy_comment): Output characters with copy_character.
15877 (read_additionnal_code): Likewise.
15878 (copy_string2): Likewise.
15879 (copy_definition): Likewise.
15880
15881 * tests/calc.at: Exercise M4 quoting.
15882
15883 2002-04-25 Akim Demaille <akim@epita.fr>
15884
15885 * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
15886 between `!' and the command.
15887 Reported by Paul Eggert.
15888
15889 2002-04-24 Robert Anisko <robert@lrde.epita.fr>
15890
15891 * tests/calc.at: Exercise prologue splitting.
15892
15893 * data/bison.simple, data/bison.c++: Use `b4_pre_prologue' and
15894 `b4_post_prologue' instead of `b4_prologue'.
15895
15896 * src/output.c (prepare): Add the `pre_prologue' and `post_prologue'
15897 muscles.
15898 (output): Free pre_prologue_obstack and post_prologue_obstack.
15899 * src/files.h, src/files.c (attrs_obstack): Remove.
15900 (pre_prologue_obstack, post_prologue_obstack): New.
15901 * src/reader.c (copy_definition): Add a parameter to specify the
15902 obstack to fill, instead of using attrs_obstack unconditionally.
15903 (read_declarations): Pass pre_prologue_obstack to copy_definition if
15904 `%union' has not yet been seen, pass post_prologue_obstack otherwise.
15905
15906 2002-04-23 Paul Eggert <eggert@twinsun.com>
15907
15908 * data/bison.simple: Remove unnecessary commentary and white
15909 space differences from 1_29-branch.
15910 Depend on YYERROR_VERBOSE, not defined (YYERROR_VERBOSE).
15911
15912 (union yyalloc, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYCOPY,
15913 YYSTACK_RELOCATE): Do not define if yyoverflow is defined, or
15914 if this is a C++ parser and YYSTYPE or YYLTYPE has nontrivial
15915 constructors or destructors.
15916
15917 (yyparse) [! defined YYSTACK_RELOCATE]: Do not relocate the stack.
15918
15919 2002-04-23 Akim Demaille <akim@epita.fr>
15920
15921 * tests/sets.at (AT_EXTRACT_SETS): Don't use 8 char long sed labels.
15922 * tests/synclines.at (AT_TEST_SYNCLINE): Be robust to GCC's
15923 location with columns.
15924 * tests/conflicts.at (%nonassoc and eof): Don't use `error.h'.
15925 All reported by Paul Eggert.
15926
15927 2002-04-22 Akim Demaille <akim@epita.fr>
15928
15929 * src/reduce.c (dump_grammar): Move to...
15930 * src/gram.h, src/gram.c (grammar_dump): here.
15931 Be sure to separate long item numbers.
15932 Don't read the members of a rule's prec if its nil.
15933
15934 2002-04-22 Akim Demaille <akim@epita.fr>
15935
15936 * src/output.c (table_size, table_grow): New.
15937 (MAXTABLE): Remove, replace uses with table_size.
15938 (pack_vector): Instead of dying when the table is too big, grow it.
15939
15940 2002-04-22 Akim Demaille <akim@epita.fr>
15941
15942 * data/bison.simple (yyr1): Its type is that of a token number.
15943 * data/bison.c++ (r1_): Likewise.
15944 * tests/regression.at (Web2c Actions): Adjust.
15945
15946 2002-04-22 Akim Demaille <akim@epita.fr>
15947
15948 * src/reader.c (token_translations_init): 256 is now the default
15949 value for the error token, i.e., it will be assigned another
15950 number if the user assigned 256 to one of her tokens.
15951 (reader): Don't force 256 to error.
15952 * doc/bison.texinfo (Symbols): Adjust.
15953 * tests/torture.at (AT_DATA_HORIZONTAL_GRAMMAR)
15954 (AT_DATA_TRIANGULAR_GRAMMAR): Number the tokens as 1, 2, 3
15955 etc. instead of 10, 20, 30 (which was used to `jump' over error
15956 (256) and undefined (2)).
15957
15958 2002-04-22 Akim Demaille <akim@epita.fr>
15959
15960 Propagate more token_number_t.
15961
15962 * src/gram.h (token_number_as_item_number)
15963 (item_number_as_token_number): New.
15964 * src/output.c (GENERATE_OUTPUT_TABLE): New.
15965 Use it to create output_item_number_table and
15966 output_token_number_table.
15967 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
15968 * src/lex.c, src/nullable.c, src/output.c, src/print.c,
15969 * src/print_graph.c, src/reader.c, src/reduce.c, src/state.h,
15970 * src/symtab.c, src/symtab.h: Use token_number_t instead of shorts.
15971
15972 2002-04-22 Akim Demaille <akim@epita.fr>
15973
15974 * src/output.h, src/output.c (get_lines_number): Remove.
15975
15976 2002-04-19 Akim Demaille <akim@epita.fr>
15977
15978 * doc/bison.texinfo (Actions): Make clear that `|' is not the same
15979 as Lex/Flex'.
15980 (Debugging): More details about enabling the debugging features.
15981 (Table of Symbols): Describe $$, $n, @$, and @n.
15982 Suggested by Tim Josling.
15983
15984 2002-04-19 Akim Demaille <akim@epita.fr>
15985
15986 * doc/bison.texinfo: Remove the uses of the obsolete @refill.
15987
15988 2002-04-10 Akim Demaille <akim@epita.fr>
15989
15990 * src/system.h: Rely on HAVE_LIMITS_H.
15991 Suggested by Paul Eggert.
15992
15993 2002-04-09 Akim Demaille <akim@epita.fr>
15994
15995 * tests/calc.at (_AT_CHECK_CALC_ERROR): Receive as argument the
15996 full stderr, and strip it according to the bison options, instead
15997 of composing the error message from different bits.
15998 This makes it easier to check for several error messages.
15999 Adjust all the invocations.
16000 Add an invocation exercising the error token.
16001 Add an invocation demonstrating a stupid error message.
16002 (_AT_DATA_CALC_Y): Follow the GCS: initial column is 1, not 0.
16003 Adjust the tests.
16004 Error message are for stderr, not stdout.
16005
16006 2002-04-09 Akim Demaille <akim@epita.fr>
16007
16008 * src/gram.h, src/gram.c (error_token_number): Remove, use
16009 errtoken->number.
16010 * src/reader.c (reader): Don't specify the user token number (2)
16011 for $undefined, as it uselessly prevents using it.
16012 * src/gram.h (token_number_t): Move to...
16013 * src/symtab.h: here.
16014 (state_t.number): Is a token_number_t.
16015 * src/print.c, src/reader.c: Use undeftoken->number instead of
16016 hard coded 2.
16017 (Even though this 2 is not the same as above: the number of the
16018 undeftoken remains being 2, it is its user token number which
16019 might not be 2).
16020 * src/output.c (prepare_tokens): Rename the `maxtok' muscle with
16021 `user_token_number_max'.
16022 Output `undef_token_number'.
16023 * data/bison.simple, data/bison.c++: Use them.
16024 Be sure to map invalid yylex return values to
16025 `undef_token_number'. This saves us from gratuitous SEGV.
16026
16027 * tests/conflicts.at (Solved SR Conflicts)
16028 (Unresolved SR Conflicts): Adjust.
16029 * tests/regression.at (Web2c Actions): Adjust.
16030
16031 2002-04-08 Akim Demaille <akim@epita.fr>
16032
16033 * data/bison.c++: s/b4_item_number_max/b4_rhs_number_max/.
16034 Adding #line.
16035 Remove the duplicate `typedefs'.
16036 (RhsNumberType): Fix the declaration and various other typos.
16037 Use __ofile__.
16038 * data/bison.simple: Use __ofile__.
16039 * src/scan-skel.l: Handle __ofile__.
16040
16041 2002-04-08 Akim Demaille <akim@epita.fr>
16042
16043 * src/gram.h (item_number_t): New, the type of item numbers in
16044 RITEM. Note that it must be able to code symbol numbers as
16045 positive number, and the negation of rule numbers as negative
16046 numbers.
16047 Adjust all dependencies (pretty many).
16048 * src/reduce.c (rule): Remove this `short *' pointer: use
16049 item_number_t.
16050 * src/system.h (MINSHORT, MAXSHORT): Remove.
16051 Include `limits.h'.
16052 Adjust dependencies to using SHRT_MAX and SHRT_MIN.
16053 (shortcpy): Remove.
16054 (MAXTABLE): Move to...
16055 * src/output.c (MAXTABLE): here.
16056 (prepare_rules): Use output_int_table to output rhs.
16057 * data/bison.simple, data/bison.c++: Adjust.
16058 * tests/torture.at (Big triangle): Move the limit from 254 to
16059 500.
16060 * tests/regression.at (Web2c Actions): Ajust.
16061
16062 Trying with bigger grammars shows various phenomena: at 3000 (28Mb
16063 of grammar file) bison is killed by my system, at 2000 (12Mb) bison
16064 passes, but produces negative #line number, once fixed, GCC is
16065 killed while compiling 14Mb, at 1500 (6.7 Mb of grammar, 8.2Mb of
16066 C), it passes.
16067 * src/state.h (state_h): Code input lines on ints, not shorts.
16068
16069 2002-04-08 Akim Demaille <akim@epita.fr>
16070
16071 * src/reduce.c (reduce_grammar): First reduce the nonterminals,
16072 and then the grammar.
16073
16074 2002-04-08 Akim Demaille <akim@epita.fr>
16075
16076 * src/system.h: No longer using strndup.
16077
16078 2002-04-07 Akim Demaille <akim@epita.fr>
16079
16080 * src/muscle_tab.h (MUSCLE_INSERT_LONG_INT): New.
16081 * src/output.c (output_table_data): Return the longest number.
16082 (prepare_tokens): Output `token_number_max').
16083 * data/bison.simple, data/bison.c++ (b4_sint_type, b4_uint_type):
16084 New.
16085 Use them to define yy_token_number_type/TokenNumberType.
16086 Use this type for yytranslate.
16087 * tests/torture.at (Big triangle): Push the limit from 124 to
16088 253.
16089 * tests/regression.at (Web2c Actions): Adjust.
16090
16091 2002-04-07 Akim Demaille <akim@epita.fr>
16092
16093 * tests/torture.at (Big triangle): New.
16094 (GNU AWK Grammar, GNU Cim Grammar): Move to...
16095 * tests/existing.at: here.
16096
16097 2002-04-07 Akim Demaille <akim@epita.fr>
16098
16099 * src/gram.h, src/gram.c (nitems): Remove, it is an alias of
16100 nritems.
16101 Adjust dependencies.
16102
16103 2002-04-07 Akim Demaille <akim@epita.fr>
16104
16105 * src/reader.c: Normalize increments to prefix form.
16106
16107 2002-04-07 Akim Demaille <akim@epita.fr>
16108
16109 * src/reader.c, symtab.c: Remove debugging code.
16110
16111 2002-04-07 Akim Demaille <akim@epita.fr>
16112
16113 Rename all the `bucket's as `symbol_t'.
16114
16115 * src/gram.c, src/gram.h, src/lex.c, src/lex.h, src/output.c,
16116 * src/reader.c, src/reader.h, src/reduce.c, src/state.h,
16117 * src/symtab.c, src/symtab.h (bucket): Rename as...
16118 (symbol_t): this.
16119 (symbol_list_new, bucket_check_defined, bucket_make_alias)
16120 (bucket_check_alias_consistence, bucket_pack, bucket_translation)
16121 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
16122 (buckets_new, buckets_free, buckets_do): Rename as...
16123 (symbol_list_new, symbol_check_defined, symbol_make_alias)
16124 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
16125 (symbol_new, symbol_free, hash_compare_symbol_t, hash_symbol_t)
16126 (symbols_new, symbols_free, symbols_do): these.
16127
16128 2002-04-07 Akim Demaille <akim@epita.fr>
16129
16130 Use lib/hash for the symbol table.
16131
16132 * src/gram.c (ntokens): Initialize to 1, to reserve a slot for
16133 EOF.
16134 * src/lex.c (lex): Set the `number' member of new terminals.
16135 * src/reader.c (bucket_check_defined, bucket_make_alias)
16136 (bucket_check_alias_consistence, bucket_translation): New.
16137 (reader, grammar_free, readgram, token_translations_init)
16138 (packsymbols): Adjust.
16139 (reader): Number the predefined tokens.
16140 * src/reduce.c (inaccessable_symbols): Just use hard coded numbers
16141 for predefined tokens.
16142 * src/symtab.h (bucket): Remove all the hash table related
16143 members.
16144 * src/symtab.c (symtab): Replace by...
16145 (bucket_table): this.
16146 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
16147 (buckets_new, buckets_do): New.
16148
16149 2002-04-07 Akim Demaille <akim@epita.fr>
16150
16151 * src/gram.c (nitems, nrules, nsyms, ntokens, nvars, nritems)
16152 (start_symbol, max_user_token_number, semantic_parser)
16153 (error_token_number): Initialize.
16154 * src/reader.c (grammar, start_flag, startval, typed, lastprec):
16155 Initialize.
16156 (reader): Don't.
16157 (errtoken, eoftoken, undeftoken, axiom): Extern.
16158
16159 2002-04-07 Akim Demaille <akim@epita.fr>
16160
16161 * src/gram.h (rule_s): prec and precsym are now pointers
16162 to the bucket giving the priority/associativity.
16163 Member `associativity' removed: useless.
16164 * src/reduce.c, src/conflicts.c: Adjust.
16165
16166 2002-04-07 Akim Demaille <akim@epita.fr>
16167
16168 * src/lalr.c, src/LR0.c, src/closure.c, src/gram.c, src/reduce.c:
16169 Properly escape the symbols' TAG when outputting them.
16170
16171 2002-04-07 Akim Demaille <akim@epita.fr>
16172
16173 * src/lalr.h (LA): Is a bitsetv, not bitset*.
16174
16175 2002-04-07 Akim Demaille <akim@epita.fr>
16176
16177 * src/lalr.h, src/lalr.c (LAruleno): Replace with...
16178 (LArule): this, which is an array to rule_t*.
16179 * src/print.c, src/conflicts.c: Adjust.
16180
16181 2002-04-07 Akim Demaille <akim@epita.fr>
16182
16183 * src/gram.h (rule_t): Rename `number' as `user_number'.
16184 `number' is a new member.
16185 Adjust dependencies.
16186 * src/reduce.c (reduce_grammar_tables): Renumber rule_t.number.
16187
16188 2002-04-07 Akim Demaille <akim@epita.fr>
16189
16190 As a result of the previous patch, it is no longer needed
16191 to reorder ritem itself.
16192
16193 * src/reduce.c (reduce_grammar_tables): Don't sort RITEM.
16194
16195 2002-04-07 Akim Demaille <akim@epita.fr>
16196
16197 Be sure never to walk through RITEMS, but use only data related to
16198 the rules themselves. RITEMS should be banished.
16199
16200 * src/output.c (output_token_translations): Rename as...
16201 (prepare_tokens): this.
16202 In addition to `translate', prepare the muscles `tname' and
16203 `toknum', which were handled by...
16204 (output_rule_data): this.
16205 Remove, and move the remainder of its outputs into...
16206 (prepare_rules): this new routines, which also merges content from
16207 (output_gram): this.
16208 (prepare_rules): Be sure never to walk through RITEMS.
16209 (output_stos): Rename as...
16210 (prepare_stos): this.
16211 (output): Always invoke prepare_states, after all, just don't use it
16212 in the output if you don't need it.
16213
16214 2002-04-07 Akim Demaille <akim@epita.fr>
16215
16216 * src/LR0.c (new_state): Display `nstates' as the name of the
16217 newly created state.
16218 Adjust to initialize first_state and last_state if needed.
16219 Be sure to distinguish the initial from the final state.
16220 (new_states): Create the itemset of the initial state, and use
16221 new_state.
16222 * src/closure.c (closure): Now that the initial state has its
16223 items properly set, there is no need for a special case when
16224 creating `ruleset'.
16225
16226 As a result, now the rule 0, reducing to $axiom, is visible in the
16227 outputs. Adjust the test suite.
16228
16229 * tests/conflicts.at (Solved SR Conflicts)
16230 (Unresolved SR Conflicts): Adjust.
16231 * tests/regression.at (Web2c Report, Rule Line Numbers): Idem.
16232 * tests/conflicts.at (S/R in initial): New.
16233
16234 2002-04-07 Akim Demaille <akim@epita.fr>
16235
16236 * src/LR0.c (allocate_itemsets): Don't loop over ritem: loop over
16237 the RHS of the rules.
16238 * src/output.c (output_gram): Likewise.
16239
16240 2002-04-07 Akim Demaille <akim@epita.fr>
16241
16242 * src/gram.h (rule_t): `lhs' is now a pointer to the symbol's
16243 bucket.
16244 Adjust all dependencies.
16245 * src/reduce.c (nonterminals_reduce): Don't forget to renumber the
16246 `number' of the buckets too.
16247 * src/gram.h: Include `symtab.h'.
16248 (associativity): Move to...
16249 * src/symtab.h: here.
16250 No longer include `gram.h'.
16251
16252 2002-04-07 Akim Demaille <akim@epita.fr>
16253
16254 * src/gram.h, src/gram.c (rules_rhs_length): New.
16255 (ritem_longest_rhs): Use it.
16256 * src/gram.h (rule_t): `number' is a new member.
16257 * src/reader.c (packgram): Set it.
16258 * src/reduce.c (reduce_grammar_tables): Move the useless rules at
16259 the end of `rules', and count them out of `nrules'.
16260 (reduce_output, dump_grammar): Adjust.
16261 * src/print.c (print_grammar): It is no longer needed to check for
16262 the usefulness of a rule, as useless rules are beyond `nrules + 1'.
16263 * tests/reduce.at (Reduced Automaton): New test.
16264
16265 2002-04-07 Akim Demaille <akim@epita.fr>
16266
16267 * src/reduce.c (inaccessable_symbols): Fix a buglet: because of a
16268 lacking `+ 1' to nrules, Bison reported as useless a token if it
16269 was used solely to set the precedence of the last rule...
16270
16271 2002-04-07 Akim Demaille <akim@epita.fr>
16272
16273 * data/bison.c++, data/bison.simple: Don't output the current file
16274 name in #line, to avoid useless diffs between two identical
16275 outputs under different names.
16276
16277 2002-04-07 Akim Demaille <akim@epita.fr>
16278
16279 * src/closure.c, src/print.c, src/reader.c, src/reduce.c:
16280 Normalize loops to using `< nrules + 1', not `<= nrules'.
16281
16282 2002-04-07 Akim Demaille <akim@epita.fr>
16283
16284 * TODO: Update.
16285
16286 2002-04-07 Akim Demaille <akim@epita.fr>
16287
16288 * src/output.c, src/reader.c, src/symtab.c, src/symtab.h: Rename
16289 bucket.value as bucket.number.
16290
16291 2002-04-07 Akim Demaille <akim@epita.fr>
16292
16293 * src/closure.c, src/derives.c, src/gram.h, src/lalr.c,
16294 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
16295 * src/reader.c, src/reduce.c: Let rule_t.rhs point directly to the
16296 RHS, instead of being an index in RITEMS.
16297
16298 2002-04-04 Paul Eggert <eggert@twinsun.com>
16299
16300 * doc/bison.texinfo: Update copyright date.
16301 (Rpcalc Lexer, Symbols, Token Decl): Don't assume ASCII.
16302 (Symbols): Warn about running Bison in one character set,
16303 but compiling and/or running in an incompatible one.
16304 Warn about character code 256, too.
16305
16306 2002-04-03 Paul Eggert <eggert@twinsun.com>
16307
16308 * src/bison.data (YYSTACK_ALLOC): Depend on whether
16309 YYERROR_VERBOSE is nonzero, not whether it is defined.
16310
16311 Merge changes from bison-1_29-branch.
16312
16313 2002-03-20 Paul Eggert <eggert@twinsun.com>
16314
16315 Merge fixes from Debian bison_1.34-1.diff.
16316
16317 * configure.in (AC_PREREQ): 2.53.
16318
16319 2002-03-20 Akim Demaille <akim@epita.fr>
16320
16321 * src/conflicts.c (log_resolution): Argument `resolution' is const.
16322
16323 2002-03-19 Paul Eggert <eggert@twinsun.com>
16324
16325 * src/bison.simple (YYCOPY): New macro.
16326 (YYSTACK_RELOCATE): Use it.
16327 Remove Type arg; no longer needed. All callers changed.
16328 (yymemcpy): Remove; no longer needed.
16329
16330 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
16331 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
16332
16333 2002-03-19 Akim Demaille <akim@epita.fr>
16334
16335 Test and fix the #line outputs.
16336
16337 * tests/atlocal.at (GCC): New.
16338 * tests/synclines.at (AT_TEST_SYNCLINE): New macro.
16339 (Prologue synch line, %union synch line, Postprologue synch line)
16340 (Action synch line, Epilogue synch line): New tests.
16341 * src/reader.c (parse_union_decl): Define the muscle stype_line.
16342 * data/bison.simple, data/bison.c++: Use it.
16343
16344 2002-03-19 Akim Demaille <akim@epita.fr>
16345
16346 * tests/regression.at (%nonassoc and eof, Unresolved SR Conflicts)
16347 (Solved SR Conflicts, %expect not enough, %expect right)
16348 (%expect too much): Move to...
16349 * tests/conflicts.at: this new file.
16350
16351 2002-03-19 Akim Demaille <akim@epita.fr>
16352
16353 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
16354 * data/bison.simple, data/bison.c++: Handle the `#define' part, so
16355 that we can move to enums for instance.
16356 * src/output.c (token_definitions_output): Output a list of
16357 `token-name, token-number' instead of the #define.
16358 (output_skeleton): Name this list `b4_tokens', not `b4_tokendefs'.
16359
16360 2002-03-14 Akim Demaille <akim@epita.fr>
16361
16362 Use Gettext 0.11.1.
16363
16364 2002-03-09 Robert Anisko <robert@lrde.epita.fr>
16365
16366 * data/bison.c++: Make the user able to add members to the generated
16367 parser by subclassing.
16368
16369 2002-03-05 Robert Anisko <robert@lrde.epita.fr>
16370
16371 * src/reader.c (read_additionnal_code): `c' should be an integer, not
16372 a character.
16373 Reported by Nicolas Tisserand and Nicolas Burrus.
16374
16375 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
16376
16377 * src/reader.c: Warn about lacking semi-colons, do not complain.
16378
16379 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
16380
16381 * data/bison.c++: Remove a debug line.
16382
16383 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
16384
16385 * data/bison.c++: Unmerge value as yylval and value as yyval. Unmerge
16386 location as yylloc and location as yyloc. Use YYLLOC_DEFAULT, and
16387 provide a default implementation.
16388
16389 2002-03-04 Akim Demaille <akim@epita.fr>
16390
16391 * tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
16392 * tests/output.at (AT_CHECK_OUTPUT): Likewise.
16393 * tests/headers.at (AT_TEST_CPP_GUARD_H): Ditto.
16394 * tests/semantic.at (Parsing Guards): Similarly.
16395 * src/reader.at (readgram): Complain if the last rule is not ended
16396 with a semi-colon.
16397
16398 2002-03-04 Akim Demaille <akim@epita.fr>
16399
16400 * src/warshall.h, src/warshall.c (bitmatrix_print): Move to...
16401 * src/closure.c: here.
16402 (set_firsts): Use bitsetv_reflexive_transitive_closure instead of
16403 RTC.
16404 * src/warshall.h, src/warshall.c: Remove.
16405 * tests/sets.at (Broken Closure): Adjust.
16406
16407 2002-03-04 Akim Demaille <akim@epita.fr>
16408
16409 * src/output.c (output_skeleton): tempdir is const.
16410 bytes_read is unused.
16411
16412 2002-03-04 Akim Demaille <akim@epita.fr>
16413
16414 * lib/bbitset.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
16415 * lib/bitsetv.h, lib/ebitset.c, lib/lbitset.c, lib/sbitset.c:
16416 Update.
16417 From Michael Hayes.
16418
16419 2002-03-04 Akim Demaille <akim@epita.fr>
16420
16421 * src/closure.c (closure): `r' is unused.
16422
16423 2002-03-04 Akim Demaille <akim@epita.fr>
16424
16425 * tests/sets.at (Broken Closure): Add the ending `;'.
16426 * src/reader.at (readgram): Complain if a rule is not ended with a
16427 semi-colon.
16428
16429 2002-03-04 Akim Demaille <akim@epita.fr>
16430
16431 * src/conflicts.c (set_conflicts): Use bitset_disjoint_p.
16432 (count_sr_conflicts): Use bitset_count.
16433 * src/reduce.c (inaccessable_symbols): Ditto.
16434 (bits_size): Remove.
16435 * src/warshall.h, src/warshall.c: Convert to bitsetv.
16436
16437 2002-03-04 Akim Demaille <akim@epita.fr>
16438
16439 * src/closure.c, src/conflicts.c, src/lalr.c, src/print.c,
16440 * src/reduce.c: Remove the `bitset_zero's following the
16441 `bitset_create's, as now it is performed by the latter.
16442
16443 2002-03-04 Akim Demaille <akim@epita.fr>
16444
16445 * lib/bitset.c, lib/bitset.h, lib/bitsetv.c, lib/bitsetv.h,
16446 * lib/ebitset.c, lib/ebitset.h, lib/lbitset.c, lib/lbitset.h,
16447 * lib/sbitset.c, lib/sbitset.h, lib/bbitset.h: Update from the
16448 latest sources from Michael.
16449
16450 2002-03-04 Akim Demaille <akim@epita.fr>
16451
16452 * src/output.c (output): Don't free the grammar.
16453 * src/reader.c (grammar_free): New.
16454 * src/main.c (main): Call it and don't free symtab here.
16455
16456 2002-03-04 Akim Demaille <akim@epita.fr>
16457
16458 * src/lex.c (parse_percent_token): Be sure to 0-end token_buffer
16459 before returning.
16460 Reported by Benoit Perrot.
16461
16462 2002-03-04 Akim Demaille <akim@epita.fr>
16463
16464 Use bitset operations when possible, not loops over bits.
16465
16466 * src/conflicts.c (set_conflicts, count_sr_conflicts): Use
16467 bitset_or.
16468 * src/print.c (print_reductions): Use bitset_and, bitset_andn.
16469 * src/reduce.c (useless_nonterminals): Formatting changes.
16470 * src/warshall.c (TC): Use bitset_or.
16471
16472 2002-03-04 Akim Demaille <akim@epita.fr>
16473
16474 * src/lalr.h, src/lalr.c (tokensetsize): Remove, unused.
16475 * src/system.h (BITS_PER_WORD, WORDSIZE, SETBIT, RESETBIT, BITISSET):
16476 Ditto.
16477
16478 2002-03-04 Akim Demaille <akim@epita.fr>
16479
16480 * src/lalr.c (F): Now a bitset*.
16481 Adjust all dependencies.
16482
16483 2002-03-04 Akim Demaille <akim@epita.fr>
16484
16485 * src/conflicts.c (shiftset, lookaheadset): Now bitset.
16486 Adjust all dependencies.
16487
16488 2002-03-04 Akim Demaille <akim@epita.fr>
16489
16490 * src/L0.c, src/LR0.h (nstates): Be size_t.
16491 Adjust comparisons (signed vs unsigned).
16492 * src/conflics.c, src/lalr.c, src/lalr.h, src/output.c (LA): Now a
16493 bitset*.
16494 Adjust all dependencies.
16495
16496 2002-03-04 Akim Demaille <akim@epita.fr>
16497
16498 * src/closure.c (firsts): Now, also a bitset.
16499 Adjust all dependencies.
16500 (varsetsize): Remove, now unused.
16501 * src/warshall.h, src/warshall.c: Now work on arrays of bitsets.
16502
16503 2002-03-04 Akim Demaille <akim@epita.fr>
16504
16505 * src/print.c: Convert to use bitset.h, not hand coded iterations
16506 over ints.
16507
16508 2002-03-04 Akim Demaille <akim@epita.fr>
16509
16510 * src/reduce.c: Convert to use bitset.h, not hand coded BSet.
16511
16512 2002-03-04 Akim Demaille <akim@epita.fr>
16513
16514 * src/closure.c (ruleset): Be a bitset.
16515 (rulesetsize): Remove.
16516
16517 2002-03-04 Akim Demaille <akim@epita.fr>
16518
16519 * lib/bitset-int.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
16520 * lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/lbitset.c,
16521 * lib/lbitset.h, lib/sbitset.c, lib/sbitset.h: New.
16522 * src/closure.c (fderives): Be an array of bitsets.
16523
16524 2002-02-28 Robert Anisko <robert@lrde.epita.fr>
16525
16526 * data/bison.c++: Merge the two generated headers. Insert a copyright
16527 notice in each output file.
16528
16529 2002-02-28 Akim Demaille <akim@epita.fr>
16530
16531 * data/bison.c++: Copy the prologue of bison.simple to fetch
16532 useful M4 definitions, such as b4_header_guard.
16533
16534 2002-02-25 Akim Demaille <akim@epita.fr>
16535
16536 * src/getargs.c (version): Give the name of the authors, and use a
16537 translator friendly scheme for the bgr
16538 copyright notice.
16539
16540 2002-02-25 Akim Demaille <akim@epita.fr>
16541
16542 * src/output.c (header_output): Remove, now handled completely via
16543 M4.
16544
16545 2002-02-25 Akim Demaille <akim@epita.fr>
16546
16547 * m4/m4.m4: New, from CVS Autoconf.
16548 * configure.in: Invoke it.
16549 * src/output.c (output_skeleton): Use its result instead of the
16550 hard coded name.
16551
16552 2002-02-25 Akim Demaille <akim@epita.fr>
16553
16554 * lib/tempname.c, lib/mkstemp.c, m4/mkstemp.m4: New, stolen from
16555 Fileutils 4.1.5.
16556 * configure.in: Invoke UTILS_FUNC_MKSTEMP.
16557 * src/output.c (output_skeleton): Use mkstemp to create a real
16558 temporary file.
16559 Move the filling of `skeleton' and its muscle to...
16560 (prepare): here.
16561 (output): Move the definition of the prologue muscle to...
16562 (prepare): here.
16563 * src/system.h (DEFAULT_TMPDIR): New.
16564
16565 2002-02-14 Paul Eggert <eggert@twinsun.com>
16566
16567 Remove the support for C++ namespace cleanliness; it was
16568 causing more problems than it was curing, since it didn't work
16569 properly on some nonstandard C++ compilers. This can wait
16570 for a proper C++ parser.
16571
16572 * NEWS: Document this.
16573 * doc/bison.texinfo (Bison Parser, Debugging): Remove special mention
16574 of C++, as it's treated like C now.
16575 * src/bison.simple (YYSTD): Remove.
16576 (YYSIZE_T, YYFPRINTF, YYPARSE_PARAM_ARG, YYPARSE_PARAM_DECL):
16577 Treat C++ just like Standard C instead of trying to support
16578 namespace cleanliness.
16579
16580 2002-02-14 Akim Demaille <akim@epita.fr>
16581
16582 * tests/regression.at (else): Adjust to Andreas' change.
16583
16584 2002-02-14 Akim Demaille <akim@epita.fr>
16585
16586 * lib/Makefile.am (EXTRA_DIST): Ship strnlen.c.
16587
16588 2002-02-13 Andreas Schwab <schwab@suse.de>
16589
16590 * src/output.c (output_rule_data): Don't output NULL, it might
16591 not be defined yet.
16592
16593 2002-02-11 Robert Anisko <robert@lrde.epita.fr>
16594
16595 * data/bison.c++ (YYDEBUG, YYERROR_VERBOSE): After the prologue.
16596 (Copyright notice): Update.
16597
16598 2002-02-11 Akim Demaille <akim@epita.fr>
16599
16600 * tests/regression.at (%nonassoc and eof): Don't include
16601 nonportable headers.
16602
16603 2002-02-08 Robert Anisko <robert@lrde.epita.fr>
16604
16605 * data/bison.c++: Correct error recovery. Make the user able to
16606 initialize the starting location.
16607
16608 2002-02-07 Akim Demaille <akim@epita.fr>
16609
16610 * tests/input.at: New.
16611
16612 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
16613
16614 * data/bison.c++: Replace some direct m4 expansions by constants. Be
16615 more consistent when naming methods and variables. Put preprocessor
16616 directives around tables only needed for debugging.
16617
16618 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
16619
16620 * data/bison.c++ (yy::b4_name::print_): New method, replaces yyprint in
16621 C++ parsers.
16622 (yy::b4_name::parse): Use print_.
16623
16624 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
16625
16626 * data/bison.c++ (yy::b4_name::parse): Error recovery is back.
16627
16628 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
16629
16630 * data/bison.c++ (yy::b4_name::error_): New method, replaces yyerror in
16631 C++ parsers.
16632 (yy::b4_name::parse): Build verbose error messages, and use error_.
16633
16634 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
16635
16636 * data/bison.c++: Fix m4 quoting in comments.
16637
16638 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
16639
16640 * data/bison.c++: Adjust the parser code. Fix some muscles that were
16641 not expanded by m4.
16642
16643 2002-02-05 Akim Demaille <akim@epita.fr>
16644
16645 * data/bison.c++: Adjust to the M4 back end.
16646 More is certainly needed.
16647
16648 2002-02-05 Akim Demaille <akim@epita.fr>
16649
16650 Give a try to M4 as a back end.
16651
16652 * lib/readpipe.c: New, from wdiff.
16653 * src/Makefile.am (DEFS): Define PKGDATADIR, not BISON_SIMPLE and
16654 BISON_HAIRY.
16655 * src/system.h (BISON_HAIRY, BISON_SIMPLE): Remove the DOS and VMS
16656 specific values. Now it is m4 that performs the lookup.
16657 * src/parse-skel.y: Remove.
16658 * src/muscle_tab.c, src/muscle_tab.h (muscles_m4_output): New.
16659 * src/output.c (actions_output, guards_output)
16660 (token_definitions_output): No longer keeps track of the output
16661 line number, hence remove the second argument.
16662 (guards_output): Check against the guard member of a rule, not the
16663 action member.
16664 Adjust callers.
16665 (output_skeleton): Don't look for the skeleton location, let m4 do
16666 that.
16667 Create `/tmp/muscles.m4'. This is temporary, a proper temporary
16668 file will be used.
16669 Invoke `m4' on m4sugar.m4, muscles.m4, and the skeleton.
16670 (prepare): Given that for the time being changesyntax is not
16671 usable in M4, rename the muscles using `-' to `_'.
16672 Define `defines_flag', `output_parser_name' and `output_header_name'.
16673 * src/output.h (actions_output, guards_output)
16674 (token_definitions_output): Adjust prototypes.
16675 * src/scan-skel.l: Instead of scanning the skeletons, it now
16676 processes the output of m4: `__oline__' and `#output'.
16677 * data/bison.simple: Adjust to be used by M4(sugar).
16678 * tests/Makefile.am: Use check_SCRIPTS to make sure `bison' is up
16679 to date.
16680 * tests/bison.in: Use the secrete envvar `BISON_PKGDATADIR'
16681 instead of the dead `BISON_SIMPLE' and `BISON_HAIRY'.
16682 * data/m4sugar/m4sugar.m4, data/m4sugar/version.m4: New,
16683 shamelessly stolen from CVS Autoconf.
16684
16685 2002-02-05 Akim Demaille <akim@epita.fr>
16686
16687 * lib/hash.c, lib/hash.h: Replace with Fileutils 4.1's version.
16688 * configure.in: Check for the declarations of free and malloc.
16689 * src/muscle_tab.c: Adjust.
16690
16691 2002-02-05 Akim Demaille <akim@epita.fr>
16692
16693 * src/muscle_tab.c (muscle_init): Don't default to NULL muscle
16694 which have no values.
16695
16696 2002-02-05 Akim Demaille <akim@epita.fr>
16697
16698 * src/bison.simple, src/bison.hairy, src/bison.c++: Move to...
16699 * data/: here.
16700
16701 2002-01-29 Paul Eggert <eggert@twinsun.com>
16702
16703 * src/bison.simple (YYSIZE_T): Do not define merely because
16704 YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
16705 On some platforms, <alloca.h> does not declare YYSTD (size_t).
16706
16707 2002-01-27 Akim Demaille <akim@epita.fr>
16708
16709 Fix `%nonassoc and eof'.
16710
16711 * src/state.c (errs_dup): Aaaah! The failure was due to bytes
16712 which were not properly copied! Replace
16713 memcpy (res->errs, src->errs, src->nerrs);
16714 with
16715 memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
16716 !!!
16717 * tests/regression.at (%nonassoc and eof): Adjust to newest
16718 Autotest: `.' is not in the PATH.
16719
16720 2002-01-27 Akim Demaille <akim@epita.fr>
16721
16722 * tests/sets.at (AT_EXTRACT_SETS): New.
16723 (Nullable): Use it.
16724 (Firsts): New.
16725
16726 2002-01-26 Akim Demaille <akim@epita.fr>
16727
16728 * tests/actions.at, tests/calc.at, tests/headers.at,
16729 * tests/torture.at: Adjust to the newest Autotest which no longer
16730 forces `.' in the PATH.
16731
16732 2002-01-25 Akim Demaille <akim@epita.fr>
16733
16734 * tests/regression.at (%nonassoc and eof): New.
16735 Suggested by Robert Anisko.
16736
16737 2002-01-24 Akim Demaille <akim@epita.fr>
16738
16739 Bison dumps core when trying to complain about broken input files.
16740 Reported by Cris van Pelt.
16741
16742 * src/lex.c (parse_percent_token): Be sure to set token_buffer.
16743 * tests/regression.at (Invalid input: 1, Invalid input: 2): Merge
16744 into...
16745 (Invalid inputs): Strengthen: exercise parse_percent_token.
16746
16747 2002-01-24 Robert Anisko <robert.anisko@epita.fr>
16748
16749 * src/Makefile.am: Add bison.c++.
16750 * src/bison.c++: New skeleton.
16751
16752 2002-01-21 Paolo Bonzini <bonzini@gnu.org>
16753
16754 * po/it.po: New.
16755
16756 2002-01-21 Kees Zeelenberg <kzlg@users.sourceforge.net>
16757
16758 * src/files.c (skeleton_find) [MSDOS]: Fix cp definition.
16759
16760 2002-01-20 Marc Autret <marc@gnu.org>
16761
16762 * src/files.c (compute_output_file_names): Fix
16763
16764 2002-01-20 Marc Autret <marc@gnu.org>
16765
16766 * tests/output.at: New test.
16767 * src/files.c (compute_base_names): Don't map extensions when
16768 the YACC flag is set, use defaults.
16769 Reported by Evgeny Stambulchik.
16770
16771 2002-01-20 Marc Autret <marc@gnu.org>
16772
16773 * src/system.h: Need to define __attribute__ away for non-GCC
16774 compilers as well (i.e., the vendor C compiler).
16775 Suggested by Albert Chin-A-Young.
16776
16777 2002-01-11 Tim Van Holder <tim.van.holder@pandora.be>
16778
16779 * lib/hash.h, lib/hash.c: Renamed __P to PARAMS and used the
16780 canonical definition.
16781 * src/system.h: Use the canonical definition for PARAMS (avoids
16782 a conflict with the macro from lib/hash.h).
16783
16784 2002-01-11 Akim Demaille <akim@epita.fr>
16785
16786 * configure.in: Use AC_FUNC_STRNLEN.
16787 Fixes the failures observed on AIX 4.3 by H.Merijn Brand.
16788
16789 2002-01-09 Akim Demaille <akim@epita.fr>
16790
16791 * src/files.c, src/files.h (output_infix): New.
16792 (tab_extension): Remove.
16793 (compute_base_names): Compute the former, drop the latter.
16794 * src/output.c (prepare): Insert the muscles `output-infix', and
16795 `output-suffix'.
16796 * src/parse-skel.y (string, string.1): New.
16797 (section.header): Use it.
16798 (section.yacc): Remove.
16799 (prefix): Remove too.
16800 * src/scan-skel.l: Adjust.
16801 * src/bison.simple, src/bison.hairy: Adjust.
16802
16803 2002-01-09 Akim Demaille <akim@epita.fr>
16804
16805 * configure.in (WERROR_CFLAGS): Compute it.
16806 * src/Makefile.am (CFLAGS): Pass it.
16807 * tests/atlocal.in (CFLAGS): Idem.
16808 * src/files.c: Fix a few warnings.
16809 (get_extension_index): Remove, unused.
16810
16811 2002-01-08 Akim Demaille <akim@epita.fr>
16812
16813 * src/getargs.c (AS_FILE_NAME): New.
16814 (getargs): Use it to convert DOSish file names.
16815 * src/files.c (base_name): Rename as full_base_name to avoid
16816 clashes with `base_name ()'.
16817 (filename_split): New.
16818 (compute_base_names): N-th rewrite, using filename_split.
16819
16820 2002-01-08 Akim Demaille <akim@epita.fr>
16821
16822 * lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
16823 New, stolen from the Fileutils 4.1.
16824 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
16825 * configure.in: Check for the presence of memrchr, and of its
16826 prototype.
16827
16828 2002-01-07 Tim Van Holder <tim.van.holder@pandora.be>
16829
16830 * lib/hash.h (__P): Added definition for this macro.
16831 * src/Makefile.am: Add parse-skel.c and scan-skel.c to
16832 BUILT_SOURCES, to ensure they are generated first.
16833 * src/parse-skel.y: Use YYERROR_VERBOSE instead of
16834 %error-verbose to allow bootstrapping with bison 1.30x.
16835
16836 2002-01-06 Akim Demaille <akim@epita.fr>
16837
16838 * src/reader.c (parse_braces): Don't fetch the next char, the
16839 convention is to fetch on entry.
16840 * tests/torture.at (GNU Cim Grammar): Reintroduce their weird
16841 'switch' without a following semicolon.
16842 * tests/regression.at (braces parsing): New.
16843
16844 2002-01-06 Akim Demaille <akim@epita.fr>
16845
16846 Bison is dead wrong in its RR conflict reports.
16847
16848 * tests/torture.at (GNU Cim Grammar): New.
16849 * src/conflicts.c (count_rr_conflicts): Fix.
16850
16851 2002-01-06 Akim Demaille <akim@epita.fr>
16852
16853 Creating package.m4 from configure.ac causes too many problems.
16854
16855 * tests/Makefile.am (package.m4): Create it by hand,
16856 AC_CONFIG_TESTDIR no longer does in the most recent CVS Autoconf.
16857
16858 2002-01-06 Akim Demaille <akim@epita.fr>
16859
16860 * src/Makefile.am (bison_SOURCES): Add parse-skel.h and
16861 skeleton.h.
16862
16863 2002-01-04 Paul Eggert <eggert@twinsun.com>
16864
16865 * doc/bison.texinfo (Debugging):
16866 Remove YYSTDERR; it's no longer defined or used.
16867 Also, s/cstdio.h/cstdio/.
16868
16869 2002-01-03 Akim Demaille <akim@epita.fr>
16870
16871 * tests/bison.in, tests/atlocal.in: Adjust to CVS Autoconf.
16872
16873 2002-01-03 Akim Demaille <akim@epita.fr>
16874
16875 * src/parse-skel.y (process_skeleton): Don't bind the parser's
16876 tracing code to --trace, wait for a better --trace option, with
16877 args.
16878
16879 2002-01-03 Akim Demaille <akim@epita.fr>
16880
16881 * src/bison.simple (YYSTDERR): Remove, replace `stderr'.
16882 The ISO C++ standard is extremely clear about it: stderr is
16883 considered a macro, not a regular symbol (see table 94 `Header
16884 <cstdio> synopsis', [lib.c.files] 27.8.2 C Library files).
16885 Therefore std:: does not apply to it. It still does with fprintf.
16886 Also, s/cstdio.h/cstdio/.
16887
16888 2002-01-03 Akim Demaille <akim@epita.fr>
16889
16890 * lib/quotearg.c: Use `#include "..."' instead of `#include <...>'
16891 for non system headers.
16892
16893 2002-01-02 Akim Demaille <akim@epita.fr>
16894
16895 Equip the skeleton chain with location tracking, runtime trace,
16896 pure parser and scanner.
16897
16898 * src/parse-skel.y: Request a pure parser, locations, and prefix
16899 renaming.
16900 (%union): Having several members with the same type does not help
16901 type mismatches, simplify.
16902 (YYPRINT, yyprint): New.
16903 (yyerror): ``Rename'' (there is a #define yyerror skel_error) as...
16904 (skel_error): this.
16905 Handle locations.
16906 * src/scan-skel.l: Adjust to these changes.
16907 * src/skeleton.h (LOCATION_RESET, LOCATION_LINES, LOCATION_STEP)
16908 (LOCATION_PRINT, skel_control_t): New.
16909
16910 2001-12-30 Akim Demaille <akim@epita.fr>
16911
16912 * src/parse-skel.y: Get rid of the shift/reduce conflict:
16913 replace `gb' with BLANKS.
16914 * src/scan-skel.l: Adjust.
16915
16916 2001-12-30 Akim Demaille <akim@epita.fr>
16917
16918 * src/system.h: We don't need nor want bcopy.
16919 Throw away MS-DOS crap: we don't need getpid.
16920 * configure.in: We don't need strndup. It was even causing
16921 problems: because Flex includes the headers *before* us,
16922 _GNU_SOURCE is not defined by config.h, and therefore strndup was
16923 not visible.
16924 * lib/xstrndup.c: New.
16925 * src/scan-skel.l: Use it.
16926 Be sure to initialize yylval.muscle member when scanning a MUSCLE.
16927 * src/parse-skel.y: Use %directives instead of #defines.
16928
16929 2001-12-30 Akim Demaille <akim@epita.fr>
16930
16931 * src/skeleton.h: New.
16932 * src/output.c (output_parser, output_master_parser): Remove, dead
16933 code.
16934 * src/output.h (get_lines_number, actions_output, guards_output)
16935 (token_definitions_output): Prototype them.
16936 * src/parse-skel.y: Add the license notice.
16937 Include output.h and skeleton.h.
16938 (process_skeleton): Returns void, and takes a single parameter.
16939 * src/scan-skel.l: Add the license notice.
16940 Include skeleton.h.
16941 Don't use %option yylineno: it seems that then Flex imagines
16942 REJECT has been used, and therefore it won't reallocate its
16943 buffers (which makes no other sense to me than a bug). It results
16944 in warnings for `unused: yy_flex_realloc'.
16945
16946 2001-12-30 Robert Anisko <robert.anisko@epita.fr>
16947
16948 * src/muscle_tab.h (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
16949 (MUSCLE_INSERT_PREFIX): ...to there.
16950 * src/output.c (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
16951 (MUSCLE_INSERT_PREFIX): Move from here...
16952
16953 * src/bison.hairy: Add a section directive. Put braces around muscle
16954 names. This parser skeleton is still broken, but Bison should not
16955 choke on a bad muscle 'syntax'.
16956 * src/bison.simple: Add a section directive. Put braces around muscle
16957 names.
16958
16959 * src/files.h (strsuffix, stringappend): Add declarations.
16960 (tab_extension): Add declaration.
16961 (short_base_name): Add declaration.
16962
16963 * src/files.c (strsuffix, stringappend): No longer static. These
16964 functions are used in the skeleton parser.
16965 (tab_extension): New.
16966 (compute_base_names): Use the computations done in this function
16967 to guess if the generated parsers should have '.tab' in their
16968 names.
16969 (short_base_name): No longer static.
16970
16971 * src/output.c (output_skeleton): New.
16972 (output): Disable call to output_master_parser, and give a try to
16973 a new skeleton handling system.
16974 (guards_output, actions_output): No longer static.
16975 (token_definitions_output, get_lines_number): No longer static.
16976
16977 * configure.in: Use AM_PROG_LEX and AC_PROG_YACC.
16978
16979 * src/Makefile.am (bison_SOURCES): Add scan-skel.l and
16980 parse-skel.y.
16981
16982 * src/parse-skel.y: New file.
16983 * src/scan-skel.l: New file.
16984
16985 2001-12-29 Akim Demaille <akim@epita.fr>
16986
16987 %name-prefix is broken.
16988
16989 * src/files.c (spec_name_prefix): Initialize to NULL, not to "yy".
16990 Adjust all dependencies.
16991 * tests/headers.at (export YYLTYPE): Strengthen this test: use
16992 %name-prefix.
16993
16994 Renaming yylval but not yylloc is not consistent. Now we do.
16995
16996 * src/bison.simple: Prefix yylloc if used.
16997 * doc/bison.texinfo (Decl Summary): Document that.
16998
16999 2001-12-29 Akim Demaille <akim@epita.fr>
17000
17001 * doc/bison.texinfo: Promote `%long-directive' over
17002 `%long_directive'.
17003 Remove all references to fixed-output-files, yacc is enough.
17004
17005 2001-12-29 Akim Demaille <akim@epita.fr>
17006
17007 * src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the
17008 user prologue. These are defaults.
17009 * tests/actions.at (Mid-rule actions): Make sure the user can
17010 define YYDEBUG and YYERROR_VERBOSE.
17011
17012 2001-12-29 Akim Demaille <akim@epita.fr>
17013
17014 * src/output.c (header_output): Don't forget to export YYLTYPE and
17015 yylloc.
17016 * tests/headers.at (export YYLTYPE): New, make sure it does.
17017 * tests/regression.at (%union and --defines, Invalid CPP headers):
17018 Move to...
17019 * tests/headers.at: here.
17020
17021 2001-12-29 Akim Demaille <akim@epita.fr>
17022
17023 * src/gram.h (rule_s): Member `assoc' is of type `associativity'.
17024
17025 2001-12-29 Akim Demaille <akim@epita.fr>
17026
17027 * tests/actions.at (Mid-rule actions): Output on a single line
17028 instead of several.
17029
17030 2001-12-29 Akim Demaille <akim@epita.fr>
17031
17032 * doc/bison.texinfo: Formatting changes.
17033
17034 2001-12-29 Akim Demaille <akim@epita.fr>
17035
17036 Don't store the token defs in a muscle, just be ready to output it
17037 on command. Now possible via `symbols'. Fixes a memory leak.
17038
17039 * src/output.c (token_definitions_output): New.
17040 (output_parser, header_output): Use it.
17041 * src/reader.c (symbols_save): Remove.
17042
17043 2001-12-29 Akim Demaille <akim@epita.fr>
17044
17045 * src/bison.simple: Do not provide a default for YYSTYPE and
17046 YYLTYPE before the user's prologue. Otherwise it's hardly... a
17047 default.
17048
17049 2001-12-29 Akim Demaille <akim@epita.fr>
17050
17051 Mid-rule actions are simply... ignored!
17052
17053 * src/reader.c (readgram): Be sure to attach mid-rule actions to
17054 the empty-rule associated to the dummy symbol, not to the host
17055 rule.
17056 * tests/actions.at (Mid-rule actions): New.
17057
17058 2001-12-29 Akim Demaille <akim@epita.fr>
17059
17060 Memory leak.
17061
17062 * src/reader.c (reader): Free grammar.
17063
17064 2001-12-29 Akim Demaille <akim@epita.fr>
17065
17066 Memory leak.
17067
17068 * src/LR0.c (new_itemsets): Don't allocate `shift_symbol' here,
17069 since it allocates it for each state, although only one is needed.
17070 (allocate_storage): Do it here.
17071
17072 2001-12-29 Akim Demaille <akim@epita.fr>
17073
17074 * src/options.h, src/options.c (create_long_option_table): Rename
17075 as...
17076 (long_option_table_new): this, with a clearer prototype.
17077 (percent_table): Remove, unused,
17078 * src/getargs.c (getargs): Adjust.
17079
17080 2001-12-29 Akim Demaille <akim@epita.fr>
17081
17082 * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
17083 * src/print.c, src/print_graph.c, src/state.h: Rename state_table
17084 as states.
17085
17086 2001-12-29 Akim Demaille <akim@epita.fr>
17087
17088 * src/lalr.c (build_relations): Rename `states' as `states1'.
17089 Sorry, I don't understand exactly what it is, no better name...
17090
17091 2001-12-29 Akim Demaille <akim@epita.fr>
17092
17093 * src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
17094 * src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
17095 * src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
17096 as rules.
17097
17098 2001-12-29 Akim Demaille <akim@epita.fr>
17099
17100 * src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
17101 ago.
17102
17103 2001-12-29 Akim Demaille <akim@epita.fr>
17104
17105 * src/reader.c, src/reader.h (user_toknums): Remove.
17106 Adjust all users to use symbols[i]->user_token_number.
17107
17108 2001-12-29 Akim Demaille <akim@epita.fr>
17109
17110 * src/gram.c, src/gram.h (sprec, sassoc): Remove.
17111 Adjust all users to use symbols[i]->prec or ->assoc.
17112
17113 2001-12-29 Akim Demaille <akim@epita.fr>
17114
17115 * src/reader.c, src/reader.h (tags): Remove.
17116 Adjust all users to use symbols[i]->tag.
17117
17118 2001-12-29 Akim Demaille <akim@epita.fr>
17119
17120 * src/gram.h, src/gram.c (symbols): New, similar to state_table
17121 and rule_table.
17122 * src/reader.c (packsymbols): Fill this table.
17123 Drop sprec.
17124 * src/conflicts.c (resolve_sr_conflict): Adjust.
17125 * src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
17126 single table.
17127 Use symbols[i]->tag instead of tags[i].
17128
17129 2001-12-29 Akim Demaille <akim@epita.fr>
17130
17131 * tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
17132 In addition, put a comment in there, to replace...
17133 * tests/regression.at (%union and C comments): Remove.
17134
17135 2001-12-29 Akim Demaille <akim@epita.fr>
17136
17137 * tests/regression.at (Web2c Actions): Blindly move the actual
17138 output as expected output. The contents *seem* right to me, but I
17139 can't pretend reading perfectly parser tables... Nonetheless, all
17140 the other tests pass correctly, the table look OK, even though the
17141 presence of `$axiom' is to be noted: AFAICS it is useless (but
17142 harmless).
17143
17144 2001-12-29 Akim Demaille <akim@epita.fr>
17145
17146 * src/reader.c (readgram): Don't add the rule 0 if there were no
17147 rules read. In other words, add it _after_ having performed
17148 grammar sanity checks.
17149 Fixes the `tests/regression.at (Invalid input: 1)' Failure.
17150
17151 2001-12-29 Akim Demaille <akim@epita.fr>
17152
17153 * tests/regression.at (Web2c Report): Catch up: the rule 0 is now
17154 visible, and some states have now a different number.
17155
17156 2001-12-29 Akim Demaille <akim@epita.fr>
17157
17158 * src/reader.c (readgram): Bind the initial rule's lineno to that
17159 of the first rule.
17160 * tests/regression.at (Rule Line Numbers, Unresolved SR Conflicts):
17161 (Solved SR Conflicts): Adjust rule 0's line number.
17162
17163 2001-12-29 Akim Demaille <akim@epita.fr>
17164
17165 Fix the `GAWK Grammar' failure.
17166
17167 * src/LR0.c (final_state): Initialize to -1 so that we do compute
17168 the reductions of the first state which was mistakenly confused
17169 with the final state because precisely final_state was initialized
17170 to 0.
17171 * tests/sets.at (Nullable): Adjust: state 0 does have lookaheads,
17172 now noticed by Bison.
17173 * tests/regression.at (Rule Line Numbers): Adjust: state 0 does
17174 have a reduction on $default.
17175
17176 2001-12-29 Akim Demaille <akim@epita.fr>
17177
17178 * src/gram.c (ritem_print): Be sure to subtract 1 when displaying
17179 rule line numbers.
17180 * src/closure.c (print_closure): Likewise.
17181 * src/derives.c (print_derives): Likewise.
17182 * tests/sets.at (Nullable): Adjust: the rule numbers are correct
17183 now.
17184
17185 2001-12-29 Akim Demaille <akim@epita.fr>
17186
17187 * src/lalr.c (lookaheads_print): New.
17188 (lalr): Call it when --trace-flag.
17189 * tests/sets.at (Nullable): Adjust: when tracing, the lookaheads
17190 are dumped.
17191
17192 2001-12-29 Akim Demaille <akim@epita.fr>
17193
17194 * src/derives.c (print_derives): Be sure to use `>= 0', not `> 0',
17195 when walking through ritem, even via rule->rhs.
17196 * src/reduce.c (dump_grammar, useful_production, reduce_output)
17197 (useful_production, useless_nonterminals): Likewise.
17198 (reduce_grammar_tables): Likewise, plus update nritems.
17199 * src/nullable.c (set_nullable): Likewise.
17200 * src/lalr.c (build_relations): Likewise.
17201 * tests/sets.at (Nullable): Adjust.
17202 Fortunately, now, the $axiom is no longer nullable.
17203
17204 2001-12-29 Akim Demaille <akim@epita.fr>
17205
17206 * src/LR0.c (generate_states): Use nritems, not nitems, nor using
17207 the 0-sentinel.
17208 * src/gram.c (ritem_longest_rhs): Likewise.
17209 * src/reduce.c (nonterminals_reduce): Likewise.
17210 * src/print_graph.c (print_graph): Likewise.
17211 * src/output.c (output_rule_data): Likewise.
17212 * src/nullable.c (set_nullable): Likewise.
17213
17214 2001-12-29 Akim Demaille <akim@epita.fr>
17215
17216 * src/output.c: Comment changes.
17217
17218 2001-12-27 Paul Eggert <eggert@twinsun.com>
17219
17220 * src/bison.simple (YYSTACK_ALLOC, YYSIZE_T): Remove special
17221 cases for non-GNU systems like AIX, HP-UX, SGI, Sun, and
17222 Sparc, as they were causing more porting problems than the
17223 (minor) performance improvement was worth.
17224
17225 Also, catch up with 1.31's YYSTD.
17226
17227 2001-12-27 Akim Demaille <akim@epita.fr>
17228
17229 * src/output.c (output_gram): Rely on nritems, not the
17230 0-sentinel. See below.
17231 Use -1 as separator, not 0.
17232 * src/bison.simple (yyparse): Subtract 1 to the rule numbers.
17233 Rely on -1 as separator in yyrhs, instead of 0.
17234 * tests/calc.at (AT_CHECK_CALC): Now, the parsers no longer issue
17235 twice `Now at end of input', therefore there are two lines less to
17236 expect.
17237
17238 2001-12-27 Akim Demaille <akim@epita.fr>
17239
17240 * tests/regression.at (Unresolved SR Conflicts):
17241 (Solved SR Conflicts, Rule Line Numbers): Adjust to the changes
17242 below.
17243
17244 2001-12-27 Akim Demaille <akim@epita.fr>
17245
17246 * src/LR0.c (new_state): Recognize the final state by the fact it
17247 is reached by eoftoken.
17248 (insert_start_shifting_state, insert_eof_shifting_state)
17249 (insert_accepting_state, augment_automaton): Remove, since now
17250 these states are automatically computed from the initial state.
17251 (generate_states): Adjust.
17252 * src/print.c: When reporting a rule number to the user, substract
17253 1, so that the axiom rule is rule 0, and the first user rule is 1.
17254 * src/reduce.c: Likewise.
17255 * src/print_graph.c (print_core): For the time being, just as for
17256 the report, depend upon --trace-flags to dump the full set of
17257 items.
17258 * src/reader.c (readgram): Once the grammar read, insert the rule
17259 0: `$axiom: START-SYMBOL $'.
17260 * tests/set.at: Adjust: rule 0 is now displayed, and since the
17261 number of the states has changed (the final state is no longer
17262 necessarily the last), catch up.
17263
17264 2001-12-27 Akim Demaille <akim@epita.fr>
17265
17266 Try to make the use of the eoftoken valid. Given that its value
17267 is 0 which was also used as a sentinel in ritem, (i) make sure >= 0
17268 is used instead of > 0 where appropriate, (ii), depend upon nritems
17269 instead of the 0-sentinel.
17270
17271 * src/gram.h, src/gram.c (nritems): New.
17272 Expected to be duplication of nitems, but for the time being...
17273 * src/reader.c (packgram): Assert nritems and nitems are equal.
17274 * src/LR0.c (allocate_itemsets, new_itemsets): Adjust.
17275 * src/closure.c (print_closure, print_fderives): Likewise.
17276 * src/gram.c (ritem_print): Likewise.
17277 * src/print.c (print_core, print_grammar): Likewise.
17278 * src/print_graph.c: Likewise.
17279
17280 2001-12-27 Akim Demaille <akim@epita.fr>
17281
17282 * src/main.c (main): If there are complains after grammar
17283 reductions, then output the report anyway if requested, then die.
17284 * src/symtab.c (bucket_new): Initialize `value' to -1, not 0.
17285 * src/reader.c (eoftoken): New.
17286 (parse_token_decl): If the token being defined has value `0', it
17287 is the eoftoken.
17288 (packsymbols): No longer hack `tags' to insert `$' by hand.
17289 Be sure to preserve the value of the eoftoken.
17290 (reader): Make sure eoftoken is defined.
17291 Initialize nsyms to 0: now eoftoken is created just like the others.
17292 * src/print.c (print_grammar): Don't special case the eof token.
17293 * src/regression.at: Adjust: `$' has value 0, not -1, which was a
17294 lie anyway, albeit pleasant.
17295 * tests/calc.at: Exercise error messages with eoftoken.
17296 Change the grammar so that empty input is invalid.
17297 Adjust expectations.
17298 When yyungeting, be sure to use a valid yylloc: use last_yylloc.
17299
17300 2001-12-27 Akim Demaille <akim@epita.fr>
17301
17302 * configure.in: Check the protos of strchr ans strspn.
17303 Replace strchr if needed.
17304 * src/system.h: Provide the protos of strchr, strspn and memchr if
17305 missing.
17306 * lib/strchr.c: New.
17307 * src/reader.c (symbols_save): Use strchr.
17308
17309 2001-12-27 Akim Demaille <akim@epita.fr>
17310
17311 * src/print.c, src/print_graph.c (escape): New.
17312 Use it to quote the TAGS outputs.
17313 * src/print_graph.c (print_state): Now errors are in red, and
17314 reductions in green.
17315 Prefer high to wide: output the state number on a line of its own.
17316
17317 2001-12-27 Akim Demaille <akim@epita.fr>
17318
17319 * src/state.h, src/state.c (reductions_new): New.
17320 * src/LR0.c (set_state_table): Let all the states have a
17321 `reductions', even if reduced to 0.
17322 (save_reductions): Adjust.
17323 * src/lalr.c (initialize_LA, initialize_lookaheads): Adjust.
17324 * src/print.c (print_reductions, print_actions): Adjust.
17325 * src/output.c (action_row): Adjust.
17326
17327 2001-12-27 Akim Demaille <akim@epita.fr>
17328
17329 * src/state.h, src/state.c (errs_new, errs_dup): New.
17330 * src/LR0.c (set_state_table): Let all the states have an errs,
17331 even if reduced to 0.
17332 * src/print.c (print_errs, print_reductions): Adjust.
17333 * src/output.c (output_actions, action_row): Adjust.
17334 * src/conflicts.c (resolve_sr_conflict): Adjust.
17335
17336 2001-12-27 Akim Demaille <akim@epita.fr>
17337
17338 * src/lalr.c (set_goto_map, initialize_F): Use SHIFT_SYMBOL.
17339
17340 2001-12-27 Akim Demaille <akim@epita.fr>
17341
17342 * src/conflicts.c, src/conflicts.h (print_reductions): Move to...
17343 * src/print.c: here.
17344 (lookaheadset, shiftset): New, used as additional storage by
17345 print_reductions.
17346 (print_results): Adjust.
17347 (print_shifts, print_gotos, print_errs): New, extracted from...
17348 (print_actions): here.
17349 * src/print_graph.c (print_actions): Remove dead code.
17350
17351 2001-12-27 Akim Demaille <akim@epita.fr>
17352
17353 * src/reader.c (copy_dollar, copy_at): Better checking of `n' in
17354 `$n' and `@n'.
17355
17356 2001-12-27 Akim Demaille <akim@epita.fr>
17357
17358 * src/lalr.c (add_lookback_edge): Use state_t instead of ints.
17359 (build_relations): Adjust.
17360
17361 2001-12-27 Akim Demaille <akim@epita.fr>
17362
17363 * src/lalr.c (set_goto_map): Remove a wrong but benign loop
17364 duplication.
17365
17366 2001-12-27 Akim Demaille <akim@epita.fr>
17367
17368 * src/reader.c (packgram): Catch nitems overflows.
17369
17370 2001-12-27 Akim Demaille <akim@epita.fr>
17371
17372 * src/files.c, src/files.h (guard_obstack): Remove.
17373 * src/output.c (output): Adjust.
17374 * src/reader.c (parse_braces): New, factoring...
17375 (copy_action, copy_guard): these two which are renamed as...
17376 (parse_action, parse_guard): these.
17377 As a voluntary consequence, using braces around guards is now
17378 mandatory.
17379
17380 2001-12-27 Akim Demaille <akim@epita.fr>
17381
17382 * src/gram.h (rule_t): `guard' and `guard_line' are new members.
17383 * src/reader.c (symbol_list): `guard' and `guard_line' are new
17384 members.
17385 (symbol_list_new): Adjust.
17386 (copy_action): action_line is the first line, not the last.
17387 (copy_guard): Just as for actions, store the `action' only, not
17388 the switch/case/break flesh.
17389 Don't parse the user action that might follow the guard, let...
17390 (readgram): do it, i.e., now, there can be an action after a
17391 guard.
17392 In other words the guard is just explicitly optional.
17393 (packgram): Adjust.
17394 * src/output.c (guards_output): New.
17395 (output_parser): Call it when needed.
17396 (output): Also free the guard and attrs obstacks.
17397 * src/files.c, src/files.h (obstack_save): Remove.
17398 (output_files): Remove.
17399 As a result, if one needs the former `.act' file, using an
17400 appropriate skeleton which requires actions and guards is now
17401 required.
17402 * src/main.c (main): Adjust.
17403 * tests/semantic.at: New.
17404 * tests/regression.at: Use `input.y' as input file name.
17405 Avoid 8+3 problems by requiring input.c when the test needs the
17406 parser.
17407
17408 2001-12-27 Akim Demaille <akim@epita.fr>
17409
17410 * src/reader.c (symbol_list_new): Be sure to initialize all the
17411 fields.
17412
17413 2001-12-27 Akim Demaille <akim@epita.fr>
17414
17415 All the hacks using a final pseudo state are now useless.
17416
17417 * src/LR0.c (set_state_table): state_table holds exactly nstates.
17418 * src/lalr.c (nLA): New.
17419 (initialize_LA, compute_lookaheads, initialize_lookaheads): Use it
17420 instead of lookaheadsp from the pseudo state (nstate + 1).
17421
17422 2001-12-27 Akim Demaille <akim@epita.fr>
17423
17424 * src/output.c (action_row, token_actions): Use a state_t instead
17425 of a integer, and nlookaheads instead of the following state's
17426 lookaheadsp.
17427
17428 2001-12-27 Akim Demaille <akim@epita.fr>
17429
17430 * src/conflicts.c (log_resolution, flush_shift)
17431 (resolve_sr_conflict, set_conflicts, solve_conflicts)
17432 (count_sr_conflicts, count_rr_conflicts, conflicts_output)
17433 (conflicts_print, print_reductions): Use a state_t instead of an
17434 integer when referring to a state.
17435 As much as possible, depend upon nlookaheads, instead of the
17436 `lookaheadsp' member of the following state (since lookaheads of
17437 successive states are successive, the difference between state n + 1
17438 and n served as the number of lookaheads for state n).
17439 * src/lalr.c (add_lookback_edge): Likewise.
17440 * src/print.c (print_core, print_actions, print_state)
17441 (print_results): Likewise.
17442 * src/print_graph.c (print_core, print_actions, print_state)
17443 (print_graph): Likewise.
17444 * src/conflicts.h: Adjust.
17445
17446 2001-12-27 Akim Demaille <akim@epita.fr>
17447
17448 * src/bison.hairy: Formatting/comment changes.
17449 ANSIfy.
17450 Remove `register' indications.
17451 Add plenty of `static'.
17452
17453 2001-12-27 Akim Demaille <akim@epita.fr>
17454
17455 * src/output.c (prepare): Drop the muscle `ntbase' which
17456 duplicates ntokens.
17457 * src/bison.simple: Formatting/comment changes.
17458 Use YYNTOKENS only, which is documented, but not YYNTBASE, which
17459 is an undocumented synonym.
17460
17461 2001-12-22 Akim Demaille <akim@epita.fr>
17462
17463 * src/output.c (output_table_data): Change the prototype to use
17464 `int' for array ranges: some invocations do pass an int, not a
17465 short.
17466 Reported by Wayne Green.
17467
17468 2001-12-22 Akim Demaille <akim@epita.fr>
17469
17470 Some actions of web2c.y are improperly triggered.
17471 Reported by Mike Castle.
17472
17473 * src/lalr.c (traverse): s/F (i)[k] = F (j)[k]/F (j)[k] = F (i)[k]/.
17474 * tests/regression.at (Web2c): Rename as...
17475 (Web2c Report): this.
17476 (Web2c Actions): New.
17477
17478 2001-12-22 Akim Demaille <akim@epita.fr>
17479
17480 Reductions in web2c.y are improperly reported.
17481 Reported by Mike Castle.
17482
17483 * src/conflicts.c (print_reductions): Fix.
17484 * tests/regression.at (Web2c): New.
17485
17486 2001-12-18 Akim Demaille <akim@epita.fr>
17487
17488 Some host fail on `assert (!"foo")', which expands to
17489 ((!"foo") ? (void)0 : __assert("!"foo."", __FILE__, __LINE__))
17490 Reported by Nelson Beebee.
17491
17492 * src/output.c, src/vcg.c: Replace `assert (!"it succeeded")' with
17493 `#define it_succeeded 0' and `assert (it_succeeded)'.
17494
17495 2001-12-17 Marc Autret <autret_m@epita.fr>
17496
17497 * src/bison.simple: Don't hard code the skeleton line and filename.
17498 * src/output.c (output_parser): Rename 'line' as 'output_line'.
17499 New line counter 'skeleton_line' (skeleton-line muscle).
17500
17501 2001-12-17 Paul Eggert <eggert@twinsun.com>
17502
17503 * NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
17504 YYDEBUG must be defined to a nonzero value.
17505
17506 * src/bison.simple (yytname): Do not assume that the user defines
17507 YYDEBUG to a properly parenthesized expression.
17508
17509 2001-12-17 Akim Demaille <akim@epita.fr>
17510
17511 * src/state.h (state_t): Rename lookaheads as lookaheadsp.
17512 nlookaheads is a new member.
17513 Adjust all users.
17514 * src/lalr.h (nlookaheads): Remove this orphan declaration.
17515 * src/lalr.c (initialize_lookaheads): Set nlookaheads for each
17516 state.
17517
17518 2001-12-17 Akim Demaille <akim@epita.fr>
17519
17520 * src/files.h, src/files.c (open_files, close_files): Remove.
17521 * src/main.c (main): Don't open/close files, nor invoke lex_free,
17522 let...
17523 * src/reader.c (reader): Do it.
17524
17525 2001-12-17 Akim Demaille <akim@epita.fr>
17526
17527 * src/conflicts.c (print_reductions): Formatting changes.
17528
17529 2001-12-17 Akim Demaille <akim@epita.fr>
17530
17531 * src/conflicts.c (flush_shift): Also adjust lookaheadset.
17532 (flush_reduce): New.
17533 (resolve_sr_conflict): Adjust.
17534
17535 2001-12-17 Akim Demaille <akim@epita.fr>
17536
17537 * src/output.c (output_obstack): Be static and rename as...
17538 (format_obstack): this, to avoid any confusion with files.c's
17539 output_obstack.
17540 * src/reader.h (muscle_obstack): Move to...
17541 * src/output.h: here, since it's defined in output.c.
17542
17543 2001-12-17 Akim Demaille <akim@epita.fr>
17544
17545 * src/output.c (action_row, save_column, default_goto)
17546 (sort_actions, matching_state, pack_vector): Better variable
17547 locality.
17548
17549 2001-12-17 Akim Demaille <akim@epita.fr>
17550
17551 * src/output.c: Various formatting changes.
17552
17553 2001-12-17 Akim Demaille <akim@epita.fr>
17554
17555 * src/files.c (output_files): Free the output_obstack.
17556 * src/main.c (main): Call print and print_graph conditionally.
17557 * src/print.c (print): Work unconditionally.
17558 * src/print_graph.c (print_graph): Work unconditionally.
17559 * src/conflicts.c (log_resolution): Output only if verbose_flag.
17560
17561 2001-12-16 Marc Autret <autret_m@epita.fr>
17562
17563 * src/output.c (actions_output): Fix. When we use %no-lines,
17564 there is one less line per action.
17565
17566 2001-12-16 Marc Autret <autret_m@epita.fr>
17567
17568 * src/bison.simple: Remove a useless #line directive.
17569 s/#line %%line %%skeleton/#line %%line "%%parser-file-name"/'.
17570 * src/output.c (get_lines_number): New.
17571 (output_parser): Adjust, now takes care about the lines of a
17572 output muscles.
17573 Fix line numbering.
17574 (actions_output): Computes the number of lines taken by actions.
17575 (output_master_parser): Insert new skeleton which is the name of
17576 the output parser file name.
17577
17578 2001-12-15 Marc Autret <autret_m@epita.fr>
17579
17580 * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
17581
17582 2001-12-15 Marc Autret <autret_m@epita.fr>
17583
17584 * src/output.c (output_gram): Keep track of the hairy one.
17585
17586 2001-12-15 Akim Demaille <akim@epita.fr>
17587
17588 Make `make distcheck' work.
17589
17590 * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses
17591 system.h which uses libgettext.h.
17592
17593 2001-12-15 Akim Demaille <akim@epita.fr>
17594
17595 * src/nullable.c (set_nullable): Useless rules must be skipped,
17596 otherwise, since we range over their symbols, we might look at a
17597 nonterminal which no longer ``exists'', i.e., it is not counted in
17598 `nvars', hence we overflow our arrays.
17599
17600 2001-12-15 Akim Demaille <akim@epita.fr>
17601
17602 The header can also be produced directly, without any obstack!
17603 Yahoo!
17604
17605 * src/files.c, src/files.h (defines_obstack): Remove.
17606 (compute_header_macro): Global.
17607 (defines_obstack_save): Remove.
17608 * src/reader.c (parse_union_decl): No longer output to
17609 defines_obstack: its content can be found in the `stype' muscle
17610 anyway.
17611 (output_token_translations): Merge into...
17612 (symbols_output): this.
17613 Rename as...
17614 (symbols_save): this.
17615 (reader): Adjust.
17616 * src/output.c (header_output): New.
17617 (output): Call it.
17618
17619 2001-12-15 Akim Demaille <akim@epita.fr>
17620
17621 * src/reader.c (parse_union_decl): Instead of handling two obstack
17622 simultaneously, use one to define the `stype' muscle, and use the
17623 value of the latter to fill defines_obstack.
17624 (copy_comment): Remove.
17625 (copy_comment2): Work for a single obstack.
17626 Rename as...
17627 (copy_comment): this.
17628
17629 2001-12-15 Akim Demaille <akim@epita.fr>
17630
17631 * src/lex.c, src/lex.h (xgetc): No longer static.
17632 * src/reader.c (parse_union_decl): Revamp.
17633
17634 2001-12-15 Akim Demaille <akim@epita.fr>
17635
17636 Still making progress in separating Bison into (i) input, (ii)
17637 process, (iii) output: now we can directly output the parser file
17638 without using table_obstack at all.
17639
17640 * src/files.c, src/files.h (table_obstack): Bye bye.
17641 (parser_file_name): New.
17642 * src/files.c (compute_output_file_names): Compute it.
17643 * src/output.c (actions_output, output_parser)
17644 (output_master_parser): To a file instead of an obstack.
17645
17646 2001-12-15 Akim Demaille <akim@epita.fr>
17647
17648 Attach actions to rules, instead of pre-outputting them to
17649 actions_obstack.
17650
17651 * src/gram.h (rule_t): action and action_line are new members.
17652 * src/reader.c (symbol_list): Likewise.
17653 (copy_action): Save the actions within the rule.
17654 (packgram): Save them in rule_table.
17655 * src/output.c (actions_output): New.
17656 (output_parser): Use it on `%%actions'.
17657 (output_rule_data): Don't free rule_table.
17658 (output): Do it.
17659 (prepare): Don't save the `action' muscle.
17660 * src/bison.simple: s/%%action/%%actions/.
17661
17662 2001-12-15 Akim Demaille <akim@epita.fr>
17663
17664 * src/reader.c (copy_action): When --yacc, don't append a `;'
17665 to the user action: let it fail if lacking.
17666 Suggested by Arnold Robbins and Tom Tromey.
17667
17668 2001-12-14 Akim Demaille <akim@epita.fr>
17669
17670 * src/lex.c (literalchar): Simply return the char you decoded, non
17671 longer mess around with obstacks and int pointers.
17672 Adjust all callers.
17673
17674 2001-12-14 Akim Demaille <akim@epita.fr>
17675
17676 * src/lex.c (literalchar): Don't escape the special characters,
17677 just decode them, and keep them as char (before, eol was output as
17678 the 2 char string `\n' etc.).
17679 * src/output.c (output_rule_data): Use quotearg to output the
17680 token strings.
17681
17682 2001-12-13 Paul Eggert <eggert@twinsun.com>
17683
17684 * src/bison.simple (YYSIZE_T, YYSTACK_ALLOC, YYSTACK_FREE):
17685 Do not infringe on the global user namespace when using C++.
17686 (YYFPRINTF, YYSTDERR): New macros, needed for the above.
17687 All uses of `fprintf' and `stderr' changed.
17688
17689 * doc/bison.texinfo: Document YYFPRINTF, YYSTDERR.
17690
17691 2001-12-13 Akim Demaille <akim@epita.fr>
17692
17693 The computation of nullable is broken: it doesn't handle empty
17694 RHS's properly.
17695
17696 * tests/torture.at (GNU AWK Grammar): New.
17697 * tests/sets.at (Nullable): New.
17698 * src/nullable.c (set_nullable): Instead of blindly looping over
17699 `ritems', loop over the rules, and then over their rhs's.
17700
17701 Work around Autotest bugs.
17702
17703 * src/warshall.c (bitmatrix_print): Don't use `+--+' as table
17704 frame, because Autotest understand lines starting with a `+' as
17705 traces from the shell. Then, they are not processed properly.
17706 Admittedly an Autotest bug, but we don't have time to wait for
17707 Autotest to catch up.
17708 * tests/regression.at (Broken Closure): Adjust to the new table
17709 frames.
17710 Move to...
17711 * tests/sets.at: here.
17712
17713 2001-12-13 Akim Demaille <akim@epita.fr>
17714
17715 * src/closure.c (closure): Use nrules instead of playing tricks
17716 with BITS_PER_WORD.
17717
17718 2001-12-13 Akim Demaille <akim@epita.fr>
17719
17720 * src/print.c (print_actions): Output the handling of `$' as the
17721 traces do: shifting the token EOF. Before EOF was treated as a
17722 nonterminal.
17723 * tests/regression.at: Adjust some tests.
17724 * src/print_graph.c (print_core): Complete the set of items via
17725 closure. The next-to-final and final states are still unsatisfying,
17726 but that's to be addressed elsewhere.
17727 No longer output the rule numbers, but do output the state number.
17728 A single loop for the shifts + gotos is enough, but picked a
17729 distinct color for each.
17730 (print_graph): Initialize and finalize closure.
17731
17732 2001-12-13 Akim Demaille <akim@epita.fr>
17733
17734 * src/reader.c (readgram): Remove dead code, an strip useless
17735 braces.
17736 (get_type): Remove, unused.
17737
17738 2001-12-12 Akim Demaille <akim@epita.fr>
17739
17740 * src/complain.h, src/complain.c: Remove error_one_per_line, rely
17741 on that of lib/error.c.
17742
17743 2001-12-12 Akim Demaille <akim@epita.fr>
17744
17745 Some hosts don't like `/' in includes.
17746
17747 * src/system.h: Include libgettext.h without qualifying the path.
17748 * src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
17749 $(top_srcdir).
17750
17751 2001-12-11 Marc Autret <autret_m@epita.fr>
17752
17753 * src/output.c (output_parser): Remove useless muscle.
17754
17755 2001-12-11 Marc Autret <autret_m@epita.fr>
17756
17757 * src/bison.simple: Remove #line just before %%epilogue. It
17758 is now handled in ...
17759 * src/reader.c (read_additionnal_code): Add the output of a
17760 #line for the epilogue.
17761
17762 2001-12-10 Marc Autret <autret_m@epita.fr>
17763
17764 * src/reader.c (copy_definition): Re-use CPP-outed code which
17765 replace precedent remove.
17766 * src/bison.simple: Remove #line before %%prologue because
17767 %%input-line is wrong at this time.
17768
17769 2001-12-10 Marc Autret <autret_m@epita.fr>
17770
17771 * src/reader.c (symbols_output): Clean up.
17772 * src/output.c (output_gram, output): Clean up.
17773
17774 2001-12-10 Akim Demaille <akim@epita.fr>
17775
17776 * src/lalr.c (initialize_lookaheads): New. Extracted from...
17777 * src/LR0.c (set_state_table): here.
17778 * src/lalr.c (lalr): Call it.
17779
17780 2001-12-10 Akim Demaille <akim@epita.fr>
17781
17782 * src/state.h (shifts): Remove the `number' member: shifts are
17783 attached to state, hence no longer need to be labelled with a
17784 state number.
17785
17786 2001-12-10 Akim Demaille <akim@epita.fr>
17787
17788 Now that states have a complete set of members, the linked list of
17789 shifts is useless: just fill directly the state's shifts member.
17790
17791 * src/state.h (shifts): Remove the `next' member.
17792 * src/LR0.c (first_state, last_state): Remove.
17793 Adjust the callers.
17794 (augment_automaton): Don't look for the shifts that must be added
17795 a shift on EOF: it is those of the state we looked for! But now,
17796 since shifts are attached, it is no longer needed to looking
17797 merely by its id: its number.
17798
17799 2001-12-10 Akim Demaille <akim@epita.fr>
17800
17801 * src/LR0.c (augment_automaton): Better variable locality.
17802 Remove an impossible branch: if there is a state corresponding to
17803 the start symbol being shifted, then there is shift for the start
17804 symbol from the initial state.
17805
17806 2001-12-10 Akim Demaille <akim@epita.fr>
17807
17808 * src/LR0.c (augment_automaton): Call `insert_eof_shifting_state'
17809 only when appropriate: when insert_start_shifting_state' is not
17810 invoked.
17811 * tests/regression.at (Rule Line Numbers): Adjust.
17812
17813 2001-12-10 Akim Demaille <akim@epita.fr>
17814
17815 * src/LR0.c (augment_automaton): Now that all states have shifts,
17816 merge the two cases addition shifts to the initial state.
17817
17818 2001-12-10 Akim Demaille <akim@epita.fr>
17819
17820 * src/lalr.c (set_state_table): Move to...
17821 * src/LR0.c: here.
17822 * src/lalr.c (lalr): Don't call it...
17823 * src/LR0.c (generate_states): do it.
17824 * src/LR0.h (first_state): Remove, only the table is used.
17825
17826 2001-12-10 Akim Demaille <akim@epita.fr>
17827
17828 * src/LR0.h (first_shift, first_reduction): Remove.
17829 * src/lalr.c: Don't use first_shift: find shifts through the
17830 states.
17831
17832 2001-12-10 Akim Demaille <akim@epita.fr>
17833
17834 * src/LR0.c: Attach shifts to states as soon as they are
17835 computed.
17836 * src/lalr.c (set_state_table): Instead of assigning shifts to
17837 state, just assert that the mapping was properly done.
17838
17839 2001-12-10 Akim Demaille <akim@epita.fr>
17840
17841 * src/LR0.c (insert_start_shift): Rename as...
17842 (insert_start_shifting_state): this.
17843 (insert_eof_shifting_state, insert_accepting_state): New.
17844 (augment_automaton): Adjust.
17845 Better locality of the variables.
17846 When looking if the start_symbol is shifted from the initial
17847 state, using `while (... symbol != start_symbol ...)' sounds
17848 better than `while (... symbol < start_symbol ...)': If fail
17849 to see how the order between symbols could be relevant!
17850
17851 2001-12-10 Akim Demaille <akim@epita.fr>
17852
17853 * src/getargs.h: Don't declare `spec_name_prefix' and
17854 `spec_file_prefix', declared by src/files.h.
17855 * src/files.c, src/files.h: Default for spec_name_prefix is "yy".
17856 * src/muscle_tab.c (muscle_init): Default prefix to NULL.
17857 * src/output.c (prepare): Adjust.
17858 * src/reader.c (symbols_output): Likewise.
17859 * src/vmsgetargs.c: Vaguely adjust, but who cares?
17860
17861 2001-12-10 Akim Demaille <akim@epita.fr>
17862
17863 * src/muscle_tab.c (muscle_init): NULL is a better default than
17864 `"0"'.
17865
17866 2001-12-10 Akim Demaille <akim@epita.fr>
17867
17868 * src/reader.c (reader): Calling symbols_output once is enough.
17869
17870 2001-12-10 Akim Demaille <akim@epita.fr>
17871
17872 Now that states have a complete set of members, the linked list of
17873 reductions is useless: just fill directly the state's reductions
17874 member.
17875
17876 * src/state.h (struct reductions): Remove member `number' and
17877 `next'.
17878 * src/LR0.c (first_reduction, last_reduction): Remove.
17879 (save_reductions): Don't link the new reductions, store them in
17880 this_state.
17881 * src/lalr.c (set_state_table): No need to attach reductions to
17882 states, it's already done.
17883 * src/output.c (output_actions): No longer free the shifts, then
17884 the reductions, then the states: free all the states and their
17885 members.
17886
17887 2001-12-10 Akim Demaille <akim@epita.fr>
17888
17889 * src/options.c (OPTN, DRTV, BOTH): New.
17890 (option_table): Use them.
17891
17892 * src/muscle_tab.c: Don't include xalloc.h and string.h: that's
17893 the job of system.h.
17894 * src/options.c: Don't include stdio.h and xalloc.h for the same
17895 reasons.
17896
17897 2001-12-10 Akim Demaille <akim@epita.fr>
17898
17899 * src/output.c (output, prepare): Make sure the values of the
17900 muscles `action' and `prologue' are 0-terminated.
17901
17902 2001-12-10 Akim Demaille <akim@epita.fr>
17903
17904 Clean up GCC warnings.
17905
17906 * src/reader.c (copy_action): `buf' is not used.
17907 (parse_skel_decl): Be static.
17908 * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'.
17909 * src/options.h (create_long_option_table): Have a real prototype.
17910 * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete)
17911 (hash_delete_at): Return const void *.
17912 Adjust casts to preserve the const.
17913
17914 2001-12-10 Akim Demaille <akim@epita.fr>
17915
17916 * configure.in: Require 2.52g.
17917 M4 is not needed, but AUTOM4TE is.
17918 * m4/m4.m4: Remove.
17919 * tests/Makefile.am: Adjust.
17920
17921 2001-12-10 Akim Demaille <akim@epita.fr>
17922
17923 One structure for states is enough, even though theoretically
17924 there are LR(0) states and LALR(1) states.
17925
17926 * src/lalr.h (state_t): Remove.
17927 (state_table): Be state_t **, not state_t *.
17928 * src/state.h (core, CORE_ALLOC): Rename as...
17929 (state_t, STATE_ALLOC): this.
17930 Add the LALR(1) members: shifts, reductions, errs.
17931 * src/LR0.c (state_table): Rename as...
17932 (state_hash): this, to avoid name clashes with the global
17933 `state_table'.
17934 * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c
17935 * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust.
17936
17937 2001-12-10 Akim Demaille <akim@epita.fr>
17938
17939 Bison dumps core on bash.y.
17940 Reported by Pascal Bart.
17941
17942 * src/warshall.c (bitmatrix_print): New.
17943 (TC): Use it.
17944 When performing a transitive closure R(i, j) && R(j, k) => R(i, k),
17945 j must be the outer loop.
17946 * tests/regression.at (Broken Closure): New.
17947
17948 2001-12-05 Akim Demaille <akim@epita.fr>
17949
17950 * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
17951 its argument.
17952 Reported by Peter Hamorsky.
17953
17954 2001-12-05 Akim Demaille <akim@epita.fr>
17955
17956 * src/conflicts.c (err_table): Remove.
17957 (resolve_sr_conflict): Adjust.
17958 * src/lalr.h (state_t.reduction_table, state_t.shift_table):
17959 Rename as...
17960 (state_t.reductions, state_t.shifts): this.
17961
17962 2001-12-05 Akim Demaille <akim@epita.fr>
17963
17964 * src/reduce.c (reduce_grammar_tables): No longer disable the
17965 removal of useless rules via CPP but via `if (0)', so that the
17966 compiler still check the code is valid.
17967 For instance, it should have noticed `rline' no longer exists: use
17968 the `line' member of rule_t.
17969 * src/gram.c (dummy, rline): Remove, unused.
17970
17971 2001-12-05 Akim Demaille <akim@epita.fr>
17972
17973 * src/output.c (pack_vector): Use assert, not berror.
17974 * src/main.c (berror): Remove, unused.
17975
17976 2001-12-05 Akim Demaille <akim@epita.fr>
17977
17978 New experimental feature: if --verbose --trace output all the
17979 items of a state, not only its kernel.
17980
17981 * src/print.c (print_core): If `trace_flag', then invoke closure
17982 before outputting the items of the state (print_core is no longer
17983 a correct name them).
17984 (print_results): Invoke new_closure/free_closure if needed.
17985
17986 2001-12-05 Akim Demaille <akim@epita.fr>
17987
17988 * src/LR0.c (new_itemsets): Use nshifts only, not shiftcount.
17989 * src/closure.c, src/closure.h (itemsetsize): Rename as...
17990 (nitemset): for consistency with the rest of the project.
17991
17992 2001-12-05 Akim Demaille <akim@epita.fr>
17993
17994 * src/closure.c (print_closure): Improve.
17995 (closure): Use it for printing input and output.
17996
17997 2001-12-05 Akim Demaille <akim@epita.fr>
17998
17999 * src/closure.c (FIRSTS, FDERIVES): Adjust to reality: they are
18000 indexed by nonterminals.
18001
18002 2001-12-05 Akim Demaille <akim@epita.fr>
18003
18004 * src/warshall.c (TC, RTC): De-obsfucate (source reduced to 22% of
18005 what it was!).
18006 * src/warshall.h: Remove accidental duplication of the content.
18007
18008 2001-12-05 Akim Demaille <akim@epita.fr>
18009
18010 * src/closure.c (set_fderives): De-obfuscate.
18011
18012 2001-12-05 Akim Demaille <akim@epita.fr>
18013
18014 * src/closure.c (print_firsts, print_fderives): De-obfuscate.
18015
18016 2001-12-05 Akim Demaille <akim@epita.fr>
18017
18018 * src/closure.c (set_firsts): De-obfuscate.
18019
18020 2001-12-05 Akim Demaille <akim@epita.fr>
18021
18022 * src/output.c (action_row): De-obfuscate
18023 using the good o' techniques: arrays not pointers, variable
18024 locality, BITISSET, RESETBIT etc.
18025
18026 2001-12-05 Akim Demaille <akim@epita.fr>
18027
18028 Pessimize the code to simplify it: from now on, all the states
18029 have a valid SHIFTS, which NSHIFTS is possibly 0.
18030
18031 * src/LR0.c (shifts_new): Be global and move to..
18032 * src/state.c, src/state.h: here.
18033 * src/conflicts, src/lalr.c, src/output.c, src/print.c,
18034 * src/print_graph: Adjust.
18035
18036 2001-12-05 Akim Demaille <akim@epita.fr>
18037
18038 * src/state.h (SHIFT_DISABLE, SHIFT_IS_DISABLED): New.
18039 * src/conflicts.c: Use it.
18040 Restore a few missing `if (!SHIFT_IS_DISABLED)' which were
18041 incorrectly ``simplified''.
18042
18043 2001-12-05 Akim Demaille <akim@epita.fr>
18044
18045 * src/conflicts.c (flush_shift, resolve_sr_conflict): De-obfuscate
18046 using the good o' techniques: arrays not pointers, variable
18047 locality, BITISSET, RESETBIT etc.
18048
18049 2001-12-05 Akim Demaille <akim@epita.fr>
18050
18051 * src/state.h (SHIFT_SYMBOL): New.
18052 * src/conflicts.c: Use it to deobfuscate.
18053
18054 2001-12-05 Akim Demaille <akim@epita.fr>
18055
18056 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts)
18057 (print_reductions): De-obfuscate using the good o' techniques:
18058 arrays not pointers, variable locality, BITISSET.
18059
18060 2001-12-05 Akim Demaille <akim@epita.fr>
18061
18062 * src/conflicts.c (print_reductions): Arrays, not pointers.
18063 Use BITISSET.
18064
18065 2001-12-05 Akim Demaille <akim@epita.fr>
18066
18067 * src/conflicts.c (print_reductions): Pessimize, but clarify.
18068
18069 2001-12-05 Akim Demaille <akim@epita.fr>
18070
18071 * src/conflicts.c (print_reductions): Improve variable locality.
18072
18073 2001-12-05 Akim Demaille <akim@epita.fr>
18074
18075 * src/conflicts.c (print_reductions): Pessimize, but clarify.
18076
18077 2001-12-05 Akim Demaille <akim@epita.fr>
18078
18079 * src/conflicts.c (print_reductions): Improve variable locality.
18080
18081 2001-12-05 Akim Demaille <akim@epita.fr>
18082
18083 * src/state.h (SHIFT_IS_ERROR, SHIFT_IS_GOTO, SHIFT_IS_SHIFT): New.
18084 * src/lalr.c: Use them.
18085
18086 2001-12-05 Akim Demaille <akim@epita.fr>
18087
18088 * src/LR0.c (augment_automaton): Formatting changes.
18089 Better variable locality.
18090
18091 2001-12-05 Akim Demaille <akim@epita.fr>
18092
18093 * src/lalr.c (matrix_print): New.
18094 (transpose): Use it.
18095 Use arrays instead of pointers.
18096
18097 2001-12-05 Akim Demaille <akim@epita.fr>
18098
18099 * src/lalr.c (maxrhs): Move to...
18100 * src/gram.c, src/gram.h (ritem_longest_rhs): here.
18101 * src/lalr.c (build_relations): Adjust.
18102
18103 2001-12-05 Akim Demaille <akim@epita.fr>
18104
18105 * src/lalr.c (transpose): Free the memory allocated to the
18106 argument, as it is replaced by the results by the unique caller.
18107 (build_relations): Merely invoke transpose: it handles the memory
18108 deallocation.
18109 Improve variable locality.
18110 Avoid variables used as mere abbreviations.
18111 (compute_lookaheads): Use arrays instead of pointers.
18112
18113 2001-12-05 Akim Demaille <akim@epita.fr>
18114
18115 * src/lalr.c (initialize_F): Improve variable locality.
18116 Avoid variables used as mere abbreviations.
18117
18118 2001-12-05 Akim Demaille <akim@epita.fr>
18119
18120 * src/derives.c (print_derives): Display the ruleno.
18121 * src/lalr.c (initialize_F, transpose): Better variable locality
18122 to improve readability.
18123 Avoid variables used as mere abbreviations.
18124
18125 2001-12-05 Akim Demaille <akim@epita.fr>
18126
18127 * src/lalr.c (traverse): Use arrays instead of pointers.
18128
18129 2001-12-05 Akim Demaille <akim@epita.fr>
18130
18131 * src/nullable.c (set_nullable): Use a for loop to de-obfuscate
18132 the handling of squeue.
18133 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
18134
18135 2001-12-05 Akim Demaille <akim@epita.fr>
18136
18137 Because useless nonterminals are now kept alive (instead of being
18138 `destroyed'), we now sometimes examine them, and store information
18139 related to them. Hence we need to know their number, and adjust
18140 memory allocations.
18141
18142 * src/reduce.c, src/reduce.h (nuseless_nonterminals): No longer
18143 static.
18144 * src/LR0.c (allocate_itemsets): The memory allocated to
18145 `symbol_count' was used for two different purpose: once to count
18146 the number of occurrences of each symbol, and later reassigned to
18147 `shift_symbol', containing the symbol that can be shifted from a
18148 given state.
18149 Deobfuscate, i.e., allocate, use and free `symbol_count' here
18150 only, and...
18151 (new_itemsets): Allocate `shift_symbol' here.
18152 (allocate_itemsets): symbol_count includes useless nonterminals.
18153 Make room for them.
18154 (free_storage): Use `free', not `XFREE', for pointers that cannot
18155 be null.
18156
18157 2001-12-05 Akim Demaille <akim@epita.fr>
18158
18159 * src/nullable.c (set_nullable): Deobfuscate the handling of
18160 ritem.
18161 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
18162
18163 2001-12-05 Akim Demaille <akim@epita.fr>
18164
18165 * src/gram.c, src/gram.h (ritem_print): New.
18166 * src/gram.c (dummy): Remove, now there is actual code in gram.c.
18167 (This useless function was defined only to work around VMS linkers
18168 that can't handle compilation units with variables only).
18169 * src/reduce.c (dump_grammar): Use it to trace the construction of
18170 ritem.
18171
18172 2001-12-04 Paul Eggert <eggert@twinsun.com>
18173
18174 * src/bison.simple (union yyalloc): Change member names
18175 to be the same as the stack names.
18176 (yyparse): yyptr is now union yyalloc *, not char *.
18177 (YYSTACK_RELOCATE): Likewise. This avoids a GCC warning,
18178 and may generate better code on some machines.
18179 (yystpcpy): Use prototype if __STDC__ is defined, not just
18180 if __cplusplus is defined.
18181
18182 2001-11-30 Akim Demaille <akim@epita.fr>
18183
18184 * configure.in (WARNING_CFLAGS): Add -Werror when possible.
18185 (CFLAGS): Do not include the WARNING_CFLAGS here, since GNU
18186 Gettext doesn't compile cleanly, and dies with -Werror.
18187 * src/Makefile.am, lib/Makefile.am, tests/atlocal.in (CFLAGS):
18188 Include WARNING_CFLAGS here.
18189 * lib/xstrdup.c: Include xalloc.h, so that xstrdup be declared
18190 before being defined.
18191
18192 2001-11-27 Paul Eggert <eggert@twinsun.com>
18193
18194 * lib/quotearg.h (quotearg_n, quotearg_n_style):
18195 First arg is int, not unsigned.
18196 * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
18197 (SIZE_MAX, UINT_MAX): New macros.
18198 (quotearg_n_options): Abort if N is negative.
18199 Avoid overflow check on hosts where size_t is 64 bits and int
18200 is 32 bits, as overflow is impossible there.
18201 Fix off-by-one typo that caused unnecessary reallocation.
18202
18203 2001-11-29 Paul Eggert <eggert@twinsun.com>
18204
18205 Name space cleanup in generated parser.
18206
18207 * doc/bison.texinfo (Bison Parser): Discuss system headers
18208 and their effect on the user name space.
18209
18210 * src/bison.simple:
18211 (YYSTACK_ALLOC, YYSTACK_FREE, union yyalloc, YYSTACK_GAP_MAX,
18212 YYSTACK_BYTES, YYSTACK_RELOCATE): Do not define unless necessary,
18213 i.e. unless ! defined (yyoverflow) || defined (YYERROR_VERBOSE).
18214
18215 (YYSIZE_T): New macro. Use it instead of size_t, to avoid infringing
18216 on user names when possible.
18217
18218 (YYSTACK_USE_ALLOCA): Do not define; just use any existing defn.
18219 Simplify test for whather <alloca.h> exists.
18220
18221 (<stdlib.h>): Include if we will use malloc, and if standard C or C++.
18222
18223 (<stdio.h>): Include if YYDEBUG.
18224
18225 (yymemcpy): Renamed from __yy_memcpy. Do not define unless
18226 ! defined (yyoverflow) && ! defined (yymemcpy).
18227
18228 (yymemcpy, yyparse): Rename local variables as needed so that
18229 they all begin with 'yy'.
18230
18231 (yystrlen, yystpcpy): New functions.
18232
18233 (YY_DECL_NON_LSP_VARIABLES): Renamed from _YY_DECL_VARIABLES.
18234 All uses changed.
18235
18236 (yyparse): size_t -> YYSIZE_T. Use yystrlen and yystpcpy
18237 instead of relying on string.h functions. Use YYSTACK_ALLOC
18238 and YYSTACK_FREE instead of malloc and free.
18239
18240 2001-11-30 Akim Demaille <akim@epita.fr>
18241
18242 * src/bison.simple (YYSTYPE, YYLTYPE): Move their definitions
18243 before their first uses.
18244 (YYBISON, YYPURE): Move to the top of the output.
18245
18246 2001-11-30 Akim Demaille <akim@epita.fr>
18247
18248 * tests/reduce.at (Useless Nonterminals): Fix.
18249
18250 2001-11-30 Akim Demaille <akim@epita.fr>
18251
18252 * src/bison.simple (YYSTACK_FREE): Use `do {;} while (0)' as empty
18253 if body instead of `;' to pacify GCC's warnings.
18254
18255 2001-11-30 Akim Demaille <akim@epita.fr>
18256
18257 Instead of mapping the LHS of unused rules to -1, keep the LHS
18258 valid, but flag the rules as invalid.
18259
18260 * src/gram.h (rule_t): `useful' is a new member.
18261 * src/print.c (print_grammar): Adjust.
18262 * src/derives.c (set_derives): Likewise.
18263 * src/reader.c (packgram, reduce_output): Likewise.
18264 * src/reduce.c (reduce_grammar_tables): Likewise.
18265 * tests/reduce.at (Underivable Rules, Useless Rules): New.
18266
18267 2001-11-30 Akim Demaille <akim@epita.fr>
18268
18269 * src/reduce.c (reduce_output): Formatting changes.
18270 * src/print.c (print_results, print_grammar): Likewise.
18271 * tests/regression.at (Rule Line Numbers)
18272 (Solved SR Conflicts, Unresolved SR Conflicts): Adjust.
18273
18274 2001-11-30 Akim Demaille <akim@epita.fr>
18275
18276 * src/reduce.c (nonterminals_reduce): Instead of throwing away
18277 useless nonterminals, move them at the end of the symbol arrays.
18278 (reduce_output): Adjust.
18279 * tests/reduce.at (Useless Nonterminals): Adjust.
18280
18281 2001-11-30 Akim Demaille <akim@epita.fr>
18282
18283 * src/reduce.c: Various comment/formatting changes.
18284 (nonterminals_reduce): New, extracted from...
18285 (reduce_grammar_tables): here.
18286 (reduce_grammar): Call nonterminals_reduce.
18287
18288 2001-11-29 Paul Eggert <eggert@twinsun.com>
18289
18290 * src/bison.simple (YYSTACK_REALLOC): Remove.
18291 (YYSTACK_ALLOC): Resurrect this macro, with its old meaning.
18292 (YYSTACK_FREE, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYSTACK_RELOCATE):
18293 New macros.
18294 (union yyalloc): New type.
18295 (__yy_memcpy): Last arg is size_t, not unsigned int, to remove
18296 an arbitrary restriction on hosts where size_t is wider than int.
18297
18298 (yyparse): Don't dump core if alloca or malloc fails; instead, report
18299 a parser stack overflow. Allocate just one block of memory for all
18300 three stacks, instead of allocating three blocks; this typically is
18301 faster and reduces fragmentation.
18302
18303 Do not limit the number of items in the stack to a value that fits
18304 in 'int', as this is an arbitrary limit on hosts with 64-bit
18305 size_t and 32-bit int.
18306
18307 2001-11-29 Marc Autret <autret_m@epita.fr>
18308
18309 * tests/calc.at [AT_DATA_CALC_Y]: Use %error-verbose instead
18310 of defining YYERROR_VERBOSE.
18311 [AT_DATA]: $4 is now out of C declarations in the prologue.
18312
18313 2001-11-28 Marc Autret <autret_m@epita.fr>
18314
18315 * src/reader.c (parse_dquoted_param): New.
18316 (parse_skel_decl): Use it.
18317 * src/lex.h: Add its prototype.
18318 * src/lex.c (literalchar): Become not static.
18319
18320 2001-11-28 Marc Autret <autret_m@epita.fr>
18321
18322 * src/output.h: And put its extern declaration here.
18323 * src/output.c (error_verbose): Define here.
18324 (prepare): Echo name modification.
18325 * src/getargs.h: Clean its extern declaration.
18326 * src/getargs.c (error_verbose_flag): Remove.
18327 (getargs): Remove case 'e'.
18328 * src/options.c (option_table): 'error-verbose' is now seen as simple
18329 percent option.
18330 Include output.h.
18331
18332 * src/reader.c (read_declarations): Remove case tok_include.
18333 (parse_include_decl): Remove.
18334 * src/lex.h (token_t): Remove tok_include.
18335 * src/options.c (option_table): 'include' is now a simple command line
18336 option.
18337
18338 2001-11-28 Marc Autret <autret_m@epita.fr>
18339
18340 * src/bison.simple: Adjust muscle names.
18341 * src/muscle_tab.c (muscle_init): Also rename the muscles.
18342 * src/output.c (prepare): s/_/-/ for the muscles names.
18343 (output_parser): When scanning for a muscle, allow '-' instead of '_'.
18344
18345 2001-11-28 Marc Autret <autret_m@epita.fr>
18346
18347 * src/bison.simple: Fix debug.
18348 [YYERROR_VERBOSE]: Re-integrate as an internal macro.
18349
18350 2001-11-28 Akim Demaille <akim@epita.fr>
18351
18352 * src/LR0.c (shifts_new): New.
18353 (save_shifts, insert_start_shift, augment_automaton): Use it.
18354
18355 2001-11-28 Akim Demaille <akim@epita.fr>
18356
18357 * src/closure.c (closure): `b' and `ruleno' denote the same value:
18358 keep ruleno only.
18359
18360 2001-11-28 Akim Demaille <akim@epita.fr>
18361
18362 * src/closure.c (closure): Instead of looping over word in array
18363 then bits in words, loop over bits in array.
18364
18365 2001-11-28 Akim Demaille <akim@epita.fr>
18366
18367 * src/closure.c (closure): No longer optimize the special case
18368 where all the bits of `ruleset[r]' are set to 0, to make the code
18369 clearer.
18370
18371 2001-11-28 Akim Demaille <akim@epita.fr>
18372
18373 * src/closure.c (closure): `r' and `c' are new variables, used to
18374 de-obfuscate accesses to RULESET and CORE.
18375
18376 2001-11-28 Akim Demaille <akim@epita.fr>
18377
18378 * src/reduce.c (reduce_print): Use ngettext.
18379 (dump_grammar): Improve the trace accuracy.
18380
18381 2001-11-28 Akim Demaille <akim@epita.fr>
18382
18383 * src/reduce.c (dump_grammar): Don't translate trace messages.
18384
18385 2001-11-28 Akim Demaille <akim@epita.fr>
18386
18387 * tests/reduce.at (Useless Terminals, Useless Nonterminals): New.
18388 * src/reduce.c (reduce_grammar_tables): Do not free useless tags,
18389 as all tags are free'ed afterwards.
18390 From Enrico Scholz.
18391
18392 2001-11-27 Paul Eggert <eggert@twinsun.com>
18393
18394 * src/bison.simple (YYSTACK_REALLOC): Fix typo that caused us to
18395 use alloca when we didn't want to, and vice versa.
18396
18397 2001-11-27 Marc Autret <autret_m@epita.fr>
18398
18399 * src/muscle_tab.c (muscle_init): Remove 'verbose' muscle
18400 initialization.
18401 * src/output.c (prepare): Remove its update.
18402
18403 2001-11-27 Marc Autret <autret_m@epita.fr>
18404
18405 * tests/torture.at [AT_DATA]: Remove YYERROR_VERBOSE definition.
18406 Use %error-verbose.
18407
18408 2001-11-27 Marc Autret <autret_m@epita.fr>
18409
18410 * src/bison.simple: Remove YYERROR_VERBOSE using.
18411 Use %%error_verbose.
18412 (yyparse): Likewise.
18413 * src/output.c (prepare): Give its final value.
18414 * src/muscle_tab.c (muscle_init): Init new muscle 'error_verbose'.
18415 * src/getargs.h: Add its extern declaration.
18416 * src/getargs.c (error_verbose_flag): New int.
18417 (getargs): Update to catch new case.
18418 * src/options.c (option_table): 'error-verbose' is a new option.
18419 (shortopts): Update.
18420
18421 2001-11-27 Akim Demaille <akim@epita.fr>
18422
18423 * src/system.h: Use intl/libgettext.h.
18424 * src/Makefile.am (INCLUDES): Add -I $(top_srcdir).
18425
18426 2001-11-27 Akim Demaille <akim@epita.fr>
18427
18428 * tests/torture.at (Exploding the Stack Size with Malloc):
18429 s/YYSTACK_USE_ALLOCA_ALLOCA/YYSTACK_USE_ALLOCA/.
18430
18431 2001-11-27 Akim Demaille <akim@epita.fr>
18432
18433 * src/files.c: Include error.h.
18434 Reported by Hans Aberg.
18435
18436 2001-11-26 Marc Autret <autret_m@epita.fr>
18437
18438 * src/reader.c (parse_include_decl): New, not yet implemented.
18439 (read_declarations): Add case tok_include.
18440 * src/getargs.h (include): Add its extern definition.
18441 * src/getargs.c (include): New const char *.
18442 (getargs): Add case '-I'.
18443 * src/options.c (option_table): Add include as command line and
18444 percent option.
18445 * src/lex.h (token_t): Add tok_include.
18446
18447 2001-11-26 Akim Demaille <akim@epita.fr>
18448
18449 * src/reader.c (readgram): Make sure rules for mid-rule actions
18450 have a lineno equal to that of their host rule.
18451 Reported by Hans Aberg.
18452 * tests/regression.at (Rule Line Numbers): New.
18453
18454 2001-11-26 Akim Demaille <akim@epita.fr>
18455
18456 * src/LR0.c (allocate_itemsets): kernel_size contains ints, not
18457 size_ts.
18458
18459 2001-11-26 Akim Demaille <akim@epita.fr>
18460
18461 * src/complain.c, src/complain.h (error): Remove, provided by
18462 lib/error.[ch].
18463
18464 2001-11-26 Akim Demaille <akim@epita.fr>
18465
18466 * src/reader.c (read_declarations): Don't abort on tok_illegal,
18467 issue an error message.
18468 * tests/regression.at (Invalid %directive): New.
18469 Reported by Hans Aberg.
18470
18471 2001-11-26 Akim Demaille <akim@epita.fr>
18472
18473 * configure.in: Invoke AC_FUNC_OBSTACK and AC_FUNC_ERROR_AT_LINE.
18474 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
18475
18476 2001-11-26 Akim Demaille <akim@epita.fr>
18477
18478 * src/conflicts.c (conflicts_print): Don't complain at all when
18479 there are no reduce/reduce conflicts, and as many shift/reduce
18480 conflicts as expected.
18481 * tests/regression.at (%expect right): Adjust.
18482
18483 2001-11-23 Akim Demaille <akim@epita.fr>
18484
18485 * lib/alloca.c: Update, from fileutils.
18486
18487 2001-11-23 Akim Demaille <akim@epita.fr>
18488
18489 * lib/Makefile.am (libbison_a_LIBADD): Add @ALLOCA@.
18490
18491 2001-11-23 Akim Demaille <akim@epita.fr>
18492
18493 * src/system.h: Include alloca.h.
18494 * src/main.c (main) [C_ALLOCA]: Call alloca (0).
18495
18496 2001-11-23 Akim Demaille <akim@epita.fr>
18497
18498 * src/print_graph.c (print_actions): Remove `rule', unused.
18499 * src/LR0.c (kernel_size): Contain `int' instead of `size_t' to
18500 pacify GCC's signed < unsigned warnings.
18501 * src/closure.c (itemsetsize): Likewise.
18502 * src/reader.c (symbol_list_new): Static.
18503
18504 2001-11-23 Akim Demaille <akim@epita.fr>
18505
18506 Attaching lineno to buckets is stupid, since only one copy of each
18507 symbol is kept, only the line of the first occurrence is kept too.
18508
18509 * src/symtab.h, src/symtab.c (bucket): Remove the line member.
18510 * src/reader.c (rline_allocated): Remove, unused.
18511 (symbol_list): Have a `line' member.
18512 (symbol_list_new): New.
18513 (readgram): Use it.
18514 * src/print.c (print_grammar): Output the rule line numbers.
18515 * tests/regression.at (Solved SR Conflicts)
18516 (Unresolved SR Conflicts): Adjust.
18517 Reported by Hans Aberg.
18518
18519 2001-11-22 Marc Autret <autret_m@epita.fr>
18520
18521 * src/bison.simple [YYERROR_VERBOSE]: Force its value to be 1 or 0.
18522
18523 2001-11-22 Marc Autret <autret_m@epita.fr>
18524
18525 * src/muscle_tab.c (muscle_init): Remove initialization of
18526 skeleton muscle.
18527 * src/output.c (output_master_parser): Do it here.
18528
18529 2001-11-20 Akim Demaille <akim@epita.fr>
18530
18531 * po/sv.po: New.
18532 * configure.in (ALL_LINGUAS): Adjust.
18533 * po/POTFILE.in: Remove `nullable.c' and `derives.c' which no
18534 longer contains strings to translate.
18535
18536 2001-11-19 Akim Demaille <akim@epita.fr>
18537
18538 * src/conflicts.c (conflicts_print): Add a missing \n.
18539
18540 2001-11-19 Akim Demaille <akim@epita.fr>
18541
18542 * src/nullable.c (nullable_print): New.
18543 (set_nullable): Call it when tracing.
18544 Better locality of variables.
18545
18546 2001-11-19 Akim Demaille <akim@epita.fr>
18547
18548 * src/print.c (print_actions): Better locality of variables.
18549
18550 2001-11-19 Akim Demaille <akim@epita.fr>
18551
18552 * src/derives.c (print_derives): Fix and enrich.
18553 * src/closure.c (print_fderives): Likewise.
18554
18555 2001-11-19 Akim Demaille <akim@epita.fr>
18556
18557 * src/closure.c (itemsetend): Remove, replaced with...
18558 (itemsetsize): new.
18559
18560 2001-11-19 Akim Demaille <akim@epita.fr>
18561
18562 * src/LR0.c (kernel_end): Remove, replaced with...
18563 (kernel_size): new.
18564
18565 2001-11-19 Akim Demaille <akim@epita.fr>
18566
18567 * src/conflicts.c (set_conflicts): Use arrays instead of pointers
18568 to clarify.
18569
18570 2001-11-19 Akim Demaille <akim@epita.fr>
18571
18572 * src/closure.c (closure): Use arrays instead of pointers to clarify.
18573
18574 2001-11-19 Akim Demaille <akim@epita.fr>
18575
18576 * src/closure.c, src/derives.c, src/nullable.c: Adjust various
18577 trace messages.
18578 * src/LR0.c: Likewise.
18579 (allocate_itemsets): Use arrays instead of pointers to clarify.
18580
18581 2001-11-19 Akim Demaille <akim@epita.fr>
18582
18583 * src/getargs.c (statistics_flag): Replace with...
18584 (trace_flag): New.
18585 (longopts): Accept --trace instead of --statistics.
18586 * src/getargs.h, src/options.c: Adjust.
18587 * src/LR0.c, src/closure.c, src/derives.c, src/nullable.c,
18588 * src/reduce.c: Use trace_flags instead of the CPP conditional TRACE.
18589
18590 2001-11-19 Akim Demaille <akim@epita.fr>
18591
18592 * src/LR0.c (new_itemsets, get_state): Use more arrays and fewer
18593 pointers to clarify the code.
18594 (save_reductions, save_shifts): Factor common parts of alternatives.
18595
18596 2001-11-19 Akim Demaille <akim@epita.fr>
18597
18598 * src/LR0.c (new_state, get_state): Complete TRACE code.
18599 * src/closure.c: Include `reader.h' to get `tags', needed by the
18600 trace code.
18601 Rename the conditional DEBUG as TRACE.
18602 Output consistently TRACEs to stderr, not stdout.
18603 * src/derives.c: Likewise.
18604 * src/reduce.c: (inaccessable_symbols): Using if is better style
18605 than goto.
18606 Use `#if TRACE' instead of `#if 0' for tracing code.
18607
18608 2001-11-19 Akim Demaille <akim@epita.fr>
18609
18610 * src/system.h (LIST_FREE, shortcpy): New.
18611 * src/LR0.c: Use them.
18612 * src/output.c (free_itemsets, free_reductions, free_shifts):
18613 Remove, replaced by LIST_FREE.
18614
18615 2001-11-19 Akim Demaille <akim@epita.fr>
18616
18617 * src/state.h (CORE_ALLOC, SHIFTS_ALLOC, ERRS_ALLOC)
18618 (REDUCTIONS_ALLOC): New.
18619 * src/LR0.c, src/conflicts.c: Use them to de-obfuscate memory
18620 allocation.
18621
18622 2001-11-19 Akim Demaille <akim@epita.fr>
18623
18624 * src/LR0.c (new_state): Complete trace code.
18625 * src/nullable.c (set_nullable): Don't translate traces.
18626
18627 2001-11-19 Akim Demaille <akim@epita.fr>
18628
18629 * src/print_graph.c (print_core): Better locality of variables.
18630 * src/print.c (print_core): Likewise.
18631
18632 2001-11-19 Akim Demaille <akim@epita.fr>
18633
18634 * src/vcg.c: You do the output, so you are responsible of the
18635 handling of VCG syntax, in particular: use quotearg.
18636 * src/print_graph.c: Don't.
18637 (print_actions): Don't output the actions as part of the nodes,
18638 since that's the job of the edges.
18639 (print_state): Don't output by hand: fill the node description,
18640 and ask for its output.
18641
18642 2001-11-19 Akim Demaille <akim@epita.fr>
18643
18644 * src/bison.simple (yyparse): When verbosely reporting an error,
18645 no longer put additional quotes around token names.
18646 * tests/calc.at: Adjust.
18647
18648 2001-11-19 Akim Demaille <akim@epita.fr>
18649
18650 * src/symtab.h, src/symtab.c: `line' is a new member of `bucket'.
18651 * src/reader.c (record_rule_lines, rline, rline_allocated): Remove.
18652 * src/output.c: Adjust.
18653
18654 2001-11-19 Akim Demaille <akim@epita.fr>
18655
18656 * src/gram.h (rprec, rprecsym, rassoc): Remove, now part of...
18657 (rule_t): this.
18658 * src/conflicts.c, src/reader.c, src/reduce.c: Adjust.
18659
18660 2001-11-19 Akim Demaille <akim@epita.fr>
18661
18662 * src/gram.h (rule_t): New.
18663 (rule_table): New.
18664 (rrhs, rlhs): Remove, part of state_t.
18665 * src/print_graph.c, src/closure.c, src/conflicts.c, src/derives.c,
18666 * src/lalr.c, src/nullable.c, src/output.c, src/print.c,
18667 * src/reader.c, src/reduce.c: Adjust.
18668
18669 2001-11-19 Akim Demaille <akim@epita.fr>
18670
18671 * src/reader.c (symbols_output): New, extracted from...
18672 (packsymbols): Here.
18673 (reader): Call it.
18674
18675 2001-11-19 Akim Demaille <akim@epita.fr>
18676
18677 * src/lalr.c (set_maxrhs, maxrhs): Remove, replaced with...
18678 (maxrhs): this new function.
18679
18680 2001-11-19 Akim Demaille <akim@epita.fr>
18681
18682 * src/lalr.c (F): New macro to access the variable F.
18683 Adjust.
18684
18685 2001-11-19 Akim Demaille <akim@epita.fr>
18686
18687 * src/lalr.h (LA): New macro to access the variable LA.
18688 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
18689 * src/lalr.c: Adjust.
18690
18691 2001-11-19 Akim Demaille <akim@epita.fr>
18692
18693 * src/lalr.c (initialize_LA): Only initialize LA. Let...
18694 (set_state_table): handle the `lookaheads' members.
18695
18696 2001-11-19 Akim Demaille <akim@epita.fr>
18697
18698 * src/lalr.h (lookaheads): Removed array, whose contents is now
18699 a member of...
18700 (state_t): this structure.
18701 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
18702 Adjust.
18703
18704 2001-11-19 Akim Demaille <akim@epita.fr>
18705
18706 * src/lalr.h (consistent): Removed array, whose contents is now
18707 a member of...
18708 (state_t): this structure.
18709 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
18710 Adjust.
18711
18712 2001-11-19 Akim Demaille <akim@epita.fr>
18713
18714 * src/lalr.h (reduction_table, shift_table): Removed arrays, whose
18715 contents are now members of...
18716 (state_t): this structure.
18717 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
18718 Adjust.
18719
18720 2001-11-19 Akim Demaille <akim@epita.fr>
18721
18722 * src/lalr.h (state_t): New.
18723 (state_table): Be a state_t * instead of a core **.
18724 (accessing_symbol): Remove, part of state_t.
18725 * src/lalr.c: Adjust.
18726 (set_accessing_symbol): Merge into...
18727 (set_state_table): this.
18728 * src/print_graph.c, src/conflicts.c: Adjust.
18729
18730 2001-11-14 Akim Demaille <akim@epita.fr>
18731
18732 * tests/calc.at, tests/output.at, tests/regression.at,
18733 * tests/testsuite.at, tests/torture.at: Rely on Autotest 2.52g:
18734 now the tests are run in private dirs, therefore AC_CLEANUP and
18735 family can be simplified to 0-ary.
18736 * tests/atlocal.in: Now that we run `elsewhere' than in tests/,
18737 use abs. path to find config.h.
18738 * tests/calc.at (AT_CHECK_CALC): Don't try to check the compiler's
18739 stderr, there can be way too much random noise.
18740 Instead pass -Werror to GCC and rely on the exit status.
18741 Reported by Wolfram Wagner.
18742
18743 2001-11-14 Akim Demaille <akim@epita.fr>
18744
18745 * src/bison.simple (yyparse): Let yyls1, yyss1 and yyvs1 be
18746 defined only if yyoverflow is defined, to avoid `warning: unused
18747 variable `yyvs1''.
18748 Reported by The Test Suite.
18749
18750 2001-11-14 Akim Demaille <akim@epita.fr>
18751
18752 * src/print.c: Include reduce.h.
18753 Reported by Hans Aberg.
18754
18755 2001-11-14 Akim Demaille <akim@epita.fr>
18756
18757 * src/lex.c, src/lex.h (token_buffer, unlexed_token_buffer):
18758 Revert a previous patch: these are really const.
18759 * src/conflicts.c (conflict_report): Additional useless pair of
18760 braces to pacify GCC's warnings for `if () if () {} else {}'.
18761 * src/lex.c (parse_percent_token): Replace equal_offset with
18762 arg_offset.
18763 arg is const.
18764 Be sure to strdup `arg' when used, since there is no reason for
18765 token_buffer not to change.
18766
18767 2001-11-14 Akim Demaille <akim@epita.fr>
18768
18769 * src/system.h (EXIT_SUCCESS, EXIT_FAILURE): Ensure a proper
18770 definition.
18771 * src/main.c (main): Use them.
18772 Suggested by Hans Aberg.
18773
18774 2001-11-12 Akim Demaille <akim@epita.fr>
18775
18776 * src/system.h (ngettext): Now that we use ngettext, be sure to
18777 provide a default definition when NLS are not used.
18778
18779 2001-11-12 Akim Demaille <akim@epita.fr>
18780
18781 * doc/bison.texinfo: Use `$' as shell prompt, not `%'.
18782 Use @kbd to denote user input.
18783 (Language and Grammar): ANSIfy the example.
18784 Adjust its layout for info/notinfo.
18785 (Location Tracking Calc): Output error messages to stderr.
18786 Output locations in a more GNUtically correct way.
18787 Fix a couple of Englishos.
18788 Adjust @group/@end group pairs.
18789
18790 2001-11-12 Akim Demaille <akim@epita.fr>
18791
18792 %expect was not functioning at all.
18793
18794 * src/conflicts.c (expected_conflicts): Set to -1.
18795 (conflict_report): Use ngettext.
18796 (conflicts_print): Check %expect and make its violation an error.
18797 * doc/bison.texinfo (Expect Decl): Adjust.
18798 * configure.in (AM_GNU_GETTEXT): Ask for ngettext.
18799 * tests/regression.at (%expect not enough, %expect right)
18800 (%expect too much): New.
18801
18802 2001-11-12 Akim Demaille <akim@epita.fr>
18803
18804 * tests/regression.at (Conflicts): Rename as...
18805 (Unresolved SR Conflicts): this.
18806 (Solved SR Conflicts): New.
18807
18808 2001-11-12 Akim Demaille <akim@epita.fr>
18809
18810 * src/reduce.c (print_results): Rename as...
18811 (reduce_output): This.
18812 Output to OUT, passed as argument, instead of output_obstack.
18813 (dump_grammar): Likewise.
18814 (reduce_free): New.
18815 Also free V1.
18816 (reduce_grammar): No longer call reduce_output, since...
18817 * src/print.c (print_results): do it.
18818 * src/main.c (main): Call reduce_free;
18819
18820 2001-11-12 Akim Demaille <akim@epita.fr>
18821
18822 * src/conflicts.c (print_reductions): Accept OUT as argument.
18823 Output to it, not to output_obstack.
18824 * src/print.c (print_actions): Adjust.
18825
18826 2001-11-12 Akim Demaille <akim@epita.fr>
18827
18828 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts): Return
18829 the result instead of using...
18830 (src_total, rrc_total, src_count, rrc_count): Remove.
18831 (any_conflicts): Remove.
18832 (print_conflicts): Split into...
18833 (conflicts_print, conflicts_output): New.
18834 * src/conflicts.h: Adjust.
18835 * src/main.c (main): Invoke both conflicts_output and conflicts_print.
18836 * src/print.c (print_grammar): Issue `\n' between two rules.
18837 * tests/regression.at (Conflicts): New.
18838 Reported by Tom Lane.
18839
18840 2001-11-12 Akim Demaille <akim@epita.fr>
18841
18842 * tests/regression.at (Invalid input): Remove, duplicate with
18843 ``Invalid input: 1''.
18844
18845 2001-11-12 Akim Demaille <akim@epita.fr>
18846
18847 * tests/torture.at (AT_DATA_STACK_TORTURE)
18848 (Exploding the Stack Size with Alloca)
18849 (Exploding the Stack Size with Malloc): New.
18850
18851 2001-11-12 Akim Demaille <akim@epita.fr>
18852
18853 * src/bison.simple (YYSTACK_REALLOC): New.
18854 (yyparse) [!yyoverflow]: Use it and free the old stack.
18855 Reported by Per Allansson.
18856
18857 2001-11-12 Pascal Bart <pascal.bart@epita.fr>
18858
18859 * src/bison.simple: Define type yystype instead of YYSTYPE, and
18860 define CPP macro, which substitute YYSTYPE by yystype.
18861 * src/reader.c (parse_union_decl): Output yystype/YYSTYPE as we do
18862 with yyltype/YYLTYPE. This allows inclusion of the generated
18863 header within the parser if the compiler, such as GGC, accepts
18864 multiple equivalent #defines.
18865 From Akim.
18866
18867 2001-11-05 Akim Demaille <akim@epita.fr>
18868
18869 * src/reader.c (symbols_output): New, extracted from...
18870 (packsymbols): here.
18871 (reader): Adjust.
18872
18873 2001-11-05 Akim Demaille <akim@epita.fr>
18874
18875 * src/lex.c (parse_percent_token): s/quotearg/quote/.
18876
18877 2001-11-05 Akim Demaille <akim@epita.fr>
18878
18879 * tests/regression.at (AT_TEST_CPP_GUARD_H): Adjust the clean up
18880 pattern.
18881
18882 2001-11-05 Akim Demaille <akim@epita.fr>
18883
18884 * src/options.h (struct option_table_struct): set_flags is void*.
18885 * src/options.c (longopts): Support `--output' and `%output'.
18886 (usage): Adjust.
18887 * src/lex.h (tok_setopt): Remove, replaced with...
18888 (tok_intopt, tok_stropt): these new guys.
18889 * src/lex.c (getopt.h): Not needed.
18890 (token_buffer, unlexed_token_buffer): Not const.
18891 (percent_table): Promote `-' over `_' in directive names.
18892 Active `%name-prefix', `file-prefix', and `output'.
18893 (parse_percent_token): Accept possible arguments to directives.
18894 Promote `-' over `_' in directive names.
18895
18896 2001-11-04 Akim Demaille <akim@epita.fr>
18897
18898 * doc/bison.texinfo (Decl Summary): Split the list into
18899 `directives for grammars' and `directives for bison'.
18900 Sort'em.
18901 Add description of `%name-prefix', `file-prefix', and `output'.
18902 Promote `-' over `_' in directive names.
18903 (Bison Options): s/%locactions/%locations/. Nice Freudian slip.
18904 Simplify the description of `--name-prefix'.
18905 Promote `-' over `_' in directive names.
18906 Promote `--output' over `--output-file'.
18907 Fix the description of `--defines'.
18908 * tests/output.at: Exercise %file-prefix and %output.
18909
18910 2001-11-02 Akim Demaille <akim@epita.fr>
18911
18912 * doc/refcard.tex: Update.
18913
18914 2001-11-02 Akim Demaille <akim@epita.fr>
18915
18916 * src/symtab.h (SUNDEF): New.
18917 * src/symtab.c (bucket_new): Init user_token_number to SUNDEF to
18918 stand for `uninitialized', instead of 0.
18919 * src/reader.c (packsymbols, parse_thong_decl): Adjust.
18920 * src/lex.c (lex): Adjust.
18921
18922 * tests/calc.at (_AT_DATA_CALC_Y): Declare a token for EOF.
18923 Number it 0.
18924 Let yylex return it instead of a plain 0.
18925 Reported by Dick Streefland.
18926
18927 2001-11-02 Akim Demaille <akim@epita.fr>
18928
18929 * tests/regression.at (Mixing %token styles): New test.
18930
18931 2001-11-02 Akim Demaille <akim@epita.fr>
18932
18933 * src/reader.c (parse_thong_decl): Formatting changes.
18934 (token_translations_init): New, extracted from...
18935 (packsymbols): Here.
18936 Adjust.
18937
18938 2001-11-01 Akim Demaille <akim@epita.fr>
18939
18940 * tests/regression.at (AT_TEST_CPP_GUARD_H): New.
18941 Check that `9foo.y' produces correct cpp guards.
18942 * src/files.c (compute_header_macro): Prepend `BISON_' to CPP
18943 guards.
18944 Reported by Wwp.
18945
18946 2001-11-01 Akim Demaille <akim@epita.fr>
18947
18948 * tests/regression.at (Invalid input: 2): New.
18949 * src/lex.c (unlexed_token_buffer): New.
18950 (lex, unlex): Adjust: when unlexing, be sure to save token_buffer
18951 too.
18952 Reported by Wwp.
18953
18954 2001-11-01 Akim Demaille <akim@epita.fr>
18955
18956 * tests/calc.at: Catch up with 1.30.
18957 * configure.in: Bump to 1.49a.
18958 Adjust to newer Autotest.
18959
18960 2001-10-19 Pascal Bart <pascal.bart@epita.fr>
18961
18962 * src/conflicts.c: Move global variables rrc_total and src_total ...
18963 (print_conflicts): here.
18964 * src/output.c (output): Free global variable user_toknums.
18965 * src/lex.c (token_obstack): Become static.
18966
18967 2001-10-18 Akim Demaille <akim@epita.fr>
18968
18969 * tests/atlocal.in (GCC): Add.
18970 * tests/calc.at: s/m4_match/m4_bmatch/.
18971 s/m4_patsubst/m4_bpatsubst/.
18972 (AT_CHECK_CALC): Check the compiler's stderr only if it's GCC.
18973 * configure.in: AC_SUBST(GCC).
18974
18975 2001-10-14 Marc Autret <autret_m@epita.fr>
18976
18977 * src/options.c (create_long_option_table): Fix.
18978
18979 2001-10-10 Akim Demaille <akim@epita.fr>
18980
18981 * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
18982
18983 2001-10-04 Akim Demaille <akim@epita.fr>
18984
18985 * src/reader.c (parse_union_decl): Push the caracters in
18986 union_obstack, not attrs_obstack.
18987
18988 2001-10-04 Akim Demaille <akim@epita.fr>
18989
18990 Merge in the branch 1.29.
18991
18992 * src/reader.c (packsymbols): Use a temporary obstack for
18993 `%%tokendef', since output_stack is already used elsewhere.
18994
18995 2001-10-02 Akim Demaille <akim@epita.fr>
18996
18997 Bump 1.29d.
18998
18999 2001-10-02 Akim Demaille <akim@epita.fr>
19000
19001 Version 1.29c.
19002
19003 2001-10-02 Akim Demaille <akim@epita.fr>
19004
19005 * tests/regression.at (Invalid CPP headers): New.
19006 From Alexander Belopolsky.
19007 * src/files.c (compute_header_macro): Map non alnum chars to `_'.
19008
19009 2001-10-02 Akim Demaille <akim@epita.fr>
19010
19011 * tests/regression.at (Invalid input): New.
19012 * src/lex.c (lex): Be sure to set `token_buffer' in any case.
19013 Reported by Shura.
19014
19015 2001-10-02 Akim Demaille <akim@epita.fr>
19016
19017 * tests/calc.at: Now that --debug works, the tests must be adjusted.
19018
19019 2001-10-02 Akim Demaille <akim@epita.fr>
19020
19021 * src/output.c (output_parser): Assert `skeleton'.
19022 * src/files.c (skeleton_find): Look harder for skeletons on DOSish
19023 systems.
19024 From Shura.
19025
19026 2001-10-01 Marc Autret <autret_m@epita.fr>
19027
19028 * src/lex.h: Echo modifications.
19029 * src/lex.c (unlex): Parameter is now token_t.
19030 From Hans Aberg.
19031
19032 2001-10-01 Marc Autret <autret_m@epita.fr>
19033
19034 * src/main.c: Include lex.h.
19035 From Hans Aberg.
19036
19037 2001-09-29 Akim Demaille <akim@epita.fr>
19038
19039 * src/getargs.c (longopts): `--debug' is `-t', not `-d'.
19040
19041 2001-09-28 Akim Demaille <akim@epita.fr>
19042
19043 * tests/testsuite.at: Update to newer Autotest.
19044 * tests/Makefile.am (EXTRA_DIST): bison is not to be shipped.
19045
19046 2001-09-27 Akim Demaille <akim@epita.fr>
19047
19048 Position independent wrapper.
19049
19050 * tests/bison: Remove.
19051 * tests/bison.in: New.
19052 * configure.in: Adjust.
19053
19054 2001-09-27 Paul Eggert <eggert@twinsun.com>
19055
19056 Port quotearg fixes from tar 1.13.24.
19057
19058 * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
19059 tm to be declared.
19060 (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
19061 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
19062
19063 * m4/Makefile.am (EXTRA_DIST): Add mbrtowc.m4.
19064 * m4/mbrtowc.m4: New file.
19065 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit and stddef.h.
19066 Use jm_FUNC_MBRTOWC instead of AC_CHECK_FUNCS(mbrtowc).
19067
19068 2001-09-27 Akim Demaille <akim@epita.fr>
19069
19070 Bump to 1.29c.
19071
19072 2001-09-27 Akim Demaille <akim@epita.fr>
19073
19074 Version 1.29b.
19075
19076 2001-09-25 Akim Demaille <akim@epita.fr>
19077
19078 * src/system.h: Include `xalloc.h'.
19079 Remove it from the C files.
19080 * src/files.c (output_files): Free the obstacks.
19081 * src/lex.c (init_lex): Rename as...
19082 (lex_init): this.
19083 (lex_free): New.
19084 * src/main.c (main): Use it.
19085
19086 2001-09-24 Marc Autret <autret_m@epita.fr>
19087
19088 * src/vcg.c (open_edge, close_edge, open_node, close_node): Change
19089 to output informations in fout (FILE*).
19090 (open_graph, close_graph): Likewise.
19091 (output_graph, output_edge, output_node): Likewise.
19092 * src/vcg.h: Update function prototypes.
19093 * src/print_graph.c (print_graph): Open output graph file.
19094 (print_actions): Adjust.
19095 * src/files.h: Remove extern declaration.
19096 * src/files.c: Remove graph_obstack declaration.
19097 (open_files): Remove graph_obstack initialization.
19098 (output_files): Remove graph_obstack saving.
19099
19100 2001-09-24 Marc Autret <autret_m@epita.fr>
19101
19102 * src/files.c (compute_output_file_names): Fix.
19103
19104 2001-09-24 Marc Autret <autret_m@epita.fr>,
19105 Akim Demaille <akim@epita.fr>
19106
19107 * src/reader.c (reader): Remove call to free_symtab ().
19108 * src/main.c (main): Call it here.
19109 Include symtab.h.
19110 * src/conflicts.c (initialize_conflicts): Rename as...
19111 (solve_conflicts): this.
19112 * src/print.c (print_core, print_actions, print_state)
19113 (print_grammar): Dump to a file instead a `output_obstack'.
19114 (print_results): Dump `output_obstack', and then proceed with the
19115 FILE *.
19116 * src/files.c (compute_output_file_names, close_files): New.
19117 (output_files): Adjust.
19118 * src/main.c (main): Adjust.
19119
19120 2001-09-23 Marc Autret <autret_m@epita.fr>
19121
19122 * src/files.c (compute_header_macro): Computes header macro name
19123 from spec_defines_file when given.
19124
19125 2001-09-23 Marc Autret <autret_m@epita.fr>
19126
19127 * src/files.c (output_files): Add default extensions.
19128
19129 2001-09-22 Akim Demaille <akim@epita.fr>
19130
19131 * src/conflicts.c (finalize_conflicts): Rename as...
19132 (free_conflicts): this.
19133
19134 2001-09-22 Akim Demaille <akim@epita.fr>
19135
19136 * src/gram.c (gram_free): Rename back as...
19137 (dummy): this.
19138 (output_token_translations): Free `token_translations'.
19139 * src/symtab.c (free_symtab): Free the tag field.
19140
19141 2001-09-22 Akim Demaille <akim@epita.fr>
19142
19143 Remove `translations' as it is always set to true.
19144
19145 * src/gram.h: Adjust.
19146 * src/reader.c (packsymbols, parse_token_decl): Adjust
19147 * src/print.c (print_grammar): Adjust.
19148 * src/output.c (output_token_translations): Adjust.
19149 * src/lex.c (lex): Adjust.
19150 * src/gram.c: Be sure the set pointers to NULL.
19151 (dummy): Rename as...
19152 (gram_free): this.
19153
19154 2001-09-22 Akim Demaille <akim@epita.fr>
19155
19156 * configure.in: Invoke AM_LIB_DMALLOC.
19157 * src/system.h: Use dmalloc.
19158 * src/LR0.c: Be sure to have pointers initialized to NULL.
19159 (allocate_itemsets): Allocate kernel_items only if needed.
19160
19161 2001-09-22 Akim Demaille <akim@epita.fr>
19162
19163 * configure.in: Bump to 1.29b.
19164 * tests/Makefile.am (DISTCLEANFILES): Add package.m4.
19165 * tests/calc.at (_AT_DATA_CALC_Y): #undef malloc so that we don't
19166 need xmalloc.c in calc.y.
19167 From Pascal Bart.
19168
19169 2001-09-21 Akim Demaille <akim@epita.fr>
19170
19171 Version 1.29a.
19172 * Makefile.maint, config/config.guess, config/config.sub,
19173 * config/missing: Update from masters.
19174 * tests/Makefile.am ($(srcdir)/$(TESTSUITE)): No longer depend
19175 upon package.m4.
19176 * configure.in (ALL_LINGUAS): Add `tr'.
19177
19178 2001-09-21 Akim Demaille <akim@epita.fr>
19179
19180 * tests/Makefile.am (package.m4): Move to...
19181 ($(srcdir)/$(TESTSUITE)): here.
19182
19183 2001-09-20 Akim Demaille <akim@epita.fr>
19184
19185 * src/complain.c: No longer try to be standalone: use system.h.
19186 Don't assume __STDC__ is defined to 1. Just test if it is defined.
19187 * src/complain.h: Likewise.
19188 * src/reduce.c (useless_nonterminals, inaccessable_symbols):
19189 Remove the unused variable `n'.
19190 From Albert Chin-A-Young.
19191
19192 2001-09-18 Marc Autret <autret_m@epita.fr>
19193
19194 * doc/bison.1: Update.
19195 * doc/bison.texinfo (Bison Options): Update --defines and --graph
19196 descriptions.
19197 (Option Cross Key): Update.
19198 Add --graph.
19199
19200 2001-09-18 Marc Autret <autret_m@epita.fr>
19201
19202 * tests/regression.at: New test (comment in %union).
19203
19204 2001-09-18 Marc Autret <autret_m@epita.fr>
19205
19206 * src/reader.c (parse_union_decl): Do not output '/'. Let copy_comment
19207 do that.
19208 Reported by Keith Browne.
19209
19210 2001-09-18 Marc Autret <autret_m@epita.fr>
19211
19212 * tests/output.at: Add tests for --defines and --graph.
19213
19214 2001-09-18 Marc Autret <autret_m@epita.fr>
19215
19216 * tests/output.at: Removes tests of %{header,src}_extension features.
19217
19218 2001-09-18 Akim Demaille <akim@epita.fr>
19219
19220 * tests/Makefile.am (package.m4): New.
19221 * tests/calc.at (_AT_CHECK_CALC): Just run `calc input'.
19222 (_AT_CHECK_CALC_ERROR): Likewise.
19223 Factor the `, ' part of verbose error messages.
19224
19225 2001-09-18 Marc Autret <autret_m@epita.fr>
19226
19227 * src/getargs.c (longopts): Declare --defines and --graph as options
19228 with optional arguments.
19229 * src/files.h: Add extern declarations.
19230 * src/files.c (spec_graph_file, spec_defines_file): New.
19231 (output_files): Update.
19232 Remove CPP-outed code.
19233
19234 2001-09-18 Marc Autret <autret_m@epita.fr>
19235
19236 Turn off %{source,header}_extension feature.
19237
19238 * src/files.c (compute_exts_from_gf): Update.
19239 (compute_exts_from_src): Update.
19240 (output_files): CPP-out useless code.
19241 * src/files.h: Remove {header,source}_extension extern declarations.
19242 * src/reader.c (parse_dquoted_param): CPP-out.
19243 (parse_header_extension_decl): Remove.
19244 (parse_source_extension_decl): Remove.
19245 (read_declarations): Remove cases tok_{hdrext,srcext}.
19246 * src/lex.c (percent_table): Remove {header,source}_extension entries.
19247 * src/lex.h (token_t): Remove tok_hdrext and tok_srcext.
19248
19249 2001-09-10 Akim Demaille <akim@epita.fr>
19250
19251 * tests/output.at (AT_CHECK_BISON_FLAGS, AT_CHECK_BISON_PERCENT):
19252 (AT_CHECK_BISON_PERCENT_FLAGS): Merge into...
19253 (AT_CHECK_OUTPUT): this.
19254 Merely check ls' exit status, its output is useless.
19255
19256 2001-09-10 Akim Demaille <akim@epita.fr>
19257
19258 * tests/calc.at: Use m4_match.
19259 (_AT_DATA_CALC_Y): Check `yyin != NULL', not `stdin != NULL'.
19260
19261 2001-09-10 Marc Autret <autret_m@epita.fr>,
19262 Akim Demaille <akim@epita.fr>
19263
19264 * src/vcg.h (graph_s): color, textcolor, bordercolor are now
19265 enum color_e.
19266 * src/print_graph.c (print_graph): Initalize graph.layoutalgorithm
19267 to `normal'.
19268 * src/reader.c (parse_token_decl): Initialize token with tok_eof.
19269 * src/lex.h: Adjust prototype.
19270 (token_t): Add `tok_undef'.
19271 * src/lex.c (struct percent_table_struct): Retval is now a token_t.
19272 (parse_percent_token): Now returns token_t.
19273 Add default statement in switch.
19274 (lex): Separate `c' as an input variable, from the token_t result
19275 part.
19276 (unlexed): Is a token_t.
19277
19278 2001-09-10 Akim Demaille <akim@epita.fr>
19279
19280 * configure.in: Bump to 1.29a.
19281
19282 2001-09-07 Akim Demaille <akim@epita.fr>
19283
19284 Version 1.29.
19285
19286 2001-08-30 Akim Demaille <akim@epita.fr>
19287
19288 * tests/atgeneral.m4, tests/atconfig.in, tests/suite.at: Remove.
19289 * m4/atconfig.m4: Remove.
19290 * tests/testsuite.at, tests/atlocal.in, tests/output.at,
19291 * tests/bison: New.
19292 * tests/regression.at, tests/calc.at: Use m4_define, AT_BANNER,
19293 m4_if, m4_patsubst, and m4_regexp.
19294 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Use an
19295 `input' file instead of echo.
19296
19297 2001-08-29 Akim Demaille <akim@epita.fr>
19298
19299 Bump to 1.28e.
19300
19301 2001-08-29 Akim Demaille <akim@epita.fr>
19302
19303 Version 1.28d.
19304
19305 2001-08-29 Paul Eggert <eggert@twinsun.com>
19306
19307 * src/bison.simple (yyparse): Don't take the address of an
19308 item before the start of an array, as that doesn't conform to
19309 the C Standard.
19310
19311 2001-08-29 Robert Anisko <anisko_r@epita.fr>
19312
19313 * doc/bison.texinfo (Location Tracking Calc): New node.
19314
19315 2001-08-29 Paul Eggert <eggert@twinsun.com>
19316
19317 * src/output.c (output): Do not define const, as this now
19318 causes more problems than it cures.
19319
19320 2001-08-29 Akim Demaille <akim@epita.fr>
19321
19322 * doc/bison.texinfo: Modernize `@node' and `@top' use: just name
19323 the nodes.
19324 Be sure to tag the `detailmenu'.
19325
19326 2001-08-29 Akim Demaille <akim@epita.fr>
19327
19328 * Makefile.maint (do-po-update): Wget refuses to overwrite files:
19329 download in a tmp dir.
19330
19331 2001-08-28 Marc Autret <autret_m@epita.fr>
19332
19333 * config/depcomp: New file.
19334
19335 2001-08-28 Marc Autret <autret_m@epita.fr>
19336
19337 * doc/bison.1 (mandoc): Adjust.
19338 From Juan Manuel Guerrero.
19339
19340 2001-08-28 Marc Autret <autret_m@epita.fr>
19341
19342 * src/print_graph.c (print_state): Fix.
19343
19344 2001-08-27 Marc Autret <autret_m@epita.fr>
19345
19346 * src/vcg.h (classname_s, infoname_s, node_s): Constify the
19347 char * members.
19348 Echo modifications to the functions prototypes.
19349 * src/vcg.c (add_classname, add_infoname): Adjust arguments.
19350
19351 2001-08-27 Marc Autret <autret_m@epita.fr>
19352
19353 * src/vcg.c: Include `xalloc.h'.
19354 (add_colorentry): New.
19355 (add_classname): New.
19356 (add_infoname): New.
19357 * src/vcg.h: Add new prototypes.
19358
19359 2001-08-27 Akim Demaille <akim@epita.fr>
19360
19361 * Makefile.maint: Sync. again with CVS Autoconf.
19362
19363 2001-08-27 Akim Demaille <akim@epita.fr>
19364
19365 * Makefile.maint: Formatting changes.
19366 (po-update, cvs-update, update): New targets.
19367 (AMTAR): Remove.
19368
19369 2001-08-27 Akim Demaille <akim@epita.fr>
19370
19371 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
19372 * Makefile.maint: Sync. with CVS Autoconf.
19373
19374 2001-08-27 Marc Autret <autret_m@epita.fr>
19375
19376 * src/vcg.h (struct infoname_s): New.
19377 (struct colorentry_s): New.
19378 (graph_s): New fields {vertical,horizontal}_order in structure.
19379 Add `infoname' field.
19380 Add `colorentry' field;
19381 * src/vcg_defaults.h (G_VERTICAL_ORDER): New.
19382 (G_HORIZONTAL_ORDER): New.
19383 (G_INFONAME): New.
19384 (G_COLORENTRY): New.
19385 * src/vcg.c (output_graph): Add output of {vertical,horizontal}_order.
19386 Add output of `infoname'.
19387 Add output of `colorentry'.
19388
19389 2001-08-27 Marc Autret <autret_m@epita.fr>
19390
19391 * src/reader.c (parse_dquoted_param): Rename variable `index' to `i'.
19392 This one shadowed a global parameter.
19393
19394 2001-08-24 Marc Autret <autret_m@epita.fr>
19395
19396 * src/print_graph.c (node_output_size): Declared POSIX `size_t' type,
19397 instead of `unsigned'.
19398 (print_state): Do not call obstack_object_size () in obstack_grow ()
19399 to avoid macro variables shadowing.
19400
19401 2001-08-23 Marc Autret <autret_m@epita.fr>
19402
19403 * src/lex.c (percent_table): Typo: s/naem/name/.
19404 Add graph option.
19405 Normalize new options declarations.
19406
19407 2001-08-20 Pascal Bart <pascal.bart@epita.fr>
19408
19409 * tests/suite.at: Exercise %header_extension and %source_extension.
19410
19411 2001-08-16 Marc Autret <autret_m@epita.fr>
19412
19413 * src/reader.c (parse_dquoted_param): New.
19414 (parse_header_extension_decl): Use it.
19415 (parse_source_extension_decl): Likewise.
19416
19417 2001-08-16 Marc Autret <autret_m@epita.fr>
19418
19419 * src/vcg.c: Remove includes of `complain.h' and `xalloc.h'.
19420 (get_xxxx_str): Use assert () instead of complain ().
19421 Remove return invokations in default cases.
19422 (get_decision_str): Modify default behaviour. Remove second argument.
19423 Echo modifications on calls.
19424 (output_graph): Fix.
19425
19426 2001-08-16 Marc Autret <autret_m@epita.fr>
19427
19428 * src/getargs.c (usage): Update with ``-g, --graph''.
19429
19430 2001-08-16 Marc Autret <autret_m@epita.fr>
19431
19432 * doc/bison.texinfo (Bison Options): Add items `-g', `--graph'.
19433 (Option Cross Key): Likewise.
19434 * doc/bison.1: Update.
19435
19436 2001-09-25 Pascal Bart <pascal.bart@epita.fr>
19437
19438 * src/output.c (output_master_parser): Don't finish action_obstack.
19439 (output_parser): Don't care about the muscle action, here.
19440 (prepare): Copy the action_obstack in the action muscle.
19441 (output): Free action_obstack.
19442
19443 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
19444
19445 * src/reader.c (parse_union_decl): Add new obstack union_obstack. Which
19446 will contain `%union' declaration.
19447 (parse_union_decl): Delete #line directive output.
19448 (parse_union_decl): Substitute /attrs_obstack/union_obstack for all
19449 informations about %union.
19450 (parse_union_decl): Copy the union_obstack in the muscle stype.
19451 * src/bison.simple: Add new #line directive.
19452 Add typdef %%stype YYSTYPE.
19453
19454 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
19455
19456 * src/bison.simple: Add new `#line' directive.
19457
19458 2001-09-22 Pascal Bart <pascal.bart@epita.fr>
19459
19460 * src/bison.simple: New `#line' directive.
19461 * src/output.c (output_parser): Support new dynamic muscle input_line.
19462
19463 2001-09-22 Marc Autret <autret_m@epita.fr>
19464
19465 * src/output.c (output_master_parser): New.
19466 (output_parser): Be more re-entrant.
19467
19468 2001-09-21 Marc Autret <autret_m@epita.fr>
19469
19470 * src/reader.c (copy_definition, parse_union_decl): Update and use
19471 `linef' muscle.
19472 (copy_action): Likewise.
19473 Use obstack_1grow ().
19474 * src/muscle_tab.c (muscle_init): Add muscle `linef'.
19475
19476 2001-09-21 Marc Autret <autret_m@epita.fr>
19477
19478 * src/options.c (option_table): Adjust.
19479 * src/lex.c (parse_percent_token): Fix.
19480
19481 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
19482
19483 * src/options.c (symtab.h): Include it, need by lex.h.
19484
19485 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
19486
19487 * src/lex.c (parse_percent_token): Change type of variable `tx', which
19488 is now an option_table_struct*.
19489 (option_strcmp): New function option_strcmp.
19490 (parse_percent_token): Call option_strcmp.
19491 * src/getargs.c (xalloc.h, options.h): Include it.
19492 (getargs): Call create_long_option_table.
19493 (getargs): Free longopts at the end of the function.
19494 (shortopts): Move in options.c.
19495 * src/options.c (create_long_option_table): New function. Convert
19496 information from option_table to option structure.
19497 * src/reader.c (options.h): Include it.
19498
19499 * src/Makefile.am: Adjust.
19500 * src/options.c (option_table): Create from longopts and percent_table.
19501 * src/getargs.c (longopts): Delete.
19502 * src/lex.c (struct percent_table_struct): Delete.
19503 (percent_table): Delete.
19504 (options.h): Include it.
19505 * src/options.c: Create.
19506 * src/options.h: Create.
19507 Declare enum opt_access_e.
19508 Define struct option_table_struct.
19509
19510 2001-09-20 Marc Autret <autret_m@epita.fr>
19511
19512 * doc/bison.texinfo: Adjust terminologies about prologue and epilogue
19513 sections of Bison.
19514
19515 2001-09-19 Pascal Bart <pascal.bart@epita.fr>
19516
19517 * src/bison.simple: s/%%filename/%%skeleton.
19518 * src/muscle_tab.c (getargs.h): Include it.
19519 (muscle_init): Insert new muscle skeleton.
19520
19521 2001-09-18 Pascal Bart <pascal.bart@epita.fr>
19522
19523 * src/output.c (output_parser): Delete unused variable actions_dumped.
19524
19525 2001-09-07 Pascal Bart <pascal.bart@epita.fr>
19526
19527 * src/output.c (output): Delete call to reader_output_yylsp.
19528 * src/reader.c (reader): Likewise.
19529 * src/reader.h: Delete declaration of reader_output_yylsp.
19530
19531 2001-09-02 Marc Autret <autret_m@epita.fr>
19532
19533 * src/reader.c: Include muscle_tab.h.
19534 (parse_union_decl): Update.
19535 (parse_macro_decl): Rename parse_muscle_decl.
19536 Update to use renamed functions and variable.
19537 (read_declarations, copy_action, read_additionnal_code, : Updated
19538 with correct variables and functions names.
19539 (packsymbols, reader): Likewise.
19540
19541 * src/reader.h (muscle_obstack): Extern declaration update.
19542
19543 * src/output.c: Include muscle_tab.h
19544 In all functions using macro_insert, change by using muscle_insert ().
19545 (macro_obstack): Rename muscle_obstack.
19546 Echo modifications in the whole file.
19547 (MACRO_INSERT_INT): Rename MUSCLE_INSERT_INT.
19548 (MACRO_INSERT_STRING): Rename MUSCLE_INSERT_STRING.
19549 (MACRO_INSERT_PREFIX): Rename MUSCLE_INSERT_PREFIX.
19550
19551 * src/muscle_tab.h: Update double inclusion macros.
19552 (macro_entry_s): Rename muscle_entry_s.
19553 Update prototypes.
19554
19555 * src/muscle_tab.c: Include muscle_tab.h.
19556 Rename macro_tabble to muscle_table.
19557 (mhash1, mhash2, mcmp): Use muscle_entry.
19558 (macro_init): Rename muscle_init. Update.
19559 (macro_insert): Rename muscle_insert. Update.
19560 (macro_find): Rename muscle_find. Update.
19561
19562 * src/main.c: Include muscle_tab.h.
19563 (main): Call muscle_init ().
19564 * src/Makefile.am (bison_SOURCES): Echo modifications.
19565
19566 2001-09-02 Marc Autret <autret_m@epita.fr>
19567
19568 Now the files macro_tab.[ch] are named muscle_tab.[ch].
19569
19570 * src/muscle_tab.c, src/muscle_tab.h: Add files.
19571
19572 2001-09-02 Marc Autret <autret_m@epita.fr>
19573
19574 * src/macrotab.c, src/macrotab.h: Remove.
19575
19576 2001-09-01 Pascal Bart <pascal.bart@epita.fr>
19577
19578 * src/reader.c (copy_guard): Use muscle to specify the `#line'
19579 filename.
19580
19581 2001-09-01 Marc Autret <autret_m@epita.fr>
19582
19583 * tests/calc.at (exp): Now, YYERROR_VERBOSE need to be set
19584 to an explicit value to activate the feature. We do it here.
19585
19586 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
19587
19588 * src/output.c (prepare): Delete the `filename' muscule insertion.
19589 * src/reader.c (copy_action): Use `filename' muscule with `#line'.
19590 (parse_union_decl): Likewise.
19591 * src/macrotab.c (macro_init): Initialize filename by infile.
19592
19593 2001-08-31 Marc Autret <autret_m@epita.fr>
19594
19595 * src/bison.simple (YYLSP_NEEDED): New definition.
19596 * src/output.c (prepare): Add macro insertion of `locations_flag'
19597
19598 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
19599
19600 * src/output.c (prepare): Delete insertion of previous muscles,
19601 and insert the `prefix' muscles.
19602 * src/macrotab.c (macro_init): Likewise.
19603 (macro_init): Initialization prefix directive by `yy'.
19604 * src/bison.simple: Substitute all %%yylex, %%yychar, %%yylval,
19605 %%yydebug, %%yyerror, %%yynerrs and %%yyparse by yylex, yychar,
19606 yylval, yydebug, yyerror, yynerrs and yyparse.
19607 New directive `#define' to substitute yydebug, ... with option
19608 name_prefix.
19609
19610 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
19611
19612 * src/main.c (main): Standardize.
19613 * src/output.c (output_table_data, output_parser): Likewise.
19614 * src/macrotab.h, src/macrotab.c, src/bison.simple: Likewise.
19615
19616 2001-08-31 Pascal Bart <pascal.bart@epita.fr>, Marc Autret <autret_m@epita.fr>
19617
19618 * src/reader.c (read_additionnal_code): Rename %%user_code to
19619 %%epilogue.
19620 * src/output.c (output): Rename %%declarations to %%prologue.
19621 * src/bison.simple: Echo modifications.
19622
19623 2001-08-31 Marc Autret <autret_m@epita.fr>
19624
19625 * src/reader.c (readgram): CleanUp.
19626 (output_token_defines): Likewise.
19627 (packsymbols): Likewise.
19628 (reader): Likewise.
19629 * src/output.c (output): CPP-out useless code.
19630
19631 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
19632
19633 * src/reader.c (reader): Delete obsolete call to function
19634 output_trailers and output_headers.
19635 * src/output.h: Remove obsolete functions prototypes of output_headers
19636 and output_trailers.
19637
19638 2001-08-30 Pascal Bart <pascal.bart@epita.fr>
19639
19640 * src/main.c: Include macrotab.h.
19641 * src/macrotab.h (macro_entry_s): Constify fields.
19642 Adjust functions prototypes.
19643 * src/macrotab.c (macro_insert): Constify key and value.
19644 (macro_find): Constify key.
19645 (macro_insert): Include 'xalloc.h'
19646 (macro_insert): Use XMALLOC.
19647 (macro_find): Constify return value.
19648 * src/output.c (output_table_data): Rename table to table_data.
19649 (output_parser): Constify macro_key, macro_value.
19650
19651 2001-08-30 Marc Autret <autret_m@epita.fr>
19652
19653 * src/reader.c (parse_skel_decl): New.
19654 (read_declarations): Add case `tok_skel', call parse_skel_decl ().
19655 * src/lex.h (token_t): New token `tok_skel'.
19656 * src/lex.c (percent_table): Add skeleton option entry.
19657 Standardize.
19658
19659 2001-08-29 Marc Autret <autret_m@epita.fr>
19660
19661 * src/bison.simple: Add %%user_code directive at the end.
19662 * src/reader.c (read_additionnal_code): New.
19663 (reader): Use it.
19664 * src/output.c (output_program): Remove.
19665 (output): Update.
19666
19667 2001-08-28 Marc Autret <autret_m@epita.fr>
19668
19669 * src/output.c (output_actions): Clean up.
19670 (output_gram): CPP-out useless code.
19671 * src/reader.c (reader): Clean up, CPP-out useless code.
19672
19673 2001-08-28 Pascal Bart <pascal.bart@epita.fr>
19674
19675 * src/output.c (output): Copy attrs_obstack in the '%%definitions'
19676 directive.
19677 * src/bison.simple: Add `%%definitions'.
19678
19679 2001-08-28 Marc Autret <autret_m@epita.fr>
19680
19681 * config/depcomp: New file.
19682
19683 2001-08-27 Paul Eggert <eggert@twinsun.com>
19684
19685 * src/bison.simple (yyparse): Don't take the address of an
19686 item before the start of an array, as that doesn't conform to
19687 the C Standard.
19688
19689 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
19690
19691 * src/output.c (output): Remove the initialization of the macro
19692 obstack. It was done too late here.
19693
19694 * src/reader.c (parse_macro_decl): Fix. Use of the macro obstack was
19695 completely wrong.
19696 (reader): Initialize the macro obstack here, since we need it to grow
19697 '%define' directives.
19698
19699 * src/reader.h: Declare the macro obstack as extern.
19700
19701 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
19702
19703 * src/output.c (output_parser): Fix. Store single '%' characters in
19704 the output obstack instead of throwing them away.
19705
19706 2001-08-27 Akim Demaille <akim@epita.fr>
19707
19708 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
19709
19710 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
19711
19712 * lib/Makefile.am: Adjust.
19713
19714 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
19715
19716 * src/bison.simple: Update and add '%%' directives.
19717
19718 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
19719
19720 * src/reader.c (reader): Remove calls to 'output_headers' and
19721 'output_trailers'. Remove some C output.
19722 (readgram): Disable a piece of code that was writing a default
19723 definition for 'YYSTYPE'.
19724 (reader_output_yylsp): Remove.
19725 (packsymbols): Output token defintions to a macro.
19726 (copy_definition): Disable C output.
19727
19728 * src/reader.c (parse_macro_decl): New function used to parse macro
19729 declarations.
19730 (copy_string2): Put the body of copy_string into this new function.
19731 Add a parameter to let the caller choose whether he wants to copy the
19732 string delimiters or not.
19733 (copy_string): Be a simple call to copy_string2 with the last argument
19734 bound to true.
19735 (read_declarations): Add case for macro definition.
19736 (copy_identifier): New.
19737 (parse_macro_decl): Read macro identifiers using copy_identifier
19738 rather than lex.
19739
19740 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
19741
19742 * src/output.c (prepare): Add prefixed names.
19743 (output_parser): Output semantic actions.
19744 (output_parser): Fix bug on '%%line' directives.
19745
19746 * src/output.c (output_headers): Remove. The C code printed by this
19747 function should now be in the skeletons.
19748 (output_trailers): Remove.
19749 (output): Disable call to 'reader_output_yylsp'.
19750 (output_rule_data): Do not output tables to the table obstack.
19751
19752 * src/output.c: Remove some C dedicated output.
19753 Improve the use of macro and output obstacks.
19754 (output_defines): Remove.
19755
19756 * src/output.c (output_token_translations): Associate 'translate'
19757 table with a macro. No output to the table obstack.
19758 (output_gram): Same for 'rhs' and 'prhs'.
19759 (output_stos): Same for 'stos'.
19760 (output_rule_data): Same for 'r1' and 'r2'.
19761 (token_actions): Same for 'defact'.
19762 (goto_actions): Same for 'defgoto'.
19763 (output_base): Same for 'pact' and 'pgoto'.
19764 (output_table): Same for 'table'.
19765 (output_check): Same for 'check'.
19766
19767 * src/output.c (output_table_data): New function.
19768 (output_short_table): Remove.
19769 (output_short_or_char_table): Remove.
19770
19771 * src/output.c (output_parser): Replace most of the skeleton copy code
19772 with something new. Skeletons are now processed character by character
19773 rather than line by line, and Bison looks for '%%' macros. This is the
19774 first step in making Bison's output process (a lot) more flexible.
19775 (output_parser): Use the macro table.
19776
19777 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
19778
19779 * src/main.c (main): Initialize the macro table.
19780
19781 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
19782
19783 * src/lex.c (percent_table): Add tok_define.
19784 * src/lex.h: Add tok_define.
19785
19786 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
19787
19788 * src/macrotab.c: New file.
19789 * src/macrotab.h: New file.
19790 * src/Makefile.am: Update.
19791
19792 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
19793
19794 * lib/hash.c: New file.
19795 * lib/hash.h: New file.
19796 * lib/Makefile.am: Update.
19797
19798 2001-08-15 Akim Demaille <akim@epita.fr>
19799
19800 Version 1.28c.
19801
19802 2001-08-15 Marc Autret <autret_m@epita.fr>
19803
19804 * src/reader.c (readgram): Indent output macro YYSTYPE.
19805 (packsymbols): Likewise.
19806 (output_token_defines): Likewise.
19807 * src/files.c: Standardize.
19808 (compute_header_macro): New.
19809 (defines_obstack_save): New. Use compute_header_macro.
19810 (output_files): Update. Use defines_obstack_save.
19811
19812 2001-08-15 Akim Demaille <akim@epita.fr>
19813
19814 * doc/bison.texinfo (Table of Symbols): Document
19815 YYSTACK_USE_ALLOCA.
19816
19817 2001-08-15 Akim Demaille <akim@epita.fr>
19818
19819 * missing: Update from CVS Automake.
19820 * config/config.guess, config/config.sub, config/texinfo.tex:
19821 Update from gnu.org.
19822
19823 2001-08-15 Akim Demaille <akim@epita.fr>
19824
19825 * Makefile.maint: Sync with CVS Autoconf.
19826
19827 2001-08-14 Pascal Bart <pascal.bart@epita.fr>
19828
19829 * doc/bison.texinfo: Include GNU Free Documentation License from
19830 `fdl.texi'.
19831 * doc/fdl.texi: Add to package.
19832
19833 2001-08-14 Marc Autret <autret_m@epita.fr>
19834
19835 Turn on %{source,header}_extension features.
19836
19837 * src/lex.c (percent_table): Un-CPP out header_extension and
19838 source_extension.
19839 * src/files.c (compute_exts_from_gf): Compare pointers with NULL.
19840 (compute_exts_from_src): Remove conditions. It restores priorities
19841 between options.
19842
19843 2001-08-14 Marc Autret <autret_m@epita.fr>
19844
19845 * src/files.c (compute_base_names): Add extensions computing when
19846 `--file-prefix' used.
19847 Standardize function calls.
19848
19849 2001-08-13 Marc Autret <autret_m@epita.fr>
19850
19851 * src/bison.simple (YYSTACK_USE_ALLOCA): Changed to allow users
19852 defining it (defined but null disables alloca).
19853
19854 2001-08-13 Marc Autret <autret_m@epita.fr>
19855
19856 * src/bison.simple (_yy_memcpy): CPP reformat.
19857
19858 2001-08-13 Pascal Bart <pascal.bart@epita.fr>
19859
19860 * tests/atconfig.in (CPPFLAGS): Fix.
19861
19862 2001-08-10 Pascal Bart <pascal.bart@epita.fr>
19863
19864 * doc/bison.texinfo: Include GNU General Public License from
19865 `gpl.texi'.
19866 * doc/gpl.texi: Add to package.
19867
19868 2001-08-10 Marc Autret <autret_m@epita.fr>
19869
19870 * src/print_graph.h: Fix.
19871 * src/reader.c (read_declarations): Use parse_header_extension_decl ().
19872
19873 2001-08-10 Akim Demaille <akim@epita.fr>
19874
19875 * src/system.h: Provide default declarations for stpcpy, strndup,
19876 and strnlen.
19877
19878 2001-08-10 Robert Anisko <anisko_r@epita.fr>
19879
19880 * doc/bison.texinfo (Locations): Update @$ stuff.
19881
19882 2001-08-09 Robert Anisko <anisko_r@epita.fr>
19883
19884 * src/bison.simple (YYLLOC_DEFAULT): Update.
19885 (yyparse): Adjust.
19886
19887 2001-08-08 Marc Autret <autret_m@epita.fr>
19888
19889 * doc/bison.texinfo: Change @samp{$<@dots{}>} to
19890 @samp{$<@dots{}>@var{n}} in Section Actions in Mid-Rule.
19891 Reported by Fabrice Bauzac.
19892
19893 2001-08-08 Marc Autret <autret_m@epita.fr>
19894
19895 * src/vcg_default.h: Use NULL instead of 0 to initialize pointers.
19896 * src/vcg.c (output_node): Fix.
19897 * src/vcg.h: Cleanup.
19898 * src/print_graph.c: Add comments.
19899 (node_output_size): New global variable. Simplify the formatting of
19900 the VCG graph output.
19901 (print_actions): Unused code is now used. It notifies the final state
19902 and no action states in the VCG graph. It also give the reduce actions.
19903 The `shift and goto' edges are red and the `go to state' edges are
19904 blue.
19905 Get the current node name and node_obstack by argument.
19906 (node_obstack): New variable.
19907 (print_state): Manage node_obstack.
19908 (print_core): Use node_obstack given by argument.
19909 A node is not only computed here but in print_actions also.
19910 (print_graph): CPP out useless code instead of commenting it.
19911
19912 2001-08-07 Pascal Bart <pascal.bart@epita.fr>
19913
19914 * tests/atconfig.in (CPPFLAGS): Fix.
19915
19916 2001-08-07 Akim Demaille <akim@epita.fr>
19917
19918 * src/print_graph.c (quote): New.
19919 (print_core): Use it.
19920
19921 2001-08-06 Akim Demaille <akim@epita.fr>, Marc Autret <autret_m@epita.fr>
19922
19923 * src/vcg.c (complain.h): Include it.
19924 Unepitaize `return' invocations.
19925 [NDEBUG] (main): Remove.
19926 * src/vcg.h (node_t, edge_t, graph_t): Constify the char * members.
19927 * src/files.c (open_files): Initialize graph_obstack.
19928 * src/print_graph.c (print_actions): CPP out useless code.
19929 (print_core): Don't output the last `\n' in labels.
19930 Use `quote'.
19931 * src/files.c (output_files): Output the VCG file.
19932 * src/main.c (main): Invoke print_graph ();
19933
19934 2001-08-06 Marc Autret <autret_m@epita.fr>
19935
19936 Automaton VCG graph output.
19937 Using option ``-g'' or long option ``--graph'', you can generate
19938 a gram_filename.vcg file containing a VCG description of the LALR (1)
19939 automaton of your grammar.
19940
19941 * src/main.c: Call to print_graph() function.
19942 * src/getargs.h: Update.
19943 * src/getargs.c (options): Update to catch `-g' and `--graph' options.
19944 (graph_flag): New flag.
19945 (longopts): Update.
19946 (getargs): Add case `g'.
19947 * src/files.c (graph_obstack): New obstack struct.
19948 (open_files): Initialize new obstack.
19949 (output_files): Saves graph_obstack if required.
19950 * src/files.h (graph_obstack): New extern declaration.
19951 * src/Makefile.am: Add new source files.
19952
19953 2001-08-06 Marc Autret <autret_m@epita.fr>
19954
19955 * src/print_graph.c, src/print_graph.h (graph): New.
19956 * src/vcg.h: New file.
19957 * src/vcg.c: New file, VCG graph handling.
19958
19959 2001-08-06 Marc Autret <autret_m@epita.fr>
19960
19961 Add of %source_extension and %header_extension which specify
19962 the source or/and the header output file extension.
19963
19964 * src/files.c (compute_base_names): Remove initialisation of
19965 src_extension and header_extension.
19966 (compute_exts_from_gf): Update.
19967 (compute_exts_from_src): Update.
19968 (output_files): Update.
19969 * src/reader.c (parse_header_extension_decl): New.
19970 (parse_source_extension_decl): New.
19971 (read_declarations): New case statements for the new tokens.
19972 * src/lex.c (percent_table): Add entries for %source_extension
19973 and %header_extension.
19974 * src/lex.h (token_e): New tokens tok_hdrext and tok_srcext.
19975
19976 2001-08-06 Marc Autret <autret_m@epita.fr>
19977
19978 * configure.in: Bump to 1.28c.
19979 * doc/bison.texinfo: Texinfo thingies.
19980
19981 2001-08-04 Pascal Bart <pascal.bart@epita.fr>
19982
19983 * tests/atconfig.in (CPPFLAGS): Add.
19984 * tests/calc.at (AT_CHECK): Use CPPFLAGS.
19985
19986 2001-08-03 Akim Demaille <akim@epita.fr>
19987
19988 Version 1.28b.
19989
19990 2001-08-03 Akim Demaille <akim@epita.fr>
19991
19992 * tests/Makefile.am (check-local): Ship testsuite.
19993 * tests/calc.at (_AT_DATA_CALC_Y): Prototype all the functions.
19994 Include `string.h'.
19995
19996 2001-08-03 Akim Demaille <akim@epita.fr>
19997
19998 * configure.in: Try using -Wformat when compiling.
19999
20000 2001-08-03 Akim Demaille <akim@epita.fr>
20001
20002 * configure.in: Bump to 1.28b.
20003
20004 2001-08-03 Akim Demaille <akim@epita.fr>
20005
20006 * src/complain.c: Adjust strerror_r portability issues.
20007
20008 2001-08-03 Akim Demaille <akim@epita.fr>
20009
20010 Version 1.28a.
20011
20012 2001-08-03 Akim Demaille <akim@epita.fr>
20013
20014 * src/getargs.c, src/getarg.h (skeleton)): Constify.
20015 * src/lex.c (literalchar): Avoid name clashes on `buf'.
20016 * src/getargs.c: Include complain.h.
20017 * src/files.c, src/files.h (skeleton_find): Avoid name clashes.
20018 * lib/quotearg.c, lib/quotearg.h: Update from fileutils 4.1.
20019
20020 2001-08-03 Akim Demaille <akim@epita.fr>
20021
20022 * src/reader.c (readgram): Display hidden chars in error messages.
20023
20024 2001-08-03 Akim Demaille <akim@epita.fr>
20025
20026 Update to gettext 0.10.39.
20027
20028 2001-08-03 Akim Demaille <akim@epita.fr>
20029
20030 * lib/strspn.c: New.
20031
20032 2001-08-01 Marc Autret <autret_m@epita.fr>
20033
20034 * doc/bison.texinfo: Update.
20035 * doc/bison.1 (mandoc): Update.
20036 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove .c and .h.
20037 * src/files.c: Support output files extensions computing.
20038 (src_extension): New static variable.
20039 (header_extension): New static variable.
20040 (tr): New function.
20041 (get_extension_index): New function, gets the index of an extension
20042 filename in a string.
20043 (compute_exts_from_gf): New function, computes extensions from the
20044 grammar file extension.
20045 (compute_exts_from_src): New functions, computes extensions from the
20046 C source file extension, file given by ``-o'' option.
20047 (compute_base_names): Update.
20048 (output_files): Update.
20049
20050 2001-08-01 Robert Anisko <anisko_r@epita.fr>
20051
20052 * doc/bison.texi: Document @$.
20053 (Locations): New section.
20054
20055 2001-07-18 Akim Demaille <akim@epita.fr>
20056
20057 * Makefile.maint, GNUmakefile: New, from Autoconf 2.52.
20058 * config/prev-version.txt, config/move-if-change: New.
20059 * Makefile.am: Adjust.
20060
20061 2001-07-08 Pascal Bart <pascal.bart@epita.fr>
20062
20063 * src/bison.simple (yyparse): Suppress warning `comparaison
20064 between signed and unsigned'.
20065
20066 2001-07-05 Pascal Bart <pascal.bart@epita.fr>
20067
20068 * src/getargs.h (raw_flag): Remove.
20069 * src/getargs.c: Die on `-r'/`--raw'.
20070 * src/lex.c (parse_percent_token): Die on `%raw'.
20071 * src/reader.c (output_token_defines): Suppress call to `raw_flag'.
20072 * tests/calc.at: Suppress test with option `--raw'.
20073
20074 2001-07-14 Akim Demaille <akim@epita.fr>
20075
20076 * config/: New.
20077 * configure.in: Require Autoconf 2.50.
20078 Update to gettext 0.10.38.
20079
20080 2001-03-16 Akim Demaille <akim@epita.fr>
20081
20082 * doc/bison.texinfo: ANSIfy the examples.
20083
20084 2001-03-16 Akim Demaille <akim@epita.fr>
20085
20086 * getargs.c (skeleton): New variable.
20087 (longopts): --skeleton is a new option.
20088 (shortopts, getargs): -S is a new option.
20089 * getargs.h: Declare skeleton.
20090 * output.c (output_parser): Use it.
20091
20092 2001-03-16 Akim Demaille <akim@epita.fr>
20093
20094 * m4/strerror_r.m4: New.
20095 * m4/error.m4: Run AC_FUNC_STRERROR_R.
20096 * lib/error.h, lib/error.c: Update.
20097
20098 2001-03-16 Akim Demaille <akim@epita.fr>
20099
20100 * src/getargs.c (longopts): Clean up.
20101
20102 2001-02-21 Akim Demaille <akim@epita.fr>
20103
20104 * src/reader.c (gensym): `gensym_count' is your own.
20105 Use a static buf to create the symbol name, as token_buffer is no
20106 longer a buffer.
20107
20108 2001-02-08 Akim Demaille <akim@epita.fr>
20109
20110 * src/conflicts.c (conflict_report): Be sure not to append to res
20111 between two calls, which could happen if both first sprintf were
20112 skipped, but not the first cp += strlen.
20113
20114 2001-02-08 Akim Demaille <akim@epita.fr>
20115
20116 * lib/memchr.c, lib/stpcpy.c, lib/strndup.c, lib/strnlen.c:
20117 New, from fileutils 4.0.37.
20118 * configure.in: Require Autoconf 2.49c. I took some time before
20119 making this decision. This is the only way out for portability
20120 issues in Bison, it would mean way too much duplicate effort to
20121 import in Bison features implemented in 2.49c since 2.13.
20122 AC_REPLACE_FUNCS and AC_CHECK_DECLS the functions above.
20123
20124 2001-02-02 Akim Demaille <akim@epita.fr>
20125
20126 * lib/malloc.c, lib/realloc.c: New, from the fileutils 4.0.37.
20127 * lib/xalloc.h, lib/xmalloc.c: Update.
20128
20129 2001-01-19 Akim Demaille <akim@epita.fr>
20130
20131 Get rid of the ad hoc handling of token_buffer in the scanner: use
20132 the obstacks.
20133
20134 * src/lex.c (token_obstack): New.
20135 (init_lex): Initialize it. No longer call...
20136 (grow_token_buffer): this. Remove it.
20137 Adjust all the places which used it to use the obstack.
20138
20139 2001-01-19 Akim Demaille <akim@epita.fr>
20140
20141 * src/lex.h: Rename all the tokens:
20142 s/\bENDFILE\b/tok_eof/g;
20143 s/\bIDENTIFIER\b/tok_identifier/g;
20144 etc.
20145 Let them be enums, not #define, to ease debugging.
20146 Adjust all the code.
20147
20148 2001-01-18 Akim Demaille <akim@epita.fr>
20149
20150 * src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
20151 * src/lex.c (maxtoken, grow_token_buffer): Static.
20152
20153 2001-01-18 Akim Demaille <akim@epita.fr>
20154
20155 Since we now use obstacks, more % directives can be enabled.
20156
20157 * src/lex.c (percent_table): Also accept `%yacc',
20158 `%fixed_output_files', `%defines', `%no_parser', `%verbose', and
20159 `%debug'.
20160 Handle the actions for `%semantic_parser' and `%pure_parser' here,
20161 instead of returning a token.
20162 * src/lex.h (SEMANTIC_PARSER, PURE_PARSER): Remove, unused.
20163 * src/reader.c (read_declarations): Adjust.
20164 * src/files.c (open_files): Don't call `compute_base_names', don't
20165 compute `attrsfile' since they depend upon data which might be
20166 *in* the input file now.
20167 (output_files): Do it here.
20168 * src/output.c (output_headers): Document the fact that this patch
20169 introduces a guaranteed SEGV for semantic parsers.
20170 * doc/bison.texinfo: Document them.
20171 * tests/suite.at: Exercise these %options.
20172
20173 2000-12-20 Akim Demaille <akim@epita.fr>
20174
20175 Also handle the output file (--verbose) with obstacks.
20176
20177 * files.c (foutput): Remove.
20178 (output_obstack): New.
20179 Adjust all dependencies.
20180 * src/conflicts.c: Return a string.
20181 * src/system.h (obstack_grow_string): Rename as...
20182 (obstack_sgrow): this. Be ready to work with non literals.
20183 (obstack_fgrow4): New.
20184
20185 2000-12-20 Akim Demaille <akim@epita.fr>
20186
20187 * src/files.c (open_files): Fix the computation of short_base_name
20188 in the case of `-o foo.tab.c'.
20189
20190 2000-12-20 Akim Demaille <akim@epita.fr>
20191
20192 * src/reader.c (copy_string, copy_comment, copy_comment2, copy_at)
20193 (copy_dollar): Now that everything uses obstacks, get rid of the
20194 FILE * parameters.
20195
20196 2000-12-20 Akim Demaille <akim@epita.fr>
20197
20198 * src/files.c (open_files): Actually the `.output' file is based
20199 on the short_base_name, not base_name.
20200 * tests/suite.at (Checking output file names): Adjust.
20201
20202 2000-12-20 Akim Demaille <akim@epita.fr>
20203
20204 * src/bison.s1: Remove, we now use directly...
20205 * src/bison.simple: this.
20206 * src/Makefile.am: Use pkgdata instead of data.
20207
20208 2000-12-20 Akim Demaille <akim@epita.fr>
20209
20210 * src/files.c (guard_obstack): New.
20211 (open_files): Initialize it.
20212 (output_files): Dump it...
20213 * src/files.h: Export it.
20214 * src/reader.c (copy_guard): Use it.
20215
20216 2000-12-19 Akim Demaille <akim@epita.fr>
20217
20218 * src/files.c (outfile, defsfile, actfile): Removed as global
20219 vars.
20220 (open_files): Don't compute them.
20221 (output_files): Adjust.
20222 (base_name, short_base_name): Be global.
20223 Adjust dependencies.
20224
20225 2000-12-19 Akim Demaille <akim@epita.fr>
20226
20227 * src/files.c (strsuffix): New.
20228 (stringappend): Be just like strcat but allocate.
20229 (base_names): Eve out from open_files.
20230 Try to simplify the rather hairy computation of base_name and
20231 short_base_name.
20232 (open_files): Use it.
20233 * tests/suite.at (Checking output file names): New test.
20234
20235 2000-12-19 Akim Demaille <akim@epita.fr>
20236
20237 * src/system.h (obstack_grow_literal_string): Rename as...
20238 (obstack_grow_string): this.
20239 * src/output.c (output_parser): Recognize `%% actions' instead of
20240 `$'.
20241 * src/bison.s1: s/$/%% actions/.
20242 * src/bison.hairy: Likewise.
20243
20244 2000-12-19 Akim Demaille <akim@epita.fr>
20245
20246 * src/output.c (output_parser): Compute the `#line' lines when
20247 there are.
20248 * src/Makefile.am (bison.simple): Be a simple copy of bison.s1.
20249 Suggested by Hans Aberg.
20250
20251 2000-12-19 Akim Demaille <akim@epita.fr>
20252
20253 Let the handling of the skeleton files be local to the procedures
20254 that use it.
20255
20256 * src/files.c (xfopen, xfclose, skeleton_find, guardfile): No
20257 longer static.
20258 (fparser, open_extra_files): Remove.
20259 (open_files, output_files): Don't take care of fparser.
20260 * src/files.h: Adjust.
20261 * src/output.c (output_parser): Open and close the file to the
20262 skeleton.
20263 * src/reader.c (read_declarations): When %semantic_parser, open
20264 fguard.
20265
20266 2000-12-19 Akim Demaille <akim@epita.fr>
20267
20268 * src/file.h (BISON_SIMPLE, BISON_HAIRY): Move from here...
20269 * src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
20270
20271 2000-12-19 Akim Demaille <akim@epita.fr>
20272
20273 * src/files.c (open_files): Yipee! We no longer need all the code
20274 looking for `/tmp' since we have no tmp file.
20275
20276 2000-12-19 Akim Demaille <akim@epita.fr>
20277
20278 * src/system.h (EXT_TAB, EXT_OUTPUT, EXT_STYPE_H, EXT_GUARD_C):
20279 New macros.
20280 * src/files.c (open_files): Less dependency on MSDOS etc.
20281
20282 2000-12-14 Akim Demaille <akim@epita.fr>
20283
20284 * src/bison.s1 (YYLLOC_DEFAULT): New macro.
20285 Provide a default definition.
20286 Use it when executing the default @ action.
20287 * src/reader.c (reader_output_yylsp): No longer include
20288 `timestamp' and `text' in the default YYLTYPE.
20289
20290 2000-12-12 Akim Demaille <akim@epita.fr>
20291
20292 * src/reader.c (copy_definition, parse_union_decl, copy_action)
20293 (copy_guard): Quote the file names.
20294 Reported by Laurent Mascherpa.
20295
20296 2000-12-12 Akim Demaille <akim@epita.fr>
20297
20298 * src/output.c (output_headers, output_program, output): Be sure
20299 to escape special characters when outputting filenames.
20300 (ACTSTR_PROLOGUE, ACTSTR_EPILOGUE): Remove.
20301 (output_headers): Don't depend on them, Use ACTSTR.
20302
20303 2000-11-17 Akim Demaille <akim@epita.fr>
20304
20305 * lib/obstack.h: Formatting changes.
20306 (obstack_grow, obstack_grow0): Don't cast WHERE at all: it
20307 prevents type checking.
20308 (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
20309 cast the value to (void *): assigning a `foo *' to a `void *'
20310 variable is valid.
20311 (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
20312 * src/reader.c (parse_union_decl): Typo: use obstack_1grow to
20313 append characters.
20314
20315 2000-11-17 Akim Demaille <akim@epita.fr>
20316
20317 * tests/Makefile.am (suite.m4, regression.m4, calc.m4): Rename
20318 as...
20319 (suite.m4, regression.m4, calc.m4): these.
20320 * tests/atgeneral.m4: Update from CVS Autoconf.
20321
20322 2000-11-17 Akim Demaille <akim@epita.fr>
20323
20324 * tests/regression.m4 (%union and --defines): New test,
20325 demonstrating a current bug in the obstack implementation.
20326
20327 2000-11-17 Akim Demaille <akim@epita.fr>
20328
20329 * src/bison.s1 (_YY_DECL_VARIABLES, YY_DECL_VARIABLES): New
20330 macros.
20331 Use them to declare the variables which are global or local to
20332 `yyparse'.
20333
20334 2000-11-17 Akim Demaille <akim@epita.fr>
20335
20336 * acconfig.h: Remove, no longer used.
20337
20338 2000-11-07 Akim Demaille <akim@epita.fr>
20339
20340 * src: s/Copyright (C)/Copyright/g.
20341
20342 2000-11-07 Akim Demaille <akim@epita.fr>
20343
20344 * src/reader.c (reader): #define YYLSP_NEEDED to 1 instead of just
20345 defining.
20346 * src/bison.s1: s/#ifdef YYLSP_NEEDED/#if YYLSP_NEEDED/.
20347
20348 2000-11-07 Akim Demaille <akim@epita.fr>
20349
20350 * src/bison.s1 (YYLEX): Use #if instead of #ifdef.
20351 Merge in a single CPP if/else.
20352
20353 2000-11-07 Akim Demaille <akim@epita.fr>
20354
20355 * src/output.c (output): Remove useless variables.
20356 * lib/obstack.c (obstack_grow, obstack_grow0): Rename the second
20357 argument `data' for consistency with the prototypes.
20358 Qualify it `const'.
20359 (obstack_copy, obstack_copy0): Rename the second argument as
20360 `address' for consistency. Qualify it `const'.
20361 * lib/obstack.h (obstack_copy, obstack_copy0, obstack_grow)
20362 (obstack_grow0, obstack_ptr_grow, obstack_ptr_grow_fast): Qualify
20363 `const' their input argument (`data' or `address').
20364 Adjust the corresponding macros to include `const' in casts.
20365
20366 2000-11-03 Akim Demaille <akim@epita.fr>
20367
20368 * src/Makefile.am (INCLUDES): s/PFILE/BISON_SIMPLE/.
20369 s/PFILE1/BISON_HAIRY/.
20370 Adjust dependencies.
20371
20372 2000-11-03 Akim Demaille <akim@epita.fr>
20373
20374 For some reason, this was not applied.
20375
20376 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
20377 `unlink': it's no longer used.
20378
20379 2000-11-03 Akim Demaille <akim@epita.fr>
20380
20381 * src/files.c (skeleton_find): New function, eved out of...
20382 (open_files, open_extra_files): here.
20383
20384 2000-11-03 Akim Demaille <akim@epita.fr>
20385
20386 Don't use `atexit'.
20387
20388 * src/files.c (obstack_save): New function.
20389 (done): Rename as...
20390 (output_files): this.
20391 Use `obstack_save'.
20392 * src/main.c (main): Don't use `atexit' to register `done', since
20393 it no longer has to remove tmp files, just call `output_files'
20394 when there are no errors.
20395
20396 2000-11-02 Akim Demaille <akim@epita.fr>
20397
20398 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
20399 `unlink': it's no longer used.
20400 * src/files.h: Formatting changes.
20401
20402 2000-11-02 Akim Demaille <akim@epita.fr>
20403
20404 Remove the last uses of mktemp and unlink/delete.
20405
20406 * src/files.c (fdefines, ftable): Removed.
20407 (defines_ostack, table_obstack): New.
20408 Adjust dependencies of the former into uses of the latter.
20409 * src/output.c (output_short_or_char_table, output_short_table):
20410 Convert to using obstacks.
20411 * src/reader.c (copy_comment2): Accept one FILE * and two
20412 obstacks.
20413 (output_token_defines, reader_output_yylsp): Use obstacks.
20414 * src/system.h (obstack_fgrow3): New.
20415 * po/POTFILES.in: Adjust.
20416
20417 2000-11-01 Akim Demaille <akim@epita.fr>
20418
20419 Change each use of `fattrs' into a use of `attrs_obstack'.
20420
20421 * src/reader.c (copy_at): Typo: s/yylloc/yyloc/.
20422 * src/files.c (fattrs): Remove.
20423 (attrs_obstack): New.
20424 Adjust all dependencies.
20425 (done): If SEMANTIC_PARSER, dump attrs_obstack into attrsfile.
20426
20427 2000-11-01 Akim Demaille <akim@epita.fr>
20428
20429 Introduce obstacks.
20430 Change each use of `faction' into a use of `action_obstack'.
20431
20432 * lib/obstack.h, lib/obstack.c: New files.
20433 * src/files.c (faction): Remove.
20434 (action_obstack): New.
20435 Adjust all dependencies.
20436
20437 2000-10-20 Akim Demaille <akim@epita.fr>
20438
20439 * lib/quote.h (PARAMS): New macro. Use it.
20440
20441 2000-10-16 Akim Demaille <akim@epita.fr>
20442
20443 * src/output.c (output_short_or_char_table): New function.
20444 (output_short_table, output_token_translations): Use it.
20445 (goto_actions): Use output_short_table.
20446
20447 2000-10-16 Akim Demaille <akim@epita.fr>
20448
20449 * src/symtab.c (bucket_new): New function.
20450 (getsym): Use it.
20451
20452 * src/output.c (output_short_table): New argument to display the
20453 comment associated with the table.
20454 Adjust dependencies.
20455 (output_gram): Use it.
20456 (output_rule_data): Nicer output layout for YYTNAME.
20457
20458 2000-10-16 Akim Demaille <akim@epita.fr>
20459
20460 * src/lex.c (read_typename): New function.
20461 (lex): Use it.
20462 * src/reader.c (copy_dollar): Likewise.
20463
20464 2000-10-16 Akim Demaille <akim@epita.fr>
20465
20466 * src/reader.c (copy_comment2): Expect the input stream to be on
20467 the `/' which is suspected to open a comment, instead of being
20468 called after `//' or `/*' was read.
20469 (copy_comment, copy_definition, parse_union_decl, copy_action)
20470 (copy_guard): Adjust.
20471
20472 2000-10-16 Akim Demaille <akim@epita.fr>
20473
20474 * src/reader.c (parse_expect_decl): Use `skip_white_space' and
20475 `read_signed_integer'.
20476
20477 2000-10-16 Akim Demaille <akim@epita.fr>
20478
20479 * src/reader.c (copy_dollar): New function.
20480 (copy_guard, copy_action): Use it.
20481
20482 2000-10-16 Akim Demaille <akim@epita.fr>
20483
20484 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
20485 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
20486 New files, from Fileutils 4.0.27.
20487 * src/main.c (printable_version): Remove.
20488 * src/lex.c, src/reader.c: Use `quote'.
20489
20490 2000-10-04 Akim Demaille <akim@epita.fr>
20491
20492 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
20493
20494 2000-10-04 Akim Demaille <akim@epita.fr>
20495
20496 * doc/bison.texinfo: Various typos spotted by Neil Booth.
20497
20498 2000-10-04 Akim Demaille <akim@epita.fr>
20499
20500 When a literal string is used to define two different tokens,
20501 `bison -v' segfaults.
20502 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
20503
20504 * tests/regression.m4: New file.
20505 Include the core of the sample provided by Piotr Gackiewicz.
20506 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
20507 properly.
20508
20509 2000-10-04 Akim Demaille <akim@epita.fr>
20510
20511 * src/reader.c (parse_expect_decl): Keep `count' within the size
20512 of `buffer'.
20513 From Neil Booth.
20514
20515 2000-10-02 Paul Eggert <eggert@twinsun.com>
20516
20517 * bison.s1 (yyparse): Assign the default value
20518 unconditionally, to avoid a GCC warning and make the parser a
20519 tad smaller.
20520
20521 2000-10-02 Akim Demaille <akim@epita.fr>
20522
20523 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
20524 options.
20525
20526 2000-10-02 Akim Demaille <akim@epita.fr>
20527
20528 * src/derives.c, src/print.c, src/reduce.c: To ease the
20529 translation, move some `\n' out of the translated strings.
20530
20531 2000-10-02 Akim Demaille <akim@epita.fr>
20532
20533 The location tracking mechanism is precious for parse error
20534 messages. Nevertheless, it is enabled only when `@n' is used in
20535 the grammar, which is a different issue (you can use it in error
20536 message, but not in the grammar per se). Therefore, there should
20537 be another means to enable it.
20538
20539 * src/getargs.c (getargs): Support `--locations'.
20540 (usage): Report it.
20541 * src/getargs.h (locationsflag): Export it.
20542 * src/lex.c (percent_table): Support `%locations'.
20543 * src/reader.c (yylsp_needed): Remove this variable, now replaced
20544 with `locationsflag'.
20545 * doc/bison.texinfo: Document `--locations' and `%locations'.
20546 Sort the options.
20547 * tests/calc.m4: Test it.
20548
20549 For regularity of the names, replace each
20550 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
20551 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
20552 In addition replace each `flag' with `_flag'.
20553
20554 2000-10-02 Akim Demaille <akim@epita.fr>
20555
20556 Also test parse error messages, including with YYERROR_VERBOSE.
20557
20558 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
20559 associative).
20560 Use it to check the computations.
20561 Use it to check `nonassoc' is honored.
20562 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
20563 `--yyerror-verbose'.
20564 (_AT_CHECK_CALC): Adjust to this option.
20565 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
20566
20567 2000-10-02 Akim Demaille <akim@epita.fr>
20568
20569 Test also `--verbose', `--defines' and `--name-prefix'. Testing
20570 the latter demonstrates a flaw in the handling of non debugging
20571 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
20572 was used in order to simplify:
20573
20574 #if YYDEBUG
20575 if (yydebug)
20576 {
20577 ...
20578 }
20579 #endif
20580
20581 into
20582
20583 if (yydebug)
20584 {
20585 ...
20586 }
20587
20588 unfortunately this leads to a CPP conflict when
20589 `--name-prefix=foo' is used since it produces `#define yydebug
20590 foodebug'.
20591
20592 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
20593 (YYDPRINTF): New macro.
20594 Spread its use.
20595 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
20596 the bison options.
20597 Also test `--verbose', `--defines' and `--name-prefix'.
20598
20599 2000-10-02 Akim Demaille <akim@epita.fr>
20600
20601 Improve the readability of the produced parsers.
20602
20603 * src/bison.s1: Formatting changes.
20604 Improve the comment related to the `$' mark.
20605 (yydefault): Don't fall through to `yyresume': `goto' there.
20606 * src/output.c (output_parser): When the `$' is met, skip the end
20607 of its line.
20608 New variable, `number_of_dollar_signs', to check there's exactly
20609 one `$' in the parser skeleton.
20610
20611 2000-10-02 Akim Demaille <akim@epita.fr>
20612
20613 * lib/xstrdup.c: New file, from the fileutils.
20614 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
20615 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
20616 instead of strlen + xmalloc + strcpy.
20617 * src/symtab.c (copys): Remove, use xstrdup instead.
20618
20619 2000-10-02 Akim Demaille <akim@epita.fr>
20620
20621 * src/gram.h (associativity): New enum type which replaces the
20622 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
20623 `right_assoc', `left_assoc' and `non_assoc'.
20624 Adjust all dependencies.
20625 * src/reader.c: Formatting changes.
20626 (LTYPESTR): Don't define it, use it as a literal in
20627 `reader_output_yylsp'.
20628 * src/symtab.h (symbol_class): New enum type which replaces the
20629 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
20630 `sunknown', `stoken and `snterm'.
20631
20632 2000-10-02 Akim Demaille <akim@epita.fr>
20633
20634 * src/getargs.c (fixed_outfiles): Rename as...
20635 (yaccflag): for consistency and accuracy.
20636 Adjust dependencies.
20637
20638 2000-10-02 Akim Demaille <akim@epita.fr>
20639
20640 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
20641 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
20642 difficult and introduced a lot of core dump. It turns out that
20643 Bison used an implementation of `xmalloc' based on `calloc', and
20644 at various places it does depend upon the initialization to 0. I
20645 have not tried to isolate the pertinent places, and all the former
20646 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
20647 someone should address this issue.
20648
20649 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
20650 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
20651 files.
20652 Adjust dependencies.
20653 * src/warshall.h: New file.
20654 Propagate.
20655
20656 2000-10-02 Akim Demaille <akim@epita.fr>
20657
20658 Various anti-`extern in *.c' changes.
20659
20660 * src/system.h: Include `assert.h'.
20661
20662 2000-10-02 Akim Demaille <akim@epita.fr>
20663
20664 * src/state.h (nstates, final_state, first_state, first_shift)
20665 (first_reduction): Move their exportation from here...
20666 * src/LR0.h: to here.
20667 Adjust dependencies.
20668 * src/getargs.c (statisticsflag): New variable.
20669 Add support for `--statistics'.
20670 Adjust dependencies.
20671
20672 Remove a lot of now useless `extern' statements in most files.
20673
20674 2000-10-02 Akim Demaille <akim@epita.fr>
20675
20676 * src/LR0.h: New file.
20677 Propagate its use.
20678
20679 2000-10-02 Akim Demaille <akim@epita.fr>
20680
20681 * src/print.h: New file.
20682 Propagate its use.
20683 * src/print.c: Formatting and ordering changes.
20684 (verbose, terse): Replace with...
20685 (print_results): this new function.
20686 Adjust dependencies.
20687
20688 2000-10-02 Akim Demaille <akim@epita.fr>
20689
20690 * src/conflicts.c (conflict_report): New function.
20691 (conflict_log, verbose_conflict_log): Replace with...
20692 (print_conflicts): this function.
20693 Adjust dependencies.
20694 * src/conflicts.h: New file.
20695 Propagate its inclusion.
20696
20697 2000-10-02 Akim Demaille <akim@epita.fr>
20698
20699 * src/nullable.h: New file.
20700 Propagate its inclusion.
20701 * src/nullable.c: Formatting changes.
20702
20703 2000-10-02 Akim Demaille <akim@epita.fr>
20704
20705 * src/reduce.h: New file.
20706 Propagate its inclusion.
20707 * src/reduce.c: Topological sort and other formatting changes.
20708 (bool, TRUE, FALSE): Move their definition to...
20709 * src/system.h: here.
20710
20711 2000-10-02 Akim Demaille <akim@epita.fr>
20712
20713 * src/files.c: Formatting changes.
20714 (tryopen, tryclose, openfiles): Rename as...
20715 (xfopen, xfclose, open_files): this.
20716 (stringappend): static.
20717 * src/files.h: Complete the list of exported symbols.
20718 Propagate its use.
20719
20720 2000-10-02 Akim Demaille <akim@epita.fr>
20721
20722 * src/reader.h: New file.
20723 Propagate its use instead of tedious list of `extern' and
20724 prototypes.
20725 * src/reader.c: Formatting changes, topological sort,
20726 s/register//.
20727
20728 2000-10-02 Akim Demaille <akim@epita.fr>
20729
20730 * src/lex.h: Prototype `lex.c' exported functions.
20731 * src/reader.c: Adjust.
20732 * src/lex.c: Formatting changes.
20733 (safegetc): Rename as...
20734 (xgetc): this.
20735
20736 2000-10-02 Akim Demaille <akim@epita.fr>
20737
20738 * src/lalr.h: New file.
20739 Propagate its inclusion instead of prototypes and `extern'.
20740 * src/lalr.c: Formatting changes, topological sorting etc.
20741
20742 2000-10-02 Akim Demaille <akim@epita.fr>
20743
20744 * src/output.c (token_actions): Introduce a temporary array,
20745 YYDEFACT, that makes it possible for this function to use
20746 output_short_table.
20747
20748 2000-10-02 Akim Demaille <akim@epita.fr>
20749
20750 `user_toknums' is output as a `short[]' in `output.c', while it is
20751 defined as a `int[]' in `reader.c'. For consistency with the
20752 other output tables, `user_toknums' is now defined as a table of
20753 shorts.
20754
20755 * src/reader.c (user_toknums): Be a short table instead of an int
20756 table.
20757 Adjust dependencies.
20758
20759 Factor the short table outputs.
20760
20761 * src/output.c (output_short_table): New function.
20762 * src/output.c (output_gram, output_stos, output_rule_data)
20763 (output_base, output_table, output_check): Use it.
20764
20765 2000-10-02 Akim Demaille <akim@epita.fr>
20766
20767 * src/output.c (output): Topological sort of the functions, in
20768 order to get rid of the `static' prototypes.
20769 No longer use `register'.
20770 * src/output.h: New file.
20771 Propagate its inclusion in files explicitly prototyping functions
20772 from output.c.
20773
20774 2000-09-21 Akim Demaille <akim@epita.fr>
20775
20776 * src/atgeneral.m4: Update from Autoconf.
20777
20778 2000-09-21 Akim Demaille <akim@epita.fr>
20779
20780 * src/closure.h: New file.
20781 * src/closure.c: Formatting changes, topological sort over the
20782 functions, use of closure.h.
20783 (initialize_closure, finalize_closure): Rename as...
20784 (new_closure, free_closure): these. Adjust dependencies.
20785 * src/LR0.c: Formatting changes, topological sort, use of
20786 cloture.h.
20787 (initialize_states): Rename as...
20788 (new_states): this.
20789 * src/Makefile.am (noinst_HEADERS): Adjust.
20790
20791 2000-09-20 Akim Demaille <akim@epita.fr>
20792
20793 * src/acconfig.h: Don't protect config.h against multiple
20794 inclusion.
20795 Don't define PARAMS.
20796 * src/system.h: Define PARAMS.
20797 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
20798 purpose of config.h. system.h must not try to fix wrong
20799 definitions in config.h.
20800
20801 2000-09-20 Akim Demaille <akim@epita.fr>
20802
20803 * src/derives.h: New file.
20804 * src/main.c, src/derives.h: Use it.
20805 Formatting changes.
20806 * src/Makefile.am (noinst_HEADERS): Adjust.
20807
20808 2000-09-20 Akim Demaille <akim@epita.fr>
20809
20810 * tests/atgeneral.m4: Update from Autoconf.
20811 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
20812 (AT_CHECK_CALC): New macros.
20813 Use these macros to test bison with options `', `--raw',
20814 `--debug', `--yacc', `--yacc --debug'.
20815
20816 2000-09-19 Akim Demaille <akim@epita.fr>
20817
20818 * src/output.c: Formatting changes.
20819 * src/machine.h: Remove, leaving its contents in...
20820 * src/system.h: here.
20821 Include stdio.h.
20822 Adjust all dependencies on stdio.h and machine.h.
20823 * src/getargs.h: New file.
20824 Let all `extern' declarations about getargs.c be replaced with
20825 inclusion of `getargs.h'.
20826 * src/Makefile.am (noinst_HEADERS): Adjust.
20827
20828 * tests/calc.m4 (yyin): Be initialized in main, not on the global
20829 scope.
20830 (yyerror): Returns void, not int.
20831 * doc/bison.texinfo: Formatting changes.
20832
20833 2000-09-19 Akim Demaille <akim@epita.fr>
20834
20835 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
20836 portable.
20837
20838 2000-09-18 Akim Demaille <akim@epita.fr>
20839
20840 * configure.in: Append WARNING_CFLAGS to CFLAGS.
20841 * src/Makefile.am (INCLUDES): Don't.
20842 Be ready to fetch headers in lib/.
20843
20844 2000-09-18 Akim Demaille <akim@epita.fr>
20845
20846 * doc/bison.texinfo: Update the copyright.
20847 ANSIfy and GNUify the examples.
20848 Remove the old menu.
20849
20850 2000-09-18 Akim Demaille <akim@epita.fr>
20851
20852 First set of tests: use the `calc' example from the documentation.
20853
20854 * src/bison.s1 (yyparse): Condition the code using `yytname' which
20855 is defined only when YYDEBUG is.
20856 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
20857 * src/files.c (tryopen, tryclose): Formatting changes.
20858 Move to the top and be static.
20859 * src/reader.c (read_signed_integer): Likewise.
20860 * tests/calc.m4: New file.
20861 * Makefile.am, suite.m4: Adjust.
20862 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
20863
20864 2000-09-18 Akim Demaille <akim@epita.fr>
20865
20866 Add support for an Autotest test suite for Bison.
20867
20868 * m4/m4.m4, m4/atconfig.m4: New files.
20869 * m4/Makefile.am (EXTRA_DIST): Adjust.
20870 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
20871 files.
20872 * src/getargs.c: Display a more standard --version message.
20873 * src/reader.c (reader): Formatting changes.
20874 No longer depend upon VERSION_STRING.
20875 * configure.in: No longer use `dnl'.
20876 Set up the test suite and the new directory `tests/.
20877 (VERSION_STRING): Remove.
20878
20879 2000-04-14 Akim Demaille <akim@epita.fr>
20880
20881 * src/reader.c (copy_comment2): New function, same as former
20882 `copy_comment', but outputs into two FILE *.
20883 (copy_comment): Use it.
20884 (parse_union_decl): Use it.
20885 (get_type, parse_start_decl): Use the same `invalid' message.
20886 (parse_start_decl, parse_union_decl): Use the same `multiple'
20887 message.
20888 (parse_union_decl, copy_guard, copy_action): Use the same
20889 `unmatched' message.
20890 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
20891
20892 2000-03-31 Akim Demaille <akim@epita.fr>
20893
20894 * src/files.c (tryopen, tryclose): Move to the top.
20895 Be static.
20896
20897 2000-03-31 Akim Demaille <akim@epita.fr>
20898
20899 * src/main.c (main): Don't call `done', exit does it.
20900
20901 2000-03-31 Akim Demaille <akim@epita.fr>
20902
20903 * allocate.c: s/return (foo)/return foo/.
20904 * lalr.c: Likewise.
20905 * LR0.c: Likewise.
20906 * output.c: Likewise.
20907 * reader.c: Likewise.
20908 * symtab.c: Likewise.
20909 * vmsgetargs.c: Likewise.
20910
20911 2000-03-31 Akim Demaille <akim@epita.fr>
20912
20913 Clean up the error reporting functions.
20914
20915 * src/report.c: New file.
20916 * src/report.h: Likewise.
20917 * src/Makefile.am: Adjust.
20918 * m4/error.m4: New file.
20919 * m4/Makefile.am: Adjust.
20920 * configure.in (jm_PREREQ_ERROR): Call it.
20921 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
20922 Remove.
20923 (fatal, fatals): Remove. All callers use complain.c::fatal.
20924 (warn, warni, warns, warnss, warnss): Remove. All callers use
20925 complain.c::complain.
20926 (toomany): Remove, use fatal instead.
20927 * src/files.c (done): No argument, use complain_message_count.
20928 * src/main.c (main): Register `done' to `atexit'.
20929
20930 * src/getargs.c (usage): More `fputs', less `fprintf'.
20931
20932 2000-03-28 Akim Demaille <akim@epita.fr>
20933
20934 * lib/: New directory.
20935 * Makefile.am (SUBDIRS): Adjust.
20936 * configure.in: Adjust.
20937 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
20938 useless.
20939 * src/alloca.c: Moved to lib/.
20940 * src/getopt.c: Likewise.
20941 * src/getopt1.c: Likewise.
20942 * src/getopt.h: Likewise.
20943 * src/ansi2knr.c: Likewise.
20944 * src/ansi2knr.1: Likewise.
20945 * src/Makefile.am: Adjust.
20946 * lib/Makefile.am: New file.
20947
20948 2000-03-28 Akim Demaille <akim@epita.fr>
20949
20950 * src/getargs.c (usage): Refresh the help message.
20951
20952 2000-03-17 Akim Demaille <akim@epita.fr>
20953
20954 * src/getopt1.c: Updated from textutils 2.0e
20955 * src/getopt.c: Likewise.
20956 * src/getopt.h: Likewise.
20957
20958 2000-03-17 Akim Demaille <akim@epita.fr>
20959
20960 * src/Makefile.am (bison.simple): Fix the awk program: quote only
20961 the file name, not the whole `#line LINE FILE'.
20962
20963 2000-03-17 Akim Demaille <akim@epita.fr>
20964
20965 On syntax errors, report the token on which we choked.
20966
20967 * src/bison.s1 (yyparse): In the label yyerrlab, when
20968 YYERROR_VERBOSE, add yychar in msg.
20969
20970 2000-03-17 Akim Demaille <akim@epita.fr>
20971
20972 * src/reader.c (copy_at): New function.
20973 (copy_guard): Use it.
20974 (copy_action): Use it.
20975
20976 2000-03-17 Akim Demaille <akim@epita.fr>
20977
20978 Be kind to translators, save some useless translations.
20979
20980 * src/main.c (banner): New function.
20981 (fatal_banner): Use it.
20982 (warn_banner): Use it.
20983
20984 2000-03-17 Akim Demaille <akim@epita.fr>
20985
20986 * src/reader.c (copy_definition): Use copy_string and
20987 copy_comment. Removed now unused `match', `ended',
20988 `cplus_comment'.
20989 (copy_comment, copy_string): Moved, to be visible from
20990 copy_definition.
20991
20992 2000-03-17 Akim Demaille <akim@epita.fr>
20993
20994 * src/reader.c (copy_string): Declare `static inline'. No
20995 problems with inline, since it is checked by configure.
20996 (copy_comment): Likewise.
20997
20998 2000-03-17 Akim Demaille <akim@epita.fr>
20999
21000 * src/reader.c (packsymbols): Formatting changes.
21001
21002 2000-03-17 Akim Demaille <akim@epita.fr>
21003
21004 * src/reader.c (copy_comment): New function, factored out from:
21005 (copy_action): Use it. Removed now unused `match', `ended',
21006 `cplus_comment'.
21007 (copy_guard): Likewise.
21008
21009 2000-03-17 Akim Demaille <akim@epita.fr>
21010
21011 * src/reader.c (copy_string): New function, factored out from:
21012 (copy_action): Use it.
21013 (copy_guard): Likewise.
21014
21015 2000-03-17 Akim Demaille <akim@epita.fr>
21016
21017 Change the handling of @s so that they behave exactly like $s.
21018 There is now a pseudo variable @$ (readble and writable), location
21019 of the lhs of the rule (by default ranging from the location of
21020 the first symbol of the rhs, to the location of the last symbol,
21021 or, if the rhs is empty, YYLLOC).
21022
21023 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
21024 yyval.
21025 (yyparse): When providing a default semantic action, provide a
21026 default location action.
21027 (after the $): No longer change `*YYLSP', just stack YYLOC the
21028 same way you stack YYVAL.
21029 * src/reader.c (read_declarations): Use warns.
21030 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
21031 (copy_action, case '@'): Likewise.
21032 Use a standard error message, to save useless work from
21033 translators.
21034
21035 2000-03-17 Akim Demaille <akim@epita.fr>
21036
21037 * src/bison.s1: Formatting and cosmetics changes.
21038 * src/reader.c: Likewise.
21039 Update the Copyright notice.
21040
21041 2000-03-17 Akim Demaille <akim@epita.fr>
21042
21043 * src/bison.s1 (#line): All set to `#line' only, since the
21044 Makefile now handles them.
21045
21046 2000-03-16 Akim Demaille <akim@epita.fr>
21047
21048 * src/output.c (output_rule_data): Output the documentation of
21049 some of the tables.
21050 (Copyright notice): Update.
21051 Formatting changes.
21052
21053 2000-03-16 Akim Demaille <akim@epita.fr>
21054
21055 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
21056 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
21057 One `#if YYDEBUG' remains, since it uses variables which are
21058 defined only if `YYDEBUG != 0'.
21059
21060 2000-03-16 Akim Demaille <akim@epita.fr>
21061
21062 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
21063 and related variables so that the similarities are highlighted.
21064
21065 2000-03-16 Akim Demaille <akim@epita.fr>
21066
21067 * src/bison.s1: Properly indent CPP directives.
21068
21069 2000-03-16 Akim Demaille <akim@epita.fr>
21070
21071 * src/bison.s1: Properly indent the `alloca' CPP section.
21072
21073 2000-03-16 Akim Demaille <akim@epita.fr>
21074
21075 Do not hard code values of directories in `configure.in'.
21076 Update the `configure' tool chain.
21077
21078 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
21079 src/makefile.am.
21080 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
21081 (AC_OUTPUT): Add m4/Makefile.
21082 Bump to bison 1.28a, 1.29 has never been released.
21083 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
21084 handled via src/Makefile.am.
21085 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
21086 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
21087 autoheader.
21088 * Makefile.am (SUBDIRS): Add m4.
21089 (ACLOCAL_AM_FLAGS): New variable.
21090 (AUTOMAKE_OPTIONS): Add check-news.
21091 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
21092 the proper line number and file name.
21093 (DEFS): Propagate the location of bison library files and of the
21094 locale files.
21095 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
21096 builddir.
21097 * acinclude.m4: Remove, replaced by the directory m4.
21098 * m4/Makefile.am (EXTRA_DIST): New variable.
21099 * m4/gettext.m4: New file, from the fileutils.
21100 * m4/lcmessage.m4: Likewise
21101 * m4/progtest.m4: Likewise.
21102 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
21103
21104 2000-03-10 Akim Demaille <akim@epita.fr>
21105
21106 * src/closure.c:
21107 Formatting changes of various comments.
21108 Respect the GNU coding standards at various places.
21109 Don't use `_()' when no translation is needed.
21110
21111 1999-12-13 Jesse Thilo <jthilo@gnu.org>
21112
21113 * src/files.c:
21114 OS/2 honors TMPDIR environment variable.
21115
21116 1999-12-13 Jesse Thilo <jthilo@gnu.org>
21117
21118 * doc/bison.texinfo: Tweaked spelling and grammar.
21119 Updated ISBN.
21120 Removed reference to price of printed copy.
21121 Mention BISON_SIMPLE and BISON_HAIRY.
21122
21123 1999-12-13 Jesse Thilo <jthilo@gnu.org>
21124
21125 * configure.in, NEWS:
21126 Bison 1.29 released.
21127
21128 1999-10-27 Jesse Thilo <jthilo@gnu.org>
21129
21130 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
21131 Added reference card.
21132
21133 1999-07-26 Jesse Thilo <jthilo@gnu.org>
21134
21135 * po/ru.po: Added Russian translation.
21136
21137 1999-07-26 Jesse Thilo <jthilo@gnu.org>
21138
21139 * configure.in: Added Russian translation.
21140
21141 1999-07-06 Jesse Thilo <jthilo@gnu.org>
21142
21143 * configure.in, NEWS, README:
21144 Released version 1.28.
21145
21146 1999-06-14 Jesse Thilo <jthilo@gnu.org>
21147
21148 * src/system.h:
21149 Squashed redefinition warning on some systems.
21150
21151 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
21152 Have configure build version string instead of relying on ANSI string
21153 concatentation.
21154
21155 1999-06-14 Jesse Thilo <jthilo@gnu.org>
21156
21157 * po/POTFILES.in: Got rid of version.c.
21158
21159 1999-06-14 Jesse Thilo <jthilo@gnu.org>
21160
21161 * acconfig.h, configure.in:
21162 Have configure build version string instead of relying on ANSI string
21163 concatentation.
21164
21165 1999-06-08 Jesse Thilo <jthilo@gnu.org>
21166
21167 * doc/bison.1:
21168 Dropped mention of `+' for long-named options.
21169
21170 1999-05-30 Jesse Thilo <jthilo@gnu.org>
21171
21172 * src/files.c: Added <unistd.h> for unlink().
21173
21174 * src/Makefile.am, src/system.h:
21175 I18n fixes.
21176
21177 1999-05-30 Jesse Thilo <jthilo@gnu.org>
21178
21179 * README: Added a FAQ list.
21180
21181 * configure.in, acconfig.h:
21182 I18n fixes.
21183
21184 1999-05-30 Jesse Thilo <jthilo@gnu.org>
21185
21186 * doc/FAQ, doc/Makefile.am:
21187 Added a FAQ list.
21188
21189 1999-05-19 Jesse Thilo <jthilo@gnu.org>
21190
21191 * src/alloc.h, src/symtab.h, src/version.c:
21192 Protected inclusion of "config.h" with HAVE_CONFIG_H.
21193
21194 1999-04-18 Jesse Thilo <jthilo@gnu.org>
21195
21196 * src/.cvsignore, src/Makefile.am:
21197 Reorganized: sources in `src', documentation in `doc'.
21198
21199 * src/lex.c (literalchar):
21200 fixed the code for escaping double quotes (thanks
21201 Jonathan Czisny.)
21202
21203 1999-04-18 Jesse Thilo <jthilo@gnu.org>
21204
21205 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
21206 Adjusted paths to reflect directory reorganization.
21207
21208 1999-04-18 Jesse Thilo <jthilo@gnu.org>
21209
21210 * doc/.cvsignore, doc/Makefile.am:
21211 Reorganized: sources in `src', documentation in `doc'.
21212
21213 1999-04-18 Jesse Thilo <jthilo@gnu.org>
21214
21215 * configure.in:
21216 Updated AC_INIT file to reflect directory reorganization.
21217
21218 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
21219 Reorganized: sources in `src', documentation in `doc'.
21220
21221 1999-04-13 Jesse Thilo <jthilo@gnu.org>
21222
21223 * src/allocate.c:
21224 Don't declare calloc() and realloc() if not necessary.
21225
21226 1999-04-13 Jesse Thilo <jthilo@gnu.org>
21227
21228 * configure.in, acconfig.h, acinclude.m4:
21229 Don't declare calloc() and realloc() if not necessary.
21230
21231 1999-03-23 Jesse Thilo <jthilo@gnu.org>
21232
21233 * po/.cvsignore: Added i18n support.
21234
21235 1999-03-23 Jesse Thilo <jthilo@gnu.org>
21236
21237 * acconfig.h, configure.in, Makefile.am:
21238 Added i18n support.
21239
21240 1999-03-22 Jesse Thilo <jthilo@gnu.org>
21241
21242 * src/bison.s1: Fixed #line numbers.
21243
21244 1999-03-15 Jesse Thilo <jthilo@gnu.org>
21245
21246 * po/es.po, po/fr.po, po/nl.po, po/de.po:
21247 Added PO files from Translation Project.
21248
21249 1999-03-03 Jesse Thilo <jthilo@gnu.org>
21250
21251 * Makefile.am:
21252 Added support for non-ANSI compilers (ansi2knr).
21253
21254 1999-02-16 Jesse Thilo <jthilo@gnu.org>
21255
21256 * configure.in: Bumped version number to 1.27.
21257
21258 * Makefile.am:
21259 Added `bison.simple' to list of files removed by `make distclean'.
21260
21261 1999-02-12 Jesse Thilo <jthilo@gnu.org>
21262
21263 * src/files.c, src/files.h:
21264 Defined locations of parser files in config.h instead of Makefile.
21265
21266 1999-02-12 Jesse Thilo <jthilo@gnu.org>
21267
21268 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
21269 Defined locations of parser files in config.h instead of Makefile.
21270
21271 1999-02-09 Jesse Thilo <jthilo@gnu.org>
21272
21273 * Makefile.am:
21274 Removed inappropriate use of $< macro.
21275
21276 1999-02-05 Jesse Thilo <jthilo@gnu.org>
21277
21278 * po/Makefile.in.in, po/POTFILES.in:
21279 Add `po' directory skeleton.
21280
21281 1999-01-27 Jesse Thilo <jthilo@gnu.org>
21282
21283 * README: Document help-bison list.
21284
21285 * configure.in: Add check for mkstemp().
21286
21287 1999-01-20 Jesse Thilo <jthilo@gnu.org>
21288
21289 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
21290 Hush a few compiler warnings.
21291
21292 * src/files.c:
21293 Add tryclose(), which verifies that fclose was successful.
21294 Hush a couple of compiler warnings.
21295
21296 1999-01-20 Jesse Thilo <jthilo@gnu.org>
21297
21298 * Makefile.am, OChangeLog:
21299 ChangeLog is now automatically generated. Include the old version as
21300 OChangeLog.
21301
21302 1999-01-14 Jesse Thilo <jthilo@gnu.org>
21303
21304 * 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:
21305 Update FSF address.
21306
21307 1999-01-14 Jesse Thilo <jthilo@gnu.org>
21308
21309 * doc/bison.texinfo: Fix formatting glitch.
21310
21311 * doc/bison.texinfo: Update FSF address.
21312
21313 1999-01-14 Jesse Thilo <jthilo@gnu.org>
21314
21315 * acconfig.h: Update FSF address.
21316
21317 1999-01-08 Jesse Thilo <jthilo@gnu.org>
21318
21319 * src/system.h:
21320 Don't define PACKAGE here, since config.h defines it.
21321
21322 1998-12-30 Jesse Thilo <jthilo@gnu.org>
21323
21324 * src/reader.c: Update copyright date.
21325
21326 * src/main.c:
21327 Ditch sprintf to statically-sized buffers in fatal/warn functions in
21328 favor of output directly to stderr (avoids buffer overruns).
21329
21330 * src/reader.c: Some checks for premature EOF.
21331
21332 * 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:
21333 Use prototypes if the compiler understands them.
21334
21335 * src/files.c: Honor TMPDIR on Unix hosts.
21336 Use prototypes if the compiler understands them.
21337
21338 * src/reader.c:
21339 Fix a couple of buffer overrun bugs.
21340 Use prototypes if the compiler understands them.
21341
21342 * src/system.h: Include unistd.h and ctype.h.
21343 Use #ifdef instead of #if for NLS symbols.
21344
21345 1998-12-30 Jesse Thilo <jthilo@gnu.org>
21346
21347 * doc/bison.texinfo:
21348 Delete comment "consider using @set for edition number, etc..." since
21349 we now are doing so.
21350
21351 1998-12-30 Jesse Thilo <jthilo@gnu.org>
21352
21353 * configure.in:
21354 Use prototypes if the compiler understands them.
21355
21356 * NEWS: Document 1.26 highlights.
21357
21358 * Makefile.am: Require Automake 1.3 or later.
21359
21360 * acconfig.h:
21361 Use prototypes if the compiler understands them.
21362
21363 1998-12-29 Jesse Thilo <jthilo@gnu.org>
21364
21365 * src/version.c:
21366 Use VERSION symbol from automake for version number.
21367
21368 1998-12-29 Jesse Thilo <jthilo@gnu.org>
21369
21370 * acconfig.h, configure.in, version.cin:
21371 Use VERSION symbol from automake for version number.
21372
21373 1998-11-28 Jesse Thilo <jthilo@gnu.org>
21374
21375 * Makefile.am:
21376 Distribute original version of simple parser (bison.s1), not built
21377 version (bison.simple).
21378
21379 1998-11-28 Jesse Thilo <jthilo@gnu.org>
21380
21381 * doc/bison.texinfo: Add info dir entry.
21382
21383 * doc/bison.texinfo:
21384 Let automake put version number into documentation.
21385
21386 1998-11-26 Jesse Thilo <jthilo@gnu.org>
21387
21388 * src/bison.cld, src/build.com, src/vmshlp.mar:
21389 Add non-RCS files from /gd/gnu/bison.
21390
21391 1998-11-26 Jesse Thilo <jthilo@gnu.org>
21392
21393 * doc/bison.1:
21394 Document the BISON_HAIRY and BISON_SIMPLE variables.
21395
21396 1998-11-25 Jesse Thilo <jthilo@gnu.org>
21397
21398 * src/version.c: Build version.c automatically.
21399
21400 * src/reader.c:
21401 Fix token numbering (used to start at 258, not 257).
21402
21403 * src/system.h: Include config.h.
21404
21405 * src/getargs.c: Update bug report address.
21406
21407 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
21408 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
21409
21410 1998-11-25 Jesse Thilo <jthilo@gnu.org>
21411
21412 * Makefile.am:
21413 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
21414
21415 * configure.in, version.cin:
21416 Build version.c automatically.
21417
21418 * AUTHORS: Add AUTHORS file.
21419
21420 * README: Update bug report address.
21421
21422 * bison.simple:
21423 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
21424
21425 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
21426 Add automake stuff.
21427
21428 1998-11-25 Jesse Thilo <jthilo@gnu.org>
21429
21430 * doc/bison.texinfo: Clean up some formatting.
21431
21432 1998-05-05 Richard Stallman <rms@gnu.org>
21433
21434 * doc/bison.texinfo:
21435 Explain better why to make a pure parser.
21436
21437 1998-01-05 Richard Stallman <rms@gnu.org>
21438
21439 * src/files.c (openfiles):
21440 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
21441 find a temporary directory, if possible. Do not unlink files while
21442 they are open.
21443
21444 1997-08-25 Richard Stallman <rms@gnu.org>
21445
21446 * src/reader.c (stack_offset;):
21447 Change some warni to warns.
21448
21449 * src/lex.c (literalchar): Use warns, not warni.
21450
21451 1997-06-28 Richard Stallman <rms@gnu.org>
21452
21453 * src/bison.s1: Add a Bison version comment.
21454
21455 * src/main.c (fatal, warn, berror):
21456 Use program_name.
21457
21458 1997-06-28 Richard Stallman <rms@gnu.org>
21459
21460 * Makefile.in (bison_version): New variable.
21461 (dist): Use that variable.
21462 (bison.s1): Substitute the Bison version into bison.simple.
21463
21464 * bison.simple: Add a Bison version comment.
21465
21466 1997-06-18 Richard Stallman <rms@gnu.org>
21467
21468 * src/main.c (fatal, warn, berror):
21469 Make error messages standard.
21470 (toomany): Improve error message text.
21471
21472 * 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:
21473 new.h renamed to alloc.h.
21474
21475 1997-06-18 Richard Stallman <rms@gnu.org>
21476
21477 * Makefile.in: new.h renamed to alloc.h.
21478
21479 1997-05-24 Richard Stallman <rms@gnu.org>
21480
21481 * src/lex.c (literalchar):
21482 Fix the code for escaping \, " and '.
21483
21484 (lex): Avoid trouble when there are many chars
21485 to discard in a char literal with just several chars in it.
21486
21487 1997-05-17 Richard Stallman <rms@gnu.org>
21488
21489 * src/bison.s1:
21490 Use malloc, if using alloca is troublesome.
21491 (YYSTACK_USE_ALLOCA): New flag macro.
21492 Define it for some systems and compilers.
21493 (YYSTACK_ALLOC): New macro.
21494 (yyparse): Use YYSTACK_ALLOC to allocate stack.
21495 If it was malloc'd, free it.
21496
21497 1997-05-17 Richard Stallman <rms@gnu.org>
21498
21499 * bison.simple:
21500 Use malloc, if using alloca is troublesome.
21501 (YYSTACK_USE_ALLOCA): New flag macro.
21502 Define it for some systems and compilers.
21503 (YYSTACK_ALLOC): New macro.
21504 (yyparse): Use YYSTACK_ALLOC to allocate stack.
21505 If it was malloc'd, free it.
21506
21507 1997-04-23 Richard Stallman <rms@gnu.org>
21508
21509 * src/bison.s1:
21510 (alloca) [__hpux]: Always define as __builtin_alloca.
21511
21512 1997-04-23 Richard Stallman <rms@gnu.org>
21513
21514 * bison.simple:
21515 (alloca) [__hpux]: Always define as __builtin_alloca.
21516
21517 1997-04-22 Richard Stallman <rms@gnu.org>
21518
21519 * src/bison.s1:
21520 [__hpux]: Include alloca.h (right for HPUX 10)
21521 instead of declaring alloca (right for HPUX 9).
21522
21523 * src/bison.s1 (__yy_memcpy):
21524 Declare arg `count' as unsigned int.
21525 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
21526
21527 1997-04-22 Richard Stallman <rms@gnu.org>
21528
21529 * bison.simple:
21530 [__hpux]: Include alloca.h (right for HPUX 10)
21531 instead of declaring alloca (right for HPUX 9).
21532
21533 * bison.simple (__yy_memcpy):
21534 Declare arg `count' as unsigned int.
21535 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
21536
21537 1997-01-03 Richard Stallman <rms@gnu.org>
21538
21539 * src/allocate.c: [__STDC__ or _MSC_VER]:
21540 Declare calloc and realloc to return void *.
21541
21542 1997-01-02 Richard Stallman <rms@gnu.org>
21543
21544 * src/system.h:
21545 [_MSC_VER]: Include stdlib.h and process.h.
21546 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
21547
21548 * src/main.c (main): Return FAILURE as a value.
21549 (printable_version): Declare arg as int, not char.
21550
21551 1997-01-02 Richard Stallman <rms@gnu.org>
21552
21553 * Makefile.in (dist):
21554 Explicitly check for symlinks, and copy them.
21555
21556 1996-12-19 Richard Stallman <rms@gnu.org>
21557
21558 * src/files.c:
21559 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
21560
21561 1996-12-18 Paul Eggert <eggert@gnu.org>
21562
21563 * src/bison.s1 (yyparse):
21564 If __GNUC__ and YYPARSE_PARAM are both defined,
21565 declare yyparse to have a void * argument.
21566
21567 1996-12-18 Paul Eggert <eggert@gnu.org>
21568
21569 * bison.simple (yyparse):
21570 If __GNUC__ and YYPARSE_PARAM are both defined,
21571 declare yyparse to have a void * argument.
21572
21573 1996-12-17 Richard Stallman <rms@gnu.org>
21574
21575 * src/reduce.c (nbits): Add some casts.
21576
21577 1996-08-12 Richard Stallman <rms@gnu.org>
21578
21579 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
21580
21581 1996-08-12 Richard Stallman <rms@gnu.org>
21582
21583 * bison.simple: Test _MSDOS as well as _MSDOS_.
21584
21585 1996-07-31 Richard Stallman <rms@gnu.org>
21586
21587 * src/bison.s1:
21588 [__sun && __i386]: Include alloca.h.
21589
21590 1996-07-31 Richard Stallman <rms@gnu.org>
21591
21592 * bison.simple:
21593 [__sun && __i386]: Include alloca.h.
21594
21595 1996-07-30 Richard Stallman <rms@gnu.org>
21596
21597 * src/bison.s1: Comment change.
21598
21599 * src/bison.s1: Test _MSDOS_, not MSDOS.
21600
21601 1996-07-30 Richard Stallman <rms@gnu.org>
21602
21603 * bison.simple: Comment change.
21604
21605 * bison.simple: Test _MSDOS_, not MSDOS.
21606
21607 1996-06-01 Richard Stallman <rms@gnu.org>
21608
21609 * 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:
21610 Insert `_' macro around many string constants.
21611
21612 * src/main.c:
21613 Insert `_' macro around many string constants.
21614
21615 (main): Call setlocale, bindtextdomain and textdomain.
21616
21617 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
21618 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
21619 [ENABLE_NLS]: Include libintl.h.
21620 [ENABLE_NLS] (gettext): Define.
21621 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
21622 (N_, PACKAGE, LOCALEDIR): New macros.
21623
21624 1996-06-01 Richard Stallman <rms@gnu.org>
21625
21626 * POTFILES.in: New file.
21627
21628 * Makefile.in (allocate.o):
21629 Define target explicitly.
21630
21631 * Makefile.in (CFLAGS): Set to @CFLAGS@.
21632 (LDFLAGS): Set to @LDFLAGS@.
21633 (configure): Run autoconf only if preceding `cd' succeeds.
21634 (bison.s1): Redirect output to temporary file then move the
21635 temporary to the target, rather than redirecting directly to bison.s1.
21636 (clean): Remove config.status and config.log.
21637 (distclean): Don't remove config.status here.
21638
21639 1996-05-12 Richard Stallman <rms@gnu.org>
21640
21641 * src/bison.s1:
21642 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
21643
21644 1996-05-12 Richard Stallman <rms@gnu.org>
21645
21646 * bison.simple:
21647 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
21648
21649 1996-05-11 Richard Stallman <rms@gnu.org>
21650
21651 * src/bison.s1 (__yy_memcpy):
21652 Really reorder the args, as was supposedly done on Feb 14 1995.
21653 (yyparse): Calls changed accordingly.
21654
21655 1996-05-11 Richard Stallman <rms@gnu.org>
21656
21657 * Makefile.in (dist): Don't use $(srcdir).
21658
21659 * bison.simple (__yy_memcpy):
21660 Really reorder the args, as was supposedly done on Feb 14 1995.
21661 (yyparse): Calls changed accordingly.
21662
21663 1996-01-27 Richard Stallman <rms@gnu.org>
21664
21665 * src/output.c (output_rule_data):
21666 Test YYERROR_VERBOSE in the conditional
21667 around the definition of ttyname.
21668
21669 1995-12-29 Richard Stallman <rms@gnu.org>
21670
21671 * src/bison.s1:
21672 Fix line numbers in #line commands.
21673
21674 1995-12-29 Richard Stallman <rms@gnu.org>
21675
21676 * bison.simple:
21677 Fix line numbers in #line commands.
21678
21679 1995-12-27 Richard Stallman <rms@gnu.org>
21680
21681 * src/bison.s1 (YYPARSE_PARAM_DECL):
21682 In C++, make it always null.
21683 (YYPARSE_PARAM_ARG): New macro.
21684 (yyparse): Use YYPARSE_PARAM_ARG.
21685
21686 1995-12-27 Richard Stallman <rms@gnu.org>
21687
21688 * bison.simple (YYPARSE_PARAM_DECL):
21689 In C++, make it always null.
21690 (YYPARSE_PARAM_ARG): New macro.
21691 (yyparse): Use YYPARSE_PARAM_ARG.
21692
21693 1995-11-29 Richard Stallman <rms@gnu.org>
21694
21695 * doc/bison.texinfo:
21696 Describe literal string tokens, %raw, %no_lines, %token_table.
21697
21698 1995-11-29 Daniel Hagerty <hag@gnu.org>
21699
21700 * doc/bison.texinfo: Fixed update date
21701
21702 1995-10-16 Richard Stallman <rms@gnu.org>
21703
21704 * src/version.c: Version 1.25.
21705
21706 1995-10-16 Richard Stallman <rms@gnu.org>
21707
21708 * NEWS: *** empty log message ***
21709
21710 1995-10-16 Richard Stallman <rms@gnu.org>
21711
21712 * doc/bison.1, doc/bison.rnh:
21713 Add new options.
21714
21715 1995-10-15 Richard Stallman <rms@gnu.org>
21716
21717 * src/vmsgetargs.c, src/getargs.c:
21718 Added -n, -k, and -raw switches.
21719 (noparserflag, toknumflag, rawtoknumflag): New variables.
21720
21721 * src/symtab.h (SALIAS):
21722 New #define for adding aliases to %token.
21723 (struct bucket): Added `alias' field.
21724
21725 * src/reduce.c (reduce_grammar):
21726 Revise error message.
21727 (print_notices): Remove final `.' from error message.
21728
21729 * src/reader.c (reader_output_yylsp):
21730 New function.
21731 (readgram): Use `#if 0' around code that accepted %command
21732 inside grammar rules: The documentation doesn't allow it,
21733 and it will fail since the %command processors scan for the next %.
21734 (parse_token_decl): Extended the %token
21735 declaration to allow a multi-character symbol as an alias.
21736 (parse_thong_decl): New function.
21737 (read_declarations): Added %thong declarations.
21738 (read_declarations): Handle NOOP to deal with allowing
21739 % declarations as another means to specify the flags.
21740 (readgram): Allow %prec prior to semantics embedded in a rule.
21741 (skip_to_char, read_declarations, copy_definition)
21742 (parse_token_decl, parse_start_decl, parse_type_decl)
21743 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
21744 (get_type_name, copy_guard, copy_action, readgram)
21745 (get_type, packsymbols): Revised most error messages.
21746 Changed `fatal' to `warnxxx' to avoid aborting for error.
21747 Revised and use multiple warnxxx functions to avoid using VARARGS1.
21748 (read_declarations): Improve the error message for
21749 an invalid character. Do not abort.
21750 (read_declarations, copy_guard, copy_action): Use
21751 printable_version to avoid unprintable characters in printed output.
21752 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
21753 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
21754 Allow the type of a non-terminal can be given
21755 more than once, as long as all specifications give the same type.
21756
21757 * src/output.c:
21758 (output_headers, output_trailers, output, output_gram)
21759 (output_rule_data): Implement noparserflag variable.
21760 Implement toknumflag variable.
21761 (output): Call reader_output_yylsp to output LTYPESTR.
21762
21763 * src/main.c (main):
21764 If reader sees an error, don't process the grammar.
21765 (fatals): Updated to not use VARARGS1.
21766 (printable_version, int_to_string, warn, warni, warns, warnss)
21767 (warnsss): New error reporting functions. Avoid abort for error.
21768
21769 * src/lex.h:
21770 Added THONG and NOOP for alias processing.
21771 Added SETOPT for the new code that allows setting options with %flags.
21772
21773 * src/lex.c:
21774 Include getopt.h. Add some extern decls.
21775 (safegetc): New function to deal with EOF gracefully.
21776 (literalchar); new function to deal with reading \ escapes.
21777 (lex): Use literalchar.
21778 (lex): Implemented "..." tokens.
21779 (literalchar, lex, parse_percent_token): Made tokenbuffer
21780 always contain the token. This includes growing the token
21781 buffer while reading an integer.
21782 (parse_percent_token): Replaced if-else statement with percent_table.
21783 (parse_percent_token): Added % declarations as another
21784 way to specify the flags -n, -l, and -r. Also added hooks for
21785 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
21786 major changes to files.c.
21787 (lex) Retain in the incoming stream a character following
21788 an incorrect '/'.
21789 (skip_white_space, lex): Revised most error messages
21790 and changed fatal to warn to avoid aborting.
21791 (percent_table): Added %thong declarations.
21792
21793 * src/gram.h: Comment changes.
21794
21795 * src/files.c (openfiles, open_extra_files, done):
21796 Add faction flag
21797 and actfile file. Handle noparserflag. Both for -n switch.
21798
21799 * src/conflicts.c (resolve_sr_conflict):
21800 Remove use of alloca.
21801
21802 1995-06-01 Jim Meyering <meyering@gnu.org>
21803
21804 * doc/bison.texinfo: *** empty log message ***
21805
21806 1995-05-06 Richard Stallman <rms@gnu.org>
21807
21808 * src/bison.s1: Comment change.
21809
21810 1995-05-06 Richard Stallman <rms@gnu.org>
21811
21812 * bison.simple: Comment change.
21813
21814 1995-05-03 Richard Stallman <rms@gnu.org>
21815
21816 * src/version.c: Version now 1.24.
21817
21818 * src/bison.s1: Change distribution terms.
21819
21820 * src/version.c: Version now 1.23.
21821
21822 1995-05-03 Richard Stallman <rms@gnu.org>
21823
21824 * doc/bison.texinfo:
21825 Rewrite "Conditions for Using Bison".
21826 Update version to 1.24.
21827
21828 1995-05-03 Richard Stallman <rms@gnu.org>
21829
21830 * bison.simple: Change distribution terms.
21831
21832 1995-02-23 Richard Stallman <rms@gnu.org>
21833
21834 * src/files.c: Test __VMS_POSIX as well as VMS.
21835
21836 1995-02-14 Jim Meyering <meyering@gnu.org>
21837
21838 * src/bison.s1 (__yy_memcpy):
21839 Renamed from __yy_bcopy to avoid
21840 confusion. Reverse FROM and TO arguments to be consistent with
21841 those of memcpy.
21842
21843 1995-02-14 Jim Meyering <meyering@gnu.org>
21844
21845 * bison.simple (__yy_memcpy):
21846 Renamed from __yy_bcopy to avoid
21847 confusion. Reverse FROM and TO arguments to be consistent with
21848 those of memcpy.
21849
21850 1994-11-10 David J. MacKenzie <djm@gnu.org>
21851
21852 * NEWS: reformat
21853
21854 * NEWS: New file.
21855
21856 * Makefile.in (DISTFILES): Include NEWS.
21857
21858 * Makefile.in (DISTFILES):
21859 Include install-sh, not install.sh.
21860
21861 * configure.in: Update to Autoconf v2 macro names.
21862
21863 1994-10-05 David J. MacKenzie <djm@gnu.org>
21864
21865 * Makefile.in: fix typo
21866
21867 * Makefile.in (prefix, exec_prefix):
21868 Let configure set them.
21869
21870 1994-09-28 David J. MacKenzie <djm@gnu.org>
21871
21872 * Makefile.in: Set datadir to $(prefix)/share.
21873
21874 1994-09-15 Richard Stallman <rms@gnu.org>
21875
21876 * src/bison.s1:
21877 Update copyright notice and GPL version.
21878
21879 1994-09-15 Richard Stallman <rms@gnu.org>
21880
21881 * bison.simple:
21882 Update copyright notice and GPL version.
21883
21884 1994-07-12 Richard Stallman <rms@gnu.org>
21885
21886 * src/reduce.c, src/reader.c:
21887 entered into RCS
21888
21889 1994-05-05 David J. MacKenzie <djm@gnu.org>
21890
21891 * Makefile.in: entered into RCS
21892
21893 1994-03-26 Richard Stallman <rms@gnu.org>
21894
21895 * src/bison.s1: entered into RCS
21896
21897 1994-03-26 Richard Stallman <rms@gnu.org>
21898
21899 * bison.simple: entered into RCS
21900
21901 1994-03-25 Richard Stallman <rms@gnu.org>
21902
21903 * src/main.c: entered into RCS
21904
21905 1994-03-24 Richard Stallman <rms@gnu.org>
21906
21907 * src/conflicts.c: entered into RCS
21908
21909 1994-01-02 Richard Stallman <rms@gnu.org>
21910
21911 * Makefile.in: *** empty log message ***
21912
21913 1993-11-21 Richard Stallman <rms@gnu.org>
21914
21915 * src/bison.s1: *** empty log message ***
21916
21917 1993-11-21 Richard Stallman <rms@gnu.org>
21918
21919 * doc/bison.texinfo: entered into RCS
21920
21921 * doc/bison.texinfo: *** empty log message ***
21922
21923 1993-11-21 Richard Stallman <rms@gnu.org>
21924
21925 * bison.simple: *** empty log message ***
21926
21927 1993-10-25 David J. MacKenzie <djm@gnu.org>
21928
21929 * doc/bison.texinfo: *** empty log message ***
21930
21931 1993-10-19 Richard Stallman <rms@gnu.org>
21932
21933 * src/bison.s1: *** empty log message ***
21934
21935 1993-10-19 Richard Stallman <rms@gnu.org>
21936
21937 * bison.simple: *** empty log message ***
21938
21939 1993-10-14 Richard Stallman <rms@gnu.org>
21940
21941 * src/bison.s1: *** empty log message ***
21942
21943 1993-10-14 Richard Stallman <rms@gnu.org>
21944
21945 * bison.simple: *** empty log message ***
21946
21947 1993-09-14 David J. MacKenzie <djm@gnu.org>
21948
21949 * doc/bison.texinfo: *** empty log message ***
21950
21951 1993-09-13 Noah Friedman <friedman@gnu.org>
21952
21953 * Makefile.in: *** empty log message ***
21954
21955 1993-09-10 Richard Stallman <rms@gnu.org>
21956
21957 * src/conflicts.c: *** empty log message ***
21958
21959 * src/system.h: entered into RCS
21960
21961 1993-09-10 Richard Stallman <rms@gnu.org>
21962
21963 * doc/bison.1: entered into RCS
21964
21965 1993-09-06 Noah Friedman <friedman@gnu.org>
21966
21967 * src/version.c: entered into RCS
21968
21969 1993-09-06 Noah Friedman <friedman@gnu.org>
21970
21971 * Makefile.in: *** empty log message ***
21972
21973 1993-07-30 David J. MacKenzie <djm@gnu.org>
21974
21975 * Makefile.in: *** empty log message ***
21976
21977 1993-07-24 Richard Stallman <rms@gnu.org>
21978
21979 * src/bison.s1: *** empty log message ***
21980
21981 1993-07-24 Richard Stallman <rms@gnu.org>
21982
21983 * bison.simple: *** empty log message ***
21984
21985 1993-07-08 David J. MacKenzie <djm@gnu.org>
21986
21987 * Makefile.in: *** empty log message ***
21988
21989 1993-07-04 Richard Stallman <rms@gnu.org>
21990
21991 * src/bison.s1: *** empty log message ***
21992
21993 1993-07-04 Richard Stallman <rms@gnu.org>
21994
21995 * bison.simple: *** empty log message ***
21996
21997 1993-06-26 David J. MacKenzie <djm@gnu.org>
21998
21999 * src/getargs.c: entered into RCS
22000
22001 1993-06-26 David J. MacKenzie <djm@gnu.org>
22002
22003 * doc/bison.texinfo: *** empty log message ***
22004
22005 * doc/bison.1: New file.
22006
22007 1993-06-25 Richard Stallman <rms@gnu.org>
22008
22009 * src/getargs.c: New file.
22010
22011 1993-06-16 Richard Stallman <rms@gnu.org>
22012
22013 * src/bison.s1: *** empty log message ***
22014
22015 1993-06-16 Richard Stallman <rms@gnu.org>
22016
22017 * bison.simple: *** empty log message ***
22018
22019 1993-06-03 Richard Stallman <rms@gnu.org>
22020
22021 * src/bison.s1: New file.
22022
22023 1993-06-03 Richard Stallman <rms@gnu.org>
22024
22025 * doc/bison.texinfo: *** empty log message ***
22026
22027 1993-06-03 Richard Stallman <rms@gnu.org>
22028
22029 * bison.simple: New file.
22030
22031 1993-05-19 Richard Stallman <rms@gnu.org>
22032
22033 * doc/bison.texinfo: New file.
22034
22035 1993-05-07 Noah Friedman <friedman@gnu.org>
22036
22037 * Makefile.in: *** empty log message ***
22038
22039 1993-04-28 Noah Friedman <friedman@gnu.org>
22040
22041 * src/reader.c: *** empty log message ***
22042
22043 1993-04-23 Noah Friedman <friedman@gnu.org>
22044
22045 * src/alloc.h: entered into RCS
22046
22047 1993-04-20 David J. MacKenzie <djm@gnu.org>
22048
22049 * src/version.c: *** empty log message ***
22050
22051 * src/files.c, src/allocate.c:
22052 entered into RCS
22053
22054 * src/reader.c: *** empty log message ***
22055
22056 * src/lex.c: entered into RCS
22057
22058 * src/conflicts.c: New file.
22059
22060 * src/symtab.c: entered into RCS
22061
22062 * src/alloc.h: New file.
22063
22064 * src/LR0.c: entered into RCS
22065
22066 1993-04-18 Noah Friedman <friedman@gnu.org>
22067
22068 * src/reader.c: New file.
22069
22070 * src/version.c: *** empty log message ***
22071
22072 1993-04-18 Noah Friedman <friedman@gnu.org>
22073
22074 * Makefile.in: *** empty log message ***
22075
22076 1993-04-17 Noah Friedman <friedman@gnu.org>
22077
22078 * Makefile.in: *** empty log message ***
22079
22080 1993-04-15 Richard Stallman <rms@gnu.org>
22081
22082 * src/main.c, src/files.c:
22083 New file.
22084
22085 1993-04-15 Noah Friedman <friedman@gnu.org>
22086
22087 * configure.in: entered into RCS
22088
22089 * configure.in: *** empty log message ***
22090
22091 * configure.in: New file.
22092
22093 1993-04-14 Richard Stallman <rms@gnu.org>
22094
22095 * Makefile.in: New file.
22096
22097 1993-04-13 Richard Stallman <rms@gnu.org>
22098
22099 * src/version.c: New file.
22100
22101 1993-03-25 Richard Stallman <rms@gnu.org>
22102
22103 * src/output.c: entered into RCS
22104
22105 1992-09-25 Richard Stallman <rms@gnu.org>
22106
22107 * configure.bat: entered into RCS
22108
22109 1992-06-22 Richard Stallman <rms@gnu.org>
22110
22111 * src/vmsgetargs.c: entered into RCS
22112
22113 1992-06-22 Richard Stallman <rms@gnu.org>
22114
22115 * doc/bison.rnh: entered into RCS
22116
22117 1992-04-20 David J. MacKenzie <djm@gnu.org>
22118
22119 * README: entered into RCS
22120
22121 1992-01-22 Richard Stallman <rms@gnu.org>
22122
22123 * src/machine.h: entered into RCS
22124
22125 1991-12-21 Richard Stallman <rms@gnu.org>
22126
22127 * src/lalr.c, src/closure.c:
22128 entered into RCS
22129
22130 1991-12-20 Richard Stallman <rms@gnu.org>
22131
22132 * src/state.h: entered into RCS
22133
22134 1991-12-18 Richard Stallman <rms@gnu.org>
22135
22136 * src/print.c, src/nullable.c, src/derives.c:
22137 entered into RCS
22138
22139 1991-11-03 David J. MacKenzie <djm@gnu.org>
22140
22141 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
22142 entered into RCS
22143
22144 1988-09-09 Richard Stallman <rms@gnu.org>
22145
22146 * src/bison.hairy: entered into RCS
22147
22148 1987-12-16 Richard Stallman <rms@gnu.org>
22149
22150 * REFERENCES: entered into RCS
22151
22152
22153 -----
22154
22155 Copyright (C) 1987, 1988, 1991, 1992, 1993, 1994, 1995, 1996,
22156 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
22157 Free Software Foundation, Inc.
22158
22159 Copying and distribution of this file, with or without
22160 modification, are permitted provided the copyright notice and this
22161 notice are preserved.